Suddenly crashed unresolved compilation problems �?

Hi,
I�m developing a proyect with Struts and Myeclipse. Everything was ok until I made a change in the variable called "path" (String) at runtime, forced to terminate the Tomcat and after that, i get always the following errors after redeploying the app and running it:
java.lang.Error: Unresolved compilation problems:
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token "println", = expected after this token
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token "println", = expected after this token
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token "println", = expected after this token
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token "println", = expected after this token
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token "println", = expected after this token
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token ""valor"", invalid FormalParameterList
     Syntax error on token "mitipotai", VariableDeclaratorId expected after this token
     Syntax error on token ""valor"", invalid FormalParameterList
     Syntax error on token "mimaxerror2", VariableDeclaratorId expected after this token
     Syntax error on token(s), misplaced construct(s)
     Syntax error on token ""valor"", invalid FormalParameterList
     Syntax error on token "mimaxinfo", VariableDeclaratorId expected after this token
     path cannot be resolved
     Syntax error on token "(", delete this token
     Syntax error on token ")", delete this token
     Syntax error on token "close", Identifier expected after this token
     Syntax error on token ";", { expected after this token
     com.gentaiw.struts.action.ConfigurarTestAction.<init>(ConfigurarTestAction.java:104) ----> ERROR !!
     sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
     sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
     sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
     java.lang.reflect.Constructor.newInstance(Constructor.java:494)
     java.lang.Class.newInstance0(Class.java:350)
     java.lang.Class.newInstance(Class.java:303)
     org.apache.struts.util.RequestUtils.applicationInstance(RequestUtils.java:143)
     org.apache.struts.action.RequestProcessor.processActionCreate(RequestProcessor.java:280)
     org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:218)
     org.apache.struts.action.ActionServlet.process(ActionServlet.java:1194)
     org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)Here is thecode where i get errors (ConfigurarTestAction.java:104) :
//String type variables
     System.out.println("mitipotest: "+mitipotest);
     System.out.println("micrisel1: "+micrisel1);
     System.out.println("micriterioparada: "+micriterioparada);
     System.out.println("miazar1: "+miazar1);
     System.out.println("miazar2: "+miazar2);
// the variables are defined above, no need to put the declarations here
     chTipotai.setAttribute("valor", mitipotai);
     chTipotest.setAttribute("valor", mitipotest);
     chCrisel1.setAttribute("valor", micrisel1);
     chCripara.setAttribute("valor", micriterioparada);
     chCriselitems.setAttribute("valor", micriselitems);I did a Clean Build but i got the same error. The code seems to be ok because it is just, for example: "System.out.println();"
What seems to be wrong? Something about the compiler??
What should i check? Any help will be appreciated.
Thanks in advance!
Edited by: moren on 05-jul-2008 18:02

All these System.out are just tests to see the output of the variables. It is just for test purposes.
The wrong thing is, for example, when I write "System. (dot) ", the method list should appear (System.out , .err, .in, etc) but it is not listed. Happens with any default method.
When I type it in another class, the method list appears.
WHere or what should I check ?
thx

