Hammerspoon / hammerspoon

Staggeringly powerful macOS desktop automation with Lua
http://www.hammerspoon.org
MIT License
11.96k stars 579 forks source link

Advice Needed - Optimising Code #1898

Closed latenitefilms closed 6 years ago

latenitefilms commented 6 years ago

@asmagill - Not important or urgent, but seeing as you're currently online, I'm using the following code which works great, however it's slow:

--- cp.tools.lines(string) -> table | nil
--- Function
--- Splits a string containing multiple lines of text into a table.
---
--- Parameters:
---  * string - the string you want to process
---
--- Returns:
---  * A table or `nil` if the parameter is not a string.
function tools.lines(str)
    if str and type(str) == "string" then
        local t = {}
        local function helper(line)
            line = tools.trim(line)
            if line ~= nil and line ~= "" then
                insert(t, line)
            end
            return ""
        end
        helper((str:gsub("(.-)\r?\n", helper)))
        return t
    else
        return nil
    end
end

--- plugins.finalcutpro.console.font.FONT_EXTENSIONS -> table
--- Constant
--- Table of support font file extensions.
mod.FONT_EXTENSIONS = {
    "ttf",
    "otf",
    "ttc",
}

-- getFinalCutProFontPaths() -> none
-- Function
-- Gets a table of all the fonts currently used by Final Cut Pro.
--
-- Parameters:
--  * None
--
-- Returns:
--  * Table
local function getFinalCutProFontPaths()
    local result = {}
    local fcpApp = fcp:application()
    local processID = fcpApp and fcpApp:pid()
    if processID then
        local o, s, t, r = execute("lsof -p " .. processID)
        if o and s and t == "exit" and r == 0 then
            local lines = tools.lines(o)
            for _, line in pairs(lines) do
                for _, ext in pairs(mod.FONT_EXTENSIONS) do
                    if string.find("." .. string.lower(line), "." .. ext) then
                        local _, position = string.find(line, " /")
                        if position then
                            local path = string.sub(line, position)
                            if path then
                                table.insert(result, path)
                            end
                        end
                    end
                end
            end
        else
            log.ef("Failed to run `lsof` on Final Cut Pro.")
        end
    end
    return result
end

It basically uses lsof to get a list of all the fonts currently loaded by Apple Final Cut Pro's and returns the paths for them in a table. However, whilst it works, it's also pretty slow.

Any tips or tricks you can offer to help me speed this up? Is there any Objective-C equivalent of lsof?

My macOS Terminal skills aren't great - but would it be faster to do the string processing in the Terminal command rather than in Lua?

Again, not urgent, but if you have any tips, that would be amazing. Thanks heaps!

cmsj commented 6 years ago

Adding -n to lsof often makes it run faster, if network sockets are involved, since that will make it skip resolving host/port names. This isn't ever going to be super fast since you're calling a fairly slow command (lsof), but I would suggest that without profiling the code to understand where exactly it is slow, you're going to struggle to fix it :)

latenitefilms commented 6 years ago

Legend, thanks @cmsj - I'll give -n a test!

Given you're a command line guru - any tips on how I could filter the lsof so that it only returns lines that contain font paths using grep, awk or similar? That way I can compare whether doing it in the command line is faster than processing in Lua-land.

Here's what it currently gives me:

