aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Jensen <erik@tenku.dk>2023-01-10 09:06:11 +0000
committerNuno Teixeira <eduardo@FreeBSD.org>2023-01-10 09:15:46 +0000
commite9e0b380a1ec9ac63ca76da8bc5d9c38e49d38d4 (patch)
treea59b972cc6ac07b07da2a6f7c475e026da021476
parent43fadd7dd90e93a69c0a321f2ca342104e834ef7 (diff)
downloadports-e9e0b380a1ec9ac63ca76da8bc5d9c38e49d38d4.tar.gz
ports-e9e0b380a1ec9ac63ca76da8bc5d9c38e49d38d4.zip
devel/root: Update to 6.26/10
- Port now compiles against C++17 - Added build of ROOT v7 preview features as default build option - Added dependencies on devel/nlohmann-json, graphics/ftgl, print/gl2ps and devel/xxhash so ROOT does not use builtin versions of these libraries - ROOT now builds on FreeBSD 12.3 (uses LLVM/Clang 10.0.1) -- a bit of .modulemap hacking was necessary; tested in poudriere jail on my own system - ROOT *should* build on arm64 -- some files are not installed on arm64 and some files are named differently ChangeLog: https://root.cern/doc/v626/release-notes.html#release-6.2610 PR: 268701
-rw-r--r--devel/root/Makefile57
-rw-r--r--devel/root/distinfo6
-rw-r--r--devel/root/pkg-plist1565
-rwxr-xr-xdevel/root/scripts/remove-modules-from-modulemap.sh27
4 files changed, 1503 insertions, 152 deletions
diff --git a/devel/root/Makefile b/devel/root/Makefile
index 40c8788d46b0..836c2f1dccd7 100644
--- a/devel/root/Makefile
+++ b/devel/root/Makefile
@@ -1,5 +1,5 @@
PORTNAME= root
-DISTVERSION= 6.26.06
+DISTVERSION= 6.26.10
CATEGORIES= devel science math parallel python
MASTER_SITES= https://root.cern/download/
DISTFILES= ${PORTNAME}_v${DISTVERSION}.source${EXTRACT_SUFX}
@@ -12,15 +12,17 @@ LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/LGPL2_1.txt
BUILD_DEPENDS= ${PYNUMPY} \
- bash:shells/bash
+ bash:shells/bash \
+ nlohmann-json>=3:devel/nlohmann-json
LIB_DEPENDS= libAfterImage.so:graphics/libafterimage \
libcfitsio.so:astro/cfitsio \
libcurl.so:ftp/curl \
libfftw3.so:math/fftw3 \
libfreetype.so:print/freetype2 \
+ libftgl.so:graphics/ftgl \
libgif.so:graphics/giflib \
+ libgl2ps.so:print/gl2ps \
libgsl.so:math/gsl \
- libjpeg.so:graphics/jpeg-turbo \
liblz4.so:archivers/liblz4 \
libpcre.so:devel/pcre \
libpng.so:graphics/png \
@@ -29,11 +31,12 @@ LIB_DEPENDS= libAfterImage.so:graphics/libafterimage \
libvdt.so:math/vdt \
libxkbcommon.so:x11/libxkbcommon \
libXrdCl.so:databases/xrootd \
+ libxxhash.so:devel/xxhash \
libzstd.so:archivers/zstd
-USES= blaslapack:openblas cmake desktop-file-utils gettext-runtime gl \
- gnome iconv mysql:57 pgsql:13.0+ python:3.9+ shebangfix sqlite \
- ssl xorg
+USES= blaslapack:openblas cmake compiler:c++17-lang desktop-file-utils \
+ gettext-runtime gl gnome iconv jpeg mysql:57 pgsql:13.0+ python:3.9+ \
+ shebangfix sqlite ssl xorg
USE_GL= glew glu opengl
USE_GNOME= cairo gdkpixbuf2 glib20 librsvg2 libxml2
USE_XORG= ice sm x11 xau xaw xcb xcomposite xcursor xdamage xdmcp xext \
@@ -44,23 +47,49 @@ SHEBANG_FILES= etc/dictpch/makepch.py etc/proof/utils/circle.sh \
etc/proof/utils/crypt etc/proof/utils/pps \
etc/proof/utils/proofctl.sh etc/proof/utils/proofinstall.sh
-CMAKE_ARGS= -DCMAKE_CXX_STANDARD=14
+CMAKE_ARGS= -DCMAKE_CXX_STANDARD=17
CMAKE_ON= gnuinstall soversion
-MAKE_ENV+= ROOTSYS=${CONFIGURE_WRKSRC}
CONFIGURE_WRKSRC?= ${WRKDIR}/.build
+MAKE_ENV+= ROOTSYS=${CONFIGURE_WRKSRC}
PLIST_SUB+= SHLIB_SHVER="${DISTVERSION:R}" \
- SHLIB_VER="${DISTVERSION}"
+ SHLIB_VER="${DISTVERSION}" \
+ NOT_INSTALLED_ON_AARCH64="${NOT_INSTALLED_ON_AARCH64}" \
+ AARCH64_PCM_SUFFIX="${AARCH64_PCM_SUFFIX}"
-OPTIONS_DEFINE= DOCS
+OPTIONS_DEFINE= DOCS ROOT7
+OPTIONS_DEFAULT= ROOT7
OPTIONS_SUB= yes
+ROOT7_DESC= Enable supplementary preview features of ROOT version 7
+ROOT7_CMAKE_BOOL= root7
+
.include <bsd.port.options.mk>
-# File not installed in 14 Current maybe because of clang 14+, temporary fix
-.if ${OSVERSION} < 1400000
-PLIST_FILES+= lib/root/std_config.pcm
+# File only installed with LLVM/Clang 13 (used on FreeBSD 12.4 and 13.x)
+.if 1204000 <= ${OSVERSION} && ${OSVERSION} < 1400000
+PLIST_FILES+= lib/root/std_config${AARCH64_PCM_SUFFIX}.pcm
+.endif
+
+.include <bsd.port.pre.mk>
+
+# Some .modulemap files are not installed on aarch64, and files LIBRARY.pcm are renamed LIBRARY_rdict.pcm on aarch64
+.if ${ARCH} == "aarch64"
+NOT_INSTALLED_ON_AARCH64= "@comment "
+AARCH64_PCM_SUFFIX= "_rdict"
+.else
+NOT_INSTALLED_ON_AARCH64= ""
+AARCH64_PCM_SUFFIX= ""
+.endif
+
+# In LLVM/Clang 10.0.1 (used on FreeBSD 12.3), the cstdalign header is missing from the std modulemap, but it is declared included in ROOT's std modulemap - this has to be removed.
+# See https://github.com/llvm/llvm-project/blob/main/libcxx/include/module.modulemap.in#L181
+# The same seems to be the case for the other headers defined in the variable "modules" below.
+.if ${OSVERSION} < 1204000
+modules= cstdalign cuchar "ext\/functional" "ext\/numeric" "bits\/allocator.h" "bits\/basic_ios.h" "bits\/cpp_type_traits.h" "bits\/exception_defines.h" "bits\/ios_base.h" "bits\/locale_facets.h" "bits\/stl_algobase.h" "bits\/stl_map.h" "bits\/stl_pair.h" bits_stl_tree_h
+post-patch:
+ @MODULEMAP=${WRKSRC}/interpreter/cling/include/cling/std.modulemap ${SH} ${SCRIPTDIR}/remove-modules-from-modulemap.sh ${modules}
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/devel/root/distinfo b/devel/root/distinfo
index b8d7e3713243..069a8b33cf04 100644
--- a/devel/root/distinfo
+++ b/devel/root/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1672226334
-SHA256 (root_v6.26.06.source.tar.gz) = b1f73c976a580a5c56c8c8a0152582a1dfc560b4dd80e1b7545237b65e6c89cb
-SIZE (root_v6.26.06.source.tar.gz) = 195214157
+TIMESTAMP = 1672619421
+SHA256 (root_v6.26.10.source.tar.gz) = 8e56bec397104017aa54f9eb554de7a1a134474fe0b3bb0f43a70fc4fabd625f
+SIZE (root_v6.26.10.source.tar.gz) = 195224175
diff --git a/devel/root/pkg-plist b/devel/root/pkg-plist
index ab73377e263c..3d994a8fae3a 100644
--- a/devel/root/pkg-plist
+++ b/devel/root/pkg-plist
@@ -45,10 +45,10 @@ bin/xpdtest
%%ETCDIR%%/cling/Interpreter/RuntimeUniverse.h
%%ETCDIR%%/cling/Interpreter/Value.h
%%ETCDIR%%/cling/Interpreter/Visibility.h
-%%ETCDIR%%/cling/boost.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/boost.modulemap
%%ETCDIR%%/cling/cint/multimap
%%ETCDIR%%/cling/cint/multiset
-%%ETCDIR%%/cling/cuda.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/cuda.modulemap
%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_builtin_vars.h
%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_cmath.h
%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_complex_builtins.h
@@ -187,11 +187,11 @@ bin/xpdtest
%%ETCDIR%%/cling/lib/clang/9.0.1/include/xsaveoptintrin.h
%%ETCDIR%%/cling/lib/clang/9.0.1/include/xsavesintrin.h
%%ETCDIR%%/cling/lib/clang/9.0.1/include/xtestintrin.h
-%%ETCDIR%%/cling/libc.modulemap
-%%ETCDIR%%/cling/module.modulemap
-%%ETCDIR%%/cling/std.modulemap
-%%ETCDIR%%/cling/tinyxml2.modulemap
-%%ETCDIR%%/cling/vc.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/libc.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/module.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/std.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/tinyxml2.modulemap
+%%NOT_INSTALLED_ON_AARCH64%%%%ETCDIR%%/cling/vc.modulemap
%%ETCDIR%%/dictpch/makepch.py
%%ETCDIR%%/gdb-backtrace.sh
%%ETCDIR%%/gitinfo.txt
@@ -395,33 +395,6 @@ include/root/Compression.h
include/root/CsgOps.h
include/root/DllImport.h
include/root/ESTLType.h
-include/root/FTBBox.h
-include/root/FTBitmapGlyph.h
-include/root/FTCharToGlyphIndexMap.h
-include/root/FTCharmap.h
-include/root/FTContour.h
-include/root/FTExtrdGlyph.h
-include/root/FTFace.h
-include/root/FTFont.h
-include/root/FTGL.h
-include/root/FTGLBitmapFont.h
-include/root/FTGLExtrdFont.h
-include/root/FTGLOutlineFont.h
-include/root/FTGLPixmapFont.h
-include/root/FTGLPolygonFont.h
-include/root/FTGLTextureFont.h
-include/root/FTGlyph.h
-include/root/FTGlyphContainer.h
-include/root/FTLibrary.h
-include/root/FTList.h
-include/root/FTOutlineGlyph.h
-include/root/FTPixmapGlyph.h
-include/root/FTPoint.h
-include/root/FTPolyGlyph.h
-include/root/FTSize.h
-include/root/FTTextureGlyph.h
-include/root/FTVector.h
-include/root/FTVectoriser.h
include/root/Fit/BasicFCN.h
include/root/Fit/BinData.h
include/root/Fit/Chi2FCN.h
@@ -2814,7 +2787,6 @@ include/root/ZipZSTD.h
include/root/cfortran.h
include/root/compiledata.h
include/root/module.modulemap
-include/root/nlohmann/json.hpp
include/root/root_std_complex.h
include/root/snprintf.h
include/root/strlcpy.h
@@ -2822,11 +2794,11 @@ include/root/strtok.h
include/root/v5/TF1Data.h
include/root/v5/TFormula.h
include/root/v5/TFormulaPrimitive.h
-lib/root/ASImage.pcm
-lib/root/ASImageGui.pcm
-lib/root/Cling_Runtime.pcm
-lib/root/Cling_Runtime_Extra.pcm
-lib/root/Core.pcm
+lib/root/ASImage%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ASImageGui%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Cling_Runtime_Extra%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Cling_Runtime%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Core%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/DistRDF/Backends/Base.py
lib/root/DistRDF/Backends/Dask/Backend.py
lib/root/DistRDF/Backends/Dask/__init__.py
@@ -2866,34 +2838,34 @@ lib/root/DistRDF/__pycache__/Proxy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/DistRDF/__pycache__/Proxy%%PYTHON_EXT_SUFFIX%%.pyc
lib/root/DistRDF/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/DistRDF/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
-lib/root/EG.pcm
-lib/root/Eve.pcm
-lib/root/FFTW.pcm
-lib/root/FITSIO.pcm
-lib/root/FitPanel.pcm
-lib/root/Foam.pcm
-lib/root/Fumili.pcm
-lib/root/GX11.pcm
-lib/root/GX11TTF.pcm
-lib/root/Gdml.pcm
-lib/root/Ged.pcm
-lib/root/GenVector.pcm
-lib/root/Genetic.pcm
-lib/root/Geom.pcm
-lib/root/GeomBuilder.pcm
-lib/root/GeomPainter.pcm
-lib/root/Gpad.pcm
-lib/root/Graf.pcm
-lib/root/Graf3d.pcm
-lib/root/Gui.pcm
-lib/root/GuiBld.pcm
-lib/root/GuiHtml.pcm
-lib/root/Gviz3d.pcm
-lib/root/Hist.pcm
-lib/root/HistFactory.pcm
-lib/root/HistPainter.pcm
-lib/root/Html.pcm
-lib/root/Imt.pcm
+lib/root/EG%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Eve%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/FFTW%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/FITSIO%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/FitPanel%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Foam%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Fumili%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GX11%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GX11TTF%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Gdml%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Ged%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GenVector%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Genetic%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Geom%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GeomBuilder%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GeomPainter%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Gpad%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Graf%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Graf3d%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Gui%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GuiBld%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/GuiHtml%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Gviz3d%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Hist%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/HistFactory%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/HistPainter%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Html%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Imt%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/JsMVA/DataLoader.py
lib/root/JsMVA/Factory.py
lib/root/JsMVA/JPyInterface.py
@@ -2949,31 +2921,31 @@ lib/root/JupyROOT/magics/__pycache__/jsrootmagic%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/JupyROOT/magics/__pycache__/jsrootmagic%%PYTHON_EXT_SUFFIX%%.pyc
lib/root/JupyROOT/magics/cppmagic.py
lib/root/JupyROOT/magics/jsrootmagic.py
-lib/root/MLP.pcm
-lib/root/MathCore.pcm
-lib/root/MathMore.pcm
-lib/root/Matrix.pcm
-lib/root/Minuit.pcm
-lib/root/Minuit2.pcm
-lib/root/MultiProc.pcm
-lib/root/Net.pcm
-lib/root/Netx.pcm
-lib/root/NetxNG.pcm
-lib/root/PgSQL.pcm
-lib/root/Physics.pcm
-lib/root/Postscript.pcm
-lib/root/Proof.pcm
-lib/root/ProofBench.pcm
-lib/root/ProofDraw.pcm
-lib/root/ProofPlayer.pcm
-lib/root/PyMVA.pcm
-lib/root/Quadp.pcm
-lib/root/RCsg.pcm
-lib/root/RGL.pcm
-lib/root/RHTTP.pcm
-lib/root/RHTTPSniff.pcm
-lib/root/RIO.pcm
-lib/root/RMySQL.pcm
+lib/root/MLP%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/MathCore%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/MathMore%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Matrix%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Minuit%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Minuit2%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/MultiProc%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Net%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Netx%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/NetxNG%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/PgSQL%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Physics%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Postscript%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Proof%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ProofBench%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ProofDraw%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ProofPlayer%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/PyMVA%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Quadp%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RCsg%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RGL%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RHTTP%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RHTTPSniff%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RIO%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RMySQL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOT/__init__.py
lib/root/ROOT/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/ROOT/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
@@ -3144,42 +3116,42 @@ lib/root/ROOT/_pythonization/_tstring.py
lib/root/ROOT/_pythonization/_ttree.py
lib/root/ROOT/_pythonization/_tvector3.py
lib/root/ROOT/_pythonization/_tvectort.py
-lib/root/ROOTDataFrame.pcm
-lib/root/ROOTTMVASofie.pcm
-lib/root/ROOTTPython.pcm
-lib/root/ROOTVecOps.pcm
-lib/root/ROOT_Config.pcm
-lib/root/ROOT_Foundation_C.pcm
-lib/root/ROOT_Foundation_Stage1_NoRTTI.pcm
-lib/root/ROOT_Rtypes.pcm
-lib/root/RSQLite.pcm
-lib/root/Recorder.pcm
-lib/root/Rint.pcm
-lib/root/RooFit.pcm
-lib/root/RooFitCore.pcm
-lib/root/RooFitHS3.pcm
-lib/root/RooFitMore.pcm
-lib/root/RooFitRDataFrameHelpers.pcm
-lib/root/RooStats.pcm
-lib/root/RootAuth.pcm
-lib/root/SPlot.pcm
-lib/root/SQLIO.pcm
-lib/root/SessionViewer.pcm
-lib/root/Smatrix.pcm
-lib/root/Spectrum.pcm
-lib/root/SpectrumPainter.pcm
-lib/root/TMVA.pcm
-lib/root/TMVAGui.pcm
-lib/root/Thread.pcm
-lib/root/Tree.pcm
-lib/root/TreePlayer.pcm
-lib/root/TreeViewer.pcm
-lib/root/Unfold.pcm
-lib/root/X3d.pcm
-lib/root/XMLIO.pcm
-lib/root/XMLParser.pcm
-lib/root/_Builtin_intrinsics.pcm
-lib/root/_Builtin_stddef_max_align_t.pcm
+lib/root/ROOTDataFrame%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOTTMVASofie%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOTTPython%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOTVecOps%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOT_Config%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOT_Foundation_C%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOT_Foundation_Stage1_NoRTTI%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/ROOT_Rtypes%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RSQLite%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Recorder%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Rint%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RooFit%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RooFitCore%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RooFitHS3%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RooFitMore%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RooFitRDataFrameHelpers%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RooStats%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/RootAuth%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/SPlot%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/SQLIO%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/SessionViewer%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Smatrix%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Spectrum%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/SpectrumPainter%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/TMVA%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/TMVAGui%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Thread%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Tree%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/TreePlayer%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/TreeViewer%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/Unfold%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/X3d%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/XMLIO%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/XMLParser%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/_Builtin_intrinsics%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/_Builtin_stddef_max_align_t%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/cmdLineUtils.py
lib/root/cppyy/__init__.py
lib/root/cppyy/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
@@ -3256,9 +3228,6 @@ lib/root/libFFTW.so.%%SHLIB_VER%%
lib/root/libFITSIO.so
lib/root/libFITSIO.so.%%SHLIB_SHVER%%
lib/root/libFITSIO.so.%%SHLIB_VER%%
-lib/root/libFTGL.so
-lib/root/libFTGL.so.%%SHLIB_SHVER%%
-lib/root/libFTGL.so.%%SHLIB_VER%%
lib/root/libFitPanel.so
lib/root/libFitPanel.so.%%SHLIB_SHVER%%
lib/root/libFitPanel.so.%%SHLIB_VER%%
@@ -3519,7 +3488,7 @@ lib/root/libXMLIO.so.%%SHLIB_VER%%
lib/root/libXMLParser.so
lib/root/libXMLParser.so.%%SHLIB_SHVER%%
lib/root/libXMLParser.so.%%SHLIB_VER%%
-lib/root/libc.pcm
+lib/root/libc%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/libcomplexDict.rootmap
lib/root/libcomplexDict.so
lib/root/libcomplexDict.so.%%SHLIB_SHVER%%
@@ -3590,8 +3559,8 @@ lib/root/libvectorDict.rootmap
lib/root/libvectorDict.so
lib/root/libvectorDict.so.%%SHLIB_SHVER%%
lib/root/libvectorDict.so.%%SHLIB_VER%%
-lib/root/modules.idx
-lib/root/std.pcm
+%%NOT_INSTALLED_ON_AARCH64%%lib/root/modules.idx
+lib/root/std%%AARCH64_PCM_SUFFIX%%.pcm
%%PORTDOCS%%%%DOCSDIR%%/CREDITS
%%PORTDOCS%%%%DOCSDIR%%/DEVELOPMENT.md
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
@@ -5519,3 +5488,1329 @@ share/man/man1/xpdtest.1.gz
%%DATADIR%%/js/style/jquery-ui.css
%%DATADIR%%/macros/Dialogs.C
%%DATADIR%%/macros/fileopen.C
+%%DATADIR%%/ui5/browser/browser.html
+%%DATADIR%%/ui5/browser/Component.js
+%%DATADIR%%/ui5/browser/controller/Browser.controller.js
+%%DATADIR%%/ui5/browser/controller/FileDialog.controller.js
+%%DATADIR%%/ui5/browser/logo.png
+%%DATADIR%%/ui5/browser/manifest.json
+%%DATADIR%%/ui5/browser/model/BrowserListBinding.js
+%%DATADIR%%/ui5/browser/model/BrowserModel.js
+%%DATADIR%%/ui5/browser/style.css
+%%DATADIR%%/ui5/browser/view/Browser.view.xml
+%%DATADIR%%/ui5/browser/view/filedialog.fragment.xml
+%%DATADIR%%/ui5/browser/view/FileDialog.view.xml
+%%DATADIR%%/ui5/browser/view/settingsmenu.fragment.xml
+%%DATADIR%%/ui5/browser/view/tabsmenu.fragment.xml
+%%DATADIR%%/ui5/canv/canvas.html
+%%DATADIR%%/ui5/canv/canvas6.html
+%%DATADIR%%/ui5/canv/Component-preload.js
+%%DATADIR%%/ui5/canv/Component.js
+%%DATADIR%%/ui5/canv/controller/Canvas.controller.js
+%%DATADIR%%/ui5/canv/controller/CanvasPanel.controller.js
+%%DATADIR%%/ui5/canv/controller/ColorButton.js
+%%DATADIR%%/ui5/canv/controller/Ged.controller.js
+%%DATADIR%%/ui5/canv/controller/Panel.controller.js
+%%DATADIR%%/ui5/canv/controller/SVGSample.js
+%%DATADIR%%/ui5/canv/manifest.json
+%%DATADIR%%/ui5/canv/view/Axis.fragment.xml
+%%DATADIR%%/ui5/canv/view/Canvas.view.xml
+%%DATADIR%%/ui5/canv/view/CanvasPanel.view.xml
+%%DATADIR%%/ui5/canv/view/Ged.view.xml
+%%DATADIR%%/ui5/canv/view/Hist.fragment.xml
+%%DATADIR%%/ui5/canv/view/Inspector.fragment.xml
+%%DATADIR%%/ui5/canv/view/Panel.view.xml
+%%DATADIR%%/ui5/canv/view/RAxis.fragment.xml
+%%DATADIR%%/ui5/canv/view/TAttFill.fragment.xml
+%%DATADIR%%/ui5/canv/view/TAttLine.fragment.xml
+%%DATADIR%%/ui5/canv/view/TAttMarker.fragment.xml
+%%DATADIR%%/ui5/canv/view/TNamed.fragment.xml
+%%DATADIR%%/ui5/distribution/LICENSE.txt
+%%DATADIR%%/ui5/distribution/NOTICE.txt
+%%DATADIR%%/ui5/distribution/README.txt
+%%DATADIR%%/ui5/distribution/resources/sap-ui-core-nojQuery.js
+%%DATADIR%%/ui5/distribution/resources/sap-ui-core-nojQuery.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/m/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/m/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/m/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/m/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/m/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/fonts/SAP-icons-TNT.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/fonts/SAP-icons-TNT.ttf
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/fonts/SAP-icons-TNT.woff
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/fonts/SAP-icons-TNT.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/global.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/global.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/tnt/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/ace.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/ext-beautify.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/ext-language_tools.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-c_cpp.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-css.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-javascript.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-json.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-latex.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-markdown.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-plain_text.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-python.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-sh.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/mode-xml.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/c_cpp.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/css.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/fortran.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/html.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/javascript.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/json.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/latex.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/markdown.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/plain_text.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/python.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/sh.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/snippets/xml.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/theme-eclipse.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/theme-github.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/theme-tomorrow.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/worker-css.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/worker-html.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/worker-javascript.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/worker-json.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/js/ace/worker-xml.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/codeeditor/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/accordion/collapsed.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/accordion/expanded.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/applicationheader/SAPLogo.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/ColorPicker/ColorBar.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/ColorPicker/GradientBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/datepicker/icon_cal_disabled.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/datepicker/icon_cal.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/datepicker/v_add_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/datepicker/v_add.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/datepicker/v_remove_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/datepicker/v_remove.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_flat_0_aaaaaa_40x100.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_flat_75_ffffff_40x100.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_glass_55_fbf9ee_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_glass_65_ffffff_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_glass_75_dadada_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_glass_75_e6e6e6_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_glass_95_fef1ec_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-icons_222222_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-icons_2e83ff_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-icons_454545_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-icons_888888_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/jQuery/ui-icons_cd0a0a_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/layout/separationLarge.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/layout/separationMedium.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/layout/separationSmall.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/menu/menuitem-sub-dis.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/menu/menuitem-sub-hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/menu/menuitem-sub.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/collapsed.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/collapsedRTL.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/expanded.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/float_backgr.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/iconError.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/iconSuccess.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/iconWarning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/re-dock.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/re-dockRTL.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/toastarrow_Error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/toastarrow_multi.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/toastarrow_Success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebar/toastarrow_Warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebox/critical.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebox/error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebox/information.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebox/question.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebox/success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/messagebox/warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/paginator/arrow_first.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/paginator/arrow_last.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/paginator/arrow_next.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/paginator/arrow_previous.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/panel/collapsed.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/panel/expanded.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/rating/star_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/rating/star_selected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/rating/star_unselected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/richtooltip/ValueState_Error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/richtooltip/ValueState_Success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/richtooltip/ValueState_Warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/search/search.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/splitter/checkerboard.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/splitter/resize_horizontal.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/splitter/resize_vertical.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/splitter/splitter_horiz_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/splitter/splitter_vert_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/toolbar/overflow.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/TriStateCheckBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/valuehelpfield/F4-Help_icon_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/valuehelpfield/F4-Help_icon_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img-RTL/valuehelpfield/F4-Help_icon_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/accordion/collapsed.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/accordion/expanded.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/applicationheader/SAPLogo.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/ColorPicker/ColorBar.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/ColorPicker/GradientBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/datepicker/icon_cal_disabled.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/datepicker/icon_cal.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/datepicker/v_add_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/datepicker/v_add.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/datepicker/v_remove_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/datepicker/v_remove.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_flat_0_aaaaaa_40x100.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_flat_75_ffffff_40x100.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_glass_55_fbf9ee_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_glass_65_ffffff_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_glass_75_dadada_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_glass_75_e6e6e6_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_glass_95_fef1ec_1x400.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-icons_222222_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-icons_2e83ff_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-icons_454545_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-icons_888888_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/jQuery/ui-icons_cd0a0a_256x240.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/layout/separationLarge.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/layout/separationMedium.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/layout/separationSmall.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/menu/menuitem-sub-dis.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/menu/menuitem-sub-hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/menu/menuitem-sub.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/collapsed.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/collapsedRTL.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/expanded.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/float_backgr.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/iconError.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/iconSuccess.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/iconWarning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/re-dock.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/re-dockRTL.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/toastarrow_Error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/toastarrow_multi.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/toastarrow_Success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebar/toastarrow_Warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebox/critical.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebox/error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebox/information.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebox/question.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebox/success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/messagebox/warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/paginator/arrow_first.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/paginator/arrow_last.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/paginator/arrow_next.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/paginator/arrow_previous.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/panel/collapsed.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/panel/expanded.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/rating/star_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/rating/star_selected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/rating/star_unselected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/richtooltip/ValueState_Error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/richtooltip/ValueState_Success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/richtooltip/ValueState_Warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/search/search.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/splitter/checkerboard.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/splitter/resize_horizontal.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/splitter/resize_vertical.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/splitter/splitter_horiz_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/splitter/splitter_vert_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/toolbar/overflow.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/TriStateCheckBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/valuehelpfield/F4-Help_icon_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/valuehelpfield/F4-Help_icon_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/img/valuehelpfield/F4-Help_icon_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/applicationheader/Header_bg.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/applicationheader/SAPLogo.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_down_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_down.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_left_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_left.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_right_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_right.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_up_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_up.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/button/EmphButton_accept_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/button/EmphButton_regular_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/button/EmphButton_reject_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/checkbox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/combobox/ComboBoxArrow_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/combobox/ComboBoxArrow_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/combobox/ComboBoxArrow_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/datepicker/Calendar_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/datepicker/Calendar_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/datepicker/Calendar_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/dlg-close-act.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/dlg-close-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/dlg-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menu/bar-overflow.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menu/menuitem-sub-dis.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menu/menuitem-sub-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menu/menuitem-sub.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menubutton/Menu_Disabled.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menubutton/Menu_Hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/menubutton/Menu_Regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebar/toastarrow_Error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebar/toastarrow_multi.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebar/toastarrow_Success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebar/toastarrow_Warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebox/32x32/error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebox/32x32/information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebox/32x32/question.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebox/32x32/success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/messagebox/32x32/warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/paginator/paginator.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/panel_container/Maximize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/panel_container/Maximize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/panel_container/Minimize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/panel_container/Minimize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/radiobutton.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/rating/star_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/rating/star_selected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/rating/star_unselected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/rating/star_unselected2.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_end_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_end_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_end.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_start_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_start_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip_start.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/roadmap/roundtrip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/search/clear_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/search/clear.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/search/search_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/search/search_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/search/search_unclickable.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/search/search.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/splitter/splitter_horiz_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/splitter/splitter_vert_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tab-close-sel.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tab-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/CollapseAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/CollapseAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/ExpandAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/ExpandAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Coll-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Coll-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Coll.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Exp-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Exp-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Exp.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/TriStateCheckBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/valuehelpfield/F4-Help_icon_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/valuehelpfield/F4-Help_icon_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/valuehelpfield/F4-Help_icon_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/applicationheader/Header_bg.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/applicationheader/SAPLogo.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_down_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_down.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_left_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_left.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_right_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_right.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_up_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/arrow_up.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/button/EmphButton_accept_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/button/EmphButton_regular_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/button/EmphButton_reject_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/checkbox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/combobox/ComboBoxArrow_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/combobox/ComboBoxArrow_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/combobox/ComboBoxArrow_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/datepicker/Calendar_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/datepicker/Calendar_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/datepicker/Calendar_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/dlg-close-act.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/dlg-close-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/dlg-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menu/bar-overflow.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menu/menuitem-sub-dis.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menu/menuitem-sub-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menu/menuitem-sub.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menubutton/Menu_Disabled.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menubutton/Menu_Hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/menubutton/Menu_Regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebar/toastarrow_Error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebar/toastarrow_multi.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebar/toastarrow_Success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebar/toastarrow_Warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebox/32x32/error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebox/32x32/information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebox/32x32/question.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebox/32x32/success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/messagebox/32x32/warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/paginator/paginator.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/panel_container/Maximize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/panel_container/Maximize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/panel_container/Minimize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/panel_container/Minimize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/radiobutton.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/rating/star_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/rating/star_selected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/rating/star_unselected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/rating/star_unselected2.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_end_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_end_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_end.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_start_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_start_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip_start.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/roadmap/roundtrip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/search/clear_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/search/clear.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/search/search_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/search/search_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/search/search_unclickable.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/search/search.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/splitter/splitter_horiz_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/splitter/splitter_vert_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tab-close-sel.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tab-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/CollapseAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/CollapseAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/ExpandAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/ExpandAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode_Coll-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode_Coll-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode_Coll.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode_Exp-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode_Exp-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode_Exp.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/tree/TreeNode.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/valuehelpfield/F4-Help_icon_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/valuehelpfield/F4-Help_icon_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img/valuehelpfield/F4-Help_icon_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/applicationheader/Header_bg.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/applicationheader/SAPLogo.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_down_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_down.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_left_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_left.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_right_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_right.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_up_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_up.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/button/EmphButton_accept_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/button/EmphButton_regular_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/button/EmphButton_reject_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/checkbox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/combobox/ComboBoxArrow_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/combobox/ComboBoxArrow_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/combobox/ComboBoxArrow_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/datepicker/Calendar_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/datepicker/Calendar_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/datepicker/Calendar_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/dlg-close-act.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/dlg-close-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/dlg-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menu/bar-overflow.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menu/menuitem-sub-dis.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menu/menuitem-sub-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menu/menuitem-sub.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menubutton/Menu_Disabled.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menubutton/Menu_Hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/menubutton/Menu_Regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebar/toastarrow_Error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebar/toastarrow_multi.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebar/toastarrow_Success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebar/toastarrow_Warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebox/32x32/error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebox/32x32/information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebox/32x32/question.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebox/32x32/success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/messagebox/32x32/warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/paginator/paginator.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/panel_container/Maximize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/panel_container/Maximize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/panel_container/Minimize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/panel_container/Minimize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/radiobutton.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/rating/star_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/rating/star_selected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/rating/star_unselected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/rating/star_unselected2.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_end_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_end_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_end.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_start_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_start_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip_start.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/roadmap/roundtrip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/search/clear_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/search/clear.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/search/search_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/search/search_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/search/search_unclickable.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/search/search.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/splitter/splitter_horiz_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/splitter/splitter_vert_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tab-close-sel.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tab-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/CollapseAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/CollapseAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/ExpandAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/ExpandAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode_Coll-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode_Coll-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode_Coll.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode_Exp-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode_Exp-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode_Exp.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/tree/TreeNode.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/TriStateCheckBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/valuehelpfield/F4-Help_icon_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/valuehelpfield/F4-Help_icon_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/valuehelpfield/F4-Help_icon_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/applicationheader/Header_bg.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/applicationheader/SAPLogo.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_down_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_down.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_left_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_left.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_right_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_right.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_up_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/arrow_up.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/button/EmphButton_accept_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/button/EmphButton_regular_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/button/EmphButton_reject_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/checkbox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/combobox/ComboBoxArrow_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/combobox/ComboBoxArrow_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/combobox/ComboBoxArrow_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/datepicker/Calendar_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/datepicker/Calendar_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/datepicker/Calendar_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/dlg-close-act.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/dlg-close-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/dlg-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menu/bar-overflow.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menu/menuitem-sub-dis.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menu/menuitem-sub-hov.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menu/menuitem-sub.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menubutton/Menu_Disabled.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menubutton/Menu_Hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/menubutton/Menu_Regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebar/toastarrow_Error.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebar/toastarrow_multi.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebar/toastarrow_Success.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebar/toastarrow_Warning.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebox/32x32/error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebox/32x32/information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebox/32x32/question.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebox/32x32/success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/messagebox/32x32/warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/paginator/paginator.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/panel_container/Maximize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/panel_container/Maximize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/panel_container/Minimize_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/panel_container/Minimize.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/radiobutton.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/rating/star_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/rating/star_selected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/rating/star_unselected.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/rating/star_unselected2.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_end_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_end_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_end.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_start_dsbl.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_start_hov.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip_start.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/roadmap/roundtrip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/search/clear_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/search/clear.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/search/search_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/search/search_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/search/search_unclickable.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/search/search.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/splitter/splitter_horiz_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/splitter/splitter_vert_grip.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tab-close-sel.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tab-close.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/CollapseAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/CollapseAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/ExpandAll_pressed.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/ExpandAll.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode_Coll-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode_Coll-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode_Coll.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode_Exp-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode_Exp-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode_Exp.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode-inverted.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode-white.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/tree/TreeNode.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/valuehelpfield/F4-Help_icon_dsbl.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/valuehelpfield/F4-Help_icon_hover.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img/valuehelpfield/F4-Help_icon_regular.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/base.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/fonts/SAP-icons.ttf
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/fonts/SAP-icons.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/fonts/SAP-icons.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/global.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/1x1.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/Busy.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/16x16/Message_Icon_Error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/16x16/Message_Icon_Information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/16x16/Message_Icon_Success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/16x16/Message_Icon_Warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/32x32/Message_Icon_Error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/32x32/Message_Icon_Information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/32x32/Message_Icon_Success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img-RTL/message/32x32/Message_Icon_Warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/1x1.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/Busy.gif
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/16x16/Message_Icon_Error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/16x16/Message_Icon_Information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/16x16/Message_Icon_Success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/16x16/Message_Icon_Warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/32x32/Message_Icon_Error.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/32x32/Message_Icon_Information.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/32x32/Message_Icon_Success.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/img/message/32x32/Message_Icon_Warning.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/.theme
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/base.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Bold-full.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Bold-full.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Bold.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Bold.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Regular-full.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Regular-full.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Regular.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/fonts/72-Regular.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/global.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/.theme
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/base.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light-full.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light-full.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff2
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/global.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/core/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/img/create.txt
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/layout/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/table/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/thirdparty/jquery-compat.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/img/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/messagebundle_en.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/ColorPicker/ColorBar.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/ColorPicker/GradientBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/ColorPicker/PickingCursor-Default.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/ColorPicker/Swatch_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/ColorPicker/Unified_Swatch_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img-RTL/create.txt
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/ColorPicker/ColorBar.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/ColorPicker/GradientBox.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/ColorPicker/PickingCursor-Default.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/ColorPicker/Swatch_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/ColorPicker/Unified_Swatch_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/img/create.txt
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/ColorPicker/Swatch_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/ColorPicker/Alphaslider_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/ColorPicker/Swatch_BG.png
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/ui/unified/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/library-preload.js
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/library-preload.js.map
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/messagebundle_en_US.properties
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/messagebundle.properties
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/base/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_belize/resources.json
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/.theming
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/css_variables.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/css_variables.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/css_variables.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library_skeleton-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library_skeleton.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library-parameters.json
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library-RTL.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library.css
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/library.source.less
+%%DATADIR%%/ui5/distribution/resources/sap/uxap/themes/sap_fiori_3/resources.json
+%%DATADIR%%/ui5/eve7/Component.js
+%%DATADIR%%/ui5/eve7/controller/EveTable.controller.js
+%%DATADIR%%/ui5/eve7/controller/Ged.controller.js
+%%DATADIR%%/ui5/eve7/controller/GeomViewer.controller.js
+%%DATADIR%%/ui5/eve7/controller/GL.controller.js
+%%DATADIR%%/ui5/eve7/controller/Lego.controller.js
+%%DATADIR%%/ui5/eve7/controller/Main.controller.js
+%%DATADIR%%/ui5/eve7/controller/Summary.controller.js
+%%DATADIR%%/ui5/eve7/css/eve.css
+%%DATADIR%%/ui5/eve7/geom.html
+%%DATADIR%%/ui5/eve7/index.html
+%%DATADIR%%/ui5/eve7/lib/EveElements.js
+%%DATADIR%%/ui5/eve7/lib/EveElementsRCore.js
+%%DATADIR%%/ui5/eve7/lib/EveManager.js
+%%DATADIR%%/ui5/eve7/lib/EveScene.js
+%%DATADIR%%/ui5/eve7/lib/FXAAShader.js
+%%DATADIR%%/ui5/eve7/lib/GeomDrawing.js
+%%DATADIR%%/ui5/eve7/lib/GlViewer.js
+%%DATADIR%%/ui5/eve7/lib/GlViewerJSRoot.js
+%%DATADIR%%/ui5/eve7/lib/GlViewerRCore.js
+%%DATADIR%%/ui5/eve7/lib/GlViewerThree.js
+%%DATADIR%%/ui5/eve7/lib/OrbitControlsEve.js
+%%DATADIR%%/ui5/eve7/lib/OutlinePass.js
+%%DATADIR%%/ui5/eve7/lib/RendeQuTor.js
+%%DATADIR%%/ui5/eve7/manifest.json
+%%DATADIR%%/ui5/eve7/shaders/custom/copyDepth2RReve.frag
+%%DATADIR%%/ui5/eve7/shaders/custom/copyDepth2RReve.vert
+%%DATADIR%%/ui5/eve7/shaders/custom/highPassReve.frag
+%%DATADIR%%/ui5/eve7/shaders/custom/highPassReve.vert
+%%DATADIR%%/ui5/eve7/shaders/custom/lowPassReve.frag
+%%DATADIR%%/ui5/eve7/shaders/custom/lowPassReve.vert
+%%DATADIR%%/ui5/eve7/shaders/programs.json
+%%DATADIR%%/ui5/eve7/view/EveTable.view.xml
+%%DATADIR%%/ui5/eve7/view/Ged.view.xml
+%%DATADIR%%/ui5/eve7/view/GeomViewer.view.xml
+%%DATADIR%%/ui5/eve7/view/GL.view.xml
+%%DATADIR%%/ui5/eve7/view/Lego.view.xml
+%%DATADIR%%/ui5/eve7/view/Main.view.xml
+%%DATADIR%%/ui5/eve7/view/MainMain.view.xml
+%%DATADIR%%/ui5/eve7/view/Summary.view.xml
+%%DATADIR%%/ui5/fitpanel/controller/ColorButton.js
+%%DATADIR%%/ui5/fitpanel/controller/FitPanel.controller.js
+%%DATADIR%%/ui5/fitpanel/style/style.css
+%%DATADIR%%/ui5/fitpanel/view/FitPanel.view.xml
+%%DATADIR%%/ui5/panel/Controller.js
+%%DATADIR%%/ui5/panel/panel.html
+%%ROOT7%%include/root/ROOT/Browsable/RAnyObjectHolder.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RElement.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RGroup.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RHolder.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RItem.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RLevelIter.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RProvider.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RShared.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RSysFile.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RSysFileItem.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RUnique.hxx
+%%ROOT7%%include/root/ROOT/Browsable/RWrapper.hxx
+%%ROOT7%%include/root/ROOT/Browsable/TKeyItem.hxx
+%%ROOT7%%include/root/ROOT/Browsable/TObjectElement.hxx
+%%ROOT7%%include/root/ROOT/Browsable/TObjectHolder.hxx
+%%ROOT7%%include/root/ROOT/Browsable/TObjectItem.hxx
+%%ROOT7%%include/root/ROOT/impl_tuple_apply.hxx
+%%ROOT7%%include/root/ROOT/libdaos_mock/daos.h
+%%ROOT7%%include/root/ROOT/RAttrAggregation.hxx
+%%ROOT7%%include/root/ROOT/RAttrAxis.hxx
+%%ROOT7%%include/root/ROOT/RAttrBase.hxx
+%%ROOT7%%include/root/ROOT/RAttrBorder.hxx
+%%ROOT7%%include/root/ROOT/RAttrFill.hxx
+%%ROOT7%%include/root/ROOT/RAttrFont.hxx
+%%ROOT7%%include/root/ROOT/RAttrLine.hxx
+%%ROOT7%%include/root/ROOT/RAttrMap.hxx
+%%ROOT7%%include/root/ROOT/RAttrMargins.hxx
+%%ROOT7%%include/root/ROOT/RAttrMarker.hxx
+%%ROOT7%%include/root/ROOT/RAttrText.hxx
+%%ROOT7%%include/root/ROOT/RAttrValue.hxx
+%%ROOT7%%include/root/ROOT/RAxis.hxx
+%%ROOT7%%include/root/ROOT/RAxisConfig.hxx
+%%ROOT7%%include/root/ROOT/RAxisDrawable.hxx
+%%ROOT7%%include/root/ROOT/RBox.hxx
+%%ROOT7%%include/root/ROOT/RBrowser.hxx
+%%ROOT7%%include/root/ROOT/RBrowserData.hxx
+%%ROOT7%%include/root/ROOT/RBrowserReply.hxx
+%%ROOT7%%include/root/ROOT/RBrowserRequest.hxx
+%%ROOT7%%include/root/ROOT/RCanvas.hxx
+%%ROOT7%%include/root/ROOT/RCluster.hxx
+%%ROOT7%%include/root/ROOT/RClusterPool.hxx
+%%ROOT7%%include/root/ROOT/RColor.hxx
+%%ROOT7%%include/root/ROOT/RColumn.hxx
+%%ROOT7%%include/root/ROOT/RColumnElement.hxx
+%%ROOT7%%include/root/ROOT/RColumnModel.hxx
+%%ROOT7%%include/root/ROOT/RDaos.hxx
+%%ROOT7%%include/root/ROOT/RDirectory.hxx
+%%ROOT7%%include/root/ROOT/RDirectoryEntry.hxx
+%%ROOT7%%include/root/ROOT/RDisplayItem.hxx
+%%ROOT7%%include/root/ROOT/RDrawable.hxx
+%%ROOT7%%include/root/ROOT/RDrawableRequest.hxx
+%%ROOT7%%include/root/ROOT/REntry.hxx
+%%ROOT7%%include/root/ROOT/RError.hxx
+%%ROOT7%%include/root/ROOT/REveBox.hxx
+%%ROOT7%%include/root/ROOT/REveBoxSet.hxx
+%%ROOT7%%include/root/ROOT/REveCalo.hxx
+%%ROOT7%%include/root/ROOT/REveCaloData.hxx
+%%ROOT7%%include/root/ROOT/REveChunkManager.hxx
+%%ROOT7%%include/root/ROOT/REveClient.hxx
+%%ROOT7%%include/root/ROOT/REveCompound.hxx
+%%ROOT7%%include/root/ROOT/REveDataCollection.hxx
+%%ROOT7%%include/root/ROOT/REveDataProxyBuilderBase.hxx
+%%ROOT7%%include/root/ROOT/REveDataSimpleProxyBuilder.hxx
+%%ROOT7%%include/root/ROOT/REveDataSimpleProxyBuilderTemplate.hxx
+%%ROOT7%%include/root/ROOT/REveDataTable.hxx
+%%ROOT7%%include/root/ROOT/REveDigitSet.hxx
+%%ROOT7%%include/root/ROOT/REveElement.hxx
+%%ROOT7%%include/root/ROOT/REveEllipsoid.hxx
+%%ROOT7%%include/root/ROOT/REveFrameBox.hxx
+%%ROOT7%%include/root/ROOT/REveGeomData.hxx
+%%ROOT7%%include/root/ROOT/REveGeomViewer.hxx
+%%ROOT7%%include/root/ROOT/REveGeoPainter.hxx
+%%ROOT7%%include/root/ROOT/REveGeoPolyShape.hxx
+%%ROOT7%%include/root/ROOT/REveGeoShape.hxx
+%%ROOT7%%include/root/ROOT/REveGeoShapeExtract.hxx
+%%ROOT7%%include/root/ROOT/REveGluTess.hxx
+%%ROOT7%%include/root/ROOT/REveJetCone.hxx
+%%ROOT7%%include/root/ROOT/REveLine.hxx
+%%ROOT7%%include/root/ROOT/REveManager.hxx
+%%ROOT7%%include/root/ROOT/REvePathMark.hxx
+%%ROOT7%%include/root/ROOT/REvePointSet.hxx
+%%ROOT7%%include/root/ROOT/REvePolygonSetProjected.hxx
+%%ROOT7%%include/root/ROOT/REveProjectionBases.hxx
+%%ROOT7%%include/root/ROOT/REveProjectionManager.hxx
+%%ROOT7%%include/root/ROOT/REveProjections.hxx
+%%ROOT7%%include/root/ROOT/REveRenderData.hxx
+%%ROOT7%%include/root/ROOT/REveRGBAPalette.hxx
+%%ROOT7%%include/root/ROOT/REveScalableStraightLineSet.hxx
+%%ROOT7%%include/root/ROOT/REveScene.hxx
+%%ROOT7%%include/root/ROOT/REveSceneInfo.hxx
+%%ROOT7%%include/root/ROOT/REveSecondarySelectable.hxx
+%%ROOT7%%include/root/ROOT/REveSelection.hxx
+%%ROOT7%%include/root/ROOT/REveShape.hxx
+%%ROOT7%%include/root/ROOT/REveStraightLineSet.hxx
+%%ROOT7%%include/root/ROOT/REveSystem.hxx
+%%ROOT7%%include/root/ROOT/REveTableInfo.hxx
+%%ROOT7%%include/root/ROOT/REveTableProxyBuilder.hxx
+%%ROOT7%%include/root/ROOT/REveTrack.hxx
+%%ROOT7%%include/root/ROOT/REveTrackProjected.hxx
+%%ROOT7%%include/root/ROOT/REveTrackPropagator.hxx
+%%ROOT7%%include/root/ROOT/REveTrans.hxx
+%%ROOT7%%include/root/ROOT/REveTreeTools.hxx
+%%ROOT7%%include/root/ROOT/REveTypes.hxx
+%%ROOT7%%include/root/ROOT/REveUtil.hxx
+%%ROOT7%%include/root/ROOT/REveVector.hxx
+%%ROOT7%%include/root/ROOT/REveViewContext.hxx
+%%ROOT7%%include/root/ROOT/REveViewer.hxx
+%%ROOT7%%include/root/ROOT/REveVSD.hxx
+%%ROOT7%%include/root/ROOT/REveVSDStructs.hxx
+%%ROOT7%%include/root/ROOT/RField.hxx
+%%ROOT7%%include/root/ROOT/RFieldValue.hxx
+%%ROOT7%%include/root/ROOT/RFieldVisitor.hxx
+%%ROOT7%%include/root/ROOT/RFile.hxx
+%%ROOT7%%include/root/ROOT/RFileDialog.hxx
+%%ROOT7%%include/root/ROOT/RFit.hxx
+%%ROOT7%%include/root/ROOT/RFitPanel.hxx
+%%ROOT7%%include/root/ROOT/RFitPanelModel.hxx
+%%ROOT7%%include/root/ROOT/RFont.hxx
+%%ROOT7%%include/root/ROOT/RFrame.hxx
+%%ROOT7%%include/root/ROOT/RFrameTitle.hxx
+%%ROOT7%%include/root/ROOT/RHist.hxx
+%%ROOT7%%include/root/ROOT/RHistBinIter.hxx
+%%ROOT7%%include/root/ROOT/RHistBufferedFill.hxx
+%%ROOT7%%include/root/ROOT/RHistConcurrentFill.hxx
+%%ROOT7%%include/root/ROOT/RHistData.hxx
+%%ROOT7%%include/root/ROOT/RHistDisplayItem.hxx
+%%ROOT7%%include/root/ROOT/RHistDrawable.hxx
+%%ROOT7%%include/root/ROOT/RHistImpl.hxx
+%%ROOT7%%include/root/ROOT/RHistStatBox.hxx
+%%ROOT7%%include/root/ROOT/RHistUtils.hxx
+%%ROOT7%%include/root/ROOT/RHistView.hxx
+%%ROOT7%%include/root/ROOT/RIndexIter.hxx
+%%ROOT7%%include/root/ROOT/RLegend.hxx
+%%ROOT7%%include/root/ROOT/RLine.hxx
+%%ROOT7%%include/root/ROOT/RMarker.hxx
+%%ROOT7%%include/root/ROOT/RMenuItems.hxx
+%%ROOT7%%include/root/ROOT/RMiniFile.hxx
+%%ROOT7%%include/root/ROOT/RNTuple.hxx
+%%ROOT7%%include/root/ROOT/RNTupleDescriptor.hxx
+%%ROOT7%%include/root/ROOT/RNTupleMerger.hxx
+%%ROOT7%%include/root/ROOT/RNTupleMetrics.hxx
+%%ROOT7%%include/root/ROOT/RNTupleModel.hxx
+%%ROOT7%%include/root/ROOT/RNTupleOptions.hxx
+%%ROOT7%%include/root/ROOT/RNTupleSerialize.hxx
+%%ROOT7%%include/root/ROOT/RNTupleUtil.hxx
+%%ROOT7%%include/root/ROOT/RNTupleView.hxx
+%%ROOT7%%include/root/ROOT/RNTupleZip.hxx
+%%ROOT7%%include/root/ROOT/ROnFrameDrawable.hxx
+%%ROOT7%%include/root/ROOT/RPad.hxx
+%%ROOT7%%include/root/ROOT/RPadBase.hxx
+%%ROOT7%%include/root/ROOT/RPadDisplayItem.hxx
+%%ROOT7%%include/root/ROOT/RPadExtent.hxx
+%%ROOT7%%include/root/ROOT/RPadLength.hxx
+%%ROOT7%%include/root/ROOT/RPadPos.hxx
+%%ROOT7%%include/root/ROOT/RPage.hxx
+%%ROOT7%%include/root/ROOT/RPageAllocator.hxx
+%%ROOT7%%include/root/ROOT/RPagePool.hxx
+%%ROOT7%%include/root/ROOT/RPageSinkBuf.hxx
+%%ROOT7%%include/root/ROOT/RPageSourceFriends.hxx
+%%ROOT7%%include/root/ROOT/RPageStorage.hxx
+%%ROOT7%%include/root/ROOT/RPageStorageDaos.hxx
+%%ROOT7%%include/root/ROOT/RPageStorageFile.hxx
+%%ROOT7%%include/root/ROOT/RPalette.hxx
+%%ROOT7%%include/root/ROOT/RPaletteDrawable.hxx
+%%ROOT7%%include/root/ROOT/RPave.hxx
+%%ROOT7%%include/root/ROOT/RPaveText.hxx
+%%ROOT7%%include/root/ROOT/RStyle.hxx
+%%ROOT7%%include/root/ROOT/RText.hxx
+%%ROOT7%%include/root/ROOT/RTupleApply.hxx
+%%ROOT7%%include/root/ROOT/RVirtualCanvasPainter.hxx
+%%ROOT7%%include/root/ROOT/RWebBrowserImp.hxx
+%%ROOT7%%include/root/ROOT/TObjectDisplayItem.hxx
+%%ROOT7%%include/root/ROOT/TObjectDrawable.hxx
+%%ROOT7%%lib/root/libROOTBranchBrowseProvider.so
+%%ROOT7%%lib/root/libROOTBranchBrowseProvider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBranchBrowseProvider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTBrowsable.so
+%%ROOT7%%lib/root/libROOTBrowsable.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBrowsable.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTBrowserGeomWidget.so
+%%ROOT7%%lib/root/libROOTBrowserGeomWidget.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBrowserGeomWidget.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTBrowserRCanvasWidget.so
+%%ROOT7%%lib/root/libROOTBrowserRCanvasWidget.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBrowserRCanvasWidget.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTBrowserTCanvasWidget.so
+%%ROOT7%%lib/root/libROOTBrowserTCanvasWidget.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBrowserTCanvasWidget.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTBrowserv7.so
+%%ROOT7%%lib/root/libROOTBrowserv7.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBrowserv7.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTBrowserWidgets.so
+%%ROOT7%%lib/root/libROOTBrowserWidgets.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTBrowserWidgets.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTCanvasPainter.so
+%%ROOT7%%lib/root/libROOTCanvasPainter.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTCanvasPainter.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTEve.so
+%%ROOT7%%lib/root/libROOTEve.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTEve.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTFitPanelv7.so
+%%ROOT7%%lib/root/libROOTFitPanelv7.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTFitPanelv7.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTGpadv7.so
+%%ROOT7%%lib/root/libROOTGpadv7.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTGpadv7.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTGraphicsPrimitives.so
+%%ROOT7%%lib/root/libROOTGraphicsPrimitives.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTGraphicsPrimitives.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTHist.so
+%%ROOT7%%lib/root/libROOTHist.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTHist.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTHistDraw.so
+%%ROOT7%%lib/root/libROOTHistDraw.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTHistDraw.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTHistDrawProvider.so
+%%ROOT7%%lib/root/libROOTHistDrawProvider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTHistDrawProvider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTLeafDraw6Provider.so
+%%ROOT7%%lib/root/libROOTLeafDraw6Provider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTLeafDraw6Provider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTLeafDraw7Provider.so
+%%ROOT7%%lib/root/libROOTLeafDraw7Provider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTLeafDraw7Provider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTNTuple.so
+%%ROOT7%%lib/root/libROOTNTuple.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTNTuple.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTNTupleBrowseProvider.so
+%%ROOT7%%lib/root/libROOTNTupleBrowseProvider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTNTupleBrowseProvider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTNTupleDraw6Provider.so
+%%ROOT7%%lib/root/libROOTNTupleDraw6Provider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTNTupleDraw6Provider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTNTupleDraw7Provider.so
+%%ROOT7%%lib/root/libROOTNTupleDraw7Provider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTNTupleDraw7Provider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTObjectDraw6Provider.so
+%%ROOT7%%lib/root/libROOTObjectDraw6Provider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTObjectDraw6Provider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/libROOTObjectDraw7Provider.so
+%%ROOT7%%lib/root/libROOTObjectDraw7Provider.so.%%SHLIB_SHVER%%
+%%ROOT7%%lib/root/libROOTObjectDraw7Provider.so.%%SHLIB_VER%%
+%%ROOT7%%lib/root/ROOTBrowsable%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTBrowserv7%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTEve%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTFitPanelv7%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTGpadv7%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTGraphicsPrimitives%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTHist%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTHistDraw%%AARCH64_PCM_SUFFIX%%.pcm
+%%ROOT7%%lib/root/ROOTNTuple%%AARCH64_PCM_SUFFIX%%.pcm
+include/root/ROOT/RWebDisplayArgs.hxx
+include/root/ROOT/RWebDisplayHandle.hxx
+include/root/ROOT/RWebWindow.hxx
+include/root/ROOT/RWebWindowsManager.hxx
+include/root/TWebCanvas.h
+include/root/TWebGuiFactory.h
+include/root/TWebMenuItem.h
+include/root/TWebPadOptions.h
+include/root/TWebPadPainter.h
+include/root/TWebPainting.h
+include/root/TWebPS.h
+include/root/TWebSnapshot.h
+lib/root/DistRDF/__pycache__/CppWorkflow%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+lib/root/DistRDF/__pycache__/CppWorkflow%%PYTHON_EXT_SUFFIX%%.pyc
+lib/root/DistRDF/__pycache__/HeadNode%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+lib/root/DistRDF/__pycache__/HeadNode%%PYTHON_EXT_SUFFIX%%.pyc
+lib/root/DistRDF/__pycache__/PythonMergeables%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+lib/root/DistRDF/__pycache__/PythonMergeables%%PYTHON_EXT_SUFFIX%%.pyc
+lib/root/DistRDF/__pycache__/Ranges%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+lib/root/DistRDF/__pycache__/Ranges%%PYTHON_EXT_SUFFIX%%.pyc
+lib/root/DistRDF/Backends/Dask/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+lib/root/DistRDF/Backends/Dask/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
+lib/root/DistRDF/Backends/Dask/__pycache__/Backend%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+lib/root/DistRDF/Backends/Dask/__pycache__/Backend%%PYTHON_EXT_SUFFIX%%.pyc
+lib/root/libROOTWebDisplay.so
+lib/root/libROOTWebDisplay.so.%%SHLIB_SHVER%%
+lib/root/libROOTWebDisplay.so.%%SHLIB_VER%%
+lib/root/ROOTWebDisplay%%AARCH64_PCM_SUFFIX%%.pcm
+lib/root/libWebGui6.so
+lib/root/libWebGui6.so.%%SHLIB_SHVER%%
+lib/root/libWebGui6.so.%%SHLIB_VER%%
+lib/root/WebGui6%%AARCH64_PCM_SUFFIX%%.pcm
diff --git a/devel/root/scripts/remove-modules-from-modulemap.sh b/devel/root/scripts/remove-modules-from-modulemap.sh
new file mode 100755
index 000000000000..64df1b9c2ba0
--- /dev/null
+++ b/devel/root/scripts/remove-modules-from-modulemap.sh
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+# Script removes module definition blocks in LLVM/Clang .modulemap
+# files in-place in the file path stored in the variable MODULEMAP
+
+sp='[[:space:]]'
+
+mdls="" ; i=0
+for m in "$@" ; do
+ i=$((i+1))
+ mdls="$mdls($m)"
+ [ $i -ne $# ] && mdls="$mdls|"
+done
+
+script="\
+/^$sp*(explicit)?$sp*module$sp*\"$mdls\"$sp*\{$sp*\$/ {
+ :l
+ N
+ s/}/}/
+ tx
+ bl
+ :x
+ d
+}\
+"
+
+sed -i '' -E "$script" "$MODULEMAP"