Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

PCGenListFileHelp · PCGen List File & Documentation Help

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1805
  • Category: Open Source
  • Founded: Jan 1, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 19353 - 19382 of 23640   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#19353 From: "Allen C" <allen@...>
Date: Mon Mar 1, 2010 9:50 pm
Subject: D&D 3.5 Template Help, Please
allencohn
Send Email Send Email
 
Hi, folks,

I'm working on a template with some weird properties I don't know how to code.
Among them are:

* movement increases by 50%--would that be  "BONUS:MOVEMULT|Type.all|1.5"?
* cold resistance of 5 +1/HD (max 20 total)
* Choice of one supernatural ability per four levels, minimum of one. The
abilities include +2 luck bonus to saves, cause fear 1/day at CL5, DR 5/magic,
evasion, fast healing 2
* CR--+1

If anyone knows how to code any of these template features off the top of their
heads, please help.

Many thanks,
Allen

#19354 From: Andrew Maitland <drew0500@...>
Date: Tue Mar 2, 2010 1:24 am
Subject: Re: D&D 3.5 Template Help, Please
Drew0500
Send Email Send Email
 
On 3/1/2010 1:50 PM, Allen C wrote:
> Hi, folks,
>
> I'm working on a template with some weird properties I don't know how to code.
Among them are:
>
> * movement increases by 50%--would that be  "BONUS:MOVEMULT|Type.all|1.5"?
>

Hm, not sure about that one. TYPE.All may or may not work, IIRC ANY
might be the proper term off the top of my head. Second issue, I don't
think PCGen math likes using those Decimals. That will require some thought.
> * cold resistance of 5 +1/HD (max 20 total)
>

BONUS:VAR|ColdResistanceBonus|min(TL,15)
and BONUS:VAR|ColdResistanceBonus|5

You'll need to add the Cold Resistance Ability. If you need help with
that let me know.

> * Choice of one supernatural ability per four levels, minimum of one. The
abilities include +2 luck bonus to saves, cause fear 1/day at CL5, DR 5/magic,
evasion, fast healing 2
>

Oh, make a New AbilityCategory and then do a BONUS:ABILITYPOOL|<The
AbilityCat you made>|TL/4

Then create each of those in the above list as an ability that is called
into that ability category. Again, if you need help with that, then let
me know.
> * CR--+1
>

Uh, CR:1  I think, or do you want to increase the actual ECL?
LEVELADJUSTMENT:1 is what you'd use if that is the case.
> If anyone knows how to code any of these template features off the top of
their heads, please help.
>
> Many thanks,
> Allen
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>
>

--

Andrew Maitland (LegacyKing)
Admin Silverback, PCGen Board of Directors
Data Chimp, Docs Tamarin
Unique Title "Quick-Silverback Tracker Monkey"

#19355 From: "Allen C" <allen@...>
Date: Tue Mar 2, 2010 5:44 am
Subject: Re: D&D 3.5 Template Help, Please
allencohn
Send Email Send Email
 
Thank you for your help. Yes, I could use some more on the points you mentioned.

* What kind of file is a cold resistance ability defined in. (The ability file?)
(I was kind of surprised that cold resistance isn't defined already like fire
resistance...or maybe that's not either.) Could you give me an example of a
similar ability so I may model on it?

* I assume that once I define the variable, the DESC or similar needs to
reference the variable so that it shows up on the printout?

* What kind of file is an ability category created in? Can you point me to an
example for me to model from?

Thanks again,
Allen

--- In PCGenListFileHelp@yahoogroups.com, Andrew Maitland <drew0500@...> wrote:
>
>
>
> On 3/1/2010 1:50 PM, Allen C wrote:
> > Hi, folks,
> >
> > I'm working on a template with some weird properties I don't know how to
code. Among them are:
> >
> > * movement increases by 50%--would that be  "BONUS:MOVEMULT|Type.all|1.5"?
> >
>
> Hm, not sure about that one. TYPE.All may or may not work, IIRC ANY
> might be the proper term off the top of my head. Second issue, I don't
> think PCGen math likes using those Decimals. That will require some thought.
> > * cold resistance of 5 +1/HD (max 20 total)
> >
>
> BONUS:VAR|ColdResistanceBonus|min(TL,15)
> and BONUS:VAR|ColdResistanceBonus|5
>
> You'll need to add the Cold Resistance Ability. If you need help with
> that let me know.
>
> > * Choice of one supernatural ability per four levels, minimum of one. The
abilities include +2 luck bonus to saves, cause fear 1/day at CL5, DR 5/magic,
evasion, fast healing 2
> >
>
> Oh, make a New AbilityCategory and then do a BONUS:ABILITYPOOL|<The
> AbilityCat you made>|TL/4
>
> Then create each of those in the above list as an ability that is called
> into that ability category. Again, if you need help with that, then let
> me know.
> > * CR--+1
> >
>
> Uh, CR:1  I think, or do you want to increase the actual ECL?
> LEVELADJUSTMENT:1 is what you'd use if that is the case.
> > If anyone knows how to code any of these template features off the top of
their heads, please help.

#19356 From: Andrew Maitland <drew0500@...>
Date: Tue Mar 2, 2010 3:36 pm
Subject: Re: Re: D&D 3.5 Template Help, Please
Drew0500
Send Email Send Email
 
Hi Allen,

I'll be able to give a more detailed response later tonight when I get off work
if you still need help.

All of the Resistances are already defined and set up in the rsrd basic folder.
I'm not sure which file from memory, but all you'll need to is use
'ABILITY:Special Ability|AUTOMATIC|Resistance to Cold'

In combination of the BONUS:VARs I gave you in the previous post.

To set up the abilitycategory (Yeah, I seriously need to cheat and make a walk
through, since I've done this quite a bit and it's easier to point to a
completed file)

ABILITYCATEGORY File

ABILITYCATEGORY:Allen Ability Category
    CATEGORY:Special Ability
    TYPE:AllenSpecialGroup
    EDITABLE:YES
    EDITPOOL:YES
    DISPLAYLOCATION:Class Abilities
    PLURAL:Allen Ability Categories

In the Ability File

You mentioned you wanted the following "+2 luck bonus to saves, cause fear 1/day
at CL5, DR 5/magic, evasion, fast healing 2 "

+2 Luck Bonus to Saves
    CATEGORY:Special Ability
    TYPE:AllenSpecialGroup.SpecialQuality
    KEY:Plus Two Luck Bonus to Saves
    BONUS:CHECKS|ALL|2|TYPE=Luck

DR 5/magic
    KEY:Damage Reduction Five ~ Magic
    CATEGORY:Special Ability
    TYPE:AllenSpecialGroup.SpecialQuality
    DR:5/magic

Repeat for each ability.

Note: The TYPE is the Same for each ability so they are in the Same Ability Pool
SpecialQuality and SpecialAttack will display the ability on the character sheet
Using DESC will give you any details you wish to add.

Let me know if this will tide you over, or if you need anything else.

-Andrew (At Work)



________________________________
From: Allen C <allen@...>
To: PCGenListFileHelp@yahoogroups.com
Sent: Mon, March 1, 2010 9:44:49 PM
Subject: [PCGenListFileHelp] Re: D&D 3.5 Template Help, Please

Thank you for your help. Yes, I could use some more on the points you mentioned.

* What kind of file is a cold resistance ability defined in. (The ability file?)
(I was kind of surprised that cold resistance isn't defined already like fire
resistance...or maybe that's not either.) Could you give me an example of a
similar ability so I may model on it?

* I assume that once I define the variable, the DESC or similar needs to
reference the variable so that it shows up on the printout?

* What kind of file is an ability category created in? Can you point me to an
example for me to model from?

Thanks again,
Allen

--- In PCGenListFileHelp@yahoogroups.com, Andrew Maitland <drew0500@...> wrote:
>
>
>
> On 3/1/2010 1:50 PM, Allen C wrote:
> > Hi, folks,
> >
> > I'm working on a template with some weird properties I don't know how to
code. Among them are:
> >
> > * movement increases by 50%--would that be    
"BONUS:MOVEMULT|Type.all|1.5"?
> >   
>
> Hm, not sure about that one. TYPE.All may or may not work, IIRC ANY
> might be the proper term off the top of my head. Second issue, I don't
> think PCGen math likes using those Decimals. That will require some thought.
> > * cold resistance of 5 +1/HD (max 20 total)
> >   
>
> BONUS:VAR|ColdResistanceBonus|min(TL,15)
> and BONUS:VAR|ColdResistanceBonus|5
>
> You'll need to add the Cold Resistance Ability. If you need help with
> that let me know.
>
> > * Choice of one supernatural ability per four levels, minimum of one. The
abilities include +2 luck bonus to saves, cause fear 1/day at CL5, DR 5/magic,
evasion, fast healing 2
> >   
>
> Oh, make a New AbilityCategory and then do a BONUS:ABILITYPOOL|<The
> AbilityCat you made>|TL/4
>
> Then create each of those in the above list as an ability that is called
> into that ability category. Again, if you need help with that, then let
> me know.
> > * CR--+1
> >   
>
> Uh, CR:1  I think, or do you want to increase the actual ECL? 
> LEVELADJUSTMENT:1 is what you'd use if that is the case.
> > If anyone knows how to code any of these template features off the top of
their heads, please help.




------------------------------------

Yahoo! Groups Links



[Non-text portions of this message have been removed]

#19357 From: "Catullusque" <dosisek@...>
Date: Wed Mar 3, 2010 6:09 am
Subject: Re: Applying a TOHIT bonus only to simple melee weapons
Catullusque
Send Email Send Email
 
Thanks again, Andrew.  But I still can't seem to make the SimpleMelee modifier
work.  I've created a dlo.pcc file calling out a dlo_weaponprofs.lst containing
lines of the form:

Dagger.MOD<tab>TYPE:SimpleMelee

as you suggested.  I also included in my .pcc callouts to the SRD files I wanted
to include:
    PCC:..\d20ogl\srd35\advanced\rsrd_advanced.pcc
    PCC:..\d20ogl\srd35\basics\rsrd_basics.pcc
    PCC:..\d20ogl\srd35\divine\rsrd_divine.pcc
    PCC:..\d20ogl\srd35\epic\rsrd_epic.pcc
and that seems to work great.  So I can select my "3.5e-dloMods" campaign from
the Settings menu, and PCGen loads the sources and later my character file
without any errors.  I know that my weaponprofs file is being processed, because
when I put a bad line in there (e.g. "Xyzzy.MOD..."), I do get an error message
on it.

But it seems the .MODs still aren't having the desired effect.  The bonus for
Intuitive Attack doesn't apply to the weapons I've ".MOD"ed.  I know I've coded
that bonus correctly, because I also coded a similar bonus tag applying to
TOHIT.Hammer, and all weapons of the Hammer type get the bonus -- but no go with
SimpleMelee.

As a reminder, the tags I coded under the Intuitive Attack ability def are:
    <tab>BONUS:COMBAT|TOHIT.SimpleMelee|(max(STR,WIS)-STR)|TYPE=Intuitive
    <tab>BONUS:COMBAT|TOHIT.Hammer|(max(STR,WIS)-STR)|TYPE=Intuitive

Also, I notice that when I click on a Simple Melee weapon like Dagger in the
inventory tab, the description that appears in bottom left does not include my
new "SimpleMelee" attribute in the list of types, alongside "Weapon. Melee.
Finesseable." etc.  Shouldn't my added type "SimpleMelee" show up there, if the
.MOD executed correctly?

Do I have to explicitly define the type "SimpleMelee" somewhere?  If so, where?

And when I go to the Character Sheet or Preview, indeed the daggers, clubs etc.
don't get the Intuitive Attack bonus, while e.g. Warhammer does.

So, what am I doing wrong on these (weapon).MOD tags???

Another thought:  If what I'm really doing is defining a new "weapon
proficiency" category named SimpleMelee, does my character have to be defined as
proficient in "SimpleMelee" weapons for the bonus to take?  (He is proficient in
the weapons, because he's proficient in "Simple," which they all are.)

I also stumbled across the WEAPONCATEGORY: definition in the docs.  Is that how
I should be defining SimpleMelee, rather than as a weaponprof?  If so, where
would I put that?  The doc doesn't say what file each of these tags goes in.

Sorry to keep hounding you ... I feel like I'm hovering close to the solution,
but just not there yet.  Thanks for any help you can give.

-- Damian

#19358 From: Andrew Maitland <drew0500@...>
Date: Wed Mar 3, 2010 2:52 pm
Subject: Re: Re: Applying a TOHIT bonus only to simple melee weapons
Drew0500
Send Email Send Email
 
Hi,

I'll run a few tests and double check but it should be working.

I'm assuming you're using 5.16.2, and no errors on load correct?

Can you send me your proficiency and pcc file, sometimes a simple little mistake
can cause the most grief.

- Andrew (At Work) 




________________________________
From: Catullusque <dosisek@...>
To: PCGenListFileHelp@yahoogroups.com
Sent: Tue, March 2, 2010 10:09:01 PM
Subject: [PCGenListFileHelp] Re: Applying a TOHIT bonus only to simple melee
weapons

Thanks again, Andrew.  But I still can't seem to make the SimpleMelee modifier
work.  I've created a dlo.pcc file calling out a dlo_weaponprofs.lst containing
lines of the form:

Dagger.MOD<tab>TYPE:SimpleMelee

as you suggested.  I also included in my .pcc callouts to the SRD files I wanted
to include:
  PCC:..\d20ogl\srd35\advanced\rsrd_advanced.pcc
  PCC:..\d20ogl\srd35\basics\rsrd_basics.pcc
  PCC:..\d20ogl\srd35\divine\rsrd_divine.pcc
  PCC:..\d20ogl\srd35\epic\rsrd_epic.pcc
and that seems to work great.  So I can select my "3.5e-dloMods" campaign from
the Settings menu, and PCGen loads the sources and later my character file
without any errors.  I know that my weaponprofs file is being processed, because
when I put a bad line in there (e.g. "Xyzzy.MOD..."), I do get an error message
on it.

But it seems the .MODs still aren't having the desired effect.  The bonus for
Intuitive Attack doesn't apply to the weapons I've ".MOD"ed.  I know I've coded
that bonus correctly, because I also coded a similar bonus tag applying to
TOHIT.Hammer, and all weapons of the Hammer type get the bonus -- but no go with
SimpleMelee. 

As a reminder, the tags I coded under the Intuitive Attack ability def are:
  <tab>BONUS:COMBAT|TOHIT.SimpleMelee|(max(STR,WIS)-STR)|TYPE=Intuitive   
  <tab>BONUS:COMBAT|TOHIT.Hammer|(max(STR,WIS)-STR)|TYPE=Intuitive

Also, I notice that when I click on a Simple Melee weapon like Dagger in the
inventory tab, the description that appears in bottom left does not include my
new "SimpleMelee" attribute in the list of types, alongside "Weapon. Melee.
Finesseable." etc.  Shouldn't my added type "SimpleMelee" show up there, if the
.MOD executed correctly?

Do I have to explicitly define the type "SimpleMelee" somewhere?  If so, where?

And when I go to the Character Sheet or Preview, indeed the daggers, clubs etc.
don't get the Intuitive Attack bonus, while e.g. Warhammer does.

So, what am I doing wrong on these (weapon).MOD tags???

Another thought:  If what I'm really doing is defining a new "weapon
proficiency" category named SimpleMelee, does my character have to be defined as
proficient in "SimpleMelee" weapons for the bonus to take?  (He is proficient in
the weapons, because he's proficient in "Simple," which they all are.)

I also stumbled across the WEAPONCATEGORY: definition in the docs.  Is that how
I should be defining SimpleMelee, rather than as a weaponprof?  If so, where
would I put that?  The doc doesn't say what file each of these tags goes in.

Sorry to keep hounding you ... I feel like I'm hovering close to the solution,
but just not there yet.  Thanks for any help you can give.

-- Damian




------------------------------------

Yahoo! Groups Links



[Non-text portions of this message have been removed]

#19359 From: Sam Elmore <sam9am@...>
Date: Thu Mar 4, 2010 4:17 pm
Subject: Re: Re: animal companion creation...
sam9am
Send Email Send Email
 
I tried loading the character sheet today and here's what I got from
the report that I could send to apple...I couldn't access the debug
console b/c everything froze and the screen was blank on the console...

All I had done was open the program version 5.17.1, put it in debug
mode, load 3.5 RSRD and attempt to open a character sheet.  After
waiting 5 minutes the "not responding" message came up on Force Quit
so I quit the program and retrieved the message from the crash report
sent to Apple...

If this isn't what you're looking for, please let me know how to get
what you're looking for since I'm truly a tech newbie...


Thanks!


Sam

Just to refresh, I'm running on a Mac OS 10.5.8 running  Java(TM) 2
Runtime Environment, Standard Edition (build 1.5.0_22-
>> b03-333-9M3125)
>> Java HotSpot(TM) Client VM (build 1.5.0_22-147, mixed mode, sharing)
>


Date/Time:      2010-03-04 11:07:43 -0500
OS Version:     10.5.8 (Build 9L30)
Architecture:   i386
Report Version: 4

Command:        Java Virtual Machine
Path:           /System/Library/Frameworks/JavaVM.framework/Resources/
MacOS/JavaApplicationStub
Version:        12.5.0 (12.5.0)
Parent:         launchd [83]

PID:            374
Event:          hang
Time:           26.77s
Steps:          162


Process:        JavaApplicationStub [374]
Path:           /System/Library/Frameworks/JavaVM.framework/Resources/
MacOS/JavaApplicationStub

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/JavaVM.framework/
Resources/MacOS/JavaApplicationStub
    00012000        /System/Library/PrivateFrameworks/
JavaApplicationLauncher.framework/Versions/A/JavaApplicationLauncher
    00024000        /System/Library/Frameworks/JavaVM.framework/
Versions/A/JavaVM
    0004d000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libverify.dylib
    0005a000        /System/Library/Frameworks/JavaVM.framework/
Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/
JavaNativeFoundation
    00075000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libjava.jnilib
    0009f000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libzip.jnilib
    003bc000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libclient.dylib
    0175b000        /System/Library/PrivateFrameworks/
JavaApplicationLauncher.framework/Versions/A/Resources/
liblauncher.jnilib
    8bcc0000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
Versions/A/Resources/ATSHI.dylib
    8d2c2000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/liblaf.jnilib
    8d2de000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libawt.jnilib
    8f123000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libcmm.jnilib
    8fd83000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libsuncmm.jnilib
    8fe93000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libjpeg.jnilib
    b9d0b000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera
    ba301000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libfontmanager.jnilib
    ba607000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libnet.jnilib
    ba619000        /System/Library/Frameworks/JavaVM.framework/
Versions/1.5.0/Libraries/libnio.jnilib
    ba900000        /System/Library/CoreServices/Encodings/
libJapaneseConverter.dylib

    Thread id:      3be03c8
    User stack:
      162 ??? [0x1c19]
        162 ??? [0x1cec]
          162 ??? [0x1e8a]
            162 _launchJavaApplication + 1396 (in
JavaApplicationLauncher) [0x136c8]
              162 __Z11startupJavaP18LauncherArgsStruct + 308 (in
JavaApplicationLauncher) [0x13f22]
                162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                  162 _CFRunLoopRunSpecific + 3141 (in CoreFoundation)
[0x91e423c5]
                    162 ___NSThreadPerformPerform + 476 (in Foundation)
[0x963ee9ac]
                      162 -[CPerformer perform] + 281 (in
libawt.jnilib) [0x8d2df786]
                        162 +[AWTStarter startAWT:] + 1941 (in
libawt.jnilib) [0x8d2dff69]
                          162 -[NSApplication run] + 867 (in AppKit)
[0x94a05fe7]
                            162 -[NSApplication sendEvent:] + 2939 (in
AppKit) [0x94aa86a5]
                              162 -[NSWindow sendEvent:] + 5381 (in
AppKit) [0x94adbaf7]
                                162 -[NSThemeFrame mouseDown:] + 156
(in AppKit) [0x94c7b1c7]
                                  162 -[NSTitledFrame mouseDown:] + 146
(in AppKit) [0x94c7b264]
                                    162 -[NSTitledFrame
resizeWithEvent:] + 1276 (in AppKit) [0x94c8af96]
                                      162 -[CocoaAppWindow
setFrame:display:] + 263 (in libawt.jnilib) [0x8d2e44e3]
                                        162 -[NSWindow
setFrame:display:] + 78 (in AppKit) [0x94ac1dc6]
                                          162 -[NSWindow
_setFrameCommon:display:stashSize:] + 2031 (in AppKit) [0x94ac25bd]
                                            162 -[NSView
displayIfNeeded] + 933 (in AppKit) [0x94a0fe7b]
                                              162 -[NSView
_displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] +
3090 (in AppKit) [0x94acf4ab]
                                                162 -[NSThemeFrame
_recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForV\
iew:topView
:] + 306 (in AppKit) [0x94ad2987]
                                                  162 -[NSView
_recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForV\
iew:topView
:] + 4433 (in AppKit) [0x94ad3e9f]
                                                    162 -[NSView
_recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForV\
iew:topView
:] + 759 (in AppKit) [0x94ad3045]
                                                      162 -[NSView
_recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050 (in AppKit)
[0x94ad46ef]
                                                        162 -[NSView
_drawRect:clip:] + 3853 (in AppKit) [0x94ad5bf8]
                                                          162 -
[NSViewAWT drawRect:] + 69 (in libawt.jnilib) [0x8d2e966d]
                                                            162 -
[AWTDrawableContextManager drawRect:withDrawable:] + 349 (in
libawt.jnilib) [0x8d2e97d0]
                                                              162
_JNFCallVoidMethod + 84 (in JavaNativeFoundation) [0x5d46c]
                                                                162
_JNI_CreateJavaVM_Impl + 107547 (in libclient.dylib) [0x5cd8eb]

162 ??? [0x45fa8c]

162 ??? [0x4d5876]

162 ??? [0x4d5b5a]

162 ??? [0x3599227]
                                                                          162
   ??? [0x359b9d3]
                                                                            162
   ??? [0x359b9d3]
                                                                              162
   ??? [0x359b9d3]
                                                                               
162
   ??? [0x35a19b1]
                                                                                 
162
   _Java_apple_awt_CToolkit_doAWTRunLoop + 443 (in libawt.jnilib)
[0x8d3173b9]
                                                                                   
162
   -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213 (in Foundation)
[0x964223d5]
                                                                                     
162
   _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
                                                                                       
162
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      5e4f7d8
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3be4048
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x3cb055]
            162 ??? [0x3cb295]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      5f48998
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x419047]
            140 ??? [0x4194dd]
              140 ??? [0x4d491c]
                140 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
            22 ??? [0x41932d]
              22 ??? [0x476e18]
                22 ??? [0x476f52]
                  18 ??? [0x483df1]
                    18 ??? [0x483fd2]
                      18 ??? [0x4847ea]
                        17 ??? [0x485a74]
                          11 ??? [0x4862df]
                            11 ??? [0x48a8bc]
                              11 ??? [0x48a987]
                                4 ??? [0x48aaab]
                                  3 ??? [0x48ac5f]
                                    3 ??? [0x48adaa]
                                      3 ??? [0x48af95]
                                        3 ??? [0x48b2eb]
                                          2 ??? [0x48b429]
                                            2 ??? [0x48c276]
                                              2 ??? [0x4865ba]
                                                2 ??? [0x4866e1]
                                                  1 ??? [0xffff1329]
                                                  1 ??? [0xffff12c1]
                                          1 ??? [0x48c178]
                                  1 ??? [0x48ad96]
                                4 ??? [0x48ab73]
                                2 ??? [0x48ac5f]
                                1 ??? [0x48ab70]
                          4 ??? [0x4863f8]
                            4 ??? [0x4869ac]
                              4 ??? [0x486bf9]
                                3 ??? [0x488aa0]
                                  3 ??? [0x488b55]
                                    2 ??? [0x48928f]
                                      2 ??? [0x4865ba]
                                        2 ??? [0x4866e1]
                                          1 ??? [0xffff12c1]
                                          1 ??? [0xffff1271]
                                    1 ??? [0x48930d]
                                1 ??? [0x4dc82c]
                          2 ??? [0x4864e8]
                            2 ??? [0x489f90]
                              2 ??? [0x486594]
                        1 ??? [0x485a7c]
                          1 ??? [0x48d3d0]
                            1 ??? [0x48d470]
                              1 ??? [0x48d54f]
                                1 ??? [0x48d5dd]
                                  1 ??? [0x48d8d6]
                                    1 ??? [0xffff07c7]
                  3 ??? [0x476fbf]
                    3 ??? [0x47711c]
                      3 ??? [0x4d491c]
                        3 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
                  1 ??? [0x476ff3]
                    1 _exit + 33 (in libSystem.B.dylib) [0x95edbcb0]
                      1 ___cxa_finalize + 241 (in libSystem.B.dylib)
[0x95edbdbc]
                        1 ??? [0x8fe13091]
    Kernel stack:
      17 _PE_incoming_interrupt + 131 [0x44e416]
        17 _lapic_interrupt + 121 [0x1b16c0]
          17 _sync_iss_to_iks + 114 [0x1aa3ae]
      2 _user_trap + 659 [0x1ab39c]
        2 _vm_fault + 3049 [0x1636ae]
          2 _vm_fault_page + 178 [0x160eb0]
            2 _lck_rw_sleep + 92 [0x13115c]
              2 _thread_block + 33 [0x136f20]
                2 _thread_continue + 1180 [0x136cb3]
      1 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        1 _mach_msg_overwrite_trap + 4820 [0x1274de]
          1 _ipc_mqueue_receive + 738 [0x121286]
            1 _thread_block + 33 [0x136f20]
              1 _thread_block_reason + 135 [0x136e7c]
                1 _thread_setrun + 3597 [0x136217]
                  1 _machine_idle + 271 [0x1ac3ec]

    Thread id:      3644000
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359b9d3]
                        162 ??? [0x359b9d3]
                          162 ??? [0x35a19b1]
                            162 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                              162 ??? [0x419b65]
                                162 ??? [0x41a57a]
                                  162 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      48cdb58
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359baaa]
                        162 ??? [0x360ddc0]
                          162 ??? [0x367bacc]
                            162 ??? [0x367bd04]
                              162 ??? [0x3774799]
                                162 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                                  162 ??? [0x419b65]
                                    162 ??? [0x41a57a]
                                      162 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      3fb5d60
    User stack:
      153 _semaphore_wait_trap + 10 (in libSystem.B.dylib) [0x95eb32c2]
      9 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        9 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          5 ??? [0x4197a8]
            3 _semaphore_wait_trap + 10 (in libSystem.B.dylib)
[0x95eb32c2]
            2 ??? [0x41aa57]
              2 ??? [0x4dd373]
                2 ??? [0x4d5b5a]
                  2 ??? [0x3599227]
                    2 ??? [0x35a79f3]
                      2 ??? [0x4db86b]
                        2 ??? [0x4d7583]
                          2 ??? [0x4adaa8]
                            1 ??? [0x410980]
                              1 ??? [0x411565]
                                1 ??? [0x4115f1]
                                  1 ??? [0x41167f]
                            1 ??? [0x4109b4]
                              1 ??? [0x411971]
                                1 ??? [0x464844]
                                  1 ??? [0x4651ad]
                                    1 ??? [0x4bce42]
                                      1 ??? [0x4beb9c]
                                        1 ??? [0x4bf2f5]
                                          1 ??? [0x4a8c43]
          4 ??? [0x419766]
            4 ??? [0x474f12]
              4 ??? [0x475b82]
                4 ??? [0x3cb171]
                  4 ??? [0x3cb1d3]
                    4 ??? [0x495129]
                      4 ??? [0x481fcc]
                        4 ??? [0x3ca119]
                          4 ??? [0x475e14]
                            4 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
    Kernel stack:
      2 _user_trap + 659 [0x1ab39c]
        2 _vm_fault + 3049 [0x1636ae]
          2 _vm_fault_page + 178 [0x160eb0]
            2 _lck_rw_sleep + 92 [0x13115c]
              2 _thread_block + 33 [0x136f20]
                2 _thread_continue + 1180 [0x136cb3]

    Thread id:      5e4ec80
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x41b0b8]
              162 ??? [0x41b3db]
                162 ??? [0x4d47d9]
                  162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      4270048
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      374ee40
    User stack:
      158 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        158 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          158 ??? [0x41b85a]
            158 ??? [0x41bd0f]
              158 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3fb4a78
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359bcd9]
                        162 ??? [0x359b9d3]
                          162 ??? [0x359b9d3]
                            162 ??? [0x35a19b1]
                              162 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                                162 ??? [0x419b65]
                                  162 ??? [0x41a57a]
                                    162 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      48cd790
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359bcd9]
                        162 ??? [0x359baaa]
                          162 ??? [0x360ddc0]
                            162 ??? [0x367bacc]
                              162 ??? [0x367bd04]
                                162 ??? [0x3774799]
                                  162 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                                    162 ??? [0x419b65]
                                      162 ??? [0x41a57a]
                                        162 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      3fb7410
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359b9d3]
                        162 ??? [0x359b9d3]
                          162 ??? [0x35a19b1]
                            162 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                              162 ??? [0x419b65]
                                162 ??? [0x41a57a]
                                  162 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      5f47e40
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359bcd9]
                        162 ??? [0x359b9d3]
                          162 ??? [0x35a19b1]
                            162 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                              162 ??? [0x419b65]
                                161 ??? [0x41a57a]
                                  161 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                                1 ??? [0x41a45a]
                                  1 ??? [0x48202f]
                                    1 ??? [0x3ca119]
                                      1 ??? [0x475e14]
                                        1 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      5f485d0
    User stack:
      162 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        162 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          162 ??? [0x4197a8]
            162 ??? [0x419885]
              162 ??? [0x419945]
                162 ??? [0x419a53]
                  162 ??? [0x4d5b5a]
                    162 ??? [0x3599227]
                      162 ??? [0x359b9d3]
                        162 ??? [0x359b9d3]
                          162 ??? [0x359b9d3]
                            162 ??? [0x359bb2b]
                              162 ??? [0x379c9fc]
                                162 ??? [0x379d1e0]
                                  162 ??? [0x397517c]
                                    162 ??? [0x359b9d3]
                                      162 ??? [0x359bb2b]
                                        162 ??? [0x359bb2b]
                                          162 ??? [0x359b9d3]
                                            162 ??? [0x3665eac]
                                              162 ??? [0x359b9d3]
                                                162 ??? [0x359b9d3]
                                                  162 ??? [0x359b9d3]
                                                    162 ??? [0x359b9d3]
                                                      162 ??? [0x359b9d3]
                                                        162 ???
[0x359bcd9]
                                                          162 ???
[0x359b9d3]
                                                            162 ???
[0x359b9d3]
                                                              162 ???
[0x359bcd9]
                                                                162 ???
[0x359b9d3]

162 ??? [0x359bcd9]

162 ??? [0x359b9d3]

162 ??? [0x359bcd9]

162 ??? [0x359bcd9]
                                                                          162
   ??? [0x359baaa]
                                                                            162
   ??? [0x359baaa]
                                                                              162
   ??? [0x359baaa]
                                                                               
162
   ??? [0x359baaa]
                                                                                 
162
   ??? [0x359baaa]
                                                                                   
162
   ??? [0x359b9d3]
                                                                                     
162
   ??? [0x359b9d3]
                                                                                       
162
   ??? [0x359b9d3]
                                                                                         
162
   ??? [0x359b9d3]
                                                                                           
162
   ??? [0x359b9d3]
                                                                                             
162
   ??? [0x359b9d3]
                                                                                               
129
   ??? [0x359b9d3]
                                                                                                 
110
   ??? [0x3abff7c]
                                                                                                   
68
   ??? [0x3a73d68]
                                                                                                     
68
   ??? [0x3ad3784]
                                                                                                       
68
   ??? [0x3ae6c0c]
                                                                                                         
63
   ??? [0x396a044]
                                                                                                           
63
   ??? [0x396a60c]
                                                                                                             
26
   ??? [0x3ae00c4]
                                                                                                               
12
   ??? [0x3af7b78]
                                                                                                                 
12
   ??? [0x3aed2a0]
                                                                                                                   
9
   ??? [0x3b0b6f8]
                                                                                                                     
8
   ??? [0x3b0bde0]
                                                                                                                       
8
   ??? [0x3a2f5a8]
                                                                                                                         
8
   ??? [0x3a2fba0]
                                                                                                                           
7
   ??? [0x39f6860]
                                                                                                                             
7
   ??? [0x3a2d1b0]
                                                                                                                               
7
   ??? [0x3a36dfc]
                                                                                                                                 
7
   ??? [0x3a20ccc]
                                                                                                                                   
7
   ??? [0x3a24738]
                                                                                                                                     
7
   ??? [0x3a253c0]
                                                                                                                                       
7
   ??? [0x39fef80]
                                                                                                                                         
7
   ??? [0x3a27028]
                                                                                                                                           
7
   ??? [0x3a3bd28]
                                                                                                                                             
6
   ??? [0x39fca90]
                                                                                                                                               
3
   ??? [0x3a26864]
                                                                                                                                                 
3
   ??? [0x39fbc64]
                                                                                                                                                   
1
   ??? [0xffff1289]
                                                                                                                                                   
1
   ??? [0xffff1393]
                                                                                                                                                   
1
   ??? [0xffff1271]
                                                                                                                                               
1
   ??? [0x3a2682c]
                                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                                   
1
   ??? [0xffff1381]
                                                                                                                                               
1
   ??? [0x3a267b4]
                                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                                   
1
   ??? [0xffff1352]
                                                                                                                                               
1
   ??? [0x3a267ec]
                                                                                                                                                 
1
   ??? [0x39fbcbe]
                                                                                                                                                   
1
   ??? [0x360f126]
                                                                                                                                                     
1
   ??? [0x4bbdbe]
                                                                                                                                                       
1
   ??? [0x4a6da3]
                                                                                                                                                         
1
   ??? [0x4a65ba]
                                                                                                                                                           
1
   ??? [0x474c38]
                                                                                                                                                             
1
   ??? [0x4d47d9]
                                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                             
1
   ??? [0x39fcb18]
                                                                                                                                               
1
   ??? [0x3a0b864]
                                                                                                                                                 
1
   ??? [0x37898c8]
                                                                                                                                                   
1
   ??? [0x36250f2]
                                                                                                                           
1
   ??? [0x3a2d1b2]
                                                                                                                     
1
   ??? [0x3b0bd60]
                                                                                                                       
1
   ??? [0x3657294]
                                                                                                                         
1
   ??? [0x364f314]
                                                                                                                           
1
   ??? [0x364f8d2]
                                                                                                                             
1
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                                               
1
   _pss + 215207 (in libclient.dylib) [0x5b2b07]
                                                                                                                                 
1
   _pss + 214677 (in libclient.dylib) [0x5b28f5]
                                                                                                                                   
1
   ??? [0x4625db]
                                                                                                                                     
1
   ??? [0x4620a4]
                                                                                                                   