Chriss-MBP:~ chrishocking$ lsof -n -p 13232
COMMAND     PID         USER   FD   TYPE             DEVICE   SIZE/OFF       NODE NAME
Final\x20 13232 chrishocking  cwd    DIR                1,4        992          2 /
Final\x20 13232 chrishocking  txt    REG                1,4    1636848 8626981287 /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
Final\x20 13232 chrishocking  txt    REG                1,4     725104 8623982380 /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
Final\x20 13232 chrishocking  txt    REG                1,4    3790480 8626981093 /Applications/Final Cut Pro.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCore
Final\x20 13232 chrishocking  txt    REG                1,4   34504032 8626980209 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Flexo
Final\x20 13232 chrishocking  txt    REG                1,4    1129792 8626980914 /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
Final\x20 13232 chrishocking  txt    REG                1,4      74624 8626981235 /Applications/Final Cut Pro.app/Contents/Frameworks/StudioSharedResources.framework/Versions/A/StudioSharedResources
Final\x20 13232 chrishocking  txt    REG                1,4    2879456 8626981282 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/TLKit
Final\x20 13232 chrishocking  txt    REG                1,4    5209040 8626980900 /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/LunaKit
Final\x20 13232 chrishocking  txt    REG                1,4     408112 8626981121 /Applications/Final Cut Pro.app/Contents/Frameworks/ProGL.framework/Versions/A/ProGL
Final\x20 13232 chrishocking  txt    REG                1,4    4001504 8626981067 /Applications/Final Cut Pro.app/Contents/Frameworks/ProAppsFxSupport.framework/Versions/A/ProAppsFxSupport
Final\x20 13232 chrishocking  txt    REG                1,4    2088672 8626981080 /Applications/Final Cut Pro.app/Contents/Frameworks/ProChannel.framework/Versions/A/ProChannel
Final\x20 13232 chrishocking  txt    REG                1,4      26064 8626980243 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/ProPanel.framework/Versions/A/ProPanel
Final\x20 13232 chrishocking  txt    REG                1,4      24032 8626980256 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/ProPanelViewServiceSupport.framework/Versions/A/ProPanelViewServiceSupport
Final\x20 13232 chrishocking  txt    REG                1,4    1082416 8626980927 /Applications/Final Cut Pro.app/Contents/Frameworks/MXFExportSDK.framework/Versions/A/MXFExportSDK
Final\x20 13232 chrishocking  txt    REG                1,4     231744 8626981054 /Applications/Final Cut Pro.app/Contents/Frameworks/PluginManager.framework/Versions/B/PluginManager
Final\x20 13232 chrishocking  txt    REG                1,4     231840 8626980218 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/DeepSkyLite.framework/Versions/A/DeepSkyLite
Final\x20 13232 chrishocking  txt    REG                1,4       2932    2730160 /Library/Application Support/FxFactory/idustrial revolution 3D Video Walls.fxtemplates/Assets/Fonts/3DSHAPESXEFFECTS-Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      44240 8626980849 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
Final\x20 13232 chrishocking  txt    REG                1,4       3280 8608705827 /Library/Application Support/FxFactory/osmFCPX osm.iPhone.fxtemplates/Assets/Fonts/osm.font.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     873200 8626981147 /Applications/Final Cut Pro.app/Contents/Frameworks/ProInspector.framework/Versions/A/ProInspector
Final\x20 13232 chrishocking  txt    REG                1,4     623568 8626981190 /Applications/Final Cut Pro.app/Contents/Frameworks/ProShapes.framework/Versions/A/ProShapes
Final\x20 13232 chrishocking  txt    REG                1,4    1506624 8626981175 /Applications/Final Cut Pro.app/Contents/Frameworks/ProOSC.framework/Versions/A/ProOSC
Final\x20 13232 chrishocking  txt    REG                1,4   13190928 8626980233 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/FaceCoreEmbedded.framework/Versions/A/FaceCoreEmbedded
Final\x20 13232 chrishocking  txt    REG                1,4       4544 8608705828 /Library/Application Support/FxFactory/osmFCPX osm.iPhone.fxtemplates/Assets/Fonts/osmiPhone-110.otf
Final\x20 13232 chrishocking  txt    REG                1,4     738704 8626981106 /Applications/Final Cut Pro.app/Contents/Frameworks/ProCurveEditor.framework/Versions/A/ProCurveEditor
Final\x20 13232 chrishocking  txt    REG                1,4     147392 8626981267 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKEventDispatcher.framework/Versions/A/TLKEventDispatcher
Final\x20 13232 chrishocking  txt    REG                1,4   16267440 8626980803 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumRender.framework/Versions/A/HeliumRender
Final\x20 13232 chrishocking  txt    REG                1,4   13319088 8626980790 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumFilters.framework/Versions/A/HeliumFilters
Final\x20 13232 chrishocking  txt    REG                1,4    6984768 8626980829 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
Final\x20 13232 chrishocking  txt    REG                1,4     882880 8626980842 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSensoCore2.framework/Versions/A/HeliumSensoCore2
Final\x20 13232 chrishocking  txt    REG                1,4     139872 8626980816 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSenso.framework/Versions/A/HeliumSenso
Final\x20 13232 chrishocking  txt    REG                1,4      14516 8617401999 /Applications/Final Cut Pro.app/Contents/Resources/Fonts/FCMetro34.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     315344 8626980770 /Applications/Final Cut Pro.app/Contents/Frameworks/FxPlug.framework/Versions/A/FxPlug
Final\x20 13232 chrishocking  txt    REG                1,4     299440 8615849527 /Library/Application Support/ProApps/Plugins/VendorSpecific/RED.bundle/Contents/MacOS/RED
Final\x20 13232 chrishocking  txt    REG                1,4       2159 8617382790 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/F_Timeline_Spine.caar
Final\x20 13232 chrishocking  txt    REG                1,4   26771408 8624705576 /usr/share/icu/icudt59l.dat
Final\x20 13232 chrishocking  txt    REG                1,4   35128096 8624660202 /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
Final\x20 13232 chrishocking  txt    REG                1,4    2232320 8624659175 /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver
Final\x20 13232 chrishocking  txt    REG                1,4     273256 8628170031 /Library/Application Support/CrashReporter/SubmitDiagInfo.domains
Final\x20 13232 chrishocking  txt    REG                1,4    1951264 8624659118 /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
Final\x20 13232 chrishocking  txt    REG                1,4    3825930 8626980512 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4     235984 8608144250 /private/var/db/timezone/tz/2018c.1.0/icutz/icutz44l.dat
Final\x20 13232 chrishocking  txt    REG                1,4      32768 8628206871 /private/var/db/mds/messages/501/se_SecurityMessages
Final\x20 13232 chrishocking  txt    REG                1,4     376816 8624672629 /System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundle/Contents/MacOS/csparser
Final\x20 13232 chrishocking  txt    REG                1,4    3333792 8624658171 /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4     351528 8624658195 /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/VibrantLightAppearance.car
Final\x20 13232 chrishocking  txt    REG                1,4     657900 8617365749 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Korataki.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     159656 8617365733 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Georgia.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     137144 8617365805 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Synchro LET.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      95860 8617365813 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Wanted.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     198368 8617365735 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/GillSansUltraBold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    6279168 8628352579 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/0/com.apple.LaunchServices-221-v2.csstore
Final\x20 13232 chrishocking  txt    REG                1,4    4830944 8615849530 /Library/Application Support/ProApps/Plugins/VendorSpecific/RED.bundle/Contents/MacOS/REDR3D.dylib
Final\x20 13232 chrishocking  txt    REG                1,4    2128128 8615849529 /Library/Application Support/ProApps/Plugins/VendorSpecific/RED.bundle/Contents/MacOS/REDOpenCL.dylib
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8590718631 /Library/Caches/com.apple.iconservices.store/2326C418-997C-EEBE-FC98-516F0DB9A0F1.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       3708 8617382755 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/ClipBackground.caar
Final\x20 13232 chrishocking  txt    REG                1,4     952920 8624663726 /System/Library/Fonts/SFNSTextItalic.ttf
Final\x20 13232 chrishocking  txt    REG                1,4       8429 8590297821 /System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Base.lproj/NSTextTouchBarItems.nib
Final\x20 13232 chrishocking  txt    REG                1,4     298236 8590293951 /System/Library/Fonts/SFCompactText-Regular.otf
Final\x20 13232 chrishocking  txt    REG                1,4    2990384 8626980985 /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Particles.ozp/Contents/MacOS/Particles
Final\x20 13232 chrishocking  txt    REG                1,4     462048 8626980196 /Applications/Final Cut Pro.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
Final\x20 13232 chrishocking  txt    REG                1,4     304480 8626980273 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/AudioEffects.component/Contents/MacOS/AudioEffects
Final\x20 13232 chrishocking  txt    REG                1,4     159920 8626980997 /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Text.ozp/Contents/MacOS/Text
Final\x20 13232 chrishocking  txt    REG                1,4     192448 8626980409 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/MacOS/EDEL
Final\x20 13232 chrishocking  txt    REG                1,4      23408 8626980357 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAResourcesLg.framework/Versions/A/MAResourcesLg
Final\x20 13232 chrishocking  txt    REG                1,4    2124464 8617358804 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MACore.framework/Versions/A/Resources/DDT.ttc
Final\x20 13232 chrishocking  txt    REG                1,4      28096 8626980428 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Resources/efx.res/Contents/MacOS/efx
Final\x20 13232 chrishocking  txt    REG                1,4      28096 8626980448 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Resources/evp88.res/Contents/MacOS/evp88
Final\x20 13232 chrishocking  txt    REG                1,4      28096 8626980438 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Resources/evoc.res/Contents/MacOS/evoc
Final\x20 13232 chrishocking  txt    REG                1,4      28112 8626980468 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Resources/sphere.res/Contents/MacOS/sphere
Final\x20 13232 chrishocking  txt    REG                1,4     270916 8617358811 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MACore.framework/Versions/A/Resources/ForgottenFuturist-Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      12792 8617358802 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MACore.framework/Versions/A/Resources/BlueGlyph15.ttf
Final\x20 13232 chrishocking  txt    REG                1,4       2272 8617358809 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MACore.framework/Versions/A/Resources/Flynn_Glyphs.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      28112 8626980418 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Resources/common.res/Contents/MacOS/common
Final\x20 13232 chrishocking  txt    REG                1,4      28112 8626980458 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
Final\x20 13232 chrishocking  txt    REG                1,4       1044 8593090708 /Library/Caches/com.apple.iconservices.store/E7892192-0298-8F24-41F0-051082E96CAD.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       1044 8594636991 /Library/Caches/com.apple.iconservices.store/51672876-3C8C-B405-49B7-092DA76351F9.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       1044 8590713568 /Library/Caches/com.apple.iconservices.store/7F9C4613-6C9C-41FE-CD2E-70EAFBE94A36.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       1044 8590713713 /Library/Caches/com.apple.iconservices.store/FA9BA004-0F00-0491-34AA-AB47A58B895E.isdata
Final\x20 13232 chrishocking  txt    REG                1,4      46736 8613146737 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/iLMBAppDefPlugin
Final\x20 13232 chrishocking  txt    REG                1,4     124160 8613146969 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/iLMBiPhotoPlugin
Final\x20 13232 chrishocking  txt    REG                1,4     231536 8613146931 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/iLMBiPhoto8Plugin
Final\x20 13232 chrishocking  txt    REG                1,4      55744 8613146865 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/MacOS/iLMBPhotoBoothPlugin
Final\x20 13232 chrishocking  txt    REG                1,4      68960 8613146843 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBooth2Plugin.ilmbplugin/Contents/MacOS/iLMBPhotoBooth2Plugin
Final\x20 13232 chrishocking  txt    REG                1,4      78272 8613146790 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/MacOS/iLMBGarageBandPlugin
Final\x20 13232 chrishocking  txt    REG                1,4      78960 8613146809 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBLogicPlugin.ilmbplugin/Contents/MacOS/iLMBLogicPlugin
Final\x20 13232 chrishocking  txt    REG                1,4     135008 8613146749 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS/iLMBFinalCutPlugin
Final\x20 13232 chrishocking  txt    REG                1,4     128448 8613147010 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/iLMBiTunesPlugin
Final\x20 13232 chrishocking  txt    REG                1,4      56288 8613146821 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/MacOS/iLMBMoviesFolderPlugin
Final\x20 13232 chrishocking  txt    REG                1,4     120480 8613146696 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS/iLMBAperturePlugin
Final\x20 13232 chrishocking  txt    REG                1,4     212848 8613146887 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotosPlugin.ilmbplugin/Contents/MacOS/iLMBPhotosPlugin
Final\x20 13232 chrishocking  txt    REG                1,4      56000 8613146771 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/iLMBFolderPlugin
Final\x20 13232 chrishocking  txt    REG                1,4     240420 8617365769 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/OldEnglishText-Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     270916 8617365721 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Forgotten Futurist Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     116928 8617365681 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Bank Gothic Light.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     272340 8617365693 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Bradley Hand Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     222692 8617365689 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/BebasNeue.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     217136 8617365745 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/HumanaSerif.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     156764 8617365809 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/VIP.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     393664 8617365679 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Banco Heavy.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     553520 8617365753 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Luminari-Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      85288 8617365725 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Franklin Gothic Demibold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     606152 8617365795 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Snell Roundhand.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     926172 8617365807 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Trattatello.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     135988 8617365759 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Misadventures Black.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     174812 8617365751 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Loopiejuice-Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     232708 8617365695 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Brush Script.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     723256 8617365711 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Edwardian Script.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     785292 8617365731 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Gaz Transport.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     227432 8617365747 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Junegull.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     225784 8617365777 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Phosphate.ttc
Final\x20 13232 chrishocking  txt    REG                1,4      60808 8617365675 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/AvenirBlackOblique.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     789876 8617365771 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/OperinaPro.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     451288 8617365791 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Sinzano.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     157952 8617365741 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Handwriting Dakota.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      95744 8617365677 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/AvianoSansBold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     116556 8617365817 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Zingende Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     128824 8617365709 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Duality.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     398840 8617365713 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/EngraversGothic-Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     663076 8617365701 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/ComicScript.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     444588 8617365739 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Goudy Old Style.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     357176 8617365737 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Goudy Old Style Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    1459664 8617365767 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/OctinStencil.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     135336 8617365757 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Misadventures Black Italic.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     183748 8617365789 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Shabash Pro Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    3870300 8617365765 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/OctinSpraypaint.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     879084 8617365755 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Meloriac.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    1365436 8617365787 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Shababa.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    1113812 8617365723 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/ForgottenFuturist.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     427012 8617365797 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Soap.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     252900 8617365761 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Octin Team Heavy.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     495932 8617365699 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Comic Script Regular.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     183148 8617365811 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Virtus-Regular.otf
Final\x20 13232 chrishocking  txt    REG                1,4     134680 8617365729 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/GaramondRoughHEF-Reg.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     162816 8617365717 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Flatbush Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     259936 8617365779 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Posterboard.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     209800 8617365801 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Superclarendon Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     117380 8617365815 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Zingende Light.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     172860 8617365727 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/GaramondRoughHEF-Medium.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     371756 8617365785 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Scheme.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     113908 8617365715 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Flatbush Bold Oblique.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     127592 8617365691 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Blair Medium.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     119836 8617365687 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/BeaufortPro.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     199052 8617365775 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Paleographic.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     116124 8617365683 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Bank Gothic Medium.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     175280 8617365705 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/DDT-bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     250980 8617365763 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Octin.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     261572 8617365719 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Forgotten Futurist Bold Italic.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      59072 8617365799 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Strenuous.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     126180 8617365783 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/SabonLTPro-Roman.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    2118156 8617365781 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Proxima Nova.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     199444 8617365743 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/HopperScript.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     213456 8617365803 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Superclarendon.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     167484 8617365697 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Comic Script Extended.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      37992 8617365703 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Coolvetica.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    1102448 8617365793 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/SketchBlock-Light.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     229020 8617365685 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/BasicCommercialLTCom-Bold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      83056 8617365773 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/Paleographic Thin.ttf
Final\x20 13232 chrishocking  txt    REG                1,4      51884 8617365707 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Resources/Fonts/DDT-condensedsemibold.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     862496 8627864159 /Library/Graphics/Image Units/FxFactory Units.plugin/Contents/MacOS/FxFactory Units
Final\x20 13232 chrishocking  txt    REG                1,4    1768464 8627863942 /Library/Frameworks/FxCore.framework/Versions/A/FxCore
Final\x20 13232 chrishocking  txt    REG                1,4     255248 8626153469 /Library/Graphics/Image Units/ColorLut.plugin/Contents/MacOS/ColorLut
Final\x20 13232 chrishocking  txt    REG                1,4      34112 8626153456 /Library/Graphics/Image Units/CGR Color Filter.plugin/Contents/MacOS/CGR Color Filter
Final\x20 13232 chrishocking  txt    REG                1,4     145028 8626154215 /Library/Graphics/Image Units/C2 Image Units.plugin/Contents/MacOS/C2 Image Units
Final\x20 13232 chrishocking  txt    REG                1,4     428288 8624672005 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
Final\x20 13232 chrishocking  txt    REG                1,4     123712 8626154229 /Library/Graphics/Quartz Composer Patches/StructureTools.plugin/Contents/MacOS/StructureTools
Final\x20 13232 chrishocking  txt    REG                1,4     236352 8626154239 /Library/Graphics/Quartz Composer Patches/AudioTools.plugin/Contents/MacOS/AudioTools
Final\x20 13232 chrishocking  txt    REG                1,4     901228 8626154255 /Library/Graphics/Quartz Composer Patches/GLTools_NoAlphaBlend.plugin/Contents/MacOS/GLTools
Final\x20 13232 chrishocking  txt    REG                1,4     146900 8626154327 /Library/Graphics/Quartz Composer Patches/FileTools.plugin/Contents/MacOS/FileTools
Final\x20 13232 chrishocking  txt    REG                1,4     283072 8626980507 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/FxPlugProvider.fxp/Contents/MacOS/FxPlugProvider
Final\x20 13232 chrishocking  txt    REG                1,4    4910400 8626981936 /Applications/Final Cut Pro.app/Contents/PlugIns/InternalFiltersXPC.pluginkit/Contents/PlugIns/Filters.bundle/Contents/MacOS/Filters
Final\x20 13232 chrishocking  txt    REG                1,4    3759872 8626980887 /Applications/Final Cut Pro.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithium
Final\x20 13232 chrishocking  txt    REG                1,4     356192 8626981221 /Applications/Final Cut Pro.app/Contents/Frameworks/Stalgo.framework/Versions/A/Stalgo
Final\x20 13232 chrishocking  txt    REG                1,4     112656 8592595134 /Applications/Timecode.app/Contents/PlugIns/Timecode.pluginkit/Contents/PlugIns/Timecode.fxplug/Contents/MacOS/Timecode
Final\x20 13232 chrishocking  txt    REG                1,4    2725888 8627863999 /Library/Frameworks/FxFactory.framework/Versions/A/FxFactory
Final\x20 13232 chrishocking  txt    REG                1,4    2326608 8595656852 /Applications/Red Giant FxPlug3/Denoiser-III.app/Contents/PlugIns/Denoiser.pluginkit/Contents/PlugIns/Denoiser.fxplug/Contents/MacOS/Denoiser
Final\x20 13232 chrishocking  txt    REG                1,4    6503616 8626154372 /Applications/Coremelt/VTwinFx.app/Contents/PlugIns/VTwinFx.pluginkit/Contents/PlugIns/VTwinFx.fxplug/Contents/MacOS/VTwinFx
Final\x20 13232 chrishocking  txt    REG                1,4      69200 8609503817 /Applications/FxBrightnessApp.app/Contents/PlugIns/FxBrightnessXPC.pluginkit/Contents/PlugIns/FxBrightness.fxplug/Contents/MacOS/FxBrightness
Final\x20 13232 chrishocking  txt    REG                1,4      18240 8609503833 /Applications/FxBrightnessApp.app/Contents/PlugIns/FxBrightnessXPC.pluginkit/Contents/PlugIns/FxBrightness.fxplug/Contents/Frameworks/PlugInProtocols.framework/Versions/A/PlugInProtocols
Final\x20 13232 chrishocking  txt    REG                1,4     494544 8627864191 /Applications/FxFactory.app/Contents/PlugIns/FxFactory.pluginkit/Contents/PlugIns/FxFactory.fxplug/Contents/MacOS/FxFactory
Final\x20 13232 chrishocking  txt    REG                1,4    3064320 8615306663 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/MacOS/ColorFinale
Final\x20 13232 chrishocking  txt    REG                1,4      87744 8615306790 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libImath.dylib
Final\x20 13232 chrishocking  txt    REG                1,4     191440 8615306788 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIlmCtlMath.dylib
Final\x20 13232 chrishocking  txt    REG                1,4    1926112 8615306787 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIlmCtlSimd.dylib
Final\x20 13232 chrishocking  txt    REG                1,4      50416 8615306791 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIlmThread.dylib
Final\x20 13232 chrishocking  txt    REG                1,4      99392 8615306789 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIex.dylib
Final\x20 13232 chrishocking  txt    REG                1,4      24384 8615306792 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIexMath.dylib
Final\x20 13232 chrishocking  txt    REG                1,4    1006224 8615306783 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIlmCtl.dylib
Final\x20 13232 chrishocking  txt    REG                1,4     167200 8615306785 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIlmImfCtl.dylib
Final\x20 13232 chrishocking  txt    REG                1,4     293408 8615306786 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libHalf.dylib
Final\x20 13232 chrishocking  txt    REG                1,4     789984 8608657984 /Applications/Coremelt/Lock & Load for FCP X.app/Contents/PlugIns/LocknLoadXPC.pluginkit/Contents/PlugIns/LocknLoad.fxplug/Contents/MacOS/LocknLoad
Final\x20 13232 chrishocking  txt    REG                1,4      18480 8608658017 /Applications/Coremelt/Lock & Load for FCP X.app/Contents/PlugIns/LocknLoadXPC.pluginkit/Contents/PlugIns/LocknLoad.fxplug/Contents/Frameworks/LocknLoadProtocols.framework/Versions/A/LocknLoadProtocols
Final\x20 13232 chrishocking  txt    REG                1,4      60992 8626981903 /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/PAECIAdaptor.fxplug/Contents/MacOS/PAECIAdaptor
Final\x20 13232 chrishocking  txt    REG                1,4      80688 8626980495 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/AudioProvider.fxp/Contents/MacOS/AudioProvider
Final\x20 13232 chrishocking  txt    REG                1,4     429136 8626981317 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleDVCPROHDCodec.bundle/Contents/MacOS/AppleDVCPROHDCodec
Final\x20 13232 chrishocking  txt    REG                1,4     841440 8624704182 /usr/lib/dyld
Final\x20 13232 chrishocking  txt    REG                1,4    3546768 8615306784 /Applications/ColorFinale.app/Contents/PlugIns/ColorFinale.pluginkit/Contents/PlugIns/ColorFinale.fxplug/Contents/Frameworks/libIlmImf.dylib
Final\x20 13232 chrishocking  txt    REG                1,4    5165016 8608657959 /Library/Application Support/CoreMelt/Frameworks/PixlockCVL.framework/Versions/A/PixlockCVL
Final\x20 13232 chrishocking  txt    REG                1,4    1783024 8626981891 /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/FiltersLegacyPath.bundle/Contents/MacOS/FiltersLegacyPath
Final\x20 13232 chrishocking  txt    REG                1,4     200848 8626981307 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleAVCLGCodecEmbedded.bundle/Contents/MacOS/AppleAVCLGCodecEmbedded
Final\x20 13232 chrishocking  txt    REG                1,4    5395376 8617382925 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleAVCLGCodecEmbedded.bundle/Contents/Frameworks/mc_bc_dec_avc.framework/Versions/10/mc_bc_dec_avc
Final\x20 13232 chrishocking  txt    REG                1,4    7301792 8617382939 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleAVCLGCodecEmbedded.bundle/Contents/Frameworks/mc_enc_avc.framework/Versions/10/mc_enc_avc
Final\x20 13232 chrishocking  txt    REG                1,4    2168416 8626981357 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleProResCodecEmbedded.bundle/Contents/MacOS/AppleProResCodecEmbedded
Final\x20 13232 chrishocking  txt    REG                1,4     137952 8626981367 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleProResRAWCodec.bundle/Contents/MacOS/AppleProResRAWCodec
Final\x20 13232 chrishocking  txt    REG                1,4     244368 8626981327 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleIMXCodec.bundle/Contents/MacOS/AppleIMXCodec
Final\x20 13232 chrishocking  txt    REG                1,4    3523664 8626981297 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleAVCIntraCodec.bundle/Contents/MacOS/AppleAVCIntraCodec
Final\x20 13232 chrishocking  txt    REG                1,4     289120 8626981337 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleIntermediateCodec.bundle/Contents/MacOS/AppleIntermediateCodec
Final\x20 13232 chrishocking  txt    REG                1,4    1286432 8626981347 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleMPEG2Codec.bundle/Contents/MacOS/AppleMPEG2Codec
Final\x20 13232 chrishocking  txt    REG                1,4     121488 8626981377 /Applications/Final Cut Pro.app/Contents/PlugIns/Codecs/AppleUncompressedCodec.bundle/Contents/MacOS/AppleUncompressedCodec
Final\x20 13232 chrishocking  txt    REG                1,4     100448 8626981740 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/PlugIns/AppleCMQTAdapterCodec.bundle/Contents/MacOS/AppleCMQTAdapterCodec
Final\x20 13232 chrishocking  txt    REG                1,4    2328560 8626981405 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/AECore.framework/Versions/A/AECore
Final\x20 13232 chrishocking  txt    REG                1,4    3862992 8626981959 /Applications/Final Cut Pro.app/Contents/PlugIns/MediaProviders/MotionEffect.fxp/Contents/MacOS/MotionEffect
Final\x20 13232 chrishocking  txt    REG                1,4   18401968 8626980950 /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
Final\x20 13232 chrishocking  txt    REG                1,4     350752 8626981134 /Applications/Final Cut Pro.app/Contents/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
Final\x20 13232 chrishocking  txt    REG                1,4    8642848 8626981254 /Applications/Final Cut Pro.app/Contents/Frameworks/TextFramework.framework/Versions/A/TextFramework
Final\x20 13232 chrishocking  txt    REG                1,4     125088 8626981208 /Applications/Final Cut Pro.app/Contents/Frameworks/RetimingMath.framework/Versions/A/RetimingMath
Final\x20 13232 chrishocking  txt    REG                1,4    1048160 8626981162 /Applications/Final Cut Pro.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProMedia
Final\x20 13232 chrishocking  txt    REG                1,4    1330256 8626980945 /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
Final\x20 13232 chrishocking  txt    REG                1,4       8728 8613176553 /System/Library/Fonts/SFNSSymbols-Regular.otf
Final\x20 13232 chrishocking  txt    REG                1,4      23520 8626980368 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResourcesPlugInsShared
Final\x20 13232 chrishocking  txt    REG                1,4   19868848 8624650109 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
Final\x20 13232 chrishocking  txt    REG                1,4    4411240 8624658191 /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/SystemAppearance.car
Final\x20 13232 chrishocking  txt    REG                1,4    1849248 8624663724 /System/Library/Fonts/SFNSText.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    3507712 8624658177 /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/DarkAppearance.car
Final\x20 13232 chrishocking  txt    REG                1,4    2738616 8617370403 /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/Resources/NOX.car
Final\x20 13232 chrishocking  txt    REG                1,4     888913 8626980903 /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4    5425538 8590316570 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/Extras2.rsrc
Final\x20 13232 chrishocking  txt    REG                1,4     262144    2307721 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.FinalCut/com.apple.metal/libraries.data
Final\x20 13232 chrishocking  txt    REG                1,4     196608    2307724 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.FinalCut/com.apple.metal/Intel(R) HD Graphics 630/functions.data
Final\x20 13232 chrishocking  txt    REG                1,4     889636 8624674445 /System/Library/Keyboard Layouts/AppleKeyboardLayouts.bundle/Contents/Resources/AppleKeyboardLayouts-L.dat
Final\x20 13232 chrishocking  txt    REG                1,4     107968 8624714810 /System/Library/Caches/com.apple.IntlDataCache.le.kbdx
Final\x20 13232 chrishocking  txt    REG                1,4    2409449 8626982025 /Applications/Final Cut Pro.app/Contents/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4     542940 8617402212 /Applications/Final Cut Pro.app/Contents/Resources/LKSplash@2x.psd
Final\x20 13232 chrishocking  txt    REG                1,4     179789 8617402210 /Applications/Final Cut Pro.app/Contents/Resources/LKSplash.psd
Final\x20 13232 chrishocking  txt    REG                1,4      63984 8626981970 /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/Archive.RADPlug/Contents/MacOS/Archive
Final\x20 13232 chrishocking  txt    REG                1,4      75616 8626981697 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Qmaster
Final\x20 13232 chrishocking  txt    REG                1,4       3438 8617382810 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/Marquee.caar
Final\x20 13232 chrishocking  txt    REG                1,4     136064 8626982000 /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG4.RADPlug/Contents/MacOS/MPEG4
Final\x20 13232 chrishocking  txt    REG                1,4     130464 8626981980 /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
Final\x20 13232 chrishocking  txt    REG                1,4     214768 8626982020 /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/XDCAM.RADPlug/Contents/MacOS/XDCAM
Final\x20 13232 chrishocking  txt    REG                1,4      80176 8626981990 /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG2.RADPlug/Contents/MacOS/MPEG2
Final\x20 13232 chrishocking  txt    REG                1,4     227744 8626982010 /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/P2AVF.RADPlug/Contents/MacOS/P2AVF
Final\x20 13232 chrishocking  txt    REG                1,4    1585584 8626981438 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Compressor.framework/Versions/A/Frameworks/CompressorKit.framework/Versions/A/CompressorKit
Final\x20 13232 chrishocking  txt    REG                1,4     228816 8626981553 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/MediaServerAPI.framework/Versions/A/MediaServerAPI
Final\x20 13232 chrishocking  txt    REG                1,4     171936 8626981493 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framework/Versions/A/StompUtil
Final\x20 13232 chrishocking  txt    REG                1,4     244128 8626981695 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework/Versions/A/SwampUtil
Final\x20 13232 chrishocking  txt    REG                1,4     223328 8626981662 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framework/Versions/A/SwampService
Final\x20 13232 chrishocking  txt    REG                1,4     243376 8626981640 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Versions/A/Status
Final\x20 13232 chrishocking  txt    REG                1,4     245216 8626981615 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.framework/Versions/A/RequestProcessing
Final\x20 13232 chrishocking  txt    REG                1,4     210376 8624658181 /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/FunctionRowAppearance.car
Final\x20 13232 chrishocking  txt    REG                1,4    3004496 8626980961 /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Behaviors.ozp/Contents/MacOS/Behaviors
Final\x20 13232 chrishocking  txt    REG                1,4    8284304 8626980335 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
Final\x20 13232 chrishocking  txt    REG                1,4      36912 8626980346 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
Final\x20 13232 chrishocking  txt    REG                1,4    3195248 8626980379 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
Final\x20 13232 chrishocking  txt    REG                1,4     167904 8626980390 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHighLevel
Final\x20 13232 chrishocking  txt    REG                1,4    1500816 8626980289 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MACore.framework/Versions/A/MACore
Final\x20 13232 chrishocking  txt    REG                1,4    6804176 8626980302 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
Final\x20 13232 chrishocking  txt    REG                1,4      21908 8617382770 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/DropZone_Video.caar
Final\x20 13232 chrishocking  txt    REG                1,4      58088 8590293836 /System/Library/Fonts/Keyboard.ttf
Final\x20 13232 chrishocking  txt    REG                1,4    4800256 8624650220 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
Final\x20 13232 chrishocking  txt    REG                1,4     144580 8590316659 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/HIToolbox.rsrc
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8592192721 /Library/Caches/com.apple.iconservices.store/C6DB579A-3609-149B-4D34-2BDE00FA7016.isdata
Final\x20 13232 chrishocking  txt    REG                1,4    1177472 8626980313 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
Final\x20 13232 chrishocking  txt    REG                1,4    1565680 8626980401 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAVectorUIKit.framework/Versions/A/MAVectorUIKit
Final\x20 13232 chrishocking  txt    REG                1,4    1294528 8626980324 /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundle/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
Final\x20 13232 chrishocking  txt    REG                1,4    2040336 8624664217 /System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4    3551200 8613146950 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/iLMBiPhoto9Plugin
Final\x20 13232 chrishocking  txt    REG                1,4    4325328 8613146715 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin2012.ilmbplugin/Contents/MacOS/iLMBAperturePlugin2012
Final\x20 13232 chrishocking  txt    REG                1,4    4335280 8613146988 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin2012.ilmbplugin/Contents/MacOS/iLMBiPhotoPlugin2012
Final\x20 13232 chrishocking  txt    REG                1,4    3523792 8613146677 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/MacOS/iLMBAperture31Plugin
Final\x20 13232 chrishocking  txt    REG                1,4     152720 8613146909 /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/iLMBiMoviePlugin
Final\x20 13232 chrishocking  txt    REG                1,4   25718224 8590676331 /usr/share/langid/langid.inv
Final\x20 13232 chrishocking  txt    REG                1,4     433536 8613218596 /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/Resources/tokruleLE.data
Final\x20 13232 chrishocking  txt    REG                1,4    1412804 8624663722 /System/Library/Fonts/SFNSDisplay.ttf
Final\x20 13232 chrishocking  txt    REG                1,4     112968 8617370415 /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/Resources/NOXRevealed.car
Final\x20 13232 chrishocking  txt    REG                1,4      81684 8626981150 /Applications/Final Cut Pro.app/Contents/Frameworks/ProInspector.framework/Versions/A/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4     194734 8626981230 /Applications/Final Cut Pro.app/Contents/Frameworks/StudioSharedResources.framework/Versions/A/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4       1928 8617382808 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/MainPlayheadRulerFrameIndicator.caar
Final\x20 13232 chrishocking  txt    REG                1,4       1271 8617382872 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/SkimmingPlayheadFrameIndicator.caar
Final\x20 13232 chrishocking  txt    REG                1,4    7916548 8590294077 /System/Library/Fonts/ヒラギノ角ゴシック W3.ttc
Final\x20 13232 chrishocking  txt    REG                1,4     242950 8626981276 /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4    2319952 8590293826 /System/Library/Fonts/Helvetica.ttc
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8591933777 /Library/Caches/com.apple.iconservices.store/94984795-3A79-21B5-A6FE-C3FF1A94C9FD.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590719801 /Library/Caches/com.apple.iconservices.store/767C5B6D-5F1E-CA59-6142-2BE1946E1383.isdata
Final\x20 13232 chrishocking  txt    REG                1,4     105216 8626981542 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/H264Encoder.framework/Versions/A/H264Encoder
Final\x20 13232 chrishocking  txt    REG                1,4    3883360 8626981480 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framework/Versions/A/StompUI
Final\x20 13232 chrishocking  txt    REG                1,4    4575440 8626981467 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Compressor.framework/Versions/A/Frameworks/StompTypes.framework/Versions/A/StompTypes
Final\x20 13232 chrishocking  txt    REG                1,4    1055232 8626981651 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework/Versions/A/SwampCore
Final\x20 13232 chrishocking  txt    REG                1,4    3883824 8626981673 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampTypes.framework/Versions/A/SwampTypes
Final\x20 13232 chrishocking  txt    REG                1,4    1418480 8626981593 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects.framework/Versions/A/DistributedObjects
Final\x20 13232 chrishocking  txt    REG                1,4     373904 8626981629 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.framework/Versions/A/ServiceControl
Final\x20 13232 chrishocking  txt    REG                1,4    1280960 8626981582 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/ContentControl.framework/Versions/A/ContentControl
Final\x20 13232 chrishocking  txt    REG                1,4    2451408 8626981604 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/JobControl.framework/Versions/A/JobControl
Final\x20 13232 chrishocking  txt    REG                1,4     204480 8626981571 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.framework/Versions/A/ClusterManager
Final\x20 13232 chrishocking  txt    REG                1,4     368272 8626981684 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/Versions/A/SwampUI
Final\x20 13232 chrishocking  txt    REG                1,4     516272 8626981451 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Compressor.framework/Versions/A/Frameworks/ImageProcessing.framework/Versions/A/ImageProcessing
Final\x20 13232 chrishocking  txt    REG                1,4    4855232 8626981504 /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Compressor.framework/Versions/A/Frameworks/Transcoding.framework/Versions/A/Transcoding
Final\x20 13232 chrishocking  txt    REG                1,4     259044 8590522106 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/Resources/com.apple.datadetectorscore.cache.urlifier.system
Final\x20 13232 chrishocking  txt    REG                1,4     217704 8624687734 /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/Resources/Assets.car
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8592020694 /Library/Caches/com.apple.iconservices.store/9DD6EAF9-C80E-FBBE-D8E5-0D3C1359ECFD.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718633 /Library/Caches/com.apple.iconservices.store/619826BB-2849-1953-369B-CB15FF0F65FF.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8591838629 /Library/Caches/com.apple.iconservices.store/8DF4DF3D-3C63-8D4C-FA41-E3C03C7C30A1.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8592861227 /Library/Caches/com.apple.iconservices.store/B156C406-3B3D-D4AA-B51B-24E5D4269AF1.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8590718652 /Library/Caches/com.apple.iconservices.store/F206CDC4-BA3A-B47F-D460-E973FE81C5E9.isdata
Final\x20 13232 chrishocking  txt    REG                1,4      58048 8626980860 /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Plug-ins/HCache.bundle/Contents/MacOS/HCache
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8591654924 /Library/Caches/com.apple.iconservices.store/6491B397-766A-5BF6-52BC-4B244D8C3DD9.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8591654930 /Library/Caches/com.apple.iconservices.store/29AF939A-AFAC-D973-7EFA-425CAEBA2A77.isdata
Final\x20 13232 chrishocking  txt    REG                1,4     490410 8590316548 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/English.lproj/Localized.rsrc
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718636 /Library/Caches/com.apple.iconservices.store/60F8355F-C29A-BA22-1F55-77DCABB26DD6.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718677 /Library/Caches/com.apple.iconservices.store/7B414DA5-DB12-B810-F7D9-889473F21E75.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718638 /Library/Caches/com.apple.iconservices.store/96A21CD7-94B1-7CB9-9CA9-ADB4D01CE400.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590719804 /Library/Caches/com.apple.iconservices.store/AA4996BA-9CFD-BF16-4907-83E4A791CC64.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718639 /Library/Caches/com.apple.iconservices.store/68507B26-57E0-5F9A-3197-EF0B83E2A6D1.isdata
Final\x20 13232 chrishocking  txt    REG                1,4     320704 8624669256 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/iOSScreenCapture.plugin/Contents/MacOS/iOSScreenCapture
Final\x20 13232 chrishocking  txt    REG                1,4      59696 8624687559 /System/Library/PrivateFrameworks/FileProvider.framework/OverrideBundles/CloudDocsFileProvider.bundle/Contents/MacOS/CloudDocsFileProvider
Final\x20 13232 chrishocking  txt    REG                1,4      84832 8624659752 /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
Final\x20 13232 chrishocking  txt    REG                1,4      34336 8624687571 /System/Library/PrivateFrameworks/FileProvider.framework/OverrideBundles/FileProviderOverride.bundle/Contents/MacOS/FileProviderOverride
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8608441676 /Library/Caches/com.apple.iconservices.store/2097D314-23BB-466D-DFA6-71657D86C430.isdata
Final\x20 13232 chrishocking  txt    REG                1,4     643664 8626981867 /Applications/Final Cut Pro.app/Contents/PlugIns/DAL/ACD.plugin/Contents/MacOS/ACD
Final\x20 13232 chrishocking  txt    REG                1,4     414480 8624669241 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/VDC.plugin/Contents/MacOS/VDC
Final\x20 13232 chrishocking  txt    REG                1,4     208921 8617370421 /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/Resources/NOXViewer.car
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8590718656 /Library/Caches/com.apple.iconservices.store/E2C573DD-CD2D-4344-1D8A-09C65AD124CC.isdata
Final\x20 13232 chrishocking  txt    REG                1,4    2421960 8590294056 /System/Library/Fonts/Thonburi.ttc
Final\x20 13232 chrishocking  txt    REG                1,4      74976 8624687583 /System/Library/PrivateFrameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride
Final\x20 13232 chrishocking  txt    REG                1,4    1394198 8617401801 /Applications/Final Cut Pro.app/Contents/Resources/Final Cut.icns
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718641 /Library/Caches/com.apple.iconservices.store/C23A1170-4033-CD73-0264-04EB19DEDCD9.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8592653366 /Library/Caches/com.apple.iconservices.store/DDA40819-2359-5451-DE9C-3DC3F6306467.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8593094136 /Library/Caches/com.apple.iconservices.store/D31C3E54-2472-3D44-E6D0-0C9A1882A0C0.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8623278364 /Library/Caches/com.apple.iconservices.store/45F1D445-2FAA-5BB6-793B-DDAB7447C670.isdata
Final\x20 13232 chrishocking  txt    REG                1,4      31729 8626088420 /Users/chrishocking/Library/Application Support/CloudDocs/session/containers/com.apple.Preview.plist
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8590718658 /Library/Caches/com.apple.iconservices.store/A153BB67-2756-76C7-DB3B-471C9DC5F93F.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718664 /Library/Caches/com.apple.iconservices.store/77F696D9-6F4E-1907-E1B7-C9CB0B6B826A.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718635 /Library/Caches/com.apple.iconservices.store/2492B86D-11A9-070B-733F-4401C01D7820.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590719802 /Library/Caches/com.apple.iconservices.store/14A025F4-24E5-1AAD-723F-8C94AA48EFB3.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8590718673 /Library/Caches/com.apple.iconservices.store/05039F63-AD84-ADF9-7449-D563B8297728.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       5204 8592034100 /Library/Caches/com.apple.iconservices.store/F537D13A-1A83-0777-3812-0745137912FA.isdata
Final\x20 13232 chrishocking  txt    REG                1,4    7929856 8624984179 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.iconservices/store.index
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8590721020 /Library/Caches/com.apple.iconservices.store/5DE590CC-C015-B3D2-1256-412DFC417B81.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8623259979 /Library/Caches/com.apple.iconservices.store/4CD30CFE-2634-936E-AA11-6424DEEBE80D.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8592862879 /Library/Caches/com.apple.iconservices.store/746B9450-6F74-6C49-E57F-0E78F3B9A880.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8591654925 /Library/Caches/com.apple.iconservices.store/2589F5E5-8AE7-BBE6-EBDE-15E106D40E0C.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8624720400 /Library/Caches/com.apple.iconservices.store/89D32F7D-F8FA-7BE3-0CE3-410C88112A19.isdata
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8592045147 /Library/Caches/com.apple.iconservices.store/CB863D53-0AB3-721A-F398-292E38776724.isdata
Final\x20 13232 chrishocking  txt    REG                1,4     340912 8617370413 /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/Resources/NOXInspector.car
Final\x20 13232 chrishocking  txt    REG                1,4       4116 8613913800 /Library/Caches/com.apple.iconservices.store/F7F4544F-E317-D536-8AB7-A25647F6DCC4.isdata
Final\x20 13232 chrishocking  txt    REG                1,4      52952 8590435194 /System/Library/LinguisticData/Latn/Dict2.dat
Final\x20 13232 chrishocking  txt    REG                1,4      47240 8624664282 /System/Library/Frameworks/AppKit.framework/Versions/C/Resources/NSTouchBarReducedMetricsAppearance.car
Final\x20 13232 chrishocking  txt    REG                1,4     219720 8590435193 /System/Library/LinguisticData/Latn/Dict1.dat
Final\x20 13232 chrishocking  txt    REG                1,4    5018101 8590674933 /usr/share/germantok/german.index
Final\x20 13232 chrishocking  txt    REG                1,4 1170329600 8625316517 /private/var/db/dyld/dyld_shared_cache_x86_64h
Final\x20 13232 chrishocking    0r   CHR                3,2        0t0        311 /dev/null
Final\x20 13232 chrishocking    1u   CHR                3,2        0t0        311 /dev/null
Final\x20 13232 chrishocking    2u   CHR                3,2     0t2761        311 /dev/null
Final\x20 13232 chrishocking    3r   REG                1,4     273256 8628170031 /Library/Application Support/CrashReporter/SubmitDiagInfo.domains
Final\x20 13232 chrishocking    4r   REG                1,4     385717 8624669058 /System/Library/Frameworks/CoreImage.framework/Versions/A/Resources/ci_kernels.metallib
Final\x20 13232 chrishocking    5u   REG                1,4       3072    2307720 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.FinalCut/com.apple.metal/libraries.maps
Final\x20 13232 chrishocking    6u   REG                1,4     262144    2307721 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.FinalCut/com.apple.metal/libraries.data
Final\x20 13232 chrishocking    7u   REG                1,4       3072    2307723 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.FinalCut/com.apple.metal/Intel(R) HD Graphics 630/functions.maps
Final\x20 13232 chrishocking    8u   REG                1,4     196608    2307724 /private/var/folders/tp/p7td6g9x28d425wct7ryyr_40000gn/C/com.apple.FinalCut/com.apple.metal/Intel(R) HD Graphics 630/functions.data
Final\x20 13232 chrishocking    9r   REG                1,4          0 8625383983 /Users/chrishocking/Movies/Untitled.fcpbundle/.lock
Final\x20 13232 chrishocking   10u   REG                1,4      98304 8625383988 /Users/chrishocking/Movies/Untitled.fcpbundle/CurrentVersion.flexolibrary
Final\x20 13232 chrishocking   11u   REG                1,4      94208 8625383997 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/CurrentVersion.fcpevent
Final\x20 13232 chrishocking   12u  unix 0x96487f40a546ae0f        0t0            ->0x96487f40a546a95f
Final\x20 13232 chrishocking   13u   REG                1,4     102400 8628116938 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Untitled Project/CurrentVersion.fcpevent
Final\x20 13232 chrishocking   14u  unix 0x96487f40a546b517        0t0            ->0x96487f408d6fb837
Final\x20 13232 chrishocking   15   PIPE 0x96487f4098ce80ef      16384            ->0x96487f4098ce802f
Final\x20 13232 chrishocking   16   PIPE 0x96487f4098ce826f      16384            ->0x96487f4098ce5aaf
Final\x20 13232 chrishocking   17u   REG                1,4       1040 8628358433 /Users/chrishocking/Library/Saved Application State/com.apple.FinalCut.savedState/data.data
Final\x20 13232 chrishocking   18w   REG                1,4        489 8628358434 /Users/chrishocking/Library/Saved Application State/com.apple.FinalCut.savedState/windows.plist
Final\x20 13232 chrishocking   19u   REG                1,4      18528 8628358435 /Users/chrishocking/Library/Saved Application State/com.apple.FinalCut.savedState/window_2.data
Final\x20 13232 chrishocking   20r   REG                1,4     144580 8590316659 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/HIToolbox.rsrc
Final\x20 13232 chrishocking   21r   REG                1,4     490410 8590316548 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/English.lproj/Localized.rsrc
Final\x20 13232 chrishocking   22u   REG                1,4      29248 8628358843 /Users/chrishocking/Library/Caches/com.apple.FinalCut/Effect Browser Thumbnails/058AB3A54D01013689B6E20B56718FC3/Frame 0 - 1023
Final\x20 13232 chrishocking   23u   REG                1,4      26288 8628358846 /Users/chrishocking/Library/Caches/com.apple.FinalCut/Effect Browser Thumbnails/07A8193A20C8E4D5405C537460DFFF48/Frame 0 - 1023
Final\x20 13232 chrishocking   24u   REG                1,4      43632 8628358855 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/Thumbnail Media/B7243D1F68C6EC3ECEDCA5B95A61B153/Frame 89088 - 90111
Final\x20 13232 chrishocking   25u   REG                1,4     117472 8628358856 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/Thumbnail Media/B7243D1F68C6EC3ECEDCA5B95A61B153/Frame 90112 - 91135
Final\x20 13232 chrishocking   26u   REG                1,4     138528 8628358858 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/Thumbnail Media/B7243D1F68C6EC3ECEDCA5B95A61B153/Frame 91136 - 92159
Final\x20 13232 chrishocking   27u   REG                1,4      63392 8628358862 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/Thumbnail Media/B7243D1F68C6EC3ECEDCA5B95A61B153/Frame 92160 - 93183
Final\x20 13232 chrishocking   28u   REG                1,4  385778944 8628358881 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/High Quality Media/7805A27B5D62DA231677630FD204BF6B/Frame 90112 - 91135
Final\x20 13232 chrishocking   29u   REG                1,4   43213520 8628358871 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/High Quality Media/7805A27B5D62DA231677630FD204BF6B/Frame 89088 - 90111
Final\x20 13232 chrishocking   30u   REG                1,4     160144 8628358889 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/Thumbnail Media/0968C4BEA5B273C9CED8B0EA0A52D2FE/Frame 91136 - 92159
Final\x20 13232 chrishocking   31u   REG                1,4  392195184 8628358921 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/High Quality Media/7805A27B5D62DA231677630FD204BF6B/Frame 91136 - 92159
Final\x20 13232 chrishocking   32u   REG                1,4  133429120 8628358961 /Users/chrishocking/Movies/Untitled.fcpbundle/12-6-18/Render Files/High Quality Media/7805A27B5D62DA231677630FD204BF6B/Frame 92160 - 93183
latenitefilms commented 6 years ago

It looks like this will do the job:

lsof -n -p 13232 | grep -E '\.ttf$|\.otf$|\.ttc$'

Thanks heaps @cmsj !