aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Popov <arrowd@FreeBSD.org>2020-08-18 19:09:36 +0000
committerGleb Popov <arrowd@FreeBSD.org>2020-08-18 19:09:36 +0000
commit12047f2917a1aaf78fcca6bfd179b1038f8b4de5 (patch)
tree55f9a08ab8e1fe30105319eab7c9cf0d327da269
parentb11b0133b507597f7e829dfb2ffeb8d2298035e4 (diff)
downloadports-12047f2917a1aaf78fcca6bfd179b1038f8b4de5.tar.gz
ports-12047f2917a1aaf78fcca6bfd179b1038f8b4de5.zip
Notes
-rw-r--r--lang/ghc/Makefile17
-rw-r--r--lang/ghc/files/fixup-plist.hs32
-rw-r--r--lang/ghc/pkg-plist6015
3 files changed, 5319 insertions, 745 deletions
diff --git a/lang/ghc/Makefile b/lang/ghc/Makefile
index 525dde797db9..75e82a6d81ac 100644
--- a/lang/ghc/Makefile
+++ b/lang/ghc/Makefile
@@ -56,6 +56,8 @@ DYNAMIC_CONFIGURE_WITH= system-libffi \
DYNAMIC_LIB_DEPENDS= libffi.so:devel/libffi
DYNAMIC_SUB_LIST= WITH_DYNAMIC="YES"
DYNAMIC_SUB_LIST_OFF= WITH_DYNAMIC="NO"
+DYNAMIC_PLIST_SUB= NODYNAMIC="@comment "
+DYNAMIC_PLIST_SUB_OFF= NODYNAMIC=""
GMP_CONFIGURE_WITH= gmp-includes=${LOCALBASE}/include \
gmp-libraries=${LOCALBASE}/lib
@@ -72,8 +74,6 @@ BOOT_SUB_LIST_OFF= HSC2HS=${BOOT_HSC2HS}
PROFILE_SUB_LIST= WITH_PROFILE="YES"
PROFILE_SUB_LIST_OFF= WITH_PROFILE="NO"
-PLIST_SUB= GHC_VERSION=${GHC_VERSION} GHC_LIBDIR=${GHC_LIBDIR_REL}
-
GHC_VERSION= 8.10.1
HSCOLOUR_VERSION= 1.24.4
LLVM_VERSION= 90
@@ -179,14 +179,6 @@ CONFIGURE_ARGS+= GHC=${LOCALBASE}/bin/ghc
SLAVES_PREFIX= ${WRKDIR}/slaves_prefix
SLAVES_WRKDIRPREFIX= ${WRKDIR}/slaves_wrkdirprefix
-# %%PORTDOCS%%%%DOCSDIR%%/html/libraries/doc-index-V.html
-post-install-script:
- ${FIND} -ds ${GHC_LIBDIR} -type f -print | ${SED} -E \
- -e 's,^${STAGEDIR}${PREFIX}/?,,' \
- -e '/^${GHC_LIBDIR:C/\//\\\//g}\/package.conf.d\/package\.cache/s|^|@comment |g' \
- >> ${TMPPLIST}
- ${ECHO} '@postunexec ${RM} %D/${GHC_LIBDIR_REL}/package.conf.d/package.cache' >>${TMPPLIST}
-
post-patch:
@${REINPLACE_CMD} -e 's|%%CC%%|${CC}|; \
s|%%AR%%|${AR}|; \
@@ -236,8 +228,13 @@ pre-configure: apply-slist
post-install:
(for f in ${_EXECUTABLES} $$(${FIND} ${GHC_LIBDIR} -name '*.so*'); do \
${STRIP_CMD} $$f; done)
+ ${RM} -r ${STAGEDIR}${DOCSDIR}/html/haddock/.build-html
${RM} ${STAGEDIR}${PREFIX}/bin/haddock
+.PHONY: fixup-plist
+fixup-plist:
+ ${BOOT_DIR}/bin/runhaskell ${PATCHDIR}/fixup-plist.hs ${.CURDIR}/pkg-plist
+
# Create a bootstrap compiler tar ball: run this in an interactive poudriere jail
.PHONY: create-bootstrap
create-bootstrap:
diff --git a/lang/ghc/files/fixup-plist.hs b/lang/ghc/files/fixup-plist.hs
new file mode 100644
index 000000000000..5fba5009eb63
--- /dev/null
+++ b/lang/ghc/files/fixup-plist.hs
@@ -0,0 +1,32 @@
+import Data.List
+import System.Environment
+
+main = do
+ [pkgplist] <- getArgs
+ plistLines <- lines <$> readFile pkgplist
+ mapM (putStrLn . processLine2 . processLine1) plistLines
+
+processLine1 l
+ | "%%DYNAMIC%%" `isPrefixOf` l ||
+ "%%PROFILE%%" `isPrefixOf` l ||
+ "%%GMP%%" `isPrefixOf` l ||
+ "%%SIMPLE%%" `isPrefixOf` l = l
+
+ | ".dyn_hi" `isSuffixOf` l ||
+ "/ghc-iserv-dyn" `isSuffixOf` l ||
+ ".so" `isSuffixOf` l = "%%DYNAMIC%%" ++ l
+
+ | ".p_hi" `isSuffixOf` l ||
+ "/ghc-iserv-prof" `isSuffixOf` l ||
+ ".p_o" `isSuffixOf` l ||
+ "_p.a" `isSuffixOf` l = "%%PROFILE%%" ++ l
+
+ | otherwise = l
+
+processLine2 l
+ | "%%GMP%%" `isPrefixOf` l ||
+ "%%SIMPLE%%" `isPrefixOf` l = l
+ | "/integer-gmp-" `isInfixOf` l = "%%GMP%%" ++ l
+ | "/integer-simple-" `isInfixOf` l = "%%SIMPLE%%" ++ l
+ | "/libCffi" `isInfixOf` l = "%%NODYNAMIC%%" ++ l
+ | otherwise = l
diff --git a/lang/ghc/pkg-plist b/lang/ghc/pkg-plist
index 655f20bdedb5..ed35f5574987 100644
--- a/lang/ghc/pkg-plist
+++ b/lang/ghc/pkg-plist
@@ -1,17 +1,4562 @@
bin/ghc
-bin/ghci
+bin/ghc-8.10.1
bin/ghc-pkg
-bin/runhaskell
-bin/runghc
-bin/haddock-ghc-%%GHC_VERSION%%
+bin/ghc-pkg-8.10.1
+bin/ghci
+bin/ghci-8.10.1
+bin/haddock-ghc-8.10.1
bin/hp2ps
bin/hpc
bin/hsc2hs
-bin/ghc-%%GHC_VERSION%%
-bin/ghci-%%GHC_VERSION%%
-bin/ghc-pkg-%%GHC_VERSION%%
-bin/runghc-%%GHC_VERSION%%
-%%DOCS%%man/man1/ghc.1.gz
+bin/runghc
+bin/runghc-8.10.1
+bin/runhaskell
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ComponentsGraph.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ComponentsGraph.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ComponentsGraph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Configure.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Configure.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Configure.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ConfiguredComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ConfiguredComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ConfiguredComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/DescribeUnitId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/DescribeUnitId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/DescribeUnitId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/FullUnitId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/FullUnitId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/FullUnitId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Id.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Id.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/Id.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/LinkedComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/LinkedComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/LinkedComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/MixLink.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/MixLink.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/MixLink.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModSubst.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModSubst.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModSubst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleScope.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleScope.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleScope.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleShape.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleShape.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ModuleShape.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreExistingComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreExistingComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreExistingComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreModuleShape.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreModuleShape.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/PreModuleShape.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ReadyComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ReadyComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/ReadyComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/UnifyM.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/UnifyM.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Backpack/UnifyM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/CabalSpecVersion.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/CabalSpecVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/CabalSpecVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Async.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Async.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Async.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Binary.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Binary.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Binary.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CharParsing.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CharParsing.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CharParsing.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CopyFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CopyFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CopyFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CreatePipe.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CreatePipe.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/CreatePipe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/DList.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/DList.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/DList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Directory.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Directory.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Directory.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Environment.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Environment.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Environment.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Exception.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/FilePath.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/FilePath.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/FilePath.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/GetShortPathName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/GetShortPathName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/GetShortPathName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Graph.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Graph.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Graph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Internal/TempFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Internal/TempFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Internal/TempFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/MonadFail.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/MonadFail.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/MonadFail.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Newtype.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Newtype.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Newtype.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Parsing.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Parsing.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Parsing.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Prelude/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/ResponseFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/ResponseFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/ResponseFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Semigroup.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Semigroup.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Semigroup.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/SnocList.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/SnocList.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/SnocList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Stack.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Stack.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Stack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Time.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Time.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Time.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Typeable.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Typeable.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compat/Typeable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compiler.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compiler.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Compiler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Class.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/FieldDescrs.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/FieldDescrs.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/FieldDescrs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Parsec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Pretty.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/FieldGrammar/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ConfVar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ConfVar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ConfVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Field.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Field.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Field.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Lexer.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Lexer.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Lexer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/LexerMonad.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/LexerMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/LexerMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ParseResult.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ParseResult.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/ParseResult.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Parser.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Parser.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Parser.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Pretty.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Fields/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/GetOpt.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/GetOpt.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/GetOpt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/InstalledPackageInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/InstalledPackageInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/InstalledPackageInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Lex.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Lex.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Lex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/License.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/License.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/License.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Make.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Make.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Make.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ModuleName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ModuleName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ModuleName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Package.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Package.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Package.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Check.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Check.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Check.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Configuration.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Configuration.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Configuration.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/FieldGrammar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/FieldGrammar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/FieldGrammar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Parsec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/PrettyPrint.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/PrettyPrint.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/PrettyPrint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Quirks.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Quirks.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Quirks.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Utils.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/PackageDescription/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Error.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/FieldLineStream.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/FieldLineStream.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/FieldLineStream.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Newtypes.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Newtypes.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Newtypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Position.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Position.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Position.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Warning.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Warning.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Parsec/Warning.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Pretty.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ReadE.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ReadE.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/ReadE.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/License.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/License.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/License.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExceptionId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExceptionId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExceptionId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExpression.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExpression.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseExpression.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseListVersion.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseListVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseListVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseReference.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseReference.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/SPDX/LicenseReference.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Bench.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Bench.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Bench.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/Macros.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/Macros.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/Macros.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/PathsModule.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/PathsModule.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Build/PathsModule.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildPaths.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildPaths.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildPaths.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildTarget.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildTarget.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildTarget.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildToolDepends.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildToolDepends.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/BuildToolDepends.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/CCompiler.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/CCompiler.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/CCompiler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Command.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Command.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Command.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Compiler.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Compiler.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Compiler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Configure.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Configure.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Configure.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Doctest.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Doctest.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Doctest.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Flag.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Flag.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Flag.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/EnvironmentParser.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/EnvironmentParser.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/EnvironmentParser.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/ImplInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/ImplInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/ImplInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHC/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHCJS.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHCJS.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/GHCJS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Glob.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Glob.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Glob.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Haddock.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Haddock.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Haddock.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/HaskellSuite.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/HaskellSuite.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/HaskellSuite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Hpc.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Hpc.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Hpc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Install.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Install.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Install.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/InstallDirs/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/LocalBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/LocalBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/LocalBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PackageIndex.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PackageIndex.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PackageIndex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess/Unlit.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess/Unlit.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/PreProcess/Unlit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Builtin.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Builtin.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Builtin.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Db.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Db.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Db.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Find.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Find.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Find.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/GHC.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/GHC.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/GHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/HcPkg.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/HcPkg.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/HcPkg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Hpc.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Hpc.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Hpc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ld.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ld.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Ld.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/ResponseFile.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/ResponseFile.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/ResponseFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Run.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Run.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Run.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Script.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Script.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Script.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Strip.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Strip.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Strip.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Types.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Program/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Register.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Register.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Register.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Setup.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Setup.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Setup.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/ShowBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/ShowBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/ShowBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/SrcDist.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/SrcDist.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/SrcDist.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/ExeV10.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/ExeV10.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/ExeV10.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/LibV09.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/LibV09.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/LibV09.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/Log.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/Log.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Test/Log.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UHC.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UHC.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UserHooks.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UserHooks.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/UserHooks.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils/Json.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils/Json.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Simple/Utils/Json.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/System.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/System.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/System.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/TestSuite.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/TestSuite.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/TestSuite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Text.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Text.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Text.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiHash.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiHash.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AbiHash.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AnnotatedId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AnnotatedId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/AnnotatedId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Benchmark/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkInterface.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkInterface.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkInterface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BenchmarkType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildInfo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/BuildType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Component.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Component.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Component.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentInclude.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentInclude.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentInclude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentLocalBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentLocalBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentLocalBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentRequestedSpec.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentRequestedSpec.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ComponentRequestedSpec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/CondTree.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/CondTree.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/CondTree.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Condition.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Condition.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Condition.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ConfVar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ConfVar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ConfVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Dependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Dependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Dependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/DependencyMap.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/DependencyMap.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/DependencyMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExeDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExeDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExeDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Executable/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExecutableScope.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExecutableScope.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExecutableScope.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExposedModule.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExposedModule.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ExposedModule.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Flag.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Flag.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Flag.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLib/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibOption.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibOption.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibOption.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ForeignLibType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GenericPackageDescription/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GivenComponent.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GivenComponent.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/GivenComponent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/HookedBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/HookedBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/HookedBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/IncludeRenaming.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/IncludeRenaming.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/IncludeRenaming.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/FieldGrammar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/InstalledPackageInfo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LegacyExeDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LegacyExeDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LegacyExeDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Library/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryVisibility.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryVisibility.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LibraryVisibility.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LocalBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LocalBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/LocalBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Mixin.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Mixin.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Mixin.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Module.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Module.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Module.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleReexport.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleReexport.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleReexport.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleRenaming.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleRenaming.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/ModuleRenaming.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/MungedPackageName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageDescription/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageId/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName/Magic.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName/Magic.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageName/Magic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageVersionConstraint.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageVersionConstraint.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PackageVersionConstraint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigDependency.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigDependency.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigDependency.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersion.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersionRange.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersionRange.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/PkgconfigVersionRange.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SetupBuildInfo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/SourceRepo/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TargetInfo.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TargetInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TargetInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite/Lens.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite/Lens.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuite/Lens.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuiteInterface.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuiteInterface.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestSuiteInterface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestType.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestType.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/TestType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnitId.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnitId.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnitId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnqualComponentName.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnqualComponentName.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/UnqualComponentName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Version.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Version.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/Version.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionInterval.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionInterval.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionInterval.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Types/VersionRange/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Base62.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Base62.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Base62.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Generic.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Generic.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Generic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/IOData.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/IOData.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/IOData.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/LogProgress.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/LogProgress.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/LogProgress.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MD5.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MD5.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MD5.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MapAccum.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MapAccum.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/MapAccum.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/NubList.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/NubList.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/NubList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Progress.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Progress.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Progress.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/ShortText.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/ShortText.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/ShortText.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/String.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/String.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/String.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Structured.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Structured.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/Structured.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/UnionFind.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/UnionFind.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Utils/UnionFind.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity/Internal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Verbosity/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Version.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Version.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Distribution/Version.p_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/HSCabal-3.2.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/HSCabal-3.2.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Language/Haskell/Extension.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Language/Haskell/Extension.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Language/Haskell/Extension.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/Paths_Cabal.dyn_hi
+lib/ghc-8.10.1/Cabal-3.2.0.0/Paths_Cabal.hi
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/Paths_Cabal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/Cabal-3.2.0.0/libHSCabal-3.2.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/Cabal-3.2.0.0/libHSCabal-3.2.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/Cabal-3.2.0.0/libHSCabal-3.2.0.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Base.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IArray.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IArray.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Internals.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/IO/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/MArray/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/ST/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Internals.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Safe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Storable/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unboxed.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unboxed.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unboxed.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unsafe.dyn_hi
+lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/Data/Array/Unsafe.p_hi
+lib/ghc-8.10.1/array-0.5.4.0/HSarray-0.5.4.0.o
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/HSarray-0.5.4.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/array-0.5.4.0/libHSarray-0.5.4.0-ghc8.10.1.so
+lib/ghc-8.10.1/array-0.5.4.0/libHSarray-0.5.4.0.a
+%%PROFILE%%lib/ghc-8.10.1/array-0.5.4.0/libHSarray-0.5.4.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Applicative.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Applicative.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Applicative.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Arrow.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Arrow.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Arrow.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Category.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Category.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Category.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/Chan.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/Chan.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/Chan.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/MVar.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/MVar.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/MVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSem.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSem.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSem.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSemN.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSemN.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Concurrent/QSemN.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception/Base.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Exception/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Exception/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fail.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fail.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fail.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fix.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fix.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Fix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/IO/Class.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/IO/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/IO/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Instances.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Instances.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Instances.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Imp.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Imp.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Imp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Imp.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Imp.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Imp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Lazy/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Strict.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/ST/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Zip.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Zip.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Control/Monad/Zip.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifoldable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bifoldable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifoldable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifunctor.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bifunctor.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bifunctor.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bitraversable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bitraversable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bitraversable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bits.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bits.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bits.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bool.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Bool.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Bool.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Char.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Char.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Char.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Coerce.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Coerce.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Coerce.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Complex.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Complex.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Complex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Data.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Data.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Data.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Dynamic.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Dynamic.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Dynamic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Either.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Either.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Either.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Eq.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Eq.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Eq.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Fixed.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Fixed.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Fixed.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Foldable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Foldable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Foldable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Function.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Function.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Function.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Classes.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Classes.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Classes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Compose.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Compose.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Compose.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Const.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Const.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Const.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Contravariant.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Contravariant.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Contravariant.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Identity.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Identity.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Identity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Product.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Product.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Product.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Sum.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Sum.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Sum.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Utils.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Functor/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/IORef.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/IORef.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/IORef.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Int.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Int.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Int.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Ix.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Ix.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Ix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Kind.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Kind.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Kind.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/List.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/List.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/List.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/List/NonEmpty.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/List/NonEmpty.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/List/NonEmpty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Maybe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Maybe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Maybe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Monoid.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Monoid.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Monoid.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/OldList.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/OldList.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/OldList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Ord.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Ord.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Ord.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Proxy.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Proxy.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Proxy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Ratio.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Ratio.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Ratio.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/STRef.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/STRef.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/STRef.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/STRef/Lazy.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/STRef/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/STRef/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/STRef/Strict.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/STRef/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/STRef/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Semigroup.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Semigroup.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Semigroup.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Semigroup/Internal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Semigroup/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Semigroup/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/String.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/String.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/String.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Traversable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Traversable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Traversable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Tuple.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Tuple.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Tuple.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Bool.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Bool.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Bool.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Coercion.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Coercion.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Coercion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Equality.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Equality.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Type/Equality.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Typeable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Typeable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Typeable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Typeable/Internal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Typeable/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Typeable/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Unique.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Unique.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Unique.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Version.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Version.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Version.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Void.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Void.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Void.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Data/Word.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Data/Word.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Data/Word.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Debug/Trace.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Debug/Trace.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Debug/Trace.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/C.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/Error.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/String.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/String.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/String.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/Types.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/C/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Concurrent.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Concurrent.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Concurrent.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Imp.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Imp.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Imp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/ForeignPtr/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Alloc.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Alloc.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Alloc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Array.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Array.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Array.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Error.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Pool.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Pool.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Pool.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Utils.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Marshal/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Ptr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Ptr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Ptr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Safe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Safe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Safe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/StablePtr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/StablePtr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/StablePtr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Storable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Foreign/Storable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Foreign/Storable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Arr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Arr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Arr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Base.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ByteOrder.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ByteOrder.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ByteOrder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Char.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Char.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Char.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Clock.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Clock.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Clock.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/IO.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/Signal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/Signal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/Signal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/Sync.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/Sync.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Conc/Sync.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ConsoleHandler.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ConsoleHandler.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ConsoleHandler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Constants.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Constants.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Constants.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Desugar.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Desugar.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Desugar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Enum.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Enum.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Enum.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Environment.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Environment.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Environment.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Err.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Err.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Err.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Arr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Arr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Arr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Array.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Array.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Array.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Control.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Control.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Control.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/EPoll.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/EPoll.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/EPoll.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/IntTable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/IntTable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/IntTable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Internal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/KQueue.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/KQueue.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/KQueue.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Manager.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Manager.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Manager.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/PSQ.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/PSQ.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/PSQ.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Poll.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Poll.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Poll.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Thread.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Thread.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Thread.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/TimerManager.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/TimerManager.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/TimerManager.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Unique.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Unique.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Event/Unique.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Exception.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Exception/Type.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Exception/Type.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Exception/Type.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ExecutionStack.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ExecutionStack.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ExecutionStack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ExecutionStack/Internal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ExecutionStack/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ExecutionStack/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Exts.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Exts.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Exts.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Fingerprint.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Fingerprint.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Fingerprint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Fingerprint/Type.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Fingerprint/Type.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Fingerprint/Type.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Float.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Float.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Float.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Float/ConversionUtils.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Float/ConversionUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Float/ConversionUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Float/RealFracMethods.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Float/RealFracMethods.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Float/RealFracMethods.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Foreign.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Foreign.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Foreign.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ForeignPtr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ForeignPtr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ForeignPtr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/GHCi.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/GHCi.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/GHCi.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/GHCi/Helpers.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/GHCi/Helpers.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/GHCi/Helpers.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Generics.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Generics.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Generics.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Buffer.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Buffer.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Buffer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/BufferedIO.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/BufferedIO.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/BufferedIO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Device.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Device.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Device.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/CodePage.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/CodePage.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/CodePage.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Failure.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Failure.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Failure.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Iconv.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Iconv.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Iconv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Latin1.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Latin1.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Latin1.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Types.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF16.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF16.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF16.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF32.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF32.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF32.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF8.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF8.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Encoding/UTF8.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Exception.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/FD.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/FD.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/FD.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/FD.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/FD.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/FD.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Internals.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Common.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Flock.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Flock.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Flock.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/LinuxOFD.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/LinuxOFD.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/LinuxOFD.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/NoOp.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/NoOp.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/NoOp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Windows.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Windows.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Lock/Windows.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Text.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Text.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Text.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Types.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Handle/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/IOMode.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/IOMode.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/IOMode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IO/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IOArray.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IOArray.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IOArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IORef.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/IORef.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/IORef.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Int.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Int.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Int.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Ix.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Ix.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Ix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/List.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/List.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/List.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/MVar.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/MVar.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/MVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Maybe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Maybe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Maybe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Natural.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Natural.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Natural.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Num.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Num.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Num.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/OldList.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/OldList.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/OldList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/OverloadedLabels.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/OverloadedLabels.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/OverloadedLabels.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Pack.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Pack.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Pack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Profiling.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Profiling.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Profiling.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Ptr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Ptr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Ptr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/RTS/Flags.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/RTS/Flags.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/RTS/Flags.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Read.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Read.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Read.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Real.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Real.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Real.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Records.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Records.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Records.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ResponseFile.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ResponseFile.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ResponseFile.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ST.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/ST.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/ST.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/STRef.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/STRef.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/STRef.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Show.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Show.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Show.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Stable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/StableName.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/StableName.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/StableName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack/CCS.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack/CCS.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack/CCS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack/Types.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stack/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/StaticPtr.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/StaticPtr.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/StaticPtr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/StaticPtr/Internal.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/StaticPtr/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/StaticPtr/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stats.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Stats.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Stats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Storable.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Storable.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Storable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/TopHandler.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/TopHandler.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/TopHandler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/TypeLits.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/TypeLits.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/TypeLits.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/TypeNats.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/TypeNats.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/TypeNats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Unicode.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Unicode.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Unicode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Weak.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Weak.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Weak.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Word.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/GHC/Word.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/GHC/Word.p_hi
+lib/ghc-8.10.1/base-4.14.0.0/HSbase-4.14.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/HSbase-4.14.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Numeric.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Numeric.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Numeric.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Numeric/Natural.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Numeric/Natural.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Numeric/Natural.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Prelude.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Prelude.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Prelude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/ClockGetTime.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/ClockGetTime.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/ClockGetTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/RUsage.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/RUsage.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/RUsage.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/Times.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/Times.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Posix/Times.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Unsupported.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Unsupported.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Unsupported.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Utils.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/CPUTime/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Console/GetOpt.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Console/GetOpt.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Console/GetOpt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Environment.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Environment.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Environment.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Environment/Blank.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Environment/Blank.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Environment/Blank.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Environment/ExecutablePath.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Environment/ExecutablePath.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Environment/ExecutablePath.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Exit.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Exit.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Exit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/IO.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/IO/Error.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/IO/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/IO/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/IO/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/IO/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/IO/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Info.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Info.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Info.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Mem.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Mem.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Mem.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Mem/StableName.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Mem/StableName.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Mem/StableName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Mem/Weak.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Mem/Weak.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Mem/Weak.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Posix/Internals.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Posix/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Posix/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Posix/Types.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Posix/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Posix/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/System/Timeout.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/System/Timeout.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/System/Timeout.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/ParserCombinators/ReadP.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/ParserCombinators/ReadP.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/ParserCombinators/ReadP.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/ParserCombinators/ReadPrec.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/ParserCombinators/ReadPrec.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/ParserCombinators/ReadPrec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/Printf.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/Printf.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/Printf.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/Read.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/Read.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/Read.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/Read/Lex.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/Read/Lex.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/Read/Lex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/Show.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/Show.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/Show.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Text/Show/Functions.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Text/Show/Functions.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Text/Show/Functions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Type/Reflection.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Type/Reflection.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Type/Reflection.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Type/Reflection/Unsafe.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Type/Reflection/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Type/Reflection/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/Unsafe/Coerce.dyn_hi
+lib/ghc-8.10.1/base-4.14.0.0/Unsafe/Coerce.hi
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/Unsafe/Coerce.p_hi
+lib/ghc-8.10.1/base-4.14.0.0/include/EventConfig.h
+lib/ghc-8.10.1/base-4.14.0.0/include/HsBase.h
+lib/ghc-8.10.1/base-4.14.0.0/include/HsBaseConfig.h
+lib/ghc-8.10.1/base-4.14.0.0/include/WCsubst.h
+lib/ghc-8.10.1/base-4.14.0.0/include/consUtils.h
+%%DYNAMIC%%lib/ghc-8.10.1/base-4.14.0.0/libHSbase-4.14.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/base-4.14.0.0/libHSbase-4.14.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/base-4.14.0.0/libHSbase-4.14.0.0_p.a
+lib/ghc-8.10.1/bin/ghc
+lib/ghc-8.10.1/bin/ghc-iserv
+%%DYNAMIC%%lib/ghc-8.10.1/bin/ghc-iserv-dyn
+%%PROFILE%%lib/ghc-8.10.1/bin/ghc-iserv-prof
+lib/ghc-8.10.1/bin/ghc-pkg
+lib/ghc-8.10.1/bin/haddock
+lib/ghc-8.10.1/bin/hp2ps
+lib/ghc-8.10.1/bin/hpc
+lib/ghc-8.10.1/bin/hsc2hs
+lib/ghc-8.10.1/bin/runghc
+lib/ghc-8.10.1/bin/unlit
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Builder.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Builder.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Builder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Class.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/FloatCast.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/FloatCast.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/FloatCast.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Generic.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Generic.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Generic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Get.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Get.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Get.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Get/Internal.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Get/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Get/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Internal.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Put.dyn_hi
+lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Put.hi
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/Data/Binary/Put.p_hi
+lib/ghc-8.10.1/binary-0.8.8.0/HSbinary-0.8.8.0.o
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/HSbinary-0.8.8.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/binary-0.8.8.0/libHSbinary-0.8.8.0-ghc8.10.1.so
+lib/ghc-8.10.1/binary-0.8.8.0/libHSbinary-0.8.8.0.a
+%%PROFILE%%lib/ghc-8.10.1/binary-0.8.8.0/libHSbinary-0.8.8.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/ASCII.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/ASCII.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/ASCII.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Extra.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Extra.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Extra.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Internal.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/ASCII.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/ASCII.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/ASCII.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Binary.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Binary.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Binary.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/Base16.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/Base16.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/Base16.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/Floating.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/Floating.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/Floating.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/UncheckedShifts.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/UncheckedShifts.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Builder/Prim/Internal/UncheckedShifts.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Char8.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Char8.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Char8.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Internal.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder/ASCII.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder/ASCII.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder/ASCII.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder/Extras.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder/Extras.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Builder/Extras.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Char8.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Char8.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Char8.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Internal.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Lazy/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Short.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Short.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Short.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Short/Internal.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Short/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Short/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Unsafe.dyn_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/Data/ByteString/Unsafe.p_hi
+lib/ghc-8.10.1/bytestring-0.10.10.0/HSbytestring-0.10.10.0.o
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/HSbytestring-0.10.10.0.p_o
+lib/ghc-8.10.1/bytestring-0.10.10.0/include/fpstring.h
+%%DYNAMIC%%lib/ghc-8.10.1/bytestring-0.10.10.0/libHSbytestring-0.10.10.0-ghc8.10.1.so
+lib/ghc-8.10.1/bytestring-0.10.10.0/libHSbytestring-0.10.10.0.a
+%%PROFILE%%lib/ghc-8.10.1/bytestring-0.10.10.0/libHSbytestring-0.10.10.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Containers/ListUtils.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Containers/ListUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Containers/ListUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Graph.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Graph.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Graph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal/Debug.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal/Debug.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal/Debug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal/DeprecatedDebug.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal/DeprecatedDebug.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Internal/DeprecatedDebug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Lazy.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Merge/Lazy.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Merge/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Merge/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Merge/Strict.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Merge/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Merge/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Strict.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Strict/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Strict/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntMap/Strict/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntSet.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntSet.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntSet.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntSet/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/IntSet/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/IntSet/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal/Debug.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal/Debug.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal/Debug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal/DeprecatedShowTree.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal/DeprecatedShowTree.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Internal/DeprecatedShowTree.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Lazy.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Merge/Lazy.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Merge/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Merge/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Merge/Strict.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Merge/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Merge/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Strict.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Strict/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Strict/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Map/Strict/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence/Internal/Sorting.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence/Internal/Sorting.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Sequence/Internal/Sorting.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Set.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Set.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Set.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Set/Internal.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Set/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Set/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Tree.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Data/Tree.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Data/Tree.p_hi
+lib/ghc-8.10.1/containers-0.6.2.1/HScontainers-0.6.2.1.o
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/HScontainers-0.6.2.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/BitQueue.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/BitQueue.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/BitQueue.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/BitUtil.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/BitUtil.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/BitUtil.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/Coercions.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/Coercions.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/Coercions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/PtrEquality.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/PtrEquality.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/PtrEquality.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/State.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/State.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/State.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/StrictMaybe.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/StrictMaybe.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/StrictMaybe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/StrictPair.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/StrictPair.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/StrictPair.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/TypeError.dyn_hi
+lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/TypeError.hi
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/Utils/Containers/Internal/TypeError.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/containers-0.6.2.1/libHScontainers-0.6.2.1-ghc8.10.1.so
+lib/ghc-8.10.1/containers-0.6.2.1/libHScontainers-0.6.2.1.a
+%%PROFILE%%lib/ghc-8.10.1/containers-0.6.2.1/libHScontainers-0.6.2.1_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/deepseq-1.4.4.0/Control/DeepSeq.dyn_hi
+lib/ghc-8.10.1/deepseq-1.4.4.0/Control/DeepSeq.hi
+%%PROFILE%%lib/ghc-8.10.1/deepseq-1.4.4.0/Control/DeepSeq.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/deepseq-1.4.4.0/Control/DeepSeq/BackDoor.dyn_hi
+lib/ghc-8.10.1/deepseq-1.4.4.0/Control/DeepSeq/BackDoor.hi
+%%PROFILE%%lib/ghc-8.10.1/deepseq-1.4.4.0/Control/DeepSeq/BackDoor.p_hi
+lib/ghc-8.10.1/deepseq-1.4.4.0/HSdeepseq-1.4.4.0.o
+%%PROFILE%%lib/ghc-8.10.1/deepseq-1.4.4.0/HSdeepseq-1.4.4.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/deepseq-1.4.4.0/libHSdeepseq-1.4.4.0-ghc8.10.1.so
+lib/ghc-8.10.1/deepseq-1.4.4.0/libHSdeepseq-1.4.4.0.a
+%%PROFILE%%lib/ghc-8.10.1/deepseq-1.4.4.0/libHSdeepseq-1.4.4.0_p.a
+lib/ghc-8.10.1/directory-1.3.6.0/HSdirectory-1.3.6.0.o
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/HSdirectory-1.3.6.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/C_utimensat.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/C_utimensat.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/C_utimensat.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Common.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Config.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Config.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Config.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Posix.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Posix.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Posix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Prelude.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Prelude.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Prelude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Windows.dyn_hi
+lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Windows.hi
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/System/Directory/Internal/Windows.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/directory-1.3.6.0/libHSdirectory-1.3.6.0-ghc8.10.1.so
+lib/ghc-8.10.1/directory-1.3.6.0/libHSdirectory-1.3.6.0.a
+%%PROFILE%%lib/ghc-8.10.1/directory-1.3.6.0/libHSdirectory-1.3.6.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/exceptions-0.10.4/Control/Monad/Catch.dyn_hi
+lib/ghc-8.10.1/exceptions-0.10.4/Control/Monad/Catch.hi
+%%PROFILE%%lib/ghc-8.10.1/exceptions-0.10.4/Control/Monad/Catch.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/exceptions-0.10.4/Control/Monad/Catch/Pure.dyn_hi
+lib/ghc-8.10.1/exceptions-0.10.4/Control/Monad/Catch/Pure.hi
+%%PROFILE%%lib/ghc-8.10.1/exceptions-0.10.4/Control/Monad/Catch/Pure.p_hi
+lib/ghc-8.10.1/exceptions-0.10.4/HSexceptions-0.10.4.o
+%%PROFILE%%lib/ghc-8.10.1/exceptions-0.10.4/HSexceptions-0.10.4.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/exceptions-0.10.4/libHSexceptions-0.10.4-ghc8.10.1.so
+lib/ghc-8.10.1/exceptions-0.10.4/libHSexceptions-0.10.4.a
+%%PROFILE%%lib/ghc-8.10.1/exceptions-0.10.4/libHSexceptions-0.10.4_p.a
+lib/ghc-8.10.1/filepath-1.4.2.1/HSfilepath-1.4.2.1.o
+%%PROFILE%%lib/ghc-8.10.1/filepath-1.4.2.1/HSfilepath-1.4.2.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath.dyn_hi
+lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath.hi
+%%PROFILE%%lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath/Posix.dyn_hi
+lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath/Posix.hi
+%%PROFILE%%lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath/Posix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath/Windows.dyn_hi
+lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath/Windows.hi
+%%PROFILE%%lib/ghc-8.10.1/filepath-1.4.2.1/System/FilePath/Windows.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/filepath-1.4.2.1/libHSfilepath-1.4.2.1-ghc8.10.1.so
+lib/ghc-8.10.1/filepath-1.4.2.1/libHSfilepath-1.4.2.1.a
+%%PROFILE%%lib/ghc-8.10.1/filepath-1.4.2.1/libHSfilepath-1.4.2.1_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Annotations.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Annotations.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Annotations.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ApiAnnotation.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ApiAnnotation.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ApiAnnotation.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Ar.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Ar.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Ar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/AsmCodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/AsmCodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/AsmCodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/AsmUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/AsmUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/AsmUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Avail.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Avail.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Avail.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Bag.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Bag.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Bag.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BasicTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BasicTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BasicTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BinFingerprint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BinFingerprint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BinFingerprint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BinIface.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BinIface.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BinIface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Binary.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Binary.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Binary.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Bitmap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Bitmap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Bitmap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BkpSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BkpSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BkpSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BlockId.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BlockId.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BlockId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BlockLayout.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BlockLayout.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BlockLayout.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BooleanFormula.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BooleanFormula.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BooleanFormula.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BufWrite.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BufWrite.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BufWrite.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/BuildTyCl.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/BuildTyCl.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/BuildTyCl.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeAsm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ByteCodeAsm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeAsm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ByteCodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeInstr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ByteCodeInstr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeInstr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeItbls.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ByteCodeItbls.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeItbls.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeLink.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ByteCodeLink.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeLink.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ByteCodeTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ByteCodeTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CFG.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CFG.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CFG.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CLabel.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CLabel.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CLabel.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CPrim.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CPrim.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CPrim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CSE.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CSE.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CSE.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CallArity.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CallArity.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CallArity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Class.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CliOption.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CliOption.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CliOption.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ClsInst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ClsInst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ClsInst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmdLineParser.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmdLineParser.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmdLineParser.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Cmm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Cmm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Cmm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmBuildInfoTables.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmBuildInfoTables.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmBuildInfoTables.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmCallConv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmCallConv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmCallConv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmCommonBlockElim.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmCommonBlockElim.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmCommonBlockElim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmContFlowOpt.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmContFlowOpt.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmContFlowOpt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmExpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmExpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmExpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmImplementSwitchPlans.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmImplementSwitchPlans.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmImplementSwitchPlans.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmInfo.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmLayoutStack.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmLayoutStack.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmLayoutStack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmLex.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmLex.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmLex.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmLint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmLint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmLint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmLive.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmLive.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmLive.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmMachOp.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmMachOp.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmMachOp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmNode.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmNode.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmNode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmOpt.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmOpt.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmOpt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmParse.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmParse.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmParse.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmPipeline.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmPipeline.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmPipeline.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmProcPoint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmProcPoint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmProcPoint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmSink.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmSink.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmSink.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmSwitch.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmSwitch.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmSwitch.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmType.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmType.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CmmUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CmmUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CmmUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoAxiom.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoAxiom.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoAxiom.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CodeOutput.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CodeOutput.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CodeOutput.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Coercion.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Coercion.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Coercion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ConLike.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ConLike.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ConLike.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Config.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Config.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Config.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Constants.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Constants.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Constants.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Constraint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Constraint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Constraint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreArity.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreArity.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreArity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreFVs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreFVs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreFVs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreLint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreLint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreLint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreMap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreMap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreOpt.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreOpt.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreOpt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CorePrep.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CorePrep.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CorePrep.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreSeq.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreSeq.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreSeq.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreStats.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreStats.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreStats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreSubst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreSubst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreSubst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreTidy.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreTidy.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreTidy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreToStg.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreToStg.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreToStg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreUnfold.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreUnfold.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreUnfold.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CoreUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CoreUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CoreUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CostCentre.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CostCentre.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CostCentre.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/CostCentreState.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/CostCentreState.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/CostCentreState.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Coverage.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Coverage.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Coverage.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Ctype.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Ctype.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Ctype.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DataCon.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DataCon.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DataCon.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Debug.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Debug.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Debug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Debugger.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Debugger.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Debugger.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Demand.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Demand.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Demand.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Desugar.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Desugar.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Desugar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Digraph.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Digraph.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Digraph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DmdAnal.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DmdAnal.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DmdAnal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Dominators.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Dominators.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Dominators.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DriverBkp.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DriverBkp.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DriverBkp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DriverMkDepend.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DriverMkDepend.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DriverMkDepend.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DriverPhases.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DriverPhases.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DriverPhases.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DriverPipeline.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DriverPipeline.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DriverPipeline.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsArrows.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsArrows.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsArrows.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsBinds.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsBinds.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsBinds.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsCCall.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsCCall.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsCCall.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsExpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsExpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsExpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsForeign.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsForeign.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsForeign.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsGRHSs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsGRHSs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsGRHSs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsListComp.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsListComp.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsListComp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsMeta.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsMeta.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsMeta.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsUsage.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsUsage.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsUsage.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DsUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DsUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DsUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Dwarf.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Dwarf.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Dwarf.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Dwarf/Constants.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Dwarf/Constants.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Dwarf/Constants.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Dwarf/Types.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Dwarf/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Dwarf/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DynFlags.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DynFlags.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DynFlags.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/DynamicLoading.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/DynamicLoading.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/DynamicLoading.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Elf.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Elf.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Elf.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Encoding.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Encoding.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Encoding.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/EnumSet.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/EnumSet.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/EnumSet.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ErrUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ErrUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ErrUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Exception.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Exception.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Exception.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Exitify.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Exitify.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Exitify.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ExtractDocs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ExtractDocs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ExtractDocs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FV.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FV.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FV.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FamInst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FamInst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FamInst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FamInstEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FamInstEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FamInstEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FastFunctions.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FastFunctions.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FastFunctions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FastMutInt.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FastMutInt.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FastMutInt.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FastString.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FastString.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FastString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FastStringEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FastStringEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FastStringEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FieldLabel.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FieldLabel.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FieldLabel.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FileCleanup.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FileCleanup.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FileCleanup.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FileSettings.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FileSettings.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FileSettings.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Finder.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Finder.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Finder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Fingerprint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Fingerprint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Fingerprint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FiniteMap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FiniteMap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FiniteMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FlagChecker.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FlagChecker.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FlagChecker.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FloatIn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FloatIn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FloatIn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FloatOut.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FloatOut.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FloatOut.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ForeignCall.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ForeignCall.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ForeignCall.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Format.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Format.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Format.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/FunDeps.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/FunDeps.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/FunDeps.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Binds.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Binds.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Binds.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Decls.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Decls.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Decls.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Doc.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Doc.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Doc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Dump.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Dump.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Dump.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Expr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Expr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Expr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Extension.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Extension.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Extension.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/ImpExp.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/ImpExp.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/ImpExp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Instances.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Instances.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Instances.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Lit.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Lit.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Lit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Pat.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Pat.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Pat.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/PlaceHolder.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/PlaceHolder.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/PlaceHolder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Types.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Utils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Hs/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Oracle.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Oracle.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Oracle.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Ppr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Ppr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Ppr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Types.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/HsToCore/PmCheck/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/ARM.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/ARM.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/ARM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/ARM64.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/ARM64.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/ARM64.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/NoRegs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/NoRegs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/NoRegs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/PPC.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/PPC.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/PPC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/Regs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/Regs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/Regs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/S390X.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/S390X.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/S390X.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/SPARC.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/SPARC.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/SPARC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/X86.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/X86.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/X86.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/X86_64.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/X86_64.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/Platform/X86_64.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/ArgRep.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/ArgRep.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/ArgRep.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Bind.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Bind.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Bind.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/CgUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/CgUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/CgUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Closure.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Closure.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Closure.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/DataCon.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/DataCon.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/DataCon.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Env.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Env.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Env.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Expr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Expr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Expr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/ExtCode.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/ExtCode.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/ExtCode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Foreign.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Foreign.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Foreign.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Heap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Heap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Heap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Hpc.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Hpc.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Hpc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Layout.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Layout.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Layout.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Monad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Monad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Monad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Prim.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Prim.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Prim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Prof.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Prof.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Prof.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Ticky.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Ticky.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Ticky.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Utils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/StgToCmm/Utils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHC/ThToHs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHC/ThToHs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHC/ThToHs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GHCi.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GHCi.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GHCi.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GhcMake.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GhcMake.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GhcMake.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GhcMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GhcMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GhcMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GhcNameVersion.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GhcNameVersion.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GhcNameVersion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GhcPlugins.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GhcPlugins.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GhcPlugins.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GhcPrelude.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GhcPrelude.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GhcPrelude.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GraphBase.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GraphBase.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GraphBase.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GraphColor.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GraphColor.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GraphColor.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GraphOps.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GraphOps.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GraphOps.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/GraphPpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/GraphPpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/GraphPpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HaddockUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HaddockUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HaddockUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HeaderInfo.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HeaderInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HeaderInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HieAst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HieAst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HieAst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HieBin.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HieBin.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HieBin.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HieDebug.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HieDebug.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HieDebug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HieTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HieTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HieTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HieUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HieUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HieUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Hooks.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Hooks.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Hooks.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Block.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Block.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Block.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Collections.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Collections.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Collections.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Dataflow.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Dataflow.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Dataflow.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Graph.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Graph.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Graph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Label.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Label.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Hoopl/Label.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HscMain.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HscMain.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HscMain.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HscStats.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HscStats.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HscStats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/HscTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/HscTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/HscTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/IOEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/IOEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/IOEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Id.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Id.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Id.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/IdInfo.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/IdInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/IdInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/IfaceEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/IfaceEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/IfaceEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/IfaceSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/IfaceSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/IfaceSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/IfaceType.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/IfaceType.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/IfaceType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Inst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Inst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Inst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/InstEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/InstEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/InstEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Instruction.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Instruction.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Instruction.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/InteractiveEval.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/InteractiveEval.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/InteractiveEval.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/InteractiveEvalTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/InteractiveEvalTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/InteractiveEvalTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Json.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Json.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Json.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/KnownUniques.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/KnownUniques.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/KnownUniques.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Lexeme.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Lexeme.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Lexeme.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Lexer.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Lexer.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Lexer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LiberateCase.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LiberateCase.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LiberateCase.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Linker.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Linker.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Linker.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LinkerTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LinkerTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LinkerTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ListSetOps.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ListSetOps.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ListSetOps.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Literal.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Literal.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Literal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Llvm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Llvm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Llvm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/AbsSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Llvm/AbsSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/AbsSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/MetaData.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Llvm/MetaData.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/MetaData.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/PpLlvm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Llvm/PpLlvm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/PpLlvm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/Types.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Llvm/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Llvm/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Base.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/CodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/CodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/CodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Data.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Data.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Data.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Ppr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Ppr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Ppr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Regs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Regs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmCodeGen/Regs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LlvmMangler.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LlvmMangler.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LlvmMangler.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/LoadIface.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/LoadIface.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/LoadIface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Match.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Match.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Match.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MatchCon.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MatchCon.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MatchCon.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MatchLit.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MatchLit.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MatchLit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Maybes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Maybes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Maybes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MkCore.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MkCore.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MkCore.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MkGraph.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MkGraph.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MkGraph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MkId.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MkId.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MkId.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MkIface.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MkIface.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MkIface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Module.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Module.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Module.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/MonadUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/MonadUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/MonadUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/NCGMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/NCGMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/NCGMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Name.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Name.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Name.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/NameCache.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/NameCache.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/NameCache.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/NameEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/NameEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/NameEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/NameSet.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/NameSet.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/NameSet.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/NameShape.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/NameShape.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/NameShape.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/OccName.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/OccName.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/OccName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/OccurAnal.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/OccurAnal.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/OccurAnal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/OptCoercion.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/OptCoercion.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/OptCoercion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/OrdList.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/OrdList.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/OrdList.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Outputable.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Outputable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Outputable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PIC.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PIC.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PIC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PPC/CodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PPC/CodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PPC/CodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Cond.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PPC/Cond.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Cond.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Instr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PPC/Instr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Instr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Ppr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PPC/Ppr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Ppr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PPC/RegInfo.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PPC/RegInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PPC/RegInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Regs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PPC/Regs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PPC/Regs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PackageConfig.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PackageConfig.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PackageConfig.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Packages.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Packages.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Packages.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Pair.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Pair.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Pair.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Panic.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Panic.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Panic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Parser.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Parser.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Parser.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PatSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PatSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PatSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PipelineMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PipelineMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PipelineMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PlainPanic.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PlainPanic.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PlainPanic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PlatformConstants.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PlatformConstants.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PlatformConstants.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Plugins.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Plugins.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Plugins.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprBase.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprBase.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprBase.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprC.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprC.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprC.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprCmm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprCmm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprCmm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprCmmDecl.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprCmmDecl.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprCmmDecl.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprCmmExpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprCmmExpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprCmmExpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprColour.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprColour.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprColour.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprCore.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprCore.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprCore.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PprTyThing.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PprTyThing.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PprTyThing.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Predicate.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Predicate.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Predicate.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PrelInfo.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PrelInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PrelInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PrelNames.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PrelNames.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PrelNames.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PrelRules.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PrelRules.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PrelRules.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Pretty.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Pretty.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Pretty.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/PrimOp.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/PrimOp.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/PrimOp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ProfInit.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ProfInit.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ProfInit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RdrHsSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RdrHsSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RdrHsSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RdrName.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RdrName.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RdrName.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Reg.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Reg.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Reg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/ArchBase.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/ArchBase.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/ArchBase.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/ArchX86.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/ArchX86.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/ArchX86.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Coalesce.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Coalesce.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Coalesce.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Main.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Main.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Main.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Spill.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Spill.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Spill.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/SpillClean.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/SpillClean.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/SpillClean.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/SpillCost.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/SpillCost.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/SpillCost.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Stats.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Stats.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/Stats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/TrivColorable.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/TrivColorable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Graph/TrivColorable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Base.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/FreeRegs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/FreeRegs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/FreeRegs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/JoinToTargets.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/JoinToTargets.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/JoinToTargets.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Main.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Main.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Main.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/PPC/FreeRegs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/PPC/FreeRegs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/PPC/FreeRegs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/SPARC/FreeRegs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/SPARC/FreeRegs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/SPARC/FreeRegs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/StackMap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/StackMap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/StackMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/State.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/State.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/State.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Stats.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Stats.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/Stats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/X86/FreeRegs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/X86/FreeRegs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/X86/FreeRegs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/X86_64/FreeRegs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/X86_64/FreeRegs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Linear/X86_64/FreeRegs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Liveness.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Liveness.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegAlloc/Liveness.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RegClass.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RegClass.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RegClass.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RepType.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RepType.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RepType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnBinds.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnBinds.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnBinds.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnExpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnExpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnExpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnFixity.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnFixity.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnFixity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnHsDoc.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnHsDoc.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnHsDoc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnModIface.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnModIface.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnModIface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnNames.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnNames.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnNames.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnPat.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnPat.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnPat.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnSource.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnSource.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnSource.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnSplice.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnSplice.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnSplice.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnUnbound.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnUnbound.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnUnbound.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RnUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RnUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RnUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/RtClosureInspect.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/RtClosureInspect.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/RtClosureInspect.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Rules.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Rules.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Rules.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SAT.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SAT.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SAT.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SMRep.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SMRep.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SMRep.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/AddrMode.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/AddrMode.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/AddrMode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Base.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Amode.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Amode.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Amode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Base.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/CondCode.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/CondCode.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/CondCode.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Expand.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Expand.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Expand.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Gen32.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Gen32.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Gen32.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Gen64.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Gen64.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Gen64.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Sanity.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Sanity.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/CodeGen/Sanity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Cond.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Cond.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Cond.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Imm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Imm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Imm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Instr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Instr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Instr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Ppr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Ppr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Ppr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Regs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Regs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Regs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/ShortcutJump.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/ShortcutJump.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/ShortcutJump.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Stack.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SPARC/Stack.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SPARC/Stack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SetLevels.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SetLevels.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SetLevels.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Settings.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Settings.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Settings.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SimplCore.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SimplCore.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SimplCore.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SimplEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SimplEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SimplEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SimplMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SimplMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SimplMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SimplStg.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SimplStg.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SimplStg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SimplUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SimplUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SimplUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Simplify.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Simplify.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Simplify.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SpecConstr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SpecConstr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SpecConstr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Specialise.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Specialise.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Specialise.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SrcLoc.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SrcLoc.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SrcLoc.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/State.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/State.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/State.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StaticPtrTable.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StaticPtrTable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StaticPtrTable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgCse.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgCse.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgCse.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgFVs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgFVs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgFVs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/Analysis.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/Analysis.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/Analysis.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/LiftM.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/LiftM.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/LiftM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/Transformation.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/Transformation.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgLiftLams/Transformation.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgLint.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgLint.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgLint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgStats.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgStats.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgStats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgSubst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgSubst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgSubst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StgSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StgSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StgSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Stream.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Stream.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Stream.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/StringBuffer.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/StringBuffer.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/StringBuffer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/BaseDir.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/BaseDir.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/BaseDir.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/ExtraObj.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/ExtraObj.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/ExtraObj.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Info.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/Info.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Info.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Process.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/Process.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Process.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Settings.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/Settings.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Settings.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Tasks.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/Tasks.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Tasks.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Terminal.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/SysTools/Terminal.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/SysTools/Terminal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/THNames.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/THNames.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/THNames.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TargetReg.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TargetReg.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TargetReg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcAnnotations.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcAnnotations.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcAnnotations.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcArrows.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcArrows.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcArrows.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcBackpack.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcBackpack.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcBackpack.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcBinds.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcBinds.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcBinds.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcCanonical.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcCanonical.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcCanonical.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcClassDcl.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcClassDcl.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcClassDcl.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcDefaults.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcDefaults.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcDefaults.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcDeriv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcDeriv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcDeriv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcDerivInfer.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcDerivInfer.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcDerivInfer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcDerivUtils.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcDerivUtils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcDerivUtils.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcErrors.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcErrors.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcErrors.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcEvTerm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcEvTerm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcEvTerm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcEvidence.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcEvidence.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcEvidence.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcExpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcExpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcExpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcFlatten.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcFlatten.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcFlatten.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcForeign.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcForeign.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcForeign.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcGenDeriv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcGenDeriv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcGenDeriv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcGenFunctor.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcGenFunctor.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcGenFunctor.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcGenGenerics.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcGenGenerics.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcGenGenerics.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcHoleErrors.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcHoleErrors.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcHoleErrors.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcHoleFitTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcHoleFitTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcHoleFitTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcHsSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcHsSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcHsSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcHsType.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcHsType.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcHsType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcIface.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcIface.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcIface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcInstDcls.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcInstDcls.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcInstDcls.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcInteract.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcInteract.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcInteract.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcMType.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcMType.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcMType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcMatches.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcMatches.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcMatches.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcOrigin.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcOrigin.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcOrigin.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcPat.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcPat.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcPat.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcPatSyn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcPatSyn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcPatSyn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcPluginM.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcPluginM.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcPluginM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcRnDriver.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcRnDriver.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcRnDriver.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcRnExports.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcRnExports.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcRnExports.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcRnMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcRnMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcRnMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcRnTypes.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcRnTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcRnTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcRules.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcRules.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcRules.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcSMonad.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcSMonad.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcSMonad.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcSigs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcSigs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcSigs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcSimplify.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcSimplify.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcSimplify.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcSplice.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcSplice.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcSplice.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcTyClsDecls.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcTyClsDecls.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcTyClsDecls.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcTyDecls.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcTyDecls.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcTyDecls.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcType.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcType.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcType.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcTypeNats.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcTypeNats.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcTypeNats.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcTypeable.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcTypeable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcTypeable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcUnify.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcUnify.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcUnify.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TcValidity.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TcValidity.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TcValidity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TidyPgm.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TidyPgm.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TidyPgm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ToIface.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ToIface.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ToIface.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/ToolSettings.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/ToolSettings.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/ToolSettings.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TrieMap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TrieMap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TrieMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TyCoFVs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TyCoFVs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TyCoFVs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TyCoPpr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TyCoPpr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TyCoPpr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TyCoRep.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TyCoRep.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TyCoRep.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TyCoSubst.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TyCoSubst.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TyCoSubst.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TyCoTidy.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TyCoTidy.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TyCoTidy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TyCon.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TyCon.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TyCon.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Type.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Type.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Type.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TysPrim.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TysPrim.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TysPrim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/TysWiredIn.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/TysWiredIn.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/TysWiredIn.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UnVarGraph.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UnVarGraph.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UnVarGraph.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UnariseStg.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UnariseStg.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UnariseStg.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Unify.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Unify.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Unify.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UniqDFM.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UniqDFM.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UniqDFM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UniqDSet.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UniqDSet.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UniqDSet.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UniqFM.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UniqFM.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UniqFM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UniqMap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UniqMap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UniqMap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UniqSet.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UniqSet.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UniqSet.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/UniqSupply.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/UniqSupply.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/UniqSupply.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Unique.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Unique.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Unique.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Util.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Util.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Util.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/Var.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/Var.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/Var.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/VarEnv.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/VarEnv.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/VarEnv.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/VarSet.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/VarSet.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/VarSet.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/WorkWrap.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/WorkWrap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/WorkWrap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/WwLib.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/WwLib.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/WwLib.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/X86/CodeGen.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/X86/CodeGen.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/X86/CodeGen.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/X86/Cond.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/X86/Cond.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/X86/Cond.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/X86/Instr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/X86/Instr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/X86/Instr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/X86/Ppr.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/X86/Ppr.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/X86/Ppr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/X86/RegInfo.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/X86/RegInfo.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/X86/RegInfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/X86/Regs.dyn_hi
+lib/ghc-8.10.1/ghc-8.10.1/X86/Regs.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/X86/Regs.p_hi
+lib/ghc-8.10.1/ghc-8.10.1/include/HsVersions.h
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-8.10.1/libHSghc-8.10.1-ghc8.10.1.so
+lib/ghc-8.10.1/ghc-8.10.1/libHSghc-8.10.1.a
+%%PROFILE%%lib/ghc-8.10.1/ghc-8.10.1/libHSghc-8.10.1_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/BaseDir.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/BaseDir.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/BaseDir.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/ForeignSrcLang.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/ForeignSrcLang.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/ForeignSrcLang.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/HandleEncoding.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/HandleEncoding.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/HandleEncoding.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/LanguageExtensions.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/LanguageExtensions.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/LanguageExtensions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/PackageDb.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/PackageDb.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/PackageDb.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Platform.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Platform.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Platform.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Platform/Host.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Platform/Host.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Platform/Host.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Serialized.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Serialized.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Serialized.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Settings.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Settings.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Settings.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/UniqueSubdir.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/UniqueSubdir.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/UniqueSubdir.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Version.dyn_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Version.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/GHC/Version.p_hi
+lib/ghc-8.10.1/ghc-boot-8.10.1/HSghc-boot-8.10.1.o
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/HSghc-boot-8.10.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-8.10.1/libHSghc-boot-8.10.1-ghc8.10.1.so
+lib/ghc-8.10.1/ghc-boot-8.10.1/libHSghc-boot-8.10.1.a
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-8.10.1/libHSghc-boot-8.10.1_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/ForeignSrcLang/Type.dyn_hi
+lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/ForeignSrcLang/Type.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/ForeignSrcLang/Type.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/LanguageExtensions/Type.dyn_hi
+lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/LanguageExtensions/Type.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/LanguageExtensions/Type.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/Lexeme.dyn_hi
+lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/Lexeme.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/GHC/Lexeme.p_hi
+lib/ghc-8.10.1/ghc-boot-th-8.10.1/HSghc-boot-th-8.10.1.o
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/HSghc-boot-th-8.10.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/libHSghc-boot-th-8.10.1-ghc8.10.1.so
+lib/ghc-8.10.1/ghc-boot-th-8.10.1/libHSghc-boot-th-8.10.1.a
+%%PROFILE%%lib/ghc-8.10.1/ghc-boot-th-8.10.1/libHSghc-boot-th-8.10.1_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/GHC/Compact.dyn_hi
+lib/ghc-8.10.1/ghc-compact-0.1.0.0/GHC/Compact.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/GHC/Compact.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/GHC/Compact/Serialized.dyn_hi
+lib/ghc-8.10.1/ghc-compact-0.1.0.0/GHC/Compact/Serialized.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/GHC/Compact/Serialized.p_hi
+lib/ghc-8.10.1/ghc-compact-0.1.0.0/HSghc-compact-0.1.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/HSghc-compact-0.1.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/libHSghc-compact-0.1.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/ghc-compact-0.1.0.0/libHSghc-compact-0.1.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/ghc-compact-0.1.0.0/libHSghc-compact-0.1.0.0_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/ClosureTypes.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/ClosureTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/ClosureTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Closures.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Closures.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Closures.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Constants.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Constants.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Constants.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTable.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTable/Types.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTable/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTable/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTableProf.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTableProf.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/InfoTableProf.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Utils.dyn_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/GHC/Exts/Heap/Utils.p_hi
+lib/ghc-8.10.1/ghc-heap-8.10.1/HSghc-heap-8.10.1.o
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/HSghc-heap-8.10.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-heap-8.10.1/libHSghc-heap-8.10.1-ghc8.10.1.so
+lib/ghc-8.10.1/ghc-heap-8.10.1/libHSghc-heap-8.10.1.a
+%%PROFILE%%lib/ghc-8.10.1/ghc-heap-8.10.1/libHSghc-heap-8.10.1_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/CString.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/CString.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/CString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Classes.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Classes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Classes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Debug.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Debug.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Debug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/IntWord64.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/IntWord64.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/IntWord64.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Magic.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Magic.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Magic.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Prim/Ext.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Prim/Ext.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Prim/Ext.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/PrimopWrappers.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/PrimopWrappers.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/PrimopWrappers.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Tuple.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Tuple.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Tuple.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Types.dyn_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/GHC/Types.p_hi
+lib/ghc-8.10.1/ghc-prim-0.6.1/HSghc-prim-0.6.1.o
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/HSghc-prim-0.6.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/ghc-prim-0.6.1/libHSghc-prim-0.6.1-ghc8.10.1.so
+lib/ghc-8.10.1/ghc-prim-0.6.1/libHSghc-prim-0.6.1.a
+%%PROFILE%%lib/ghc-8.10.1/ghc-prim-0.6.1/libHSghc-prim-0.6.1_p.a
+lib/ghc-8.10.1/ghc-usage.txt
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/BinaryArray.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/BinaryArray.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/BinaryArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/BreakArray.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/BreakArray.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/BreakArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/CreateBCO.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/CreateBCO.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/CreateBCO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/FFI.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/FFI.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/FFI.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/InfoTable.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/InfoTable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/InfoTable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/Message.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/Message.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/Message.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/ObjLink.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/ObjLink.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/ObjLink.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/RemoteTypes.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/RemoteTypes.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/RemoteTypes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/ResolvedBCO.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/ResolvedBCO.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/ResolvedBCO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/Run.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/Run.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/Run.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/Signals.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/Signals.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/Signals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/StaticPtrTable.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/StaticPtrTable.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/StaticPtrTable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/TH.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/TH.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/TH.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/TH/Binary.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/GHCi/TH/Binary.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/GHCi/TH/Binary.p_hi
+lib/ghc-8.10.1/ghci-8.10.1/HSghci-8.10.1.o
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/HSghci-8.10.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/SizedSeq.dyn_hi
+lib/ghc-8.10.1/ghci-8.10.1/SizedSeq.hi
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/SizedSeq.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/ghci-8.10.1/libHSghci-8.10.1-ghc8.10.1.so
+lib/ghc-8.10.1/ghci-8.10.1/libHSghci-8.10.1.a
+%%PROFILE%%lib/ghc-8.10.1/ghci-8.10.1/libHSghci-8.10.1_p.a
+lib/ghc-8.10.1/ghci-usage.txt
+lib/ghc-8.10.1/haskeline-0.8.0.0/HShaskeline-0.8.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/HShaskeline-0.8.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/DumbTerm.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/DumbTerm.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/DumbTerm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Posix.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Posix.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Posix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Posix/Encoder.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Posix/Encoder.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Posix/Encoder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Terminfo.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Terminfo.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/Terminfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/WCWidth.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/WCWidth.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Backend/WCWidth.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/Completion.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/Completion.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/Completion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/History.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/History.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/History.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/KillRing.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/KillRing.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/KillRing.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/Undo.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/Undo.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Command/Undo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Completion.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Completion.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Completion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Directory.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Directory.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Directory.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Emacs.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Emacs.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Emacs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/History.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/History.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/History.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/IO.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/InputT.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/InputT.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/InputT.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Key.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Key.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Key.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/LineState.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/LineState.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/LineState.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Monads.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Monads.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Monads.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Prefs.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Prefs.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Prefs.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Recover.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Recover.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Recover.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/RunCommand.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/RunCommand.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/RunCommand.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Term.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Term.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Term.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Vi.dyn_hi
+lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Vi.hi
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/System/Console/Haskeline/Vi.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/haskeline-0.8.0.0/libHShaskeline-0.8.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/haskeline-0.8.0.0/libHShaskeline-0.8.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/haskeline-0.8.0.0/libHShaskeline-0.8.0.0_p.a
+lib/ghc-8.10.1/hpc-0.6.1.0/HShpc-0.6.1.0.o
+%%PROFILE%%lib/ghc-8.10.1/hpc-0.6.1.0/HShpc-0.6.1.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Mix.dyn_hi
+lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Mix.hi
+%%PROFILE%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Mix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Reflect.dyn_hi
+lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Reflect.hi
+%%PROFILE%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Reflect.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Tix.dyn_hi
+lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Tix.hi
+%%PROFILE%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Tix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Util.dyn_hi
+lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Util.hi
+%%PROFILE%%lib/ghc-8.10.1/hpc-0.6.1.0/Trace/Hpc/Util.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/hpc-0.6.1.0/libHShpc-0.6.1.0-ghc8.10.1.so
+lib/ghc-8.10.1/hpc-0.6.1.0/libHShpc-0.6.1.0.a
+%%PROFILE%%lib/ghc-8.10.1/hpc-0.6.1.0/libHShpc-0.6.1.0_p.a
+lib/ghc-8.10.1/html/Classic.theme/haskell_icon.gif
+lib/ghc-8.10.1/html/Classic.theme/minus.gif
+lib/ghc-8.10.1/html/Classic.theme/plus.gif
+lib/ghc-8.10.1/html/Classic.theme/xhaddock.css
+lib/ghc-8.10.1/html/Linuwial.std-theme/linuwial.css
+lib/ghc-8.10.1/html/Linuwial.std-theme/synopsis.png
+lib/ghc-8.10.1/html/Ocean.theme/hslogo-16.png
+lib/ghc-8.10.1/html/Ocean.theme/minus.gif
+lib/ghc-8.10.1/html/Ocean.theme/ocean.css
+lib/ghc-8.10.1/html/Ocean.theme/plus.gif
+lib/ghc-8.10.1/html/Ocean.theme/synopsis.png
+lib/ghc-8.10.1/html/haddock-bundle.min.js
+lib/ghc-8.10.1/html/highlight.js
+lib/ghc-8.10.1/html/quick-jump.css
+lib/ghc-8.10.1/html/quick-jump.min.js
+lib/ghc-8.10.1/html/solarized.css
+%%NODYNAMIC%%lib/ghc-8.10.1/include/ffi.h
+%%NODYNAMIC%%lib/ghc-8.10.1/include/ffitarget.h
+lib/ghc-8.10.1/include/Cmm.h
+lib/ghc-8.10.1/include/DerivedConstants.h
+lib/ghc-8.10.1/include/HsFFI.h
+lib/ghc-8.10.1/include/MachDeps.h
+lib/ghc-8.10.1/include/Rts.h
+lib/ghc-8.10.1/include/RtsAPI.h
+lib/ghc-8.10.1/include/Stg.h
+lib/ghc-8.10.1/include/ghcautoconf.h
+lib/ghc-8.10.1/include/ghcconfig.h
+lib/ghc-8.10.1/include/ghcplatform.h
+lib/ghc-8.10.1/include/ghcversion.h
+lib/ghc-8.10.1/include/rts/Adjustor.h
+lib/ghc-8.10.1/include/rts/BlockSignals.h
+lib/ghc-8.10.1/include/rts/Bytecodes.h
+lib/ghc-8.10.1/include/rts/Config.h
+lib/ghc-8.10.1/include/rts/Constants.h
+lib/ghc-8.10.1/include/rts/EventLogFormat.h
+lib/ghc-8.10.1/include/rts/EventLogWriter.h
+lib/ghc-8.10.1/include/rts/FileLock.h
+lib/ghc-8.10.1/include/rts/Flags.h
+lib/ghc-8.10.1/include/rts/GetTime.h
+lib/ghc-8.10.1/include/rts/Globals.h
+lib/ghc-8.10.1/include/rts/Hpc.h
+lib/ghc-8.10.1/include/rts/IOManager.h
+lib/ghc-8.10.1/include/rts/Libdw.h
+lib/ghc-8.10.1/include/rts/LibdwPool.h
+lib/ghc-8.10.1/include/rts/Linker.h
+lib/ghc-8.10.1/include/rts/Main.h
+lib/ghc-8.10.1/include/rts/Messages.h
+lib/ghc-8.10.1/include/rts/NonMoving.h
+lib/ghc-8.10.1/include/rts/OSThreads.h
+lib/ghc-8.10.1/include/rts/Parallel.h
+lib/ghc-8.10.1/include/rts/PrimFloat.h
+lib/ghc-8.10.1/include/rts/Profiling.h
+lib/ghc-8.10.1/include/rts/Signals.h
+lib/ghc-8.10.1/include/rts/SpinLock.h
+lib/ghc-8.10.1/include/rts/StableName.h
+lib/ghc-8.10.1/include/rts/StablePtr.h
+lib/ghc-8.10.1/include/rts/StaticPtrTable.h
+lib/ghc-8.10.1/include/rts/TTY.h
+lib/ghc-8.10.1/include/rts/Threads.h
+lib/ghc-8.10.1/include/rts/Ticky.h
+lib/ghc-8.10.1/include/rts/Time.h
+lib/ghc-8.10.1/include/rts/Timer.h
+lib/ghc-8.10.1/include/rts/Types.h
+lib/ghc-8.10.1/include/rts/Utils.h
+lib/ghc-8.10.1/include/rts/prof/CCS.h
+lib/ghc-8.10.1/include/rts/prof/LDV.h
+lib/ghc-8.10.1/include/rts/storage/Block.h
+lib/ghc-8.10.1/include/rts/storage/ClosureMacros.h
+lib/ghc-8.10.1/include/rts/storage/ClosureTypes.h
+lib/ghc-8.10.1/include/rts/storage/Closures.h
+lib/ghc-8.10.1/include/rts/storage/FunTypes.h
+lib/ghc-8.10.1/include/rts/storage/GC.h
+lib/ghc-8.10.1/include/rts/storage/Heap.h
+lib/ghc-8.10.1/include/rts/storage/InfoTables.h
+lib/ghc-8.10.1/include/rts/storage/MBlock.h
+lib/ghc-8.10.1/include/rts/storage/TSO.h
+lib/ghc-8.10.1/include/stg/DLL.h
+lib/ghc-8.10.1/include/stg/MachRegs.h
+lib/ghc-8.10.1/include/stg/MachRegsForHost.h
+lib/ghc-8.10.1/include/stg/MiscClosures.h
+lib/ghc-8.10.1/include/stg/Prim.h
+lib/ghc-8.10.1/include/stg/Regs.h
+lib/ghc-8.10.1/include/stg/SMP.h
+lib/ghc-8.10.1/include/stg/Ticky.h
+lib/ghc-8.10.1/include/stg/Types.h
+%%GMP%%%%DYNAMIC%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer.dyn_hi
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer.hi
+%%GMP%%%%PROFILE%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer.p_hi
+%%GMP%%%%DYNAMIC%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/GMP/Internals.dyn_hi
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/GMP/Internals.hi
+%%GMP%%%%PROFILE%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/GMP/Internals.p_hi
+%%GMP%%%%DYNAMIC%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Logarithms.dyn_hi
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Logarithms.hi
+%%GMP%%%%PROFILE%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Logarithms.p_hi
+%%GMP%%%%DYNAMIC%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Logarithms/Internals.dyn_hi
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Logarithms/Internals.hi
+%%GMP%%%%PROFILE%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Logarithms/Internals.p_hi
+%%GMP%%%%DYNAMIC%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Type.dyn_hi
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Type.hi
+%%GMP%%%%PROFILE%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/GHC/Integer/Type.p_hi
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/HSinteger-gmp-1.0.3.0.o
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/HSinteger-gmp-1.0.3.0.p_o
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/include/HsIntegerGmp.h
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/include/ghc-gmp.h
+%%GMP%%%%DYNAMIC%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/libHSinteger-gmp-1.0.3.0-ghc8.10.1.so
+%%GMP%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/libHSinteger-gmp-1.0.3.0.a
+%%GMP%%%%PROFILE%%lib/ghc-8.10.1/integer-gmp-1.0.3.0/libHSinteger-gmp-1.0.3.0_p.a
+%%SIMPLE%%%%DYNAMIC%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer.dyn_hi
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer.hi
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer.p_hi
+%%SIMPLE%%%%DYNAMIC%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Logarithms.dyn_hi
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Logarithms.hi
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Logarithms.p_hi
+%%SIMPLE%%%%DYNAMIC%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Logarithms/Internals.dyn_hi
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Logarithms/Internals.hi
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Logarithms/Internals.p_hi
+%%SIMPLE%%%%DYNAMIC%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Simple/Internals.dyn_hi
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Simple/Internals.hi
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Simple/Internals.p_hi
+%%SIMPLE%%%%DYNAMIC%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Type.dyn_hi
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Type.hi
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/GHC/Integer/Type.p_hi
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/HSinteger-simple-0.1.2.0.o
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/HSinteger-simple-0.1.2.0.p_o
+%%SIMPLE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/libHSinteger-simple-0.1.2.0.a
+%%SIMPLE%%%%PROFILE%%lib/ghc-8.10.1/integer-simple-0.1.2.0/libHSinteger-simple-0.1.2.0_p.a
+%%SIMPLE%%%%DYNAMIC%%lib/ghc-8.10.1/integer-simple-0.1.2.0/libHSinteger-simple-0.1.2.0-ghc8.10.1.so
+%%SIMPLE%%lib/ghc-8.10.1/latex/haddock.sty
+%%DYNAMIC%%lib/ghc-8.10.1/libiserv-8.10.1/GHCi/Utils.dyn_hi
+lib/ghc-8.10.1/libiserv-8.10.1/GHCi/Utils.hi
+%%PROFILE%%lib/ghc-8.10.1/libiserv-8.10.1/GHCi/Utils.p_hi
+lib/ghc-8.10.1/libiserv-8.10.1/HSlibiserv-8.10.1.o
+%%PROFILE%%lib/ghc-8.10.1/libiserv-8.10.1/HSlibiserv-8.10.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/libiserv-8.10.1/Lib.dyn_hi
+lib/ghc-8.10.1/libiserv-8.10.1/Lib.hi
+%%PROFILE%%lib/ghc-8.10.1/libiserv-8.10.1/Lib.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/libiserv-8.10.1/libHSlibiserv-8.10.1-ghc8.10.1.so
+lib/ghc-8.10.1/libiserv-8.10.1/libHSlibiserv-8.10.1.a
+%%PROFILE%%lib/ghc-8.10.1/libiserv-8.10.1/libHSlibiserv-8.10.1_p.a
+lib/ghc-8.10.1/llvm-passes
+lib/ghc-8.10.1/llvm-targets
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Cont.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Cont.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Cont.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Cont/Class.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Cont/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Cont/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Error.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Error/Class.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Error/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Error/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Except.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Except.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Except.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Identity.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Identity.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Identity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/List.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/List.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/List.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Class.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Lazy.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Strict.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/RWS/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Reader.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Reader.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Reader.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Reader/Class.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Reader/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Reader/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Class.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Lazy.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Strict.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/State/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Trans.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Trans.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Trans.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Class.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Lazy.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Strict.dyn_hi
+lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/Control/Monad/Writer/Strict.p_hi
+lib/ghc-8.10.1/mtl-2.2.2/HSmtl-2.2.2.o
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/HSmtl-2.2.2.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/mtl-2.2.2/libHSmtl-2.2.2-ghc8.10.1.so
+lib/ghc-8.10.1/mtl-2.2.2/libHSmtl-2.2.2.a
+%%PROFILE%%lib/ghc-8.10.1/mtl-2.2.2/libHSmtl-2.2.2_p.a
+lib/ghc-8.10.1/package.conf.d/Cabal-3.2.0.0.conf
+lib/ghc-8.10.1/package.conf.d/array-0.5.4.0.conf
+lib/ghc-8.10.1/package.conf.d/base-4.14.0.0.conf
+lib/ghc-8.10.1/package.conf.d/binary-0.8.8.0.conf
+lib/ghc-8.10.1/package.conf.d/bytestring-0.10.10.0.conf
+lib/ghc-8.10.1/package.conf.d/containers-0.6.2.1.conf
+lib/ghc-8.10.1/package.conf.d/deepseq-1.4.4.0.conf
+lib/ghc-8.10.1/package.conf.d/directory-1.3.6.0.conf
+lib/ghc-8.10.1/package.conf.d/exceptions-0.10.4.conf
+lib/ghc-8.10.1/package.conf.d/filepath-1.4.2.1.conf
+lib/ghc-8.10.1/package.conf.d/ghc-8.10.1.conf
+lib/ghc-8.10.1/package.conf.d/ghc-boot-8.10.1.conf
+lib/ghc-8.10.1/package.conf.d/ghc-boot-th-8.10.1.conf
+lib/ghc-8.10.1/package.conf.d/ghc-compact-0.1.0.0.conf
+lib/ghc-8.10.1/package.conf.d/ghc-heap-8.10.1.conf
+lib/ghc-8.10.1/package.conf.d/ghc-prim-0.6.1.conf
+lib/ghc-8.10.1/package.conf.d/ghci-8.10.1.conf
+lib/ghc-8.10.1/package.conf.d/haskeline-0.8.0.0.conf
+lib/ghc-8.10.1/package.conf.d/hpc-0.6.1.0.conf
+%%GMP%%lib/ghc-8.10.1/package.conf.d/integer-gmp-1.0.3.0.conf
+%%SIMPLE%%lib/ghc-8.10.1/package.conf.d/integer-simple-0.1.2.0.conf
+lib/ghc-8.10.1/package.conf.d/libiserv-8.10.1.conf
+lib/ghc-8.10.1/package.conf.d/mtl-2.2.2.conf
+lib/ghc-8.10.1/package.conf.d/package.cache
+lib/ghc-8.10.1/package.conf.d/package.cache.lock
+lib/ghc-8.10.1/package.conf.d/parsec-3.1.14.0.conf
+lib/ghc-8.10.1/package.conf.d/pretty-1.1.3.6.conf
+lib/ghc-8.10.1/package.conf.d/process-1.6.8.2.conf
+lib/ghc-8.10.1/package.conf.d/rts.conf
+lib/ghc-8.10.1/package.conf.d/stm-2.5.0.0.conf
+lib/ghc-8.10.1/package.conf.d/template-haskell-2.16.0.0.conf
+lib/ghc-8.10.1/package.conf.d/terminfo-0.4.1.4.conf
+lib/ghc-8.10.1/package.conf.d/text-1.2.3.2.conf
+lib/ghc-8.10.1/package.conf.d/time-1.9.3.conf
+lib/ghc-8.10.1/package.conf.d/transformers-0.5.6.2.conf
+lib/ghc-8.10.1/package.conf.d/unix-2.7.2.2.conf
+lib/ghc-8.10.1/package.conf.d/xhtml-3000.2.2.1.conf
+lib/ghc-8.10.1/parsec-3.1.14.0/HSparsec-3.1.14.0.o
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/HSparsec-3.1.14.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/ByteString.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/ByteString/Lazy.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/ByteString/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/ByteString/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Char.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Char.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Char.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Combinator.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Combinator.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Combinator.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Error.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Expr.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Expr.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Expr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Language.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Language.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Language.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Perm.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Perm.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Perm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Pos.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Pos.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Pos.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Prim.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Prim.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Prim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/String.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/String.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/String.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Text.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Text.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Text.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Text/Lazy.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Text/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Text/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Token.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Token.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/Parsec/Token.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Char.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Char.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Char.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Combinator.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Combinator.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Combinator.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Error.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Expr.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Expr.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Expr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Language.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Language.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Language.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Perm.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Perm.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Perm.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Pos.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Pos.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Pos.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Prim.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Prim.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Prim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Token.dyn_hi
+lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Token.hi
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/Text/ParserCombinators/Parsec/Token.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/parsec-3.1.14.0/libHSparsec-3.1.14.0-ghc8.10.1.so
+lib/ghc-8.10.1/parsec-3.1.14.0/libHSparsec-3.1.14.0.a
+%%PROFILE%%lib/ghc-8.10.1/parsec-3.1.14.0/libHSparsec-3.1.14.0_p.a
+lib/ghc-8.10.1/platformConstants
+lib/ghc-8.10.1/pretty-1.1.3.6/HSpretty-1.1.3.6.o
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/HSpretty-1.1.3.6.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint.dyn_hi
+lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint.hi
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated.dyn_hi
+lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated.hi
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJ.dyn_hi
+lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJ.hi
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJ.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJClass.dyn_hi
+lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJClass.hi
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/Annotated/HughesPJClass.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/HughesPJ.dyn_hi
+lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/HughesPJ.hi
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/HughesPJ.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/HughesPJClass.dyn_hi
+lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/HughesPJClass.hi
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/Text/PrettyPrint/HughesPJClass.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/pretty-1.1.3.6/libHSpretty-1.1.3.6-ghc8.10.1.so
+lib/ghc-8.10.1/pretty-1.1.3.6/libHSpretty-1.1.3.6.a
+%%PROFILE%%lib/ghc-8.10.1/pretty-1.1.3.6/libHSpretty-1.1.3.6_p.a
+lib/ghc-8.10.1/process-1.6.8.2/HSprocess-1.6.8.2.o
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/HSprocess-1.6.8.2.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/process-1.6.8.2/System/Cmd.dyn_hi
+lib/ghc-8.10.1/process-1.6.8.2/System/Cmd.hi
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/System/Cmd.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/process-1.6.8.2/System/Process.dyn_hi
+lib/ghc-8.10.1/process-1.6.8.2/System/Process.hi
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/System/Process.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/process-1.6.8.2/System/Process/Common.dyn_hi
+lib/ghc-8.10.1/process-1.6.8.2/System/Process/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/System/Process/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/process-1.6.8.2/System/Process/Internals.dyn_hi
+lib/ghc-8.10.1/process-1.6.8.2/System/Process/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/System/Process/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/process-1.6.8.2/System/Process/Posix.dyn_hi
+lib/ghc-8.10.1/process-1.6.8.2/System/Process/Posix.hi
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/System/Process/Posix.p_hi
+lib/ghc-8.10.1/process-1.6.8.2/include/processFlags.h
+lib/ghc-8.10.1/process-1.6.8.2/include/runProcess.h
+%%DYNAMIC%%lib/ghc-8.10.1/process-1.6.8.2/libHSprocess-1.6.8.2-ghc8.10.1.so
+lib/ghc-8.10.1/process-1.6.8.2/libHSprocess-1.6.8.2.a
+%%PROFILE%%lib/ghc-8.10.1/process-1.6.8.2/libHSprocess-1.6.8.2_p.a
+%%NODYNAMIC%%lib/ghc-8.10.1/rts/libCffi.a
+%%NODYNAMIC%%lib/ghc-8.10.1/rts/libCffi_debug.a
+%%NODYNAMIC%%%%PROFILE%%lib/ghc-8.10.1/rts/libCffi_debug_p.a
+%%NODYNAMIC%%lib/ghc-8.10.1/rts/libCffi_l.a
+%%NODYNAMIC%%%%PROFILE%%lib/ghc-8.10.1/rts/libCffi_p.a
+%%NODYNAMIC%%lib/ghc-8.10.1/rts/libCffi_thr.a
+%%NODYNAMIC%%lib/ghc-8.10.1/rts/libCffi_thr_debug.a
+%%NODYNAMIC%%%%PROFILE%%lib/ghc-8.10.1/rts/libCffi_thr_debug_p.a
+%%NODYNAMIC%%lib/ghc-8.10.1/rts/libCffi_thr_l.a
+%%NODYNAMIC%%%%PROFILE%%lib/ghc-8.10.1/rts/libCffi_thr_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/rts/libHSrts-ghc8.10.1.so
+lib/ghc-8.10.1/rts/libHSrts.a
+%%DYNAMIC%%lib/ghc-8.10.1/rts/libHSrts_debug-ghc8.10.1.so
+lib/ghc-8.10.1/rts/libHSrts_debug.a
+%%PROFILE%%lib/ghc-8.10.1/rts/libHSrts_debug_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/rts/libHSrts_l-ghc8.10.1.so
+lib/ghc-8.10.1/rts/libHSrts_l.a
+%%PROFILE%%lib/ghc-8.10.1/rts/libHSrts_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/rts/libHSrts_thr-ghc8.10.1.so
+lib/ghc-8.10.1/rts/libHSrts_thr.a
+%%DYNAMIC%%lib/ghc-8.10.1/rts/libHSrts_thr_debug-ghc8.10.1.so
+lib/ghc-8.10.1/rts/libHSrts_thr_debug.a
+%%PROFILE%%lib/ghc-8.10.1/rts/libHSrts_thr_debug_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/rts/libHSrts_thr_l-ghc8.10.1.so
+lib/ghc-8.10.1/rts/libHSrts_thr_l.a
+%%PROFILE%%lib/ghc-8.10.1/rts/libHSrts_thr_p.a
+lib/ghc-8.10.1/settings
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TArray.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TArray.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TArray.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TBQueue.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TBQueue.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TBQueue.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TChan.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TChan.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TChan.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TMVar.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TMVar.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TMVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TQueue.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TQueue.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TQueue.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TSem.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TSem.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TSem.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TVar.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TVar.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Concurrent/STM/TVar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Monad/STM.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Monad/STM.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Monad/STM.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Sequential/STM.dyn_hi
+lib/ghc-8.10.1/stm-2.5.0.0/Control/Sequential/STM.hi
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/Control/Sequential/STM.p_hi
+lib/ghc-8.10.1/stm-2.5.0.0/HSstm-2.5.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/HSstm-2.5.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/stm-2.5.0.0/libHSstm-2.5.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/stm-2.5.0.0/libHSstm-2.5.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/stm-2.5.0.0/libHSstm-2.5.0.0_p.a
+lib/ghc-8.10.1/template-haskell-2.16.0.0/HStemplate-haskell-2.16.0.0.o
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/HStemplate-haskell-2.16.0.0.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/LanguageExtensions.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/LanguageExtensions.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/LanguageExtensions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib/Internal.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib/Map.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib/Map.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Lib/Map.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Ppr.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Ppr.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Ppr.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/PprLib.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/PprLib.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/PprLib.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Quote.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Quote.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Quote.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Syntax.dyn_hi
+lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Syntax.hi
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/Language/Haskell/TH/Syntax.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/template-haskell-2.16.0.0/libHStemplate-haskell-2.16.0.0-ghc8.10.1.so
+lib/ghc-8.10.1/template-haskell-2.16.0.0/libHStemplate-haskell-2.16.0.0.a
+%%PROFILE%%lib/ghc-8.10.1/template-haskell-2.16.0.0/libHStemplate-haskell-2.16.0.0_p.a
+lib/ghc-8.10.1/template-hsc.h
+lib/ghc-8.10.1/terminfo-0.4.1.4/HSterminfo-0.4.1.4.o
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/HSterminfo-0.4.1.4.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Base.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Base.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Base.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Color.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Color.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Color.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Cursor.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Cursor.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Cursor.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Edit.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Edit.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Edit.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Effects.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Effects.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Effects.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Keys.dyn_hi
+lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Keys.hi
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/System/Console/Terminfo/Keys.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/terminfo-0.4.1.4/libHSterminfo-0.4.1.4-ghc8.10.1.so
+lib/ghc-8.10.1/terminfo-0.4.1.4/libHSterminfo-0.4.1.4.a
+%%PROFILE%%lib/ghc-8.10.1/terminfo-0.4.1.4/libHSterminfo-0.4.1.4_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Array.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Array.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Array.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Encoding.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Encoding.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Encoding.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Encoding/Error.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Encoding/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Encoding/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Foreign.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Foreign.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Foreign.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/IO.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/Functions.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/Functions.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/Functions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/Int/Digits.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/Int/Digits.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/Int/Digits.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/RealFloat/Functions.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/RealFloat/Functions.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Builder/RealFloat/Functions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Fusion.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Fusion.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Fusion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Fusion/Common.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Fusion/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Fusion/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf16.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf16.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf16.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf32.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf32.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf32.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf8.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf8.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Encoding/Utf8.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Functions.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Functions.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Functions.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/CaseMapping.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/CaseMapping.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/CaseMapping.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Common.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Size.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Size.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Size.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Types.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Types.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Fusion/Types.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/IO.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Encoding/Fusion.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Encoding/Fusion.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Encoding/Fusion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Fusion.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Fusion.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Fusion.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Search.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Search.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Lazy/Search.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Private.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Private.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Private.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Read.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Read.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Read.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Search.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Search.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Search.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe/Char.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe/Char.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe/Char.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe/Shift.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe/Shift.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Internal/Unsafe/Shift.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder/Int.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder/Int.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder/Int.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder/RealFloat.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder/RealFloat.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Builder/RealFloat.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Encoding.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Encoding.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Encoding.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/IO.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Internal.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Read.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Read.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Lazy/Read.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Read.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Read.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Read.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Show.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Show.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Show.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Unsafe.dyn_hi
+lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Unsafe.hi
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/Data/Text/Unsafe.p_hi
+lib/ghc-8.10.1/text-1.2.3.2/HStext-1.2.3.2.o
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/HStext-1.2.3.2.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/text-1.2.3.2/libHStext-1.2.3.2-ghc8.10.1.so
+lib/ghc-8.10.1/text-1.2.3.2/libHStext-1.2.3.2.a
+%%PROFILE%%lib/ghc-8.10.1/text-1.2.3.2/libHStext-1.2.3.2_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Format.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Format.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Format.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/CalendarDiffDays.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/CalendarDiffDays.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/CalendarDiffDays.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Days.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Days.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Days.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Easter.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Easter.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Easter.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Gregorian.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Gregorian.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Gregorian.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Julian.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Julian.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Julian.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/JulianYearDay.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/JulianYearDay.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/JulianYearDay.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/MonthDay.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/MonthDay.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/MonthDay.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/OrdinalDate.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/OrdinalDate.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/OrdinalDate.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Private.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Private.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Private.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Week.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Week.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/Week.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/WeekDate.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/WeekDate.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Calendar/WeekDate.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/AbsoluteTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/AbsoluteTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/AbsoluteTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/CTimespec.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/CTimespec.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/CTimespec.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/CTimeval.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/CTimeval.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/CTimeval.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/DiffTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/DiffTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/DiffTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/NominalDiffTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/NominalDiffTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/NominalDiffTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/POSIXTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/POSIXTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/POSIXTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/SystemTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/SystemTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/SystemTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UTCDiff.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UTCDiff.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UTCDiff.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UTCTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UTCTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UTCTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UniversalTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UniversalTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/Internal/UniversalTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/POSIX.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/POSIX.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/POSIX.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/System.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/System.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/System.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/TAI.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/TAI.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Clock/TAI.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Format/Class.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Format/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Format/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Format/Instances.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Format/Instances.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Format/Instances.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/ISO8601.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/ISO8601.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/ISO8601.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Internal.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Internal.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Internal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Locale.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Locale.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Locale.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse/Class.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse/Instances.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse/Instances.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/Format/Parse/Instances.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/CalendarDiffTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/CalendarDiffTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/CalendarDiffTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/LocalTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/LocalTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/LocalTime.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/TimeOfDay.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/TimeOfDay.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/TimeOfDay.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/TimeZone.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/TimeZone.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/TimeZone.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/ZonedTime.dyn_hi
+lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/ZonedTime.hi
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/Data/Time/LocalTime/Internal/ZonedTime.p_hi
+lib/ghc-8.10.1/time-1.9.3/HStime-1.9.3.o
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/HStime-1.9.3.p_o
+lib/ghc-8.10.1/time-1.9.3/include/HsTime.h
+lib/ghc-8.10.1/time-1.9.3/include/HsTimeConfig.h
+%%DYNAMIC%%lib/ghc-8.10.1/time-1.9.3/libHStime-1.9.3-ghc8.10.1.so
+lib/ghc-8.10.1/time-1.9.3/libHStime-1.9.3.a
+%%PROFILE%%lib/ghc-8.10.1/time-1.9.3/libHStime-1.9.3_p.a
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Applicative/Backwards.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Applicative/Backwards.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Applicative/Backwards.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Applicative/Lift.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Applicative/Lift.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Applicative/Lift.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Signatures.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Signatures.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Signatures.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Accum.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Accum.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Accum.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Class.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Class.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Class.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Cont.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Cont.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Cont.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Error.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Except.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Except.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Except.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Identity.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Identity.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Identity.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/List.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/List.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/List.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Maybe.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Maybe.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Maybe.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/CPS.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/CPS.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/CPS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/Lazy.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/Strict.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/RWS/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Reader.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Reader.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Reader.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Select.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Select.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Select.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State/Lazy.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State/Strict.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/State/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/CPS.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/CPS.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/CPS.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/Lazy.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/Lazy.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/Lazy.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/Strict.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Control/Monad/Trans/Writer/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Data/Functor/Constant.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Data/Functor/Constant.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Data/Functor/Constant.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/Data/Functor/Reverse.dyn_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/Data/Functor/Reverse.hi
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/Data/Functor/Reverse.p_hi
+lib/ghc-8.10.1/transformers-0.5.6.2/HStransformers-0.5.6.2.o
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/HStransformers-0.5.6.2.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/transformers-0.5.6.2/libHStransformers-0.5.6.2-ghc8.10.1.so
+lib/ghc-8.10.1/transformers-0.5.6.2/libHStransformers-0.5.6.2.a
+%%PROFILE%%lib/ghc-8.10.1/transformers-0.5.6.2/libHStransformers-0.5.6.2_p.a
+lib/ghc-8.10.1/unix-2.7.2.2/HSunix-2.7.2.2.o
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/HSunix-2.7.2.2.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/ByteString/FilePath.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/ByteString/FilePath.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/ByteString/FilePath.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory/Common.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Directory/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Common.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Module.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Module.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Module.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Module/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Module/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Module/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Prim.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Prim.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/DynamicLinker/Prim.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Env.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Env.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Env.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Env/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Env/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Env/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Error.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Error.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Error.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Fcntl.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Fcntl.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Fcntl.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files/Common.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Files/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO/Common.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/IO/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/Common.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/Internals.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Process/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Resource.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Resource.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Resource.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Semaphore.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Semaphore.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Semaphore.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/SharedMem.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/SharedMem.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/SharedMem.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Signals.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Signals.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Signals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Signals/Exts.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Signals/Exts.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Signals/Exts.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Temp.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Temp.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Temp.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Temp/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Temp/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Temp/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal/ByteString.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal/ByteString.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal/ByteString.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal/Common.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal/Common.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Terminal/Common.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Time.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Time.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Time.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Unistd.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Unistd.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/Unistd.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/User.dyn_hi
+lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/User.hi
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/System/Posix/User.p_hi
+lib/ghc-8.10.1/unix-2.7.2.2/include/HsUnix.h
+lib/ghc-8.10.1/unix-2.7.2.2/include/HsUnixConfig.h
+lib/ghc-8.10.1/unix-2.7.2.2/include/execvpe.h
+%%DYNAMIC%%lib/ghc-8.10.1/unix-2.7.2.2/libHSunix-2.7.2.2-ghc8.10.1.so
+lib/ghc-8.10.1/unix-2.7.2.2/libHSunix-2.7.2.2.a
+%%PROFILE%%lib/ghc-8.10.1/unix-2.7.2.2/libHSunix-2.7.2.2_p.a
+lib/ghc-8.10.1/xhtml-3000.2.2.1/HSxhtml-3000.2.2.1.o
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/HSxhtml-3000.2.2.1.p_o
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/BlockTable.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/BlockTable.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/BlockTable.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Debug.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Debug.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Debug.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Extras.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Extras.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Extras.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset/Attributes.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset/Attributes.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset/Attributes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset/Elements.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset/Elements.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Frameset/Elements.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Internals.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Internals.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Internals.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict/Attributes.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict/Attributes.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict/Attributes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict/Elements.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict/Elements.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Strict/Elements.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Table.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Table.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Table.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional/Attributes.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional/Attributes.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional/Attributes.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional/Elements.dyn_hi
+lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional/Elements.hi
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/Text/XHtml/Transitional/Elements.p_hi
+%%DYNAMIC%%lib/ghc-8.10.1/xhtml-3000.2.2.1/libHSxhtml-3000.2.2.1-ghc8.10.1.so
+lib/ghc-8.10.1/xhtml-3000.2.2.1/libHSxhtml-3000.2.2.1.a
+%%PROFILE%%lib/ghc-8.10.1/xhtml-3000.2.2.1/libHSxhtml-3000.2.2.1_p.a
+%%PORTDOCS%%man/man1/ghc.1.gz
%%PORTDOCS%%%%DOCSDIR%%/html/haddock/.buildinfo
%%PORTDOCS%%%%DOCSDIR%%/html/haddock/.doctrees/environment.pickle
%%PORTDOCS%%%%DOCSDIR%%/html/haddock/.doctrees/index.doctree
@@ -896,594 +5441,594 @@ bin/runghc-%%GHC_VERSION%%
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/filepath-1.4.2.1/quick-jump.min.js
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/filepath-1.4.2.1/synopsis.png
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/gen_contents_index
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Annotations.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ApiAnnotation.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Ar.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/AsmCodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/AsmUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Avail.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Bag.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BasicTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BinFingerprint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BinIface.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Binary.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Bitmap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BkpSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BlockId.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BlockLayout.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BooleanFormula.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BufWrite.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/BuildTyCl.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ByteCodeAsm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ByteCodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ByteCodeInstr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ByteCodeItbls.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ByteCodeLink.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ByteCodeTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CFG.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CLabel.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CPrim.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CSE.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CallArity.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Class.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CliOption.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ClsInst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmdLineParser.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Cmm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmBuildInfoTables.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmCallConv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmCommonBlockElim.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmContFlowOpt.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmExpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmImplementSwitchPlans.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmLayoutStack.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmLex.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmLint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmLive.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmMachOp.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmNode.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmOpt.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmParse.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmPipeline.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmProcPoint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmSink.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmSwitch.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmType.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CmmUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoAxiom.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CodeOutput.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Coercion.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ConLike.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Config.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Constants.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Constraint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreArity.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreFVs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreLint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreMap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreOpt.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CorePrep.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreSeq.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreStats.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreSubst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreTidy.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreToStg.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreUnfold.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CoreUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CostCentre.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/CostCentreState.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Coverage.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Ctype.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DataCon.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Debug.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Debugger.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Demand.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Desugar.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Digraph.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DmdAnal.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Dominators.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DriverBkp.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DriverMkDepend.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DriverPhases.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DriverPipeline.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsArrows.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsBinds.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsCCall.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsExpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsForeign.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsGRHSs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsListComp.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsMeta.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsUsage.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DsUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Dwarf-Constants.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Dwarf-Types.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Dwarf.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DynFlags.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/DynamicLoading.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Elf.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Encoding.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/EnumSet.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ErrUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Exception.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Exitify.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ExtractDocs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FV.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FamInst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FamInstEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FastFunctions.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FastMutInt.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FastString.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FastStringEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FieldLabel.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FileCleanup.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FileSettings.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Finder.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Fingerprint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FiniteMap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FlagChecker.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FloatIn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FloatOut.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ForeignCall.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Format.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/FunDeps.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Binds.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Decls.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Doc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Dump.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Expr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Extension.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-ImpExp.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Instances.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Lit.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Pat.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-PlaceHolder.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Types.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs-Utils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Hs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-HsToCore-PmCheck-Oracle.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-HsToCore-PmCheck-Ppr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-HsToCore-PmCheck-Types.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-HsToCore-PmCheck.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-ARM.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-ARM64.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-NoRegs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-PPC.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-Regs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-S390X.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-SPARC.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-X86.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-Platform-X86_64.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-ArgRep.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Bind.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-CgUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Closure.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-DataCon.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Env.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Expr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-ExtCode.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Foreign.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Heap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Hpc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Layout.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Monad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Prim.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Prof.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Ticky.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm-Utils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-StgToCmm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC-ThToHs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHC.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GHCi.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GhcMake.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GhcMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GhcNameVersion.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GhcPlugins.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GhcPrelude.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GraphBase.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GraphColor.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GraphOps.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/GraphPpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HaddockUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HeaderInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HieAst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HieBin.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HieDebug.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HieTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HieUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Hooks.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Hoopl-Block.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Hoopl-Collections.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Hoopl-Dataflow.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Hoopl-Graph.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Hoopl-Label.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HscMain.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HscStats.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/HscTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/IOEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Id.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/IdInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/IfaceEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/IfaceSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/IfaceType.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Inst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/InstEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Instruction.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/InteractiveEval.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/InteractiveEvalTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Json.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/KnownUniques.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Lexeme.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Lexer.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LiberateCase.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Linker.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LinkerTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ListSetOps.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Literal.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Llvm-AbsSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Llvm-MetaData.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Llvm-PpLlvm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Llvm-Types.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Llvm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmCodeGen-Base.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmCodeGen-CodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmCodeGen-Data.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmCodeGen-Ppr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmCodeGen-Regs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmCodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LlvmMangler.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/LoadIface.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Match.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MatchCon.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MatchLit.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Maybes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MkCore.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MkGraph.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MkId.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MkIface.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Module.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/MonadUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/NCGMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Name.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/NameCache.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/NameEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/NameSet.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/NameShape.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/OccName.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/OccurAnal.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/OptCoercion.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/OrdList.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Outputable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PIC.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PPC-CodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PPC-Cond.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PPC-Instr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PPC-Ppr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PPC-RegInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PPC-Regs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PackageConfig.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Packages.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Pair.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Panic.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Parser.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PatSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PipelineMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PlainPanic.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PlatformConstants.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Plugins.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprBase.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprC.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprCmm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprCmmDecl.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprCmmExpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprColour.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprCore.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PprTyThing.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Predicate.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PrelInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PrelNames.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PrelRules.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Pretty.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/PrimOp.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ProfInit.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RdrHsSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RdrName.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Reg.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-ArchBase.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-ArchX86.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-Coalesce.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-Main.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-Spill.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-SpillClean.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-SpillCost.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-Stats.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Graph-TrivColorable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-Base.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-FreeRegs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-JoinToTargets.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-Main.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-PPC-FreeRegs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-SPARC-FreeRegs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-StackMap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-State.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-Stats.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-X86-FreeRegs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Linear-X86_64-FreeRegs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegAlloc-Liveness.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RegClass.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RepType.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnBinds.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnExpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnFixity.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnHsDoc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnModIface.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnNames.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnPat.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnSource.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnSplice.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnUnbound.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RnUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/RtClosureInspect.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Rules.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SAT.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SMRep.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-AddrMode.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Base.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-Amode.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-Base.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-CondCode.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-Expand.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-Gen32.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-Gen64.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen-Sanity.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-CodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Cond.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Imm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Instr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Ppr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Regs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-ShortcutJump.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SPARC-Stack.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SetLevels.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Settings.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SimplCore.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SimplEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SimplMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SimplStg.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SimplUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Simplify.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SpecConstr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Specialise.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SrcLoc.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/State.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StaticPtrTable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgCse.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgFVs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgLiftLams-Analysis.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgLiftLams-LiftM.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgLiftLams-Transformation.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgLiftLams.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgLint.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgStats.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgSubst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StgSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Stream.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/StringBuffer.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-BaseDir.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-ExtraObj.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-Info.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-Process.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-Settings.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-Tasks.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools-Terminal.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/SysTools.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/THNames.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TargetReg.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcAnnotations.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcArrows.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcBackpack.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcBinds.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcCanonical.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcClassDcl.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcDefaults.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcDeriv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcDerivInfer.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcDerivUtils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcErrors.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcEvTerm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcEvidence.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcExpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcFlatten.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcForeign.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcGenDeriv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcGenFunctor.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcGenGenerics.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcHoleErrors.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcHoleFitTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcHsSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcHsType.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcIface.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcInstDcls.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcInteract.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcMType.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcMatches.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcOrigin.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcPat.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcPatSyn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcPluginM.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcRnDriver.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcRnExports.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcRnMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcRnTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcRules.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcSMonad.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcSigs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcSimplify.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcSplice.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcTyClsDecls.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcTyDecls.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcType.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcTypeNats.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcTypeable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcUnify.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TcValidity.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TidyPgm.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ToIface.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ToolSettings.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TrieMap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TyCoFVs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TyCoPpr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TyCoRep.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TyCoSubst.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TyCoTidy.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TyCon.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Type.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TysPrim.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/TysWiredIn.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UnVarGraph.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UnariseStg.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Unify.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UniqDFM.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UniqDSet.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UniqFM.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UniqMap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UniqSet.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/UniqSupply.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Unique.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Util.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/Var.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/VarEnv.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/VarSet.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/WorkWrap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/WwLib.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/X86-CodeGen.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/X86-Cond.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/X86-Instr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/X86-Ppr.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/X86-RegInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/X86-Regs.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-124.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-33.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-36.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-38.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-42.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-43.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-45.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-46.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-47.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-60.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-61.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-62.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-94.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-A.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-All.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-B.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-C.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-D.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-E.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-F.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-G.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-H.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-I.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-J.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-K.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-L.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-M.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-N.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-O.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-P.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-Q.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-R.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-S.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-T.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-U.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-V.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-W.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-X.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-Y.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index-Z.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/doc-index.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ghc.haddock
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/ghc.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/haddock-bundle.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/linuwial.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/meta.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/quick-jump.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/quick-jump.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-%%GHC_VERSION%%/synopsis.png
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-BaseDir.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-ForeignSrcLang.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-HandleEncoding.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-LanguageExtensions.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-PackageDb.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-Platform-Host.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-Platform.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-Serialized.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-Settings.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-UniqueSubdir.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/GHC-Version.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-A.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-All.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-B.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-C.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-D.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-E.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-F.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-G.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-H.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-I.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-J.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-K.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-L.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-M.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-N.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-O.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-P.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-Q.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-R.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-S.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-T.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-U.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-V.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index-W.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/doc-index.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/ghc-boot.haddock
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/ghc-boot.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/haddock-bundle.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/linuwial.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/meta.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/quick-jump.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/quick-jump.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-%%GHC_VERSION%%/synopsis.png
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/GHC-ForeignSrcLang-Type.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/GHC-LanguageExtensions-Type.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/GHC-Lexeme.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/doc-index.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/ghc-boot-th.haddock
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/ghc-boot-th.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/haddock-bundle.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/linuwial.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/meta.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/quick-jump.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/quick-jump.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-%%GHC_VERSION%%/synopsis.png
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Annotations.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ApiAnnotation.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Ar.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/AsmCodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/AsmUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Avail.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Bag.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BasicTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BinFingerprint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BinIface.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Binary.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Bitmap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BkpSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BlockId.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BlockLayout.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BooleanFormula.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BufWrite.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/BuildTyCl.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ByteCodeAsm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ByteCodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ByteCodeInstr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ByteCodeItbls.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ByteCodeLink.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ByteCodeTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CFG.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CLabel.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CPrim.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CSE.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CallArity.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Class.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CliOption.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ClsInst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmdLineParser.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Cmm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmBuildInfoTables.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmCallConv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmCommonBlockElim.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmContFlowOpt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmExpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmImplementSwitchPlans.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmLayoutStack.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmLex.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmLint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmLive.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmMachOp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmNode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmOpt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmParse.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmPipeline.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmProcPoint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmSink.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmSwitch.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmType.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CmmUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoAxiom.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CodeOutput.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Coercion.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ConLike.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Config.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Constants.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Constraint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreArity.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreFVs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreLint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreMap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreOpt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CorePrep.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreSeq.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreStats.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreSubst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreTidy.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreToStg.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreUnfold.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CoreUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CostCentre.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/CostCentreState.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Coverage.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Ctype.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DataCon.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Debug.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Debugger.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Demand.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Desugar.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Digraph.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DmdAnal.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Dominators.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DriverBkp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DriverMkDepend.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DriverPhases.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DriverPipeline.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsArrows.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsBinds.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsCCall.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsExpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsForeign.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsGRHSs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsListComp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsMeta.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsUsage.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DsUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Dwarf-Constants.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Dwarf-Types.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Dwarf.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DynFlags.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/DynamicLoading.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Elf.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Encoding.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/EnumSet.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ErrUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Exception.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Exitify.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ExtractDocs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FV.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FamInst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FamInstEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FastFunctions.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FastMutInt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FastString.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FastStringEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FieldLabel.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FileCleanup.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FileSettings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Finder.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Fingerprint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FiniteMap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FlagChecker.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FloatIn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FloatOut.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ForeignCall.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Format.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/FunDeps.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Binds.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Decls.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Doc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Dump.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Expr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Extension.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-ImpExp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Instances.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Lit.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Pat.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-PlaceHolder.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Types.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs-Utils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Hs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-HsToCore-PmCheck-Oracle.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-HsToCore-PmCheck-Ppr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-HsToCore-PmCheck-Types.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-HsToCore-PmCheck.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-ARM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-ARM64.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-NoRegs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-PPC.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-Regs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-S390X.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-SPARC.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-X86.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-Platform-X86_64.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-ArgRep.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Bind.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-CgUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Closure.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-DataCon.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Env.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Expr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-ExtCode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Foreign.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Heap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Hpc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Layout.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Monad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Prim.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Prof.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Ticky.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm-Utils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-StgToCmm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC-ThToHs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHC.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GHCi.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GhcMake.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GhcMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GhcNameVersion.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GhcPlugins.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GhcPrelude.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GraphBase.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GraphColor.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GraphOps.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/GraphPpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HaddockUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HeaderInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HieAst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HieBin.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HieDebug.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HieTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HieUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Hooks.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Hoopl-Block.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Hoopl-Collections.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Hoopl-Dataflow.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Hoopl-Graph.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Hoopl-Label.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HscMain.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HscStats.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/HscTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/IOEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Id.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/IdInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/IfaceEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/IfaceSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/IfaceType.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Inst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/InstEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Instruction.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/InteractiveEval.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/InteractiveEvalTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Json.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/KnownUniques.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Lexeme.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Lexer.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LiberateCase.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Linker.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LinkerTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ListSetOps.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Literal.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Llvm-AbsSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Llvm-MetaData.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Llvm-PpLlvm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Llvm-Types.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Llvm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmCodeGen-Base.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmCodeGen-CodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmCodeGen-Data.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmCodeGen-Ppr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmCodeGen-Regs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmCodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LlvmMangler.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/LoadIface.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Match.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MatchCon.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MatchLit.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Maybes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MkCore.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MkGraph.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MkId.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MkIface.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Module.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/MonadUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/NCGMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Name.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/NameCache.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/NameEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/NameSet.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/NameShape.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/OccName.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/OccurAnal.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/OptCoercion.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/OrdList.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Outputable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PIC.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PPC-CodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PPC-Cond.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PPC-Instr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PPC-Ppr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PPC-RegInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PPC-Regs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PackageConfig.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Packages.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Pair.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Panic.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Parser.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PatSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PipelineMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PlainPanic.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PlatformConstants.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Plugins.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprBase.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprC.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprCmm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprCmmDecl.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprCmmExpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprColour.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprCore.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PprTyThing.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Predicate.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PrelInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PrelNames.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PrelRules.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Pretty.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/PrimOp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ProfInit.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RdrHsSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RdrName.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Reg.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-ArchBase.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-ArchX86.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-Coalesce.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-Main.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-Spill.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-SpillClean.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-SpillCost.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-Stats.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Graph-TrivColorable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-Base.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-FreeRegs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-JoinToTargets.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-Main.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-PPC-FreeRegs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-SPARC-FreeRegs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-StackMap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-State.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-Stats.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-X86-FreeRegs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Linear-X86_64-FreeRegs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegAlloc-Liveness.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RegClass.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RepType.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnBinds.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnExpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnFixity.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnHsDoc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnModIface.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnNames.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnPat.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnSource.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnSplice.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnUnbound.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RnUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/RtClosureInspect.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Rules.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SAT.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SMRep.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-AddrMode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Base.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-Amode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-Base.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-CondCode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-Expand.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-Gen32.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-Gen64.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen-Sanity.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-CodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Cond.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Imm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Instr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Ppr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Regs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-ShortcutJump.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SPARC-Stack.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SetLevels.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Settings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SimplCore.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SimplEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SimplMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SimplStg.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SimplUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Simplify.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SpecConstr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Specialise.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SrcLoc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/State.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StaticPtrTable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgCse.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgFVs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgLiftLams-Analysis.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgLiftLams-LiftM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgLiftLams-Transformation.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgLiftLams.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgLint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgStats.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgSubst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StgSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Stream.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/StringBuffer.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-BaseDir.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-ExtraObj.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-Info.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-Process.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-Settings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-Tasks.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools-Terminal.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/SysTools.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/THNames.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TargetReg.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcAnnotations.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcArrows.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcBackpack.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcBinds.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcCanonical.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcClassDcl.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcDefaults.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcDeriv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcDerivInfer.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcDerivUtils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcErrors.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcEvTerm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcEvidence.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcExpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcFlatten.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcForeign.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcGenDeriv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcGenFunctor.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcGenGenerics.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcHoleErrors.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcHoleFitTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcHsSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcHsType.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcIface.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcInstDcls.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcInteract.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcMType.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcMatches.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcOrigin.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcPat.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcPatSyn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcPluginM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcRnDriver.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcRnExports.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcRnMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcRnTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcRules.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcSMonad.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcSigs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcSimplify.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcSplice.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcTyClsDecls.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcTyDecls.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcType.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcTypeNats.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcTypeable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcUnify.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TcValidity.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TidyPgm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ToIface.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ToolSettings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TrieMap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TyCoFVs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TyCoPpr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TyCoRep.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TyCoSubst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TyCoTidy.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TyCon.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Type.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TysPrim.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/TysWiredIn.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UnVarGraph.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UnariseStg.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Unify.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UniqDFM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UniqDSet.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UniqFM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UniqMap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UniqSet.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/UniqSupply.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Unique.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Util.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/Var.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/VarEnv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/VarSet.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/WorkWrap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/WwLib.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/X86-CodeGen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/X86-Cond.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/X86-Instr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/X86-Ppr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/X86-RegInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/X86-Regs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-124.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-33.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-36.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-38.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-42.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-43.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-45.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-46.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-47.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-60.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-61.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-62.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-94.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-A.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-All.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-B.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-C.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-D.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-E.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-F.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-G.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-H.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-I.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-J.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-K.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-L.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-M.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-N.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-O.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-P.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-Q.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-R.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-S.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-T.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-U.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-V.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-W.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-X.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-Y.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index-Z.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/doc-index.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ghc.haddock
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/ghc.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/haddock-bundle.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/linuwial.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/meta.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/quick-jump.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/quick-jump.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-8.10.1/synopsis.png
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-BaseDir.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-ForeignSrcLang.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-HandleEncoding.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-LanguageExtensions.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-PackageDb.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-Platform-Host.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-Platform.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-Serialized.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-Settings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-UniqueSubdir.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/GHC-Version.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-A.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-All.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-B.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-C.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-D.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-E.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-F.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-G.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-H.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-I.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-J.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-K.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-L.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-M.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-N.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-O.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-P.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-Q.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-R.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-S.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-T.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-U.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-V.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index-W.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/doc-index.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/ghc-boot.haddock
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/ghc-boot.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/haddock-bundle.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/linuwial.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/meta.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/quick-jump.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/quick-jump.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-8.10.1/synopsis.png
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/GHC-ForeignSrcLang-Type.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/GHC-LanguageExtensions-Type.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/GHC-Lexeme.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/doc-index.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/ghc-boot-th.haddock
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/ghc-boot-th.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/haddock-bundle.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/linuwial.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/meta.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/quick-jump.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/quick-jump.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-boot-th-8.10.1/synopsis.png
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/GHC-Compact-Serialized.html
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/GHC-Compact.html
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/LICENSE
@@ -1498,49 +6043,49 @@ bin/runghc-%%GHC_VERSION%%
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/quick-jump.css
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/quick-jump.min.js
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-compact-0.1.0.0/synopsis.png
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-ClosureTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-Closures.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-Constants.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-InfoTable-Types.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-InfoTable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-InfoTableProf.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap-Utils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/GHC-Exts-Heap.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-A.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-All.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-B.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-C.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-D.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-E.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-F.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-G.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-H.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-I.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-K.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-L.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-M.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-N.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-O.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-P.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-Q.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-R.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-S.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-T.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-U.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-V.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index-W.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/doc-index.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/ghc-heap.haddock
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/ghc-heap.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/haddock-bundle.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/linuwial.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/meta.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/quick-jump.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/quick-jump.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-%%GHC_VERSION%%/synopsis.png
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-ClosureTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-Closures.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-Constants.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-InfoTable-Types.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-InfoTable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-InfoTableProf.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap-Utils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/GHC-Exts-Heap.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-A.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-All.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-B.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-C.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-D.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-E.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-F.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-G.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-H.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-I.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-K.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-L.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-M.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-N.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-O.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-P.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-Q.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-R.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-S.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-T.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-U.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-V.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index-W.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/doc-index.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/ghc-heap.haddock
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/ghc-heap.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/haddock-bundle.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/linuwial.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/meta.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/quick-jump.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/quick-jump.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-heap-8.10.1/synopsis.png
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.6.1/GHC-CString.html
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.6.1/GHC-Classes.html
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.6.1/GHC-Debug.html
@@ -1597,53 +6142,53 @@ bin/runghc-%%GHC_VERSION%%
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.6.1/quick-jump.css
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.6.1/quick-jump.min.js
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghc-prim-0.6.1/synopsis.png
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-BinaryArray.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-BreakArray.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-CreateBCO.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-FFI.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-InfoTable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-Message.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-ObjLink.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-RemoteTypes.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-ResolvedBCO.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-Run.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-Signals.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-StaticPtrTable.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-TH-Binary.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/GHCi-TH.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/SizedSeq.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-A.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-All.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-B.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-C.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-D.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-E.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-F.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-G.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-H.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-I.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-L.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-M.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-N.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-P.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-Q.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-R.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-S.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-T.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-U.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index-W.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/doc-index.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/ghci.haddock
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/ghci.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/haddock-bundle.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/linuwial.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/meta.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/quick-jump.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/quick-jump.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-%%GHC_VERSION%%/synopsis.png
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-BinaryArray.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-BreakArray.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-CreateBCO.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-FFI.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-InfoTable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-Message.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-ObjLink.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-RemoteTypes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-ResolvedBCO.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-Run.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-Signals.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-StaticPtrTable.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-TH-Binary.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/GHCi-TH.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/SizedSeq.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-A.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-All.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-B.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-C.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-D.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-E.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-F.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-G.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-H.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-I.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-L.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-M.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-N.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-P.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-Q.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-R.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-S.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-T.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-U.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index-W.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/doc-index.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/ghci.haddock
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/ghci.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/haddock-bundle.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/linuwial.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/meta.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/quick-jump.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/quick-jump.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/ghci-8.10.1/synopsis.png
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/haddock-bundle.min.js
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/haskeline-0.8.0.0/LICENSE
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/haskeline-0.8.0.0/System-Console-Haskeline-Completion.html
@@ -1678,52 +6223,52 @@ bin/runghc-%%GHC_VERSION%%
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/hpc-0.6.1.0/quick-jump.min.js
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/hpc-0.6.1.0/synopsis.png
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/index.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer-GMP-Internals.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer-Logarithms-Internals.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer-Logarithms.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/LICENSE
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/doc-index.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/doc-index.json
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/haddock-bundle.min.js
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/index.html
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/integer-gmp.haddock
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/integer-gmp.txt
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/linuwial.css
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/meta.json
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/quick-jump.css
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/quick-jump.min.js
-%%PORTDOCS%%%%GMP%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/synopsis.png
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer-Logarithms-Internals.html
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer-Logarithms.html
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer-Simple-Internals.html
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer.html
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/LICENSE
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/doc-index.html
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/doc-index.json
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/haddock-bundle.min.js
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/index.html
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/integer-simple.haddock
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/integer-simple.txt
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/linuwial.css
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/meta.json
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/quick-jump.css
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/quick-jump.min.js
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/synopsis.png
-%%PORTDOCS%%%%SIMPLE%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/GHCi-Utils.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/Lib.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/doc-index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/doc-index.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/haddock-bundle.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/libiserv.haddock
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/libiserv.txt
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/linuwial.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/meta.json
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/quick-jump.css
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/quick-jump.min.js
-%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-%%GHC_VERSION%%/synopsis.png
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer-GMP-Internals.html
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer-Logarithms-Internals.html
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer-Logarithms.html
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/GHC-Integer.html
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/LICENSE
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/doc-index.html
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/doc-index.json
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/haddock-bundle.min.js
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/index.html
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/integer-gmp.haddock
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/integer-gmp.txt
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/linuwial.css
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/meta.json
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/quick-jump.css
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/quick-jump.min.js
+%%GMP%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-gmp-1.0.3.0/synopsis.png
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer-Logarithms-Internals.html
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer-Logarithms.html
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer-Simple-Internals.html
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/GHC-Integer.html
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/LICENSE
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/doc-index.html
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/doc-index.json
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/haddock-bundle.min.js
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/index.html
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/integer-simple.haddock
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/integer-simple.txt
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/linuwial.css
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/meta.json
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/quick-jump.css
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/quick-jump.min.js
+%%SIMPLE%%%%PORTDOCS%%%%DOCSDIR%%/html/libraries/integer-simple-0.1.2.0/synopsis.png
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/GHCi-Utils.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/Lib.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/doc-index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/doc-index.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/haddock-bundle.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/libiserv.haddock
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/libiserv.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/linuwial.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/meta.json
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/quick-jump.css
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/quick-jump.min.js
+%%PORTDOCS%%%%DOCSDIR%%/html/libraries/libiserv-8.10.1/synopsis.png
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/linuwial.css
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/mtl-2.2.2/Control-Monad-Cont-Class.html
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/mtl-2.2.2/Control-Monad-Cont.html
@@ -2265,9 +6810,9 @@ bin/runghc-%%GHC_VERSION%%
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/xhtml-3000.2.2.1/xhtml.haddock
%%PORTDOCS%%%%DOCSDIR%%/html/libraries/xhtml-3000.2.2.1/xhtml.txt
%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/.buildinfo
-%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/%%GHC_VERSION%%-notes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/8.10.1-notes.html
%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/_images/prof_scc.svg
-%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/_sources/%%GHC_VERSION%%-notes.rst.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/_sources/8.10.1-notes.rst.txt
%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/_sources/bugs.rst.txt
%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/_sources/codegens.rst.txt
%%PORTDOCS%%%%DOCSDIR%%/html/users_guide/_sources/debug-info.rst.txt