3
   ??? [0x3b0b6e0]
                                                                                                                     
3
   ??? [0x3b27af4]
                                                                                                                       
3
   ??? [0x3b27c84]
                                                                                                                         
3
   ??? [0x359ba7f]
                                                                                                                           
2
   ??? [0x359ba7f]
                                                                                                                             
2
   ??? [0x359baaa]
                                                                                                                               
1
   ??? [0x3a56d3c]
                                                                                                                                 
1
   ??? [0x39e0d94]
                                                                                                                                   
1
   ??? [0x3a5fae4]
                                                                                                                                     
1
   ??? [0x3742010]
                                                                                                                                       
1
   ??? [0x39d6e86]
                                                                                                                               
1
   ??? [0x360ddc0]
                                                                                                                                 
1
   ??? [0x3aabbf8]
                                                                                                                                   
1
   ??? [0x396a044]
                                                                                                                                     
1
   ??? [0x396a60c]
                                                                                                                                       
1
   ??? [0x3adf784]
                                                                                                                                         
1
   ??? [0x3a2f5a8]
                                                                                                                                           
1
   ??? [0x3a2fba0]
                                                                                                                                             
1
   ??? [0x39f6860]
                                                                                                                                               
1
   ??? [0x3a2d1b0]
                                                                                                                                                 
1
   ??? [0x3a36dfc]
                                                                                                                                                   
1
   ??? [0x3a20ccc]
                                                                                                                                                     
1
   ??? [0x3a24738]
                                                                                                                                                       
1
   ??? [0x3a253c0]
                                                                                                                                                         
1
   ??? [0x39fef80]
                                                                                                                                                           
1
   ??? [0x3a27028]
                                                                                                                                                             
1
   ??? [0x3a3bd28]
                                                                                                                                                               
1
   ??? [0x39fca90]
                                                                                                                                                                 
1
   ??? [0x3a26864]
                                                                                                                                                                   
1
   ??? [0x39fbc64]
                                                                                                                                                                     
1
   ??? [0xffff1381]
                                                                                                                           
1
   ??? [0x359baaa]
                                                                                                                             
1
   ??? [0x360ddc0]
                                                                                                                               
1
   ??? [0x3aabbf8]
                                                                                                                                 
1
   ??? [0x396a044]
                                                                                                                                   
1
   ??? [0x396a60c]
                                                                                                                                     
1
   ??? [0x3ae04cc]
                                                                                                                                       
1
   ??? [0x3a2f5a8]
                                                                                                                                         
1
   ??? [0x3a2fba0]
                                                                                                                                           
1
   ??? [0x39f6860]
                                                                                                                                             
1
   ??? [0x3a2d1b0]
                                                                                                                                               
1
   ??? [0x3a36dfc]
                                                                                                                                                 
1
   ??? [0x3a20ccc]
                                                                                                                                                   
1
   ??? [0x3a24738]
                                                                                                                                                     
1
   ??? [0x3a253c0]
                                                                                                                                                       
1
   ??? [0x39fef80]
                                                                                                                                                         
1
   ??? [0x3a27028]
                                                                                                                                                           
1
   ??? [0x3a3bd28]
                                                                                                                                                             
1
   ??? [0x39fca90]
                                                                                                                                                               
1
   ??? [0x3a267b4]
                                                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                                                   
1
   ??? [0xffff1311]
                                                                                                               
5
   ??? [0x3af7ae4]
                                                                                                                 
5
   ??? [0x3a2f5a8]
                                                                                                                   
5
   ??? [0x3a2fba0]
                                                                                                                     
5
   ??? [0x39f6860]
                                                                                                                       
5
   ??? [0x3a2d1b0]
                                                                                                                         
5
   ??? [0x3a36dfc]
                                                                                                                           
5
   ??? [0x3a20ccc]
                                                                                                                             
5
   ??? [0x3a24738]
                                                                                                                               
5
   ??? [0x3a253c0]
                                                                                                                                 
5
   ??? [0x39fef80]
                                                                                                                                   
5
   ??? [0x3a27028]
                                                                                                                                     
5
   ??? [0x3a3bd28]
                                                                                                                                       
5
   ??? [0x39fca90]
                                                                                                                                         
2
   ??? [0x3a267b4]
                                                                                                                                           
2
   ??? [0x39fbc64]
                                                                                                                                             
1
   ??? [0xffff12b9]
                                                                                                                                             
1
   ??? [0xffff1329]
                                                                                                                                         
1
   ??? [0x3a26864]
                                                                                                                                           
1
   ??? [0x39fbc64]
                                                                                                                                             
1
   ??? [0xffff1323]
                                                                                                                                         
1
   ??? [0x360f0ee]
                                                                                                                                         
1
   ??? [0x360f0f2]
                                                                                                               
4
   ??? [0x3af7b9c]
                                                                                                                 
4
   ??? [0x3b1c49c]
                                                                                                                   
4
   ??? [0x3b11fa0]
                                                                                                                     
4
   ??? [0x359baaa]
                                                                                                                       
4
   ??? [0x359baaa]
                                                                                                                         
4
   ??? [0x359baaa]
                                                                                                                           
4
   ??? [0x360ddc0]
                                                                                                                             
4
   ??? [0x3b020d4]
                                                                                                                               
4
   ??? [0x396a044]
                                                                                                                                 
4
   ??? [0x396a60c]
                                                                                                                                   
2
   ??? [0x3ae04cc]
                                                                                                                                     
2
   ??? [0x3a2f5a8]
                                                                                                                                       
2
   ??? [0x3a2fba0]
                                                                                                                                         
2
   ??? [0x39f6860]
                                                                                                                                           
2
   ??? [0x3a2d1b0]
                                                                                                                                             
2
   ??? [0x3a36dfc]
                                                                                                                                               
2
   ??? [0x3a20ccc]
                                                                                                                                                 
2
   ??? [0x3a24738]
                                                                                                                                                   
2
   ??? [0x3a253c0]
                                                                                                                                                     
2
   ??? [0x39fef80]
                                                                                                                                                       
2
   ??? [0x3a27028]
                                                                                                                                                         
2
   ??? [0x3a3bd28]
                                                                                                                                                           
2
   ??? [0x39fca90]
                                                                                                                                                             
1
   ??? [0x360f0f2]
                                                                                                                                                             
1
   ??? [0x3a26864]
                                                                                                                                                               
1
   ??? [0x39fbc64]
                                                                                                                                                                 
1
   ??? [0xffff130b]
                                                                                                                                   
1
   ??? [0x3ae044c]
                                                                                                                                     
1
   ??? [0x3657280]
                                                                                                                                       
1
   ??? [0x3a93f4c]
                                                                                                                                         
1
   ??? [0x3658642]
                                                                                                                                           
1
   _Java_java_lang_Throwable_fillInStackTrace + 25 (in libjava.jnilib)
[0x79a41]
                                                                                                                                             
1
   _JVM_FillInStackTrace + 223 (in libclient.dylib) [0x5fb8ff]
                                                                                                                                               
1
   ??? [0x47f3c2]
                                                                                                                                                 
1
   ??? [0x4dec66]
                                                                                                                                   
1
   ??? [0x3ae00c4]
                                                                                                                                     
1
   ??? [0x3af7b78]
                                                                                                                                       
1
   ??? [0x3aed2a0]
                                                                                                                                         
1
   ??? [0x3b0b6e0]
                                                                                                                                           
1
   ??? [0x3b27af4]
                                                                                                                                             
1
   ??? [0x3b27c84]
                                                                                                                                               
1
   ??? [0x359ba7f]
                                                                                                                                                 
1
   ??? [0x359ba7f]
                                                                                                                                                   
1
   ??? [0x359baaa]
                                                                                                                                                     
1
   ??? [0x3aabbf8]
                                                                                                                                                       
1
   ??? [0x396a044]
                                                                                                                                                         
1
   ??? [0x396a60c]
                                                                                                                                                           
1
   ??? [0x3adf784]
                                                                                                                                                             
1
   ??? [0x3a2f5a8]
                                                                                                                                                               
1
   ??? [0x3a2fba0]
                                                                                                                                                                 
1
   ??? [0x39f6860]
                                                                                                                                                                   
1
   ??? [0x3a2d1b0]
                                                                                                                                                                     
1
   ??? [0x3a36dfc]
                                                                                                                                                                       
1
   ??? [0x3a20ccc]
                                                                                                                                                                         
1
   ??? [0x3a24738]
                                                                                                                                                                           
1
   ??? [0x3a253c0]
                                                                                                                                                                             
1
   ??? [0x39fef80]
                                                                                                                                                                               
1
   ??? [0x3a27028]
                                                                                                                                                                                 
1
   ??? [0x3a3bd28]
                                                                                                                                                                                   
1
   ??? [0x39fca90]
                                                                                                                                                                                     
1
   ??? [0x3a267b4]
                                                                                                                                                                                       
1
   ??? [0x39fbcbe]
                                                                                                                                                                                         
1
   ??? [0x360f126]
                                                                                                                                                                                           
1
   ??? [0x4a6d50]
                                                                                                               
2
   ??? [0x3af7824]
                                                                                                                 
1
   ??? [0x3a7de58]
                                                                                                                   
1
   ??? [0x3a791f4]
                                                                                                                     
1
   ??? [0x3651de2]
                                                                                                                 
1
   ??? [0x3a7c5c0]
                                                                                                                   
1
   ??? [0x3a730a0]
                                                                                                                     
1
   ??? [0x3a77500]
                                                                                                                       
1
   ??? [0x36fb214]
                                                                                                               
2
   ??? [0x3af7bc4]
                                                                                                                 
2
   ??? [0x3b1d334]
                                                                                                                   
2
   ??? [0x3a2f5a8]
                                                                                                                     
2
   ??? [0x3a2fba0]
                                                                                                                       
2
   ??? [0x39f6860]
                                                                                                                         
2
   ??? [0x3a2d1b0]
                                                                                                                           
2
   ??? [0x3a36dfc]
                                                                                                                             
2
   ??? [0x3a20ccc]
                                                                                                                               
2
   ??? [0x3a24738]
                                                                                                                                 
2
   ??? [0x3a253c0]
                                                                                                                                   
2
   ??? [0x39fef80]
                                                                                                                                     
2
   ??? [0x3a27028]
                                                                                                                                       
2
   ??? [0x3a3bd28]
                                                                                                                                         
2
   ??? [0x39fca90]
                                                                                                                                           
1
   ??? [0x3a2682c]
                                                                                                                                             
1
   ??? [0x39fbc64]
                                                                                                                                               
1
   ??? [0xffff1387]
                                                                                                                                           
1
   ??? [0x3a267ec]
                                                                                                                                             
1
   ??? [0x39fbc64]
                                                                                                                                               
1
   ??? [0xffff131d]
                                                                                                               
1
   ??? [0x3af7a64]
                                                                                                                 
1
   ??? [0x3657294]
                                                                                                                   
1
   ??? [0x364f314]
                                                                                                                     
1
   ??? [0x364f8d2]
                                                                                                                       
1
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                                         
1
   _pss + 215207 (in libclient.dylib) [0x5b2b07]
                                                                                                                           
1
   _pss + 214459 (in libclient.dylib) [0x5b281b]
                                                                                                                             
1
   ??? [0x4a697c]
                                                                                                             
23
   ??? [0x3adf784]
                                                                                                               
23
   ??? [0x3a2f5a8]
                                                                                                                 
23
   ??? [0x3a2fba0]
                                                                                                                   
23
   ??? [0x39f6860]
                                                                                                                     
23
   ??? [0x3a2d1b0]
                                                                                                                       
23
   ??? [0x3a36dfc]
                                                                                                                         
23
   ??? [0x3a20ccc]
                                                                                                                           
23
   ??? [0x3a24738]
                                                                                                                             
23
   ??? [0x3a253c0]
                                                                                                                               
23
   ??? [0x39fef80]
                                                                                                                                 
23
   ??? [0x3a27028]
                                                                                                                                   
23
   ??? [0x3a3bd28]
                                                                                                                                     
23
   ??? [0x39fca90]
                                                                                                                                       
6
   ??? [0x3a267b4]
                                                                                                                                         
3
   ??? [0x39fbc64]
                                                                                                                                           
2
   ??? [0xffff1329]
                                                                                                                                           
1
   ??? [0xffff1311]
                                                                                                                                         
3
   ??? [0x39fbcbe]
                                                                                                                                           
3
   ??? [0x360f126]
                                                                                                                                             
3
   ??? [0x4bbdbe]
                                                                                                                                               
3
   ??? [0x4a6da3]
                                                                                                                                                 
3
   ??? [0x4a65ba]
                                                                                                                                                   
3
   ??? [0x474c38]
                                                                                                                                                     
3
   ??? [0x4d47d9]
                                                                                                                                                       
3
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                       
4
   ??? [0x3a267ec]
                                                                                                                                         
3
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff1271]
                                                                                                                                           
1
   ??? [0xffff135e]
                                                                                                                                           
1
   ??? [0xffff1291]
                                                                                                                                         
1
   ??? [0x39fbcbe]
                                                                                                                                           
1
   ??? [0x360f126]
                                                                                                                                             
1
   ??? [0x4bbdbe]
                                                                                                                                               
1
   ??? [0x4a6da3]
                                                                                                                                                 
1
   ??? [0x4a65ba]
                                                                                                                                                   
1
   ??? [0x474c38]
                                                                                                                                                     
1
   ??? [0x4d47d9]
                                                                                                                                                       
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                       
4
   ??? [0x360f0f2]
                                                                                                                                       
3
   ??? [0x3a26864]
                                                                                                                                         
3
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff1399]
                                                                                                                                           
1
   ??? [0xffff137b]
                                                                                                                                           
1
   ??? [0xffff13a4]
                                                                                                                                       
2
   ??? [0x360f0ee]
                                                                                                                                       
2
   ??? [0x3a2682c]
                                                                                                                                         
2
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff1387]
                                                                                                                                           
1
   ??? [0xffff1323]
                                                                                                                                       
1
   ??? [0x39fbc67]
                                                                                                                                       
1
   ??? [0x360f0f6]
                                                                                                             
10
   ??? [0x3ae04cc]
                                                                                                               
10
   ??? [0x3a2f5a8]
                                                                                                                 
10
   ??? [0x3a2fba0]
                                                                                                                   
10
   ??? [0x39f6860]
                                                                                                                     
9
   ??? [0x3a2d1b0]
                                                                                                                       
9
   ??? [0x3a36dfc]
                                                                                                                         
9
   ??? [0x3a20ccc]
                                                                                                                           
9
   ??? [0x3a24738]
                                                                                                                             
9
   ??? [0x3a253c0]
                                                                                                                               
9
   ??? [0x39fef80]
                                                                                                                                 
9
   ??? [0x3a27028]
                                                                                                                                   
9
   ??? [0x3a3bd28]
                                                                                                                                     
9
   ??? [0x39fca90]
                                                                                                                                       
2
   ??? [0x360f0f2]
                                                                                                                                       
2
   ??? [0x360f0ee]
                                                                                                                                       
1
   ??? [0x3a2682c]
                                                                                                                                         
1
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff139f]
                                                                                                                                       
1
   ??? [0x3a26864]
                                                                                                                                         
1
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff138d]
                                                                                                                                       
1
   ??? [0x3a267b4]
                                                                                                                                         
1
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff1305]
                                                                                                                                       
1
   ??? [0x360f0f6]
                                                                                                                                       
1
   ??? [0x3a267ec]
                                                                                                                                         
1
   ??? [0x39fbc64]
                                                                                                                                           
1
   ??? [0xffff1375]
                                                                                                                     
1
   ??? [0x3a2ff40]
                                                                                                                       
1
   ??? [0x3a2b7c4]
                                                                                                                         
1
   ??? [0x39f39b0]
                                                                                                                           
1
   ??? [0x364f314]
                                                                                                                             
1
   ??? [0x364f8d2]
                                                                                                                               
1
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                                                 
1
   _pss + 215207 (in libclient.dylib) [0x5b2b07]
                                                                                                                                   
1
   _pss + 214459 (in libclient.dylib) [0x5b281b]
                                                                                                                                     
1
   ??? [0x4a722f]
                                                                                                             
3
   ??? [0x3ae0200]
                                                                                                               
3
   ??? [0x3af291c]
                                                                                                                 
3
   ??? [0x3af33d0]
                                                                                                                   
3
   ??? [0x3ad19ec]
                                                                                                                     
3
   ??? [0x3ad0e3c]
                                                                                                                       
3
   ??? [0x3a99410]
                                                                                                                         
3
   ??? [0x3ad19ec]
                                                                                                                           
3
   ??? [0x3ad0e3c]
                                                                                                                             
3
   ??? [0x3a99410]
                                                                                                                               
3
   ??? [0x3ad19ec]
                                                                                                                                 
3
   ??? [0x3ad0e3c]
                                                                                                                                   
3
   ??? [0x3a99410]
                                                                                                                                     
3
   ??? [0x3ad19ec]
                                                                                                                                       
3
   ??? [0x3ad0e3c]
                                                                                                                                         
3
   ??? [0x3a99410]
                                                                                                                                           
3
   ??? [0x3ad19ec]
                                                                                                                                             
3
   ??? [0x3ad0e3c]
                                                                                                                                               
3
   ??? [0x3a99410]
                                                                                                                                                 
3
   ??? [0x3ad19ec]
                                                                                                                                                   
3
   ??? [0x3ad101c]
                                                                                                                                                     
3
   ??? [0x3b2bbdc]
                                                                                                                                                       
3
   ??? [0x3af7b78]
                                                                                                                                                         
3
   ??? [0x3aed2a0]
                                                                                                                                                           
3
   ??? [0x3b0b6f8]
                                                                                                                                                             
2
   ??? [0x3b0bde0]
                                                                                                                                                               
2
   ??? [0x3a2f5a8]
                                                                                                                                                                 
2
   ??? [0x3a2fba0]
                                                                                                                                                                   
2
   ??? [0x39f6860]
                                                                                                                                                                     
1
   ??? [0x3a2ff40]
                                                                                                                                                                       
1
   ??? [0x3707867]
                                                                                                                                                                     
1
   ??? [0x3a2d1b0]
                                                                                                                                                                       
1
   ??? [0x3a36dfc]
                                                                                                                                                                         
1
   ??? [0x3a20ccc]
                                                                                                                                                                           
1
   ??? [0x3a24738]
                                                                                                                                                                             
1
   ??? [0x3a253c0]
                                                                                                                                                                               
1
   ??? [0x39fef80]
                                                                                                                                                                                 
1
   ??? [0x3a27028]
                                                                                                                                                                                   
1
   ??? [0x3a3bd28]
                                                                                                                                                                                     
1
   ??? [0x39fca90]
                                                                                                                                                                                       
1
   ??? [0x3a267b4]
                                                                                                                                                                                         
1
   ??? [0x39fbcbe]
                                                                                                                                                                                           
1
   ??? [0x360f126]
                                                                                                                                                                                             
1
   ??? [0x4bbdbe]
                                                                                                                                                                                               
1
   ??? [0x4a6da3]
                                                                                                                                                                                                 
1
   ??? [0x4a65ba]
                                                                                                                                                                                                   
1
   ??? [0x474c38]
                                                                                                                                                                                                     
1
   ??? [0x4d47d9]
                                                                                                                                                                                                       
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                                             
1
   ??? [0x3a2fac7]
                                                                                                             
1
   ??? [0x3ae044c]
                                                                                                               
1
   ??? [0x3657294]
                                                                                                                 
1
   ??? [0x364f314]
                                                                                                                   
1
   ??? [0x364f8d2]
                                                                                                                     
1
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                                       
1
   _pss + 215207 (in libclient.dylib) [0x5b2b07]
                                                                                                                         
1
   _JVM_RaiseSignal + 405235 (in libclient.dylib) [0x6792c3]
                                                                                                         
5
   ??? [0x396a07c]
                                                                                                           
5
   ??? [0x3ab22ac]
                                                                                                             
4
   ??? [0x3af7b9c]
                                                                                                               
3
   ??? [0x3b1c49c]
                                                                                                                 
3
   ??? [0x3b11fa0]
                                                                                                                   
3
   ??? [0x359baaa]
                                                                                                                     
3
   ??? [0x359baaa]
                                                                                                                       
3
   ??? [0x359baaa]
                                                                                                                         
3
   ??? [0x360ddc0]
                                                                                                                           
1
   ??? [0x3b020d4]
                                                                                                                             
1
   ??? [0x396a044]
                                                                                                                               
1
   ??? [0x396a60c]
                                                                                                                                 
1
   ??? [0x3adf784]
                                                                                                                                   
1
   ??? [0x3a2f5a8]
                                                                                                                                     
1
   ??? [0x3a2fba0]
                                                                                                                                       
1
   ??? [0x39f6860]
                                                                                                                                         
1
   ??? [0x3a2d1b0]
                                                                                                                                           
1
   ??? [0x3a36dfc]
                                                                                                                                             
1
   ??? [0x3a20ccc]
                                                                                                                                               
1
   ??? [0x3a24738]
                                                                                                                                                 
1
   ??? [0x3a253c0]
                                                                                                                                                   
1
   ??? [0x39fef80]
                                                                                                                                                     
1
   ??? [0x3a27028]
                                                                                                                                                       
1
   ??? [0x3a3bd28]
                                                                                                                                                         
1
   ??? [0x39fca90]
                                                                                                                                                           
1
   ??? [0x3a267b4]
                                                                                                                                                             
1
   ??? [0x39fbc64]
                                                                                                                                                               
1
   ??? [0xffff1311]
                                                                                                                           
1
   ??? [0x3b03d70]
                                                                                                                             
1
   ??? [0x39f7db4]
                                                                                                                               
1
   ??? [0x39f7135]
                                                                                                                           
1
   ??? [0x3b03e30]
                                                                                                                             
1
   ??? [0x359ba7f]
                                                                                                                               
1
   ??? [0x359baaa]
                                                                                                                                 
1
   ??? [0x360ddc0]
                                                                                                                                   
1
   ??? [0x3adddb0]
                                                                                                                                     
1
   ??? [0x359b9fe]
                                                                                                                                       
1
   ??? [0x3adc29c]
                                                                                                                                         
1
   ??? [0x392aca4]
                                                                                                                                           
1
   ??? [0x391e318]
                                                                                                                                             
1
   ??? [0x3a87810]
                                                                                                                                               
1
   ??? [0x36e77c4]
                                                                                                                                                 
1
   _JVM_IHashCode + 88 (in libclient.dylib) [0x5fc018]
                                                                                                               
1
   ??? [0x360f0f6]
                                                                                                             
1
   ??? [0x3af7bc4]
                                                                                                               
1
   ??? [0x3b1d334]
                                                                                                                 
1
   ??? [0x3a2f5a8]
                                                                                                                   
1
   ??? [0x3a2fba0]
                                                                                                                     
1
   ??? [0x39f6860]
                                                                                                                       
1
   ??? [0x3a2d1b0]
                                                                                                                         
1
   ??? [0x3a36dfc]
                                                                                                                           
1
   ??? [0x3a20ccc]
                                                                                                                             
1
   ??? [0x3a24738]
                                                                                                                               
1
   ??? [0x3a253c0]
                                                                                                                                 
1
   ??? [0x39fef80]
                                                                                                                                   
1
   ??? [0x3a27028]
                                                                                                                                     
1
   ??? [0x3a3bd28]
                                                                                                                                       
1
   ??? [0x39fca90]
                                                                                                                                         
1
   ??? [0x360f0ee]
                                                                                                   
30
   ??? [0x3a740ac]
                                                                                                     
30
   ??? [0x3a2f5a8]
                                                                                                       
30
   ??? [0x3a2fba0]
                                                                                                         
30
   ??? [0x39f6860]
                                                                                                           
25
   ??? [0x3a2d1b0]
                                                                                                             
25
   ??? [0x3a36dfc]
                                                                                                               
25
   ??? [0x3a20ccc]
                                                                                                                 
25
   ??? [0x3a24738]
                                                                                                                   
25
   ??? [0x3a253c0]
                                                                                                                     
25
   ??? [0x39fef80]
                                                                                                                       
25
   ??? [0x3a27028]
                                                                                                                         
25
   ??? [0x3a3bd28]
                                                                                                                           
24
   ??? [0x39fca90]
                                                                                                                             
6
   ??? [0x3a26864]
                                                                                                                               
5
   ??? [0x39fbc64]
                                                                                                                                 
2
   ??? [0xffff1261]
                                                                                                                                 
1
   ??? [0xffff1381]
                                                                                                                                 
1
   ??? [0xffff1329]
                                                                                                                                 
1
   ??? [0xffff1279]
                                                                                                                               
1
   ??? [0x39fbcbe]
                                                                                                                                 
1
   ??? [0x360f126]
                                                                                                                                   
1
   ??? [0x4bbdbe]
                                                                                                                                     
1
   ??? [0x4a6da3]
                                                                                                                                       
1
   ??? [0x4a65ba]
                                                                                                                                         
1
   ??? [0x474c38]
                                                                                                                                           
1
   ??? [0x4d493b]
                                                                                                                                             
1
   ??? [0x481fbc]
                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                             
5
   ??? [0x3a2682c]
                                                                                                                               
4
   ??? [0x39fbc64]
                                                                                                                                 
2
   ??? [0xffff132f]
                                                                                                                                 
1
   ??? [0xffff1393]
                                                                                                                                 
1
   ??? [0xffff12c1]
                                                                                                                               
1
   ??? [0x39fbcbe]
                                                                                                                                 
1
   ??? [0x360f126]
                                                                                                                                   
1
   ??? [0x4bbdbe]
                                                                                                                                     
1
   ??? [0x4a6da3]
                                                                                                                                       
1
   ??? [0x4a65ba]
                                                                                                                                         
1
   ??? [0x474c38]
                                                                                                                                           
1
   ??? [0x4d47d9]
                                                                                                                                             
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                             
4
   ??? [0x3a267b4]
                                                                                                                               
3
   ??? [0x39fbc64]
                                                                                                                                 
2
   ??? [0xffff1346]
                                                                                                                                 
1
   ??? [0xffff1305]
                                                                                                                               
1
   ??? [0x39fbcbe]
                                                                                                                                 
1
   ??? [0x360f126]
                                                                                                                                   
1
   ??? [0x4bbdbe]
                                                                                                                                     
1
   ??? [0x4a6da3]
                                                                                                                                       
1
   ??? [0x4a65ba]
                                                                                                                                         
1
   ??? [0x474c38]
                                                                                                                                           
1
   ??? [0x4d47d9]
                                                                                                                                             
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                             
3
   ??? [0x360f0ee]
                                                                                                                             
3
   ??? [0x3a267ec]
                                                                                                                               
3
   ??? [0x39fbc64]
                                                                                                                                 
1
   ??? [0xffff1305]
                                                                                                                                 
1
   ??? [0xffff131d]
                                                                                                                                 
1
   ??? [0xffff1381]
                                                                                                                             
2
   ??? [0x360f0f6]
                                                                                                                             
1
   ??? [0x360f0f2]
                                                                                                                           
1
   ??? [0x39fcac4]
                                                                                                                             
1
   ??? [0x3a0a3a4]
                                                                                                                               
1
   ??? [0x3a0a580]
                                                                                                                                 
1
   ??? [0x35a121e]
                                                                                                           
3
   ??? [0x3a2ff40]
                                                                                                             
2
   ??? [0x3a2b7c4]
                                                                                                               
1
   ??? [0x39f39b0]
                                                                                                                 
1
   ??? [0x364f314]
                                                                                                                   
1
   ??? [0x364f8d2]
                                                                                                                     
1
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                                       
1
   _pss + 214776 (in libclient.dylib) [0x5b2958]
                                                                                                               
1
   ??? [0x39f39c0]
                                                                                                                 
1
   _JVM_Clone + 2130 (in libclient.dylib) [0x5fd272]
                                                                                                             
1
   ??? [0x35a1215]
                                                                                                           
2
   ??? [0x3a2ff4c]
                                                                                                             
2
   ??? [0x3a2bccc]
                                                                                                               
2
   ??? [0x3a32f40]
                                                                                                                 
2
   ??? [0x3a2bfc8]
                                                                                                                   
2
   ??? [0x3a31438]
                                                                                                                     
2
   ??? [0x3a31f2c]
                                                                                                                       
2
   ??? [0x3a0aa10]
                                                                                                                         
2
   ??? [0x3a2ca90]
                                                                                                                           
2
   ??? [0x3a2ccab]
                                                                                                                             
2
   ___write + 10 (in libSystem.B.dylib) [0x95edbc7e]
                                                                                                   
9
   ??? [0x3a73c60]
                                                                                                     
7
   ??? [0x3a73d68]
                                                                                                       
7
   ??? [0x3ad3784]
                                                                                                         
7
   ??? [0x3ae6c0c]
                                                                                                           
7
   ??? [0x396a044]
                                                                                                             
7
   ??? [0x396a60c]
                                                                                                               
2
   ??? [0x3adf784]
                                                                                                                 
2
   ??? [0x3a2f5a8]
                                                                                                                   
2
   ??? [0x3a2fba0]
                                                                                                                     
2
   ??? [0x39f6860]
                                                                                                                       
2
   ??? [0x3a2d1b0]
                                                                                                                         
2
   ??? [0x3a36dfc]
                                                                                                                           
2
   ??? [0x3a20ccc]
                                                                                                                             
2
   ??? [0x3a24738]
                                                                                                                               
2
   ??? [0x3a253c0]
                                                                                                                                 
2
   ??? [0x39fef80]
                                                                                                                                   
2
   ??? [0x3a27028]
                                                                                                                                     
2
   ??? [0x3a3bd28]
                                                                                                                                       
2
   ??? [0x39fca90]
                                                                                                                                         
1
   ??? [0x3a26864]
                                                                                                                                           
1
   ??? [0x39fbc64]
                                                                                                                                             
1
   ??? [0xffff13a4]
                                                                                                                                         
1
   ??? [0x3a267b4]
                                                                                                                                           
1
   ??? [0x39fbcbe]
                                                                                                                                             
1
   ??? [0x360f126]
                                                                                                                                               
1
   ??? [0x4bbdbe]
                                                                                                                                                 
1
   ??? [0x4a6da3]
                                                                                                                                                   
1
   ??? [0x4a65ba]
                                                                                                                                                     
1
   ??? [0x474c38]
                                                                                                                                                       
1
   ??? [0x4d47d9]
                                                                                                                                                         
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                               
2
   ??? [0x3ae0200]
                                                                                                                 
2
   ??? [0x3af291c]
                                                                                                                   
2
   ??? [0x3af33d0]
                                                                                                                     
2
   ??? [0x3ad19ec]
                                                                                                                       
2
   ??? [0x3ad0e3c]
                                                                                                                         
2
   ??? [0x3a99410]
                                                                                                                           
2
   ??? [0x3ad19ec]
                                                                                                                             
2
   ??? [0x3ad0e3c]
                                                                                                                               
2
   ??? [0x3a99410]
                                                                                                                                 
2
   ??? [0x3ad19ec]
                                                                                                                                   
2
   ??? [0x3ad0e3c]
                                                                                                                                     
2
   ??? [0x3a99410]
                                                                                                                                       
2
   ??? [0x3ad19ec]
                                                                                                                                         
2
   ??? [0x3ad0e3c]
                                                                                                                                           
2
   ??? [0x3a99410]
                                                                                                                                             
2
   ??? [0x3ad19ec]
                                                                                                                                               
2
   ??? [0x3ad0e3c]
                                                                                                                                                 
2
   ??? [0x3a99410]
                                                                                                                                                   
2
   ??? [0x3ad19ec]
                                                                                                                                                     
2
   ??? [0x3ad101c]
                                                                                                                                                       
2
   ??? [0x3b2bbdc]
                                                                                                                                                         
2
   ??? [0x3af7b78]
                                                                                                                                                           
2
   ??? [0x3aed2a0]
                                                                                                                                                             
2
   ??? [0x3b0b6f8]
                                                                                                                                                               
2
   ??? [0x3b0bde0]
                                                                                                                                                                 
2
   ??? [0x3a2f5a8]
                                                                                                                                                                   
2
   ??? [0x3a2fba0]
                                                                                                                                                                     
2
   ??? [0x39f6860]
                                                                                                                                                                       
2
   ??? [0x3a2d1b0]
                                                                                                                                                                         
2
   ??? [0x3a36dfc]
                                                                                                                                                                           
2
   ??? [0x3a20ccc]
                                                                                                                                                                             
2
   ??? [0x3a24738]
                                                                                                                                                                               
2
   ??? [0x3a253c0]
                                                                                                                                                                                 
2
   ??? [0x39fef80]
                                                                                                                                                                                   
2
   ??? [0x3a27028]
                                                                                                                                                                                     
2
   ??? [0x3a3bd28]
                                                                                                                                                                                       
2
   ??? [0x39fca90]
                                                                                                                                                                                         
1
   ??? [0x360f0ee]
                                                                                                                                                                                         
1
   ??? [0x3a2682c]
                                                                                                                                                                                           
1
   ??? [0x39fbc64]
                                                                                                                                                                                             
1
   ??? [0xffff12c1]
                                                                                                               
2
   ??? [0x3ae04cc]
                                                                                                                 
2
   ??? [0x3a2f5a8]
                                                                                                                   
2
   ??? [0x3a2fba0]
                                                                                                                     
2
   ??? [0x39f6860]
                                                                                                                       
2
   ??? [0x3a2d1b0]
                                                                                                                         
2
   ??? [0x3a36dfc]
                                                                                                                           
2
   ??? [0x3a20ccc]
                                                                                                                             
2
   ??? [0x3a24738]
                                                                                                                               
2
   ??? [0x3a253c0]
                                                                                                                                 
2
   ??? [0x39fef80]
                                                                                                                                   
2
   ??? [0x3a27028]
                                                                                                                                     
2
   ??? [0x3a3bd28]
                                                                                                                                       
2
   ??? [0x39fca90]
                                                                                                                                         
1
   ??? [0x3a2682c]
                                                                                                                                           
1
   ??? [0x39fbc64]
                                                                                                                                             
1
   ??? [0xffff1329]
                                                                                                                                         
1
   ??? [0x3a267b4]
                                                                                                                                           
1
   ??? [0x39fbc64]
                                                                                                                                             
1
   ??? [0xffff12b1]
                                                                                                               
1
   ??? [0x3ae00c4]
                                                                                                                 
1
   ??? [0x3af7ae4]
                                                                                                                   
1
   ??? [0x3a2f5a8]
                                                                                                                     
1
   ??? [0x3a2fba0]
                                                                                                                       
1
   ??? [0x39f6860]
                                                                                                                         
1
   ??? [0x3a2d1b0]
                                                                                                                           
1
   ??? [0x3a36dfc]
                                                                                                                             
1
   ??? [0x3a20ccc]
                                                                                                                               
1
   ??? [0x3a24738]
                                                                                                                                 
1
   ??? [0x3a253c0]
                                                                                                                                   
1
   ??? [0x39fef80]
                                                                                                                                     
