Binary Project

Hello,
I am a collge student taking a DF class where we are working on a project for a Department of Defence Challange where I need to get inside a wav file and get hidden information from it. Im to the point where I need a means of getting the LSB (Least Sugnificant Bit) from the files Hex values and thought of using Java as a means of doing this, as Java is the only language I currently know. It is my hope that I can find someone here who would be willing to allow me to use or help me in writing this program, I will give full credit to anyone who helps and if their work is helpful in solving this problem than that credit will be passed off to the DoD as the reason for solving it.
At the moment I need something that will take in the wav file and get me the LSB for each hex byte or will take the Hex bytes themselves as a text file.
I need the out put to be in a string of bits so that I can look this over.
for exmple, I need to get the 00000001 and the 00000001 to print out 11 and so forth for the whole file.
If anyone is able or willing to help my team and myself would be very greatful to the help provided.
Thanks in advance.

man, sorry my bad english
to output your file, or whatever you got, :
public static void main(String[] args) throws Exception {
          byte[] b = "YOUR FILE".getBytes();
          System.out.println(byteArrayToBinary(b));
          System.out.println(byteArrayToHex(b));
          System.out.println(byteArrayToInt(b));
     public static String byteArrayToBinary(byte[] b) {
         StringBuffer sb = new StringBuffer();
         for (int i = 0; i < b.length; i++)
              sb.append(Integer.toBinaryString(b&255) + " ");
     return sb.toString();
     public static String byteArrayToHex(byte[] b) {
     StringBuffer sb = new StringBuffer();
     for (int i = 0; i < b.length; i++)
          sb.append(Integer.toHexString(b[i]&255) + " ");
     return sb.toString();
     public static String byteArrayToInt(byte[] b) {
     StringBuffer sb = new StringBuffer();
     for (int i = 0; i < b.length; i++)
          sb.append((b[i]&255) + " ");
     return sb.toString();
To see if the byte has the least bit significant:
public static boolean lastBitSig(byte b) {
          return (b&0x01) == 1;
     }Did I help ?
cause I'm not understing what you expecting, hehehe
sorry.

Similar Messages

  • Does Premiere CC have a new binary project format (CS6 was xml based)?

    Just interest, can Premiere CC store projects in xml format not binary (.prproj)?

    To expand on Steve's answer, the format uses gzip compression. If you unzip them and use plain XML then Premiere CC will read it but rezip it when it's resaved in the program.

  • ID CS3 XCode sample projects

    Are there any Xcode plug-in sample projects available ? I've been trying to set up an empty Universal Binary project to build on. The Indesign Xcode template gave me a start but it seems like I'm having problems with the header search paths. The ShuckHeaders.cp file eventually includes iterator which spits up a lot of errors about macros getting 2 arguments but taking only one.

    D'oh! They're hidden way down inside the SDK build folder. The build folder ? Who's idea was that ? Oh, well. There they are.

  • Automator error and Snow Leopard

    In Snow Leopard's Automator, I'm getting an error that says my Automator actions are not Universal, which is incorrect, since they are certainly Universal Binaries.
    However, after doing some research, I've found other similar cases, and it seems that this error is misguiding, and that the Automator actions just have not been compiled to be 64-bit yet. From my quick glance in Xcode, however, if I want to make a 32/64-bit UB Action, it is only compatible with Mac OS 10.5 and above. Am I wrong in my assumption? Might it be possible to build appropriate versions of the Automator actions that will work with Mac OS 10.4 through 10.6?

    My concern is how feasible is it to get a 32+64-bit and PPC/Intel hybrid Automator Action that can run on Mac OS 10.4 - 10.6.
    Apple has this to say about that...
    -=-=-=-
    Automator Actions as Universal Binaries
    A universal binary is executable code that can run on either PowerPC-based or Intel-based Macintosh computers.
    To move a PowerPC-only project to a universal-binary project may require work involving such programming details as endianness, alignment, and calling conventions. The amount of work generally depends on the level of the source code; lower-level source code (for example, the kernel) requires more work than higher-level code (for example, an application based on Carbon).
    The need to make an Automator action a universal binary depends on the language used:
    ■ AppleScript actions are platform-independent and do not require any changes to run on Intel processors.
    ■ An action that contains Objective-C code, whether a Cocoa-only action or an action that contains a mix of Objective-C and AppleScript, must be built as a universal binary to run correctly on both Intel and PowerPC processors.
    For information on making universal binaries, see 'Universal Binary Programming Guidelines, Second Edition'.

  • Help with binary conversion project

    hey my assignment was to make a program that would say the binary representation of an int. i got my program working and im pretty sure it works for all negatives and 0. my question is can you guys help me with a way to do the same steps with for( or while( ? it seems like i went the long way doing this project and even tho it works theres probably a much simpler way of going about it. theres no interface or anything we just change the value of N and recompile it and run from command prompt so far in our class. thanks for the help
    class binary {
    public static void main(String[]args){
         int N = -264;
         int M = N*-1;
         int A;
         int A1;
         int B;
         int B1;
         int C;
         int C1;
         int D;
         int D1;
         int E;
         int E1;
         int F;
         int F1;
         int G;
         int G1;
         int H;
         int H1;
         int I;
         int I1;
         if(N==0) {
              System.out.println("The Binary reresentation of "+N+" is = 0");
         if(N<0) {
              A=M/2;
              A1=M%2;
              B = A/2;
              B1 = A%2;
              C = B/2;
              C1 = B%2;
              D = C/2;
              D1 = C%2;
              E = D/2;
              E1 = D%2;
              F = E/2;
              F1 = E%2;
              G = F/2;
              G1 = F%2;
              H = G/2;
              H1 = G%2;
              I = H/2;
              I1 = H%2;
         else {
              A= N/2;
              A1 = N%2;
              B = A/2;
              B1 = A%2;
              C = B/2;
              C1 = B%2;
              D = C/2;
              D1 = C%2;
              E = D/2;
              E1 = D%2;
              F = E/2;
              F1 = E%2;
              G = F/2;
              G1 = F%2;
              H = G/2;
              H1 = G%2;
              I = H/2;
              I1 = H%2;
         if(A1==1 && N<0){
         B1=B1-1;
         C1=C1-1;
         D1=D1-1;
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==1 && N<0){
         C1=C1-1;
         D1=D1-1;
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==1 && N<0){
         D1=D1-1;
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==1 && N<0){
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==1 && N<0){
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==0 && F1==1 && N<0){
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==0 && F1==0 && G1==1 && N<0){
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==0 && F1==0 && G1==0 && H1==1 && N<0){
         I1=I1-1;
         if(A1==-1){
         A1=A1*-1;
         if(B1==-1){
         B1=B1*-1;
         if(C1==-1){
         C1=C1*-1;
         if(D1==-1){
         D1=D1*-1;
         if(E1==-1){
         E1=E1*-1;
         if(F1==-1){
         F1=F1*-1;
         if(G1==-1){
         G1=G1*-1;
         if(H1==-1){
         H1=H1*-1;
         if(I1==-1){
         I1=I1*-1;
         if(A==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+A1);
         else if(B==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+B1+A1);
         else if(C==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+C1+B1+A1);
         else if(D==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+D1+C1+B1+A1);
         else if(E==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+E1+D1+C1+B1+A1);
         else if(F==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+F1+E1+D1+C1+B1+A1);
         else if(G==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+G1+F1+E1+D1+C1+B1+A1);
         else if(H==0 && N<0){     
              System.out.println("The Binary reresentation of "+N+" is = 1"+H1+G1+F1+E1+D1+C1+B1+A1);
         else if(I==0 && N<0){     
              System.out.println("The Binary reresentation of "+N+" is = 1"+I1+H1+G1+F1+E1+D1+C1+B1+A1);
         if(A==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+A1);
         else if(B==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+B1+A1);
         else if(C==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+C1+B1+A1);
         else if(D==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+D1+C1+B1+A1);
         else if(E==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+E1+D1+C1+B1+A1);
         else if(F==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+F1+E1+D1+C1+B1+A1);
         else if(G==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+G1+F1+E1+D1+C1+B1+A1);
         else if(H==0 && N>0){     
              System.out.println("The Binary reresentation of "+N+" is = 0"+H1+G1+F1+E1+D1+C1+B1+A1);
         else if(I==0 && N>0){     
              System.out.println("The Binary reresentation of "+N+" is = 0"+I1+H1+G1+F1+E1+D1+C1+B1+A1);
    }

    String intAsBinaryString(int n){
      String res = "";
      for(int i = 1; i!=0; i *=2){
        res = ((n & i != 0)?"1":"0") + res;
      return res;
    }Pete is right, in order to understand this you need to know how integers are stored.

  • [svn:osmf:] 11361: Adding a generic binary search utility ( updating project file).

    Revision: 11361
    Author:   [email protected]
    Date:     2009-11-02 05:21:35 -0800 (Mon, 02 Nov 2009)
    Log Message:
    Adding a generic binary search utility (updating project file).
    Modified Paths:
        osmf/trunk/framework/MediaFramework/.flexLibProperties

    Hi,
    try this forum: WebCenter Portal
    Frank

  • Unable to load project after cut

    Hi,
    I've a new (few days old) iMac, 27inch i5, 24G Ram, OS X 10.9.1, Logic Pro X 10.0.6. Interface is M-AUDIO - Fast TrackUltra (latest driver)
    I had a project that seemed fine until I did a Cut/Insert->Cut Selction between Locations. The cut was fine, but on trying to play the song LPX crashed. Now that song can not be loaded as LPX crashes once the song has loaded, before the windows open.
    The project was created on Logic Pro 9 and converted to new format by LPX.
    I've disabled all non-apple plugins via the Audio Units Manager. (NI Komplet 9 & Melodyne)
    Other songs load fine and play as expected.
    Thanks for any insights?
    Here is the traceback:
    Process:         Logic Pro X [513]
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Identifier:      com.apple.logic10
    Version:         10.0.6 (3130.20)
    Build Info:      MALogic-3130020000000000~1
    App Item ID:     634148309
    App External ID: 283213010
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [160]
    Responsible:     Logic Pro X [513]
    User ID:         501
    Date/Time:       2014-01-21 13:29:48.330 +0000
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  70567473-7762-5B75-B22D-1144DCA6868B
    Crashed Thread:  6  SeqTimer
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000107c3f000-0000000108cbd000 [ 16.5M] r-x/rwx SM=COW  /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff914e7a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff91b08e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff91b08d52 usleep + 54
    3   com.apple.logic10                       0x0000000107f24a48 0x107c3f000 + 3037768
    4   com.apple.logic10                       0x0000000107f740dd 0x107c3f000 + 3363037
    5   com.apple.logic10                       0x0000000107dd30d8 0x107c3f000 + 1655000
    6   com.apple.logic10                       0x0000000107dd4fdd 0x107c3f000 + 1662941
    7   com.apple.logic10                       0x0000000107e23807 0x107c3f000 + 1984519
    8   com.apple.logic10                       0x00000001081320d9 0x107c3f000 + 5189849
    9   com.apple.logic10                       0x00000001080fca0c 0x107c3f000 + 4971020
    10  com.apple.logic10                       0x0000000108101c48 0x107c3f000 + 4992072
    11  com.apple.logic10                       0x0000000108101da0 0x107c3f000 + 4992416
    12  com.apple.AppKit                        0x00007fff868e54c1 -[NSDocument _initWithContentsOfURL:ofType:error:] + 178
    13  com.apple.AppKit                        0x00007fff868e5176 -[NSDocument initWithContentsOfURL:ofType:error:] + 239
    14  com.apple.AppKit                        0x00007fff86abe29b -[NSDocumentController makeDocumentWithContentsOfURL:ofType:error:] + 772
    15  com.apple.logic10                       0x000000010820fea7 0x107c3f000 + 6098599
    16  com.apple.AppKit                        0x00007fff86acbe62 -[NSDocumentController(NSDeprecated) openDocumentWithContentsOfURL:display:error:] + 820
    17  com.apple.logic10                       0x000000010812668c 0x107c3f000 + 5142156
    18  com.apple.AppKit                        0x00007fff86ac449f __55-[NSDocumentController(NSPrivate) _openRecentDocument:]_block_invoke + 176
    19  com.apple.AppKit                        0x00007fff86ac437f -[NSDocumentController(NSPrivate) _openRecentDocument:] + 203
    20  com.apple.logic10                       0x0000000108210cdc 0x107c3f000 + 6102236
    21  com.apple.AppKit                        0x00007fff8682d3d0 -[NSApplication sendAction:to:from:] + 327
    22  com.apple.LogicUIKit                    0x000000010bac8178 0x10ba19000 + 717176
    23  com.apple.logic10                       0x00000001080fb3c4 0x107c3f000 + 4965316
    24  com.apple.AppKit                        0x00007fff86848348 -[NSMenuItem _corePerformAction] + 394
    25  com.apple.AppKit                        0x00007fff86848084 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 117
    26  com.apple.AppKit                        0x00007fff868974dd -[NSMenu _internalPerformActionForItemAtIndex:] + 35
    27  com.apple.AppKit                        0x00007fff86897359 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 104
    28  com.apple.AppKit                        0x00007fff8683e176 NSSLMMenuEventHandler + 716
    29  com.apple.HIToolbox                     0x00007fff8740e6d4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 892
    30  com.apple.HIToolbox                     0x00007fff8740dc87 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 385
    31  com.apple.HIToolbox                     0x00007fff87421d90 SendEventToEventTarget + 40
    32  com.apple.HIToolbox                     0x00007fff87457a30 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 420
    33  com.apple.HIToolbox                     0x00007fff8748a618 SendMenuCommandWithContextAndModifiers + 59
    34  com.apple.HIToolbox                     0x00007fff8748a5c4 SendMenuItemSelectedEvent + 178
    35  com.apple.HIToolbox                     0x00007fff8748a4a5 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    36  com.apple.HIToolbox                     0x00007fff87492425 MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 718
    37  com.apple.HIToolbox                     0x00007fff87492051 _HandleMenuSelection2 + 446
    38  com.apple.AppKit                        0x00007fff867b079c _NSHandleCarbonMenuEvent + 284
    39  com.apple.AppKit                        0x00007fff8660f56e _DPSNextEvent + 2170
    40  com.apple.AppKit                        0x00007fff8660e8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    41  com.apple.AppKit                        0x00007fff866029cc -[NSApplication run] + 553
    42  com.apple.AppKit                        0x00007fff865ed803 NSApplicationMain + 940
    43  com.apple.logic10                       0x00000001080fb655 0x107c3f000 + 4965973
    44  libdyld.dylib                           0x00007fff8799b5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff914e8662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff91e7943d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff91e79152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff914e3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff914e2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8f576315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8f575939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8f575275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff89c82907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff89c8270b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff914e7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93299f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9329cfb9 start_wqthread + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff914e79aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8f5c1d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff914e3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff914e2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8f576315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8f575939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8f575275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff89c84a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x00007fff89ccd02b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.logic10                       0x0000000107e3b349 0x107c3f000 + 2081609
    8   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 6 Crashed:: SeqTimer
    0   com.apple.logic10                       0x0000000107f26513 0x107c3f000 + 3044627
    1   com.apple.logic10                       0x0000000107f1a81b 0x107c3f000 + 2996251
    2   com.apple.logic10                       0x0000000107f1aae4 0x107c3f000 + 2996964
    3   com.apple.logic10                       0x0000000107f1a4a7 0x107c3f000 + 2995367
    4   com.apple.logic10                       0x0000000107f18025 0x107c3f000 + 2986021
    5   com.apple.logic10                       0x0000000107f15970 0x107c3f000 + 2976112
    6   com.apple.CoreServices.CarbonCore          0x00007fff89611ec3 TimerThread + 273
    7   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff914e3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff914e2d18 mach_msg + 64
    2   com.apple.audio.midi.CoreMIDI           0x00000001099905a7 XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI           0x00000001099ab1c1 MIDIProcess::RunMIDIInThread() + 121
    4   com.apple.audio.midi.CoreMIDI           0x000000010999163c XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI           0x00000001099912a1 CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 8:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff914e7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9329ac3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x000000010b6539bb ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles            0x000000010b653659 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 9:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff914e7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9329ac3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x000000010b6539bb ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles            0x000000010b653659 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 10:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff914e3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff914e2d18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff8e116918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff8e1168a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff8e11502e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff8e114bcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff8e114a8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 11:: ProcessThread1/1024
    0   libsystem_kernel.dylib                  0x00007fff914e3a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010b748b3a MD::CallProcessThread1(void*) + 442
    2   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 12:: ProcessThread2/1024
    0   libsystem_kernel.dylib                  0x00007fff914e3a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010b748d60 MD::CallProcessThread2(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 13:: ProcessThread3/1024
    0   libsystem_kernel.dylib                  0x00007fff914e3a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010b748f70 MD::CallProcessThread3(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 14:: ProcessThread15/1024
    0   libsystem_kernel.dylib                  0x00007fff914e3a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010b74a830 MD::CallProcessThread15(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 15:: FileIOThread
    0   libsystem_kernel.dylib                  0x00007fff914e3a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010b7653ec 0x10b737000 + 189420
    2   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff914e79aa __select + 10
    1   com.apple.logic10                       0x00000001084ccb7e 0x107c3f000 + 8969086
    2   com.apple.logic10                       0x00000001080dbaed 0x107c3f000 + 4836077
    3   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff914e3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff914e2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8f576315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8f575939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8f575275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff867af1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff914e7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93299f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9329cfb9 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff914e7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93299f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9329cfb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff914e7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93299f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9329cfb9 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff914e3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff914e2d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8f576315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8f575939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8f575275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8f62a9d1 CFRunLoopRun + 97
    6   com.apple.DiscRecording                 0x00007fff899f415e DRWorkLoop::WorkLoop() + 228
    7   com.apple.DiscRecording                 0x00007fff899f4067 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording                 0x00007fff899f3d77 DRThreadObject::StartRoutine(DRThreadObject*) + 125
    9   com.apple.DiscRecording                 0x00007fff899f3c11 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_pthread.dylib                 0x00007fff93298899 _pthread_body + 138
    11  libsystem_pthread.dylib                 0x00007fff9329872a _pthread_start + 137
    12  libsystem_pthread.dylib                 0x00007fff9329cfc9 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0002fd0000000000  rbx: 0x000000000000010c  rcx: 0x7fffffffffff0000  rdx: 0x0000000000000000
      rdi: 0x00007faf89c67118  rsi: 0x00007faf8a5c3400  rbp: 0x0000000111e86b70  rsp: 0x0000000111e86ae0
       r8: 0x00000000abc04723   r9: 0x000000000000ffff  r10: 0x0000000111250000  r11: 0x00007faf8a5b5ab0
      r12: 0x00007faf8a58d800  r13: 0x0002fd0000000000  r14: 0x00007faf8a5c3400  r15: 0x0000000111252760
      rip: 0x0000000107f26513  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x107c3f000 -        0x108cbcfef  com.apple.logic10 (10.0.6 - 3130.20) <70902770-78BC-37D0-9F46-4788D9485EA6> /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
           0x10925b000 -        0x10925dfff  com.apple.music.apps.MAResourcesPlugInsShared (10.0.6 - 3130.20) <69AF1EEF-E05C-3A1C-97B6-D567D86913AE> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResou rcesPlugInsShared
           0x109266000 -        0x109650fff  com.apple.music.apps.MALogicLegacySong (10.0.6 - 3130.20) <BAC589F4-2CB4-3098-95D4-2502E5682A40> /Applications/Logic Pro X.app/Contents/Frameworks/MALogicLegacySong.framework/Versions/A/MALogicLegacyS ong
           0x109759000 -        0x109791fff  com.apple.music.apps.MAAudioUnitSupport (10.0.6 - 3130.20) <CD0279C8-2750-34C9-BFC7-99C9E3901913> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnitSu pport
           0x1097b5000 -        0x1097d9ff7  com.apple.music.apps.MALoopManagement (10.0.6 - 3130.20) <865674BB-7C0C-36B1-96B3-930D8A9AF0D0> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagemen t
           0x1097f2000 -        0x10990eff7  com.apple.music.apps.MACore (10.0.6 - 3130.20) <80090F62-F3D6-3AE9-B6FA-2130489C367B> /Applications/Logic Pro X.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x109983000 -        0x1099beff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <AAF5250E-D422-3910-8F94-FE8BAC5B8174> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x1099ec000 -        0x109a66ff7  com.apple.music.apps.MAHarmony (10.0.6 - 3130.20) <CE0F2A57-F27B-38B5-92CC-BBF1CF310AA4> /Applications/Logic Pro X.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x109a8c000 -        0x10a08fff7  com.apple.music.apps.MAPlugInGUI (10.0.6 - 3130.20) <127F665A-6778-3742-9D4F-23E5EEB7027E> /Applications/Logic Pro X.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x10a3af000 -        0x10a47aff7  com.apple.music.apps.OMF (10.0.6 - 3130.2) <0F02BBA3-9863-372D-81EB-FF0D670962ED> /Applications/Logic Pro X.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x10a4a0000 -        0x10ac4aff7  com.apple.music.apps.MADSP (10.0.6 - 3130.20) <DCE4D347-C2E2-323F-B1F1-3401034A150B> /Applications/Logic Pro X.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x10b519000 -        0x10b53efff  com.apple.music.apps.LogicFileBrowser (10.0.6 - 3130.2) <8F7FBDBD-1D02-3619-ACAF-59ACDF7474CD> /Applications/Logic Pro X.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrowse r
           0x10b556000 -        0x10b5a4fff  com.apple.music.apps.LogicLoopBrowser (10.0.6 - 3130.2) <6C40A6BD-4868-3227-94A0-C2A792835FFF> /Applications/Logic Pro X.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrowse r
           0x10b5c1000 -        0x10b5c5fff  com.apple.music.apps.MAResources (10.0.6 - 3130.20) <46236F99-16A4-3B38-8B40-C27960154BFE> /Applications/Logic Pro X.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x10b5ca000 -        0x10b5f1ff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <E6FEB146-1384-3FDE-A9B4-3BC48DCEDC27> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x10b612000 -        0x10b61dfff  com.apple.music.apps.MAUnitTest (10.0.6 - 3130.20) <AA6E684A-778B-37CE-B859-78472F8E6340> /Applications/Logic Pro X.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x10b627000 -        0x10b629fff  com.apple.music.apps.midi.device.plugin.FaderMaster-4-100 (10.0.6 - 3130.20) <D30CBA15-9A1E-3C07-903C-A2393E232AD8> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/FaderMaster 4-100.bundle/Contents/MacOS/FaderMaster 4-100
           0x10b62e000 -        0x10b6edff7  com.apple.music.apps.MAFiles (10.0.6 - 3130.20) <E5D3D261-0296-316B-B086-EFDC918DBCFC> /Applications/Logic Pro X.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x10b730000 -        0x10b731ff7  com.apple.music.apps.midi.device.plugin.MCS3 (10.0.6 - 3130.20) <0D1828AC-23B4-3E9E-9EF3-CE1DF9508FCD> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
           0x10b737000 -        0x10b81eff7  com.apple.music.apps.MAAudioEngine (10.0.6 - 3130.20) <AB6C554A-2B15-3347-BC04-0A39137DE6F2> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x10b9ac000 -        0x10b9acfeb +cl_kernels (???) <2A175674-8CC2-48D3-8874-1CE48C3B7309> cl_kernels
           0x10b9b0000 -        0x10b9c0fff  com.apple.StoreKit (1.0 - 232.2) <4A239D2B-4D42-399B-B4F5-EA24297F0E0A> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
           0x10b9d5000 -        0x10b9fdff7  com.apple.music.apps.MAVideo (10.0.6 - 3130.20) <45CB9EE0-734E-37BB-B416-5828A45976E8> /Applications/Logic Pro X.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x10ba13000 -        0x10ba14ff7  com.apple.music.apps.midi.device.plugin.Recording-Light (10.0.6 - 3130.20) <60FD3CCD-204B-39DE-987A-E273BB747179> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
           0x10ba19000 -        0x10bd4aff7  com.apple.LogicUIKit (10.0.6 - 3130.20) <08308115-58D0-3175-8D38-4E41B23B81F9> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitLg.framework/Versions/A/MAToolKitLg
           0x10be89000 -        0x10c218ff7  com.apple.music.apps.Animal (10.0.6 - 3130.20) <F198A172-3AA3-3DE2-BD55-15743F3650DD> /Applications/Logic Pro X.app/Contents/Frameworks/Animal.framework/Versions/A/Animal
           0x10c508000 -        0x10c522ff7  com.apple.music.apps.MALoopBrowser (10.0.6 - 3130.2) <A05558E2-90D0-3953-ABB8-657942BC5628> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopBrowser.framework/Versions/A/MALoopBrowser
           0x10c532000 -        0x10c5d6fff  com.apple.music.apps.MAWorkspace (10.0.6 - 3130.20) <430BA888-E8DE-381E-9514-38FB0E210ECC> /Applications/Logic Pro X.app/Contents/Frameworks/MAWorkspace.framework/Versions/A/MAWorkspace
           0x10c626000 -        0x10c65efff  com.apple.LogicUIKitHighLevel (10.0.6 - 3130.20) <D2C51FB7-674A-375F-8AE8-35A9EF73CD63> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHigh Level
           0x10c67f000 -        0x10c681fff  com.apple.music.apps.MAResourcesLg (10.0.6 - 3130.20) <34B8DF73-1B67-3034-8998-48D33C721045> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesLg.framework/Versions/A/MAResourcesLg
           0x10c686000 -        0x10c68afff  com.apple.music.apps.MAContentDownloading (10.0.6 - 3130.2) <91140EEF-E876-32AD-8ACA-B96F01EC0BB4> /Applications/Logic Pro X.app/Contents/Frameworks/MAContentDownloading.framework/Versions/A/MAContentDo wnloading
           0x10c692000 -        0x10c6a3fff +com.nxtbgthng.OAuth2Client (1.1.0 - 3130.2) <71ED7ABB-815D-3816-853E-421E40176E57> /Applications/Logic Pro X.app/Contents/Frameworks/OAuth2Client.framework/Versions/A/OAuth2Client
           0x10c6b1000 -        0x10c6b6fff +com.yourcompany.SoundCloudAPI (2.0b6 - 3130.2) <53A17635-26DE-33ED-8DF2-8F26FD2CFCE9> /Applications/Logic Pro X.app/Contents/Frameworks/SoundCloudAPI.framework/Versions/A/SoundCloudAPI
           0x10c6c4000 -        0x10c6c6fff  com.apple.music.apps.MAResourcesGB (10.0.6 - 3130.20) <FEA04925-9E75-3CDD-BA2A-B53C5BE4481E> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesGB.framework/Versions/A/MAResourcesGB
           0x10c6d0000 -        0x10c70efff  com.apple.MAGFFoundation (1.0 - 3130.2) <3E2D5507-7DAB-30FD-AC6A-C1191F0E79B9> /Applications/Logic Pro X.app/Contents/Frameworks/MAGFFoundation.framework/Versions/A/MAGFFoundation
           0x10c764000 -        0x10c766fe7 +com.novation.logic.automapmixer (1.0 - 1.0) <57A9B0E5-EBB2-34C8-B190-B6B3647C51FF> /Library/Application Support/MIDI Device Plug-ins/Automap Mixer.bundle/Contents/MacOS/Automap Mixer
           0x10c770000 -        0x10c778fff  com.apple.music.apps.midi.device.plugin.CS-32 (10.0.6 - 3130.20) <3B78677D-B114-36B8-98EA-E94CBC5B0392> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
           0x10c781000 -        0x10c783fff  com.apple.music.apps.midi.device.plugin.GiO (10.0.6 - 3130.20) <A414A706-FC5E-38F2-92B9-94DEE14C147C> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
           0x10c789000 -        0x10c78cff7  com.apple.music.apps.midi.device.plugin.iControl (10.0.6 - 3130.20) <EB01CEAA-D83F-3775-8317-2B33011C37EE> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
           0x10c792000 -        0x10c799fff  com.apple.music.apps.midi.device.plugin.Logic-Remote (10.0.6 - 3130.20) <31F75946-116F-3CF1-A6EA-B664C01FC02E> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Remote.bundle/Contents/MacOS/Logic Remote
           0x10e27e000 -        0x10e285fff  com.apple.music.apps.midi.device.plugin.microKONTROL (10.0.6 - 3130.20) <FBDC3892-ACCD-33A5-B04F-685EEC6EB29B> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
           0x10f379000 -        0x10f37bfff  com.apple.music.apps.anvil.resources (10.0.6 - 3130.20) <383BA64C-729F-347B-B9AC-2FA588AEFED3> /Applications/Logic Pro X.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
           0x10f381000 -        0x10f383fff  com.apple.music.apps.common.resources (10.0.6 - 3130.20) <BB545971-8097-378C-BF0C-E69997C26B56> /Applications/Logic Pro X.app/Contents/PlugIns/common.res/Contents/MacOS/common
           0x10f389000 -        0x10f38bff7  com.apple.music.apps.ebp.resources (10.0.6 - 3130.20) <F90E9CC8-B087-3C1C-A006-576C87B6758F> /Applications/Logic Pro X.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
           0x10f391000 -        0x10f393ff7  com.apple.music.apps.efx.resources (10.0.6 - 3130.20) <237C0DF7-3834-3A73-9D9A-93BFB62B2EE4> /Applications/Logic Pro X.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
           0x10f399000 -        0x10f39bff7  com.apple.music.apps.egt.resources (10.0.6 - 3130.20) <46590D68-CC62-39D0-BA9A-2CB5DCA53723> /Applications/Logic Pro X.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
           0x10f3a1000 -        0x10f3a3ff7  com.apple.music.apps.emx.resources (10.0.6 - 3130.20) <E02CEE50-9830-37E2-AB51-B479AAECC936> /Applications/Logic Pro X.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
           0x10f3a9000 -        0x10f3abff7  com.apple.music.apps.es1.resources (10.0.6 - 3130.20) <B6D1F0D8-97CA-3A9D-A16B-D8120F14D3E7> /Applications/Logic Pro X.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
           0x10f3b1000 -        0x10f3b3ff7  com.apple.music.apps.es2.resources (10.0.6 - 3130.20) <D38F7D64-8A7F-33D3-BE16-7E39EC80514E> /Applications/Logic Pro X.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
           0x10f3b9000 -        0x10f3bbff7  com.apple.music.apps.esp.resources (10.0.6 - 3130.20) <2D7BDC7F-16A5-334F-A168-E9886857DF8D> /Applications/Logic Pro X.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
           0x10f3c1000 -        0x10f3c3ff7  com.apple.music.apps.evb3.resources (10.0.6 - 3130.20) <850F7F44-6C5E-3737-AB9A-894B6085CD1A> /Applications/Logic Pro X.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
           0x10f3c9000 -        0x10f3cbff7  com.apple.music.apps.evd6.resources (10.0.6 - 3130.20) <37332EC1-7A55-3997-B127-CA039085D478> /Applications/Logic Pro X.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
           0x10f3d1000 -        0x10f3d3ff7  com.apple.music.apps.evoc.resources (10.0.6 - 3130.20) <8BA6139A-63C9-3AEB-A6EC-00F4CA8E0965> /Applications/Logic Pro X.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
           0x10f3d9000 -        0x10f3dbfff  com.apple.music.apps.evp88.resources (10.0.6 - 3130.20) <4ADAE329-C4EB-3BFF-9339-4D558E4EC4D9> /Applications/Logic Pro X.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
           0x10f3e1000 -        0x10f3e3fff  com.apple.music.apps.exs24.resources (10.0.6 - 3130.20) <7E0CE898-0895-3042-A5FB-4A31FDA0794D> /Applications/Logic Pro X.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
           0x10f3e9000 -        0x10f3ebfff  com.apple.music.apps.guitarcontrols.resources (10.0.6 - 3130.20) <48C9F761-BB67-3664-B00B-E128646CF95B> /Applications/Logic Pro X.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
           0x1105fe000 -        0x110602ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <844CFCFD-F813-36F1-A5BF-FB9D7BD7040D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x110e85000 -        0x110f6bfef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x111d63000 -        0x111d65fff  com.apple.music.apps.mutapdel.resources (10.0.6 - 3130.20) <87A492E4-DDB2-38BD-85FC-5F9642215B4F> /Applications/Logic Pro X.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
           0x111d6b000 -        0x111d6dff7  com.apple.music.apps.pedalboard.resources (10.0.6 - 3130.20) <990C8CEA-15F3-33CF-AB79-D63869690399> /Applications/Logic Pro X.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
           0x111d73000 -        0x111d75fff  com.apple.music.apps.revolver.resources (10.0.6 - 3130.20) <ED226BEA-63A7-3339-B059-9503A7BED4DA> /Applications/Logic Pro X.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
           0x111d7b000 -        0x111d7dfff  com.apple.music.apps.sphere.resources (10.0.6 - 3130.20) <7EDE5332-CF8B-36B8-9B2C-B31AC5220571> /Applications/Logic Pro X.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
           0x116cc6000 -        0x116cc9fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x116cf3000 -        0x116cffff7  com.apple.music.apps.midi.device.plugin.Motormix (10.0.6 - 3130.20) <E73A4303-1D51-3CA9-B687-A0F0EE90D569> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Motormix.bundle/Contents/MacOS/Motormix
           0x11c005000 -        0x11c018fff  com.apple.music.apps.midi.device.plugin.HUI (10.0.6 - 3130.20) <CA11742C-517D-3194-9F34-153B3F656A79> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
           0x11c027000 -        0x11c034fff  com.apple.music.apps.midi.device.plugin.SAC-2K (10.0.6 - 3130.20) <79C9E9A6-B0B5-3EAE-9990-E5B430F28F1E> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/SAC-2K.bundle/Contents/MacOS/SAC-2K
           0x11c03d000 -        0x11c042fff  com.apple.music.apps.midi.device.plugin.SI-24 (10.0.6 - 3130.20) <CD4B92B7-FC21-3C2A-AA0A-E21B5628A612> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/SI-24.bundle/Contents/MacOS/SI-24
           0x11c049000 -        0x11c056ff7  com.apple.music.apps.midi.device.plugin.TouchOSC (10.0.6 - 3130.20) <E798E3BC-2164-3525-B605-CF81956800F5> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
           0x11c063000 -        0x11c067ff7  com.apple.music.apps.midi.device.plugin.TranzPort (10.0.6 - 3130.20) <E90DA854-712E-3B35-9C50-E5CFA4B707C0> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
           0x11c06c000 -        0x11c076ff7  com.apple.music.apps.midi.device.plugin.US-2400 (10.0.6 - 3130.20) <DE9631C7-4242-3515-80EE-3054550F2146> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
           0x11c10b000 -        0x11c14afff  com.apple.music.apps.midi.device.plugin.Logic-Control (10.0.6 - 3130.20) <DFB79103-FA23-35A6-A484-4FABB1C7E061> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
           0x11dfe7000 -        0x11dff7ff7 +com.novation.automapclientbundle (1.0 - 1.0) <F8956B35-8F2A-3AC1-A8F3-42E3438CFAAC> /Applications/AutomapServer.app/Contents/Resources/AutomapClient.bundle/Content s/MacOS/AutomapClient
           0x124dc4000 -        0x124fbafff  com.apple.audio.codecs.Components (4.0 - 4.0) <05EF9EE8-2047-3FB0-84DA-7A2DD744B64B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
        0x7fff6e48e000 -     0x7fff6e4c1817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff85d80000 -     0x7fff85d97fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff85d98000 -     0x7fff85e86fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff85f1c000 -     0x7fff85f4cfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff85f4d000 -     0x7fff85fd5ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff85fd6000 -     0x7fff8601dfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8601e000 -     0x7fff860e0ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff864f8000 -     0x7fff864fefff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff864ff000 -     0x7fff86576fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff86580000 -     0x7fff865eaff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff865eb000 -     0x7fff8715fff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87160000 -     0x7fff871cfff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff871d0000 -     0x7fff8726dfff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff87329000 -     0x7fff87342ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff87343000 -     0x7fff8734cff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8734d000 -     0x7fff873a4fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff873b2000 -     0x7fff873b7fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff873b8000 -     0x7fff873c9ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff873ca000 -     0x7fff873f6fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff87406000 -     0x7fff876b0ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff876b5000 -     0x7fff876f3ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff876f4000 -     0x7fff87735fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff87736000 -     0x7fff8773aff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff87998000 -     0x7fff8799bff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff8799c000 -     0x7fff879caff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff879cb000 -     0x7fff87a00ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87a01000 -     0x7fff87a1cff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff87a1d000 -     0x7fff87a70fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff87a84000 -     0x7fff87a92fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87a93000 -     0x7fff87abdff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff87ad6000 -     0x7fff87ad7ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff87ad8000 -     0x7fff87d20fff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff87d21000 -     0x7fff87d2afff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87d2b000 -     0x7fff87e6bfff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87e6c000 -     0x7fff87e91ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87ec9000 -     0x7fff8823fffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff889de000 -     0x7fff88ac5ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff88ac6000 -     0x7fff88ad9ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff88b39000 -     0x7fff88b99ff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff88b9a000 -     0x7fff88ba5fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff88ba6000 -     0x7fff88ba7ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff88baa000 -     0x7fff88d62ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
        0x7fff88d63000 -     0x7fff88de0ff7  com.apple.iLifeMediaBrowser (2.8.0 - 637) <1EFC5EFD-AC09-34E9-A96A-951F1FD3F9BC> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff88de1000 -     0x7fff89039ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8903f000 -     0x7fff89048fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff89049000 -     0x7fff89082ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89083000 -     0x7fff891f1ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff891f2000 -     0x7fff892bbfff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff892cf000 -     0x7fff892d1fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff892df000 -     0x7fff89337ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff89338000 -     0x7fff89344ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8938a000 -     0x7fff8938bff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff893cb000 -     0x7fff893faff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff89400000 -     0x7fff8940afff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8940b000 -     0x7fff89416fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff89431000 -     0x7fff89449fff  libexpat.1.dylib (12) <97F4A9A7-CB3E-3BBF-9314-4997FC770E52> /usr/lib/libexpat.1.dylib
        0x7fff8944a000 -     0x7fff89453ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff89454000 -     0x7fff89483fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff89494000 -     0x7fff89585ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff89586000 -     0x7fff89870fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff89871000 -     0x7fff89899ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff898c4000 -     0x7fff899f0fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff899f1000 -     0x7fff89aa9ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89aaa000 -     0x7fff89c1aff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff89c1b000 -     0x7fff89f1afff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89f1b000 -     0x7fff89f40ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff89f41000 -     0x7fff89f51fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff89f71000 -     0x7fff89f78ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff89f79000 -     0x7fff89f79fff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89f7a000 -     0x7fff8a294ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8a295000 -     0x7fff8a2daff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8a2e8000 -     0x7fff8a34cff3  com.apple.datadetectorscore (5.0 - 354.0) <025DCBCF-B208-3515-B79F-0190C648A728> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8a34d000 -     0x7fff8a41eff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8a41f000 -     0x7fff8a423ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8a465000 -     0x7fff8a6f6ff7  com.apple.RawCamera.bundle (5.03 - 729) <DBA059CC-E78F-356F-B435-DA62A746F4D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8a6fd000 -     0x7fff8a70aff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a70b000 -     0x7fff8a71ffff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8a720000 -     0x7fff8a722fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8a723000 -     0x7fff8b570ffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8b571000 -     0x7fff8b575fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff8b576000 -     0x7fff8b57aff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff8b93a000 -     0x7fff8bc0efc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8bc0f000 -     0x7fff8bc61fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8bc62000 -     0x7fff8bc74fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8bc75000 -     0x7fff8bc77ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8bc78000 -     0x7fff8bc79fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8bca2000 -     0x7fff8bd05ff7  com.apple.SystemConfiguration (1.13 - 1.13) &

    I've tried loading old verison of project into LPX and instead of doing a Cut Section, i deleted a few bars and then moved the end of the song forward. This played for a few mins then crash, then refused to load it as before.

  • How to add a library (libSomeRandomlib.so) to a project....??

    Ok, so I've been trying to get CERN's ROOT program/libraries to work in an xcode project for a while, but I'm running into one really weird error, and I think I may just not know how to add a library to a project correctly.
    Suppose I create a new Xcode C++ command line tool project. I hit Build and go, and it gives me a nice little Hello World! in the console, just as it should. If I then click on the project in Groups & Files, go to Project>Add to Project..., and choose, say, libCint.so, from my root/lib directory, and click ok, then click Build & Go, I get an error in the console:
    dyld: Library not loaded: @rpath/libCint.so
    Referenced from: /Users/paulthompson/Documents/Programming/Build Products/Debug/LibraryIncludeTest
    Reason: image not found
    sharedlibrary apply-load-rules all
    Data Formatters temporarily unavailable, will re-try after a 'continue'. (Cannot call into the loader at present, it is locked.)
    My assumption is that either I'm missing a step in the process of adding a library, or else there is something jacked up with the libraries themselves. Anyone have any advice?
    Thanks,
    Paul
    EDIT* Oh, I should mention that the actuall binary that gets built after adding the library WILL execute properly in the Finder, or from terminal, just not with the Build & Go, or Go commands from within xcode.
    Message was edited by: TraxusIV

    TraxusIV wrote:
    Results of otool:
    LibraryIncludeTest:
    @rpath/libCint.so (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 123.0.0)
    Macintosh-9:Debug paulthompson$ otool -L /Applications/CERNRoot/root/lib/libCint.so
    /Applications/CERNRoot/root/lib/libCint.so:
    @rpath/libCint.so (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    I honestly don't know much about @rpath. I found this page that explains it a bit more: http://blogs.sun.com/dipol/entry/dynamiclibraries_rpath_andmac
    So, since I don't want to deploy with the environment variable set, I should ask, what IS the correct, MacOS X way to do it?
    The best way to find that is to look at how Apple does it. They put frameworks in /System/Library/Frameworks and regular shared libraries in the standard places. You can do the same. Put your frameworks into /Library/Frameworks and your shared libraries into /usr/local-based paths.
    If you want to create stand-alone executables that can be installed via drag-n-drop, you can put shared libraries inside the application bundle. If your shared libraries/frameworks are elsewhere, you will need some sort of installer to get them installed.
    I've been sifting through Apple's developer documentation but I have yet to find a concise, straightforward explanation of how to add shared libraries. I'm horribly confused at this point. Is there a good tutorial available anywhere for both the general unix case of linking to dylibs and .so's, and the Mac specific case?
    Hopefully someone else knows an answer for this one.
    *EDIT* I do already have the variable defined both in ~/.MacOS/environment.plist and also in Xcode as an additional user variable.
    I'm not sure about the whole RPATH thing. Setting environment.plist will define environment variables for use in the Finder, but that is really a hack. There are better ways to do it, but if you are porting some open-source programs, that may be the only way. You should be able to define those variables in Xcode. You have to selected the debug executable under "Exectuables"

  • Project Analytics 7.9.6.1 - Error while running a full load

    Hi All,
    I am performing a full load for Projects Analytics and get the following error,
    =====================================
    ERROR OUTPUT
    =====================================
    1103 SEVERE Wed Nov 18 02:49:36 WST 2009 Could not attach to workflow because of errorCode 36331 For workflow SDE_ORA_CodeDimension_Gl_Account
    1104 SEVERE Wed Nov 18 02:49:36 WST 2009
    ANOMALY INFO::: Error while executing : INFORMATICA TASK:SDE_ORA11510_Adaptor:SDE_ORA_CodeDimension_Gl_Account:(Source : FULL Target : FULL)
    MESSAGE:::
    Irrecoverable Error
    Error while contacting Informatica server for getting workflow status for SDE_ORA_CodeDimension_Gl_Account
    Error Code = 36331:Unknown reason for error code 36331
    Pmcmd output :
    Session log initialises NULL value to mapping parameter MPLT_ADI_CODES.$$CATEGORY. This is then used insupsequent SQL and results in ORA-00936: missing expression error following are the initialization section and the load section containing the error in the log
    Initialisation
    DIRECTOR> VAR_27028 Use override value [DataWarehouse] for session parameter:[$DBConnection_OLAP].
    DIRECTOR> VAR_27028 Use override value [ORA_11_5_10] for session parameter:[$DBConnection_OLTP].
    DIRECTOR> VAR_27028 Use override value [ORA_11_5_10.DATAWAREHOUSE.SDE_ORA11510_Adaptor.SDE_ORA_CodeDimension_Gl_Account_Segments.log] for session parameter:[$PMSessionLogFile].
    DIRECTOR> VAR_27027 Use default value [] for mapping parameter:[MPLT_ADI_CODES.$$CATEGORY].
    DIRECTOR> VAR_27028 Use override value [4] for mapping parameter:[MPLT_SA_ORA_CODES.$$DATASOURCE_NUM_ID].
    DIRECTOR> VAR_27028 Use override value [DEFAULT] for mapping parameter:[MPLT_SA_ORA_CODES.$$TENANT_ID].
    DIRECTOR> TM_6014 Initializing session [SDE_ORA_CodeDimension_Gl_Account_Segments] at [Wed Nov 18 02:49:11 2009].
    DIRECTOR> TM_6683 Repository Name: [repo_service]
    DIRECTOR> TM_6684 Server Name: [int_service]
    DIRECTOR> TM_6686 Folder: [SDE_ORA11510_Adaptor]
    DIRECTOR> TM_6685 Workflow: [SDE_ORA_CodeDimension_Gl_Account_Segments] Run Instance Name: [] Run Id: [17]
    DIRECTOR> TM_6101 Mapping name: SDE_ORA_CodeDimension_GL_Account_Segments [version 1].
    DIRECTOR> TM_6963 Pre 85 Timestamp Compatibility is Enabled
    DIRECTOR> TM_6964 Date format for the Session is [MM/DD/YYYY HH24:MI:SS]
    DIRECTOR> TM_6827 [C:\Informatica\PowerCenter8.6.1\server\infa_shared\Storage] will be used as storage directory for session [SDE_ORA_CodeDimension_Gl_Account_Segments].
    DIRECTOR> CMN_1802 Session recovery cache initialization is complete.
    DIRECTOR> TM_6703 Session [SDE_ORA_CodeDimension_Gl_Account_Segments] is run by 32-bit Integration Service [node01_ASG596138], version [8.6.1], build [1218].
    MANAGER> PETL_24058 Running Partition Group [1].
    MANAGER> PETL_24000 Parallel Pipeline Engine initializing.
    MANAGER> PETL_24001 Parallel Pipeline Engine running.
    MANAGER> PETL_24003 Initializing session run.
    MAPPING> CMN_1569 Server Mode: [UNICODE]
    MAPPING> CMN_1570 Server Code page: [MS Windows Latin 1 (ANSI), superset of Latin1]
    MAPPING> TM_6151 The session sort order is [Binary].
    MAPPING> TM_6185 Warning. Code page validation is disabled in this session.
    MAPPING> TM_6156 Using low precision processing.
    MAPPING> TM_6180 Deadlock retry logic will not be implemented.
    MAPPING> TM_6307 DTM error log disabled.
    MAPPING> TE_7022 TShmWriter: Initialized
    MAPPING> DBG_21075 Connecting to database [orcl], user [DAC_REP]
    MAPPING> CMN_1716 Lookup [mplt_ADI_Codes.Lkp_Master_Map] uses database connection [Relational:DataWarehouse] in code page [MS Windows Latin 1 (ANSI), superset of Latin1]
    MAPPING> CMN_1716 Lookup [mplt_ADI_Codes.Lkp_Master_Code] uses database connection [Relational:DataWarehouse] in code page [MS Windows Latin 1 (ANSI), superset of Latin1]
    MAPPING> CMN_1716 Lookup [mplt_ADI_Codes.Lkp_W_CODE_D] uses database connection [Relational:DataWarehouse] in code page [MS Windows Latin 1 (ANSI), superset of Latin1]
    MAPPING> TM_6007 DTM initialized successfully for session [SDE_ORA_CodeDimension_Gl_Account_Segments]
    DIRECTOR> PETL_24033 All DTM Connection Info: [<NONE>].
    MANAGER> PETL_24004 Starting pre-session tasks. : (Wed Nov 18 02:49:14 2009)
    MANAGER> PETL_24027 Pre-session task completed successfully. : (Wed Nov 18 02:49:14 2009)
    DIRECTOR> PETL_24006 Starting data movement.
    MAPPING> TM_6660 Total Buffer Pool size is 32000000 bytes and Block size is 128000 bytes.
    READER_1_1_1> DBG_21438 Reader: Source is [asgdev], user [APPS]
    READER_1_1_1> BLKR_16051 Source database connection [ORA_11_5_10] code page: [MS Windows Latin 1 (ANSI), superset of Latin1]
    READER_1_1_1> BLKR_16003 Initialization completed successfully.
    WRITER_1_*_1> WRT_8147 Writer: Target is database [orcl], user [DAC_REP], bulk mode [OFF]
    WRITER_1_*_1> WRT_8221 Target database connection [DataWarehouse] code page: [MS Windows Latin 1 (ANSI), superset of Latin1]
    WRITER_1_*_1> WRT_8124 Target Table W_CODE_D :SQL INSERT statement:
    INSERT INTO W_CODE_D(DATASOURCE_NUM_ID,SOURCE_CODE,SOURCE_CODE_1,SOURCE_CODE_2,SOURCE_CODE_3,SOURCE_NAME_1,SOURCE_NAME_2,CATEGORY,LANGUAGE_CODE,MASTER_DATASOURCE_NUM_ID,MASTER_CODE,MASTER_VALUE,W_INSERT_DT,W_UPDATE_DT,TENANT_ID) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    WRITER_1_*_1> WRT_8124 Target Table W_CODE_D :SQL UPDATE statement:
    UPDATE W_CODE_D SET SOURCE_CODE_1 = ?, SOURCE_CODE_2 = ?, SOURCE_CODE_3 = ?, SOURCE_NAME_1 = ?, SOURCE_NAME_2 = ?, MASTER_DATASOURCE_NUM_ID = ?, MASTER_CODE = ?, MASTER_VALUE = ?, W_INSERT_DT = ?, W_UPDATE_DT = ?, TENANT_ID = ? WHERE DATASOURCE_NUM_ID = ? AND SOURCE_CODE = ? AND CATEGORY = ? AND LANGUAGE_CODE = ?
    WRITER_1_*_1> WRT_8124 Target Table W_CODE_D :SQL DELETE statement:
    DELETE FROM W_CODE_D WHERE DATASOURCE_NUM_ID = ? AND SOURCE_CODE = ? AND CATEGORY = ? AND LANGUAGE_CODE = ?
    WRITER_1_*_1> WRT_8270 Target connection group #1 consists of target(s) [W_CODE_D]
    WRITER_1_*_1> WRT_8003 Writer initialization complete.
    READER_1_1_1> BLKR_16007 Reader run started.
    WRITER_1_*_1> WRT_8005 Writer run started.
    WRITER_1_*_1> WRT_8158
    Load section
    *****START LOAD SESSION*****
    Load Start Time: Wed Nov 18 02:49:16 2009
    Target tables:
    W_CODE_D
    READER_1_1_1> RR_4029 SQ Instance [mplt_BC_ORA_Codes_GL_Account_Segments.Sq_Fnd_Flex_Values] User specified SQL Query [SELECT
    FND_FLEX_VALUES.FLEX_VALUE_SET_ID,
    FND_FLEX_VALUES.FLEX_VALUE,
    MAX(FND_FLEX_VALUES_TL.DESCRIPTION),
    FND_ID_FLEX_SEGMENTS.ID_FLEX_NUM,
    FND_ID_FLEX_SEGMENTS.APPLICATION_COLUMN_NAME
    FROM
    FND_FLEX_VALUES,
    FND_FLEX_VALUES_TL,
    FND_ID_FLEX_SEGMENTS,
    FND_SEGMENT_ATTRIBUTE_VALUES
    WHERE
    FND_FLEX_VALUES.FLEX_VALUE_ID = FND_FLEX_VALUES_TL.FLEX_VALUE_ID AND FND_FLEX_VALUES_TL.LANGUAGE ='US' AND
    FND_ID_FLEX_SEGMENTS.FLEX_VALUE_SET_ID =FND_FLEX_VALUES.FLEX_VALUE_SET_ID AND
    FND_ID_FLEX_SEGMENTS.APPLICATION_ID = 101 AND
    FND_ID_FLEX_SEGMENTS.ID_FLEX_CODE ='GL#' AND
    FND_ID_FLEX_SEGMENTS.ID_FLEX_NUM =FND_SEGMENT_ATTRIBUTE_VALUES.ID_FLEX_NUM AND
    FND_SEGMENT_ATTRIBUTE_VALUES.APPLICATION_ID =101 AND
    FND_SEGMENT_ATTRIBUTE_VALUES.ID_FLEX_CODE = 'GL#' AND
    FND_ID_FLEX_SEGMENTS.APPLICATION_COLUMN_NAME=FND_SEGMENT_ATTRIBUTE_VALUES.APPLICATION_COLUMN_NAME AND
    FND_SEGMENT_ATTRIBUTE_VALUES.ATTRIBUTE_VALUE ='Y'
    GROUP BY
    FND_FLEX_VALUES.FLEX_VALUE_SET_ID,
    FND_FLEX_VALUES.FLEX_VALUE,
    FND_ID_FLEX_SEGMENTS.ID_FLEX_NUM,
    FND_ID_FLEX_SEGMENTS.APPLICATION_COLUMN_NAME]
    READER_1_1_1> RR_4049 SQL Query issued to database : (Wed Nov 18 02:49:17 2009)
    READER_1_1_1> RR_4050 First row returned from database to reader : (Wed Nov 18 02:49:17 2009)
    LKPDP_3> DBG_21312 Lookup Transformation [mplt_ADI_Codes.Lkp_W_CODE_D]: Lookup override sql to create cache: SELECT W_CODE_D.SOURCE_NAME_1 AS SOURCE_NAME_1, W_CODE_D.SOURCE_NAME_2 AS SOURCE_NAME_2, W_CODE_D.MASTER_DATASOURCE_NUM_ID AS MASTER_DATASOURCE_NUM_ID, W_CODE_D.MASTER_CODE AS MASTER_CODE, W_CODE_D.MASTER_VALUE AS MASTER_VALUE, W_CODE_D.W_INSERT_DT AS W_INSERT_DT, W_CODE_D.TENANT_ID AS TENANT_ID, W_CODE_D.DATASOURCE_NUM_ID AS DATASOURCE_NUM_ID, W_CODE_D.SOURCE_CODE AS SOURCE_CODE, W_CODE_D.CATEGORY AS CATEGORY, W_CODE_D.LANGUAGE_CODE AS LANGUAGE_CODE FROM W_CODE_D
    WHERE
    W_CODE_D.CATEGORY IN () ORDER BY DATASOURCE_NUM_ID,SOURCE_CODE,CATEGORY,LANGUAGE_CODE,SOURCE_NAME_1,SOURCE_NAME_2,MASTER_DATASOURCE_NUM_ID,MASTER_CODE,MASTER_VALUE,W_INSERT_DT,TENANT_ID
    LKPDP_3> TE_7212 Increasing [Index Cache] size for transformation [mplt_ADI_Codes.Lkp_W_CODE_D] from [1000000] to [4734976].
    LKPDP_3> TE_7212 Increasing [Data Cache] size for transformation [mplt_ADI_Codes.Lkp_W_CODE_D] from [2000000] to [2007040].
    READER_1_1_1> BLKR_16019 Read [625] rows, read [0] error rows for source table [FND_ID_FLEX_SEGMENTS] instance name [mplt_BC_ORA_Codes_GL_Account_Segments.FND_ID_FLEX_SEGMENTS]
    READER_1_1_1> BLKR_16008 Reader run completed.
    LKPDP_3> TM_6660 Total Buffer Pool size is 609824 bytes and Block size is 65536 bytes.
    LKPDP_3:READER_1_1> DBG_21438 Reader: Source is [orcl], user [DAC_REP]
    LKPDP_3:READER_1_1> BLKR_16051 Source database connection [DataWarehouse] code page: [MS Windows Latin 1 (ANSI), superset of Latin1]
    LKPDP_3:READER_1_1> BLKR_16003 Initialization completed successfully.
    LKPDP_3:READER_1_1> BLKR_16007 Reader run started.
    LKPDP_3:READER_1_1> RR_4049 SQL Query issued to database : (Wed Nov 18 02:49:18 2009)
    LKPDP_3:READER_1_1> CMN_1761 Timestamp Event: [Wed Nov 18 02:49:18 2009]
    LKPDP_3:READER_1_1> RR_4035 SQL Error [
    ORA-00936: missing expression
    Could you please suggest what the issue might be and how it can be fixed?
    Many thanks,
    Kiran

    I have continued related detains in the following thread,
    Mapping Parameter  $$CATEGORY not included in the parameter file (7.9.6.1)
    Apologies for the inconvenience.
    Thanks,
    Kiran

  • "Invalid Binary" error on app. Apple's reason is "Missing 64-bit support" due to changes from Feb 1st 2015

    Hello
    Can anyone help me with an "Invalid Binary" error on my app.
    Apple's response is:
    Dear developer,
    We have discovered one or more issues with your recent submission for "DPS Notes". To process your submission, the following issues must be corrected:
    Missing 64-bit support - Beginning on February 1, 2015 new iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK. Beginning June 1, 2015 app updates will also need to follow the same requirements. To enable 64-bit in your project, we recommend using the default Xcode build setting of “Standard architectures” to build a single binary with both 32-bit and 64-bit code.
    Once these issues have been corrected, use Xcode or Application Loader to upload a new binary to iTunes Connect. Choose the new binary on the app’s Details page in My Apps on iTunes Connect, and click Submit for Review.
    Regards,
    The App Store team
    Can someone from the Adobe DPS team let me know how I can recreate the .ipa file so that it will meet Apple's requirements.
    They seem to have moved the goalposts since I created the original .ipa file in December. I thought I'd submitted it, just went back through iTunes Connect to check info as I hadn't heard anything from them, then hit this brick wall. Any help offered would be much appreciated.
    Thanks
    Rebecca

    Hi
    I've Updated App Builder, gone back to the DPS App Builder portal, regenerated new zip and ipa files and downloaded them.
    I clicked the Application Loader 3.0 link, downloaded the latest Appication Version, clicked on the "Deliver your App" button, and submitted the newly built App that was built using 32.4.2 version. (All the app icons were listed as "stored on server" so I presume they are all ok). The .zip file appeared to 'deliver' to Apple successfully. I've tried to resubmit it but get ta "Redundant Binary Upload. There already exists a binary upload with build version..." error message, so presume the orginal binary upload was successful. I have no idea how I can get this app from the "prepare for submission", to "in review". The last time I thought I'd submitted this app I got as far as the "waiting for review" status, and no further.
    At the moment I don't have a"+" button in the Build section - as mentioned on page 66 of Adobe's Step_by_step_guide_to_dps_se.pdf.
    So I can't add the new .zip file to the iTunes Connect > My Apps portal in the Build section of the Versions tab.
    I have put a support email into Apple, but don't expect a reply any day soon.
    The problem with starting all the way back through the App wizard is that I really want to use all the same App Name, Bundle ID, and details etc.
    Do you mean, going back to the Folio Producer Panel, and building a whole new App?
    This process certainly isn't for the faint-hearted!
    HELP!

  • Using a JAR file as a project file

    My application allows the user to create projects. Previously, a project file was simply an XML file. Now, a project file needs to also contain many images.
    I thought it would be a good idea to simply use a JAR file as my project file.
    Since I've really never really worked with JAR files and the java.util.Jar package directly, I have a few questions.
    1) Would it be better just to simply store the images as binary in the XML file? I just spent a good amount of time making the XML file very readable so I thought it would be better to keep the images separate while still having a single "project" file.
    2) Is there anything inherently wrong with the way I'm working with the JAR file in the code below?
    Simple XML file:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE project [
      <!ELEMENT project (img+)>
      <!ELEMENT img EMPTY>
      <!ATTLIST img src CDATA #REQUIRED>
    ]>
    <project>
         <img src="blah.jpg"/>
    </project>
    import java.io.*;
    import java.util.jar.JarFile;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.DefaultHandler;
    public class LoaderTest {
        private String imageName;
        public LoaderTest() {
            InputStream i = null;
            JarFile jf = null;
            try {
                jf = new JarFile("project.jar");
                i = jf.getInputStream(jf.getJarEntry("project.xml"));
                // Here's my simple XML parser to load the project and images
                SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
                parser.parse(new InputSource(i), new DefaultHandler() {
                    @Override
                    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
                        // Right now we only care about images
                        if (qName.equalsIgnoreCase("img")) {
                            imageName = attributes.getValue("src");
                // Load the image from the inputstream
                java.awt.image.BufferedImage img = javax.imageio.ImageIO.read(jf.getInputStream(jf.getJarEntry(imageName)));
                // Display the image in a JFrame
                javax.swing.JFrame f = new javax.swing.JFrame();
                f.setLayout(new java.awt.BorderLayout());
                f.setSize(800, 600);
                f.getContentPane().add(new javax.swing.JLabel(new javax.swing.ImageIcon(img)), java.awt.BorderLayout.CENTER);
                f.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
                f.setVisible(true);
            } catch (ParserConfigurationException ex) {
                ex.printStackTrace();
            } catch (SAXException ex) {
                ex.printStackTrace();
            } catch (IOException ex) {
                ex.printStackTrace();
            } finally {
                // Do our best to close the input streams
                if (i != null) {
                    try {
                        i.close();
                    } catch (IOException ex) {}
                if (jf != null) {
                    try {
                        jf.close();
                    } catch (IOException ex) {}
        public static void main(String[] args) {
            new LoaderTest();
    }Thank you!

    1) I also think it's much better to keep your images separate from your XML, this prevents a lot of in case you just want to read XML data
    2) What's exactly going wrong here? For the project.xml, make sure it's not inside a directory within the JAR file, or else the variable i will be null. Otherwise it looks fine..

  • How do I use a precompiled dylib in my xcode project?

    Hello all you brainiacs out there!
    I want to use mongoDB as my database for my iPhone projects.
    I have compiled their code, with instructions from http://api.mongodb.org/c/current/building.html... successfully.
    I ran all the tests, successfully.
    I have two files, libmongoc.dylib and libbson.dylib generated.
    I have imported them into a brand-new xcode project, (build phases, link binary with libraries, hit '+' sign, add other and browse to these two files)
    I copied the .h files (bson.h and mongo.h) to my project.
    Can I now use the functions in my project as defined to connect, insert, delete.... etc.
    I am a noob at iPhone development (2 months) but I do know what I am doing... (I passed the 2  IOS 5 tests at brainbench.com scoring just under 4/5)
    Can someone walk thru the steps after loading in the dylibs and including the C headers?
    Regards,
    Dan

    Danny Bertrand wrote:
    Is there a list of specific things that you CAN'T do/have to sell on the Apple store?
    The App Store Review guidelines have such a list.
    But rather than focusing on what you can't do, you should focus instead on what you MUST do. One of those "must do" items is comply with any licensing agreements for code or resources you include with your app. It can be quite enlightening to ignore what people say about "open source" and "free software" and actually read those licenses say and research their history. It isn't Apple that is restricting you here . As a wise person once told me - "Follow the money". That will lead you from the Free Software Foundation to academic think tanks and writers right back to .. .some interesting places.
    Welcome to the world of Apple - everybody's bullseye.

  • Reposearch: a tool for finding binary repos

    Info page: http://xyne.archlinux.ca/info/reposearch
    After following this thread I got the idea to create a database for third-party binary repositories. I started by grabbing all of the binary repos listed on the Unofficial User Repositories wiki page.
    The current repo list can be found at http://xyne.archlinux.ca/interface/reposearch.php
    I then wrote a simple php page to handle queries and then reposearch to query the list from the command line. See the info page to learn about search options.
    Example output:
    $reposearch -s xyne
    ##### any #####
    [xyne-any]
    # The home of Powerpill and Xyne's other contributions.
    # More info including a package list can be found at http://xyne.archlinux.ca/repositories
    Server = http://xyne.archlinux.ca/repos/any/
    $reposearch -s game
    ##### x86_64 #####
    [arch-games]
    # The Arch Linux Gaming repository project
    Server = http://twilightlair.net/files/arch/games/x86_64
    Server = http://arch-games.iskrembilen.com/x86_64
    Server = http://arch-games.ontheplayground.co.uk/x86_64
    $reposearch -s game -a all
    ##### i686 #####
    [arch-games]
    # The Arch Linux Gaming repository project
    Server = http://twilightlair.net/files/arch/games/i686
    Server = http://arch-games.iskrembilen.com/i686
    Server = http://arch-games.ontheplayground.co.uk/i686
    ##### i686 #####
    [esclinux]
    # Mostly games, interactive fiction and abc notation stuffs already on AUR
    Server = http://download.tuxfamily.org/esclinuxcd/ressources/repo/i686/
    ##### x86_64 #####
    [arch-games]
    # The Arch Linux Gaming repository project
    Server = http://twilightlair.net/files/arch/games/x86_64
    Server = http://arch-games.iskrembilen.com/x86_64
    Server = http://arch-games.ontheplayground.co.uk/x86_64
    Hopefully the usefulness of this tool will grow with the number or repos.
    Aside from the usual questions and feedback, I would really appreciate it if you could post repo information in this thread so that I can keep the list up-to-date and comprehensive. Both modification of current repo data and the addition of new repos are welcome. Please post info in the following form to make it easier for me:
    ##### <architecture> #####
    [<repo>]
    # descriptions and other information
    # multiple lines if necessary
    Server = http://www.example.com/repo/
    Server = http://www.anotherexample.com/mirror/repo/
    WARNING!
    As mentioned in the help message, you use the third-party repos that you find through repo-search entirely at  your own risk. Don't install packages from repos that you don't trust. They can contain malware and other creatively wicked things.

    cinan wrote:I thought someting like: "Checking 1/20 repository"
    Maybe the OP is unclear. The package "reposearch" doesn't actually contain the repo list. The repo list is on my site and reposearch sends queries to the site to get a subset of the list. There is no way to intermittently report progress due to the way that apache and php work.
    How long are your searches taking? What search patterns are you using? Queries should be really fast.
    Army wrote:I vote for Xyne to become a TU and later dev (in case you want to)! I have your complete repo installed on my computer and many of them (about half or so) are really helpful for me, the rest is about to become helpful
    I'd definitely like to become a dev, but until I learn a "serious" programming language such as C or C++, I don't think I can.  I appreciate your support though.
    I'll learn them eventually, but Haskell is next on my list so it may take a while.

  • Report using Binary file

    Hi All , can anyone help me here ...
    I used “Write to Binary” to  write my report , at first stage this file is writing headers , including column  headings . at 2nd writing stage it is writing  data in columns.  This file can be viewed in .doc or .xls format. I have three issues
    1.         If I want to print this file from Front Panel  , what I should do?
    2.         other thing is if I stop logging and then start for another span , it starts writing from the first line instead of from last line  , because of this problem it is causing over-writing .
    3          another thing  , lets say if for 2nd or 3rd logging , I want to display sub-headings (test-1 , test-2) , how to insert , for example :
    MAIN HEADING (COMPANY NAME , REPORT TITLE )
    DATE , PRODUCT INFO , OPERATOR NAME
    COL1              COL2              COL3              COL4
    Subheading (test-1)
    Value1             Value2             Value3             Valye4
    Value1             Value2             Value3             Valye4
    Value1             Value2             Value3             Valye4
    Subheading (Test-2)
    Value1             Value2             Value3             Valye4
    Value1             Value2             Value3             Valye4
    Value1             Value2             Value3             Valye4
    Any help in this regard will be highly appreciated.
    Regards
    Faiyaz
    Attachments:
    report-writing-binaryfile.vi ‏68 KB
    02-display-subVI.vi ‏12 KB

    Hi Faiyaz,
    1. How Do I Print a File Programmatically From LabVIEW?
    2. Please the Programming >> File I/O >> Advanced File Functions >> Set File Position function on the block diagram after the Open/Create/Replace File function and set the from input to "end." This will append new data to the end of the file.
    3. You can simply add that information to the Format into String you are writing to the second Write to Binary file.
    Michael K.
    | Michael K | Project Manager | LabVIEW R&D | National Instruments |

  • Creating a static library with XCode cross-project references.

    I have a project and am trying to move a lot of the code into a static shared library, and added a cross project reference to this library in my app.
    However, when I moved a file from my app to the library (removing the reference in my app and moving the file to the library's project directory), and try building my app, I get compiler error messages as if the file I have moved doesn't exist.
    When I build my library project, it says the build has succeeded, but the library.a file remains red. It is also red in the my referencing app project.
    If anybody has any experience setting up cross-project references in XCode, I'd appreciate any help.
    If it helps identify where the problem is, I've performed the following steps to setup the library and cross-project reference:
    1. I created a new Cocoa Touch static library project in XCode which would house the shared code.
    2. I changed the global settings in XCode to place the build products in a shared build directory (rather that the project directory), and made sure the intermediate build files are placed with the build products.
    I changed this using the Preferences menu, but have also gone into the project info for both my app project and the library project and made made sure it is set to place the build projects in the custom shared build directory.
    3. I then added a Source Tree, and made sure that the Path of the project directory of the library project.
    4. I added a project reference to the library project's .xcodeproj file in my application project. I changed the library project reference so that it was relative to JIGSAW24LIBRARY.
    5. I configured the library dependencies by going to my app's target's info, and adding a direct dependency to the library project.
    6. In my app's info build tab, I changed the user header search paths so that it uses the search tree I setup (I used the $(SEARCHTREE_NAME) notation, but checked that this resolves to a valid path). I also made sure that the Always Search User Paths checkbox is checked, and that the Library Search Paths is blank.
    7. I click-dragged the library.a file under the library project so that it was under the Link Binary With Library sub folder of my app's target.
    For step 5, I've also tried adding the reference to the other project as a linked library, rather than a direct dependency, but this doesn't seem to work either.

    I managed to fix the problem. The steps above seem to be correct. The problem seems to be related to the source trees that are defined...
    I was previously using an absolute path for the source tree which pointed at the folder containing the library project. I changed this to a relative path to the same folder (relative from the calling project) and this seems to fix it.
    I'd double checked that the absolute path specified was correct, so it looks like the user header search paths specified must be relative to the current project.

Maybe you are looking for