Separating application logic from GUI

I don't know if this is the right forum to ask this question. I know that It's a very bad practice to embed application logic in GUI code, they have to be separated and communicate in some way. I've read somewhere that they need a kind of an adapter class or a knowledge of design patterns, which I actually don't have.
Could someone direct me to a nice tutorial, which explains this issue? Thank you.

hey KidJava, here is something about separating application logic from GUI ...
http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step.html

Similar Messages

  • How to design application to decouble business logic from GUIs on SAP N7.0

    Hi guys,
    How should I go about designing a program, so that I can decouple the business logic from GUI in ABAP in such a way that I can change the GUI easily or use different GUIs eg. on a scanner etc..

    You may use BDT (business data toolset). It's rather complex. Or use web dynpro but also complex. Or you can program it by yourself (much less difficult).

  • Separating business logic from presentation

    Hi,
    I'm not sure if this is even the right forum for my question..but here it goes:
    I have a device that is throwing out data into some kind of a storage device/server. Now, I have an application that reads the data from that storage and charts it. Let's say the frequency is 10 points a second.
    Some of my questions below may seem strange, because i don't really understand the concepts and technologies involved.
    1. What kind of storage device/server could i be looking at. What kind of server...J2EE App Server, web server?
    2. How can my application be automatically notified when the server gets new data? How will that new data be passed on to my client app?
    3. Let's say I have 10 different instances of the same application running on 10 different machines. Since I wouldn't want each instance to request for new data from the server, i would like the server to broadcast any new data to all the client apps that are attached to it. How can this be done?
    4. Let's say I need to process the data in some form before it gets displayed on the charts. How can this processing be done on the server side itself before being presented to the client app? Basically, how can the logic be separated from the presentation?
    5. If the chart is really a Swing component, but needs to be displayed in a Win32 environment (perhaps MFC dialog box or frame), how can that be done? Does this scenario change how I would address the above questions?
    I really don't even know what technologies to look into to answer the above questions. Any pointers will be appreciated. I just want to start learning about how the above can be accomplished.
    Thanks.

    Here goes the answers to your question. (according to my knowledge)
    1. Deciding a server is depends on your design of the application. According to point 3, you are better to use JMS with publish and subscribe model. In this case you have to choose a JMS server that supports your needs
    2. Again it is depends on your Design, one way is to put a shared memory for data and write a thread that reads from the shared memory or use java.net package or use JMS etc.
    3. Create one JMS source and all other will be JMS destinations.
    4. You can use EJBs or Java classes based on your requirements and design to process the data.
    5. Using AWT or Swing as a presentatin layer is good. But you desperately want to display it using Win 32 objects, then why dont to go for Microsoft technologies??

  • Do you want to completely separate application logic from presentation logi

    There is solution!
    http://javaby.sf.net
    JavaBY Template Engine is a general template engine used for generating any type of text document from a template. JavaBY Template Engine is used mostly for generating HTML from servlets but it can also be used for generating XML, RTF, WML, e-mail text, source code and configuration files.
    Template has existed in different forms for several years, its concepts are proven, its implementation is robust and it performs well. Using JavaBY Template Engine instead of JavaServer Pages means that you can completely separate your content from your markup, as the originators of markup languages intended.
    The difference between JavaBY Template Engine and JSP is that content can be generated outside a webserver and that the layout is completely separated from the application code. JavaBY Template Engine defines a well-formed tag language (by default it is embedded in HTML comments). There is no scripting language involved. No calls are made from the template to the application and no calls are made from the application code to the template. The result of this is that an application becomes easier to maintain and you get a higher degree of reuse since the same template can be used with different application code and the same application code can be used with different templates.
    JBYTE vs. WebMacro, Velocity, Freemarker.
    JBYTE is genuine template engine, which not contain a macro language definitions.
    However, Velosity, WebMacro, Freemarker is not template engines. It's macro languages embedded in HTML.
    So, if you want to use genuine template engine, your choice JBYTE.
    When you use JBYTE, you not need to know another macro language or programming language.
    You use Java for Model and Controller layer of MVC architecture and use pure HTML for View.

    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 9.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data in the profile folder.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Seperate business logic from application logic

    Hi guys,
    I am looking for a good article explaining the princiaples of seperating between Business Logic & Integartion logic.
    The articale will be used to exlplain the prinicples SAP PI is based on when it comes to integration between 3rd party systems (Non -SAP) missign the application layer and buisness logic.
    If any one has a link to an article as such.
    Will be most appriciated.
    Regards.
    Nimrod Gisis

    It seems that the general rule to making a GUI
    application is to seperate the "Business Logic" from
    the "Presentation Logic". This is absolutely true.
    From this, I'm guessing I'll
    need to package all my GUI stuff together, and all the
    business logic layer stuff together.If you mean the package names and structure then I would had adapted this structure:
    1. I will have a package under which I will put the application common classes and interfaces.
    com.myapp.common.eventhandler.EventHandler (interface)
    com.myapp.common.eventhandler.AbstractEventHandler (default implementation)
    com.myapp.common.form.Form (interface)
    com.myapp.common.form.AbstractForm (default implementation)2. Create for each subject area its own package:
    com.myapp.product.AddNewProductForm
    com.myapp.product.AddNewProdcutEventHandler
    com.myapp.sales.PriceListEeventHandler
    com.myapp.sales.PriceListEeventHandler
    The GUI will then talk to the Biz lay through an
    interface right?As I illustrated through my previous example, you should have common interfaces and you might need to create Abstract classes that encapsulates the common implementation for these interfaces, then for each GUI Form or Web Page you will create its specific implementation class which inherits from the abstract class.
    Finally if you were asking about the deployment packaging:
    1. Create for each EJB its own jar file then bundle these Jar files under one module jar file, which represents the EJB module.
    2.Package the web application (JSP, Servlets, HTML, Images, CSS, and Java script) in one Web module WAR file.
    3. Package your client application module in its own jar file.
    4. Assemble the EJB module Jar, Web module War, and Client module Jar in one J2EE package which will be an EAR file so that your whole package will be assembled in one EAR file at the end.
    Try the "Application Assembly Tool" which comes with WebSphere. It will organize your application and facilitate this kind of integration.
    - Sherif.

  • Logic Pro 9 (9.0.0).   Message You can't use this version of the application Logic Pro 9 with this version of Mac OS X You have Logic Pro 9 9.0.0.   I have been told that I can use the Logic Pro 9.1.4 Update (.dmg) which you can download from Apple Logic

    Since upgrading to lion, I can't use Logic pro, hope someone can help.  thank you
    Logic Pro 9 (9.0.0).
    Message
    You can't use this version of the application Logic Pro 9 with this version of Mac OS X
    You have Logic Pro 9 9.0.0.
    I have been told that I can use the Logic Pro 9.1.8 Update (.dmg) which you can download from Apple Logic Support, although when I try to upgrade my I get this message:
    An eligible Logic Pro version was not found in the Applications folder. This update requires Logic Pro version 9.0 or higher.

    Since upgrading to lion, I can't use Logic pro, hope someone can help.  thank you
    Logic Pro 9 (9.0.0).
    Message
    You can't use this version of the application Logic Pro 9 with this version of Mac OS X
    You have Logic Pro 9 9.0.0.
    I have been told that I can use the Logic Pro 9.1.8 Update (.dmg) which you can download from Apple Logic Support, although when I try to upgrade my I get this message:
    An eligible Logic Pro version was not found in the Applications folder. This update requires Logic Pro version 9.0 or higher.

  • How to set an Application Item from PL/SQL

    I am attempting to set an Application Item
    After login to my app, I want to retrieve a row from my SETTINGS table and populate some Application Items with the settings information so that I can
    display some of that settings information on every page.
    Just to start, I created one Application Item named F106_YEAR
    I then created a Shared Components Application Process which executes on New Session: After Authentication
    I created this process as an Anynomous PL/SQL block.
    declare
    aucyr varchar(4);
    begin
    select year into auctyr
    from settings;
    :F106_YEAR := aucyr;
    end;
    I've tried a couple of other Syntax tricks attempting to reference the Application Item F106_YEAR from within PL/SQL (like V('F106_YEAR') but nothing seems to be working.
    I'm sure that I am missing something simple. Can someone tell me how to set an Application Item from PL/SQL?
    Thanks in advance.

    I'm still doing something wrong because this is not working for me.
    I've tried both of the following versions as an Application Process set to run on New Session after Authentication:
    declare
    auction_year varchar(4);
    begin
    select year into auction_year
    from PBUUC.SETTINGS where rownum < 2;
    :F106_AUCTION_YEAR:=auction_year;
    end;
    and I also tried:
    declare
    auction_year varchar(4);
    begin
    select year into auction_year
    from PBUUC.SETTINGS where rownum < 2;
    APEX_UTIL.SET_SESSION_STATE (p_name, p_value);
    end;
    F106_YEAR is a global Item (shared components).
    The select statement works just fine in SQL*PLUS so I know that it is correct.
    If I run the debugger and log into the application, here is the output. Shouldn't I see my Application Process get called if it is set to run on New Session after Validation?
    My Application process is named RETRIEVE_AUCTION_SETTINGS
    0.01: A C C E P T: Request="P101_PASSWORD"
    0.01: Metadata: Fetch application definition and shortcuts
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -04:00
    0.01: NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en-us
    0.01: Fetch session state from database
    0.02: ...Check session 695371898690095 owner
    0.02: ...Check for session expiration:
    0.02: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.02: Session: Fetch session header information
    0.02: ...Metadata: Fetch page attributes for application 106, page 101
    0.03: ...Validate item page affinity.
    0.03: ...Validate hidden_protected items.
    0.03: ...Check authorization security schemes
    0.03: Session State: Save form items and p_arg_values
    0.03: ...Session State: Save "P101_USERNAME" - saving same value: "jps"
    0.03: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.03: Branch point: BEFORE_COMPUTATION
    0.03: Computation point: AFTER_SUBMIT
    0.03: Tabs: Perform Branching for Tab Requests
    0.03: Branch point: BEFORE_VALIDATION
    0.03: Perform validations:
    0.03: Branch point: BEFORE_PROCESSING
    0.03: Processing point: AFTER_SUBMIT
    0.03: ...Process "Set Username Cookie": PLSQL (AFTER_SUBMIT) begin owa_util.mime_header('text/html', FALSE); owa_cookie.send( name=>'LOGIN_USERNAME_COOKIE', value=>lower(:P101_USERNAME)); exception when others then null; end;
    0.04: ...Process "Login": PLSQL (AFTER_SUBMIT) wwv_flow_custom_auth_std.login( P_UNAME => :P101_USERNAME, P_PASSWORD => :P101_PASSWORD, P_SESSION_ID => v('APP_SESSION'), P_FLOW_PAGE => :APP_ID||':1' );
    0.06: ...Process "Clear Page(s) Cache": CLEAR_CACHE_FOR_PAGES (AFTER_SUBMIT) 101
    0.06: Nulling cache for application "106" page: 101
    0.00:
    0.00: S H O W: application="106" page="1" workspace="" request="" session="695371898690095"
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -04:00
    0.01: NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en-us
    0.01: Application 106, Authentication: CUSTOM2, Page Template: 2904114531488186
    0.01: ...Session ID 695371898690095 can be used
    0.01: ...Application session: 695371898690095, user=JPS
    0.01: ...Determine if user "JPS" workspace "1040027630222986" can develop application "106" in workspace "1040027630222986"
    0.01: ...Check for session expiration:
    0.01: Session: Fetch session header information
    0.01: ...Metadata: Fetch page attributes for application 106, page 1
    0.01: Fetch session state from database
    0.02: Branch point: BEFORE_HEADER
    0.02: Fetch application meta data
    0.02: Computation point: BEFORE_HEADER
    0.02: Processing point: BEFORE_HEADER
    0.03: Show page template header
    0.03: Computation point: AFTER_HEADER
    0.03: Processing point: AFTER_HEADER     
    0.04: Computation point: BEFORE_BOX_BODY
    0.04: Processing point: BEFORE_BOX_BODY
    0.04: Region: Auction_Title F106_AUCTION_YEAR

  • How to call custom BSP application (copied from standard)

    Hi,
    I came across 1 interesting link in SDN.
    [Enhancement procedure of BSP application HRRCF_RECRUITER in eRecruitment]
    My requirement is also similar.
    I need to copy the HRRCF_TRM_SRCH application.
    I know how to make the changes for the logic (like copying the standard controller & iterator class etc.)
    But I donu2019t know how to call the custom BSP application.
    One requirement is, I need to call a BSP application, in which there are only UI(user interface/screen) changes .
    That is, if there are only changes made to hitlist_cand.bsp page . And no changes made to hitlist_cand.do page.
    Eg: Removing one button from screen.
    Second requirement is, I need to call a BSP application in which there are logic changes also.
    (I know how to  change the standard controller class to custom class)
    Eg: Changing logic of button.
    We tried renaming the application name from standard to custom one (with Namespace=SAP itself, though it gave a warning) in the table T77RCF_LOG_APPL .
    Then we used this name to configure the start page link. But still the execution control is going to standard page & not to custom BSP application.
    How will I know which BSP application(Appl A), is calling the BSP application (Appl B) in which I want to make changes ?
    The starting application is HRRCF_START_INT.
    Would really appreciate solutions posted.
    Thanks,
    Nisha Vengal.

    Hi Nisha,
    I think you have an issue to call custom BSP.
    -     Ignore the warning message (in the table T77RCF_LOG_APPL) as it is just a warning message. I did not touch start page link at all.
    -     Additionally you need to make (I had to made) an entry in table u2018V77RCF_SMG_NAVIu2019.
    Let me know, if you need anything else.
    ...Naddy

  • Application View Deigner GUI and File Adapter

    I am currently experiencing a problem with the Application View Designer GUI
    tool. When I tried to edit an user-defined application view or the
    associated Connection Factory for the File Adapter using the GUI tool, I got
    an "Unsupported Adapter Type" error message -Adapter BEA_FS_ADAPTER doe not
    support GUI-based configuration - please see attachment "error1.jpg" for the
    screen capture. This Event associated with this application view is
    currently functioning properly. It just seems that I am no longer able to
    make any change to the current configuration (I had successfully made the
    similar edits before without any problems).
    When the above problem occurred, I then tried to create a new application
    view based on the File Adapter, I got and "UnsupportedAdapterException"
    error-please see attachement "error2.jpg" for the screen capture.
    Has anyone encountered the similar errors before? Insight or thoughts?
    Perhaps it was due to corruption of certain files or database? Any
    information will be greatly appreciated!
    Thanks, Qianqian
    [error2.jpg]
    [error1.jpg]

    Hi,
    1.Status: TO_BE_DELIVERED
    Which means that the message was successfully delivered from Integration Server point of view and it states that the messages is initially handed over to the Messaging System.
    TO_BE_DELIVERED occurs while the message is put into the Messaging System receive queue.
    Regards
    Agasthuri Doss

  • The application logic pro quit unexpectedly (HELP PLEASE)

    Hi there,
    Logic keeps quiting unexpectedly when i try to open it...
    it hangs at "intializing core audio" then quit..
    I ve tried to erase "logic PM data" , preferences , restart holding alt apple p+r ,
    disk repair authorisation but still not working...
    can anyone help please...?
    Tanx
      Mac OS X (10.4.6)   G4 733 MHz

    Hey DATAMUZIK.
    Are you opening Logic from the Dock/Applications folder? I had a similar problem when opening Logic, having worked on a project who's file had gone a bit 'wobbly' (my Logic opens up the project file that I have worked on last).
    Try opening the application from an old project file that you've not had any problems with before, it might not work but will be worth a try.
    Good luck,
    Lou.
    Emac 1.25 GHz Superdrive (Jan 2005)   Mac OS X (10.3.9)   1G RAM, 80GHD & 80G Lacie, Logic Pro 7 1.0.1, FCE 2, iWork '05, Shuffle
    Emac 1.25 GHz Superdrive (Jan 2005)   Mac OS X (10.3.9)   1G RAM, 80GHD & 80G Lacie, Logic Pro 7 1.0.1, FCE 2, iWork '05, Shuffle

  • "The application Logic Pro quit unexpectedly" Problem (with some more info)

    This is my previous Thread below...no one could answer this so i moved my non-working project on a USB stick then tried it on another MAC with Logic.. AND IT WORKED... except i was missing all the Channels with the External plug ins.... so ... how do i adjust my project so it goes back to the very last moment before it crashed?? anyone...?
    here's my old thread for the problem....
    i have made a project... and saved other projects in that same folder with a different name...
    and one day.. EVERY project in that folder stopped working....
    everytime i open a project from this folder i get "The application Logic Pro quit unexpectedly"
    very frustrating.. PLEASE HELP?!
    THANK YOU
    Process: Logic Pro 1964
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 8.0.0 (1437.23)
    Build Info: Logic-14372300~12
    Code Type: X86 (Native)
    Parent Process: launchd 99
    Date/Time: 2009-10-24 17:53:49.298 +1300
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000c91067e7
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.logic.pro 0x0010a13d 0x1000 + 1085757
    1 com.apple.logic.pro 0x0010a1f7 0x1000 + 1085943
    2 com.apple.logic.pro 0x0010a31c 0x1000 + 1086236
    3 com.apple.logic.pro 0x0011bc1a 0x1000 + 1158170
    4 com.apple.logic.pro 0x000978a3 0x1000 + 616611
    5 com.apple.logic.pro 0x00098268 0x1000 + 619112
    6 com.apple.logic.pro 0x0009830e 0x1000 + 619278
    7 com.apple.logic.pro 0x002b311e 0x1000 + 2826526
    8 com.apple.logic.pro 0x002b31ee 0x1000 + 2826734
    9 libSystem.B.dylib 0x926fa09b _sigtramp + 43
    Thread 1:
    0 libSystem.B.dylib 0x9268d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92694c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x924f10ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x924f1cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x94312464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x94312300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9269468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x926bf36d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x91f8eb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x926dd5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9268d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x926bf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x92705371 pthreadcondwait + 48
    3 com.apple.logic.pro 0x00622e80 0x1000 + 6430336
    4 com.apple.logic.pro 0x00622f47 0x1000 + 6430535
    5 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9268d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x926bf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x92705371 pthreadcondwait + 48
    3 com.apple.logic.pro 0x00622e80 0x1000 + 6430336
    4 com.apple.logic.pro 0x00622f47 0x1000 + 6430535
    5 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9268d506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x926bf84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x926c10d3 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x944311ba TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x94430f9a TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x94461d48 TimerThread + 74
    6 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9268d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92694c9c mach_msg + 72
    2 com.apple.audio.midi.CoreMIDI 0x023eaf0f XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3 com.apple.audio.midi.CoreMIDI 0x023dd477 MIDIInPortThread::Run() + 111
    4 com.apple.audio.midi.CoreMIDI 0x023e107d XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x023eb9ee CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9269468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92694456 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x916d2861 -NSUIHeartBeat _heartBeatThread: + 2042
    3 com.apple.Foundation 0x93ea0bad -NSThread main + 45
    4 com.apple.Foundation 0x93ea0754 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x025c4000 ebx: 0xc91067e7 ecx: 0xbfffd32c edx: 0x9268d4a6
    edi: 0x1d79202c esi: 0x02dd567c ebp: 0xbfffd5e8 esp: 0xbfffd5d0
    ss: 0x0000001f efl: 0x00010286 eip: 0x0010a13d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xc91067e7
    Binary Images:
    0x1000 - 0x1006fe3 com.apple.logic.pro 8.0.0 (1437.23) /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x1777000 - 0x178d36f com.apple.XAudioUnits 1.0.0 (72.2) /Applications/Logic Pro.app/Contents/Frameworks/XAudioUnits.framework/Versions/A/XAudioUnits
    0x179c000 - 0x1865ff5 com.apple.DiscRecording 4.0.1 (4010.4.5) <44893a4cffe38f844668248590341249> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x18d0000 - 0x18d2fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x18d9000 - 0x1902fff +MusicAudioDataServices ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MusicAudioDataServices.framework/Versions/A/MusicAu dioDataServices
    0x1916000 - 0x19b36b1 com.apple.eloop 3.1.0 (80.2) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x1a50000 - 0x1abb00f com.apple.LogicLoopBrowser 7.2 (87.4) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1aea000 - 0x1af5fec +libaafintp.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x1b04000 - 0x1b56fdf +libaafpgapi.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x1b89000 - 0x1d8dfe7 +libcom-api.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x20af000 - 0x221afeb com.apple.prokit 4.5 (722) <372314d5b0a6b68af0ba352d0a910e1a> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x22fb000 - 0x237e516 com.apple.ecore 1.1.0 (248.4) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x23d9000 - 0x23f6ff7 com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x240e000 - 0x248cfff com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Pro.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0x24e9000 - 0x2501fff com.apple.EHardwareSupport 1.0.0 (129.2) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x250c000 - 0x2523ff7 com.apple.LogicFileBrowser 1.0.0 (92.2) /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2532000 - 0x2534ff7 com.apple.XLogicImages 1.0.0 (91.3) /Applications/Logic Pro.app/Contents/Frameworks/XLogicImages.framework/Versions/A/XLogicImages
    0x2539000 - 0x2558fed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x256a000 - 0x2579fff com.apple.AERegistration 1.2 (71) /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x258b000 - 0x2592ff3 com.apple.AEProfiling 1.2 (18) /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x259a000 - 0x25b8fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x278d000 - 0x27afff7 com.apple.prokit.LeopardPanels 4.5 (722) <071ecf84ab7bb013eca4e26791526ee1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/Leopard Panels.bundle/Contents/MacOS/LeopardPanels
    0x19850000 - 0x1985cfff com.apple.iokit.IOHIDLib 1.5.3 (1.5.3) <4668fe539f109326bc76c532f20f41b3> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x19868000 - 0x1986bfff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x19871000 - 0x19876fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1999e000 - 0x199a6ff7 com.apple.proapps.mrcheckpro 1.4 (193) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x19c83000 - 0x19cdcff7 com.apple.driver.AppleIntelGMA950GLDriver 1.5.30 (5.3.0) <03bfe727a88928dd24fbd19e9b78918e> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x1aaa9000 - 0x1abc7ff7 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <56067945130800a348eb076676d41e92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1abde000 - 0x1ad61fe3 GLEngine ??? (???) <53be12846de26d4d81d58a074b55c877> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1ad8f000 - 0x1adabff7 GLRendererFloat ??? (???) <c87cf601b3d09de41ec0e742e7afda79> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1bfa2000 - 0x1bfa4fff com.apple.gal_common 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x1bfab000 - 0x1bfadff7 com.apple.gal_ebp 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x1bfc5000 - 0x1bfc7fff com.apple.gal_egt 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x1c8bd000 - 0x1c8c3ff7 com.apple.gal_anvil 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x1c9bc000 - 0x1c9c5fff com.apple.gal_efx 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x1cbe2000 - 0x1cbe901f com.apple.gal_efx2 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/efx2.res/Contents/MacOS/efx2
    0x1cddb000 - 0x1cddeff7 com.apple.gal_emx 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x1cea8000 - 0x1ceaaff7 com.apple.gal_es1 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x1cf0d000 - 0x1cf10ff7 com.apple.gal_es2 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x1cfab000 - 0x1cfaeff7 com.apple.gal_esp 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x1d02b000 - 0x1d02dff7 com.apple.gal_esu 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0x1d080000 - 0x1d083ff7 com.apple.gal_evb3 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x1d113000 - 0x1d115ff7 com.apple.gal_evd6 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x1d17d000 - 0x1d180fff com.apple.gal_evoc 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x1d273000 - 0x1d275ff7 com.apple.gal_evp88 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x1d3c6000 - 0x1d3c9ff7 com.apple.gal_exs24 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x1d441000 - 0x1d444ff7 com.apple.gal_mutapdel 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x1d486000 - 0x1d48cfff com.apple.gal_revolver 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x1d665000 - 0x1d668fff com.apple.gal_sphere 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x23ba3000 - 0x23c02fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/somangpark/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x23c21000 - 0x23c3ffe7 com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x23c4f000 - 0x23ecafcf +se.propellerheads.reason.engine 4.0 (4.0) <636f0515a4c842e5943046e03dafe1c8> /Applications/Reason/Reason.app/Contents/PlugIns/Reason Engine.plugin/Contents/MacOS/Reason Engine
    0x2435e000 - 0x243bdfe1 +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x2506e000 - 0x250be01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x33ef9000 - 0x34085fff +com.Ohm Force.Oddity.Macho.Bundle ??? (1.0) /Library/Audio/Plug-Ins/Components/Oddity_AUMachO.component/Contents/MacOS/Oddi ty-pro-funky-AU
    0x3502b000 - 0x35227ffb +com.Sugar Bytes.audiounit.Effectrix 1.1.1 (1.0) /Library/Audio/Plug-Ins/Components/Effectrix.component/Contents/MacOS/Effectrix
    0x35333000 - 0x35333ffd libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x3af7a000 - 0x3b061ff4 +com.RPCX.Predator.component 1.0.1 (1.0.1) /Library/Audio/Plug-Ins/Components/Predator.component/Contents/MacOS/Predator
    0x57d2f000 - 0x57e20ff3 +com.2caudio.aether.au ??? (1.0.1) <130101099b2257442939474d124b6c98> /Library/Audio/Plug-Ins/Components/2C-Aether.component/Contents/MacOS/2C-Aether
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <14ac3b684fa5a31932fa89c4bba7a29b> /usr/lib/dyld
    0x90003000 - 0x900bdfe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x900be000 - 0x9018cff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9018d000 - 0x9018dffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9018e000 - 0x9082afff com.apple.CoreGraphics 1.351.33 (???) <481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90868000 - 0x90868ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90869000 - 0x908aafe7 libRIP.A.dylib ??? (???) <1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x908ab000 - 0x908abffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x908ac000 - 0x9095effb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x9095f000 - 0x9096bffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9096c000 - 0x909c5ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x909c6000 - 0x90aa6fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x90abb000 - 0x90ac3fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ac4000 - 0x90ad0ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90ad1000 - 0x90c09fe7 com.apple.imageKit 1.0.2 (1.0) <5eee702fe546c8c881acfc65c41ad178> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90c0a000 - 0x90c37feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90c38000 - 0x90c48ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90c49000 - 0x90e17fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e18000 - 0x90f3cfe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90f3d000 - 0x90f8cfff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90f9b000 - 0x90fb1fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9107c000 - 0x910eefff com.apple.PDFKit 2.1.1 (2.1.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x910ef000 - 0x91138fef com.apple.Metadata 10.5.2 (398.22) <a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91139000 - 0x91161ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91162000 - 0x91520fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91521000 - 0x91528ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9162b000 - 0x9162bffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9162c000 - 0x91e29fef com.apple.AppKit 6.5.3 (949.34) <4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91e2a000 - 0x91e49ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91f42000 - 0x91f66fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x91f67000 - 0x92438f3e libGLProgrammability.dylib ??? (???) <fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92439000 - 0x92451fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92452000 - 0x92462fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92463000 - 0x9246efe7 libCSync.A.dylib ??? (???) <86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9246f000 - 0x9247effe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9247f000 - 0x925b1fff com.apple.CoreFoundation 6.5.4 (476.15) <e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x925b2000 - 0x925dbfff com.apple.CoreMediaPrivate 13.0 (13.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x925dc000 - 0x9268bffb com.apple.QTKit 7.5.5 (995.22.3) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9268c000 - 0x927ecff3 libSystem.B.dylib ??? (???) <98fc91f31f185411ddc46d3225e9af55> /usr/lib/libSystem.B.dylib
    0x9282f000 - 0x9288bff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9288c000 - 0x928cbfef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x928cc000 - 0x92a4bfff com.apple.AddressBook.framework 4.1.1 (696) <bb7f2d5f0b2d180288cd959cd9ba6c1a> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92a91000 - 0x92b33ff3 com.apple.QuickTimeImporters.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92b34000 - 0x92c6cff7 libicucore.A.dylib ??? (???) <3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
    0x92c6d000 - 0x92cacfff com.apple.CoreMediaIOServicesPrivate 13.0 (13.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x92cad000 - 0x92cc1ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92cc2000 - 0x92cc2ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92cc3000 - 0x92d4fff7 com.apple.LaunchServices 290 (290) <61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92d50000 - 0x92e31ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x92ea5000 - 0x92ea7ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92ea8000 - 0x92eb4fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x92eb5000 - 0x92f3cff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x92f3d000 - 0x92f47feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92f48000 - 0x92f4dfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92f4e000 - 0x92f64fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <80b173571cdb99a829e1b8ec0a677291> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92f65000 - 0x92fa7fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92fa8000 - 0x92fa8fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fa9000 - 0x93034fff com.apple.framework.IOKit 1.5.1 (???) <324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93038000 - 0x9303cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9303d000 - 0x9303dffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9303e000 - 0x93066fff libcups.2.dylib ??? (???) <bddaa132350e872b9d6d8b7e57f204d1> /usr/lib/libcups.2.dylib
    0x9306d000 - 0x930abfff libGLImage.dylib ??? (???) <f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x930ac000 - 0x9315cfff edu.mit.Kerberos 6.0.12 (6.0.12) <da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93162000 - 0x9316ffe7 com.apple.opengl 1.5.7 (1.5.7) <db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93170000 - 0x93177fff com.apple.agl 3.0.9 (AGL-3.0.9) <aeab67ef267f8295ae80fddc197b52a5> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93178000 - 0x9317efff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9317f000 - 0x93180ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93181000 - 0x9320bfe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9320c000 - 0x93513fff com.apple.HIToolbox 1.5.4 (???) <5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93514000 - 0x93518fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93519000 - 0x9351bfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9351c000 - 0x9353aff7 com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93bdb000 - 0x93c58fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93dbb000 - 0x93e86fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93e87000 - 0x93e95ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93e96000 - 0x94111fe7 com.apple.Foundation 6.5.6 (677.21) <5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94112000 - 0x941f2fff com.apple.syncservices 3.1 (389.7) <b3020e445b8987ea77eeaf918e48c351> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x941f3000 - 0x941f8fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x941f9000 - 0x941f9ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94245000 - 0x94263ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <4b81063df189bc462f012a169474fcbc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94264000 - 0x9426dfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9426e000 - 0x942a5fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x942b0000 - 0x942e4fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x942e5000 - 0x942f4fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x942f5000 - 0x94371feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94372000 - 0x94405fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94406000 - 0x94406ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94407000 - 0x946e1ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x946e2000 - 0x9470dfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9470e000 - 0x94b1efef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94b1f000 - 0x94bc6feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94bc7000 - 0x94c21ff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94c22000 - 0x94c72ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c73000 - 0x94f95fe2 com.apple.QuickTime 7.5.5 (995.22.3) <07ffd134d58fdbfe377ba9007f591289> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94f96000 - 0x95010ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95011000 - 0x9502ffff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x9504d000 - 0x950ccff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95153000 - 0x9516effb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9516f000 - 0x95176ff7 libCGATS.A.dylib ??? (???) <973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95177000 - 0x9520aff3 com.apple.ApplicationServices.ATS 3.4 (???) <a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9520b000 - 0x9520bffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9520c000 - 0x9520cff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9520d000 - 0x9526affb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9526b000 - 0x9529afe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9529b000 - 0x952bffeb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x952f7000 - 0x95331fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95332000 - 0x95339fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9533a000 - 0x9533fffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95340000 - 0x95407ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x954c6000 - 0x95863fe7 com.apple.QuartzCore 1.5.5 (1.5.5) <82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95864000 - 0x95a1fff3 com.apple.QuartzComposer 2.1 (106.5) <a296178aba94c71fc5314ea2ed0b4349> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95a20000 - 0x95b66ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95bb8000 - 0x95c9dff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95c9e000 - 0x95cd0fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95cd1000 - 0x95d55fe3 com.apple.CFNetwork 339.5 (339.5) <c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95d96000 - 0x95e08fff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95e09000 - 0x95e3affb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95e3b000 - 0x96ee1ffe com.apple.QuickTimeComponents.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9717c000 - 0x9717ffff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    If you're using Logic 9, you can pull the project up ( by double clicking it ) from the media browser window and import the tracks into a new arrange page manually.
    If it crashes after a full import, then start again but pull the tracks in a few at a time, then save, then do a few more and save again but using a different name. Then you can always revert back to the pre-crash version.

  • "The application Logic Pro quit unexpectedly" Help!

    i have made a project... and saved other projects in that same folder with a different name...
    and one day.. EVERY project in that folder stopped working....
    everytime i open a project from this folder i get "The application Logic Pro quit unexpectedly"
    very frustrating.. PLEASE HELP?!
    THANK YOU
    Process: Logic Pro [1964]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 8.0.0 (1437.23)
    Build Info: Logic-14372300~12
    Code Type: X86 (Native)
    Parent Process: launchd [99]
    Date/Time: 2009-10-24 17:53:49.298 +1300
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000c91067e7
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.logic.pro 0x0010a13d 0x1000 + 1085757
    1 com.apple.logic.pro 0x0010a1f7 0x1000 + 1085943
    2 com.apple.logic.pro 0x0010a31c 0x1000 + 1086236
    3 com.apple.logic.pro 0x0011bc1a 0x1000 + 1158170
    4 com.apple.logic.pro 0x000978a3 0x1000 + 616611
    5 com.apple.logic.pro 0x00098268 0x1000 + 619112
    6 com.apple.logic.pro 0x0009830e 0x1000 + 619278
    7 com.apple.logic.pro 0x002b311e 0x1000 + 2826526
    8 com.apple.logic.pro 0x002b31ee 0x1000 + 2826734
    9 libSystem.B.dylib 0x926fa09b _sigtramp + 43
    Thread 1:
    0 libSystem.B.dylib 0x9268d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92694c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x924f10ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x924f1cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x94312464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x94312300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9269468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x926bf36d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x91f8eb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x926dd5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9268d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x926bf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x92705371 pthreadcondwait + 48
    3 com.apple.logic.pro 0x00622e80 0x1000 + 6430336
    4 com.apple.logic.pro 0x00622f47 0x1000 + 6430535
    5 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9268d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x926bf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x92705371 pthreadcondwait + 48
    3 com.apple.logic.pro 0x00622e80 0x1000 + 6430336
    4 com.apple.logic.pro 0x00622f47 0x1000 + 6430535
    5 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9268d506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x926bf84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x926c10d3 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x944311ba TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x94430f9a TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x94461d48 TimerThread + 74
    6 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9268d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92694c9c mach_msg + 72
    2 com.apple.audio.midi.CoreMIDI 0x023eaf0f XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3 com.apple.audio.midi.CoreMIDI 0x023dd477 MIDIInPortThread::Run() + 111
    4 com.apple.audio.midi.CoreMIDI 0x023e107d XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x023eb9ee CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9269468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92694456 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x916d2861 -[NSUIHeartBeat _heartBeatThread:] + 2042
    3 com.apple.Foundation 0x93ea0bad -[NSThread main] + 45
    4 com.apple.Foundation 0x93ea0754 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x926be6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x926be5b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x025c4000 ebx: 0xc91067e7 ecx: 0xbfffd32c edx: 0x9268d4a6
    edi: 0x1d79202c esi: 0x02dd567c ebp: 0xbfffd5e8 esp: 0xbfffd5d0
    ss: 0x0000001f efl: 0x00010286 eip: 0x0010a13d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xc91067e7
    Binary Images:
    0x1000 - 0x1006fe3 com.apple.logic.pro 8.0.0 (1437.23) /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x1777000 - 0x178d36f com.apple.XAudioUnits 1.0.0 (72.2) /Applications/Logic Pro.app/Contents/Frameworks/XAudioUnits.framework/Versions/A/XAudioUnits
    0x179c000 - 0x1865ff5 com.apple.DiscRecording 4.0.1 (4010.4.5) <44893a4cffe38f844668248590341249> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x18d0000 - 0x18d2fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x18d9000 - 0x1902fff +MusicAudioDataServices ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MusicAudioDataServices.framework/Versions/A/MusicAu dioDataServices
    0x1916000 - 0x19b36b1 com.apple.eloop 3.1.0 (80.2) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x1a50000 - 0x1abb00f com.apple.LogicLoopBrowser 7.2 (87.4) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1aea000 - 0x1af5fec +libaafintp.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x1b04000 - 0x1b56fdf +libaafpgapi.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x1b89000 - 0x1d8dfe7 +libcom-api.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x20af000 - 0x221afeb com.apple.prokit 4.5 (722) <372314d5b0a6b68af0ba352d0a910e1a> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x22fb000 - 0x237e516 com.apple.ecore 1.1.0 (248.4) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x23d9000 - 0x23f6ff7 com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x240e000 - 0x248cfff com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Pro.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0x24e9000 - 0x2501fff com.apple.EHardwareSupport 1.0.0 (129.2) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x250c000 - 0x2523ff7 com.apple.LogicFileBrowser 1.0.0 (92.2) /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2532000 - 0x2534ff7 com.apple.XLogicImages 1.0.0 (91.3) /Applications/Logic Pro.app/Contents/Frameworks/XLogicImages.framework/Versions/A/XLogicImages
    0x2539000 - 0x2558fed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x256a000 - 0x2579fff com.apple.AERegistration 1.2 (71) /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x258b000 - 0x2592ff3 com.apple.AEProfiling 1.2 (18) /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x259a000 - 0x25b8fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x278d000 - 0x27afff7 com.apple.prokit.LeopardPanels 4.5 (722) <071ecf84ab7bb013eca4e26791526ee1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/Leopard Panels.bundle/Contents/MacOS/LeopardPanels
    0x19850000 - 0x1985cfff com.apple.iokit.IOHIDLib 1.5.3 (1.5.3) <4668fe539f109326bc76c532f20f41b3> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x19868000 - 0x1986bfff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x19871000 - 0x19876fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1999e000 - 0x199a6ff7 com.apple.proapps.mrcheckpro 1.4 (193) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x19c83000 - 0x19cdcff7 com.apple.driver.AppleIntelGMA950GLDriver 1.5.30 (5.3.0) <03bfe727a88928dd24fbd19e9b78918e> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x1aaa9000 - 0x1abc7ff7 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <56067945130800a348eb076676d41e92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1abde000 - 0x1ad61fe3 GLEngine ??? (???) <53be12846de26d4d81d58a074b55c877> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1ad8f000 - 0x1adabff7 GLRendererFloat ??? (???) <c87cf601b3d09de41ec0e742e7afda79> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1bfa2000 - 0x1bfa4fff com.apple.gal_common 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x1bfab000 - 0x1bfadff7 com.apple.gal_ebp 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x1bfc5000 - 0x1bfc7fff com.apple.gal_egt 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x1c8bd000 - 0x1c8c3ff7 com.apple.gal_anvil 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x1c9bc000 - 0x1c9c5fff com.apple.gal_efx 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x1cbe2000 - 0x1cbe901f com.apple.gal_efx2 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/efx2.res/Contents/MacOS/efx2
    0x1cddb000 - 0x1cddeff7 com.apple.gal_emx 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x1cea8000 - 0x1ceaaff7 com.apple.gal_es1 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x1cf0d000 - 0x1cf10ff7 com.apple.gal_es2 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x1cfab000 - 0x1cfaeff7 com.apple.gal_esp 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x1d02b000 - 0x1d02dff7 com.apple.gal_esu 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0x1d080000 - 0x1d083ff7 com.apple.gal_evb3 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x1d113000 - 0x1d115ff7 com.apple.gal_evd6 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x1d17d000 - 0x1d180fff com.apple.gal_evoc 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x1d273000 - 0x1d275ff7 com.apple.gal_evp88 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x1d3c6000 - 0x1d3c9ff7 com.apple.gal_exs24 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x1d441000 - 0x1d444ff7 com.apple.gal_mutapdel 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x1d486000 - 0x1d48cfff com.apple.gal_revolver 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x1d665000 - 0x1d668fff com.apple.gal_sphere 1.0 (134.2) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x23ba3000 - 0x23c02fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/somangpark/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x23c21000 - 0x23c3ffe7 com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x23c4f000 - 0x23ecafcf +se.propellerheads.reason.engine 4.0 (4.0) <636f0515a4c842e5943046e03dafe1c8> /Applications/Reason/Reason.app/Contents/PlugIns/Reason Engine.plugin/Contents/MacOS/Reason Engine
    0x2435e000 - 0x243bdfe1 +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x2506e000 - 0x250be01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x33ef9000 - 0x34085fff +com.Ohm Force.Oddity.Macho.Bundle ??? (1.0) /Library/Audio/Plug-Ins/Components/Oddity_AUMachO.component/Contents/MacOS/Oddi ty-pro-funky-AU
    0x3502b000 - 0x35227ffb +com.Sugar Bytes.audiounit.Effectrix 1.1.1 (1.0) /Library/Audio/Plug-Ins/Components/Effectrix.component/Contents/MacOS/Effectrix
    0x35333000 - 0x35333ffd libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x3af7a000 - 0x3b061ff4 +com.RPCX.Predator.component 1.0.1 (1.0.1) /Library/Audio/Plug-Ins/Components/Predator.component/Contents/MacOS/Predator
    0x57d2f000 - 0x57e20ff3 +com.2caudio.aether.au ??? (1.0.1) <130101099b2257442939474d124b6c98> /Library/Audio/Plug-Ins/Components/2C-Aether.component/Contents/MacOS/2C-Aether
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <14ac3b684fa5a31932fa89c4bba7a29b> /usr/lib/dyld
    0x90003000 - 0x900bdfe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x900be000 - 0x9018cff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9018d000 - 0x9018dffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9018e000 - 0x9082afff com.apple.CoreGraphics 1.351.33 (???) <481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90868000 - 0x90868ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90869000 - 0x908aafe7 libRIP.A.dylib ??? (???) <1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x908ab000 - 0x908abffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x908ac000 - 0x9095effb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x9095f000 - 0x9096bffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9096c000 - 0x909c5ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x909c6000 - 0x90aa6fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x90abb000 - 0x90ac3fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ac4000 - 0x90ad0ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90ad1000 - 0x90c09fe7 com.apple.imageKit 1.0.2 (1.0) <5eee702fe546c8c881acfc65c41ad178> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90c0a000 - 0x90c37feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90c38000 - 0x90c48ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90c49000 - 0x90e17fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e18000 - 0x90f3cfe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90f3d000 - 0x90f8cfff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90f9b000 - 0x90fb1fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9107c000 - 0x910eefff com.apple.PDFKit 2.1.1 (2.1.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x910ef000 - 0x91138fef com.apple.Metadata 10.5.2 (398.22) <a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91139000 - 0x91161ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91162000 - 0x91520fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91521000 - 0x91528ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9162b000 - 0x9162bffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9162c000 - 0x91e29fef com.apple.AppKit 6.5.3 (949.34) <4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91e2a000 - 0x91e49ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91f42000 - 0x91f66fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x91f67000 - 0x92438f3e libGLProgrammability.dylib ??? (???) <fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92439000 - 0x92451fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92452000 - 0x92462fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92463000 - 0x9246efe7 libCSync.A.dylib ??? (???) <86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9246f000 - 0x9247effe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9247f000 - 0x925b1fff com.apple.CoreFoundation 6.5.4 (476.15) <e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x925b2000 - 0x925dbfff com.apple.CoreMediaPrivate 13.0 (13.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x925dc000 - 0x9268bffb com.apple.QTKit 7.5.5 (995.22.3) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9268c000 - 0x927ecff3 libSystem.B.dylib ??? (???) <98fc91f31f185411ddc46d3225e9af55> /usr/lib/libSystem.B.dylib
    0x9282f000 - 0x9288bff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9288c000 - 0x928cbfef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x928cc000 - 0x92a4bfff com.apple.AddressBook.framework 4.1.1 (696) <bb7f2d5f0b2d180288cd959cd9ba6c1a> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92a91000 - 0x92b33ff3 com.apple.QuickTimeImporters.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92b34000 - 0x92c6cff7 libicucore.A.dylib ??? (???) <3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
    0x92c6d000 - 0x92cacfff com.apple.CoreMediaIOServicesPrivate 13.0 (13.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x92cad000 - 0x92cc1ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92cc2000 - 0x92cc2ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92cc3000 - 0x92d4fff7 com.apple.LaunchServices 290 (290) <61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92d50000 - 0x92e31ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x92ea5000 - 0x92ea7ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92ea8000 - 0x92eb4fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x92eb5000 - 0x92f3cff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x92f3d000 - 0x92f47feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92f48000 - 0x92f4dfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92f4e000 - 0x92f64fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <80b173571cdb99a829e1b8ec0a677291> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92f65000 - 0x92fa7fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92fa8000 - 0x92fa8fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fa9000 - 0x93034fff com.apple.framework.IOKit 1.5.1 (???) <324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93038000 - 0x9303cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9303d000 - 0x9303dffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9303e000 - 0x93066fff libcups.2.dylib ??? (???) <bddaa132350e872b9d6d8b7e57f204d1> /usr/lib/libcups.2.dylib
    0x9306d000 - 0x930abfff libGLImage.dylib ??? (???) <f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x930ac000 - 0x9315cfff edu.mit.Kerberos 6.0.12 (6.0.12) <da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93162000 - 0x9316ffe7 com.apple.opengl 1.5.7 (1.5.7) <db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93170000 - 0x93177fff com.apple.agl 3.0.9 (AGL-3.0.9) <aeab67ef267f8295ae80fddc197b52a5> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93178000 - 0x9317efff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9317f000 - 0x93180ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93181000 - 0x9320bfe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9320c000 - 0x93513fff com.apple.HIToolbox 1.5.4 (???) <5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93514000 - 0x93518fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93519000 - 0x9351bfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9351c000 - 0x9353aff7 com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93bdb000 - 0x93c58fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93dbb000 - 0x93e86fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93e87000 - 0x93e95ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93e96000 - 0x94111fe7 com.apple.Foundation 6.5.6 (677.21) <5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94112000 - 0x941f2fff com.apple.syncservices 3.1 (389.7) <b3020e445b8987ea77eeaf918e48c351> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x941f3000 - 0x941f8fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x941f9000 - 0x941f9ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94245000 - 0x94263ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <4b81063df189bc462f012a169474fcbc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94264000 - 0x9426dfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9426e000 - 0x942a5fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x942b0000 - 0x942e4fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x942e5000 - 0x942f4fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x942f5000 - 0x94371feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94372000 - 0x94405fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94406000 - 0x94406ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94407000 - 0x946e1ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x946e2000 - 0x9470dfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9470e000 - 0x94b1efef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94b1f000 - 0x94bc6feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94bc7000 - 0x94c21ff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94c22000 - 0x94c72ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c73000 - 0x94f95fe2 com.apple.QuickTime 7.5.5 (995.22.3) <07ffd134d58fdbfe377ba9007f591289> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94f96000 - 0x95010ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95011000 - 0x9502ffff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x9504d000 - 0x950ccff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95153000 - 0x9516effb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9516f000 - 0x95176ff7 libCGATS.A.dylib ??? (???) <973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95177000 - 0x9520aff3 com.apple.ApplicationServices.ATS 3.4 (???) <a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9520b000 - 0x9520bffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9520c000 - 0x9520cff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9520d000 - 0x9526affb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9526b000 - 0x9529afe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9529b000 - 0x952bffeb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x952f7000 - 0x95331fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95332000 - 0x95339fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9533a000 - 0x9533fffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95340000 - 0x95407ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x954c6000 - 0x95863fe7 com.apple.QuartzCore 1.5.5 (1.5.5) <82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95864000 - 0x95a1fff3 com.apple.QuartzComposer 2.1 (106.5) <a296178aba94c71fc5314ea2ed0b4349> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95a20000 - 0x95b66ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95bb8000 - 0x95c9dff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95c9e000 - 0x95cd0fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95cd1000 - 0x95d55fe3 com.apple.CFNetwork 339.5 (339.5) <c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95d96000 - 0x95e08fff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95e09000 - 0x95e3affb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95e3b000 - 0x96ee1ffe com.apple.QuickTimeComponents.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9717c000 - 0x9717ffff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Sorry to read you are still having trouble with this.
    Upgrading to 8.0.2 has not made a difference?
    I am a little confused by this from your original post.
    "i have made a project... and saved other projects in that same folder with a different name..."
    I may very well be wrong but this reads to me that you are saving projects into another projects folder?
    If that is the case I would imagine and just guessing that, that would cause problems although I am not sure.
    Just to either help and hope not hinder your progress and more for clarification here is what I do and it seems to work,
    I keep all of my projects in there own folders except when I do a few test mixes then I "save as". For example if I have "Funky Cue" saved as my main project I may do various mixes or edits and save those as "funky Cue Extra Bar" all within the "Funky Cue" project folder. I would not save other projects to that folder for fear of confusing logic when trying to find audio files and settings.
    If I am correct in my assumption of how you are saving your work and that it is indeed that that is causing you troubles I would back up the entire folder and start trying to do some folder and project organization.
    Please note I am just spit-balling ideas here and I could be way off base.
    I have to leave for 3 hour rehearsal but will check back latter. I hope by then someone with a direct cure can help.
    Good luck,
    Jay
    Message was edited by: NoteFarm
    Message was edited by: NoteFarm for content after re-reading original post.

  • Setxkbmap from GUI

    Hello!
    I'm trying to set up quick little keyboards layout chooser which would on icon/applet click execute this command:
    $ setxkbmap -rules evdev -layout es -model evdev
    but, when I include this in "Create a new launcher" on desktop, either through "execute this command in terminal" or
    directly, it doesn't do anything. Why is this not working from GUI and just from terminal? Can you maybe show me
    how to write a little python GUI script that will execute this command, or point me to some link where I could learn this?
    Thank you :-)
    Last edited by luther7hrol (2013-12-09 13:44:31)

    <drcouzelis> I use Cinnamon GUI (fork of GNOME). Here's .desktop file I tried with:
    [Desktop Entry]
    Comment=Choose Spanish Keymap
    Terminal=false # tried with true, too
    Name=es
    Exec=setxkbmap -rules evdev -layout es -model evdev
    Type=Application
    Icon=gnome-panel-launcher
    Maybe I could try writing my own cinnamon applet including setxkbmap command?
    <Ashren> Thank you, it works with xterm part! :-) How do I do it without xterm, because when I exclude the xterm command, it doesn't do anything.
    The notify-send little thing is great, i didn't know how to use it before so I've learnt something today.
    Could you guys maybe tell me how this can be done from python, if it could be done easily, just curious to learn how to do it from different perspectives
    Last edited by luther7hrol (2013-12-09 15:58:03)

  • SOAP service works - but doesn't call application logic

    I have an SAP enterprise service that's acting weird. Like any other SOAP service, I went to SOAMANAGER and configured the necessary binding. The bgRFC settings were missing - went to SRT_TOOLS and configured all of it.
    While testing it with SOAMANAGER it work fine the first time. No problems in SRTUTIL and the SLG1 log entries were also perfect.
    However, subsequent trials threw up weird results. I always get a http 202. This means that the call is going to the server. The SRTUTIL payload trace vouches for this. But there is no SLG1 entry! The application logic is not being called at all!
    I checked all the settings in SRT_TOOLS - no changes. I made no changes whatsoever! It would be great if any of you could offer some help here.

    You don't say what VPN you use but for PPTP you need GRE protocol passthrough, without it you can connect but no traffic will pass over the VPN tunnel.
    You give VPN clients an IP from the LAN interface "range" in VPN settings?
    DNS in VPN settings must be reachable through the VPN (default route is through VPN? - any routing definitions?).

  • I was doing some thing on my mac and the normal link to the applications folder from the bottom right hand corner disappeared, I cant find it anywhere, Can you help me?

    I was doing some thing on my mac and the normal link to the applications folder from the bottom right hand corner disappeared, I cant find it anywhere, Can you help me?

    Simple process. If an iPhone go to the Apple Store and not Verizon
    the phone from Verizon will be a refurbished device and not new unless under the 14 day worry free guarantee
    good luck

Maybe you are looking for