1
   ??? [0x3a27028]
                                                                                                                                       
1
   ??? [0x3a3bd28]
                                                                                                                                         
1
   ??? [0x39fca90]
                                                                                                                                           
1
   ??? [0x3a267ec]
                                                                                                                                             
1
   ??? [0x39fbc64]
                                                                                                                                               
1
   ??? [0xffff13b6]
                                                                                                     
2
   ??? [0x3a740ac]
                                                                                                       
2
   ??? [0x3a2f5a8]
                                                                                                         
2
   ??? [0x3a2fba0]
                                                                                                           
2
   ??? [0x39f6860]
                                                                                                             
2
   ??? [0x3a2d1b0]
                                                                                                               
2
   ??? [0x3a36dfc]
                                                                                                                 
2
   ??? [0x3a20ccc]
                                                                                                                   
2
   ??? [0x3a24738]
                                                                                                                     
2
   ??? [0x3a253c0]
                                                                                                                       
2
   ??? [0x39fef80]
                                                                                                                         
2
   ??? [0x3a27028]
                                                                                                                           
2
   ??? [0x3a3bd28]
                                                                                                                             
2
   ??? [0x39fca90]
                                                                                                                               
1
   ??? [0x3a2682c]
                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                   
1
   ??? [0xffff12a1]
                                                                                                                               
1
   ??? [0x3a26864]
                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                   
1
   ??? [0xffff1279]
                                                                                                   
3
   ??? [0x3a7402c]
                                                                                                     
3
   ??? [0x3657294]
                                                                                                       
3
   ??? [0x364f314]
                                                                                                         
3
   ??? [0x364f8d2]
                                                                                                           
3
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                             
2
   _pss + 215207 (in libclient.dylib) [0x5b2b07]
                                                                                                               
1
   _pss + 214784 (in libclient.dylib) [0x5b2960]
                                                                                                                 
1
   ??? [0x4625bd]
                                                                                                                   
1
   _pthread_getspecific + 12 (in libSystem.B.dylib) [0x95eb4330]
                                                                                                               
1
   _pss + 214459 (in libclient.dylib) [0x5b281b]
                                                                                                                 
1
   ??? [0x4a721d]
                                                                                                             
1
   _pss + 214686 (in libclient.dylib) [0x5b28fe]
                                                                                                 
14
   ??? [0x3abfd70]
                                                                                                   
14
   ??? [0x3a2f5a8]
                                                                                                     
14
   ??? [0x3a2fba0]
                                                                                                       
14
   ??? [0x39f6860]
                                                                                                         
13
   ??? [0x3a2d1b0]
                                                                                                           
13
   ??? [0x3a36dfc]
                                                                                                             
13
   ??? [0x3a20ccc]
                                                                                                               
13
   ??? [0x3a24738]
                                                                                                                 
13
   ??? [0x3a253c0]
                                                                                                                   
13
   ??? [0x39fef80]
                                                                                                                     
13
   ??? [0x3a27028]
                                                                                                                       
13
   ??? [0x3a3bd28]
                                                                                                                         
13
   ??? [0x39fca90]
                                                                                                                           
5
   ??? [0x3a2682c]
                                                                                                                             
5
   ??? [0x39fbc64]
                                                                                                                               
1
   ??? [0xffff132f]
                                                                                                                               
1
   ??? [0xffff1305]
                                                                                                                               
1
   ??? [0xffff1381]
                                                                                                                               
1
   ??? [0xffff1346]
                                                                                                                               
1
   ??? [0xffff130b]
                                                                                                                           
4
   ??? [0x3a267ec]
                                                                                                                             
3
   ??? [0x39fbc64]
                                                                                                                               
1
   ??? [0xffff1375]
                                                                                                                               
1
   ??? [0xffff13b6]
                                                                                                                               
1
   ??? [0xffff1346]
                                                                                                                             
1
   ??? [0x39fbcbe]
                                                                                                                               
1
   ??? [0x360f126]
                                                                                                                                 
1
   ??? [0x4bbdbe]
                                                                                                                                   
1
   ??? [0x4a6da3]
                                                                                                                                     
1
   ??? [0x4a65ba]
                                                                                                                                       
1
   ??? [0x474c38]
                                                                                                                                         
1
   ??? [0x4d493b]
                                                                                                                                           
1
   ??? [0x481fcc]
                                                                                                                                             
1
   ??? [0x3ca119]
                                                                                                                                               
1
   ??? [0x475e14]
                                                                                                                                                 
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                           
2
   ??? [0x3a26864]
                                                                                                                             
1
   ??? [0x39fbc64]
                                                                                                                               
1
   ??? [0xffff12a9]
                                                                                                                             
1
   ??? [0x39fbcbe]
                                                                                                                               
1
   ??? [0x360f126]
                                                                                                                                 
1
   ??? [0x4bbdbe]
                                                                                                                                   
1
   ??? [0x4a6da3]
                                                                                                                                     
1
   ??? [0x4a65ba]
                                                                                                                                       
1
   ??? [0x474c38]
                                                                                                                                         
1
   ??? [0x4d47d9]
                                                                                                                                           
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                           
2
   ??? [0x3a267b4]
                                                                                                                             
2
   ??? [0x39fbc64]
                                                                                                                               
1
   ??? [0xffff131d]
                                                                                                                               
1
   ??? [0xffff1305]
                                                                                                         
1
   ??? [0x3a2ff40]
                                                                                                           
1
   ??? [0x3a2b7c4]
                                                                                                             
1
   ??? [0x39f37f4]
                                                                                                               
1
   ??? [0x360fea0]
                                                                                                 
5
   ??? [0x3abfcf0]
                                                                                                   
5
   ??? [0x3657294]
                                                                                                     
5
   ??? [0x364f314]
                                                                                                       
5
   ??? [0x364f8d2]
                                                                                                         
4
   _JVM_GetStackTraceElement + 387 (in libclient.dylib) [0x5fbf43]
                                                                                                           
4
   ??? [0x481fcc]
                                                                                                             
4
   ??? [0x3ca119]
                                                                                                               
4
   ??? [0x475e14]
                                                                                                                 
4
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                         
1
   _JVM_GetStackTraceElement + 222 (in libclient.dylib) [0x5fbe9e]
                                                                                                           
1
   _pss + 215207 (in libclient.dylib) [0x5b2b07]
                                                                                                             
1
   _pss + 214784 (in libclient.dylib) [0x5b2960]
                                                                                                               
1
   ??? [0x461fe0]
                                                                                               
33
   ??? [0x359baaa]
                                                                                                 
33
   ??? [0x360ddc0]
                                                                                                   
33
   ??? [0x3acd20c]
                                                                                                     
33
   ??? [0x359b9d3]
                                                                                                       
33
   ??? [0x360ddc0]
                                                                                                         
33
   ??? [0x3a9b194]
                                                                                                           
33
   ??? [0x3a5c410]
                                                                                                             
29
   ??? [0x3abd268]
                                                                                                               
21
   ??? [0x3b0d7d4]
                                                                                                                 
21
   ??? [0x396a044]
                                                                                                                   
20
   ??? [0x396a60c]
                                                                                                                     
9
   ??? [0x3ae0200]
                                                                                                                       
9
   ??? [0x3af291c]
                                                                                                                         
9
   ??? [0x3af33d0]
                                                                                                                           
9
   ??? [0x3ad19ec]
                                                                                                                             
9
   ??? [0x3ad101c]
                                                                                                                               
9
   ??? [0x3b2bbdc]
                                                                                                                                 
7
   ??? [0x3af7b9c]
                                                                                                                                   
7
   ??? [0x3b1c49c]
                                                                                                                                     
7
   ??? [0x3b11fa0]
                                                                                                                                       
7
   ??? [0x359baaa]
                                                                                                                                         
7
   ??? [0x359baaa]
                                                                                                                                           
7
   ??? [0x359baaa]
                                                                                                                                             
7
   ??? [0x360ddc0]
                                                                                                                                               
4
   ??? [0x3b020d4]
                                                                                                                                                 
4
   ??? [0x396a044]
                                                                                                                                                   
4
   ??? [0x396a60c]
                                                                                                                                                     
3
   ??? [0x3ae00c4]
                                                                                                                                                       
3
   ??? [0x3af7b78]
                                                                                                                                                         
3
   ??? [0x3aed2a0]
                                                                                                                                                           
2
   ??? [0x3b0b6e0]
                                                                                                                                                             
2
   ??? [0x3b27af4]
                                                                                                                                                               
2
   ??? [0x3b27c84]
                                                                                                                                                                 
2
   ??? [0x359ba7f]
                                                                                                                                                                   
1
   ??? [0x359ba7f]
                                                                                                                                                                     
1
   ??? [0x359baaa]
                                                                                                                                                                       
1
   ??? [0x3aabbf8]
                                                                                                                                                                         
1
   ??? [0x396a044]
                                                                                                                                                                           
1
   ??? [0x396a60c]
                                                                                                                                                                             
1
   ??? [0x3adf784]
                                                                                                                                                                               
1
   ??? [0x3a2f5a8]
                                                                                                                                                                                 
1
   ??? [0x3a2fba0]
                                                                                                                                                                                   
1
   ??? [0x39f6860]
                                                                                                                                                                                     
1
   ??? [0x3a2d1b0]
                                                                                                                                                                                       
1
   ??? [0x3a36dfc]
                                                                                                                                                                                         
1
   ??? [0x3a20ccc]
                                                                                                                                                                                           
1
   ??? [0x3a24738]
                                                                                                                                                                                             
1
   ??? [0x3a253c0]
                                                                                                                                                                                               
1
   ??? [0x39fef80]
                                                                                                                                                                                                 
1
   ??? [0x3a27028]
                                                                                                                                                                                                   
1
   ??? [0x3a3bd28]
                                                                                                                                                                                                     
1
   ??? [0x39fca90]
                                                                                                                                                                                                       
1
   ??? [0x3a267b4]
                                                                                                                                                                                                         
1
   ??? [0x39fbc64]
    1 ??? [0xffff1254]
                                                                                                                                                                   
1
   ??? [0x359bb2b]
                                                                                                                                                                     
1
   ??? [0x360ddc0]
                                                                                                                                                                       
1
   ??? [0x3a5676c]
                                                                                                                                                                         
1
   ??? [0x39e0d94]
                                                                                                                                                                           
1
   ??? [0x3a603a0]
                                                                                                                                                                             
1
   ??? [0x39df37c]
                                                                                                                                                                               
1
   ??? [0x39d97fa]
                                                                                                                                                           
1
   ??? [0x3b0b6f8]
                                                                                                                                                             
1
   ??? [0x3b0bde0]
                                                                                                                                                               
1
   ??? [0x3a2f5a8]
                                                                                                                                                                 
1
   ??? [0x3a2fba0]
                                                                                                                                                                   
1
   ??? [0x39f6860]
                                                                                                                                                                     
1
   ??? [0x3a2d1b0]
                                                                                                                                                                       
1
   ??? [0x3a36dfc]
                                                                                                                                                                         
1
   ??? [0x3a20ccc]
                                                                                                                                                                           
1
   ??? [0x3a24738]
                                                                                                                                                                             
1
   ??? [0x3a253c0]
                                                                                                                                                                               
1
   ??? [0x39fef80]
                                                                                                                                                                                 
1
   ??? [0x3a27028]
                                                                                                                                                                                   
1
   ??? [0x3a3bd28]
                                                                                                                                                                                     
1
   ??? [0x39fca90]
                                                                                                                                                                                       
1
   ??? [0x360f0ee]
                                                                                                                                                     
1
   ??? [0x3ae04cc]
                                                                                                                                                       
1
   ??? [0x3a2f5a8]
                                                                                                                                                         
1
   ??? [0x3a2fba0]
                                                                                                                                                           
1
   ??? [0x39f6860]
                                                                                                                                                             
1
   ??? [0x3a2d1b0]
                                                                                                                                                               
1
   ??? [0x3a36dfc]
                                                                                                                                                                 
1
   ??? [0x3a20ccc]
                                                                                                                                                                   
1
   ??? [0x3a24738]
                                                                                                                                                                     
1
   ??? [0x3a253c0]
                                                                                                                                                                       
1
   ??? [0x39fef80]
                                                                                                                                                                         
1
   ??? [0x3a27028]
                                                                                                                                                                           
1
   ??? [0x3a3bd28]
                                                                                                                                                                             
1
   ??? [0x39fca90]
                                                                                                                                                                               
1
   ??? [0x3a26864]
                                                                                                                                                                                 
1
   ??? [0x39fbcbe]
                                                                                                                                                                                   
1
   ??? [0x360f126]
                                                                                                                                                                                     
1
   ??? [0x4bbdbe]
                                                                                                                                                                                       
1
   ??? [0x4a6da3]
                                                                                                                                                                                         
1
   ??? [0x4a65ba]
                                                                                                                                                                                           
1
   ??? [0x474c38]
                                                                                                                                                                                             
1
   ??? [0x4d47d9]
                                                                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                               
3
   ??? [0x3b03e30]
                                                                                                                                                 
3
   ??? [0x359ba7f]
                                                                                                                                                   
3
   ??? [0x359baaa]
                                                                                                                                                     
3
   ??? [0x360ddc0]
                                                                                                                                                       
3
   ??? [0x3aabbf8]
                                                                                                                                                         
3
   ??? [0x396a044]
                                                                                                                                                           
3
   ??? [0x396a60c]
                                                                                                                                                             
1
   ??? [0x3ae04cc]
                                                                                                                                                               
1
   ??? [0x3a2f5a8]
                                                                                                                                                                 
1
   ??? [0x3a2fba0]
                                                                                                                                                                   
1
   ??? [0x39f6860]
                                                                                                                                                                     
1
   ??? [0x3a2d1b0]
                                                                                                                                                                       
1
   ??? [0x3a36dfc]
                                                                                                                                                                         
1
   ??? [0x3a20ccc]
                                                                                                                                                                           
1
   ??? [0x3a24738]
                                                                                                                                                                             
1
   ??? [0x3a253c0]
                                                                                                                                                                               
1
   ??? [0x39fef80]
                                                                                                                                                                                 
1
   ??? [0x3a27028]
                                                                                                                                                                                   
1
   ??? [0x3a3bd28]
                                                                                                                                                                                     
1
   ??? [0x39fca90]
                                                                                                                                                                                       
1
   ??? [0x3a26864]
                                                                                                                                                                                         
1
   ??? [0x39fbcbe]
                                                                                                                                                                                           
1
   ??? [0x360f126]
                                                                                                                                                                                             
1
   ??? [0x4bbdbe]
                                                                                                                                                                                               
1
   ??? [0x4a6da3]
                                                                                                                                                                                                 
1
   ??? [0x4a65ba]
                                                                                                                                                                                                   
1
   ??? [0x474c38]
                                                                                                                                                                                                     
1
   ??? [0x4d493b]
                                                                                                                                                                                                       
1
   ??? [0x481fcc]
                                                                                                                                                                                                         
1
   ??? [0x3ca119]
    1 ??? [0x475e14]
      1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                                             
1
   ??? [0x3adf784]
                                                                                                                                                               
1
   ??? [0x3a2f5a8]
                                                                                                                                                                 
1
   ??? [0x3a2fba0]
                                                                                                                                                                   
1
   ??? [0x39f6860]
                                                                                                                                                                     
1
   ??? [0x3a2d1b0]
                                                                                                                                                                       
1
   ??? [0x3a36dfc]
                                                                                                                                                                         
1
   ??? [0x3a20ccc]
                                                                                                                                                                           
1
   ??? [0x3a24738]
                                                                                                                                                                             
1
   ??? [0x3a253c0]
                                                                                                                                                                               
1
   ??? [0x39fef80]
                                                                                                                                                                                 
1
   ??? [0x3a27028]
                                                                                                                                                                                   
1
   ??? [0x3a3bd28]
                                                                                                                                                                                     
1
   ??? [0x39fca90]
                                                                                                                                                                                       
1
   ??? [0x360f0f6]
                                                                                                                                                             
1
   ??? [0x3ae00c4]
                                                                                                                                                               
1
   ??? [0x3af7824]
                                                                                                                                                                 
1
   ??? [0x3a7de58]
                                                                                                                                                                   
1
   ??? [0x3a792d4]
                                                                                                                                                                     
1
   ??? [0x396a044]
                                                                                                                                                                       
1
   ??? [0x396a60c]
                                                                                                                                                                         
1
   ??? [0x3ae04cc]
                                                                                                                                                                           
1
   ??? [0x3a2f5a8]
                                                                                                                                                                             
1
   ??? [0x3a2fba0]
                                                                                                                                                                               
1
   ??? [0x39f6860]
                                                                                                                                                                                 
1
   ??? [0x3a2d1b0]
                                                                                                                                                                                   
1
   ??? [0x3a36dfc]
                                                                                                                                                                                     
1
   ??? [0x3a20ccc]
                                                                                                                                                                                       
1
   ??? [0x3a24738]
                                                                                                                                                                                         
1
   ??? [0x3a253c0]
                                                                                                                                                                                           
1
   ??? [0x39fef80]
                                                                                                                                                                                             
1
   ??? [0x3a27028]
                                                                                                                                                                                               
1
   ??? [0x3a3bd28]
                                                                                                                                                                                                 
1
   ??? [0x39fca90]
                                                                                                                                                                                                   
1
   ??? [0x3a267ec]
                                                                                                                                                                                                     
1
   ??? [0x39fbc64]
                                                                                                                                                                                                       
1
   ??? [0xffff1305]
                                                                                                                                 
2
   ??? [0x3af7bc4]
                                                                                                                                   
2
   ??? [0x3b1d334]
                                                                                                                                     
2
   ??? [0x3a2f5a8]
                                                                                                                                       
2
   ??? [0x3a2fba0]
                                                                                                                                         
2
   ??? [0x39f6860]
                                                                                                                                           
2
   ??? [0x3a2d1b0]
                                                                                                                                             
2
   ??? [0x3a36dfc]
                                                                                                                                               
2
   ??? [0x3a20ccc]
                                                                                                                                                 
2
   ??? [0x3a24738]
                                                                                                                                                   
2
   ??? [0x3a253c0]
                                                                                                                                                     
2
   ??? [0x39fef80]
                                                                                                                                                       
2
   ??? [0x3a27028]
                                                                                                                                                         
2
   ??? [0x3a3bd28]
                                                                                                                                                           
2
   ??? [0x39fca90]
                                                                                                                                                             
1
   ??? [0x3a267b4]
                                                                                                                                                               
1
   ??? [0x39fbc64]
                                                                                                                                                                 
1
   ??? [0xffff1358]
                                                                                                                                                             
1
   ??? [0x3a2682c]
                                                                                                                                                               
1
   ??? [0x39fbc64]
                                                                                                                                                                 
1
   ??? [0xffff1317]
                                                                                                                     
6
   ??? [0x3adf784]
                                                                                                                       
6
   ??? [0x3a2f5a8]
                                                                                                                         
6
   ??? [0x3a2fba0]
                                                                                                                           
6
   ??? [0x39f6860]
                                                                                                                             
6
   ??? [0x3a2d1b0]
                                                                                                                               
5
   ??? [0x3a36dfc]
                                                                                                                                 
5
   ??? [0x3a20ccc]
                                                                                                                                   
5
   ??? [0x3a24738]
                                                                                                                                     
5
   ??? [0x3a253c0]
                                                                                                                                       
5
   ??? [0x39fef80]
                                                                                                                                         
5
   ??? [0x3a27028]
                                                                                                                                           
5
   ??? [0x3a3bd28]
                                                                                                                                             
5
   ??? [0x39fca90]
                                                                                                                                               
2
   ??? [0x360f0f2]
                                                                                                                                               
1
   ??? [0x3a26864]
                                                                                                                                                 
1
   ??? [0x39fbcbe]
                                                                                                                                                   
1
   ??? [0x360f126]
                                                                                                                                                     
1
   ??? [0x4bbdbe]
                                                                                                                                                       
1
   ??? [0x4a6da3]
                                                                                                                                                         
1
   ??? [0x4a65ba]
                                                                                                                                                           
1
   ??? [0x474c38]
                                                                                                                                                             
1
   ??? [0x4d47d9]
                                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                               
1
   ??? [0x360f0ee]
                                                                                                                                               
1
   ??? [0x360f0f6]
                                                                                                                               
1
   ??? [0x3989149]
                                                                                                                     
5
   ??? [0x3ae04cc]
                                                                                                                       
5
   ??? [0x3a2f5a8]
                                                                                                                         
5
   ??? [0x3a2fba0]
                                                                                                                           
5
   ??? [0x39f6860]
                                                                                                                             
5
   ??? [0x3a2d1b0]
                                                                                                                               
5
   ??? [0x3a36dfc]
                                                                                                                                 
5
   ??? [0x3a20ccc]
                                                                                                                                   
5
   ??? [0x3a24738]
                                                                                                                                     
5
   ??? [0x3a253c0]
                                                                                                                                       
5
   ??? [0x39fef80]
                                                                                                                                         
5
   ??? [0x3a27028]
                                                                                                                                           
5
   ??? [0x3a3bd28]
                                                                                                                                             
5
   ??? [0x39fca90]
                                                                                                                                               
2
   ??? [0x3a26864]
                                                                                                                                                 
1
   ??? [0x39fbcbe]
                                                                                                                                                   
1
   ??? [0x360f126]
                                                                                                                                                     
1
   ??? [0x4bbdbe]
                                                                                                                                                       
1
   ??? [0x4a6da3]
                                                                                                                                                         
1
   ??? [0x4a65ba]
                                                                                                                                                           
1
   ??? [0x474c38]
                                                                                                                                                             
1
   ??? [0x4d47d9]
                                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                                   
1
   ??? [0xffff1329]
                                                                                                                                               
1
   ??? [0x3a2682c]
                                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                                   
1
   ??? [0xffff1261]
                                                                                                                                               
1
   ??? [0x3a267b4]
                                                                                                                                                 
1
   ??? [0x39fbcbe]
                                                                                                                                                   
1
   ??? [0x360f126]
                                                                                                                                                     
1
   ??? [0x4bbdbe]
                                                                                                                                                       
1
   ??? [0x4a6da3]
                                                                                                                                                         
1
   ??? [0x4a65ba]
                                                                                                                                                           
1
   ??? [0x474c38]
                                                                                                                                                             
1
   ??? [0x4d47d9]
                                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                                               
1
   ??? [0x360f0f2]
                                                                                                                   
1
   ??? [0x396a508]
                                                                                                                     
1
   ??? [0x36c6658]
                                                                                                                       
1
   ??? [0x36d2024]
                                                                                                                         
1
   ??? [0x3658642]
                                                                                                                           
1
   _Java_java_lang_Throwable_fillInStackTrace + 25 (in libjava.jnilib)
[0x79a41]
                                                                                                                             
1
   _JVM_FillInStackTrace + 223 (in libclient.dylib) [0x5fb8ff]
                                                                                                                               
1
   ??? [0x47f3c2]
                                                                                                                                 
1
   ??? [0x47f8b7]
                                                                                                                                   
1
   ??? [0x4dd76b]
                                                                                                                                     
1
   ??? [0x4dd998]
                                                                                                               
8
   ??? [0x3b0d834]
                                                                                                                 
8
   ??? [0x396a044]
                                                                                                                   
8
   ??? [0x396a60c]
                                                                                                                     
5
   ??? [0x3ae0200]
                                                                                                                       
5
   ??? [0x3af291c]
                                                                                                                         
5
   ??? [0x3af33d0]
                                                                                                                           
5
   ??? [0x3ad19ec]
                                                                                                                             
5
   ??? [0x3ad101c]
                                                                                                                               
5
   ??? [0x3b2bbdc]
                                                                                                                                 
5
   ??? [0x3af7bc4]
                                                                                                                                   
5
   ??? [0x3b1d334]
                                                                                                                                     
5
   ??? [0x3a2f5a8]
                                                                                                                                       
5
   ??? [0x3a2fba0]
                                                                                                                                         
5
   ??? [0x39f6860]
                                                                                                                                           
5
   ??? [0x3a2d1b0]
                                                                                                                                             
5
   ??? [0x3a36dfc]
                                                                                                                                               
5
   ??? [0x3a20ccc]
                                                                                                                                                 
5
   ??? [0x3a24738]
                                                                                                                                                   
5
   ??? [0x3a253c0]
                                                                                                                                                     
5
   ??? [0x39fef80]
                                                                                                                                                       
5
   ??? [0x3a27028]
                                                                                                                                                         
5
   ??? [0x3a3bd28]
                                                                                                                                                           
5
   ??? [0x39fca90]
                                                                                                                                                             
2
   ??? [0x360f0ee]
                                                                                                                                                             
1
   ??? [0x3a2682c]
                                                                                                                                                               
1
   ??? [0x39fbc64]
                                                                                                                                                                 
1
   ??? [0xffff12b1]
                                                                                                                                                             
1
   ??? [0x3a267b4]
                                                                                                                                                               
1
   ??? [0x39fbc64]
                                                                                                                                                                 
1
   ??? [0xffff1261]
                                                                                                                                                             
1
   ??? [0x3a26864]
                                                                                                                                                               
1
   ??? [0x39fbc64]
                                                                                                                                                                 
1
   ??? [0xffff1393]
                                                                                                                     
1
   ??? [0x3adf784]
                                                                                                                       
1
   ??? [0x3a2f5a8]
                                                                                                                         
1
   ??? [0x3a2fba0]
                                                                                                                           
1
   ??? [0x39f6860]
                                                                                                                             
1
   ??? [0x3a2d1b0]
                                                                                                                               
1
   ??? [0x3a36dfc]
                                                                                                                                 
1
   ??? [0x3a20ccc]
                                                                                                                                   
1
   ??? [0x3a24738]
                                                                                                                                     
1
   ??? [0x3a253c0]
                                                                                                                                       
1
   ??? [0x39fef80]
                                                                                                                                         
1
   ??? [0x3a27028]
                                                                                                                                           
1
   ??? [0x3a3bd28]
                                                                                                                                             
1
   ??? [0x39fca90]
                                                                                                                                               
1
   ??? [0x3a267ec]
                                                                                                                                                 
1
   ??? [0x39fbcbe]
                                                                                                                                                   
1
   ??? [0x360f126]
                                                                                                                                                     
1
   ??? [0x4bbdbe]
                                                                                                                                                       
1
   ??? [0x4a6da3]
                                                                                                                                                         
1
   ??? [0x4a65ba]
                                                                                                                                                           
1
   ??? [0x474c38]
                                                                                                                                                             
1
   ??? [0x4d47d9]
                                                                                                                                                               
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                                                                                                     
1
   ??? [0x3ae04cc]
                                                                                                                       
1
   ??? [0x3a2f5a8]
                                                                                                                         
1
   ??? [0x3a2fba0]
                                                                                                                           
1
   ??? [0x39f6860]
                                                                                                                             
1
   ??? [0x3a2d1b0]
                                                                                                                               
1
   ??? [0x3a36dfc]
                                                                                                                                 
1
   ??? [0x3a20ccc]
                                                                                                                                   
1
   ??? [0x3a24738]
                                                                                                                                     
1
   ??? [0x3a253c0]
                                                                                                                                       
1
   ??? [0x39fef80]
                                                                                                                                         
1
   ??? [0x3a27028]
                                                                                                                                           
1
   ??? [0x3a3bd28]
                                                                                                                                             
1
   ??? [0x39fca90]
                                                                                                                                               
1
   ??? [0x3a267ec]
                                                                                                                                                 
1
   ??? [0x39fbc64]
                                                                                                                                                   
1
   ??? [0xffff12b9]
                                                                                                                     
1
   ??? [0x3adf704]
                                                                                                                       
1
   ??? [0x3657280]
                                                                                                                         
1
   ??? [0x3a93f4c]
                                                                                                                           
1
   ??? [0x3658642]
                                                                                                                             
1
   _Java_java_lang_Throwable_fillInStackTrace + 25 (in libjava.jnilib)
[0x79a41]
                                                                                                                               
1
   _JVM_FillInStackTrace + 223 (in libclient.dylib) [0x5fb8ff]
                                                                                                                                 
1
   ??? [0x47fc32]
                                                                                                             
4
   ??? [0x3abd1c0]
                                                                                                               
4
   ??? [0x39f105c]
                                                                                                                 
4
   ??? [0x39e0d94]
                                                                                                                   
3
   ??? [0x3a603a0]
                                                                                                                     
3
   ??? [0x39df37c]
                                                                                                                       
1
   ??? [0x39dd8f0]
                                                                                                                         
1
   ??? [0x3635280]
                                                                                                                       
1
   ??? [0x39dda14]
                                                                                                                         
1
   ??? [0x39d90c0]
                                                                                                                           
1
   ??? [0x39d746f]
                                                                                                                       
1
   ??? [0x39dd738]
                                                                                                                         
1
   ??? [0x39d88d0]
                                                                                                                           
1
   ??? [0x36352fc]
                                                                                                                   
1
   ??? [0x39df359]
    Kernel stack:
      126 _PE_incoming_interrupt + 131 [0x44e416]
        126 _lapic_interrupt + 121 [0x1b16c0]
          126 _sync_iss_to_iks + 114 [0x1aa3ae]
      8 _i386_astintr + 47 [0x1aa272]
        8 _ast_taken + 185 [0x129434]
          8 _thread_continue + 1180 [0x136cb3]
      1 _lo_alltraps + 282 [0x1a162a]
      1 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        1 _mach_msg_overwrite_trap + 4492 [0x127396]
          1 _ipc_kmsg_send + 278 [0x120530]
            1 _ipc_mqueue_send + 469 [0x120f97]
              1 _ipc_mqueue_post + 507 [0x120da8]
                1 _ml_set_interrupts_enabled + 41 [0x1a4383]
                  1 _lo_alltraps + 515 [0x1a1713]
                    1 _kernel_trap + 263 [0x1aac5b]
                      1 _ast_taken + 185 [0x129434]
                        1 _thread_continue + 1180 [0x136cb3]
      1 _unix_syscall + 572 [0x3e3a7f]
        1 _write_nocancel + 180 [0x391f0a]
          1 _readv + 312 [0x391c12]
            1 _mac_pipe_check_write + 57 [0x45c2f1]

    Thread id:      5f4a410
    User stack:
      7 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        7 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          7 ??? [0x4197a8]
            7 ??? [0x419885]
              7 ??? [0x419945]
                7 ??? [0x419a53]
                  7 ??? [0x4d5b5a]
                    7 ??? [0x3599227]
                      7 ??? [0x359bcd9]
                        7 ??? [0x359bcd9]
                          7 ??? [0x359b9d3]
                            7 ??? [0x359b9d3]
                              7 ??? [0x359b9d3]
                                5 ??? [0x35a19b1]
                                  4 _JVM_Halt + 171 (in
libclient.dylib) [0x5fad9b]
                                    4 ??? [0x474865]
                                      4 ??? [0x474c38]
                                        4 ??? [0x4d47d9]
                                          4 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                                  1 _JVM_Halt + 160 (in
libclient.dylib) [0x5fad90]
                                    1 ??? [0x473ac5]
                                      1 ??? [0x473fca]
                                        1 ??? [0x4d47d9]
                                          1 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                                2 ??? [0x359b9d3]
                                  2 ??? [0x359b9d3]
                                    2 ??? [0x359b9d3]
                                      2 ??? [0x35a19b1]
                                        2 _JVM_MonitorWait + 465 (in
libclient.dylib) [0x5fc3a1]
                                          2 ??? [0x419b65]
                                            2 ??? [0x41a57a]
                                              2 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]

    Thread id:      5e4e8b8
    User stack:
      2 __pthread_body + 27 (in libSystem.B.dylib) [0x95f2f200]
        2 _JVM_RaiseSignal + 442177 (in libclient.dylib) [0x682311]
          2 ??? [0x4197a8]
            2 ??? [0x419885]
              2 ??? [0x419945]
                2 ??? [0x419a53]
                  2 ??? [0x4d5b5a]
                    2 ??? [0x3599227]
                      1 ??? [0x359b9d3]
                        1 ??? [0x3649db5]
                      1 ??? [0x35a7caf]
    Kernel stack:
      2 _user_trap + 659 [0x1ab39c]
        2 _vm_fault + 3049 [0x1636ae]
          2 _vm_fault_page + 178 [0x160eb0]
            2 _lck_rw_sleep + 92 [0x13115c]
              2 _thread_block + 33 [0x136f20]
                2 _thread_continue + 1180 [0x136cb3]


Process:        ATSServer [398]
Path:           /System/Library/Frameworks/
ApplicationServices.framework/Frameworks/ATS.framework/Support/ATSServer

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/
ApplicationServices.framework/Frameworks/ATS.framework/Support/ATSServer

    Thread id:      48cea78
    User stack:
      162 ??? [0x4c66]
        162 ??? [0xdd21f]
          162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3fb7048
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        ATSServer [95]
Path:           /System/Library/Frameworks/
ApplicationServices.framework/Frameworks/ATS.framework/Support/ATSServer

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/
ApplicationServices.framework/Frameworks/ATS.framework/Support/ATSServer

    Thread id:      3644f20
    User stack:
      162 ??? [0x4c66]
        162 ??? [0xdd21f]
          162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            161 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
            1 _CFRunLoopRunSpecific + 3896 (in CoreFoundation)
[0x91e426b8]
              1 ___CFMachPortPerform + 117 (in CoreFoundation)
[0x91e1dff5]
                1 ??? [0xdbce2]
                  1 ??? [0xdb9f1]
                    1 ??? [0xc5626]
                      1 ??? [0x11996e]
                        1 ??? [0x1195ed]
                          1 ??? [0x11837e]
                            1 ??? [0x114c3f]
                              1 ??? [0x111e77]
                                1 ??? [0xfaf03]
    Kernel stack:
      1 _user_trap + 659 [0x1ab39c]
        1 _vm_fault + 3049 [0x1636ae]
          1 _vm_fault_page + 178 [0x160eb0]
            1 _lck_rw_sleep + 92 [0x13115c]
              1 _thread_block + 33 [0x136f20]
                1 _thread_continue + 1180 [0x136cb3]

    Thread id:      3951b58
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        AirPort Base Station Agent [87]
Path:           /System/Library/CoreServices/AirPort Base Station
Agent.app/Contents/MacOS/AirPort Base Station Agent

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/AirPort Base Station
Agent.app/Contents/MacOS/AirPort Base Station Agent

    Thread id:      2dedd60
    User stack:
      162 ??? [0x28d9]
        162 ??? [0x29ac]
          162 _NSApplicationMain + 574 (in AppKit) [0x949d31d8]
            162 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
              162 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
                162 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                  162 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                    162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                      162 _RunCurrentEventLoopInMode + 283 (in
HIToolbox) [0x96ba22ac]
                        162 _CFRunLoopRunInMode + 88 (in
CoreFoundation) [0x91e42aa8]
                          159 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                          3 _CFRunLoopRunSpecific + 3896 (in
CoreFoundation) [0x91e426b8]
                            3 ___CFMachPortPerform + 117 (in
CoreFoundation) [0x91e1dff5]
                              1