Similar Messages

  • Exception in thread "main" java.lang.Error: Unresolved compilation problem

    The following code:
         public boolean find(MusbachJ_Person person,BstNode node)
              //p.l(person);p.l(node.intData);
              if(node.intData.compareTo(person)==0)
                   return true;
              if( node.leftNode != null ) find(person,node.leftNode );
              if( node.rightNode != null ) find( person, node.rightNode);
              else
                   return false;
         }returns the following compilation error:
    Exception in thread "main" java.lang.Error: Unresolved compilation problem:
         This method must return a result of type boolean
         at MusbachJ_TreeNode.find(MusbachJ_TreeNode.java:32)
         at MusbachJ_PeopleTree.main(MusbachJ_PeopleTree.java:91)
    But I don't understand, the else statement is right there, what more does it want? Thanks! :)

    John_Musbach wrote:
    Exception in thread "main" java.lang.Error: Unresolved compilation problem: Unresolved compilation problem is an error that you'll only ever see if you're using an IDE. If you used the javac compiler, then you would have seen that the code doesn't even compile.
    The reason (as others have pointed out) is, that some paths through your method don't return a value.
    I'll re-write your code in the code-style that I usually use, because then it might be easier for you to see the problem:
    public boolean find(MusbachJ_Person person,BstNode node)
         if(node.intData.compareTo(person)==0) {
              return true;
         if( node.leftNode != null ) {
              find(person,node.leftNode );
         if( node.rightNode != null ) {
              find( person, node.rightNode);
         else {
              return false;
    }There are two prolbems. I'll spell out the first and let the other one for you to find:
    1.) you don't do anything with the return-values of the find-methods you are calling. What do you want to do with them?
    2.) What do you return if the current node is not the one that you want and you've got a right node?

  • Unresolve compilation problems

    I have narrowed a bug down to three lines of code. I do not see what is wrong with this code. In fact I am so sure of the code I was wondering if it may be a bug in 1.5
    I get the error:
    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
         Syntax error, insert "AssignmentOperator Expression" to complete Assignment
         Syntax error, insert ";" to complete Statement
         LVN cannot be resolved
         foo cannot be resolved
         e cannot be resolved
    on the the last line of :
    if (useLVN)
             for(Enumeration e = ilocGen.getRoutines().elements(); e.hasMoreElements();)
                  LVN foo = new LVN((BasicBlock) e.nextElement());LVN is a class who's constructor takes a BasicBlock as an argument. iloc.getRoutines() returns a vector and useLVN is a boolean that is set earlier in the program. The program was fully functional until I inserted these three lines. if I replace the body of the for loop with ";" the code will still execute.
    Has anyone seen this kind of error before? Can someone clue me into what I am doing wrong? or is this something that should be taken to a bug report of some kind?

    I recreated the issue. The error appears in the last line of source code. Below is the full source code for all of the classes. As a note I am using jre1.5.0_06 and eclipse 3.2.1 as my IDE. The operating system I am currently using is Windows XP Pro. (Obviously not that it should matter based on the language in question.)
    File:
    BasicBlock.java
    public class BasicBlock {
         public String str;
         public BasicBlock(String in){
              str = in;
    IlocGenerator.java
    import java.util.Vector;
    public class IlocGenerator {
          Vector routines = new Vector();
          public Vector getRoutines() {
                  return routines;
          public void addRoutine(IlocRoutine in){
              routines.add(in);
    LVN.java
    public class LVN {
         public LVN(BasicBlock in){
              System.out.println(in.str);
    IlocRoutine.java
    import java.util.*;
    public class IlocRoutine {
         private Vector Blocks;
         public IlocRoutine(){
              Blocks = new Vector();
         public void addBasicBlock(BasicBlock in){
              Blocks.add(in);          
         public Vector getBasicBlocks() {
             return Blocks;
    MainProg.java
    import java.util.Enumeration;
    public class MainProg {
         public static void main(String[] args) {
              boolean useLVN = true;
              IlocGenerator ilocGen = new IlocGenerator();
              IlocRoutine iR = new IlocRoutine();
              BasicBlock bB = new BasicBlock("one");
              iR.addBasicBlock(bB);
              bB = new BasicBlock("two");
              iR.addBasicBlock(bB);
              ilocGen.addRoutine(iR);
              iR = new IlocRoutine();
              bB = new BasicBlock("three");
              iR.addBasicBlock(bB);
              bB = new BasicBlock("four");
              iR.addBasicBlock(bB);
              ilocGen.addRoutine(iR);
             if (useLVN)
                  for(Enumeration e = ilocGen.getRoutines().elements(); e.hasMoreElements();)
                       for (Enumeration f = ((IlocRoutine) e.nextElement()).getBasicBlocks().elements(); f.hasMoreElements();)
                            LVN foo = new LVN((BasicBlock) f.nextElement());
    }Message was edited by:
    mtu9000 (added environment information)

  • Error 500: Unresolved Compilation Error

    I am using WSAD as my IDE. I am trying to run my Web App on my localhost. Once my applicaiton comes up I enter my user id and pswd to login, but I get this error when I click submit.
    Error 500: Unresolved Compilation Error.
    Can anyone tell me what might be causing this. My application was working fine yesterday.
    Thanks

    This is whats in my console after i get the error:
    [3/29/06 16:11:00:271 EST] 650123a3 WebGroup I SRVE0180I: [SPPS-webapp] [spps] [Servlet.LOG]: /Login.jsp: init
    [3/29/06 16:11:05:449 EST] 650123a3 WebGroup I SRVE0180I: [SPPS-webapp] [spps] [Servlet.LOG]: LogonController: init
    [3/29/06 16:11:05:459 EST] 650123a3 WebGroup I SRVE0180I: [SPPS-webapp] [spps] [Servlet.LOG]: LogonController: Entered com.ko.saprofile.ctrl.LogonController via doPost()
    [3/29/06 16:11:05:459 EST] 650123a3 WebGroup I SRVE0180I: [SPPS-webapp] [spps] [Servlet.LOG]: LogonController: Upon entering state = None
    [3/29/06 16:11:06:180 EST] 650123a3 WebGroup E SRVE0026E: [Servlet Error]-[Unresolved compilation problem:
    ]: java.lang.Error: Unresolved compilation problem:
         at java.lang.reflect.Constructor.newInstance(Native Method)
         at com.ko.saprofile.util.ConnPool.getConnection(ConnPool.java:7)
         at com.ko.saprofile.mgmt.LogonManagement.getUserBO(LogonManagement.java:31)
         at com.ko.saprofile.ctrl.LogonController.processRequest(LogonController.java:63)
         at com.ko.saprofile.ctrl.BaseController.doPost(BaseController.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:258)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:872)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:491)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:173)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:199)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:331)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:432)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:343)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:592)

  • My Mail program is suddenly crashing and giving me the report-problem window. It did work great before this. I'm running 10.9 on a 13 inch Mac Airbook with 8 gb of ram and 1.8 Ghz chip. Any ideas what to do to get my mail program working again?

    My Mail program is suddenly crashing and giving me the report-problem window. It did work great before this. I'm running 10.9 on a 13 inch Mac Airbook with 8 gb of ram and 1.8 Ghz chip. Any ideas what to do to get my mail program working again?

    Process:         Mail [3866]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.0 (1822)
    Build Info:      Mail-1822000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [273]
    Responsible:     Mail [3866]
    User ID:         501
    Date/Time:       2013-12-05 23:40:19.406 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  EC1B55EE-8C6C-20A8-36EA-9F15A78AF687
    Sleep/Wake UUID: 5E45BE5C-A013-41EF-AAB5-1BA6CF36858A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff523befb4
    VM Regions Near 0x7fff523befb4:
        MALLOC_TINY            00007fb6f9000000-00007fb6f9100000 [ 1024K] rw-/rwx SM=PRV 
    --> STACK GUARD            00007fff4ebbf000-00007fff523bf000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
        Stack                  00007fff523bf000-00007fff52bbf000 [ 8192K] rw-/rwx SM=COW  thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_malloc.dylib                  0x00007fff83715c12 _nano_malloc_check_clear + 20
    1   libsystem_malloc.dylib                  0x00007fff837146c4 nano_malloc + 35
    2   libsystem_malloc.dylib                  0x00007fff8371287c malloc_zone_malloc + 71
    3   com.apple.CoreFoundation                0x00007fff854702b1 __CFStringChangeSizeMultiple + 977
    4   com.apple.CoreFoundation                0x00007fff8549bb15 __CFStringAppendBytes + 549
    5   com.apple.CoreFoundation                0x00007fff8549a5a0 __CFStringAppendFormatCore + 8480
    6   com.apple.CoreFoundation                0x00007fff854c8663 _CFStringCreateWithFormatAndArgumentsAux + 115
    7   com.apple.Foundation                    0x00007fff89b3d0bf -[NSPlaceholderString initWithFormat:locale:arguments:] + 132
    8   com.apple.Foundation                    0x00007fff89b4091c +[NSString stringWithFormat:] + 170
    9   com.apple.Mail.framework                0x00007fff88d35557 -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 357
    10  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    11  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    12  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    13  com.apple.Mail.framework                0x00007fff88d3517d -[MFCriterion _spotlightQueryStringForInASpecialMailboxCriterionWithQualifier:] + 1102
    14  com.apple.Mail.framework                0x00007fff88d34b64 -[MFCriterion spotlightQueryString] + 413
    15  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    16  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    17  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    18  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    19  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    20  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    21  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    22  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    23  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    24  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    25  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    26  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    27  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    28  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    29  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    30  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    31  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    32  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    33  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    34  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    35  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    36  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    37  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    38  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    39  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    40  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    41  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    42  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    43  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    44  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    45  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    46  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    47  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    48  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    49  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    50  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    51  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    52  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    53  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    54  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    55  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    56  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    57  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    58  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    59  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    60  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    61  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    62  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    63  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    64  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    65  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    66  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    67  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    68  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    69  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    70  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    71  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    72  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    73  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    74  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    75  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    76  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    77  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    78  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    79  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    80  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    81  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    82  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    83  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    84  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    85  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    86  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    87  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    88  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    89  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    90  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    91  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    92  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    93  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    94  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    95  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    96  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    97  com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    98  com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    99  com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    100 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    101 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    102 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    103 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    104 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    105 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    106 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    107 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    108 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    109 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    110 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    111 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    112 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    113 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    114 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    115 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    116 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    117 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    118 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    119 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    120 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    121 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    122 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    123 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    124 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    125 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    126 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    127 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    128 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    129 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    130 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    131 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    132 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    133 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    134 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    135 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    136 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    137 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    138 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    139 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    140 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    141 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    142 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    143 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    144 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    145 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    146 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    147 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    148 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    149 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    150 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    151 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    152 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    153 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    154 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    155 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    156 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    157 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    158 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    159 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    160 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    161 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    162 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    163 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    164 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    165 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    166 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    167 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    168 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    169 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    170 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    171 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    172 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    173 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    174 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    175 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    176 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    177 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    178 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    179 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    180 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    181 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    182 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    183 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    184 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    185 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    186 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    187 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    188 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    189 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    190 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    191 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    192 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    193 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    194 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    195 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    196 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    197 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    198 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    199 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    200 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    201 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    202 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    203 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    204 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    205 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    206 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    207 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    208 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    209 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    210 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    211 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    212 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    213 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    214 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    215 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    216 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    217 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    218 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    219 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    220 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    221 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    222 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    223 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    224 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    225 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    226 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    227 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    228 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    229 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    230 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    231 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    232 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    233 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    234 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    235 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    236 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    237 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    238 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    239 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    240 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    241 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    242 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    243 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    244 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    245 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    246 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    247 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    248 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    249 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    250 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    251 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    252 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    253 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    254 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    255 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    256 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    257 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    258 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    259 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    260 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    261 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    262 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    263 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    264 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    265 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    266 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    267 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    268 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    269 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    270 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    271 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    272 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    273 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    274 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    275 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    276 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    277 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    278 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    279 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    280 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    281 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    282 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    283 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    284 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    285 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    286 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    287 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    288 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    289 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    290 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    291 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    292 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    293 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    294 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    295 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    296 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    297 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    298 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    299 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    300 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    301 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    302 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    303 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    304 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    305 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    306 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    307 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    308 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    309 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    310 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    311 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    312 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    313 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    314 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    315 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    316 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    317 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    318 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    319 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    320 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    321 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    322 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    323 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    324 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    325 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    326 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    327 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    328 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    329 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    330 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    331 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    332 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    333 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    334 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    335 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    336 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    337 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    338 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    339 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    340 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    341 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    342 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    343 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    344 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    345 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    346 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    347 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    348 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    349 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    350 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    351 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    352 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    353 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    354 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    355 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    356 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    357 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    358 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    359 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    360 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    361 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    362 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    363 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    364 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    365 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    366 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    367 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    368 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    369 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    370 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    371 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    372 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    373 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    374 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    375 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    376 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    377 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    378 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    379 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    380 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    381 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    382 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    383 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    384 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    385 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    386 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    387 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    388 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    389 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    390 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    391 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    392 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    393 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    394 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    395 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    396 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    397 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    398 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    399 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    400 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    401 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    402 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    403 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    404 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    405 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    406 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    407 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    408 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    409 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    410 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    411 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    412 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    413 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    414 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    415 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    416 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    417 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    418 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    419 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    420 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    421 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    422 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    423 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    424 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    425 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    426 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    427 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    428 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    429 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    430 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    431 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    432 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    433 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    434 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    435 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    436 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    437 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    438 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    439 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    440 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    441 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    442 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    443 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    444 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    445 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    446 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    447 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    448 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    449 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    450 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    451 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    452 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    453 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    454 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    455 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    456 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    457 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion _spotlightQueryStringForCompoundCriterion] + 242
    458 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    459 com.apple.Mail.framework                0x00007fff88d3545d -[MFCriterion _spotlightQueryStringForMailboxCriterion] + 107
    460 com.apple.Mail.framework                0x00007fff88d34ba6 -[MFCriterion spotlightQueryString] + 479
    461 com.apple.Mail.framework                0x00007fff88d36abc -[MFCriterion

  • Report Builder 6i crashes while compiling

    I have report builder 6.0.8.11.3, running on Windows XP SP2.
    I am connecting to a 10g database and compiling a custom report.
    This report was running fine in the database, i just copied to my folder and compiling from local system (connecting to the 10g server). So this is not a code issue.
    After compiling 50%, the report builder crashes with this message: Report Builder has encountered a problem and needs to close.In more information, the error signature is given as AppName:rwbld60.exe AppVer3.0.0.0 ModName ora805.dll ModVer 0.0.0.0 Offset 00046d68.
    We have re-installed Report Builder/Windows/Oracle client from scratch many times but not able to solve this issue.
    Please let me know of any pointers in this regard.
    Thanks
    Manu

    dude dude we get the same error hell of times ..its a bug in report builder ..it suddenly crashes in unexpected situations and oracle is no longer supporting 6i builders ..i think its time for you to migrate to 10g developer suite.
    or else recreate the layout and try ..i have done that for many reports becuase for some reasons layout gets corrupted.
    All the best

  • Crash at compilation/Intermediate files generation LV FPGA module

    Hi.
    I'm in desperate need of assistance.
    I have been using LabVIEW 8.6 with FPGA module running at Win XP for som time now and I have never encountered any crash while compiling before.
    I get one of those Error messages where I just can send an error report to Microsoft.
    I use the FPGA target RIO0, PCI-7833R and have designed a FPGA interface-VI including a number of functions. When I right-click at the VI and choose Compile, generation of Intermediate files begins. Now I never get further than the before LV crashes. Each and every time.
    I have no problems opening the project file or my FPGA VI, updating them or saving them.
    Grateful for help. Thanks!
    /Henrik

    Hi!
    Thanks again for good ideas. Unfortunately it didn't help repairing. I tried with both FPGA Module and the FPGA compile server (even though the compilation process never reaches that far) without success. I even tried to repair the whole LabView 8.6 but with the same result.
    Even before repairing I have been able to make another small VI work its way through the whole compilation without crashing. But when I replace the small VI with the previously "failing" VI, it crashes again. I have also tried to cut away most of the functions of the VI but it still crashes.
    Is it possible that I have some kind of bad reference, some missmatch when instanciating and mapping any of the VHDL nodes or something like that that causes the crash? Still one would think that this should generate an error in LabView rather than generating a "windows crash", but maybe something can cause the file generator to fail completely. It has been working before and I did a very small change when the crashes started, but something is obviously wrong, so...
    Since its crashing even before connecting to the compile server, do you think I can rule out any damage/failing on any of the HW (e.g. the National specific HW and my external board and the on-board FPGA? Since I'm running out of ideas myself I guess I could look into that as well, but I can't see that that's the problem.
    BR
    /Henrik

  • Web Application suddenly crash (Citrix is not Responding, Citrix stoped Working) - Windows Update Dec 2014

    After the distribution of the latest windows update on Dec 2014 we started to face irregular behavior with our Citrix ICA Client V12 which is used to connect to our online applications. The web application suddenly crash and windows provides an error message
    as below. The event viewer shows the below log.
    We suspect that it was duo to Windows update, we have tried this fix (https://support.microsoft.com/kb/3025390) but with no luck.
    Any help is appreciated.
    Faulting application name: WFICA32.EXE, version: 9.200.44376.0, time stamp: 0x4457db21
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521ea91c
    Exception code: 0xc0000005
    Fault offset: 0x00056b0d
    Faulting process id: 0x10d4
    Faulting application start time: 0x01d019e9afafc4b1
    Faulting application path: C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: f6c843ce-85dc-11e4-b1c7-d4bed9e4153f

    We have tried to also to run (System File Checker) SFC /Scannow to check if there are any issue with the system files as outlined in the event log. But there was no problem returned with the checker.
    I have extracted the below Windows Error Reporting WER file when the ICA client crash. Can we analyze the data as we might find the cause,
    Version=1
    EventType=APPCRASH
    EventTime=130636298224429936
    ReportType=2
    Consent=1
    UploadTime=130636298279335952
    ReportIdentifier=a415d253-88f8-11e4-84ec-f04da2276df6
    IntegratorReportIdentifier=a415d252-88f8-11e4-84ec-f04da2276df6
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=WFICA32.EXE
    Sig[1].Name=Application Version
    Sig[1].Value=9.200.44376.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=4457db21
    Sig[3].Name=Fault Module Name
    Sig[3].Value=ntdll.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=6.1.7601.18247
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=521ea91c
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000005
    Sig[7].Name=Exception Offset
    Sig[7].Value=00052d37
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.48
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=0a9e
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=0a9e372d3b4ad19135b953a78882e789
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=0a9e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=0a9e372d3b4ad19135b953a78882e789
    UI[2]=C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE
    UI[3]=Citrix ICA Client Engine (Win32) has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\system32\USER32.dll
    LoadedModule[5]=C:\Windows\system32\GDI32.dll
    LoadedModule[6]=C:\Windows\system32\LPK.dll
    LoadedModule[7]=C:\Windows\system32\USP10.dll
    LoadedModule[8]=C:\Windows\system32\msvcrt.dll
    LoadedModule[9]=C:\Windows\system32\SHELL32.dll
    LoadedModule[10]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[11]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[12]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[13]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[14]=C:\Windows\system32\ole32.dll
    LoadedModule[15]=C:\Windows\system32\VERSION.dll
    LoadedModule[16]=C:\PROGRA~1\Citrix\ICACLI~1\ICALOGON.dll
    LoadedModule[17]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\COMCTL32.dll
    LoadedModule[18]=C:\PROGRA~1\Citrix\ICACLI~1\PScript.dll
    LoadedModule[19]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[20]=C:\PROGRA~1\Citrix\ICACLI~1\SSLSDK_B.dll
    LoadedModule[21]=C:\PROGRA~1\Citrix\ICACLI~1\ACRDLG.dll
    LoadedModule[22]=C:\PROGRA~1\Citrix\ICACLI~1\STATUIN.dll
    LoadedModule[23]=C:\PROGRA~1\Citrix\ICACLI~1\TcpPServ.dll
    LoadedModule[24]=C:\PROGRA~1\Citrix\ICACLI~1\CgpCore.dll
    LoadedModule[25]=C:\PROGRA~1\Citrix\ICACLI~1\CGPCFG.dll
    LoadedModule[26]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[27]=C:\Windows\system32\netutils.dll
    LoadedModule[28]=C:\Windows\system32\srvcli.dll
    LoadedModule[29]=C:\Windows\system32\wkscli.dll
    LoadedModule[30]=C:\Windows\system32\WINMM.dll
    LoadedModule[31]=C:\Windows\system32\apphelp.dll
    LoadedModule[32]=C:\Windows\AppPatch\AcXtrnal.DLL
    LoadedModule[33]=C:\Windows\system32\IMM32.DLL
    LoadedModule[34]=C:\Windows\system32\MSCTF.dll
    LoadedModule[35]=C:\PROGRA~1\Citrix\ICACLI~1\resource\en\STATUIUI.DLL
    LoadedModule[36]=C:\Windows\system32\uxtheme.dll
    LoadedModule[37]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[38]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    LoadedModule[39]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[40]=C:\Windows\system32\propsys.dll
    LoadedModule[41]=C:\Windows\system32\ntmarta.dll
    LoadedModule[42]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[43]=C:\Windows\system32\SETUPAPI.dll
    LoadedModule[44]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[45]=C:\Windows\system32\DEVOBJ.dll
    LoadedModule[46]=C:\Windows\system32\WINSTA.dll
    LoadedModule[47]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[48]=C:\Windows\system32\wininet.dll
    LoadedModule[49]=C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll
    LoadedModule[50]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
    LoadedModule[51]=C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll
    LoadedModule[52]=C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll
    LoadedModule[53]=C:\Windows\system32\normaliz.DLL
    LoadedModule[54]=C:\Windows\system32\iertutil.dll
    LoadedModule[55]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll
    LoadedModule[56]=C:\Windows\system32\USERENV.dll
    LoadedModule[57]=C:\Windows\system32\profapi.dll
    LoadedModule[58]=C:\PROGRA~1\Citrix\ICACLI~1\resource\en\WFICA3UI.DLL
    LoadedModule[59]=C:\Windows\system32\dwmapi.dll
    LoadedModule[60]=C:\PROGRA~1\Citrix\ICACLI~1\PDCOMPN.DLL
    LoadedModule[61]=C:\Windows\system32\netbios.dll
    LoadedModule[62]=C:\PROGRA~1\Citrix\ICACLI~1\VDTW30N.DLL
    LoadedModule[63]=C:\PROGRA~1\Citrix\ICACLI~1\VDCDM30N.DLL
    LoadedModule[64]=C:\Windows\system32\MPR.dll
    LoadedModule[65]=C:\PROGRA~1\Citrix\ICACLI~1\VDSPL30N.DLL
    LoadedModule[66]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[67]=C:\PROGRA~1\Citrix\ICACLI~1\reducv3.dll
    LoadedModule[68]=C:\PROGRA~1\Citrix\ICACLI~1\pcl4rast.dll
    LoadedModule[69]=C:\PROGRA~1\Citrix\ICACLI~1\emfrendr.dll
    LoadedModule[70]=C:\PROGRA~1\Citrix\ICACLI~1\VDCPM30N.DLL
    LoadedModule[71]=C:\PROGRA~1\Citrix\ICACLI~1\VDCOM30N.DLL
    LoadedModule[72]=C:\PROGRA~1\Citrix\ICACLI~1\VDCAMN.DLL
    LoadedModule[73]=C:\PROGRA~1\Citrix\ICACLI~1\AUDCVTN.DLL
    LoadedModule[74]=C:\PROGRA~1\Citrix\ICACLI~1\ADPCM.DLL
    LoadedModule[75]=C:\PROGRA~1\Citrix\ICACLI~1\VDCMN.DLL
    LoadedModule[76]=C:\PROGRA~1\Citrix\ICACLI~1\resource\en\VDCMNUI.DLL
    LoadedModule[77]=C:\PROGRA~1\Citrix\ICACLI~1\VDTWIN.DLL
    LoadedModule[78]=C:\PROGRA~1\Citrix\ICACLI~1\VDFON30N.DLL
    LoadedModule[79]=C:\PROGRA~1\Citrix\ICACLI~1\VDMMN.DLL
    LoadedModule[80]=C:\PROGRA~1\Citrix\ICACLI~1\VDCTLN.DLL
    LoadedModule[81]=C:\PROGRA~1\Citrix\ICACLI~1\VDSPMIKE.DLL
    LoadedModule[82]=C:\PROGRA~1\Citrix\ICACLI~1\VDTWN.DLL
    LoadedModule[83]=C:\Windows\system32\WS2_32.DLL
    LoadedModule[84]=C:\Windows\system32\NSI.dll
    LoadedModule[85]=C:\Windows\system32\mswsock.dll
    LoadedModule[86]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[87]=C:\Windows\system32\Secur32.dll
    LoadedModule[88]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[89]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
    LoadedModule[90]=C:\Windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll
    LoadedModule[91]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll
    LoadedModule[92]=C:\Windows\System32\wship6.dll
    LoadedModule[93]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[94]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[95]=C:\Windows\system32\MMDevAPI.DLL
    LoadedModule[96]=C:\Windows\system32\wdmaud.drv
    LoadedModule[97]=C:\Windows\system32\ksuser.dll
    LoadedModule[98]=C:\Windows\system32\AVRT.dll
    LoadedModule[99]=C:\Windows\system32\spool\DRIVERS\W32X86\3\unidrvui.dll
    LoadedModule[100]=C:\Windows\system32\spool\DRIVERS\W32X86\3\mxdwdrv.dll
    LoadedModule[101]=C:\Windows\system32\spool\DRIVERS\W32X86\3\hpmdp083.dll
    LoadedModule[102]=C:\Windows\system32\spool\DRIVERS\W32X86\3\hpcui083.dll
    LoadedModule[103]=C:\Windows\system32\COMPSTUI.dll
    LoadedModule[104]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[105]=C:\Windows\system32\ATL.DLL
    LoadedModule[106]=C:\Windows\system32\spool\DRIVERS\W32X86\3\unidrv.dll
    LoadedModule[107]=C:\Windows\System32\msxml3.dll
    LoadedModule[108]=C:\Windows\system32\spool\DRIVERS\W32X86\3\KMUU51KQ.DLL
    LoadedModule[109]=C:\Windows\system32\COMDLG32.dll
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=Citrix ICA Client Engine (Win32)
    AppPath=C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE

  • IMac sudden crash

    Hello all.
    My iMac suddenly crashes and then fails to restart. Only after some time, ten to twenty minutes usually, can I manually restart the computer.
    I have yet to identify any trends in usage before the crash.
    All other devices connected to the same surge protector work fine, and fail to have this issue.
    Any answers or suggestions out there????
    Thanks!

    I have the exact same problem with my 1-year-old intel iMac. It is very frustrating. The computer is effectively non-functional. I have brought it back to the store 6 times. It has had 4 repairs and the problem persists. They cannot seem to figure it out. The last time I brought it in they could not "reproduce" the problem. They replaced my fans motor, so it likely has nothing to do with temperature. We also not the only ones having this problem. There are several non-apple posts discussing this issue. Unfortunately, I think Apple has a serious defect problem with this model and are unwilling to take responsibility for it. They would rather lose a certain percentage of their customer base than provide replacement computers. I plan to take my iMac in next week and will continue to post progress, or lack of it, on this issue.

  • My ipod touch (5) ios6 has suddenly crash causing it not to switch off or switch on

    my ipod touch (5) ios6 has suddenly crash causing it not to switch off or switch on while i was opening the notification center

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • My iphone suddenly crashed and asked for restoration, however itunes sends error message of host not available, what should I do?

    My iphone suddenly crashed and asked for restoration, however itunes sends error message of host not available (3014), what should I do?

    Try -
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.
    The "device may need service" means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    Also see:
    3014
    Restoration of code 3014 will not work?: Apple Support Communities

  • X7 WinHelp files crashing on compile

    One of our locations is encountering this problem: We are
    facing a daunting task in the last couple of months to work with
    RoboHelp in publishing our WinHelp4 files for our products. The
    project crashes when compiling the help files resulting in losing
    all the changes which we have done for the current sprint and
    previous ones. I tried researching this issue in the Adobe website
    and did not find any workarounds. The new tool RoboHelp X7 is
    crashing with errors not only on my machine but also on other
    machines. As a result, I had to go back to my old version of RH X5.
    I generated the compiled help file successfully after cleaning my
    machine of the window and office updates. I had to re-install the
    Windows XP operating system twice on my machine to get rid of the
    new window and office updates. However, this only gave me a small
    reprieve to compile the help file for a brief time. But once again
    the same problem has re-appeared and I am totally at my wits end
    how to resolve this issue with our stated releases in the month of
    December 2008. Following is the compile error which leads to the
    project crashing.
    "Microsoft Help Workshop has encountered an error and needs
    to close. We are sorry for the inconvenience. if you were in the
    middle of something, the information you were working on might be
    lost. Please tell Microsoft about this problem..." I'm sure the
    error report was not sent to Microsoft. Has anyone encountered this
    issue, and if so, can you provide any assistance? Thanks very
    much.

    My Chrome browser just crashed yet again and I followed your instructions to get the crash reports but there is nothing in the folder.
    I am using Chrome Version 32.0.1700.19 beta-m Aura and Skype Click to Call 6.13.0.13771 running on Windows 7 in Bootcamp on iMac.

  • Macbook Air suddenly crashing

    Hello guys,
    I really would appreciate your help with this problem that i'm facing on my Mac.
    I have this Macbook Air 11", 1.6 GHz Intel Core 2 Dup, 4 GB RAM DDR3, 128 SSD HD and Mac OS X Mountain Lion updated to the version 10.8.2.
    I don't know what happens, but it suddenly crash/freezes.
    It's happening very often - something around 3 or 4 times per day.
    When it happens, the screen just go dark (sometimes white, red and even blue - it's so wired!), and then i have to hold down the power button, until it turns off. Then, i press it again and it turns on normally.
    Everything works fine while it's on, but it's very annoying when i'm in the middle of some work and it crashes. I always loose something.
    I would be glad if someone could help me.
    Thank you very much!

    I,
    Yes it could very well be if you have  particularly an Intel MacBook Air it would shut down if it's overheating.
    http://gigaom.com/apple/is-mountain-lion-too-hot-for-your-mac-to-handle/
    Scroll down and read about overheating issues with Intel.
    One of the things to do is feel the heat on the left underside when first turned on &amp; compare a few hours later.
    You can use Utilities, Activity monitor to see what is hogging memory &amp; also which processes do a lot of IO read/writes. See if you have things auto loading in the background via System Preferences, User, Logon Items.
    Is the fan noisy just before it shuts down?   If it is and there is heat then something is overloading the CPU. It could be, believe it or not, an app that misbehaves. I had that with a Wundershare Video app. So think back to when this was not happening &amp; if you know what apps you installed after that. Simply deinstalling sometimes works but if the app. changed some root content then you may need a clean install of the OS and carefully add apps a day at a time.
    If the fan is NOT noisy but there is heat get thee to an Apple store because if the heatsink fan is broken that can wreck your MBA over time or pretty quickly.
    I would in your shoes, if it is overheating get a laptop cooling stand or pad. I have a Logitech one with great speakers built in and two cooling fans.
    Hopefully these tips help you diagnose.
    Brenda

  • IPhoto suddenly crashing after it's open for 3 seconds.Its saying Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ __NSCFDictionary 0x18d70d10 valueForUndefinedKey:]: this class is not key value coding-compliant for the key

    Iphoto is suddenly crashing after about 3 seconds on my MacBook Pro. - Here is problem report
    Crashed Thread: 46  Import thread 0
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<__NSCFDictionary 0x18d70d10> valueForUndefinedKey:]: this class is not key value coding-compliant for the key .'
    Why? all of a sudden??
    Thanks

    Wow, that' s awesome, I encountered the same problem with ya today when trying implement Pickers in Tabbar, and can't figure out why, the debugger just throw back such vague message and guess what ? I spent like 3 hours banging my head against the wall wonder why it's not working, I using XCode 2.2.1, my debugger wont work ( program won't stop at break points for what ever I tried ), and not very friendly with those newbie like me - really don't know where are all the Apple's software developer 1337 ? As I remembered, all the good ones goes for the hardware, "the rest" goes for the software =)), but thanks again, thanks, and again, click the tab bar, set both the class and nib file would get rid of the errors, if it would help some one, the credit goes to the two above, say thanks to them, like me. Have a nice day guys, I 'ma happy .

  • Configurat​ion file suddenly crashes

    Hello,
    To save some settings for my programm I use Configuration file VI's. And sometimes my ini file suddenly crashes - all settings became zero's. There is no place in my prog, where all keys of ini file sets to zero. Could somebody help me to fix the problem?

    Hi Err,
    can you upload your vi?
    Mike

Maybe you are looking for

  • Video card to run 2nd and 3rd monitors cs5.5

    Hello all, I have a powerful system with multiple hard drives that I use to cut HD DSLR footage on in CS5.5.  My GTX 570 runs my 1st monitor and my 9600GT runs the 2nd and 3rd monitors with great success. 1st monitor = timeline 2nd = bins 3rd = full

  • Problem With Security Question ?

    the saved email is @hoymail.com not @hotmail.com and i know the email what should i do

  • Identity Services Engine Initialization Error

    I have been working with TAC and other's at Cisco to resolve this problem, and also have a case open with the developers. However, I thought it might be a good idea to open it up to you all to see if you had encountered this problem in the past. I am

  • How do I buy Photoshop online from Korea?

    My free trial has ended. I want to buy the product. I live in Korea (I'm not Korean), and I'm having difficulty changing the country in the section where I put my credit card info. My credit card is for my Korean bank account.

  • Error importing PSD files

    When I import a folder containing master images which I've already saved as PSD files, for 90% of them I get an error saying basically that LR couldn't import the PSD files and that I should re-save in photoshop with maximize compatibility turned on.