How to parse a data dump

Home Forums General Using Ctrlr How to parse a data dump

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #395
    Anonymous
      • Topics: 3
      • Replies: 15
      • Total: 18

      Hello. I’m a new Ctrlr user, but not new to programming… I want to create panels for the E-Mu Morpheus, and the Yamaha AN1x. :mrgreen:

      I have an issue with the Morpheus, and I hope someone can point me in the right direction. The Morpheus has 197 filter types. Unfortunately, their ID numbers are not sequential, nor contiguous. The way to retrieve the filter numbers is to issue a SysEx command, then the Morpheus dumps this data out:

      =========================
      F0 — SysEx StatusByte
      18 — E-mu Mfg. ID
      0C — Morpheus Product ID
      dd — Device ID 0-15
      57 — Command ID
      nl — lsb Number of Filters
      nm — msb Number of Filters
      il — lsb Filter Number
      im — msb Filter Number
      nn — Filter Name
      … — 11 ASCII chars per instrument
      00 — String Null Terminator
      tl — lsb of Transform Number
      tm — msb of Transform Number
      … — for number of filters
      F7 — End of SysEx Status
      =========================

      So, my questions are…

      1). What’s the best way to handle this in the UI? Can the panel start this process automatically on launch, or do I need to manually click a button?
      2). How do I listen for, and parse, the results? Where would I write this code/script?
      3). Can I retain the filter IDs & names in memory? Can I display the active filter name in the panel?

      Thanks!

      #3058
      atom
      Keymaster
        • Topics: 159
        • Replies: 2945
        • Total: 3104
        • ★★★★★

        1) first attach your method to a button for testing, program handling will be handled later by the program manager and the same methods will be used for that i just am working on it, so for now the best way is to attach a method to a button and do it by hand
        2) to listen for incoming midi messages use the panel property for that all midi data will be passed through that
        3) you can set a custom property for any modulator/component/panel and they will be saved and can be later recalled

        #3059
        Anonymous
          • Topics: 3
          • Replies: 15
          • Total: 18
          "atom":1tood3dl wrote:
          1) first attach your method to a button for testing, program handling will be handled later by the program manager and the same methods will be used for that i just am working on it, so for now the best way is to attach a method to a button and do it by hand
          2) to listen for incoming midi messages use the panel property for that all midi data will be passed through that
          3) you can set a custom property for any modulator/component/panel and they will be saved and can be later recalled[/quote:1tood3dl]

          Thanks, Atom! It took a few hours, but [i:1tood3dl]it works[/i:1tood3dl]! I’m happy. I can turn the uiFixedModulator, and it displays the filter name, and changes the filter on the Morpheus. This is amazing.

          I’ll paste the code in here, hopefully this will help someone else… There aren’t many code examples online right now, I had to dig through the source to figure some things out. Also, are bitwise operations supported? I rolled some bitwise functions of my own. (I’m not sure how these functions are scoped, yet.)

          [code:1tood3dl]
          function lshift( i, bits )
          return i * math.pow(2,bits)
          end

          function rshift( i, bits )
          return math.floor( i / math.pow(2,bits) )
          end

          function val7( inData, pos )
          byte = inData:getByte(pos)
          return byte % 128
          end

          function val14( inData, pos )
          lsb = inData:getByte(pos)
          msb = inData:getByte(pos+1)
          return lshift( (msb%128), 7 ) + lsb%128
          end

          function handleMidi ( message )
          console("I saw some MIDI")
          data = message:getLuaData()
          dataSet = ""

          — Filter list data?
          dataSet = "filter"
          filterHead = {0xF0, 0x18, 0x0C, 0x00, 0x57}

          for i=0, table.getn(filterHead)-1 do
          — Lua arrays count from 1 :P
          if filterHead[i+1] ~= data:getByte(i) then
          dataSet = ""
          break
          end
          end


          — FILTER DATA RECEIVED


          if dataSet=="filter" then
          filterCount = val14( data, 5 )
          allFilters = {}
          console( string.format("Parsing data for %i filters...", filterCount ) )

          for f=0, filterCount-1 do
          filter = {}
          filter["id"] = val14( data, 7 + f*16 );

          — Build the name string
          name = ""
          for c=0, 11 do
          name = name .. string.format("%c", data:getByte( 7 + f*16 + 2+c ))
          end
          filter["name"] = name

          — Filter "transform number".
          — This number indicates which filter modulators are supported.
          — This value is a 14-bit word, for some reason.

          — 0: 2 frame filter (Morph)
          — 1: 4 frame "square" filter (Morph, Freq Track)
          — 2: 6 frame "phantom cube" (Morph, Freq Track, Transform 2)
          — 3: 8 frame "cube" (Morph, Freq Track, Transform 2)
          — 4: unused
          — 5: 4 frame "square", gain– (Morph, Freq Track)

          filter["type"] = val14( data, 7 + f*16 + 14 )

          –console( string.format("Filter info: %i – %i ... %s", filter["id"], filter["type"], filter["name"] ))
          table.insert( allFilters, filter )
          end

          — Build a huge string that will be sent to the filter type modulators’ "slider contents"
          contents = ""
          for f=1, table.getn(allFilters) do
          filter = allFilters[f]
          contents = contents .. string.format("%0.3i %s=%in", f-1, filter["name"], filter["id"])
          end

          console( contents )

          — Update the UI elements
          mod1 = panel:getModulatorByName("filterType1")
          if( mod1 ~= nil ) then
          mod1:getComponent():setPropertyString( "uiFixedSliderContent", contents )
          else
          console( "** No mod1 found." )
          end

          end

          end
          [/code:1tood3dl]

          console( contents ) prints a long list like this:

          [code:1tood3dl]
          . . .
          025 AUParaVow.4=190
          026 UOParaVow.4=191
          027 SftEOVowel4=192
          028 SoftEOAE =205
          029 Vocal Cube =193
          030 C1-6 Harms4=194
          031 Voce.4 =196
          032 ChoralComb4=197
          . . .
          [/code:1tood3dl]

          #3060
          Anonymous
            • Topics: 3
            • Replies: 15
            • Total: 18

            Wow, I’m glad I copy-pasted that code, because… Ctrlr started crashing on launch. I deleted the Preferences/Ctrlr folder, then re-opened my Morpheus.panel, only to discover that my Lua code [i:26wnjv66]did not get saved[/i:26wnjv66], somehow.

            I must have clicked the Save button (on top of the Ctrlr window) a hundred times or more. (Also the disk icon in the LUA Method Editor window.) What’s going on here? Why wasn’t my code saved?

            #3061
            atom
            Keymaster
              • Topics: 159
              • Replies: 2945
              • Total: 3104
              • ★★★★★

              did you save it in the method editor ? there are two subsystems the LUA code witch you edit in the Method Editor window and you need to save it so that it gets recompiled, and the panel itself. But if something crashes there is no saying what’s going on, can you tell me what happened exactly ?

              #3057
              Anonymous
                • Topics: 3
                • Replies: 15
                • Total: 18
                "atom":1kg79hhi wrote:
                did you save it in the method editor ? there are two subsystems the LUA code witch you edit in the Method Editor window and you need to save it so that it gets recompiled, and the panel itself. But if something crashes there is no saying what’s going on, can you tell me what happened exactly ?[/quote:1kg79hhi]

                Thanks Atom! I finally figured it out… I don’t understand why it’s set up this way, but I have to click "Save" in the LUA code page, [i:1kg79hhi]then[/i:1kg79hhi] click "Save" on the bottom bar. (This is a different "Save" from the top bar, which apparently saves my workspace…? It would be great to re-name the three "Save" buttons some day, maybe "Save Code", "Save Panel", "Save Workspace" <img decoding=” title=”Wink” /> )

                I’m not sure why Ctrlr started crashing. I believe there was a bug in my code, and it was trying to send MIDI to the Morpheus on launch? If it happens again, I’ll send you the crash log. Sorry I didn’t save it.

                #3062
                atom
                Keymaster
                  • Topics: 159
                  • Replies: 2945
                  • Total: 3104
                  • ★★★★★

                  yeah maybe i’ll try to rename those saves.

                  #3063
                  Anonymous
                    • Topics: 3
                    • Replies: 15
                    • Total: 18

                    I reproduced my crash-on-launch bug!

                    [code:11s0193p]
                    mod = panel:getModulatorByName("fg1Level1")
                    mod:getComponent():setPropertyString( "uiFixedSliderContent", fgLevel )
                    [/code:11s0193p]

                    fgLevel is a string containing 1024 possible values. However, I forgot to add "n" newline characters, so the uiSlider’s property string was set to an enormous string, with no line breaks.

                    After fixing the newline issue, and running the code again, the uiFixedSliderContent doesn’t change. (Because the crash is on its way.) After 1 or 2 more attempts, Ctrlr crashes, and corrupts the Ctrlr.settings file.

                    Here’s the OS X crash log:

                    [code:11s0193p]
                    Process: Ctrlr [448]
                    Path: /Applications/Ctrlr.app/Contents/MacOS/Ctrlr
                    Identifier: com.Instigator.Ctrlr
                    Version: 5.0.0 (5.0.0)
                    Code Type: X86 (Native)
                    Parent Process: launchd [204]

                    Date/Time: 2011-08-02 15:50:40.074 -0700
                    OS Version: Mac OS X 10.6.8 (10K540)
                    Report Version: 6

                    Interval Since Last Report: 599473 sec
                    Crashes Since Last Report: 6
                    Per-App Interval Since Last Report: 45092 sec
                    Per-App Crashes Since Last Report: 6
                    Anonymous UUID: 7EED2D73-A558-4A35-8384-6BE0F645AAF1

                    Exception Type: EXC_BAD_ACCESS (SIGBUS)
                    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000000000b0
                    Crashed Thread: 0 Juce Message Thread Dispatch queue: com.apple.main-thread

                    Thread 0 Crashed: Juce Message Thread Dispatch queue: com.apple.main-thread
                    0 com.Instigator.Ctrlr 0x006b9e80 juce::Label::hideEditor(bool) + 16
                    1 com.Instigator.Ctrlr 0x006ba1ac juce::Label::setText(juce::String const&, bool) + 44
                    2 com.Instigator.Ctrlr 0x00414006 CtrlrSysExPropertyComponent::buttonClicked(juce::Button*) + 454
                    3 com.Instigator.Ctrlr 0x006fac11 juce::Button::sendClickMessage(juce::ModifierKeys const&) + 145
                    4 com.Instigator.Ctrlr 0x006f68ec juce::Component::internalMouseUp(juce::MouseInputSource&, juce::Point<int> const&, juce::Time const&, juce::ModifierKeys const&) + 972
                    5 com.Instigator.Ctrlr 0x0072b2fb juce::MouseInputSource::handleEvent(juce::ComponentPeer*, juce::Point<int> const&, long long, juce::ModifierKeys const&) + 763
                    6 com.Instigator.Ctrlr 0x007a6707 juce::NSViewComponentPeer::sendMouseEvent(NSEvent*) + 311
                    7 com.Instigator.Ctrlr 0x007a67f2 juce::NSViewComponentPeer::redirectMouseUp(NSEvent*) + 114
                    8 com.apple.Foundation 0x95a61711 __NSThreadPerformPerform + 506
                    9 com.apple.CoreFoundation 0x99bdd45b __CFRunLoopDoSources0 + 1563
                    10 com.apple.CoreFoundation 0x99bdaf1f __CFRunLoopRun + 1071
                    11 com.apple.CoreFoundation 0x99bda3f4 CFRunLoopRunSpecific + 452
                    12 com.apple.CoreFoundation 0x99bda221 CFRunLoopRunInMode + 97
                    13 com.apple.HIToolbox 0x948e7e04 RunCurrentEventLoopInMode + 392
                    14 com.apple.HIToolbox 0x948e7af5 ReceiveNextEventCommon + 158
                    15 com.apple.HIToolbox 0x948e7a3e BlockUntilNextEventMatchingListInMode + 81
                    16 com.apple.AppKit 0x92ba3595 _DPSNextEvent + 847
                    17 com.apple.AppKit 0x92ba2dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
                    18 com.apple.AppKit 0x92b651f3 -[NSApplication run] + 821
                    19 com.Instigator.Ctrlr 0x007af323 juce::MessageManager::runDispatchLoop() + 99
                    20 com.Instigator.Ctrlr 0x005c1947 juce::JUCEApplication::main(juce::String const&) + 135
                    21 com.Instigator.Ctrlr 0x005c1a7d juce::JUCEApplication::main(int, char const**) + 109
                    22 com.Instigator.Ctrlr 0x00349d09 start + 53

                    Thread 1: Dispatch queue: com.apple.libdispatch-manager
                    0 libSystem.B.dylib 0x9100c382 kevent + 10
                    1 libSystem.B.dylib 0x9100ca9c _dispatch_mgr_invoke + 215
                    2 libSystem.B.dylib 0x9100bf59 _dispatch_queue_invoke + 163
                    3 libSystem.B.dylib 0x9100bcfe _dispatch_worker_thread2 + 240
                    4 libSystem.B.dylib 0x9100b781 _pthread_wqthread + 390
                    5 libSystem.B.dylib 0x9100b5c6 start_wqthread + 30

                    Thread 2:
                    0 libSystem.B.dylib 0x90fe5afa mach_msg_trap + 10
                    1 libSystem.B.dylib 0x90fe6267 mach_msg + 68
                    2 com.apple.audio.midi.CoreMIDI 0x00d3e0c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
                    3 com.apple.audio.midi.CoreMIDI 0x00d5c97a MIDIProcess::RunMIDIInThread() + 150
                    4 com.apple.audio.midi.CoreMIDI 0x00d3f2d9 XThread::RunHelper(void*) + 17
                    5 com.apple.audio.midi.CoreMIDI 0x00d3eca6 CAPThread::Entry(CAPThread*) + 96
                    6 libSystem.B.dylib 0x91013259 _pthread_start + 345
                    7 libSystem.B.dylib 0x910130de thread_start + 34

                    Thread 3: midi out
                    0 libSystem.B.dylib 0x91013aa2 __semwait_signal + 10
                    1 libSystem.B.dylib 0x9101375e _pthread_cond_wait + 1191
                    2 libSystem.B.dylib 0x910132b1 pthread_cond_timedwait$UNIX2003 + 72
                    3 com.Instigator.Ctrlr 0x007a44f0 juce::WaitableEvent::wait(int) const + 144
                    4 com.Instigator.Ctrlr 0x004daffb juce::Thread::wait(int) const + 27
                    5 com.Instigator.Ctrlr 0x00597750 juce::MidiOutput::run() + 144
                    6 com.Instigator.Ctrlr 0x00508d83 juce::Thread::threadEntryPoint() + 259
                    7 com.Instigator.Ctrlr 0x007af39d juce::threadEntryProc(void*) + 61
                    8 libSystem.B.dylib 0x91013259 _pthread_start + 345
                    9 libSystem.B.dylib 0x910130de thread_start + 34

                    Thread 4: Juce Timer
                    0 libSystem.B.dylib 0x91013aa2 __semwait_signal + 10
                    1 libSystem.B.dylib 0x9101375e _pthread_cond_wait + 1191
                    2 libSystem.B.dylib 0x910132b1 pthread_cond_timedwait$UNIX2003 + 72
                    3 com.Instigator.Ctrlr 0x007a44f0 juce::WaitableEvent::wait(int) const + 144
                    4 com.Instigator.Ctrlr 0x004daffb juce::Thread::wait(int) const + 27
                    5 com.Instigator.Ctrlr 0x0066825d juce::InternalTimerThread::run() + 253
                    6 com.Instigator.Ctrlr 0x00508d83 juce::Thread::threadEntryPoint() + 259
                    7 com.Instigator.Ctrlr 0x007af39d juce::threadEntryProc(void*) + 61
                    8 libSystem.B.dylib 0x91013259 _pthread_start + 345
                    9 libSystem.B.dylib 0x910130de thread_start + 34

                    Thread 0 crashed with X86 Thread State (32-bit):
                    eax: 0x00000000 ebx: 0x00000000 ecx: 0x009acc08 edx: 0x00e43330
                    edi: 0xbfffe474 esi: 0x00000001 ebp: 0xbfffe2e8 esp: 0xbfffe290
                    ss: 0x0000001f efl: 0x00010286 eip: 0x006b9e80 cs: 0x00000017
                    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
                    cr2: 0x000000b0

                    Binary Images:
                    0x1000 – 0x99dfef +com.Instigator.Ctrlr 5.0.0 (5.0.0) <4E876CBA-699A-BE8C-3101-A4EA144C2E24> /Applications/Ctrlr.app/Contents/MacOS/Ctrlr
                    0xd2e000 – 0xd7affb com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
                    0x1f7e000 – 0x1f81ff7 +net.culater.SIMBL.osax 0.9.7 (0.9.7) <ADABA540-531E-706F-D0E5-FD3EA152172E> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
                    0x4dd4000 – 0x4defff7 +net.infinite-labs.Afloat 2.2 (2.2) <62EE2BC8-8625-DED6-C919-7E54759069FA> /Users/chaz/Library/Application Support/SIMBL/Plugins/Afloat.bundle/Contents/MacOS/Afloat
                    0x8fe00000 – 0x8fe4163b dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
                    0x906a9000 – 0x906c4ff7 libPng.dylib ??? (???) <4C105512-6FA8-2AE0-D058-6A8AA00F9DA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
                    0x906c5000 – 0x906d3fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
                    0x906d4000 – 0x90856fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
                    0x90857000 – 0x9085afe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
                    0x90bb0000 – 0x90bd8ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
                    0x90c84000 – 0x90c8dff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
                    0x90cd8000 – 0x90d1aff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
                    0x90d75000 – 0x90e77fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
                    0x90e78000 – 0x90eb5ff7 com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
                    0x90eb6000 – 0x90fe4fe7 com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
                    0x90fe5000 – 0x9118cff7 libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
                    0x9118d000 – 0x913f3ff7 com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
                    0x9143d000 – 0x914d5fe7 edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
                    0x914d6000 – 0x914fcffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
                    0x91546000 – 0x915f3fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
                    0x915f4000 – 0x9163dfe7 libTIFF.dylib ??? (???) <10F7E21B-EC59-6594-004F-798DA3F37789> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
                    0x9163e000 – 0x91938fef com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
                    0x91939000 – 0x91973ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
                    0x91974000 – 0x923c7ff7 com.apple.WebCore 6533.21 (6533.21.1) <04C66A67-4CF2-5F4B-4EA3-00E67B0F9411> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
                    0x9241a000 – 0x9241dffb com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
                    0x9241e000 – 0x92424fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
                    0x9249d000 – 0x9254bff3 com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
                    0x92696000 – 0x92a01ff7 com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
                    0x92a8a000 – 0x92a91ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
                    0x92ac5000 – 0x92ad5ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
                    0x92b5b000 – 0x9343eff7 com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
                    0x9343f000 – 0x93601feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <20E90968-E04B-7B68-DBA2-92C729A8243F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
                    0x93602000 – 0x93684ffb SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
                    0x93685000 – 0x93688ff7 libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
                    0x93689000 – 0x93adafef com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
                    0x93adb000 – 0x93adcff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
                    0x93add000 – 0x93f98ff7 com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
                    0x93fa6000 – 0x93fecff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
                    0x93fed000 – 0x9430dff3 com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
                    0x9430e000 – 0x943c6feb libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
                    0x94441000 – 0x9444dff7 libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
                    0x94488000 – 0x94553fef com.apple.CoreServices.OSServices 359 (359) <FE671FE5-9198-8340-24EE-BDB4A31DC378> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
                    0x946b7000 – 0x9475fffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
                    0x947b9000 – 0x94899fe7 com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
                    0x948b3000 – 0x94bd7fef com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
                    0x94bd9000 – 0x94c14feb libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
                    0x94c15000 – 0x94c84ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
                    0x94cba000 – 0x94cedfff libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
                    0x94cee000 – 0x94dfaff7 libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
                    0x94dfb000 – 0x94ed5fff com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
                    0x94ed6000 – 0x94f13ff7 com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
                    0x94f14000 – 0x94f29fff com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
                    0x94f2a000 – 0x94f2aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
                    0x94f2b000 – 0x95008fe3 com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
                    0x95009000 – 0x9504cff7 com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
                    0x9504d000 – 0x9504dff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
                    0x9504e000 – 0x9506ffe7 com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
                    0x95070000 – 0x9507bff7 libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
                    0x9507c000 – 0x950bdff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
                    0x95127000 – 0x95177ff7 com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
                    0x95178000 – 0x9517efe7 com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
                    0x9517f000 – 0x95280fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
                    0x95281000 – 0x953befe7 com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
                    0x953bf000 – 0x953d3ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
                    0x954dc000 – 0x9550fff7 com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
                    0x95510000 – 0x95653fef com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
                    0x9583e000 – 0x9583eff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
                    0x95991000 – 0x95996ff7 com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
                    0x95997000 – 0x95a34fe3 com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
                    0x95a35000 – 0x95ca6fef com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
                    0x95ca7000 – 0x95d63fff com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
                    0x95d64000 – 0x95d75ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
                    0x95db5000 – 0x95e47fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
                    0x95eda000 – 0x95f1eff3 com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
                    0x95f35000 – 0x95f88ff7 com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
                    0x95f89000 – 0x95f8aff7 com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
                    0x95f8d000 – 0x9677c557 com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
                    0x9677d000 – 0x96795ff7 com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
                    0x96796000 – 0x96811fff com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
                    0x9681a000 – 0x9684bff7 libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
                    0x9684c000 – 0x96979ffb com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
                    0x9697a000 – 0x9697aff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
                    0x96a4d000 – 0x96a6cfe3 libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
                    0x96be9000 – 0x96cf8fe7 com.apple.WebKit 6533.21 (6533.21.1) <87AFEE12-270F-2D84-1B93-81DF1DA47A7F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
                    0x96cf9000 – 0x96cfcff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
                    0x96d4a000 – 0x96d97feb com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
                    0x96e9b000 – 0x96e9dff7 libRadiance.dylib ??? (???) <47E300B5-DBEF-86C4-29BD-86DBEDD2FBB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
                    0x96e9e000 – 0x96ec2ff7 libJPEG.dylib ??? (???) <0C406884-DAAF-0409-2659-9D1602D752D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
                    0x96ec3000 – 0x96f5efe7 com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
                    0x96f6f000 – 0x96f8ffe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
                    0x96f93000 – 0x96fa5ff7 com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
                    0x97001000 – 0x97001ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
                    0x9700d000 – 0x9701aff7 com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
                    0x9701b000 – 0x97037fe3 com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
                    0x97038000 – 0x97057ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
                    0x97058000 – 0x9705aff7 com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
                    0x970c6000 – 0x970c6ff7 com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
                    0x970c7000 – 0x970c7ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
                    0x9727c000 – 0x97280ff7 IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
                    0x981ec000 – 0x98621ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
                    0x98a58000 – 0x98a9fffb com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
                    0x98b64000 – 0x98bc1ff7 com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
                    0x98bc2000 – 0x98fd8ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
                    0x98fd9000 – 0x98fddff7 libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
                    0x98fde000 – 0x99058fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
                    0x99059000 – 0x990c3fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
                    0x990c4000 – 0x99108fe7 com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
                    0x99109000 – 0x99307ff3 com.apple.JavaScriptCore 6533.20 (6533.20.20) <011E271D-4CA4-FFB0-2EDD-13C31C239899> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
                    0x99556000 – 0x99561ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
                    0x99562000 – 0x995c6ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
                    0x998da000 – 0x9993bfe7 com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
                    0x9993c000 – 0x999f5fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
                    0x999f6000 – 0x99a76feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
                    0x99a77000 – 0x99a8bfe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
                    0x99a91000 – 0x99ab3fef com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
                    0x99b1b000 – 0x99b25ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
                    0x99b9d000 – 0x99b9dff7 com.apple.Carbon 150 (152) <095157D7-B4EE-F73D-72E9-6C5EF55C55E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
                    0x99b9e000 – 0x99d19fe7 com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
                    0x99d1a000 – 0x99dc6fe7 com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
                    0x99dc7000 – 0x99dd1fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
                    0x99dd2000 – 0x99de0ff7 com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
                    0x99de1000 – 0x99de5ff7 libGIF.dylib ??? (???) <B7BA65AF-681C-F18B-A434-CBEC76A45646> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
                    0x99e0d000 – 0x99e50ff7 libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
                    0xffff0000 – 0xffff1fff libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
                    [/code:11s0193p]

                    #3064
                    atom
                    Keymaster
                      • Topics: 159
                      • Replies: 2945
                      • Total: 3104
                      • ★★★★★

                      i’ll check to see what’s going on.

                      #3065
                      atom
                      Keymaster
                        • Topics: 159
                        • Replies: 2945
                        • Total: 3104
                        • ★★★★★

                        I did a new nightly build for the mac, please try that, also i added a perhaps useful thing. A global option to disable LUA for Ctrlr, you can set it in the global Preferences OR keep "CTRL+L" pressed when starting Ctrlr and LUA should be disabled and it will give you a chance to start Ctrlr and fix the mistakes.

                        #3066
                        Anonymous
                          • Topics: 3
                          • Replies: 15
                          • Total: 18

                          Thanks! That was fast…

                          Unfortunately, when I hold down Ctrl-L (or Command-L) while opening, it still crashes unless I delete Ctrlr.settings and start fresh. Maybe that feature isn’t working on Mac yet.

                          But that’s OK, I deleted Ctrlr.settings, disabled Lua, and now I can open my .panel and tweak the Morpheus some more, w00t…

                        Viewing 11 posts - 1 through 11 (of 11 total)
                        • The forum ‘Using Ctrlr’ is closed to new topics and replies.
                        There is currently 0 users and 74 guests online
                        No users are currently active
                        Forum Statistics
                        Threads: 2,495, Posts: 17,374, Members: 77,605
                        Most users ever online was 12 on January 22, 2019 3:47 pm
                        Ctrlr