__Z48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
   + 35 (in LaunchServices) [0x96333cb1]
                                1
__Z31GetNotificationInformationForIDPKv + 48 (in LaunchServices)
[0x96319480]
                                  1 ??? [0xffff0269]
                              1 __Z31GetNotificationInformationForIDPKv
+ 48 (in LaunchServices) [0x96319480]
                              1
__Z48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
   + 166 (in LaunchServices) [0x96333d34]
                                1 __LSASNCreate + 74 (in
LaunchServices) [0x9630dbea]
                                  1 __CFRuntimeCreateInstance + 145 (in
CoreFoundation) [0x91e44201]
                                    1 _malloc_zone_malloc + 81 (in
libSystem.B.dylib) [0x95eb40d8]
                                      1 _tiny_malloc_from_free_list +
62 (in libSystem.B.dylib) [0x95ebb338]
    Kernel stack:
      3 _user_trap + 659 [0x1ab39c]
        3 _vm_fault + 3049 [0x1636ae]
          3 _vm_fault_page + 178 [0x160eb0]
            3 _lck_rw_sleep + 92 [0x13115c]
              3 _thread_block + 33 [0x136f20]
                3 _thread_continue + 1180 [0x136cb3]

    Thread id:      3be25d0
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]


Process:        AppleSpell [135]
Path:           /System/Library/Services/AppleSpell.service/Contents/
MacOS/AppleSpell

    ADDRESS         BINARY
    00001000        /System/Library/Services/AppleSpell.service/
Contents/MacOS/AppleSpell
    000f9000        /usr/lib/liblangid.dylib

    Thread id:      3644b58
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        DashboardClient [164]
Path:           /System/Library/CoreServices/Dock.app/Contents/
Resources/DashboardClient.app/Contents/MacOS/DashboardClient

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/Dock.app/Contents/
Resources/DashboardClient.app/Contents/MacOS/DashboardClient
    00069000        /Library/Widgets/Dictionary.wdgt/
Dictionary.widgetplugin/Contents/MacOS/Dictionary
    000bd000        /Library/Widgets/iCal.wdgt/Calendar.widgetplugin/
Contents/MacOS/Calendar
    000c7000        /Library/Widgets/World Clock.wdgt/
WorldClock.widgetplugin/Contents/MacOS/WorldClock
    007a0000        /System/Library/PrivateFrameworks/
Calculate.framework/Calculate
    0bf6f000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera

    Thread id:      426c3c8
    User stack:
      162 ??? [0x2b7a]
        162 ??? [0xa545]
          162 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
            162 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
              162 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                162 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                  162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                    162 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                      162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                        159 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
                        2 _CFRunLoopRunSpecific + 3896 (in
CoreFoundation) [0x91e426b8]
                          2 ___CFMachPortPerform + 117 (in
CoreFoundation) [0x91e1dff5]
                            2
__Z48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
   + 198 (in LaunchServices) [0x96333d54]
                              2
__ZN17UnflattenedCFItem13GetAndReleaseEPKvjb + 57 (in LaunchServices)
[0x9630d439]
                                2 __ZN17UnflattenedCFItem7CopyRefEv +
25 (in LaunchServices) [0x9630d47b]
                                  1 __ZN17UnflattenedCFItem6DecodeEv +
655 (in LaunchServices) [0x9630d725]
                                    1 __ZN17UnflattenedCFItem6DecodeEv
+ 425 (in LaunchServices) [0x9630d63f]
                                      1 _CFStringCreateWithBytes + 94
(in CoreFoundation) [0x91e5d20e]
                                        1
___CFStringCreateImmutableFunnel3 + 737 (in CoreFoundation) [0x91e5c0f1]
                                          1 __CFRuntimeCreateInstance +
145 (in CoreFoundation) [0x91e44201]
                                            1 _malloc_zone_malloc + 81
(in libSystem.B.dylib) [0x95eb40d8]
                                              1
_tiny_malloc_from_free_list + 62 (in libSystem.B.dylib) [0x95ebb338]
                                  1 __ZN17UnflattenedCFItem6DecodeEv +
744 (in LaunchServices) [0x9630d77e]
                                    1 _CFDictionaryCreate + 132 (in
CoreFoundation) [0x91e14254]
                                      1 _CFDictionaryAddValue + 591 (in
CoreFoundation) [0x91e13c7f]
                                        1 ___CFDictionaryGrow + 181 (in
CoreFoundation) [0x91e12805]
                                          1 _malloc_zone_malloc + 81
(in libSystem.B.dylib) [0x95eb40d8]
                                            1
_tiny_malloc_from_free_list + 62 (in libSystem.B.dylib) [0x95ebb338]
                        1 _CFRunLoopRunSpecific + 1690 (in
CoreFoundation) [0x91e41e1a]
                          1 _malloc_zone_malloc + 81 (in
libSystem.B.dylib) [0x95eb40d8]
                            1 _szone_malloc + 397 (in
libSystem.B.dylib) [0x95eb42a6]
                              1 _small_free_list_add_ptr + 193 (in
libSystem.B.dylib) [0x95ebd112]
    Kernel stack:
      3 _user_trap + 659 [0x1ab39c]
        3 _vm_fault + 3049 [0x1636ae]
          3 _vm_fault_page + 178 [0x160eb0]
            3 _lck_rw_sleep + 92 [0x13115c]
              3 _thread_block + 33 [0x136f20]
                3 _thread_continue + 1180 [0x136cb3]

    Thread id:      3955410
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      374f208
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __Z22CFURLCacheWorkerThreadPv + 388 (in CFNetwork)
[0x90d0c264]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3be47d8
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      2deb000
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]

    Thread id:      3751048
    User stack:
      162 ??? [0x0]

    Thread id:      3be1e40
    User stack:
      162 ??? [0x0]


Process:        DirectoryService [32]
Path:           /usr/sbin/DirectoryService

    ADDRESS         BINARY
    00001000        /usr/sbin/DirectoryService
    00160000        /System/Library/PrivateFrameworks/
DirectoryServiceCore.framework/Versions/A/DirectoryServiceCore

    Thread id:      2deb3c8
    User stack:
      162 start + 54 (in DirectoryService) [0x164e2]
        162 _main + 2767 (in DirectoryService) [0x16fcf]
          162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      34ad5d0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9DSLThread11_RunWrapperEPv + 84 (in
DirectoryServiceCore) [0x168166]
            162 __ZN9DSCThread3RunEv + 39 (in DirectoryServiceCore)
[0x167f5b]
              162 __ZN20CPluginRunLoopThread10ThreadMainEv + 222 (in
DirectoryService) [0x2318c]
                162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
                  162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      34ac6b0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9DSLThread11_RunWrapperEPv + 84 (in
DirectoryServiceCore) [0x168166]
            162 __ZN9DSCThread3RunEv + 39 (in DirectoryServiceCore)
[0x167f5b]
              162 __ZN17CMigHandlerThread10ThreadMainEv + 303 (in
DirectoryService) [0x233c5]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
    Kernel stack:
      162 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        162 _mach_msg_overwrite_trap + 3808 [0x1270ea]
          162 _ipc_mqueue_receive + 750 [0x121292]
            162 _thread_block + 33 [0x136f20]
              162 _thread_continue + 1180 [0x136cb3]

    Thread id:      34ab000
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      5f494f0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9DSLThread11_RunWrapperEPv + 84 (in
DirectoryServiceCore) [0x168166]
            162 ___syscall + 5 (in libSystem.B.dylib) [0x95ef53a5]


Process:        Dock [93]
Path:           /System/Library/CoreServices/Dock.app/Contents/MacOS/
Dock

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/Dock.app/Contents/
MacOS/Dock
    00400000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera

    Thread id:      39557d8
    User stack:
      162 ??? [0x537a]
        162 ??? [0x97e97]
          162 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213 (in
Foundation) [0x964223d5]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              153 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
              9 _CFRunLoopRunSpecific + 4469 (in CoreFoundation)
[0x91e428f5]
                9 ??? [0x2984c]
                  8 ??? [0x11ecf]
                    8 ??? [0x245e2]
                      8 __HandlePopUpMenuSelection2 + 111 (in
HIToolbox) [0x96d0d2eb]
                        8 __HandlePopUpMenuSelection5 + 120 (in
HIToolbox) [0x96cd3790]
                          8 __HandlePopUpMenuSelection7 + 627 (in
HIToolbox) [0x96c403fb]
                            8
__Z19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13O\
paqueMenuRefPt
   + 1845 (in HIToolbox) [0x96c40b83]
                              6 __Z15TrackMenuCommonR14MenuSelectDataPh
+ 3860 (in HIToolbox) [0x96bd207c]
                                6
__Z19IsUserStillTrackingP14MenuSelectDataPh + 493 (in HIToolbox)
[0x96be8e0f]
                                  6 _ReceiveNextEventCommon + 374 (in
HIToolbox) [0x96ba20c5]
                                    6 _RunCurrentEventLoopInMode + 283
(in HIToolbox) [0x96ba22ac]
                                      6 _CFRunLoopRunInMode + 88 (in
CoreFoundation) [0x91e42aa8]
                                        6 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                              2 __Z15TrackMenuCommonR14MenuSelectDataPh
+ 5022 (in HIToolbox) [0x96bd2506]
                                2 _RunCurrentEventLoopInMode + 283 (in
HIToolbox) [0x96ba22ac]
                                  2 _CFRunLoopRunInMode + 88 (in
CoreFoundation) [0x91e42aa8]
                                    2 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                  1 ??? [0x11d2b]
                    1 ??? [0x168ca]
                      1 ??? [0x25274]
                        1 -[NSBundle pathForResource:ofType:] + 212 (in
Foundation) [0x963f5d04]
                          1 -[NSUserDefaults(NSUserDefaults)
boolForKey:] + 49 (in Foundation) [0x963ea991]
                            1 -[NSUserDefaults(NSUserDefaults)
objectForKey:] + 36 (in Foundation) [0x963e9bd4]
                              1 _CFPreferencesCopyAppValue + 80 (in
CoreFoundation) [0x91eae6a0]
                                1 -[CFXPreferencesSearchListSource
getValueForKey:] + 107 (in CoreFoundation) [0x91ea900b]
                                  1 -[CFXPreferencesPropertyListSource
getValueForKey:] + 85 (in CoreFoundation) [0x91ea9525]
                                    1 _CFDictionaryGetValue + 141 (in
CoreFoundation) [0x91e14bbd]
                                      1 _CFEqual + 38 (in
CoreFoundation) [0x91e44de6]
    Kernel stack:
      1 _user_trap + 659 [0x1ab39c]
        1 _vm_fault + 3049 [0x1636ae]
          1 _vm_fault_page + 178 [0x160eb0]
            1 _lck_rw_sleep + 92 [0x13115c]
              1 _thread_block + 33 [0x136f20]
                1 _thread_continue + 1180 [0x136cb3]

    Thread id:      3be3128
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        161 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          160 ??? [0x1340d]
            160 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]
          1 ??? [0x13531]
            1 _CGSReenableUpdate + 32 (in CoreGraphics) [0x93e2f588]
              1 _CGSReenableUpdateForConnections + 390 (in
CoreGraphics) [0x93e2f710]
                1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
        1 _clock_sleep_trap + 10 (in libSystem.B.dylib) [0x95eb338e]
    Kernel stack:
      2 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        1 _mach_msg_overwrite_trap + 3808 [0x1270ea]
          1 _ipc_mqueue_receive + 750 [0x121292]
            1 _thread_block + 33 [0x136f20]
              1 _thread_continue + 1180 [0x136cb3]
        1 _clock_sleep_trap + 426 [0x12a9a8]
          1 _thread_block + 33 [0x136f20]
            1 _thread_continue + 1180 [0x136cb3]


Process:        Finder [100]
Path:           /System/Library/CoreServices/Finder.app/Contents/MacOS/
Finder

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/Finder.app/Contents/
MacOS/Finder
    004e5000        /System/Library/Frameworks/Collaboration.framework/
Versions/A/Collaboration
    004fe000        /System/Library/PrivateFrameworks/
MultitouchSupport.framework/Versions/A/MultitouchSupport
    00527000        /System/Library/TextEncodings/Unicode
Encodings.bundle/Contents/MacOS/Unicode Encodings
    0abc4000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0c76d000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera
    0ce9b000        /System/Library/PrivateFrameworks/
URLMount.framework/URLMount
    0d298000        /System/Library/PrivateFrameworks/
QuickLookUI.framework/Versions/A/Resources/DisplayBundles/
Generic.qldisplay/Contents/MacOS/Generic
    0d501000        /System/Library/Frameworks/OpenGL.framework/
Resources/GLEngine.bundle/GLEngine
    0d6b4000        /System/Library/Frameworks/OpenGL.framework/
Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0e519000        /System/Library/Extensions/
ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLDriver

    Thread id:      3be3c80
    User stack:
      162 ??? [0x9376]
        162 ??? [0xf3275]
          162 ??? [0x233b9]
            162 _RunApplicationEventLoop + 207 (in HIToolbox)
[0x96bff2b3]
              162 __AcquireNextEvent + 58 (in HIToolbox) [0x96c00b56]
                162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                  162 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3be1a78
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x966a9057]
            162
__ZN23TSystemNotificationTask26SystemNotificationTaskProcEPv + 123 (in
DesktopServicesPriv) [0x94549e17]
              162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3be16b0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x966a9057]
            162
__ZN25TFSEventsNotificationTask28FSEventsNotificationTaskProcEPv + 216
(in DesktopServicesPriv) [0x94549f90]
              162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3be0f20
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x966a9057]
            162 __ZN13TNodeSyncTask12SyncTaskProcEPv + 84 (in
DesktopServicesPriv) [0x94554f72]
              162 _MPWaitOnQueue + 208 (in CarbonCore) [0x966aaafc]
                162 _TSWaitOnConditionTimedRelative + 202 (in
CarbonCore) [0x96689cd2]
                  162 _TSWaitOnCondition + 126 (in CarbonCore)
[0x966aae7f]
                    162 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]

    Thread id:      3fb6c80
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      3fb68b8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]

    Thread id:      48cd000
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      5f48d60
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      48cf208
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _PrivateMPEntryPoint + 56 (in CarbonCore) [0x966a9057]
            162 __ZN15TFolderSizeTask18FolderSizeTaskProcEPv + 104 (in
DesktopServicesPriv) [0x94556ebc]
              162 _MPWaitOnQueue + 208 (in CarbonCore) [0x966aaafc]
                162 _TSWaitOnConditionTimedRelative + 246 (in
CarbonCore) [0x96689cfe]
                  162 _semaphore_timedwait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32e6]


Process:        Folder Actions Dispatcher [86]
Path:           /System/Library/CoreServices/Folder Actions
Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/Folder Actions
Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher

    Thread id:      39544f0
    User stack:
      162 ??? [0x2456]
        162 ??? [0x2aa7]
          162 _NSApplicationMain + 574 (in AppKit) [0x949d31d8]
            162 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
              162 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
                162 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                  162 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                    162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                      162 _RunCurrentEventLoopInMode + 283 (in
HIToolbox) [0x96ba22ac]
                        162 _CFRunLoopRunInMode + 88 (in
CoreFoundation) [0x91e42aa8]
                          160 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                          2 _CFRunLoopRunSpecific + 3896 (in
CoreFoundation) [0x91e426b8]
                            2 ___CFMachPortPerform + 117 (in
CoreFoundation) [0x91e1dff5]
                              1
__Z48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
   + 35 (in LaunchServices) [0x96333cb1]
                                1
__Z31GetNotificationInformationForIDPKv + 48 (in LaunchServices)
[0x96319480]
                                  1 ??? [0xffff0269]
                              1 __Z31GetNotificationInformationForIDPKv
+ 48 (in LaunchServices) [0x96319480]
    Kernel stack:
      2 _user_trap + 659 [0x1ab39c]
        2 _vm_fault + 3049 [0x1636ae]
          2 _vm_fault_page + 178 [0x160eb0]
            2 _lck_rw_sleep + 92 [0x13115c]
              2 _thread_block + 33 [0x136f20]
                2 _thread_continue + 1180 [0x136cb3]


Process:        KernelEventAgent [24]
Path:           /usr/sbin/KernelEventAgent

    ADDRESS         BINARY
    00001000        /usr/sbin/KernelEventAgent

    Thread id:      2d137d8
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      34ad208
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]


Process:        Mail [192]
Path:           /Applications/Mail.app/Contents/MacOS/Mail

    ADDRESS         BINARY
    00001000        /Applications/Mail.app/Contents/MacOS/Mail
    002e1000        /System/Library/Frameworks/Message.framework/
Versions/B/Message
    00691000        /System/Library/Frameworks/
ExceptionHandling.framework/Versions/A/ExceptionHandling
    0069a000        /System/Library/Frameworks/
LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
    0ab22000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
Versions/A/Resources/ATSHI.dylib
    0abb5000        /System/Library/Frameworks/JavaVM.framework/
Versions/A/Resources/JavaPluginCocoa.bundle/Contents/MacOS/
JavaPluginCocoa
    0ac08000        /Users/selmore/Library/Contextual Menu Items/
GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0ac45000        /System/Library/TextEncodings/Unicode
Encodings.bundle/Contents/MacOS/Unicode Encodings
    0ac60000        /System/Library/Contextual Menu Items/
BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0aca0000        /System/Library/Contextual Menu Items/
AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0acaa000        /usr/lib/liblangid.dylib
    0acec000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0c693000        /System/Library/PrivateFrameworks/
BezelServices.framework/Versions/A/BezelServices
    0c90c000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera
    0cd49000        /System/Library/Contextual Menu Items/
FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0d3cd000        /System/Library/Frameworks/JavaVM.framework/
Versions/A/JavaVM
    0e500000        /System/Library/Extensions/AudioIPCDriver.kext/
Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    0e509000        /System/Library/Extensions/AppleHDA.kext/Contents/
PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0e625000        /System/Library/Frameworks/Message.framework/
Versions/B/Resources/Syncer.syncschema/Contents/MacOS/Syncer
    0e659000        /System/Library/PrivateFrameworks/
SyncServicesUI.framework/Versions/A/SyncServicesUI
    0e6e4000        /Applications/Mail.app/Contents/PlugIns/
MailWebPlugIn.bundle/Contents/MacOS/MailWebPlugIn
    0e900000        /System/Library/Frameworks/IOBluetooth.framework/
Versions/A/IOBluetooth
    0eba6000        /System/Library/Frameworks/OpenGL.framework/
Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    10336000        /System/Library/Frameworks/OpenGL.framework/
Resources/GLEngine.bundle/GLEngine
    104e9000        /System/Library/Extensions/
ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLDriver
    70000000        /System/Library/Components/CoreAudio.component/
Contents/MacOS/CoreAudio
    ba900000        /System/Library/CoreServices/Encodings/
libJapaneseConverter.dylib

    Thread id:      3be0b58
    User stack:
      162 ??? [0xfc0b2]
        162 _NSApplicationMain + 574 (in AppKit) [0x949d31d8]
          162 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
            162 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
              162 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                162 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                  162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                    162 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                      162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                        161 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
                        1 _CFRunLoopRunSpecific + 1690 (in
CoreFoundation) [0x91e41e1a]
                          1 _malloc_zone_malloc + 81 (in
libSystem.B.dylib) [0x95eb40d8]
                            1 _szone_malloc + 397 (in
libSystem.B.dylib) [0x95eb42a6]
                              1 _small_free_list_add_ptr + 166 (in
libSystem.B.dylib) [0x95ebd0f7]
    Kernel stack:
      1 _user_trap + 659 [0x1ab39c]
        1 _vm_fault + 3049 [0x1636ae]
          1 _vm_fault_page + 178 [0x160eb0]
            1 _lck_rw_sleep + 92 [0x13115c]
              1 _thread_block + 33 [0x136f20]
                1 _thread_continue + 1180 [0x136cb3]

    Thread id:      3955048
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      34abf20
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 -[RSSInterchange _runManager] + 2140 (in Message)
[0x3d8dc5]
                162 -[NSRunLoop(NSRunLoop) run] + 84 (in Foundation)
[0x9642e4f4]
                  162 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
(in Foundation) [0x964223d5]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      426da78
    User stack:
      162 ___workq_ops + 10 (in libSystem.B.dylib) [0x95f1c292]

    Thread id:      2d82790
    User stack:
      162 ___workq_ops + 10 (in libSystem.B.dylib) [0x95f1c292]

    Thread id:      426fc80
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 +[_NSSocket _runIOThread] + 98 (in Message) [0x2fc9fd]
                162 -[NSRunLoop(NSRunLoop) run] + 84 (in Foundation)
[0x9642e4f4]
                  162 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
(in Foundation) [0x964223d5]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      42707d8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]

    Thread id:      3fb3790
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      36443c8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 -[IMRemoteObjectBroadcaster _workerThread] + 246 (in
IMUtils) [0x94509db7]
                162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                  162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3750c80
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9CAPThread5EntryEPS_ + 96 (in CoreAudio) [0x962a9480]
            162 __ZN10HALRunLoop9OwnThreadEPv + 160 (in CoreAudio)
[0x962a95f8]
              162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3954c80
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 -[NSUIHeartBeat _heartBeatThread:] + 753 (in AppKit)
[0x94a736e8]
                162 -[NSConditionLock lockWhenCondition:] + 69 (in
Foundation) [0x96433b35]
                  162 -[NSConditionLock lockWhenCondition:beforeDate:]
+ 144 (in Foundation) [0x96433bd0]
                    162 -[NSCondition waitUntilDate:] + 236 (in
Foundation) [0x96433dbc]
                      162 _semaphore_timedwait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32e6]

    Thread id:      48d17d8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __Z22CFURLCacheWorkerThreadPv + 388 (in CFNetwork)
[0x90d0c264]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      426cb58
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      48cf998
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 +[NSURLConnection(NSURLConnectionReallyInternal)
_resourceLoadLoop:] + 320 (in Foundation) [0x96451520]
                162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                  162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]


Process:        Spotlight [91]
Path:           /System/Library/CoreServices/Spotlight.app/Contents/
MacOS/Spotlight

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/Spotlight.app/Contents/
MacOS/Spotlight
    00057000        /System/Library/PrivateFrameworks/
Calculate.framework/Versions/A/Calculate
    00068000        /System/Library/PrivateFrameworks/
URLMount.framework/Versions/A/URLMount
    000e0000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib

    Thread id:      3953d60
    User stack:
      162 ??? [0x26ea]
        162 _NSApplicationMain + 574 (in AppKit) [0x949d31d8]
          162 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
            162 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
              162 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                162 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                  162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                    162 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                      162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                        159 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
                        2 _CFRunLoopRunSpecific + 3896 (in
CoreFoundation) [0x91e426b8]
                          2 ___CFMachPortPerform + 117 (in
CoreFoundation) [0x91e1dff5]
                            1 __Z31GetNotificationInformationForIDPKv +
48 (in LaunchServices) [0x96319480]
                            1
__Z48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
   + 198 (in LaunchServices) [0x96333d54]
                              1
__ZN17UnflattenedCFItem13GetAndReleaseEPKvjb + 57 (in LaunchServices)
[0x9630d439]
                                1 __ZN17UnflattenedCFItem7CopyRefEv +
25 (in LaunchServices) [0x9630d47b]
                                  1 __ZN17UnflattenedCFItem6DecodeEv +
668 (in LaunchServices) [0x9630d732]
                                    1 __ZN17UnflattenedCFItem6DecodeEv
+ 425 (in LaunchServices) [0x9630d63f]
                                      1 _CFStringCreateWithBytes + 94
(in CoreFoundation) [0x91e5d20e]
                                        1
___CFStringCreateImmutableFunnel3 + 737 (in CoreFoundation) [0x91e5c0f1]
                                          1 __CFRuntimeCreateInstance +
145 (in CoreFoundation) [0x91e44201]
                                            1 _malloc_zone_malloc + 81
(in libSystem.B.dylib) [0x95eb40d8]
                                              1
_tiny_malloc_from_free_list + 62 (in libSystem.B.dylib) [0x95ebb338]
                        1 _CFRunLoopRunSpecific + 1690 (in
CoreFoundation) [0x91e41e1a]
                          1 _malloc_zone_malloc + 81 (in
libSystem.B.dylib) [0x95eb40d8]
                            1 _small_malloc_from_free_list + 113 (in
libSystem.B.dylib) [0x95ebc57e]
    Kernel stack:
      3 _user_trap + 659 [0x1ab39c]
        3 _vm_fault + 3049 [0x1636ae]
          3 _vm_fault_page + 178 [0x160eb0]
            3 _lck_rw_sleep + 92 [0x13115c]
              3 _thread_block + 33 [0x136f20]
                3 _thread_continue + 1180 [0x136cb3]

    Thread id:      3be0000
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]


Process:        SystemUIServer [99]
Path:           /System/Library/CoreServices/SystemUIServer.app/
Contents/MacOS/SystemUIServer

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/SystemUIServer.app/
Contents/MacOS/SystemUIServer
    0006a000        /System/Library/PrivateFrameworks/
SystemUIPlugin.framework/Versions/A/SystemUIPlugin
    00078000        /System/Library/PrivateFrameworks/
NetworkConfig.framework/Versions/A/NetworkConfig
    000cc000        /System/Library/PrivateFrameworks/
ICANotifications.framework/Versions/A/ICANotifications
    000f6000        /System/Library/PrivateFrameworks/iPod.framework/
Versions/A/iPod
    00101000        /System/Library/PrivateFrameworks/
BezelServices.framework/Versions/A/BezelServices
    0010a000        /System/Library/Frameworks/DiscRecording.framework/
Versions/A/DiscRecording
    0023e000        /System/Library/PrivateFrameworks/
DiskImages.framework/Versions/A/DiskImages
    0039c000        /System/Library/PrivateFrameworks/
Apple80211.framework/Versions/A/Apple80211
    003d7000        /System/Library/Frameworks/AppleTalk.framework/
Versions/A/AppleTalk
    003e8000        /System/Library/PrivateFrameworks/
MediaKit.framework/Versions/A/MediaKit
    0042f000        /usr/lib/libcurl.4.dylib
    00485000        /Applications/iCal.app/Contents/Resources/
iCalDockExtra.bundle/Contents/MacOS/iCalDockExtra
    00493000        /System/Library/Extensions/AudioIPCDriver.kext/
Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    004b0000        /System/Library/Extensions/AppleHDA.kext/Contents/
PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
    004d0000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    00700000        /System/Library/CoreServices/Menu Extras/Sync.menu/
Contents/MacOS/Sync
    00755000        /System/Library/CoreServices/Menu Extras/iChat.menu/
Contents/MacOS/iChat
    00778000        /System/Library/CoreServices/Menu Extras/
TextInput.menu/Contents/MacOS/TextInput
    0078e000        /System/Library/CoreServices/Menu Extras/
AirPort.menu/Contents/MacOS/AirPort
    007aa000        /System/Library/CoreServices/Menu Extras/
Bluetooth.menu/Contents/MacOS/Bluetooth
    007bf000        /System/Library/Frameworks/IOBluetoothUI.framework/
Versions/A/IOBluetoothUI
    0b1c5000        /System/Library/CoreServices/Menu Extras/Sync.menu/
Contents/Resources/SyncMenuExtraBundle.bundle/Contents/MacOS/
SyncMenuExtraBundle
    0b2b0000        /System/Library/PrivateFrameworks/
SyncServicesUI.framework/Versions/A/SyncServicesUI
    0b2db000        /System/Library/PrivateFrameworks/
Apple80211.framework/Versions/A/Resources/ClientController.bundle/
Contents/MacOS/ClientController
    0b2fc000        /System/Library/PrivateFrameworks/
EAP8021X.framework/Versions/A/EAP8021X
    0b359000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera
    0c8ab000        /System/Library/Frameworks/IOBluetooth.framework/
Versions/A/IOBluetooth
    0c96f000        /System/Library/CoreServices/Menu Extras/
TimeMachine.menu/Contents/MacOS/TimeMachine
    0cdfc000        /System/Library/PrivateFrameworks/
InternetConnect.framework/Versions/A/InternetConnect

    Thread id:      36456b0
    User stack:
      162 ??? [0x5646]
        162 ??? [0x5b44]
          162 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
            162 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
              162 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                162 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                  162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                    162 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                      162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                        161 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
                        1 _CFRunLoopRunSpecific + 3896 (in
CoreFoundation) [0x91e426b8]
                          1 ___CFMachPortPerform + 117 (in
CoreFoundation) [0x91e1dff5]
                            1
__Z48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
   + 35 (in LaunchServices) [0x96333cb1]
                              1 __Z31GetNotificationInformationForIDPKv
+ 48 (in LaunchServices) [0x96319480]
                                1 ??? [0xffff0269]
    Kernel stack:
      1 _user_trap + 659 [0x1ab39c]
        1 _vm_fault + 3049 [0x1636ae]
          1 _vm_fault_page + 178 [0x160eb0]
            1 _lck_rw_sleep + 92 [0x13115c]
              1 _thread_block + 33 [0x136f20]
                1 _thread_continue + 1180 [0x136cb3]

    Thread id:      2c19998
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3951000
    User stack:
      162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      3be2998
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3be0790
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9CAPThread5EntryEPS_ + 96 (in CoreAudio) [0x962a9480]
            162 __ZN10HALRunLoop9OwnThreadEPv + 160 (in CoreAudio)
[0x962a95f8]
              162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3fb46b0
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      426ed60
    User stack:
      162 _semaphore_timedwait_signal_trap + 10 (in libSystem.B.dylib)
[0x95eb32e6]

    Thread id:      4270410
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]

    Thread id:      3be2d60
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 -[IMRemoteObjectBroadcaster _workerThread] + 246 (in
IMUtils) [0x94509db7]
                162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                  162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      2d84d60
    User stack:
      162 ___workq_ops + 10 (in libSystem.B.dylib) [0x95f1c292]

    Thread id:      3be38b8
    User stack:
      162 ??? [0x0]


Process:        UserEventAgent [92]
Path:           /usr/sbin/UserEventAgent

    ADDRESS         BINARY
    00001000        /usr/sbin/UserEventAgent
    00014000        /System/Library/UserEventPlugins/ACRRDaemon.plugin/
Contents/MacOS/ACRRDaemon
    00028000        /System/Library/UserEventPlugins/
AirPortUserAgent.plugin/Contents/MacOS/AirPortUserAgent
    00031000        /System/Library/PrivateFrameworks/
Apple80211.framework/Versions/A/Apple80211
    0006c000        /System/Library/UserEventPlugins/alfUIplugin.plugin/
Contents/MacOS/alfUIplugin
    00071000        /System/Library/UserEventPlugins/
AppleHIDMouseAgent.plugin/Contents/MacOS/AppleHIDMouseAgent
    00077000        /System/Library/UserEventPlugins/BluetoothUserAgent-
Plugin.plugin/Contents/MacOS/BluetoothUserAgent-Plugin
    0007f000        /System/Library/Extensions/AudioIPCDriver.kext/
Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    00088000        /System/Library/Extensions/AppleHDA.kext/Contents/
PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
    00094000        /System/Library/UserEventPlugins/
BTMMPortInUseAgent.plugin/Contents/MacOS/BTMMPortInUseAgent
    0009b000        /System/Library/UserEventPlugins/
iCalAlarmAgent.plugin/Contents/MacOS/iCalAlarmAgent
    000a6000        /System/Library/UserEventPlugins/
ParentalControlsUEAPlugin.plugin/Contents/MacOS/
ParentalControlsUEAPlugin
    000b0000        /System/Library/UserEventPlugins/SCMonitor.plugin/
Contents/MacOS/SCMonitor

    Thread id:      3954128
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      39526b0
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3be2208
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9CAPThread5EntryEPS_ + 96 (in CoreAudio) [0x962a9480]
            162 __ZN10HALRunLoop9OwnThreadEPv + 160 (in CoreAudio)
[0x962a95f8]
              162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]


Process:        WindowServer [50]
Path:           /System/Library/Frameworks/
ApplicationServices.framework/Frameworks/CoreGraphics.framework/
Resources/WindowServer

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/
ApplicationServices.framework/Frameworks/CoreGraphics.framework/
Resources/WindowServer
    00014000        /System/Library/Extensions/ATIRadeonX2000GA.plugin/
Contents/MacOS/ATIRadeonX2000GA
    00500000        /System/Library/Frameworks/OpenGL.framework/
Resources/GLEngine.bundle/GLEngine
    0a000000        /System/Library/Extensions/
ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLDriver
    0c169000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib

    Thread id:      3644790
    User stack:
      162 start + 54 (in WindowServer) [0x1fbe]
        162 _main + 24 (in WindowServer) [0x1ff4]
          162 _CGXGetRootAdminCredentials + 0 (in CoreGraphics)
[0x93e8ed29]
            162 _CGXServerLoop + 161 (in CoreGraphics) [0x93f00c0a]
              159 _CGXRunOneServicesPass + 377 (in CoreGraphics)
[0x93ef587b]
                105 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
                52 _mach_msg_overwrite_trap + 10 (in libSystem.B.dylib)
[0x95eb3292]
                2 _CGXRunOneServerPass + 556 (in CoreGraphics)
[0x93ef9270]
                  2 _CGXPostPortData + 158 (in CoreGraphics) [0x93ef947a]
                    1 _connectionHandler + 329 (in CoreGraphics)
[0x93f0c00f]
                      1 _CGXServices_server + 119 (in CoreGraphics)
[0x93f0c2ed]
                        1 __XMoveWindowList + 216 (in CoreGraphics)
[0x93f80120]
                          1 _meshTranslate + 0 (in CoreGraphics)
[0x941df218]
                    1 _eventNotificationHandler + 106 (in CoreGraphics)
[0x93ef9501]
                      1 _CGXRunOneEventPass + 48 (in CoreGraphics)
[0x93ef6fd0]
                        1 _CGXGetNextEvent + 152 (in CoreGraphics)
[0x93ef70a3]
                          1 _CGXFilterEvent + 71 (in CoreGraphics)
[0x93ef7379]
                            1 _sHIDContinuation + 537 (in CoreGraphics)
[0x93ef75e1]
                              1 _CGXProcessHIDEvent + 157 (in
CoreGraphics) [0x93ef7688]
                                1 _CGXFilterEvent + 86 (in
CoreGraphics) [0x93ef7388]
                                  1 _addEventsToTap + 981 (in
CoreGraphics) [0x9417fc9c]
                                    1 _postAfterTapID + 266 (in
CoreGraphics) [0x9417f72a]
                                      1 _sPostContinuation + 3391 (in
CoreGraphics) [0x93ef87e2]
                                        1 _CGXPostEventByConnection +
400 (in CoreGraphics) [0x93ef8f58]
                                          1 _CGXFilterEvent + 86 (in
CoreGraphics) [0x93ef7388]
                                            1 _addEventsToTap + 981 (in
CoreGraphics) [0x9417fc9c]
                                              1 _postAfterTapID + 266
(in CoreGraphics) [0x9417f72a]
                                                1
_doPostBackgroundEvent + 338 (in CoreGraphics) [0x9417c1fb]
                                                  1
_postEventByConnection + 108 (in CoreGraphics) [0x93ef8cdc]
                                                    1
_CGXFilterEventToConnection + 155 (in CoreGraphics) [0x93f1e0a6]
                                                      1
_CGSEncodeEventRecord + 97 (in CoreGraphics) [0x943becd8]
                                                        1
_CGEventCreateDataWithOptions + 57 (in CoreGraphics) [0x943bd904]
                                                          1 _malloc +
55 (in libSystem.B.dylib) [0x95eb406c]
                                                            1
_malloc_zone_malloc + 81 (in libSystem.B.dylib) [0x95eb40d8]
                                                              1
_szone_malloc + 463 (in libSystem.B.dylib) [0x95eb42e8]
                                                                1 _mmap
+ 10 (in libSystem.B.dylib) [0x95ebcb02]
              3 _CGXRunOneServicesPass + 139 (in CoreGraphics)
[0x93ef578d]
                3 __CGXRunTimerPass + 407 (in CoreGraphics) [0x93ee39b4]
                  2 _CGXUpdateDisplay + 6477 (in CoreGraphics)
[0x93eed450]
                    2 _CGLayerComposite + 335 (in CoreGraphics)
[0x93f06c08]
                      2 _CGXGLAccelComposite + 102 (in CoreGraphics)
[0x93fef986]
                        1 __CGXGLCompositeLayers + 1290 (in
CoreGraphics) [0x93fef811]
                          1 _cgxcoreimage_render_image + 355 (in
libCGXCoreImage.A.dylib) [0xc16c15d]
                            1 -[CIContextImpl render:] + 264 (in
QuartzCore) [0x96ee1c22]
                              1 -[CIOpenGLContextImpl
renderWithBounds:matrix:function:info:] + 209 (in QuartzCore)
[0x96ee1cfb]
                                1 _renderImage + 109 (in QuartzCore)
[0x96f98bf2]
                                  1 _fe_image_render + 155 (in
QuartzCore) [0x96ee36a3]
                                    1 _fe_image_render_ + 213 (in
QuartzCore) [0x96e8a6ac]
                                      1 _fe_tree_render_image + 923 (in
QuartzCore) [0x96e8ae2b]
                                        1 _fe_tree_render_tree + 196
(in QuartzCore) [0x96e9bf5b]
                                          1 _fe_tree_render_ + 2226 (in
QuartzCore) [0x96e9cb8f]
                                            1 _fe_tree_render_ + 1704
(in QuartzCore) [0x96e9c985]
                                              1 _fe_tree_render_apply +
827 (in QuartzCore) [0x96e9d285]
                                                1
_fe_tree_create_texture + 1191 (in QuartzCore) [0x96e9db31]
                                                  1 _fe_texture_new +
463 (in QuartzCore) [0x96e9ed34]
                                                    1 _texture_retain +
674 (in QuartzCore) [0x96e9f16d]
                                                      1
_fe_tree_render_texture + 60 (in QuartzCore) [0x96ed1143]
                                                        1
_fe_tree_render_ + 3114 (in QuartzCore) [0x96e9cf07]
                                                          1
_fe_context_collect_ + 103 (in QuartzCore) [0x96eb7ce6]
                                                            1
_fe_context_update_buffers + 153 (in QuartzCore) [0x96eb8286]
                                                              1
_fe_release + 414 (in QuartzCore) [0x96e85e56]
                                                                1
_accel_buffer_last_unref + 56 (in QuartzCore) [0x96edb7c6]
                                                                  1
_fe_release + 414 (in QuartzCore) [0x96e85e56]
                                                                    1
_accel_buffer_finalize + 179 (in QuartzCore) [0x96eea8ea]
                                                                      1
_cglsDestroyPBuffer + 52 (in CoreGraphics) [0x93f43fec]

1 _IOServiceClose + 32 (in IOKit) [0x917642f5]
                                                                          1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                        1 __CGXGLCompositeLayer_ + 5517 (in
CoreGraphics) [0x93fee736]
                  1 _CGXPrepareGeometryChange + 26 (in CoreGraphics)
[0x93ef9a9f]
    Kernel stack:
      2 _PE_incoming_interrupt + 131 [0x44e416]
        2 _lapic_interrupt + 121 [0x1b16c0]
          2 _sync_iss_to_iks + 114 [0x1aa3ae]
      1 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        1 _mach_msg_overwrite_trap + 752 [0x1264fa]
          1 _ipc_kobject_server + 247 [0x12d4d6]
            1 _IOMapPages + 2392 [0x1893a8]
              1 _is_io_service_close + 72 [0x441364]
                1 com.apple.ATIRadeonX2000 (5.4.8) + 76025 [0x6cd8f9]
                  1 com.apple.ATIRadeonX2000 (5.4.8) + 318173 [0x708add]
                    1 com.apple.ATIRadeonX2000 (5.4.8) + 88495 [0x6d09af]
                      1 com.apple.ATIRadeonX2000 (5.4.8) + 314653
[0x707d1d]
                        1 com.apple.ATIRadeonX2000 (5.4.8) + 84696
[0x6cfad8]
                          1 com.apple.ATIRadeonX2000 (5.4.8) + 150281
[0x6dfb09]
                            1 _thread_block + 33 [0x136f20]
                              1 _thread_continue + 1180 [0x136cb3]
      1 _user_trap + 659 [0x1ab39c]
        1 _vm_fault + 3049 [0x1636ae]
          1 _vm_fault_page + 178 [0x160eb0]
            1 _lck_rw_sleep + 92 [0x13115c]
              1 _thread_block + 33 [0x136f20]
                1 _thread_continue + 1180 [0x136cb3]
      1 _unix_syscall + 290 [0x3e3965]
        1 _lo_allintrs + 641 [0x1a1a21]
          1 _i386_astintr + 47 [0x1aa272]
            1 _ast_taken + 185 [0x129434]
              1 _thread_continue + 1180 [0x136cb3]

    Thread id:      3953208
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3952e40
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _eventThread + 499 (in CoreGraphics) [0x93ee27a9]
            162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      39513c8
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3953998
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]


Process:        autofsd [37]
Path:           /usr/libexec/autofsd

    ADDRESS         BINARY
    00001000        /usr/libexec/autofsd

    Thread id:      34af048
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        blued [44]
Path:           /usr/sbin/blued

    ADDRESS         BINARY
    00001000        /usr/sbin/blued
    0003e000        /System/Library/PrivateFrameworks/
BezelServices.framework/Versions/A/BezelServices
    000c4000        /System/Library/Frameworks/IOBluetooth.framework/
Versions/A/IOBluetooth
    00188000        /System/Library/PrivateFrameworks/
Apple80211.framework/Versions/A/Apple80211

    Thread id:      3647c80
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      374f998
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]


Process:        configd [34]
Path:           /usr/sbin/configd

    ADDRESS         BINARY
    00001000        /usr/sbin/configd
    0003e000        /System/Library/SystemConfiguration/
PrinterNotifications.bundle/Contents/MacOS/PrinterNotifications
    00043000        /System/Library/SystemConfiguration/
PowerManagement.bundle/Contents/MacOS/PowerManagement
    00055000        /System/Library/SystemConfiguration/
DynamicPowerStep.bundle/Contents/MacOS/DynamicPowerStep
    0005a000        /System/Library/SystemConfiguration/
Bluetooth.bundle/Contents/MacOS/Bluetooth
    00060000        /System/Library/SystemConfiguration/
BatteryUpdater.bundle/Contents/MacOS/BatteryUpdater
    00065000        /System/Library/SystemConfiguration/
Apple80211Monitor.bundle/Contents/MacOS/Apple80211Monitor
    0007d000        /System/Library/SystemConfiguration/
EAPOLController.bundle/EAPOLController
    00086000        /System/Library/SystemConfiguration/
IP6Configuration.bundle/Contents/MacOS/IP6Configuration
    00098000        /System/Library/SystemConfiguration/
IPConfiguration.bundle/Contents/MacOS/IPConfiguration
    000c4000        /System/Library/PrivateFrameworks/
Apple80211.framework/Versions/A/Apple80211
    00200000        /System/Library/SystemConfiguration/
PPPController.bundle/Contents/MacOS/PPPController

    Thread id:      34afba0
    User stack:
      162 start + 54 (in configd) [0x220e]
        162 _main + 2394 (in configd) [0x2c3f]
          162 _server_loop + 70 (in configd) [0x39a6]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      2d82b58
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _plugin_exec + 1562 (in configd) [0x4c5b]
            162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3648048
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3648410
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]


Process:        coreaudiod [98]
Path:           /usr/sbin/coreaudiod

    ADDRESS         BINARY
    00001000        /usr/sbin/coreaudiod
    00031000        /System/Library/Extensions/AudioIPCDriver.kext/
Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    0003a000        /System/Library/Extensions/AppleHDA.kext/Contents/
PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
    70000000        /System/Library/Components/CoreAudio.component/
Contents/MacOS/CoreAudio

    Thread id:      34af410
    User stack:
      162 ??? [0x27c2]
        162 ??? [0x97b7]
          162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3be34f0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9CAPThread5EntryEPS_ + 96 (in CoreAudio) [0x962a9480]
            162 __ZN10HALRunLoop9OwnThreadEPv + 160 (in CoreAudio)
[0x962a95f8]
              162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]


Process:        coreservicesd [43]
Path:           /System/Library/CoreServices/coreservicesd

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/coreservicesd

    Thread id:      34abb58
    User stack:
      162 ??? [0x1f6e]
        162 __CoreServicesServerMain + 795 (in CarbonCore) [0x966c47cb]
          162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            161 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
            1 _CFRunLoopRunSpecific + 3896 (in CoreFoundation)
[0x91e426b8]
              1 ___CFMachPortPerform + 117 (in CoreFoundation)
[0x91e1dff5]
                1 __Z15_serverCallbackP12__CFMachPortPvlS1_ + 361 (in
CarbonCore) [0x966c4c2b]
                  1
__ZN15SCServerSession13handleMessageEP17mach_msg_header_t + 472 (in
CarbonCore) [0x966c5e00]
                    1
__Z15scHandleMessageP17mach_msg_header_tPFiS0_S0_EPmPh + 116 (in
CarbonCore) [0x966c4cd2]
                      1 _ISServer_server + 117 (in OSServices)
[0x91bb85f5]
                        1 __XReleaseSharedStorage_rpc + 95 (in
OSServices) [0x91bba161]
                          1 _Server_ReleaseSharedStorage_rpc + 64 (in
OSServices) [0x91bba1ce]
                            1 __ISReleaseStorageRef + 60 (in
OSServices) [0x91b9715a]
                              1 __ISReleaseStorageRefInternal + 125 (in
OSServices) [0x91b971ff]
                                1 __ISNotifyStorageEntryIsInvalid + 32
(in OSServices) [0x91b99c60]
                                  1
__Z31ISBundleIconsStorageInvalidatorm + 105 (in OSServices) [0x91ba05e3]
                                    1
__ZN14CArrayIterator8FindNextEPPvPm + 26 (in OSServices) [0x91b95f08]
                                      1 _CCIteratorFindNext + 90 (in
OSServices) [0x91b95e76]
                                        1
__ZNK12DynamicArray12getArraySizeEv + 6 (in OSServices) [0x91b950d4]
    Kernel stack:
      1 _user_trap + 659 [0x1ab39c]
        1 _vm_fault + 3049 [0x1636ae]
          1 _vm_fault_page + 178 [0x160eb0]
            1 _lck_rw_sleep + 92 [0x13115c]
              1 _thread_block + 33 [0x136f20]
                1 _thread_continue + 1180 [0x136cb3]

    Thread id:      3647128
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      3fb7ba0
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3fb77d8
    User stack:
      162 ___read + 10 (in libSystem.B.dylib) [0x95ed6f9a]
    Kernel stack:
      162 _unix_syscall + 572 [0x3e3a7f]
        162 _read_nocancel + 150 [0x39188d]
          162 _nosys + 593 [0x39164d]
            162 _release_pathbuff + 3077 [0x20172b]
              162 _tsleep + 105 [0x386498]
                162 _uiomove + 1030 [0x3861b0]
                  162 _thread_block + 33 [0x136f20]
                    162 _thread_continue + 1180 [0x136cb3]


Process:        diskarbitrationd [31]
Path:           /usr/sbin/diskarbitrationd

    ADDRESS         BINARY
    00001000        /usr/sbin/diskarbitrationd

    Thread id:      2deb790
    User stack:
      162 ??? [0x1a5a]
        162 ??? [0x8a7a]
          162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        distnoted [40]
Path:           /usr/sbin/distnoted

    ADDRESS         BINARY
    00001000        /usr/sbin/distnoted

    Thread id:      2debb58
    User stack:
      162 ??? [0x1ef6]
        162 ??? [0x1f95]
          162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        dynamic_pager [29]
Path:           /sbin/dynamic_pager

    ADDRESS         BINARY

    Thread id:      2debf20
    User stack:
      162 ??? [0x178a]
        162 ??? [0x2a11]
          162 ??? [0x2224]
            162 ??? [0x1efd]
              162 ??? [0x95eb3286]


Process:        fseventsd [27]
Path:           /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/CarbonCore.framework/Versions/A/Support/fseventsd

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/CarbonCore.framework/Versions/A/Support/fseventsd

    Thread id:      2dec6b0
    User stack:
      162 ??? [0x255e]
        162 ??? [0x2f88]
          162 _mach_msg_overwrite_trap + 10 (in libSystem.B.dylib)
[0x95eb3292]
    Kernel stack:
      162 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        162 _mach_msg_overwrite_trap + 3808 [0x1270ea]
          162 _ipc_mqueue_receive + 750 [0x121292]
            162 _thread_block + 33 [0x136f20]
              162 _thread_continue + 1180 [0x136cb3]

    Thread id:      34ae128
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0xbbd5]
            162 ??? [0xb929]
              162 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]

    Thread id:      34ae4f0
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      34add60
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___read + 10 (in libSystem.B.dylib) [0x95ed6f9a]
    Kernel stack:
      162 _unix_syscall + 572 [0x3e3a7f]
        162 _read_nocancel + 150 [0x39188d]
          162 _nosys + 593 [0x39164d]
            162 _release_pathbuff + 3077 [0x20172b]
              162 _tsleep + 105 [0x386498]
                162 _uiomove + 1030 [0x3861b0]
                  162 _thread_block + 33 [0x136f20]
                    162 _thread_continue + 1180 [0x136cb3]

    Thread id:      34ad998
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0x9830]
            162 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]

    Thread id:      36452e8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      2d86048
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3952a78
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      34af7d8
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3be12e8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0x9830]
            162 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]

    Thread id:      48d0128
    User stack:
      162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3fb64f0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0x9830]
            162 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]

    Thread id:      48cf5d0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0x9830]
            162 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]


Process:        hidd [26]
Path:           /usr/libexec/hidd

    ADDRESS         BINARY
    00001000        /usr/libexec/hidd

    Thread id:      2deca78
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      39548b8
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        iChatAgent [124]
Path:           /System/Library/Frameworks/InstantMessage.framework/
iChatAgent.app/Contents/MacOS/iChatAgent

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/InstantMessage.framework/
iChatAgent.app/Contents/MacOS/iChatAgent
    00211000        /usr/lib/libexpat.1.dylib

    Thread id:      426f128
    User stack:
      162 ??? [0x21ca]
        162 ??? [0xba59f]
          162 -[NSRunLoop(NSRunLoop) run] + 84 (in Foundation)
[0x9642e4f4]
            162 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213 (in
Foundation) [0x964223d5]
              162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      426e998
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 -[IMRemoteObjectBroadcaster _workerThread] + 246 (in
IMUtils) [0x94509db7]
                162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                  162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]


Process:        iTunesHelper [118]
Path:           /Applications/iTunes.app/Contents/Resources/
iTunesHelper.app/Contents/MacOS/iTunesHelper

    ADDRESS         BINARY
    00001000        /Applications/iTunes.app/Contents/Resources/
iTunesHelper.app/Contents/MacOS/iTunesHelper
    00063000        /System/Library/PrivateFrameworks/
MobileDevice.framework/MobileDevice

    Thread id:      3fb42e8
    User stack:
      162 ??? [0x1c4d]
        162 ??? [0x1d20]
          162 ??? [0x29e6]
            162 _RunApplicationEventLoop + 207 (in HIToolbox)
[0x96bff2b3]
              162 __AcquireNextEvent + 58 (in HIToolbox) [0x96c00b56]
                162 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                  162 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      39522e8
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]


Process:        kextd [10]
Path:           /usr/libexec/kextd

    ADDRESS         BINARY
    00001000        /usr/libexec/kextd

    Thread id:      2c195d0
    User stack:
      115 ??? [0x1b4e]
        115 ??? [0x356b]
          114 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
            112 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
            1 _CFRunLoopRunSpecific + 2014 (in CoreFoundation)
[0x91e41f5e]
              1 ___CFRunLoopModeFindSourceForMachPort + 89 (in
CoreFoundation) [0x91e3d8f9]
                1 ___CFRunLoopFindSource + 48 (in CoreFoundation)
[0x91e3f390]
            1 _CFRunLoopRunSpecific + 3753 (in CoreFoundation)
[0x91e42629]
              1 _CFRunLoopTimerInvalidate + 246 (in CoreFoundation)
[0x91e41666]
                1 _CFRunLoopCopyAllModes + 125 (in CoreFoundation)
[0x91e3e0ed]
                  1 _CFSetApplyFunction + 140 (in CoreFoundation)
[0x91e46f8c]
                    1 _CFArrayAppendValue + 109 (in CoreFoundation)
[0x91dd4bed]
                      1 _CFRetain + 36 (in CoreFoundation) [0x91e44084]
          1 ??? [0xffff0269]
      47 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
    Kernel stack:
      3 _user_trap + 659 [0x1ab39c]
        3 _vm_fault + 3049 [0x1636ae]
          3 _vm_fault_page + 178 [0x160eb0]
            3 _lck_rw_sleep + 92 [0x13115c]
              3 _thread_block + 33 [0x136f20]
                3 _thread_continue + 1180 [0x136cb3]

    Thread id:      2d84208
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
    Kernel stack:
      162 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        162 _mach_msg_overwrite_trap + 752 [0x1264fa]
          162 _ipc_kobject_server + 247 [0x12d4d6]
            162 _host_priv_server_routine + 3711 [0x1486f9]
              162 _kmod_control + 243 [0x190f7f]
                162 _thread_sleep_mutex + 71 [0x137413]
                  162 _thread_continue + 1180 [0x136cb3]


Process:        launchd [1]
Path:           /sbin/launchd

    ADDRESS         BINARY
    00001000        /sbin/launchd

    Thread id:      2d10a78
    User stack:
      162 ??? [0x1eae]
        162 ??? [0x6efc]
          162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
    Kernel stack:
      162 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        162 _mach_msg_overwrite_trap + 3808 [0x1270ea]
          162 _ipc_mqueue_receive + 750 [0x121292]
            162 _thread_block + 33 [0x136f20]
              162 _thread_continue + 1180 [0x136cb3]

    Thread id:      2d823c8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]

    Thread id:      2d867d8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        launchd [83]
Path:           /sbin/launchd

    ADDRESS         BINARY
    00001000        /sbin/launchd

    Thread id:      36465d0
    User stack:
      162 ??? [0x1eae]
        162 ??? [0x6efc]
          153 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
          6 ??? [0x8e65]
            6 __vprocmgr_log_forward + 38 (in libSystem.B.dylib)
[0x95fdb96e]
              6 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
          2 ??? [0x8ff6]
            2 ??? [0x21ef]
              2 ??? [0x2113]
                2 ??? [0xa0e1]
                  1 ??? [0x126a3]
                    1 ___getuid + 10 (in libSystem.B.dylib) [0x95ebe81a]
                  1 ??? [0x130b9]
                    1 _malloc + 55 (in libSystem.B.dylib) [0x95eb406c]
                      1 _malloc_zone_malloc + 81 (in libSystem.B.dylib)
[0x95eb40d8]
                        1 _szone_malloc + 463 (in libSystem.B.dylib)
[0x95eb42e8]
                          1 _mmap + 10 (in libSystem.B.dylib)
[0x95ebcb02]
          1 ??? [0x8e44]
            1 ??? [0x8572]
              1 _mig_allocate + 56 (in libSystem.B.dylib) [0x95f5a743]
                1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
    Kernel stack:
      154 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        153 _mach_msg_overwrite_trap + 3808 [0x1270ea]
          153 _ipc_mqueue_receive + 750 [0x121292]
            153 _thread_block + 33 [0x136f20]
              153 _thread_continue + 1180 [0x136cb3]
        1 _mach_msg_overwrite_trap + 197 [0x1262cf]
          1 _lo_allintrs + 641 [0x1a1a21]
            1 _i386_astintr + 47 [0x1aa272]
              1 _ast_taken + 185 [0x129434]
                1 _thread_continue + 1180 [0x136cb3]
      1 _i386_astintr + 47 [0x1aa272]
        1 _ast_taken + 185 [0x129434]
          1 _thread_continue + 1180 [0x136cb3]
      1 _unix_syscall + 572 [0x3e3a7f]
        1 _mmap + 1738 [0x37a5d9]
          1 _vm_map_enter_mem_object + 2035 [0x1727db]
            1 _vm_map_enter + 3014 [0x16f4f6]
              1 _vm_map_entry_insert + 88 [0x165e8e]
                1 _vm_map_create + 316 [0x165d37]
                  1 _zalloc + 25 [0x143d52]
                    1 _lck_mtx_lock + 9 [0x19d7a9]

    Thread id:      2dec2e8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        146 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]
        16 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          16 ??? [0x7983]
            16 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      374d3c8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]


Process:        loginwindow [23]
Path:           /System/Library/CoreServices/loginwindow.app/Contents/
MacOS/loginwindow

    ADDRESS         BINARY
    00001000        /System/Library/CoreServices/loginwindow.app/
Contents/MacOS/loginwindow
    00076000        /System/Library/PrivateFrameworks/Admin.framework/
Versions/A/Admin
    000c0000        /System/Library/PrivateFrameworks/
URLMount.framework/Versions/A/URLMount
    000ec000        /System/Library/LoginPlugins/
FSDisconnect.loginPlugin/Contents/MacOS/FSDisconnect
    0015e000        /System/Library/PrivateFrameworks/
DiskImages.framework/Versions/A/DiskImages
    002bc000        /System/Library/PrivateFrameworks/
MediaKit.framework/Versions/A/MediaKit
    00303000        /System/Library/Frameworks/DiscRecording.framework/
Versions/A/DiscRecording
    00437000        /usr/lib/libcurl.4.dylib
    0046c000        /System/Library/LoginPlugins/
DisplayServices.loginPlugin/Contents/MacOS/DisplayServices
    0048d000        /System/Library/LoginPlugins/
BezelServices.loginPlugin/Contents/MacOS/BezelServices
    004bd000        /System/Library/PrivateFrameworks/
MachineSettings.framework/Versions/A/MachineSettings
    004ce000        /System/Library/Extensions/IOHIDFamily.kext/
Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib
    00708000        /System/Library/Extensions/AudioIPCDriver.kext/
Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    00711000        /System/Library/Extensions/AppleHDA.kext/Contents/
PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0bba8000        /System/Library/CoreServices/RawCamera.bundle/
Contents/MacOS/RawCamera

    Thread id:      2ded208
    User stack:
      162 ??? [0x5b02]
        162 ??? [0x1b8e8]
          143 -[NSApplication run] + 795 (in AppKit) [0x94a05f9f]
            143 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
              143 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                143 _BlockUntilNextEventMatchingListInMode + 106 (in
HIToolbox) [0x96ba1f39]
                  143 _ReceiveNextEventCommon + 374 (in HIToolbox)
[0x96ba20c5]
                    143 _RunCurrentEventLoopInMode + 283 (in HIToolbox)
[0x96ba22ac]
                      143 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                        143 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]
          18 -[NSApplication run] + 867 (in AppKit) [0x94a05fe7]
            18 ??? [0x92e5]
              18 -[NSApplication sendEvent:] + 2939 (in AppKit)
[0x94aa86a5]
                18 -[NSWindow sendEvent:] + 5381 (in AppKit) [0x94adbaf7]
                  16 -[NSControl mouseDown:] + 888 (in AppKit)
[0x94add3b8]
                    16 -[NSButtonCell
trackMouse:inRect:ofView:untilMouseUp:] + 541 (in AppKit) [0x94addafe]
                      12 -[NSCell
trackMouse:inRect:ofView:untilMouseUp:] + 1827 (in AppKit) [0x94ade2ab]
                        12 -[NSCell _sendActionFrom:] + 169 (in AppKit)
[0x94adec52]
                          12 -[NSControl sendAction:to:] + 108 (in
AppKit) [0x94adedcc]
                            12 -[NSApplication sendAction:to:from:] +
112 (in AppKit) [0x94adee8f]
                              6 ??? [0x23ae9]
                                6 -[NSApplication
_commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:\
contextInfo
:] + 1033 (in AppKit) [0x94b0cfd1]
                                  6 -[NSApplication
_orderFrontModalWindow:relativeToWindow:] + 785 (in AppKit) [0x94b0d567]
                                    5 -[NSWindow
_reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] +
1566 (in AppKit) [0x94acb6d7]
                                      5 -[NSWindow(NSSheets)
_orderFrontRelativeToWindow:] + 206 (in AppKit) [0x94c6f47c]
                                        4 -[NSMoveHelper(NSSheets)
_moveParent:andOpenSheet:] + 1764 (in AppKit) [0x94c6fb8d]
                                          2 -[NSMoveHelper
_doAnimation] + 980 (in AppKit) [0x94c710ce]
                                            2 _CFRunLoopRunInMode + 88
(in CoreFoundation) [0x91e42aa8]
                                              1 _CFRunLoopRunSpecific +
4469 (in CoreFoundation) [0x91e428f5]
                                                1
__NSMoveHelperTimerCallBack + 525 (in AppKit) [0x94b142a2]
                                                  1 -
[NSMoveHelper(NSSheets) _positionWindow] + 525 (in AppKit) [0x94c71dda]
                                                    1 -[NSWindow
setFrameOrigin:] + 462 (in AppKit) [0x94ac5c1b]
                                                      1 -[NSWindow
_setFrameCommon:display:stashSize:] + 1569 (in AppKit) [0x94ac23ef]
                                                        1 -[NSWindow
_oldPlaceWindow:] + 1246 (in AppKit) [0x94ac2b96]
                                                          1
__NXMoveWindow + 110 (in AppKit) [0x94bc684e]
                                                            1
_CGSMoveWindowWithGroup + 543 (in CoreGraphics) [0x93e6f580]
                                                              1
_CGSMoveWindowList + 663 (in CoreGraphics) [0x93e6f83c]
                                                                1
_mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                              1 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                                          1 -[NSMoveHelper
_doAnimation] + 72 (in AppKit) [0x94c70d42]
                                            1 -[NSUIHeartBeat
disableHeartBeating] + 134 (in AppKit) [0x94c71240]
                                              1 ___semwait_signal + 10
(in libSystem.B.dylib) [0x95eba46e]
                                          1 -[NSMoveHelper
_doAnimation] + 650 (in AppKit) [0x94c70f84]
                                            1
_CGSCreateMetalSheetWindowAnimationWithParentAndShift + 753 (in
CoreGraphics) [0x943b6f87]
                                              1 _CGSNewCIFilterByName +
142 (in CoreGraphics) [0x93e8771d]
                                                1
_CFPropertyListCreateXMLData + 70 (in CoreFoundation) [0x91e37216]
                                                  1
__CFGenerateXMLPropertyListToData + 111 (in CoreFoundation) [0x91e3714f]
                                                    1 __CFAppendXML0 +
251 (in CoreFoundation) [0x91e365eb]
                                                      1
___CFStrConvertBytesToUnicode + 51 (in CoreFoundation) [0x91e72d13]
                                        1 -[NSWindow(NSSheets)
_topmostDocWrapsCarbonWindow] + 0 (in AppKit) [0x94f5811a]
                                    1 -[NSWindow
_reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] +
1354 (in AppKit) [0x94acb603]
                                      1 -[NSWindow displayIfNeeded] +
189 (in AppKit) [0x94a0fa29]
                                        1 -[NSView displayIfNeeded] +
933 (in AppKit) [0x94a0fe7b]
                                          1 -[NSView
_displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] +
3090 (in AppKit) [0x94acf4ab]
                                            1 -[NSThemeFrame
_recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForV\
iew:topView
:] + 306 (in AppKit) [0x94ad2987]
                                              1 -[NSView
_recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForV\
iew:topView
:] + 759 (in AppKit) [0x94ad3045]
                                                1 -[NSView
_recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969 (in AppKit)
[0x94ad4a86]
                                                  1 -[NSView
_recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969 (in AppKit)
[0x94ad4a86]
                                                    1 -[NSView
_recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050 (in AppKit)
[0x94ad46ef]
                                                      1 -[NSView
_drawRect:clip:] + 3853 (in AppKit) [0x94ad5bf8]
                                                        1 -[NSControl
drawRect:] + 378 (in AppKit) [0x94a41e6f]
                                                          1 -
[NSTextFieldCell drawWithFrame:inView:] + 818 (in AppKit) [0x94a4859b]
                                                            1 -
[NSTextFieldCell drawInteriorWithFrame:inView:] + 747 (in AppKit)
[0x94a489ef]
                                                              1
__NSDrawTextCell + 2074 (in AppKit) [0x94a3e72d]
                                                                1
__NSStringDrawingCore + 1694 (in AppKit) [0x94a3f1f7]
                                                                  1 +
[NSStringDrawingTextStorage
_fastDrawString:attributes:length:inRect:graphicsContext:baselineRendering:usesF\
ontLeading:usesScreenFont:typesetterBehavior:paragraphStyle:lineBreakMode:boundi\
ngRect:padding:scrollable
:] + 1736 (in AppKit) [0x94ab0beb]
                                                                    1 -
[__NSSharedFontInstanceInfo _defaultLineHeight:] + 40 (in AppKit)
[0x94a2f300]
                                                                      1
___NSFontInstanceInfoInitializeMetricsInfo + 753 (in AppKit)
[0x94a2f60a]

1 _CTFontGetBoundingRectsForGlyphs + 164 (in CoreText) [0x9529d46e]
                                                                          1
   __ZNK5TFont25GetBoundingBoxesForGlyphsEPKtP6CGRectlj + 253 (in
CoreText) [0x9529d5b7]
                                                                            1
   _CGFontGetGlyphBBoxes + 128 (in CoreGraphics) [0x93dc5076]
                                                                              1
   _CGFontGetGlyphBBoxesForStyle + 62 (in CoreGraphics) [0x93dc50bc]
                                                                                1
   _get_glyph_bboxes + 72 (in libCGATS.A.dylib) [0x95291208]
                                                                                 
1
   _ats_font_get_glyph_bboxes + 353 (in libCGATS.A.dylib) [0x9528eec1]
                                                                                   
1
   _GCGetGlyphDeviceMetrics + 117 (in ATS) [0x9494ad53]
                                                                                     
1
   __eGCGetGlyphDeviceMetrics + 447 (in ATS) [0x9494af2b]
                                                                                       
1
   __Z17OldGlyphsCacheRunP7TStrikeimPKtPFvmS2_mPKPhPKvEPv + 448 (in
ATS) [0x94946b32]
                                                                                         
1
   __eGetGlyphAddresses + 485 (in ATS) [0x94946e33]
                                                                                           
1
   __Z17GenerateGlyphDataP11GlyphVectorPtmPm + 865 (in ATS) [0x9494763b]
                                                                                             
1
   __eOFAGetGlyphData + 536 (in ATS) [0x94947fd2]
                                                                                               
1
   _SendOFAStrikeMessage + 379 (in ATS) [0x9494560b]
                                                                                                 
1
   _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                              4 ??? [0x23b43]
                                4 -[NSApplication endSheet:returnCode:]
+ 288 (in AppKit) [0x94b20b9b]
                                  4 ??? [0x23bb8]
                                    4 -[NSWindow orderOut:] + 50 (in
AppKit) [0x94adf809]
                                      4 -[NSWindow
orderWindow:relativeTo:] + 105 (in AppKit) [0x94acb05c]
                                        4 -[NSWindow
_reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] +
2081 (in AppKit) [0x94acb8da]
                                          4 -[NSWindow(NSSheets)
_orderOutRelativeToWindow:] + 123 (in AppKit) [0x94c72fcc]
                                            4 -[NSMoveHelper(NSSheets)
_closeSheet:andMoveParent:] + 457 (in AppKit) [0x94c73209]
                                              3 -[NSMoveHelper
_doAnimation] + 980 (in AppKit) [0x94c710ce]
                                                3 _CFRunLoopRunInMode +
88 (in CoreFoundation) [0x91e42aa8]
                                                  2 _mach_msg_trap + 10
(in libSystem.B.dylib) [0x95eb3286]
                                                  1
_CFRunLoopRunSpecific + 4469 (in CoreFoundation) [0x91e428f5]
                                                    1
__NSMoveHelperTimerCallBack + 639 (in AppKit) [0x94b14314]
                                                      1
_CGSReenableUpdate + 32 (in CoreGraphics) [0x93e2f588]
                                                        1
_CGSReenableUpdateForConnections + 390 (in CoreGraphics) [0x93e2f710]
                                                          1
_mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
                                              1 -[NSMoveHelper
_doAnimation] + 72 (in AppKit) [0x94c70d42]
                                                1 -[NSUIHeartBeat
disableHeartBeating] + 134 (in AppKit) [0x94c71240]
                                                  1 ___semwait_signal +
10 (in libSystem.B.dylib) [0x95eba46e]
                              1 ??? [0x238b8]
                                1 -[NSImage lockFocus] + 288 (in
AppKit) [0x94a6695d]
                                  1 -[NSCachedImageRep
initWithSize:depth:separate:alpha:] + 79 (in AppKit) [0x94a66ae4]
                                    1 -[NSCachedImageRep
_initWithSize:depth:separate:alpha:allowDeep:] + 323 (in AppKit)
[0x94a66c2d]
                                      1 __NXAllocateImageCache + 1768
(in AppKit) [0x94a6755c]
                                        1 _NewCacheWindowInfo + 269 (in
AppKit) [0x94a67b4d]
                                          1 -[NSWindow
_initFromGlobalWindow:inRect:styleMask:] + 305 (in AppKit) [0x94a682e0]
                                            1 -[NSWindow
initWithContentRect:styleMask:backing:defer:] + 71 (in AppKit)
[0x949e13ca]
                                              1 -[NSWindow
_initContent:styleMask:backing:defer:contentView:] + 1596 (in AppKit)
[0x949e1a0f]
                                                1 _objc_msgSend + 102
(in libobjc.A.dylib) [0x9443c6d6]
                                                  1
__class_getMethodNoSuper + 63 (in libobjc.A.dylib) [0x944361cb]
                              1 ??? [0x239fc]
                                1 -[NSImage
bestRepresentationForDevice:] + 0 (in AppKit) [0x94ca667a]
                      4 -[NSCell
trackMouse:inRect:ofView:untilMouseUp:] + 1179 (in AppKit) [0x94ade023]
                        4 -[NSWindow nextEventMatchingMask:] + 102 (in
AppKit) [0x94ade837]
                          4 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
                            4 __DPSNextEvent + 657 (in AppKit)
[0x94a0d6d5]
                              4 _BlockUntilNextEventMatchingListInMode
+ 106 (in HIToolbox) [0x96ba1f39]
                                4 _ReceiveNextEventCommon + 374 (in
HIToolbox) [0x96ba20c5]
                                  4 _RunCurrentEventLoopInMode + 283
(in HIToolbox) [0x96ba22ac]
                                    4 _CFRunLoopRunInMode + 88 (in
CoreFoundation) [0x91e42aa8]
                                      4 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
                  1 -[NSTableView mouseDown:] + 3575 (in AppKit)
[0x94b23f1c]
                    1 -[NSMutableIndexSet removeIndexes:] + 0 (in
Foundation) [0x9644ec90]
                  1 -[NSTableView mouseDown:] + 6356 (in AppKit)
[0x94b249f9]
                    1 -[NSApplication
nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit)
[0x94a0cf88]
                      1 __DPSNextEvent + 657 (in AppKit) [0x94a0d6d5]
                        1 _BlockUntilNextEventMatchingListInMode + 106
(in HIToolbox) [0x96ba1f39]
                          1 _ReceiveNextEventCommon + 374 (in
HIToolbox) [0x96ba20c5]
                            1 _RunCurrentEventLoopInMode + 283 (in
HIToolbox) [0x96ba22ac]
                              1 _CFRunLoopRunInMode + 88 (in
CoreFoundation) [0x91e42aa8]
                                1 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
          1 -[NSApplication run] + 930 (in AppKit) [0x94a06026]
            1 _NSPopAutoreleasePool + 431 (in Foundation) [0x963e944f]
              1 -[NSImage dealloc] + 133 (in AppKit) [0x94a6e2dc]
                1 -[NSImage _freeRepresentation:] + 328 (in AppKit)
[0x94a6e4d5]
                  1 -[NSIconRefBitmapImageRep dealloc] + 36 (in AppKit)
[0x94ae1b4d]
                    1 _ReleaseIconRef + 50 (in LaunchServices)
[0x9631ee04]
                      1 __Z22ReleaseIconRefInternalP13OpaqueIconRef +
50 (in LaunchServices) [0x9631ee64]
                        1 __ZN13CIconRefEntry6UnloadEv + 26 (in
LaunchServices) [0x963281e2]
                          1
__ZN13CIconRefEntry13SetImageLayerEP16OpaqueISImageRef + 25 (in
LaunchServices) [0x9631ccdb]
                            1 __ISReleaseImageRef + 43 (in OSServices)
[0x91b9701b]
                              1
__Z25ISReleaseImageRefInternalP16OpaqueISImageRef + 68 (in OSServices)
[0x91b9707a]
                                1 __ISReleaseStorageRef + 60 (in
OSServices) [0x91b9715a]
                                  1 __ISReleaseStorageRefInternal + 69
(in OSServices) [0x91b971c7]
                                    1
__ZN29CLocalRefToSharedStorageEntry13UnloadPrivateEh + 152 (in
OSServices) [0x91b99a9e]
                                      1 _mach_msg_trap + 10 (in
libSystem.B.dylib) [0x95eb3286]
    Kernel stack:
      5 _user_trap + 659 [0x1ab39c]
        5 _vm_fault + 3049 [0x1636ae]
          5 _vm_fault_page + 178 [0x160eb0]
            5 _lck_rw_sleep + 92 [0x13115c]
              5 _thread_block + 33 [0x136f20]
                5 _thread_continue + 1180 [0x136cb3]
      2 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        2 _mach_msg_overwrite_trap + 3808 [0x1270ea]
          2 _ipc_mqueue_receive + 750 [0x121292]
            2 _thread_block + 33 [0x136f20]
              2 _thread_continue + 1180 [0x136cb3]

    Thread id:      34ab790
    User stack:
      162 _mach_msg_overwrite_trap + 10 (in libSystem.B.dylib)
[0x95eb3292]

    Thread id:      3fb6128
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 __ZN9CAPThread5EntryEPS_ + 96 (in CoreAudio) [0x962a9480]
            162 __ZN10HALRunLoop9OwnThreadEPv + 160 (in CoreAudio)
[0x962a95f8]
              162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      426c000
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              87 -[NSUIHeartBeat _heartBeatThread:] + 753 (in AppKit)
[0x94a736e8]
                87 -[NSConditionLock lockWhenCondition:] + 69 (in
Foundation) [0x96433b35]
                  87 -[NSConditionLock lockWhenCondition:beforeDate:] +
144 (in Foundation) [0x96433bd0]
                    87 -[NSCondition waitUntilDate:] + 236 (in
Foundation) [0x96433dbc]
                      87 _semaphore_timedwait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32e6]
              74 -[NSUIHeartBeat _heartBeatThread:] + 2042 (in AppKit)
[0x94a73bf1]
                74 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]
              1 -[NSUIHeartBeat _heartBeatThread:] + 1011 (in AppKit)
[0x94a737ea]
                1 -[NSWindow(NSWindow_Theme) heartBeat:] + 293 (in
AppKit) [0x94bc0ca8]
                  1 -[NSButtonCell(NSDefaultButtonIndicatorPrivate)
heartBeat:] + 2179 (in AppKit) [0x94bc157c]
                    1 -[NSView _lightWeightRecursiveDisplayInRect:] +
644 (in AppKit) [0x94bc1a68]
                      1 _CFArrayApplyFunction + 198 (in CoreFoundation)
[0x91dd1676]
                        1 __lightWeightRecursiveDisplayInRect2 + 335
(in AppKit) [0x94bc1bec]
                          1 -[NSView
_lightWeightRecursiveDisplayInRect:] + 644 (in AppKit) [0x94bc1a68]
                            1 _CFArrayApplyFunction + 198 (in
CoreFoundation) [0x91dd1676]
                              1 __lightWeightRecursiveDisplayInRect2 +
335 (in AppKit) [0x94bc1bec]
                                1 -[NSView
_lightWeightRecursiveDisplayInRect:] + 577 (in AppKit) [0x94bc1a25]
                                  1 -[NSView _drawRect:clip:] + 3853
(in AppKit) [0x94ad5bf8]
                                    1 -[NSControl drawRect:] + 378 (in
AppKit) [0x94a41e6f]
                                      1 -[NSButtonCell
drawWithFrame:inView:] + 232 (in AppKit) [0x94a5749f]
                                        1 -[NSButtonCell
drawBezelWithFrame:inView:] + 152 (in AppKit) [0x94a57728]
                                          1 -[NSButtonCell
_coreUIDrawBezelWithFrame:inView:] + 362 (in AppKit) [0x94a57c84]
                                            1
__ZN11CUIRenderer4DrawE6CGRectP9CGContextPK14__CFDictionaryPS5_ + 3122
(in CoreUI) [0x907afbb2]
                                              1
__ZN11CUIRenderer14DrawPushButtonEPK10CUIContext + 3745 (in CoreUI)
[0x907a615d]
                                                1 _CGContextDrawImages
+ 297 (in CoreGraphics) [0x93dd50dd]
                                                  1 _ripc_DrawImages +
9522 (in libRIP.A.dylib) [0x90ca6cd9]
                                                    1 _ripc_RenderImage
+ 273 (in libRIP.A.dylib) [0x90c9aa18]
                                                      1 _ripl_BltImage
+ 1307 (in libRIP.A.dylib) [0x90cb09a3]
                                                        1 _ripl_Mark +
38 (in libRIP.A.dylib) [0x90cae39e]
                                                          1
_argb32_image + 390 (in CoreGraphics) [0x93db91e6]
                                                            1
_argb32_sample_argb32 + 1029 (in CoreGraphics) [0x93e533a5]
    Kernel stack:
      1 _PE_incoming_interrupt + 131 [0x44e416]
        1 _lapic_interrupt + 121 [0x1b16c0]
          1 _sync_iss_to_iks + 114 [0x1aa3ae]


Process:        mDNSResponder [22]
Path:           /usr/sbin/mDNSResponder

    ADDRESS         BINARY
    00001000        /usr/sbin/mDNSResponder

    Thread id:      2d836b0
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      374d790
    User stack:
      162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]


Process:        mds [21]
Path:           /System/Library/Frameworks/CoreServices.framework/
Frameworks/Metadata.framework/Support/mds

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/CoreServices.framework/
Frameworks/Metadata.framework/Support/mds
    000d9000        /System/Library/PrivateFrameworks/
MDSChannel.framework/Versions/A/MDSChannel
    0014d000        /System/Library/PrivateFrameworks/
SpotlightIndex.framework/Versions/A/SpotlightIndex
    0058e000        /usr/lib/libgermantok.dylib
    025aa000        /usr/lib/liblangid.dylib
    02b07000        /usr/lib/libmecab.1.0.0.dylib

    Thread id:      2deec80
    User stack:
      162 ??? [0x5a96]
        162 ??? [0xe803]
          162 ??? [0x58ecb]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3645e40
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3646208
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      34ace40
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0xd7a3]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3646998
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0xd7c6]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      34ac2e8
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3751ba0
    User stack:
      162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      37504f0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          138 ??? [0xa537]
            138 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]
          24 ??? [0xa49a]
            24 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]

    Thread id:      3750128
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___read + 10 (in libSystem.B.dylib) [0x95ed6f9a]
    Kernel stack:
      162 _unix_syscall + 572 [0x3e3a7f]
        162 _read_nocancel + 150 [0x39188d]
          162 _nosys + 593 [0x39164d]
            161 _release_pathbuff + 3077 [0x20172b]
              161 _tsleep + 105 [0x386498]
                161 _uiomove + 1030 [0x3861b0]
                  161 _thread_block + 33 [0x136f20]
                    161 _thread_continue + 1180 [0x136cb3]
            1 _release_pathbuff + 3464 [0x2018ae]
              1 _need_fsevent + 1900 [0x2005ff]
                1 _uiomove + 39 [0x385dd1]
                  1 _uiomove64 + 401 [0x385a4d]
                    1 _copyout_kern + 20 [0x1a22d4]
                      1 _lo_alltraps + 515 [0x1a1713]
                        1 _kernel_trap + 859 [0x1aaeaf]
                          1 _vm_fault + 3049 [0x1636ae]
                            1 _vm_fault_page + 178 [0x160eb0]
                              1 _lck_rw_sleep + 92 [0x13115c]
                                1 _thread_block + 33 [0x136f20]
                                  1 _thread_continue + 1180 [0x136cb3]

    Thread id:      3646d60
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0x87c10]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      3645a78
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0x54b1e]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      374e6b0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0x54b1e]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      374e2e8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0x54b1e]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      374df20
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      2dece40
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 -[NSThread main] + 45 (in Foundation) [0x963eddfd]
              162 ??? [0x58c99]
                162 ??? [0x4529e]
                  162 ??? [0x58ecb]
                    162 _CFRunLoopRunInMode + 88 (in CoreFoundation)
[0x91e42aa8]
                      162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      48d04f0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 _setattr_runLoop + 68 (in SpotlightIndex) [0x17a744]
            162 _runLoop + 77 (in SpotlightIndex) [0x17a658]
              162 _si_scheduler_run_waiting_timeout + 163 (in
SpotlightIndex) [0x18eb00]
                162 _semaphore_timedwait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32e6]


Process:        mdworker [409]
Path:           /System/Library/Frameworks/CoreServices.framework/
Frameworks/Metadata.framework/Versions/A/Support/mdworker

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/CoreServices.framework/
Frameworks/Metadata.framework/Versions/A/Support/mdworker

    Thread id:      5f476b0
    User stack:
      162 ??? [0x2132]
        162 ??? [0x8680]
          162 ??? [0xb89d]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      426e5d0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0xa14c]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      3be4410
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]


Process:        mdworker [394]
Path:           /System/Library/Frameworks/CoreServices.framework/
Frameworks/Metadata.framework/Versions/A/Support/mdworker

    ADDRESS         BINARY
    00001000        /System/Library/Frameworks/CoreServices.framework/
Frameworks/Metadata.framework/Versions/A/Support/mdworker
    00049000        /System/Library/Spotlight/RichText.mdimporter/
Contents/MacOS/RichText
    00067000        /System/Library/Spotlight/PDF.mdimporter/Contents/
MacOS/PDF
    0006e000        /System/Library/Spotlight/Application.mdimporter/
Contents/MacOS/Application
    0007e000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    000c8000        /System/Library/Spotlight/Mail.mdimporter/Contents/
MacOS/Mail
    000cf000        /System/Library/Frameworks/
ExceptionHandling.framework/Versions/A/ExceptionHandling
    00410000        /System/Library/Frameworks/Message.framework/
Versions/B/Message
    007c0000        /System/Library/Frameworks/
LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping

    Thread id:      426cf20
    User stack:
      162 ??? [0x2132]
        162 ??? [0x8680]
          162 ??? [0xb89d]
            162 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x91e42aa8]
              162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      5f4aba0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0xa14c]
            162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      5f4a048
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      5f472e8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ___NSThread__main__ + 308 (in Foundation) [0x963ed9a4]
            162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]

    Thread id:      5f46f20
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __ZN3WTF17TCMalloc_PageHeap15scavengerThreadEv + 578 (in
JavaScriptCore) [0x916a0842]
          162 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]


Process:        notifyd [11]
Path:           /usr/sbin/notifyd

    ADDRESS         BINARY

    Thread id:      2d854f0
    User stack:
      162 ??? [0x1b1a]
        160 ??? [0x95ee39c6]
        2 ??? [0x32e6]
          2 ??? [0x24f2]
            2 ??? [0x620f]
              2 ??? [0x95eb3aa4]
    Kernel stack:
      2 _user_trap + 659 [0x1ab39c]
        2 _vm_fault + 3049 [0x1636ae]
          2 _vm_fault_page + 178 [0x160eb0]
            2 _lck_rw_sleep + 92 [0x13115c]
              2 _thread_block + 33 [0x136f20]
                2 _thread_continue + 1180 [0x136cb3]

    Thread id:      2d85128
    User stack:
      162 ??? [0x95ee4012]
        162 ??? [0x95ee4155]
          162 ??? [0x95eb3286]
    Kernel stack:
      1 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        1 _mach_msg_overwrite_trap + 4820 [0x1274de]
          1 _ipc_mqueue_receive + 738 [0x121286]
            1 _thread_block + 33 [0x136f20]
              1 _thread_block_reason + 135 [0x136e7c]
                1 _thread_setrun + 3597 [0x136217]
                  1 _machine_idle + 271 [0x1ac3ec]


Process:        ntpd [14]
Path:           /usr/sbin/ntpd

    ADDRESS         BINARY
    00001000        /usr/sbin/ntpd

    Thread id:      2d832e8
    User stack:
      162 ??? [0x2002]
        162 ___sigsuspend + 10 (in libSystem.B.dylib) [0x95f0e562]


Process:        pboard [94]
Path:           /usr/sbin/pboard

    ADDRESS         BINARY
    00001000        /usr/sbin/pboard

    Thread id:      374d000
    User stack:
      162 ___sigsuspend + 10 (in libSystem.B.dylib) [0x95f0e562]


Process:        securityd [19]
Path:           /usr/sbin/securityd

    ADDRESS         BINARY
    00001000        /usr/sbin/securityd
    000bc000        /System/Library/Frameworks/PCSC.framework/Versions/
A/PCSC

    Thread id:      2dee4f0
    User stack:
      162 ??? [0x11ff2]
        162 ??? [0x2836]
          162 ??? [0x3e0a]
            162 _mach_msg_overwrite_trap + 10 (in libSystem.B.dylib)
[0x95eb3292]

    Thread id:      48d0c80
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0xa8a0]
            162 ??? [0xa8f2]
              162 _mach_msg_overwrite_trap + 10 (in libSystem.B.dylib)
[0x95eb3292]


Process:        socketfilterfw [38]
Path:           /usr/libexec/ApplicationFirewall/socketfilterfw

    ADDRESS         BINARY
    00001000        /usr/libexec/ApplicationFirewall/socketfilterfw

    Thread id:      34aec80
    User stack:
      162 ??? [0x21f6]
        162 ??? [0x8366]
          162 ??? [0x5a56]
            162 ??? [0x7359]
              162 _CFRunLoopRun + 84 (in CoreFoundation) [0x91e42b04]
                162 _mach_msg_trap + 10 (in libSystem.B.dylib)
[0x95eb3286]

    Thread id:      374f5d0
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]

    Thread id:      374fd60
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 _kevent + 10 (in libSystem.B.dylib) [0x95ee39c6]


Process:        syslogd [12]
Path:           /usr/sbin/syslogd

    ADDRESS         BINARY
    00001000        /usr/sbin/syslogd

    Thread id:      2dee128
    User stack:
      158 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]
      4 ??? [0x17f2]
        3 ??? [0xf446]
          3 ??? [0xdfb5]
            2 ___write + 10 (in libSystem.B.dylib) [0x95edbc7e]
            1 _close$UNIX2003 + 10 (in libSystem.B.dylib) [0x95ebe852]
        1 ??? [0xf539]
          1 _semaphore_wait_signal_trap + 10 (in libSystem.B.dylib)
[0x95eb32ce]
    Kernel stack:
      3 _unix_syscall + 572 [0x3e3a7f]
        2 _write_nocancel + 180 [0x391f0a]
          2 _readv + 312 [0x391c12]
            2 _vn_pathconf + 1174 [0x1eebce]
              2 _VNOP_WRITE + 168 [0x1f839a]
                2 _hfs_vnop_write + 2890 [0x32fa97]
                  2 _cluster_write + 103 [0x1d5505]
                    2 _cluster_write_ext + 2250 [0x1d4e8c]
                      2 _cluster_read + 1453 [0x1d3bb8]
                        2 _cluster_copy_upl_data + 2808 [0x1cf7d0]
                          2 _cluster_zero + 949 [0x1cec7b]
                            2 _buf_biowait + 90 [0x1c96e3]
                              2 _msleep + 157 [0x3863e8]
                                2 _uiomove + 653 [0x386037]
                                  2 _lck_mtx_sleep + 87 [0x130d90]
                                    2 _thread_block + 33 [0x136f20]
                                      2 _thread_continue + 1180
[0x136cb3]
        1 _close_nocancel + 115 [0x36d1d5]
          1 _fdrelse + 336 [0x36d119]
            1 _closef_locked + 347 [0x36cd1e]
              1 _vn_lock + 174 [0x1ee72b]
                1 _vnode_put + 31 [0x1dda2a]
                  1 _vnode_put_locked + 106 [0x1dd9ba]
                    1 _VNOP_INACTIVE + 98 [0x1f7f59]
                      1 _CompareExtendedCatalogKeys + 26332 [0x32401c]
                        1 _GetLogicalBlockSize + 23491 [0x343a17]
                          1 _GetLogicalBlockSize + 2128 [0x33e6a4]
                            1 _journal_start_transaction + 540 [0x1fdddc]
                              1 _lck_mtx_lock + 289 [0x19d8c1]
                                1 _lck_mtx_lock_wait + 361 [0x1318f1]
                                  1 _thread_block + 33 [0x136f20]
                                    1 _thread_continue + 1180 [0x136cb3]

    Thread id:      2def410
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          161 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
          1 ??? [0xaa71]
            1 _notify_post + 280 (in libSystem.B.dylib) [0x95ee5b9a]
              1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      2def7d8
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          152 ??? [0xa53a]
            152 ??? [0xa29f]
              152 ___semwait_signal + 10 (in libSystem.B.dylib)
[0x95eba46e]
          8 ??? [0xa57b]
            5 _asl_store_save + 129 (in libSystem.B.dylib) [0x95fa02de]
              4 _asl_parse_time + 875 (in libSystem.B.dylib) [0x95f16194]
                2 _lstep + 32 (in libSystem.B.dylib) [0x95f18517]
                1 _lstep + 128 (in libSystem.B.dylib) [0x95f18577]
                1 _lstep + 419 (in libSystem.B.dylib) [0x95f1869a]
              1 _asl_parse_time + 1156 (in libSystem.B.dylib)
[0x95f162ad]
                1 _timegm + 57 (in libSystem.B.dylib) [0x95f188f1]
                  1 __st_time1 + 72 (in libSystem.B.dylib) [0x95f1893f]
                    1 _time2 + 45 (in libSystem.B.dylib) [0x95f18b3b]
                      1 _time2sub + 881 (in libSystem.B.dylib)
[0x95f18ed8]
                        1 _semaphore_wait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32ce]
            2 _asl_store_save + 1484 (in libSystem.B.dylib) [0x95fa0829]
              1 _asl_file_save + 1329 (in libSystem.B.dylib) [0x95fa2c5d]
                1 _asl_file_string_encode + 260 (in libSystem.B.dylib)
[0x95fa1238]
                  1 _pthread_mutex_unlock + 12 (in libSystem.B.dylib)
[0x95ebae81]
              1 _asl_file_save + 344 (in libSystem.B.dylib) [0x95fa2884]
                1 _asl_parse_time + 1156 (in libSystem.B.dylib)
[0x95f162ad]
                  1 _timegm + 57 (in libSystem.B.dylib) [0x95f188f1]
                    1 __st_time1 + 72 (in libSystem.B.dylib) [0x95f1893f]
                      1 _time2 + 45 (in libSystem.B.dylib) [0x95f18b3b]
                        1 _time2sub + 881 (in libSystem.B.dylib)
[0x95f18ed8]
                          1 _semaphore_wait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32ce]
            1 _asl_store_save + 672 (in libSystem.B.dylib) [0x95fa04fd]
              1 _asl_file_save + 1329 (in libSystem.B.dylib) [0x95fa2c5d]
                1 _asl_file_string_encode + 260 (in libSystem.B.dylib)
[0x95fa1238]
                  1 _ftello + 59 (in libSystem.B.dylib) [0x95ef7ed3]
                    1 __ftello + 45 (in libSystem.B.dylib) [0x95eeae54]
                      1 _write + 10 (in libSystem.B.dylib) [0x95ee929a]
          1 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
          1 ??? [0xa84d]
            1 _asl_free + 37 (in libSystem.B.dylib) [0x95ee0de7]
              1 _szone_free + 299 (in libSystem.B.dylib) [0x95eb9545]
    Kernel stack:
      4 _i386_astintr + 47 [0x1aa272]
        4 _ast_taken + 185 [0x129434]
          4 _thread_continue + 1180 [0x136cb3]
      1 _unix_syscall + 572 [0x3e3a7f]
        1 _write_nocancel + 180 [0x391f0a]
          1 _readv + 312 [0x391c12]
            1 _vn_pathconf + 1174 [0x1eebce]
              1 _VNOP_WRITE + 168 [0x1f839a]
                1 _hfs_vnop_write + 2890 [0x32fa97]
                  1 _cluster_write + 103 [0x1d5505]
                    1 _cluster_write_ext + 2250 [0x1d4e8c]
                      1 _cluster_read + 1453 [0x1d3bb8]
                        1 _cluster_copy_upl_data + 2808 [0x1cf7d0]
                          1 _cluster_zero + 949 [0x1cec7b]
                            1 _buf_biowait + 90 [0x1c96e3]
                              1 _msleep + 157 [0x3863e8]
                                1 _uiomove + 653 [0x386037]
                                  1 _lck_mtx_sleep + 87 [0x130d90]
                                    1 _thread_block + 33 [0x136f20]
                                      1 _thread_continue + 1180
[0x136cb3]
      1 _dtrace_get_cpu_int_stack_top + 543 [0x198fa3]
        1 _semaphore_wait_signal_trap + 34 [0x139e5c]
          1 _semaphore_wait_signal_trap_internal + 25 [0x139ddb]
            1 _ml_set_interrupts_enabled + 47 [0x1a4389]
      1 _PE_incoming_interrupt + 131 [0x44e416]
        1 _lapic_interrupt + 121 [0x1b16c0]
          1 _sync_iss_to_iks + 114 [0x1aa3ae]

    Thread id:      2d83a78
    User stack:
      162 _thread_start + 34 (in libSystem.B.dylib) [0x95ee4012]
        162 __pthread_start + 321 (in libSystem.B.dylib) [0x95ee4155]
          162 ??? [0x9580]
            129 __vprocmgr_log_drain + 75 (in libSystem.B.dylib)
[0x95fdb9ce]
              129 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]
            33 __vprocmgr_log_drain + 203 (in libSystem.B.dylib)
[0x95fdba4e]
              30 ??? [0xa11b]
                30 ??? [0x87a1]
                  22 ___write + 10 (in libSystem.B.dylib) [0x95edbc7e]
                  8 ??? [0x86f1]
                    5 ??? [0x7cba]
                      4 _asl_parse_time + 1156 (in libSystem.B.dylib)
[0x95f162ad]
                        4 _timegm + 57 (in libSystem.B.dylib)
[0x95f188f1]
                          4 __st_time1 + 72 (in libSystem.B.dylib)
[0x95f1893f]
                            4 _time2 + 45 (in libSystem.B.dylib)
[0x95f18b3b]
                              4 _time2sub + 881 (in libSystem.B.dylib)
[0x95f18ed8]
                                2 _gmtsub + 64 (in libSystem.B.dylib)
[0x95f17d54]
                                  2 _notify_check_tz + 85 (in
libSystem.B.dylib) [0x95ef17f2]
                                    2 _notify_check + 46 (in
libSystem.B.dylib) [0x95edd5bc]
                                      1 _pthread_mutex_lock + 775 (in
libSystem.B.dylib) [0x95ebae73]
                                      1 _pthread_mutex_lock + 17 (in
libSystem.B.dylib) [0x95ebab7d]
                                2 _semaphore_wait_signal_trap + 10 (in
libSystem.B.dylib) [0x95eb32ce]
                      1 _asl_parse_time + 875 (in libSystem.B.dylib)
[0x95f16194]
                        1 _lstep + 432 (in libSystem.B.dylib)
[0x95f186a7]
                    1 _close$UNIX2003 + 10 (in libSystem.B.dylib)
[0x95ebe852]
                    1 ___open + 10 (in libSystem.B.dylib) [0x95ebe836]
                    1 ??? [0x8588]
                      1 ??? [0xffff0292]
              2 ??? [0x9f80]
                2 ___sysctl + 10 (in libSystem.B.dylib) [0x95ebd6ba]
              1 ??? [0x9ecf]
                1 _asl_set + 39 (in libSystem.B.dylib) [0x95ef2cf6]
                  1 _asl_set_query + 159 (in libSystem.B.dylib)
[0x95edfff7]
                    1 _asprintf + 41 (in libSystem.B.dylib) [0x95eba4a8]
                      1 _malloc + 55 (in libSystem.B.dylib) [0x95eb406c]
                        1 _malloc_zone_malloc + 81 (in
libSystem.B.dylib) [0x95eb40d8]
                          1 _tiny_malloc_from_free_list + 37 (in
libSystem.B.dylib) [0x95ebb31f]
    Kernel stack:
      25 _unix_syscall + 572 [0x3e3a7f]
        22 _write_nocancel + 180 [0x391f0a]
          22 _readv + 312 [0x391c12]
            22 _vn_pathconf + 1174 [0x1eebce]
              22 _VNOP_WRITE + 168 [0x1f839a]
                22 _hfs_vnop_write + 2890 [0x32fa97]
                  22 _cluster_write + 103 [0x1d5505]
                    22 _cluster_write_ext + 2250 [0x1d4e8c]
                      22 _cluster_read + 979 [0x1d39de]
                        22 _vnode_cache_is_authorized + 1315 [0x1ce671]
                          22 _memory_object_control_uiomove + 265
[0x186d7a]
                            22 _lck_rw_sleep + 92 [0x13115c]
                              22 _thread_block + 33 [0x136f20]
                                22 _thread_continue + 1180 [0x136cb3]
        1 _close_nocancel + 115 [0x36d1d5]
          1 _fdrelse + 336 [0x36d119]
            1 _closef_locked + 347 [0x36cd1e]
              1 _vn_lock + 174 [0x1ee72b]
                1 _vnode_put + 31 [0x1dda2a]
                  1 _vnode_put_locked + 106 [0x1dd9ba]
                    1 _VNOP_INACTIVE + 98 [0x1f7f59]
                      1 _CompareExtendedCatalogKeys + 26332 [0x32401c]
                        1 _GetLogicalBlockSize + 23865 [0x343b8d]
                          1 _CompareExtendedCatalogKeys + 823 [0x31dc77]
                            1 _BTUpdateRecord + 163 [0x34e9db]
                              1 _SearchNode + 77 [0x34fe50]
                                1 _CompareExtendedCatalogKeys + 96
[0x31d9a0]
                                  1 _lo_allintrs + 641 [0x1a1a21]
                                    1 _i386_astintr + 47 [0x1aa272]
                                      1 _ast_taken + 185 [0x129434]
                                        1 _thread_continue + 1180
[0x136cb3]
        1 ___sysctl + 1143 [0x386a81]
          1 _userland_sysctl + 266 [0x38ac1e]
            1 _lo_allintrs + 641 [0x1a1a21]
              1 _i386_astintr + 47 [0x1aa272]
                1 _ast_taken + 185 [0x129434]
                  1 _thread_continue + 1180 [0x136cb3]
        1 ___sysctl + 104 [0x386672]
          1 _ml_set_interrupts_enabled + 47 [0x1a4389]
      1 _i386_astintr + 47 [0x1aa272]
        1 _ast_taken + 185 [0x129434]
          1 _thread_continue + 1180 [0x136cb3]
      1 _PE_incoming_interrupt + 131 [0x44e416]
        1 _lapic_interrupt + 121 [0x1b16c0]
          1 _sync_iss_to_iks + 114 [0x1aa3ae]


Process:        update [16]
Path:           /usr/sbin/update

    ADDRESS         BINARY
    00001000        /usr/sbin/update

    Thread id:      2d106b0
    User stack:
      155 ??? [0x1f3a]
        155 ??? [0x1fd9]
          155 ___semwait_signal + 10 (in libSystem.B.dylib) [0x95eba46e]
      7 ___sync + 10 (in libSystem.B.dylib) [0x95f0bfba]
    Kernel stack:
      7 _unix_syscall + 572 [0x3e3a7f]
        7 _sync + 34 [0x1e22d7]
          7 _vfs_iterate + 204 [0x1dd026]
            7 _mount_dropcrossref + 240 [0x1e22a2]
              7 _VFS_SYNC + 111 [0x1f89fa]
                4 _hfs_mark_volume_inconsistent + 10221 [0x338a86]
                  4 _vnode_iterate + 348 [0x1dff87]
                    4 _hfs_vnop_ioctl + 12378 [0x334bb7]
                      4 _GetLogicalBlockSize + 26178 [0x344496]
                        4 _GetLogicalBlockSize + 23898 [0x343bae]
                          4 _GetLogicalBlockSize + 2322 [0x33e766]
                            4 _journal_end_transaction + 1053 [0x1fd7af]
                              4 _journal_modify_block_start + 4417
[0x1fc296]
                                4 _journal_modify_block_start + 4118
[0x1fc16b]
                                  3 _journal_uses_fua + 105 [0x1f992b]
                                    3 _VNOP_IOCTL + 209 [0x1f82a2]
                                      3 _spec_ioctl + 176 [0x204f8d]
                                        3
com.apple.iokit.IOStorageFamily (1.5.6) + 63020 [0x7cb62c]
                                          3
com.apple.iokit.IOAHCIBlockStorage (1.2.2) + 25200 [0xd8d270]
                                            3
com.apple.iokit.IOAHCIBlockStorage (1.2.2) + 12848 [0xd8a230]
                                              3 _IORecursiveLockSleep +
67 [0x40adad]
                                                3 _lck_mtx_sleep + 87
[0x130d90]
                                                  3 _thread_block + 33
[0x136f20]
                                                    3 _thread_continue
+ 1180 [0x136cb3]
                                  1 _journal_uses_fua + 351 [0x1f9a21]
                                    1 _VNOP_IOCTL + 209 [0x1f82a2]
                                      1 _spec_ioctl + 176 [0x204f8d]
                                        1
com.apple.iokit.IOStorageFamily (1.5.6) + 63020 [0x7cb62c]
                                          1
com.apple.iokit.IOAHCIBlockStorage (1.2.2) + 25200 [0xd8d270]
                                            1
com.apple.iokit.IOAHCIBlockStorage (1.2.2) + 12848 [0xd8a230]
                                              1 _IORecursiveLockSleep +
67 [0x40adad]
                                                1 _lck_mtx_sleep + 87
[0x130d90]
                                                  1 _thread_block + 33
[0x136f20]
                                                    1 _thread_continue
+ 1180 [0x136cb3]
                3 _hfs_mark_volume_inconsistent + 10587 [0x338bf4]
                  3 _journal_flush + 608 [0x1fcdeb]
                    2 _journal_modify_block_start + 4417 [0x1fc296]
                      2 _journal_modify_block_start + 4118 [0x1fc16b]
                        2 _journal_uses_fua + 105 [0x1f992b]
                          2 _VNOP_IOCTL + 209 [0x1f82a2]
                            2 _spec_ioctl + 176 [0x204f8d]
                              2 com.apple.iokit.IOStorageFamily (1.5.6)
+ 63020 [0x7cb62c]
                                2 com.apple.iokit.IOAHCIBlockStorage
(1.2.2) + 25200 [0xd8d270]
                                  2 com.apple.iokit.IOAHCIBlockStorage
(1.2.2) + 12848 [0xd8a230]
                                    2 _IORecursiveLockSleep + 67
[0x40adad]
                                      2 _lck_mtx_sleep + 87 [0x130d90]
                                        2 _thread_block + 33 [0x136f20]
                                          2 _thread_continue + 1180
[0x136cb3]
                    1 _journal_modify_block_start + 6157 [0x1fc962]
                      1 _journal_uses_fua + 105 [0x1f992b]
                        1 _VNOP_IOCTL + 209 [0x1f82a2]
                          1 _spec_ioctl + 176 [0x204f8d]
                            1 com.apple.iokit.IOStorageFamily (1.5.6) +
63020 [0x7cb62c]
                              1 com.apple.iokit.IOAHCIBlockStorage
(1.2.2) + 25200 [0xd8d270]
                                1 com.apple.iokit.IOAHCIBlockStorage
(1.2.2) + 12848 [0xd8a230]
                                  1 _IORecursiveLockSleep + 67 [0x40adad]
                                    1 _lck_mtx_sleep + 87 [0x130d90]
                                      1 _thread_block + 33 [0x136f20]
                                        1 _thread_continue + 1180
[0x136cb3]


Process:        usbmuxd [15]
Path:           /System/Library/PrivateFrameworks/
MobileDevice.framework/Versions/A/Resources/usbmuxd

    ADDRESS         BINARY
    00001000        /System/Library/PrivateFrameworks/
MobileDevice.framework/Versions/A/Resources/usbmuxd
    00063000        /System/Library/PrivateFrameworks/
MobileDevice.framework/Versions/A/MobileDevice

    Thread id:      2d0f790
    User stack:
      162 _mach_msg_trap + 10 (in libSystem.B.dylib) [0x95eb3286]

    Thread id:      34ab3c8
    User stack:
      162 ___select + 10 (in libSystem.B.dylib) [0x95f026fa]


Process:        kernel_task [0]
Path:           kernel_task

    ADDRESS         BINARY

    Thread id:      522740

    Thread id:      2c1bba0

    Thread id:      2c1b7d8

    Thread id:      2c1b410

    Thread id:      2c1b048

    Thread id:      2c1ac80

    Thread id:      2c1a8b8

    Thread id:      2c1a128

    Thread id:      2c186b0

    Thread id:      2c17f20

    Thread id:      2c17790
    Kernel stack:
      162 _buf_list_unlock + 95 [0x1c9d84]
        162 _msleep + 157 [0x3863e8]
          162 _uiomove + 653 [0x386037]
            162 _lck_mtx_sleep + 87 [0x130d90]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]

    Thread id:      2c17000
    Kernel stack:
      162 com.apple.driver.AppleIntelCPUPowerManagement (76.2.0) +
34736 [0xd2e7b0]
        162 _thread_block + 33 [0x136f20]
          162 _thread_continue + 1180 [0x136cb3]

    Thread id:      2c173c8

    Thread id:      2c17b58

    Thread id:      2c19208

    Thread id:      2d12128

    Thread id:      2d13048

    Thread id:      2d124f0

    Thread id:      2d128b8

    Thread id:      2d12c80
    Kernel stack:
      162 _ifnet_input + 2830 [0x217da7]
        162 _msleep + 157 [0x3863e8]
          162 _uiomove + 653 [0x386037]
            162 _lck_mtx_sleep + 87 [0x130d90]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]

    Thread id:      2d13410

    Thread id:      2d13ba0

    Thread id:      2d858b8

    Thread id:      2d85c80

    Thread id:      2d0fb58

    Thread id:      2d84998

    Thread id:      2d845d0

    Thread id:      2d83e40

    Thread id:      2d0ff20

    Thread id:      2defba0

    Thread id:      2d11998

    Thread id:      2c18e40

    Thread id:      2d0f000

    Thread id:      2d115d0
    Kernel stack:
      162 _macx_swapinfo + 574 [0x3c7972]
        162 _mach_msg_receive + 175 [0x1261c5]
          162 _ipc_mqueue_receive + 750 [0x121292]
            162 _thread_block + 33 [0x136f20]
              162 _thread_continue + 1180 [0x136cb3]

    Thread id:      2d11d60

    Thread id:      2c19d60

    Thread id:      2c18a78

    Thread id:      2ded998

    Thread id:      2d11208

    Thread id:      2c182e8

    Thread id:      2d10e40

    Thread id:      2c1a4f0

    Thread id:      2d86410

    Thread id:      2def048
    Kernel stack:
      162 _thread_call_enter1 + 736 [0x13ebde]
        162 com.apple.filesystems.udf (2.0.2) + 6604 [0x212fc9cc]
          162 _msleep + 157 [0x3863e8]
            162 _uiomove + 1030 [0x3861b0]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]

    Thread id:      2ded5d0
    Kernel stack:
      1 __ZN10IOWorkLoop10threadMainEv + 191 [0x425ae1]
        1 _thread_block_parameter + 32 [0x136efd]
          1 _thread_block_reason + 135 [0x136e7c]
            1 _thread_setrun + 3597 [0x136217]
              1 _machine_idle + 271 [0x1ac3ec]

    Thread id:      2dee8b8

    Thread id:      34aca78

    Thread id:      2d0f3c8

    Thread id:      3648ba0
    Kernel stack:
      162 _ifnet_input + 2830 [0x217da7]
        162 _msleep + 157 [0x3863e8]
          162 _uiomove + 653 [0x386037]
            162 _lck_mtx_sleep + 87 [0x130d90]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]

    Thread id:      36487d8
    Kernel stack:
      162 _ifnet_input + 2830 [0x217da7]
        162 _msleep + 157 [0x3863e8]
          162 _uiomove + 653 [0x386037]
            162 _lck_mtx_sleep + 87 [0x130d90]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]

    Thread id:      36478b8

    Thread id:      36474f0
    Kernel stack:
      162 com.apple.filesystems.autofs (2.0.2) + 25277 [0xc862bd]
        162 _msleep + 157 [0x3863e8]
          162 _uiomove + 608 [0x38600a]
            162 _lck_mtx_sleep_deadline + 104 [0x130e26]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]

    Thread id:      374db58

    Thread id:      3951790

    Thread id:      426de40

    Thread id:      48d1048
    Kernel stack:
      162 com.apple.iokit.IOSerialFamily (9.4) + 10526 [0x79391e]
        162 com.apple.iokit.IOSerialFamily (9.4) + 9805 [0x79364d]
          162 com.apple.iokit.IOSerialFamily (9.4) + 24126 [0x796e3e]
            162 com.apple.iokit.IOBluetoothSerialManager (2.1.9f10) +
14507 [0x79d8ab]
              162 com.apple.iokit.IOBluetoothSerialManager (2.1.9f10) +
13977 [0x79d699]
                162 _thread_block + 33 [0x136f20]
                  162 _thread_continue + 1180 [0x136cb3]

    Thread id:      37508b8
    Kernel stack:
      162 com.apple.iokit.IOSerialFamily (9.4) + 11241 [0x793be9]
        162 com.apple.iokit.IOSerialFamily (9.4) + 23772 [0x796cdc]
          162 com.apple.iokit.IOBluetoothSerialManager (2.1.9f10) +
14922 [0x79da4a]
            162 com.apple.iokit.IOBluetoothSerialManager (2.1.9f10) +
13977 [0x79d699]
              162 _thread_block + 33 [0x136f20]
                162 _thread_continue + 1180 [0x136cb3]


SHARED FRAMEWORK AREA
ADDRESS         BINARY
90003000        /System/Library/Frameworks/CoreData.framework/Versions/
A/CoreData
900ec000        /System/Library/PrivateFrameworks/
DataDetectorsCore.framework/Versions/A/DataDetectorsCore
9013b000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
9013c000        /usr/lib/libssl.0.9.7.dylib
90161000        /System/Library/Frameworks/OpenGL.framework/Versions/A/
Libraries/libGL.dylib
9016e000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
901ec000        /usr/lib/libbsm.dylib
901f4000        /usr/lib/libiconv.2.dylib
902e9000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
90317000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
906d6000        /System/Library/Frameworks/Cocoa.framework/Versions/A/
Cocoa
906d7000        /System/Library/Frameworks/SecurityInterface.framework/
Versions/A/SecurityInterface
90723000        /usr/lib/libresolv.9.dylib
90742000        /System/Library/PrivateFrameworks/
QuickLookUI.framework/Versions/A/QuickLookUI
90792000        /System/Library/PrivateFrameworks/CoreUI.framework/
Versions/A/CoreUI
907cd000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
90bde000        /System/Library/Frameworks/QTKit.framework/Versions/A/
QTKit
90c96000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
90cd8000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Carbon
90d09000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
90db1000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
90e0e000        /System/Library/Frameworks/Quartz.framework/Versions/A/
Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
90fcb000        /System/Library/PrivateFrameworks/Shortcut.framework/
Versions/A/Shortcut
90ff4000        /System/Library/Frameworks/Quartz.framework/Versions/A/
Frameworks/ImageKit.framework/Versions/A/ImageKit
9112d000        /System/Library/Frameworks/QuickTime.framework/
Versions/A/QuickTime
91454000        /System/Library/Frameworks/DiskArbitration.framework/
Versions/A/DiskArbitration
9145d000        /usr/lib/system/libmathCommon.A.dylib
91462000        /System/Library/Frameworks/
SecurityFoundation.framework/Versions/A/SecurityFoundation
9149d000        /System/Library/Frameworks/OpenGL.framework/Versions/A/
Libraries/libGLImage.dylib
914dc000        /usr/lib/libsasl2.2.dylib
914ec000        /System/Library/PrivateFrameworks/
KerberosHelper.framework/Versions/A/KerberosHelper
914f2000        /usr/lib/libsqlite3.0.dylib
9157a000        /System/Library/Frameworks/JavaScriptCore.framework/
Versions/A/JavaScriptCore
9171b000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/NavigationServices.framework/Versions/A/NavigationServices
9175e000        /System/Library/Frameworks/IOKit.framework/Versions/A/
IOKit
917ec000        /usr/lib/libz.1.dylib
917fb000        /usr/lib/libcrypto.0.9.7.dylib
918ae000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/DictionaryServices.framework/Versions/A/
DictionaryServices
918c5000        /System/Library/PrivateFrameworks/
DataDetectors.framework/Versions/A/DataDetectors
918dd000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/ImageIO
91a26000        /System/Library/PrivateFrameworks/ISSupport.framework/
Versions/A/ISSupport
91a8d000        /System/Library/Frameworks/PubSub.framework/Versions/A/
PubSub
91b94000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
91c4f000        /System/Library/Frameworks/Quartz.framework/Versions/A/
Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
91c81000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Accelerate
91c82000        /System/Library/PrivateFrameworks/WhitePages.framework/
Versions/A/WhitePages
91cf0000        /System/Library/PrivateFrameworks/
PasswordServer.framework/Versions/A/PasswordServer
91d35000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/CommonPanels.framework/Versions/A/CommonPanels
91d3b000        /System/Library/PrivateFrameworks/
CoreMediaIOServicesPrivate.framework/Versions/A/
CoreMediaIOServicesPrivate
91d7c000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/ImageCapture.framework/Versions/A/ImageCapture
91d92000        /System/Library/PrivateFrameworks/DAVKit.framework/
Versions/A/DAVKit
91dcf000        /System/Library/Frameworks/CoreFoundation.framework/
Versions/A/CoreFoundation
91f03000        /System/Library/Frameworks/LDAP.framework/Versions/A/
LDAP
91f36000        /System/Library/PrivateFrameworks/FileSync.framework/
Versions/A/FileSync
91f40000        /usr/lib/libtidy.A.dylib
91f77000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
LangAnalysis.framework/Versions/A/LangAnalysis
91f88000        /System/Library/Frameworks/WebKit.framework/Versions/A/
Frameworks/WebCore.framework/Versions/A/WebCore
9285a000        /System/Library/PrivateFrameworks/
DSObjCWrappers.framework/Versions/A/DSObjCWrappers
9286a000        /System/Library/Frameworks/CoreVideo.framework/
Versions/A/CoreVideo
92883000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
9288d000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/CoreServices
9288e000        /usr/lib/libstdc++.6.dylib
928ec000        /System/Library/Frameworks/OpenGL.framework/Versions/A/
Libraries/libGLU.dylib
92946000        /System/Library/QuickTime/
QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents
93897000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/Help.framework/Versions/A/Help
9389b000        /System/Library/PrivateFrameworks/
AOSNotification.framework/Versions/A/AOSNotification
938a0000        /System/Library/PrivateFrameworks/
DotMacLegacy.framework/Versions/A/DotMacLegacy
938ac000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
938f6000        /System/Library/Frameworks/Security.framework/Versions/
A/Security
93ac8000        /System/Library/PrivateFrameworks/Bom.framework/
Versions/A/Bom
93afd000        /System/Library/PrivateFrameworks/
OpenDirectory.framework/Versions/A/OpenDirectory
93b02000        /System/Library/Frameworks/Accelerate.framework/
Versions/A/Frameworks/vImage.framework/Versions/A/vImage
93bca000        /System/Library/Frameworks/
SystemConfiguration.framework/Versions/A/SystemConfiguration
93ccc000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/Ink.framework/Versions/A/Ink
93d60000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/ApplicationServices
93d61000        /usr/lib/libxslt.1.dylib
93d86000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/CoreGraphics
94427000        /usr/lib/libobjc.A.dylib
94508000        /System/Library/Frameworks/InstantMessage.framework/
Frameworks/IMUtils.framework/Versions/A/IMUtils
9451c000        /usr/lib/libauto.dylib
94548000        /System/Library/PrivateFrameworks/
DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
945d3000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
945df000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/QD.framework/
Versions/A/QD
94687000        /System/Library/PrivateFrameworks/
DotMacSyncManager.framework/Versions/A/DotMacSyncManager
946ba000        /System/Library/Frameworks/AddressBook.framework/
Versions/A/AddressBook
9483b000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libPng.dylib
94858000        /System/Library/Frameworks/WebKit.framework/Versions/A/
WebKit
94935000        /System/Library/PrivateFrameworks/
CrashReporterSupport.framework/Versions/A/CrashReporterSupport
94938000        /System/Library/Frameworks/AudioUnit.framework/
Versions/A/AudioUnit
94939000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
Versions/A/ATS
949cd000        /System/Library/Frameworks/AppKit.framework/Versions/C/
AppKit
951cc000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
PrintCore.framework/Versions/A/PrintCore
95247000        /System/Library/PrivateFrameworks/
CoreMediaPrivate.framework/Versions/A/CoreMediaPrivate
95271000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/OpenScripting.framework/Versions/A/OpenScripting
9528a000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
95292000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/
Versions/A/CoreText
952ed000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/CarbonSound.framework/Versions/A/CarbonSound
952f8000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
ColorSync.framework/Versions/A/ColorSync
953c4000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
SpeechSynthesis.framework/Versions/A/SpeechSynthesis
953d5000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
95455000        /System/Library/PrivateFrameworks/CoreAUC.framework/
Versions/A/CoreAUC
955e5000        /System/Library/Frameworks/vecLib.framework/Versions/A/
vecLib
955e6000        /System/Library/Frameworks/AGL.framework/Versions/A/AGL
955ee000        /System/Library/Frameworks/InstantMessage.framework/
Versions/A/InstantMessage
9560b000        /System/Library/Frameworks/CalendarStore.framework/
Versions/A/CalendarStore
9576f000        /System/Library/Frameworks/OpenGL.framework/Versions/A/
OpenGL
9577d000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libTIFF.dylib
957bd000        /System/Library/PrivateFrameworks/
iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowser
95830000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/SecurityHI.framework/Versions/A/SecurityHI
95833000        /System/Library/PrivateFrameworks/Backup.framework/
Versions/A/Backup
958dd000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
HIServices.framework/Versions/A/HIServices
9592f000        /System/Library/Frameworks/OpenGL.framework/Versions/A/
Libraries/libGLProgrammability.dylib
95e01000        /System/Library/Frameworks/Kerberos.framework/Versions/
A/Kerberos
95eb2000        /usr/lib/libSystem.B.dylib
9601a000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/AE.framework/Versions/A/AE
9604a000        /usr/lib/libicucore.A.dylib
96184000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libRadiance.dylib
9618a000        /System/Library/Frameworks/Quartz.framework/Versions/A/
Frameworks/PDFKit.framework/Versions/A/PDFKit
961fd000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/Print.framework/Versions/A/Print
96204000        /System/Library/PrivateFrameworks/
InstallServer.framework/Versions/A/InstallServer
96205000        /usr/lib/libgcc_s.1.dylib
9620d000        /usr/lib/libbz2.1.0.dylib
9621a000        /System/Library/PrivateFrameworks/
FamilyControls.framework/Versions/A/FamilyControls
9626c000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libJPEG.dylib
9628c000        /System/Library/Frameworks/CoreAudio.framework/
Versions/A/CoreAudio
9630a000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
96398000        /usr/lib/libffi.dylib
9639a000        /usr/lib/libcups.2.dylib
963c4000        /System/Library/Frameworks/DirectoryService.framework/
Versions/A/DirectoryService
963e3000        /System/Library/Frameworks/Foundation.framework/
Versions/C/Foundation
96660000        /System/Library/Frameworks/CoreServices.framework/
Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
9693b000        /System/Library/Frameworks/Quartz.framework/Versions/A/
Quartz
9693c000        /System/Library/Frameworks/SyncServices.framework/
Versions/A/SyncServices
96a1f000        /System/Library/Frameworks/AudioToolbox.framework/
Versions/A/AudioToolbox
96b72000        /System/Library/Frameworks/Carbon.framework/Versions/A/
Frameworks/HIToolbox.framework/Versions/A/HIToolbox
96e7b000        /System/Library/Frameworks/QuartzCore.framework/
Versions/A/QuartzCore
97482000        /System/Library/PrivateFrameworks/
OpenDirectory.framework/Versions/A/Frameworks/
CFOpenDirectory.framework/Versions/A/CFOpenDirectory
97494000        /System/Library/Frameworks/QuickLook.framework/
Versions/A/QuickLook
974b2000        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libGIF.dylib
974b7000        /System/Library/PrivateFrameworks/
MonitorPanel.framework/Versions/A/MonitorPanel
974b8000        /System/Library/PrivateFrameworks/
DisplayServices.framework/Versions/A/DisplayServices
974be000        /System/Library/PrivateFrameworks/HelpData.framework/
Versions/A/HelpData
974d0000        /usr/lib/libxml2.2.dylib

---
Our Lord calls us and asks us to tell him of our love and to repeat it
over and over again all through our sufferings. Every cross, great or
small, even small annoyances, are the voice of the Beloved.  He is
asking for a declaration of love from us to last whilst the suffering
lasts.

Blessed Charles de Foucauld



[Non-text portions of this message have been removed]

#19360 From: Sam Elmore <sam9am@...>
Date: Thu Mar 4, 2010 4:22 pm
Subject: Re: Re: animal companion creation...
sam9am
Send Email Send Email
 
>> Are you getting any messages in the PCGen or Java Consoles?
>>


Could someone tell me how to copy and paste the message from the debug
console to an email? I can't seem to do that either now that I've got
it up and running again.......

Sam

#19361 From: "Barak" <barak@...>
Date: Thu Mar 4, 2010 9:18 pm
Subject: RE: Re: Applying a TOHIT bonus only to simple melee weapons
barak20021
Send Email Send Email
 
> Also, I notice that when I click on a Simple Melee weapon like Dagger
> in the inventory tab, the description that appears in bottom left does
> not include my new "SimpleMelee" attribute in the list of types,
> alongside "Weapon. Melee. Finesseable." etc.  Shouldn't my added type
> "SimpleMelee" show up there, if the .MOD executed correctly?

Nope.

That's because you put the type on the weapon prof, not the weapon itself.
If you put it on the weapon itself, it will then show in the list of types
there.

Barak

#19362 From: "Barak" <barak@...>
Date: Fri Mar 5, 2010 1:14 am
Subject: RE: Re: Applying a TOHIT bonus only to simple melee weapons
barak20021
Send Email Send Email
 
> -----Original Message-----
>    <tab>BONUS:COMBAT|TOHIT.SimpleMelee|(max(STR,WIS)-
> STR)|TYPE=Intuitive

Use the docs, Luke!  :p

BONUS:WEAPONPROF=TYPE.SimpleMelee|TOHIT||(max(STR,WIS)-STR)|TYPE=Intuitive

Barak

#19363 From: Andrew Maitland <drew0500@...>
Date: Fri Mar 5, 2010 2:48 am
Subject: Re: Re: Applying a TOHIT bonus only to simple melee weapons
Drew0500
Send Email Send Email
 
Doh... I missed the fact it was BONUS:COMBAT and not BONUS:WEAPONPROF in
what he replied with.

I could've sworn I used BONUS:WEAPONPROF in an earlier example...

Yup, there it is
"The best solution to your issue would be this,
BONUS:WEAPONPROF=TYPE.SimpleMelee|TOHIT|..."

On 3/4/2010 5:14 PM, Barak wrote:
>> -----Original Message-----
>>     <tab>BONUS:COMBAT|TOHIT.SimpleMelee|(max(STR,WIS)-
>> STR)|TYPE=Intuitive
>>
> Use the docs, Luke!  :p
>
> BONUS:WEAPONPROF=TYPE.SimpleMelee|TOHIT||(max(STR,WIS)-STR)|TYPE=Intuitive
>
> Barak
>
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>
>

--

Andrew Maitland (LegacyKing)
Admin Silverback, PCGen Board of Directors
Data Chimp, Docs Tamarin
Unique Title "Quick-Silverback Tracker Monkey"

#19364 From: "karianna03" <martijnverburg@...>
Date: Fri Mar 5, 2010 4:11 pm
Subject: Re: animal companion creation...
karianna03
Send Email Send Email
 
Hi Sam,

Before we take that step, I assume you increased the memory that PCGen runs
with?

K

--- In PCGenListFileHelp@yahoogroups.com, Sam Elmore <sam9am@...> wrote:
>
> >> Are you getting any messages in the PCGen or Java Consoles?
> >>
>
>
> Could someone tell me how to copy and paste the message from the debug
> console to an email? I can't seem to do that either now that I've got
> it up and running again.......
>
> Sam
>

#19365 From: Sam Elmore <sam9am@...>
Date: Fri Mar 5, 2010 4:22 pm
Subject: Re: Re: animal companion creation...
sam9am
Send Email Send Email
 
Yes, I've got it set to 1024-2048 ...

On 05 Mar 2010, at 11:11 AM, karianna03 wrote:

> Hi Sam,
>
> Before we take that step, I assume you increased the memory that
> PCGen runs with?
>
> K
>
> --- In PCGenListFileHelp@yahoogroups.com, Sam Elmore <sam9am@...>
> wrote:
> >
> > >> Are you getting any messages in the PCGen or Java Consoles?
> > >>
> >
> >
> > Could someone tell me how to copy and paste the message from the
> debug
> > console to an email? I can't seem to do that either now that I've
> got
> > it up and running again.......
> >
> > Sam
> >
>
>
>

---
Our Lord calls us and asks us to tell him of our love and to repeat it
over and over again all through our sufferings. Every cross, great or
small, even small annoyances, are the voice of the Beloved.  He is
asking for a declaration of love from us to last whilst the suffering
lasts.

Blessed Charles de Foucauld



[Non-text portions of this message have been removed]

#19366 From: "Wayland" <WBA@...>
Date: Sat Mar 6, 2010 10:53 pm
Subject: How to apply an initiative penalty to an item
skipaugur
Send Email Send Email
 
Hi, my GM gave me a ring with some bonuses that also applies an initiative
penalty; I tried adding s SProp "BONUS:COMBAT|INITIATIVE|-2" in the Custom Item
dialog but it didn't like the | symbol. How would I approach that?

Thanks!

#19367 From: Andrew Maitland <drew0500@...>
Date: Sat Mar 6, 2010 11:12 pm
Subject: Re: How to apply an initiative penalty to an item
Drew0500
Send Email Send Email
 
Hi,


On 3/6/2010 2:53 PM, Wayland wrote:
> Hi, my GM gave me a ring with some bonuses that also applies an initiative
penalty; I tried adding s SProp "BONUS:COMBAT|INITIATIVE|-2" in the Custom Item
dialog but it didn't like the | symbol. How would I approach that?
>

Don't use it in SPROP,  place it in it's own section.


Ring of Penalty <> SPROP:This ring penalizes Initiative by -2 <>
BONUS:COMBAT|INITIATIVE|-2 <> TYPE:Ring.Magic

See?



> Thanks!
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>
>

--

Andrew Maitland (LegacyKing)
Admin Silverback, PCGen Board of Directors
Data Chimp, Docs Tamarin
Unique Title "Quick-Silverback Tracker Monkey"

#19368 From: Ainvar G <ainvarg@...>
Date: Mon Mar 8, 2010 2:05 am
Subject: Magic items costs
ainvarg
Send Email Send Email
 
How does PCgen calculate cost for magical items?

I'm trying to enter a source that introduces new choices for less-powerful
magical abilities.  Because they are lower-power, the author created a "half"
bonus for pricing purposes.  Question is, how so I implement that?

#19369 From: Andrew Maitland <drew0500@...>
Date: Mon Mar 8, 2010 5:21 am
Subject: Re: Magic items costs
Drew0500
Send Email Send Email
 
Hi,

Magic Item Costs for the PLUS stuff is found in the gamemode.

I'd imagine you'd have to make your own EQMODs with the prices you want.

Sorry this isn't more helpful, but EQMODs are difficult to get to follow
the rules, let alone modify easily.



On 3/7/2010 6:05 PM, Ainvar G wrote:
> How does PCgen calculate cost for magical items?
>
> I'm trying to enter a source that introduces new choices for less-powerful
magical abilities.  Because they are lower-power, the author created a "half"
bonus for pricing purposes.  Question is, how so I implement that?
>
>
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>
>

--

Andrew Maitland (LegacyKing)
Admin Silverback, PCGen Board of Directors
Data Chimp, Docs Tamarin
Unique Title "Quick-Silverback Tracker Monkey"

#19370 From: "hharden71" <hharden71@...>
Date: Mon Mar 8, 2010 5:42 am
Subject: Conversion 5.12-5.14 data
hharden71
Send Email Send Email
 
I started with my 5.10 data and ran it through the 5.12 converter.
Now I am trying to fix all the errors that come up when I load it into 5.14 so I
can make it ready to move on to 5.16 and beyond.

I'm currently having difficulty with the following errors:

1.
   Feat to add a Favored class to a character



Rough Neighborhood  TYPE:General 		 ADD:FAVOREDCLASS|LIST 								
CHOOSE:Bard|Rogue|Fighter SELECT:1 																				 SOURCEPAGE:HFI
PRELEVELMAX:Q:1 									 PRESKILLMULT:1,Knowledge (Home Region)=2
DESC:You gain a favored class of Bard, Rogue, or Fighter





2.
   SEVERE CHOOSE:SPELLLIST requires additional arguments in Innate Spell



Innate Spell 	 TYPE:General  STACK:NO 										 MULT:YES CHOOSE:SPELLLIST
SELECT:1 																					 SOURCEPAGE:HFI 				 PREFEAT:3,Quicken
Spell,Silent Spell,Still Spell 																																											
DESC:You have mastered a spell so thoroughly you can now cast it as a spell-like
ability.





3.
   errors complaining of Duplicate races

#

Elf (Blue) 	 BONUS:STAT|DEX|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard  FACE:5
REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnoll,Gnome,Halfling,Illrien,Sylvan 				
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 			 SAB:Immunity to sleep,Automatic
Search check if within 5' of secret/concealed door 	 SAB:save +2 vs enchantment
spells 					 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			 RACETYPE:Humanoid
RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
#

Elf (Grey) 	 BONUS:STAT|INT|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard  FACE:5
REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnome,Halfling,Illtrien,Sylvan 					
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 				 SAB:Immunity to
sleep,Automatic Search check if within 5' of secret/concealed door  SAB:save +2
vs enchantment spells 							 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			
RACETYPE:Humanoid RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI



4.
  Another error... don't know how to fix this one.

SEVERE Error parsing file file:equipmods.lst line 218: null


Any assistance resolving these would be much appreciated.

#19371 From: Andrew Maitland <drew0500@...>
Date: Mon Mar 8, 2010 8:14 am
Subject: Re: Conversion 5.12-5.14 data
Drew0500
Send Email Send Email
 
Hi,

Posting the complete entries isn't really useful, in fact it's
counterproductive. What one of us monkeys need to see is the ACTUAL text
of the error messages.

#1 - I'm not understanding, what is the error message?

#2 - It appears there is a mistake in the CHOOSE:SPELLLIST entry. I'll
need to have a coder take a look at decipher what the correct SYNTAX
should be; it appears it is a copy/paste from another tag.

#3 - If it's saying you have a duplicate Elf, posting two elves with
different names isn't the problem. What you have is the Same exact name
being used in the same set or across multiple sets. So if you have two
'Elf (Blue)' in your set, and one of them isn't using .MOD then that is
the issue.

#4 - You have an illegal character or something is very much incorrect
in the equipmods file on that line "218"

On 3/7/2010 9:42 PM, hharden71 wrote:
> I started with my 5.10 data and ran it through the 5.12 converter.
> Now I am trying to fix all the errors that come up when I load it into 5.14 so
I can make it ready to move on to 5.16 and beyond.
>
> I'm currently having difficulty with the following errors:
>
> 1.
>    Feat to add a Favored class to a character
>
>
>
> Rough Neighborhood  TYPE:General 		 ADD:FAVOREDCLASS|LIST 								
CHOOSE:Bard|Rogue|Fighter SELECT:1 																				 SOURCEPAGE:HFI
PRELEVELMAX:Q:1 									 PRESKILLMULT:1,Knowledge (Home Region)=2
DESC:You gain a favored class of Bard, Rogue, or Fighter
>
>
>
>
>
> 2.
>    SEVERE CHOOSE:SPELLLIST requires additional arguments in Innate Spell
>
>
>
> Innate Spell 	 TYPE:General  STACK:NO 										 MULT:YES CHOOSE:SPELLLIST
SELECT:1 																					 SOURCEPAGE:HFI 				 PREFEAT:3,Quicken
Spell,Silent Spell,Still Spell 																																											
DESC:You have mastered a spell so thoroughly you can now cast it as a spell-like
ability.
>
>
>
>
>
> 3.
>    errors complaining of Duplicate races
>
> #
>
> Elf (Blue) 	 BONUS:STAT|DEX|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnoll,Gnome,Halfling,Illrien,Sylvan 				
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 			 SAB:Immunity to sleep,Automatic
Search check if within 5' of secret/concealed door 	 SAB:save +2 vs enchantment
spells 					 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			 RACETYPE:Humanoid
RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> #
>
> Elf (Grey) 	 BONUS:STAT|INT|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnome,Halfling,Illtrien,Sylvan 					
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 				 SAB:Immunity to
sleep,Automatic Search check if within 5' of secret/concealed door  SAB:save +2
vs enchantment spells 							 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			
RACETYPE:Humanoid RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
>
>
>
> 4.
>   Another error... don't know how to fix this one.
>
> SEVERE Error parsing file file:equipmods.lst line 218: null
>
>
> Any assistance resolving these would be much appreciated.
>
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>
>

--

Andrew Maitland (LegacyKing)
Admin Silverback, PCGen Board of Directors
Data Chimp, Docs Tamarin
Unique Title "Quick-Silverback Tracker Monkey"

#19372 From: "karianna03" <martijnverburg@...>
Date: Mon Mar 8, 2010 9:18 am
Subject: Re: animal companion creation...
karianna03
Send Email Send Email
 
OK, I need to fire up PCGen on my Mac tonight and try to get you some
instructions on how to get the debug info, I'll post in about 15 hours or so.

K

--- In PCGenListFileHelp@yahoogroups.com, Sam Elmore <sam9am@...> wrote:
>
> Yes, I've got it set to 1024-2048 ...
>
> On 05 Mar 2010, at 11:11 AM, karianna03 wrote:
>
> > Hi Sam,
> >
> > Before we take that step, I assume you increased the memory that
> > PCGen runs with?
> >
> > K
> >
> > --- In PCGenListFileHelp@yahoogroups.com, Sam Elmore <sam9am@>
> > wrote:
> > >
> > > >> Are you getting any messages in the PCGen or Java Consoles?
> > > >>
> > >
> > >
> > > Could someone tell me how to copy and paste the message from the
> > debug
> > > console to an email? I can't seem to do that either now that I've
> > got
> > > it up and running again.......
> > >
> > > Sam
> > >
> >
> >
> >
>
> ---
> Our Lord calls us and asks us to tell him of our love and to repeat it
> over and over again all through our sufferings. Every cross, great or
> small, even small annoyances, are the voice of the Beloved.  He is
> asking for a declaration of love from us to last whilst the suffering
> lasts.
>
> Blessed Charles de Foucauld
>
>
>
> [Non-text portions of this message have been removed]
>

#19373 From: "Arjan" <arjan@...>
Date: Mon Mar 8, 2010 2:06 pm
Subject: Re: Conversion 5.12-5.14 data
arjan_van_gi...
Send Email Send Email
 
Regarding #2

CHOOSE:SPELLIST is only viable in an ability file and needs a |Y or |N to valid.
You could tag on a |Y (making CHOOSE:SPELLLIST|Y) and see if this works.

PCGen 5.13 introduced the CHOOSE:SPELLS which is global and will pop up a
chooser any way you like.

I would choose to remake this Innate Spell feat to have the innate spell really
be listed as a spelllike ability by having the feat adding a special ability.
And having the special ability add a spelllike ability using the SPELLS tag.

If you need help with the syntax just ask.

Thanx,
Arjan

--- In PCGenListFileHelp@yahoogroups.com, "hharden71" <hharden71@...> wrote:
>
> I started with my 5.10 data and ran it through the 5.12 converter.
> Now I am trying to fix all the errors that come up when I load it into 5.14 so
I can make it ready to move on to 5.16 and beyond.
>
> I'm currently having difficulty with the following errors:
>
> 1.
>   Feat to add a Favored class to a character
>
>
>
> Rough Neighborhood  TYPE:General 		 ADD:FAVOREDCLASS|LIST 								
CHOOSE:Bard|Rogue|Fighter SELECT:1 																				 SOURCEPAGE:HFI
PRELEVELMAX:Q:1 									 PRESKILLMULT:1,Knowledge (Home Region)=2
DESC:You gain a favored class of Bard, Rogue, or Fighter
>
>
>
>
>
> 2.
>   SEVERE CHOOSE:SPELLLIST requires additional arguments in Innate Spell
>
>
>
> Innate Spell 	 TYPE:General  STACK:NO 										 MULT:YES CHOOSE:SPELLLIST
SELECT:1 																					 SOURCEPAGE:HFI 				 PREFEAT:3,Quicken
Spell,Silent Spell,Still Spell 																																											
DESC:You have mastered a spell so thoroughly you can now cast it as a spell-like
ability.
>
>
>
>
>
> 3.
>   errors complaining of Duplicate races
>
> #
>
> Elf (Blue) 	 BONUS:STAT|DEX|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnoll,Gnome,Halfling,Illrien,Sylvan 				
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 			 SAB:Immunity to sleep,Automatic
Search check if within 5' of secret/concealed door 	 SAB:save +2 vs enchantment
spells 					 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			 RACETYPE:Humanoid
RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> #
>
> Elf (Grey) 	 BONUS:STAT|INT|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnome,Halfling,Illtrien,Sylvan 					
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 				 SAB:Immunity to
sleep,Automatic Search check if within 5' of secret/concealed door  SAB:save +2
vs enchantment spells 							 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			
RACETYPE:Humanoid RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
>
>
>
> 4.
>  Another error... don't know how to fix this one.
>
> SEVERE Error parsing file file:equipmods.lst line 218: null
>
>
> Any assistance resolving these would be much appreciated.
>

#19374 From: "nmeofnrg" <nmeofnrg@...>
Date: Tue Mar 9, 2010 9:22 pm
Subject: adding books to PCGen
nmeofnrg
Send Email Send Email
 
I was wondering if it was possible to add books to the PCGen for D&D so that I
could have access to more then just the core books "officially" released by
WoTC. Btw, Hi Im new. I joined so that I could find out a bit more about the
PCGen ^_^

#19375 From: "Dave" <countbuggula@...>
Date: Tue Mar 9, 2010 10:23 pm
Subject: RE: adding books to PCGen
dbug_486
Send Email Send Email
 
Absolutely!



You just have to do it yourself - it's illegal to share content created for
those closed content books.  That said, the fine folks in this list are very
helpful in getting you through that process.  Just decide what
class/rule/feat you want to code up, figure out what it does, and ask in
those generic terms how to implement it in PCgen.



Good luck to you!



From: PCGenListFileHelp@yahoogroups.com
[mailto:PCGenListFileHelp@yahoogroups.com] On Behalf Of nmeofnrg
Sent: Tuesday, March 09, 2010 3:23 PM
To: PCGenListFileHelp@yahoogroups.com
Subject: [PCGenListFileHelp] adding books to PCGen





I was wondering if it was possible to add books to the PCGen for D&D so that
I could have access to more then just the core books "officially" released
by WoTC. Btw, Hi Im new. I joined so that I could find out a bit more about
the PCGen ^_^



No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
01:33:00



[Non-text portions of this message have been removed]

#19376 From: "hharden71" <hharden71@...>
Date: Wed Mar 10, 2010 1:22 am
Subject: Re: Conversion 5.12-5.14 data
hharden71
Send Email Send Email
 
Below is the output from the Debug Console
- Logging Level: Errors



I hope that this is useful in determining the nature of the problems.

-- listing properties --

java.runtime.name=Java(TM) SE Runtime Environment

sun.boot.library.path=C:\Program Files\Java\jre6\bin

java.vm.version=11.0-b16

java.vm.vendor=Sun Microsystems Inc.

java.vendor.url=http://java.sun.com/

path.separator=;

java.vm.name=Java HotSpot(TM) Client VM

file.encoding.pkg=sun.io

user.country=US

sun.java.launcher=SUN_STANDARD

sun.os.patch.level=Service Pack 1

java.vm.specification.name=Java Virtual Machine Specification

user.dir=C:\Documents and Settings\Henry Harde...

java.runtime.version=1.6.0_11-b03

java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment

java.endorsed.dirs=C:\Program Files\Java\jre6\lib\endorsed

os.arch=x86

java.io.tmpdir=C:\DOCUME~1\HENRYH~1\LOCALS~1\Temp\

line.separator=



java.vm.specification.vendor=Sun Microsystems Inc.

user.variant=

os.name=Windows XP

sun.jnu.encoding=Cp1252

java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\Sun\...

java.specification.name=Java Platform API Specification

java.class.version=50.0

sun.management.compiler=HotSpot Client Compiler

os.version=5.1

user.home=C:\Documents and Settings\Henry Harden

user.timezone=America/Phoenix

java.awt.printerjob=sun.awt.windows.WPrinterJob

file.encoding=Cp1252

java.specification.version=1.6

user.name=Henry Harden

java.class.path=pcgen.jar

java.vm.specification.version=1.0

sun.arch.data.model=32

java.home=C:\Program Files\Java\jre6

java.specification.vendor=Sun Microsystems Inc.

user.language=en

awt.toolkit=sun.awt.windows.WToolkit

java.vm.info=mixed mode, sharing

java.version=1.6.0_11

java.ext.dirs=C:\Program Files\Java\jre6\lib\ext;C:...

sun.boot.class.path=C:\Program Files\Java\jre6\lib\resour...

java.vendor=Sun Microsystems Inc.

swing.aatext=true

file.separator=\

java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport...

sun.cpu.endian=little

sun.io.unicode.encoding=UnicodeLittle

sun.desktop=windows

sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+m...

Memory: 20,464Kb total, 6,655.375Kb free, 97,600Kb max.

SEVERE plugin.lsttokens.AddLst Invalid ADD: Syntax: FAVOREDCLASS|LIST

SEVERE plugin.lsttokens.AddLst Please use ADD:SA|...

SEVERE plugin.lsttokens.AddLst Invalid ADD: Syntax: WEAPONPROFS|Shortbow
(Composite)|

SEVERE plugin.lsttokens.AddLst Please use ADD:SA|...

SEVERE plugin.lsttokens.choose.WeaponProfToken CHOOSE:WEAPONPROF arguments does
not contain matching brackets: 2|Sword (Long)[WEAPONPROF]|Sword
(Short)[WEAPONPROF]|Shortspear[WEAPONPROF]|Longspear[WEAPONPROF]|

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Elf (Wild)

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/monsters/rsrd_races_e_f.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Elf

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Elf

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Elf

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Gnome

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Half-Elf

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Half-Orc

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Halfling

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object name:
Human

Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst

Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst

WARNING: Not loading duplicate.

SEVERE plugin.lsttokens.choose.WeaponProfToken CHOOSE:WEAPONPROF arguments does
not contain matching brackets: 1|TYPE=MARTIAL[WEAPONPROF]|TYPE=EXOTIC

SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 218: null

SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:

java.util.NoSuchElementException

	 at java.util.StringTokenizer.nextToken(Unknown Source)

	 at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)

	 at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)

	 at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.access$1800(Unknown Source)

	 at pcgen.gui.MainSource$19.construct(Unknown Source)

	 at pcgen.util.SwingWorker$2.run(Unknown Source)

	 at java.lang.Thread.run(Unknown Source)

SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 220: null

SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:

java.util.NoSuchElementException

	 at java.util.StringTokenizer.nextToken(Unknown Source)

	 at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)

	 at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)

	 at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.access$1800(Unknown Source)

	 at pcgen.gui.MainSource$19.construct(Unknown Source)

	 at pcgen.util.SwingWorker$2.run(Unknown Source)

	 at java.lang.Thread.run(Unknown Source)

SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 222: null

SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:

java.util.NoSuchElementException

	 at java.util.StringTokenizer.nextToken(Unknown Source)

	 at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)

	 at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)

	 at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.access$1800(Unknown Source)

	 at pcgen.gui.MainSource$19.construct(Unknown Source)

	 at pcgen.util.SwingWorker$2.run(Unknown Source)

	 at java.lang.Thread.run(Unknown Source)

SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equip-custom-items.lst line 25: null

SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:

java.util.NoSuchElementException

	 at java.util.StringTokenizer.nextToken(Unknown Source)

	 at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)

	 at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)

	 at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.access$1800(Unknown Source)

	 at pcgen.gui.MainSource$19.construct(Unknown Source)

	 at pcgen.util.SwingWorker$2.run(Unknown Source)

	 at java.lang.Thread.run(Unknown Source)

SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equip-custom-items.lst line 29: null

SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:

java.util.NoSuchElementException

	 at java.util.StringTokenizer.nextToken(Unknown Source)

	 at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)

	 at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)

	 at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)

	 at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.loadCampaigns(Unknown Source)

	 at pcgen.gui.MainSource.access$1800(Unknown Source)

	 at pcgen.gui.MainSource$19.construct(Unknown Source)

	 at pcgen.util.SwingWorker$2.run(Unknown Source)

	 at java.lang.Thread.run(Unknown Source)



--- In PCGenListFileHelp@yahoogroups.com, Andrew Maitland <drew0500@...> wrote:
>
> Hi,
>
> Posting the complete entries isn't really useful, in fact it's
> counterproductive. What one of us monkeys need to see is the ACTUAL text
> of the error messages.
>
> #1 - I'm not understanding, what is the error message?
>
> #2 - It appears there is a mistake in the CHOOSE:SPELLLIST entry. I'll
> need to have a coder take a look at decipher what the correct SYNTAX
> should be; it appears it is a copy/paste from another tag.
>
> #3 - If it's saying you have a duplicate Elf, posting two elves with
> different names isn't the problem. What you have is the Same exact name
> being used in the same set or across multiple sets. So if you have two
> 'Elf (Blue)' in your set, and one of them isn't using .MOD then that is
> the issue.
>
> #4 - You have an illegal character or something is very much incorrect
> in the equipmods file on that line "218"
>
> On 3/7/2010 9:42 PM, hharden71 wrote:
> > I started with my 5.10 data and ran it through the 5.12 converter.
> > Now I am trying to fix all the errors that come up when I load it into 5.14
so I can make it ready to move on to 5.16 and beyond.
> >
> > I'm currently having difficulty with the following errors:
> >
> > 1.
> >    Feat to add a Favored class to a character
> >
> >
> >
> > Rough Neighborhood  TYPE:General 		 ADD:FAVOREDCLASS|LIST 								
CHOOSE:Bard|Rogue|Fighter SELECT:1 																				 SOURCEPAGE:HFI
PRELEVELMAX:Q:1 									 PRESKILLMULT:1,Knowledge (Home Region)=2
DESC:You gain a favored class of Bard, Rogue, or Fighter
> >
> >
> >
> >
> >
> > 2.
> >    SEVERE CHOOSE:SPELLLIST requires additional arguments in Innate Spell
> >
> >
> >
> > Innate Spell 	 TYPE:General  STACK:NO 										 MULT:YES CHOOSE:SPELLLIST
SELECT:1 																					 SOURCEPAGE:HFI 				 PREFEAT:3,Quicken
Spell,Silent Spell,Still Spell 																																											
DESC:You have mastered a spell so thoroughly you can now cast it as a spell-like
ability.
> >
> >
> >
> >
> >
> > 3.
> >    errors complaining of Duplicate races
> >
> > #
> >
> > Elf (Blue) 	 BONUS:STAT|DEX|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnoll,Gnome,Halfling,Illrien,Sylvan 				
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 			 SAB:Immunity to sleep,Automatic
Search check if within 5' of secret/concealed door 	 SAB:save +2 vs enchantment
spells 					 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			 RACETYPE:Humanoid
RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> > #
> >
> > Elf (Grey) 	 BONUS:STAT|INT|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnome,Halfling,Illtrien,Sylvan 					
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 				 SAB:Immunity to
sleep,Automatic Search check if within 5' of secret/concealed door  SAB:save +2
vs enchantment spells 							 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			
RACETYPE:Humanoid RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> >
> >
> >
> > 4.
> >   Another error... don't know how to fix this one.
> >
> > SEVERE Error parsing file file:equipmods.lst line 218: null
> >
> >
> > Any assistance resolving these would be much appreciated.
> >
> >
> >
> >
> > ------------------------------------
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
>
> --
>
> Andrew Maitland (LegacyKing)
> Admin Silverback, PCGen Board of Directors
> Data Chimp, Docs Tamarin
> Unique Title "Quick-Silverback Tracker Monkey"
>

#19377 From: "hharden71" <hharden71@...>
Date: Wed Mar 10, 2010 1:25 am
Subject: Re: Conversion 5.12-5.14 data
hharden71
Send Email Send Email
 
The suggested fix for #2 seems to have fixed it.
I will re-code it once I get the data to load cleanly and updated to 5.16.2.
Thanks.  :)

--- In PCGenListFileHelp@yahoogroups.com, "Arjan" <arjan@...> wrote:
>
> Regarding #2
>
> CHOOSE:SPELLIST is only viable in an ability file and needs a |Y or |N to
valid. You could tag on a |Y (making CHOOSE:SPELLLIST|Y) and see if this works.
>
> PCGen 5.13 introduced the CHOOSE:SPELLS which is global and will pop up a
chooser any way you like.
>
> I would choose to remake this Innate Spell feat to have the innate spell
really be listed as a spelllike ability by having the feat adding a special
ability. And having the special ability add a spelllike ability using the SPELLS
tag.
>
> If you need help with the syntax just ask.
>
> Thanx,
> Arjan
>

#19378 From: "Catullusque" <dosisek@...>
Date: Wed Mar 10, 2010 4:41 am
Subject: Re: Applying a TOHIT bonus only to simple melee weapons
Catullusque
Send Email Send Email
 
Thanks, Barak.  It's amazing how much better things work when I follow
instructions :-)

I've now got the bonus applying to exactly the weapons I want -- though
for dual-use weapons like Dagger and Hammer, I still can't figure out
how to get it to apply only to the melee and not the ranged usage.  For
now, I'll be marking that up by hand.  FWIW, I tried qualifying "TOHIT"
as "TOHIT.MELEE", which I have seen as a BONUS:COMBAT specification:

BONUS:WEAPONPROF=TYPE.SimpleMelee|TOHIT.MELEE|(max(STR,WIS)-STR)|TYPE=In\
tuitive
... but that made the specification completely ineffective, as far as I
could see.

I am curious why you guys sent me down the path of defining SimpleMelee
as a new weapon proficiency category, rather than as a new weapon type
(which would then show up in the weapon description box under
Inventory).  But it's working, so I'll stick with it.

Thanks again to both you and Andrew.

-- Damian


--- In PCGenListFileHelp@yahoogroups.com, "Barak" <barak@...> wrote:
>
> > -----Original Message-----
> >    <tab>BONUS:COMBAT|TOHIT.SimpleMelee|(max(STR,WIS)-
> > STR)|TYPE=Intuitive
>
> Use the docs, Luke!  :p
>
>
BONUS:WEAPONPROF=TYPE.SimpleMelee|TOHIT||(max(STR,WIS)-STR)|TYPE=Intuiti\
ve
>
> Barak
>



[Non-text portions of this message have been removed]

#19379 From: "Wayland" <WBA@...>
Date: Wed Mar 10, 2010 6:22 am
Subject: Re: How to apply an initiative penalty to an item
skipaugur
Send Email Send Email
 
Thanks - it looks simple enough... But I still don't get it.

I'm in the Item Customizer, but don't see how to add a new section. Am I in the
wrong place? Should I perhaps be editing one of the files in customsources
manually? (They all have dire notes about manual editing so I was trying to use
the list editor).

- Skip

--- In PCGenListFileHelp@yahoogroups.com, Andrew Maitland <drew0500@...> wrote:
>
> Hi,
>
>
> On 3/6/2010 2:53 PM, Wayland wrote:
> > Hi, my GM gave me a ring with some bonuses that also applies an initiative
penalty; I tried adding s SProp "BONUS:COMBAT|INITIATIVE|-2" in the Custom Item
dialog but it didn't like the | symbol. How would I approach that?
> >
>
> Don't use it in SPROP,  place it in it's own section.
>
>
> Ring of Penalty <> SPROP:This ring penalizes Initiative by -2 <>
> BONUS:COMBAT|INITIATIVE|-2 <> TYPE:Ring.Magic
>
> See?
>
>
>
> > Thanks!
> >
> >
> >
> > ------------------------------------
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
>
> --
>
> Andrew Maitland (LegacyKing)
> Admin Silverback, PCGen Board of Directors
> Data Chimp, Docs Tamarin
> Unique Title "Quick-Silverback Tracker Monkey"
>

#19380 From: "karianna03" <martijnverburg@...>
Date: Wed Mar 10, 2010 9:29 am
Subject: Re: animal companion creation...
karianna03
Send Email Send Email
 
Sorry still need to do this for you I know!

--- In PCGenListFileHelp@yahoogroups.com, "karianna03" <martijnverburg@...>
wrote:
>
> OK, I need to fire up PCGen on my Mac tonight and try to get you some
instructions on how to get the debug info, I'll post in about 15 hours or so.
>
> K
>
> --- In PCGenListFileHelp@yahoogroups.com, Sam Elmore <sam9am@> wrote:
> >
> > Yes, I've got it set to 1024-2048 ...
> >
> > On 05 Mar 2010, at 11:11 AM, karianna03 wrote:
> >
> > > Hi Sam,
> > >
> > > Before we take that step, I assume you increased the memory that
> > > PCGen runs with?
> > >
> > > K
> > >
> > > --- In PCGenListFileHelp@yahoogroups.com, Sam Elmore <sam9am@>
> > > wrote:
> > > >
> > > > >> Are you getting any messages in the PCGen or Java Consoles?
> > > > >>
> > > >
> > > >
> > > > Could someone tell me how to copy and paste the message from the
> > > debug
> > > > console to an email? I can't seem to do that either now that I've
> > > got
> > > > it up and running again.......
> > > >
> > > > Sam
> > > >
> > >
> > >
> > >
> >
> > ---
> > Our Lord calls us and asks us to tell him of our love and to repeat it
> > over and over again all through our sufferings. Every cross, great or
> > small, even small annoyances, are the voice of the Beloved.  He is
> > asking for a declaration of love from us to last whilst the suffering
> > lasts.
> >
> > Blessed Charles de Foucauld
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
>

#19381 From: "Arjan" <arjan@...>
Date: Wed Mar 10, 2010 9:35 am
Subject: Re: Conversion 5.12-5.14 data
arjan_van_gi...
Send Email Send Email
 
Those are a lot of errors. Good luck with that ;)

Regarding #4 the duplicate Elf. It seems you have a lst file which has a lot of
duplicate races in it. (FC_races.lst). As far as I can see it you have 3 options
here:
- rework the duplicate races in the FC_races.lst to be a .MOD of the original
race in the SRD35. This would be my prefered option. But you might want to
postpone this until you get to 5.16.2
- Turn on the "Allow newer sources to override duplicate objects from older
sources"in the preferences under PCGen - Sources. Make sure your FC_races.lst
has a more recent source date than the SRD35.
- Lazy mans way out: rename the races in the FC_races.lst (i.e. use a FC_ before
the name) and use OUTPUTNAME to fix the display on outputsheets.

Hope this helps,
Arjan

--- In PCGenListFileHelp@yahoogroups.com, "hharden71" <hharden71@...> wrote:
>
> Below is the output from the Debug Console
> - Logging Level: Errors
>
>
>
> I hope that this is useful in determining the nature of the problems.
>
> -- listing properties --
>
> java.runtime.name=Java(TM) SE Runtime Environment
>
> sun.boot.library.path=C:\Program Files\Java\jre6\bin
>
> java.vm.version=11.0-b16
>
> java.vm.vendor=Sun Microsystems Inc.
>
> java.vendor.url=http://java.sun.com/
>
> path.separator=;
>
> java.vm.name=Java HotSpot(TM) Client VM
>
> file.encoding.pkg=sun.io
>
> user.country=US
>
> sun.java.launcher=SUN_STANDARD
>
> sun.os.patch.level=Service Pack 1
>
> java.vm.specification.name=Java Virtual Machine Specification
>
> user.dir=C:\Documents and Settings\Henry Harde...
>
> java.runtime.version=1.6.0_11-b03
>
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
>
> java.endorsed.dirs=C:\Program Files\Java\jre6\lib\endorsed
>
> os.arch=x86
>
> java.io.tmpdir=C:\DOCUME~1\HENRYH~1\LOCALS~1\Temp\
>
> line.separator=
>
>
>
> java.vm.specification.vendor=Sun Microsystems Inc.
>
> user.variant=
>
> os.name=Windows XP
>
> sun.jnu.encoding=Cp1252
>
> java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\Sun\...
>
> java.specification.name=Java Platform API Specification
>
> java.class.version=50.0
>
> sun.management.compiler=HotSpot Client Compiler
>
> os.version=5.1
>
> user.home=C:\Documents and Settings\Henry Harden
>
> user.timezone=America/Phoenix
>
> java.awt.printerjob=sun.awt.windows.WPrinterJob
>
> file.encoding=Cp1252
>
> java.specification.version=1.6
>
> user.name=Henry Harden
>
> java.class.path=pcgen.jar
>
> java.vm.specification.version=1.0
>
> sun.arch.data.model=32
>
> java.home=C:\Program Files\Java\jre6
>
> java.specification.vendor=Sun Microsystems Inc.
>
> user.language=en
>
> awt.toolkit=sun.awt.windows.WToolkit
>
> java.vm.info=mixed mode, sharing
>
> java.version=1.6.0_11
>
> java.ext.dirs=C:\Program Files\Java\jre6\lib\ext;C:...
>
> sun.boot.class.path=C:\Program Files\Java\jre6\lib\resour...
>
> java.vendor=Sun Microsystems Inc.
>
> swing.aatext=true
>
> file.separator=\
>
> java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport...
>
> sun.cpu.endian=little
>
> sun.io.unicode.encoding=UnicodeLittle
>
> sun.desktop=windows
>
> sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+m...
>
> Memory: 20,464Kb total, 6,655.375Kb free, 97,600Kb max.
>
> SEVERE plugin.lsttokens.AddLst Invalid ADD: Syntax: FAVOREDCLASS|LIST
>
> SEVERE plugin.lsttokens.AddLst Please use ADD:SA|...
>
> SEVERE plugin.lsttokens.AddLst Invalid ADD: Syntax: WEAPONPROFS|Shortbow
(Composite)|
>
> SEVERE plugin.lsttokens.AddLst Please use ADD:SA|...
>
> SEVERE plugin.lsttokens.choose.WeaponProfToken CHOOSE:WEAPONPROF arguments
does not contain matching brackets: 2|Sword (Long)[WEAPONPROF]|Sword
(Short)[WEAPONPROF]|Shortspear[WEAPONPROF]|Longspear[WEAPONPROF]|
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf (Wild)
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/monsters/rsrd_races_e_f.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Gnome
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Half-Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Half-Orc
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Halfling
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Human
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE plugin.lsttokens.choose.WeaponProfToken CHOOSE:WEAPONPROF arguments
does not contain matching brackets: 1|TYPE=MARTIAL[WEAPONPROF]|TYPE=EXOTIC
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 218: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 220: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 222: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equip-custom-items.lst line 25: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equip-custom-items.lst line 29: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
>
>
> --- In PCGenListFileHelp@yahoogroups.com, Andrew Maitland <drew0500@> wrote:
> >
> > Hi,
> >
> > Posting the complete entries isn't really useful, in fact it's
> > counterproductive. What one of us monkeys need to see is the ACTUAL text
> > of the error messages.
> >
> > #1 - I'm not understanding, what is the error message?
> >
> > #2 - It appears there is a mistake in the CHOOSE:SPELLLIST entry. I'll
> > need to have a coder take a look at decipher what the correct SYNTAX
> > should be; it appears it is a copy/paste from another tag.
> >
> > #3 - If it's saying you have a duplicate Elf, posting two elves with
> > different names isn't the problem. What you have is the Same exact name
> > being used in the same set or across multiple sets. So if you have two
> > 'Elf (Blue)' in your set, and one of them isn't using .MOD then that is
> > the issue.
> >
> > #4 - You have an illegal character or something is very much incorrect
> > in the equipmods file on that line "218"
> >
> > On 3/7/2010 9:42 PM, hharden71 wrote:
> > > I started with my 5.10 data and ran it through the 5.12 converter.
> > > Now I am trying to fix all the errors that come up when I load it into
5.14 so I can make it ready to move on to 5.16 and beyond.
> > >
> > > I'm currently having difficulty with the following errors:
> > >
> > > 1.
> > >    Feat to add a Favored class to a character
> > >
> > >
> > >
> > > Rough Neighborhood  TYPE:General 		 ADD:FAVOREDCLASS|LIST 								
CHOOSE:Bard|Rogue|Fighter SELECT:1 																				 SOURCEPAGE:HFI
PRELEVELMAX:Q:1 									 PRESKILLMULT:1,Knowledge (Home Region)=2
DESC:You gain a favored class of Bard, Rogue, or Fighter
> > >
> > >
> > >
> > >
> > >
> > > 2.
> > >    SEVERE CHOOSE:SPELLLIST requires additional arguments in Innate Spell
> > >
> > >
> > >
> > > Innate Spell 	 TYPE:General  STACK:NO 										 MULT:YES CHOOSE:SPELLLIST
SELECT:1 																					 SOURCEPAGE:HFI 				 PREFEAT:3,Quicken
Spell,Silent Spell,Still Spell 																																											
DESC:You have mastered a spell so thoroughly you can now cast it as a spell-like
ability.
> > >
> > >
> > >
> > >
> > >
> > > 3.
> > >    errors complaining of Duplicate races
> > >
> > > #
> > >
> > > Elf (Blue) 	 BONUS:STAT|DEX|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnoll,Gnome,Halfling,Illrien,Sylvan 				
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 			 SAB:Immunity to sleep,Automatic
Search check if within 5' of secret/concealed door 	 SAB:save +2 vs enchantment
spells 					 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			 RACETYPE:Humanoid
RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> > > #
> > >
> > > Elf (Grey) 	 BONUS:STAT|INT|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnome,Halfling,Illtrien,Sylvan 					
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 				 SAB:Immunity to
sleep,Automatic Search check if within 5' of secret/concealed door  SAB:save +2
vs enchantment spells 							 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			
RACETYPE:Humanoid RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> > >
> > >
> > >
> > > 4.
> > >   Another error... don't know how to fix this one.
> > >
> > > SEVERE Error parsing file file:equipmods.lst line 218: null
> > >
> > >
> > > Any assistance resolving these would be much appreciated.
> > >
> > >
> > >
> > >
> > > ------------------------------------
> > >
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> >
> > --
> >
> > Andrew Maitland (LegacyKing)
> > Admin Silverback, PCGen Board of Directors
> > Data Chimp, Docs Tamarin
> > Unique Title "Quick-Silverback Tracker Monkey"
> >
>

#19382 From: "Arjan" <arjan@...>
Date: Wed Mar 10, 2010 9:44 am
Subject: Re: Conversion 5.12-5.14 data
arjan_van_gi...
Send Email Send Email
 
Doh, my previous post was regarding #3, not #4. O well.

Regarding #4 the "null" errors. Would you mind posting (one of) the lines to
which they refer?
SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 218: null

This one for instance? I'd like to look at the code and see if I can spot the
problem. Please anonymize the code if it concerns closed content.

Arjan

--- In PCGenListFileHelp@yahoogroups.com, "hharden71" <hharden71@...> wrote:
>
> Below is the output from the Debug Console
> - Logging Level: Errors
>
>
>
> I hope that this is useful in determining the nature of the problems.
>
> -- listing properties --
>
> java.runtime.name=Java(TM) SE Runtime Environment
>
> sun.boot.library.path=C:\Program Files\Java\jre6\bin
>
> java.vm.version=11.0-b16
>
> java.vm.vendor=Sun Microsystems Inc.
>
> java.vendor.url=http://java.sun.com/
>
> path.separator=;
>
> java.vm.name=Java HotSpot(TM) Client VM
>
> file.encoding.pkg=sun.io
>
> user.country=US
>
> sun.java.launcher=SUN_STANDARD
>
> sun.os.patch.level=Service Pack 1
>
> java.vm.specification.name=Java Virtual Machine Specification
>
> user.dir=C:\Documents and Settings\Henry Harde...
>
> java.runtime.version=1.6.0_11-b03
>
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
>
> java.endorsed.dirs=C:\Program Files\Java\jre6\lib\endorsed
>
> os.arch=x86
>
> java.io.tmpdir=C:\DOCUME~1\HENRYH~1\LOCALS~1\Temp\
>
> line.separator=
>
>
>
> java.vm.specification.vendor=Sun Microsystems Inc.
>
> user.variant=
>
> os.name=Windows XP
>
> sun.jnu.encoding=Cp1252
>
> java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\Sun\...
>
> java.specification.name=Java Platform API Specification
>
> java.class.version=50.0
>
> sun.management.compiler=HotSpot Client Compiler
>
> os.version=5.1
>
> user.home=C:\Documents and Settings\Henry Harden
>
> user.timezone=America/Phoenix
>
> java.awt.printerjob=sun.awt.windows.WPrinterJob
>
> file.encoding=Cp1252
>
> java.specification.version=1.6
>
> user.name=Henry Harden
>
> java.class.path=pcgen.jar
>
> java.vm.specification.version=1.0
>
> sun.arch.data.model=32
>
> java.home=C:\Program Files\Java\jre6
>
> java.specification.vendor=Sun Microsystems Inc.
>
> user.language=en
>
> awt.toolkit=sun.awt.windows.WToolkit
>
> java.vm.info=mixed mode, sharing
>
> java.version=1.6.0_11
>
> java.ext.dirs=C:\Program Files\Java\jre6\lib\ext;C:...
>
> sun.boot.class.path=C:\Program Files\Java\jre6\lib\resour...
>
> java.vendor=Sun Microsystems Inc.
>
> swing.aatext=true
>
> file.separator=\
>
> java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport...
>
> sun.cpu.endian=little
>
> sun.io.unicode.encoding=UnicodeLittle
>
> sun.desktop=windows
>
> sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+m...
>
> Memory: 20,464Kb total, 6,655.375Kb free, 97,600Kb max.
>
> SEVERE plugin.lsttokens.AddLst Invalid ADD: Syntax: FAVOREDCLASS|LIST
>
> SEVERE plugin.lsttokens.AddLst Please use ADD:SA|...
>
> SEVERE plugin.lsttokens.AddLst Invalid ADD: Syntax: WEAPONPROFS|Shortbow
(Composite)|
>
> SEVERE plugin.lsttokens.AddLst Please use ADD:SA|...
>
> SEVERE plugin.lsttokens.choose.WeaponProfToken CHOOSE:WEAPONPROF arguments
does not contain matching brackets: 2|Sword (Long)[WEAPONPROF]|Sword
(Short)[WEAPONPROF]|Shortspear[WEAPONPROF]|Longspear[WEAPONPROF]|
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf (Wild)
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/monsters/rsrd_races_e_f.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Gnome
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Half-Elf
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Half-Orc
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Halfling
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader WARNING: Duplicate object
name: Human
>
> Orignal:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/srd35/basics/rsrd_races__base.lst
>
> Duplicate:
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_races.lst
>
> WARNING: Not loading duplicate.
>
> SEVERE plugin.lsttokens.choose.WeaponProfToken CHOOSE:WEAPONPROF arguments
does not contain matching brackets: 1|TYPE=MARTIAL[WEAPONPROF]|TYPE=EXOTIC
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 218: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 220: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equipmods.lst line 222: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentModifierLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equip-custom-items.lst line 25: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Error parsing file
file:/C:/Documents%20and%20Settings/Henry%20Harden/Desktop/pcgen5141/data/d20ogl\
/FaerunCampaign/FC_equip-custom-items.lst line 29: null
>
> SEVERE pcgen.persistence.lst.LstObjectFileLoader Ignoring error:
>
> java.util.NoSuchElementException
>
>  at java.util.StringTokenizer.nextToken(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.EquipmentLoader.parseLine(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFile(Unknown Source)
>
>  at pcgen.persistence.lst.LstObjectFileLoader.loadLstFiles(Unknown Source)
>
>  at pcgen.persistence.lst.LstSystemLoader.loadCampaigns(Unknown Source)
>
>  at pcgen.persistence.PersistenceManager.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.loadCampaigns(Unknown Source)
>
>  at pcgen.gui.MainSource.access$1800(Unknown Source)
>
>  at pcgen.gui.MainSource$19.construct(Unknown Source)
>
>  at pcgen.util.SwingWorker$2.run(Unknown Source)
>
>  at java.lang.Thread.run(Unknown Source)
>
>
>
> --- In PCGenListFileHelp@yahoogroups.com, Andrew Maitland <drew0500@> wrote:
> >
> > Hi,
> >
> > Posting the complete entries isn't really useful, in fact it's
> > counterproductive. What one of us monkeys need to see is the ACTUAL text
> > of the error messages.
> >
> > #1 - I'm not understanding, what is the error message?
> >
> > #2 - It appears there is a mistake in the CHOOSE:SPELLLIST entry. I'll
> > need to have a coder take a look at decipher what the correct SYNTAX
> > should be; it appears it is a copy/paste from another tag.
> >
> > #3 - If it's saying you have a duplicate Elf, posting two elves with
> > different names isn't the problem. What you have is the Same exact name
> > being used in the same set or across multiple sets. So if you have two
> > 'Elf (Blue)' in your set, and one of them isn't using .MOD then that is
> > the issue.
> >
> > #4 - You have an illegal character or something is very much incorrect
> > in the equipmods file on that line "218"
> >
> > On 3/7/2010 9:42 PM, hharden71 wrote:
> > > I started with my 5.10 data and ran it through the 5.12 converter.
> > > Now I am trying to fix all the errors that come up when I load it into
5.14 so I can make it ready to move on to 5.16 and beyond.
> > >
> > > I'm currently having difficulty with the following errors:
> > >
> > > 1.
> > >    Feat to add a Favored class to a character
> > >
> > >
> > >
> > > Rough Neighborhood  TYPE:General 		 ADD:FAVOREDCLASS|LIST 								
CHOOSE:Bard|Rogue|Fighter SELECT:1 																				 SOURCEPAGE:HFI
PRELEVELMAX:Q:1 									 PRESKILLMULT:1,Knowledge (Home Region)=2
DESC:You gain a favored class of Bard, Rogue, or Fighter
> > >
> > >
> > >
> > >
> > >
> > > 2.
> > >    SEVERE CHOOSE:SPELLLIST requires additional arguments in Innate Spell
> > >
> > >
> > >
> > > Innate Spell 	 TYPE:General  STACK:NO 										 MULT:YES CHOOSE:SPELLLIST
SELECT:1 																					 SOURCEPAGE:HFI 				 PREFEAT:3,Quicken
Spell,Silent Spell,Still Spell 																																											
DESC:You have mastered a spell so thoroughly you can now cast it as a spell-like
ability.
> > >
> > >
> > >
> > >
> > >
> > > 3.
> > >    errors complaining of Duplicate races
> > >
> > > #
> > >
> > > Elf (Blue) 	 BONUS:STAT|DEX|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnoll,Gnome,Halfling,Illrien,Sylvan 				
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 			 SAB:Immunity to sleep,Automatic
Search check if within 5' of secret/concealed door 	 SAB:save +2 vs enchantment
spells 					 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			 RACETYPE:Humanoid
RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> > > #
> > >
> > > Elf (Grey) 	 BONUS:STAT|INT|2  BONUS:STAT|CON|-2 							 FAVCLASS:Wizard 
FACE:5 REACH:5  STARTFEATS:1 SIZE:M MOVE:Walk,30 VISION:Low-light 			
LANGAUTO:Common,Elven 	
LANGBONUS:Alaskan,Celestial,Moxie,Gnome,Halfling,Illtrien,Sylvan 					
AUTO:WEAPONPROF|Longsword|Rapier|Longbow|Shortbow 
BONUS:SKILL|Listen,Search,Spot|2|TYPE=Racial 				 SAB:Immunity to
sleep,Automatic Search check if within 5' of secret/concealed door  SAB:save +2
vs enchantment spells 							 TEMPLATE:CHOOSE:FRCS Regions|Turn off Regions 			
RACETYPE:Humanoid RACESUBTYPE:Elf  TYPE:Humanoid CR:1/2 SOURCEPAGE:HFI
> > >
> > >
> > >
> > > 4.
> > >   Another error... don't know how to fix this one.
> > >
> > > SEVERE Error parsing file file:equipmods.lst line 218: null
> > >
> > >
> > > Any assistance resolving these would be much appreciated.
> > >
> > >
> > >
> > >
> > > ------------------------------------
> > >
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> >
> > --
> >
> > Andrew Maitland (LegacyKing)
> > Admin Silverback, PCGen Board of Directors
> > Data Chimp, Docs Tamarin
> > Unique Title "Quick-Silverback Tracker Monkey"
> >
>

Messages 19353 - 19382 of 23640   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help