Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eframe: "App quit unexpectedly" on macOS #2768

Closed
bash opened this issue Feb 28, 2023 · 10 comments · Fixed by #3053
Closed

eframe: "App quit unexpectedly" on macOS #2768

bash opened this issue Feb 28, 2023 · 10 comments · Fixed by #3053
Labels
bug Something is broken

Comments

@bash
Copy link
Contributor

bash commented Feb 28, 2023

Describe the bug
Sometimes when I close my eframe app on macOS, I receive a crash notification from macOS saying that the "app quit unexpectedly".

To Reproduce
I have created a minimal reproducible example here:
https://github.com/bash/egui-issue-2768/blob/main/src/main.rs
I'm using the latest version of eframe from the master branch.

It can be a bit finicky to observe the crash message.
Sometimes it happens a few times in a row, then it doesn't.

Some observations:

  • It only seems happens when the persistence crate feature is enabled and persist_native_window returns true.
  • It does not happen when I quit the app using ⌘ Q.
  • It does not happen when run_and_return is disabled in the NativeOptions.

Expected behavior
No crash notification.

Screenshots
Screenshot 2023-02-28 at 18 29 57

Desktop:

  • OS: macOS
  • Version 13.0
@emilk
Copy link
Owner

emilk commented Feb 28, 2023

Thanks for the minimal reproduce!

We should be able to get a callstack by installing a signal handler (similar to https://github.com/rerun-io/rerun/blob/main/crates/rerun/src/crash_handler.rs)

@aburd
Copy link

aburd commented Mar 13, 2023

Thanks for making this issue. I have something similar.

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               fast-clipboard [6304]
Path:                  /Users/USER/*/fast-clipboard
Identifier:            fast-clipboard
Version:               ???
Code Type:             ARM-64 (Native)
Parent Process:        zsh [30614]
Responsible:           Terminal [7199]
User ID:               502

Date/Time:             2023-03-13 14:43:36.7386 +0900
OS Version:            macOS 13.2.1 (22D68)
Report Version:        12
Anonymous UUID:        F20D36F7-396B-F5B7-3352-D26205D2A206

Sleep/Wake UUID:       704C9633-A21B-453B-8B6E-7A9F0A316830

Time Awake Since Boot: 81000 seconds
Time Since Wake:       16854 seconds

System Integrity Protection: enabled

Crashed Thread:        0  main  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BREAKPOINT (SIGTRAP)
Exception Codes:       0x0000000000000001, 0x000000019ae807dc

Termination Reason:    Namespace SIGNAL, Code 5 Trace/BPT trap: 5
Terminating Process:   exc handler [6304]

Application Specific Backtrace 0:
0   CoreFoundation                      0x00000001979943e8 __exceptionPreprocess + 176
1   libobjc.A.dylib                     0x00000001974deea8 objc_exception_throw + 60
2   Foundation                          0x0000000198817b4c -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 628
3   Foundation                          0x0000000198817884 -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 136
4   Foundation                          0x0000000198817550 -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:context:] + 196
5   AppKit                              0x000000019b1591c0 -[_NSTouchBarFinderObservation invalidate] + 264
6   AppKit                              0x000000019b15a520 ___NSTouchBarFinderSetNeedsUpdateOnMain_block_invoke_2 + 628
7   AppKit                              0x000000019ac44910 NSDisplayCycleObserverInvoke + 168
8   AppKit                              0x000000019ac4456c NSDisplayCycleFlush + 644
9   QuartzCore                          0x000000019efaf95c _ZN2CA11Transaction19run_commit_handlersE18CATransactionPhase + 120
10  QuartzCore                          0x000000019efae6d0 _ZN2CA11Transaction6commitEv + 324
11  AppKit                              0x000000019acc6ae4 __62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke + 272
12  AppKit                              0x000000019b3a4a28 ___NSRunLoopObserverCreateWithHandler_block_invoke + 64
13  CoreFoundation                      0x0000000197918db8 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 36
14  CoreFoundation                      0x0000000197918ca4 __CFRunLoopDoObservers + 532
15  CoreFoundation                      0x00000001979182dc __CFRunLoopRun + 784
16  CoreFoundation                      0x0000000197917878 CFRunLoopRunSpecific + 612
17  HIToolbox                           0x00000001a0ff7fa0 RunCurrentEventLoopInMode + 292
18  HIToolbox                           0x00000001a0ff7c30 ReceiveNextEventCommon + 236
19  HIToolbox                           0x00000001a0ff7b2c _BlockUntilNextEventMatchingListInModeWithFilter + 72
20  AppKit                              0x000000019ab9d84c _DPSNextEvent + 632
21  AppKit                              0x000000019ab9c9dc -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 728
22  AppKit                              0x000000019ab90e0c -[NSApplication run] + 464
23  fast-clipboard                      0x00000001006968e0 _ZN61_$LT$$LP$$RP$$u20$as$u20$objc2..message..MessageArguments$GT$8__invoke17h91ebd089c3bd3626E + 64
24  fast-clipboard                      0x0000000100697cf4 _ZN5objc27message8platform15send_unverified28_$u7b$$u7b$closure$u7d$$u7d$17hf344f5e33163c46cE + 40
25  fast-clipboard                      0x0000000100696634 _ZN5objc27message15conditional_try17hf73f2593dd8e1751E + 40
26  fast-clipboard                      0x000000010069702c _ZN5objc27message8platform15send_unverified17h34d26d65013b7cb0E + 72
27  fast-clipboard                      0x0000000100669c20 _ZN5objc27message15MessageReceiver12send_message17h44bcd882f0a0cebeE + 112

pan93412 added a commit to pan93412/egui that referenced this issue Jun 4, 2023
The approach of emilk#1889 may remove the observer of a view
twice, which produces the Obj-C Exception:

    Cannot remove an observer <...> for the key path
    "nextResponder" from <WinitView ...> because
    it is not registered as an observer.

The above message can only be seen when attaching the
application to debugger. Users normally see:

    [1]    *** trace trap  cargo run

This commit fixes it by only running event_loop twice
on Windows. Besides:

* We have set ControlFlow::Exit on 'Event::LoopDestoryed',
  'EventResult::Exit' and on error; therefore, it is safe
  to not calling `set_exit()`.
* This commit also fix the persistence function in macOS.
  It can't store the content in Memory due to this exception.

Fixed: emilk#2768 (eframe: "App quit unexpectedly" on macOS)
Signed-off-by: pan93412 <pan93412@gmail.com>
pan93412 added a commit to pan93412/egui that referenced this issue Jun 4, 2023
The approach of emilk#1889 may remove observers in a view
twice, which produces the Obj-C Exception:

    Cannot remove an observer <...> for the key path
    "nextResponder" from <WinitView ...> because
    it is not registered as an observer.

The above message can only be seen when attaching the
application to debugger. Users normally see:

    [1]    *** trace trap  cargo run

This commit fixes it by only running `event_loop.run_return()`
twice on Windows. Besides:

* We have set `ControlFlow::Exit` on `Event::LoopDestroyed`,
  `EventResult::Exit` and on error; therefore, it is safe
  to not calling `set_exit()`.
* This commit also fix the persistence function in macOS.
  It can't store the content in Memory due to this exception.

Fixed: emilk#2768 (eframe: "App quit unexpectedly" on macOS)
Signed-off-by: pan93412 <pan93412@gmail.com>
emilk pushed a commit that referenced this issue Jun 5, 2023
The approach of #1889 may remove observers in a view
twice, which produces the Obj-C Exception:

    Cannot remove an observer <...> for the key path
    "nextResponder" from <WinitView ...> because
    it is not registered as an observer.

The above message can only be seen when attaching the
application to debugger. Users normally see:

    [1]    *** trace trap  cargo run

This commit fixes it by only running `event_loop.run_return()`
twice on Windows. Besides:

* We have set `ControlFlow::Exit` on `Event::LoopDestroyed`,
  `EventResult::Exit` and on error; therefore, it is safe
  to not calling `set_exit()`.
* This commit also fix the persistence function in macOS.
  It can't store the content in Memory due to this exception.

Fixed: #2768 (eframe: "App quit unexpectedly" on macOS)

Signed-off-by: pan93412 <pan93412@gmail.com>
@kekeimiku
Copy link

This problem still exists...

show log

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process: eframe_template [98984]
Path: /Users/USER/*/eframe_template
Identifier: eframe_template
Version: ???
Code Type: ARM-64 (Native)
Parent Process: zsh [98849]
Responsible: Electron [56969]
User ID: 501

Date/Time: 2023-06-22 11:36:44.5283 +0800
OS Version: macOS 13.4 (22F66)
Report Version: 12
Anonymous UUID: 2D0454B5-FD4C-4AA5-6204-B9DD87BB6C05

Sleep/Wake UUID: EB7BBB50-AF2A-4BE6-84D4-00ADA8513BE9

Time Awake Since Boot: 160000 seconds
Time Since Wake: 4379 seconds

System Integrity Protection: enabled

Crashed Thread: 0 main Dispatch queue: com.apple.main-thread

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x00000001919eeaa4

Termination Reason: Namespace SIGNAL, Code 5 Trace/BPT trap: 5
Terminating Process: exc handler [98984]

Application Specific Backtrace 0:
0 CoreFoundation 0x000000018e567154 __exceptionPreprocess + 176
1 libobjc.A.dylib 0x000000018e0864d4 objc_exception_throw + 60
2 Foundation 0x000000018f45aff0 -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 628
3 Foundation 0x000000018f45ad28 -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 136
4 Foundation 0x000000018f45a9f4 -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:context:] + 196
5 AppKit 0x0000000191cc6e90 -[_NSTouchBarFinderObservation invalidate] + 264
6 AppKit 0x0000000191cc81f0 ___NSTouchBarFinderSetNeedsUpdateOnMain_block_invoke_2 + 628
7 AppKit 0x00000001917b4c30 NSDisplayCycleObserverInvoke + 168
8 AppKit 0x00000001917b488c NSDisplayCycleFlush + 644
9 QuartzCore 0x00000001959d1ce4 _ZN2CA11Transaction19run_commit_handlersE18CATransactionPhase + 120
10 QuartzCore 0x00000001959d0aa0 _ZN2CA11Transaction6commitEv + 320
11 AppKit 0x0000000191836c7c __62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke + 272
12 AppKit 0x0000000191f12f7c ___NSRunLoopObserverCreateWithHandler_block_invoke + 64
13 CoreFoundation 0x000000018e4ed9f0 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 36
14 CoreFoundation 0x000000018e4ed8dc __CFRunLoopDoObservers + 532
15 CoreFoundation 0x000000018e4ecf14 __CFRunLoopRun + 776
16 CoreFoundation 0x000000018e4ec4b8 CFRunLoopRunSpecific + 612
17 HIToolbox 0x0000000197d36c40 RunCurrentEventLoopInMode + 292
18 HIToolbox 0x0000000197d368d0 ReceiveNextEventCommon + 220
19 HIToolbox 0x0000000197d367d4 _BlockUntilNextEventMatchingListInModeWithFilter + 76
20 AppKit 0x000000019170dd44 _DPSNextEvent + 636
21 AppKit 0x000000019170cee0 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 716
22 AppKit 0x0000000191701344 -[NSApplication run] + 464
23 eframe_template 0x0000000100a82d2c _ZN5winit13platform_impl8platform10event_loop18EventLoop$LT$T$GT$10run_return17h7fa8789091e4d751E + 540
24 eframe_template 0x0000000100a89b30 _ZN6eframe6native3run15with_event_loop17h3656f0002f160a0bE + 820
25 eframe_template 0x0000000100a90be8 _ZN6eframe6native3run16glow_integration8run_glow17hc186007fa85d5491E + 116
26 eframe_template 0x0000000100a94014 _ZN6eframe10run_native17h15173bc4e4f5031aE + 272
27 eframe_template 0x00000001009b9e3c _ZN15eframe_template4main17ha27bdabf0755ef3eE + 224
28 eframe_template 0x00000001009ba484 _ZN4core3ops8function6FnOnce9call_once17hb73d0a2724e68cdfE + 20
29 eframe_template 0x00000001009bb560 _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h880df24a610c98caE + 24
30 eframe_template 0x00000001009bb51c ZN3std2rt10lang_start28$u7b$$u7b$closure$u7d$$u7d$17h65d48810d1e6ff51E + 32
31 eframe_template 0x0000000100bb06e4 _ZN3std2rt19lang_start_internal17h94fa211da9d06d56E + 580
32 eframe_template 0x00000001009bb4e0 _ZN3std2rt10lang_start17h956c174eb63dc17eE + 84
33 eframe_template 0x00000001009b9e90 main + 36
34 dyld 0x000000018e0b7f28 start + 2236

Thread 0 Crashed:: main Dispatch queue: com.apple.main-thread
0 AppKit 0x1919eeaa4 -[NSApplication _crashOnException:] + 240
1 AppKit 0x191836df0 __62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke + 644
2 AppKit 0x191f12f7c ___NSRunLoopObserverCreateWithHandler_block_invoke + 64
3 CoreFoundation 0x18e4ed9f0 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 36
4 CoreFoundation 0x18e4ed8dc __CFRunLoopDoObservers + 532
5 CoreFoundation 0x18e4ecf14 __CFRunLoopRun + 776
6 CoreFoundation 0x18e4ec4b8 CFRunLoopRunSpecific + 612
7 HIToolbox 0x197d36c40 RunCurrentEventLoopInMode + 292
8 HIToolbox 0x197d368d0 ReceiveNextEventCommon + 220
9 HIToolbox 0x197d367d4 _BlockUntilNextEventMatchingListInModeWithFilter + 76
10 AppKit 0x19170dd44 _DPSNextEvent + 636
11 AppKit 0x19170cee0 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 716
12 AppKit 0x191701344 -[NSApplication run] + 464
13 eframe_template 0x100a82d2c winit::platform_impl::platform::event_loop::EventLoop$LT$T$GT$::run_return::h7fa8789091e4d751 + 540
14 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
15 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
16 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
17 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
18 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
19 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
20 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
21 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
22 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
23 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
24 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
25 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
26 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
27 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
28 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
29 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
30 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
31 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
32 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
33 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
34 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
35 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
36 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
37 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
38 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
39 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
40 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
41 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
42 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
43 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
44 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
45 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
46 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
47 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
48 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
49 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
50 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
51 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
52 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
53 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
54 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
55 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
56 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
57 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
58 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
59 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
60 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
61 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
62 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
63 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
64 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
65 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
66 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
67 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
68 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
69 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
70 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
71 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
72 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
73 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
74 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
75 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
76 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
77 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
78 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
79 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
80 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
81 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
82 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
83 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
84 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
85 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
86 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
87 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
88 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
89 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
90 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
91 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
92 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
93 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
94 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
95 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
96 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
97 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
98 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
99 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
100 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
101 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
102 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
103 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
104 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
105 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
106 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
107 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
108 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
109 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
110 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
111 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
112 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
113 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
114 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
115 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
116 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
117 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
118 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
119 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
120 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
121 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
122 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
123 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
124 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
125 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
126 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
127 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
128 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
129 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
130 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
131 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
132 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
133 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
134 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
135 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
136 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
137 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
138 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
139 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
140 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
141 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
142 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
143 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
144 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
145 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
146 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
147 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
148 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
149 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
150 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
151 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
152 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
153 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
154 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
155 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
156 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
157 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
158 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
159 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
160 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
161 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
162 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
163 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
164 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
165 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
166 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
167 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
168 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
169 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
170 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
171 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
172 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
173 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
174 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
175 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
176 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
177 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
178 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
179 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
180 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
181 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
182 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
183 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
184 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
185 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
186 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
187 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
188 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
189 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
190 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
191 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
192 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
193 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
194 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
195 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
196 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
197 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
198 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
199 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
200 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
201 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
202 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
203 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
204 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
205 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
206 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
207 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
208 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
209 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
210 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
211 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
212 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
213 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
214 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
215 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
216 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
217 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
218 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
219 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
220 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
221 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
222 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
223 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
224 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
225 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
226 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
227 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
228 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
229 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
230 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
231 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
232 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
233 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
234 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
235 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
236 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
237 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
238 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
239 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
240 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
241 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
242 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
243 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
244 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
245 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
246 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
247 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
248 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
249 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
250 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
251 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
252 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
253 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
254 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
255 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
256 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
257 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
258 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
259 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
260 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
261 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
262 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
263 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
264 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
265 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
266 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
267 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
268 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
269 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
270 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
271 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
272 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
273 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
274 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
275 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
276 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
277 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
278 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
279 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
280 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
281 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
282 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
283 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
284 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
285 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
286 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
287 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
288 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
289 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
290 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
291 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
292 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
293 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
294 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
295 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
296 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
297 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
298 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
299 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
300 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
301 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
302 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
303 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
304 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
305 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
306 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
307 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
308 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
309 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
310 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
311 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
312 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
313 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
314 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
315 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
316 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
317 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
318 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
319 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
320 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
321 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
322 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
323 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
324 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
325 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
326 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
327 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
328 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
329 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
330 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
331 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
332 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
333 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
334 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
335 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
336 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
337 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
338 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
339 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
340 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
341 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
342 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
343 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
344 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
345 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
346 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
347 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
348 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
349 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
350 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
351 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
352 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
353 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
354 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
355 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
356 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
357 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
358 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
359 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
360 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
361 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
362 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
363 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
364 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
365 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
366 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
367 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
368 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
369 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
370 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
371 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
372 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
373 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
374 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
375 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
376 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
377 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
378 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
379 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
380 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
381 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
382 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
383 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
384 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
385 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
386 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
387 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
388 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
389 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
390 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
391 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
392 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
393 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
394 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
395 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
396 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
397 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
398 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
399 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
400 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
401 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
402 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
403 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
404 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
405 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
406 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
407 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
408 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
409 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
410 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
411 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
412 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
413 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
414 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
415 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
416 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
417 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
418 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
419 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
420 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
421 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
422 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
423 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
424 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
425 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
426 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
427 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
428 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
429 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
430 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
431 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
432 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
433 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
434 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
435 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
436 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
437 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
438 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
439 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
440 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
441 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
442 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
443 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
444 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
445 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
446 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
447 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
448 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
449 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
450 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
451 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
452 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
453 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
454 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
455 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
456 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
457 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
458 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
459 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
460 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
461 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
462 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
463 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
464 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
465 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
466 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
467 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
468 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
469 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
470 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
471 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
472 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
473 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
474 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
475 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
476 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
477 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
478 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
479 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
480 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
481 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
482 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
483 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
484 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
485 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
486 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
487 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
488 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
489 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
490 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
491 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
492 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
493 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
494 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
495 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
496 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
497 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
498 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
499 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
500 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
501 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
502 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
503 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
504 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
505 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
506 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
507 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
508 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
509 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820
510 eframe_template 0x100a89b30 eframe::native::run::with_event_loop::h3656f0002f160a0b + 820

Thread 1:
0 libsystem_pthread.dylib 0x18e40ad8c start_wqthread + 0

Thread 2:
0 libsystem_pthread.dylib 0x18e40ad8c start_wqthread + 0

Thread 3:
0 libsystem_pthread.dylib 0x18e40ad8c start_wqthread + 0

Thread 4:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x18e3cff14 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x18e3e2240 mach_msg2_internal + 80
2 libsystem_kernel.dylib 0x18e3d8b78 mach_msg_overwrite + 604
3 libsystem_kernel.dylib 0x18e3d0290 mach_msg + 24
4 CoreFoundation 0x18e4ee7e4 __CFRunLoopServiceMachPort + 160
5 CoreFoundation 0x18e4ed0c4 __CFRunLoopRun + 1208
6 CoreFoundation 0x18e4ec4b8 CFRunLoopRunSpecific + 612
7 AppKit 0x191838334 _NSEventThread + 172
8 libsystem_pthread.dylib 0x18e40ffa8 _pthread_start + 148
9 libsystem_pthread.dylib 0x18e40ada0 thread_start + 8

Thread 5:
0 libsystem_pthread.dylib 0x18e40ad8c start_wqthread + 0

Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x00000001230bd600 x1: 0x00000001230c44fd x2: 0xfffffffffffffffc x3: 0x00000001230be4dc
x4: 0x0000000000006001 x5: 0x0000000000000020 x6: 0x00000001230bd600 x7: 0x0000000000000f1c
x8: 0x00000001e6bbd000 x9: 0x83622d1c00480067 x10: 0x83622d1c00480067 x11: 0x000000000000007f
x12: 0x000000000000002c x13: 0x0000000123072ab0 x14: 0x01000001e94285b1 x15: 0x00000001e94285b0
x16: 0x000000018e43e640 x17: 0x00000001ea3b45e0 x18: 0x0000000000000000 x19: 0x00000001227ba5b0
x20: 0x000000012262fdd0 x21: 0x000003803f686cf0 x22: 0x000000012280b058 x23: 0x000000016f442ff0
x24: 0x000000012280b050 x25: 0x0000000000000000 x26: 0x0000000115004500 x27: 0x00000001150045a0
x28: 0x000000018e4edf60 fp: 0x000000016f442e60 lr: 0x027a8001919eea9c
sp: 0x000000016f442e30 pc: 0x00000001919eeaa4 cpsr: 0x60001000
far: 0x0000000100f887ca esr: 0xf2000001 (Breakpoint) brk 1

Binary Images:
0x1009b8000 - 0x100e3ffff eframe_template () <218d4cf1-cf78-313c-a5c9-7e7eb1a24f28> /Users/USER//eframe_template
0x10e970000 - 0x10e9dbfff com.apple.AppleMetalOpenGLRenderer (1.0) <01596a35-894c-3104-8314-40d3c08f18ca> /System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/MacOS/AppleMetalOpenGLRenderer
0x1017d4000 - 0x1017dffff libobjc-trampolines.dylib () <570c31f7-94c6-3b86-ae44-1694db0a4bcd> /usr/lib/libobjc-trampolines.dylib
0x1916d5000 - 0x1925e3fff com.apple.AppKit (6.9) <041c7d21-21cc-3eea-ae53-d39f5ca6a24e> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x18e46f000 - 0x18e948fff com.apple.CoreFoundation (6.9) <203e4401-8c2e-3157-a24b-92f52551d43e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x197d06000 - 0x198039fff com.apple.HIToolbox (2.1.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x18e409000 - 0x18e415fff libsystem_pthread.dylib (
) <46d35233-a051-3f4f-bba4-ba56dddc4d1a> /usr/lib/system/libsystem_pthread.dylib
0x18e3cf000 - 0x18e408fe7 libsystem_kernel.dylib (*) <42f503e2-9273-360a-a086-c1b19bbd3962> /usr/lib/system/libsystem_kernel.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 32
thread_create: 1
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)
Writable regions: Total=799.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=799.0M(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 128K 1
Activity Tracing 256K 1
CG backing stores 768K 4
CG image 1200K 9
ColorSync 544K 28
CoreAnimation 128K 8
CoreGraphics 32K 2
CoreUI image data 496K 7
Dispatch continuations 64.0M 1
Foundation 16K 1
Image IO 1024K 1
Kernel Alloc Once 32K 1
MALLOC 144.4M 47
MALLOC guard page 192K 10
MALLOC_MEDIUM (reserved) 576.0M 5 reserved VM address space (unallocated)
OpenGL GLSL 256K 3
STACK GUARD 80K 5
Stack 10.6M 6
Stack Guard 56.0M 1
VM_ALLOCATE 432K 20
VM_ALLOCATE (reserved) 128K 1 reserved VM address space (unallocated)
__AUTH 678K 175
__AUTH_CONST 13.2M 333
__CTF 824 1
__DATA 3072K 320
__DATA_CONST 15.4M 336
__DATA_DIRTY 718K 112
__FONT_DATA 2352 1
__GLSLBUILTINS 5174K 1
__LINKEDIT 805.3M 4
__OBJC_RO 66.3M 1
__OBJC_RW 2011K 1
__TEXT 258.0M 349
dyld private memory 272K 2
mapped file 183.7M 28
shared memory 960K 19
=========== ======= =======
TOTAL 2.2G 1845
TOTAL, minus reserved VM space 1.6G 1845


Full Report

{"app_name":"eframe_template","timestamp":"2023-06-22 11:36:44.00 +0800","app_version":"","slice_uuid":"218d4cf1-cf78-313c-a5c9-7e7eb1a24f28","build_version":"","platform":1,"share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"macOS 13.4 (22F66)","roots_installed":0,"incident_id":"91CB2D08-B1B3-4697-8CD3-17E37BD13534","name":"eframe_template"}
{
"uptime" : 160000,
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "Mac14,7",
"coalitionID" : 15631,
"osVersion" : {
"train" : "macOS 13.4",
"build" : "22F66",
"releaseType" : "User"
},
"captureTime" : "2023-06-22 11:36:44.5283 +0800",
"incident" : "91CB2D08-B1B3-4697-8CD3-17E37BD13534",
"pid" : 98984,
"translated" : false,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2023-06-22 11:36:42.4432 +0800",
"procStartAbsTime" : 3849304999830,
"procExitAbsTime" : 3849354942287,
"procName" : "eframe_template",
"procPath" : "/Users/USER//eframe_template",
"parentProc" : "zsh",
"parentPid" : 98849,
"coalitionName" : "com.microsoft.VSCode",
"crashReporterKey" : "2D0454B5-FD4C-4AA5-6204-B9DD87BB6C05",
"responsiblePid" : 56969,
"responsibleProc" : "Electron",
"codeSigningID" : "eframe_template-3597cb3c1e49c881",
"codeSigningTeamID" : "",
"codeSigningFlags" : 570556929,
"codeSigningValidationCategory" : 10,
"codeSigningTrustLevel" : 0,
"wakeTime" : 4379,
"sleepWakeUUID" : "EB7BBB50-AF2A-4BE6-84D4-00ADA8513BE9",
"sip" : "enabled",
"exception" : {"codes":"0x0000000000000001, 0x00000001919eeaa4","rawCodes":[1,6738078372],"type":"EXC_BREAKPOINT","signal":"SIGTRAP"},
"termination" : {"flags":0,"code":5,"namespace":"SIGNAL","indicator":"Trace/BPT trap: 5","byProc":"exc handler","byPid":98984},
"os_fault" : {"process":"eframe_template"},
"asiBacktraces" : ["0 CoreFoundation 0x000000018e567154 __exceptionPreprocess + 176\n1 libobjc.A.dylib 0x000000018e0864d4 objc_exception_throw + 60\n2 Foundation 0x000000018f45aff0 -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 628\n3 Foundation 0x000000018f45ad28 -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 136\n4 Foundation 0x000000018f45a9f4 -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:context:] + 196\n5 AppKit 0x0000000191cc6e90 -[_NSTouchBarFinderObservation invalidate] + 264\n6 AppKit 0x0000000191cc81f0 ___NSTouchBarFinderSetNeedsUpdateOnMain_block_invoke_2 + 628\n7 AppKit 0x00000001917b4c30 NSDisplayCycleObserverInvoke + 168\n8 AppKit 0x00000001917b488c NSDisplayCycleFlush + 644\n9 QuartzCore 0x00000001959d1ce4 _ZN2CA11Transaction19run_commit_handlersE18CATransactionPhase + 120\n10 QuartzCore 0x00000001959d0aa0 _ZN2CA11Transaction6commitEv + 320\n11 AppKit 0x0000000191836c7c __62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke + 272\n12 AppKit 0x0000000191f12f7c ___NSRunLoopObserverCreateWithHandler_block_invoke + 64\n13 CoreFoundation 0x000000018e4ed9f0 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 36\n14 CoreFoundation 0x000000018e4ed8dc __CFRunLoopDoObservers + 532\n15 CoreFoundation 0x000000018e4ecf14 __CFRunLoopRun + 776\n16 CoreFoundation 0x000000018e4ec4b8 CFRunLoopRunSpecific + 612\n17 HIToolbox 0x0000000197d36c40 RunCurrentEventLoopInMode + 292\n18 HIToolbox 0x0000000197d368d0 ReceiveNextEventCommon + 220\n19 HIToolbox 0x0000000197d367d4 _BlockUntilNextEventMatchingListInModeWithFilter + 76\n20 AppKit 0x000000019170dd44 _DPSNextEvent + 636\n21 AppKit 0x000000019170cee0 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 716\n22 AppKit 0x0000000191701344 -[NSApplication run] + 464\n23 eframe_template 0x0000000100a82d2c _ZN5winit13platform_impl8platform10event_loop18EventLoop$LT$T$GT$10run_return17h7fa8789091e4d751E + 540\n24 eframe_template 0x0000000100a89b30 _ZN6eframe6native3run15with_event_loop17h3656f0002f160a0bE + 820\n25 eframe_template 0x0000000100a90be8 _ZN6eframe6native3run16glow_integration8run_glow17hc186007fa85d5491E + 116\n26 eframe_template 0x0000000100a94014 _ZN6eframe10run_native17h15173bc4e4f5031aE + 272\n27 eframe_template 0x00000001009b9e3c _ZN15eframe_template4main17ha27bdabf0755ef3eE + 224\n28 eframe_template 0x00000001009ba484 _ZN4core3ops8function6FnOnce9call_once17hb73d0a2724e68cdfE + 20\n29 eframe_template 0x00000001009bb560 _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h880df24a610c98caE + 24\n30 eframe_template 0x00000001009bb51c ZN3std2rt10lang_start28$u7b$$u7b$closure$u7d$$u7d$17h65d48810d1e6ff51E + 32\n31 eframe_template 0x0000000100bb06e4 _ZN3std2rt19lang_start_internal17h94fa211da9d06d56E + 580\n32 eframe_template 0x00000001009bb4e0 _ZN3std2rt10lang_start17h956c174eb63dc17eE + 84\n33 eframe_template 0x00000001009b9e90 main + 36\n34 dyld 0x000000018e0b7f28 start + 2236"],
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":1,"thread_set_state":0,"task_for_pid":32},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"faultingThread" : 0,
"threads" : [{"triggered":true,"id":1579386,"threadState":{"x":[{"value":4882945536},{"value":4882973949},{"value":18446744073709551612},{"value":4882949340},{"value":24577},{"value":32},{"value":4882945536},{"value":3868},{"value":8166035456,"symbolLocation":40,"symbol":"OBJC_PROTOCOL$NSCollectionLayoutEnvironment_Private"},{"value":9467178964973256807},{"value":9467178964973256807},{"value":127},{"value":44},{"value":4882639536},{"value":72057602246346161,"symbolLocation":72057594037927937,"symbol":"OBJC_CLASS$__NSCFString"},{"value":8208418224,"symbolLocation":0,"symbol":"OBJC_CLASS$___NSCFString"},{"value":6681781824,"symbolLocation":0,"symbol":"_platform_memmove"},{"value":8224720352},{"value":0},{"value":4873495984},{"value":4871880144},{"value":3849354505456},{"value":4873826392},{"value":6161706992},{"value":4873826384},{"value":0},{"value":4647306496},{"value":4647306656},{"value":6682500960,"symbolLocation":0,"symbol":"_runLoopObserverWithBlockContext"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":178595879460989596},"cpsr":{"value":1610616832},"fp":{"value":6161706592},"sp":{"value":6161706544},"esr":{"value":4060086273,"description":"(Breakpoint) brk 1"},"pc":{"value":6738078372,"matchesCrashFrame":1},"far":{"value":4311254986}},"name":"main","queue":"com.apple.main-thread","frames":[{"imageOffset":3250852,"symbol":"-[NSApplication _crashOnException:]","symbolLocation":240,"imageIndex":3},{"imageOffset":1449456,"symbol":"__62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke","symbolLocation":644,"imageIndex":3},{"imageOffset":8642428,"symbol":"___NSRunLoopObserverCreateWithHandler_block_invoke","symbolLocation":64,"imageIndex":3},{"imageOffset":518640,"symbol":"CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION","symbolLocation":36,"imageIndex":4},{"imageOffset":518364,"symbol":"__CFRunLoopDoObservers","symbolLocation":532,"imageIndex":4},{"imageOffset":515860,"symbol":"__CFRunLoopRun","symbolLocation":776,"imageIndex":4},{"imageOffset":513208,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":4},{"imageOffset":199744,"symbol":"RunCurrentEventLoopInMode","symbolLocation":292,"imageIndex":5},{"imageOffset":198864,"symbol":"ReceiveNextEventCommon","symbolLocation":220,"imageIndex":5},{"imageOffset":198612,"symbol":"_BlockUntilNextEventMatchingListInModeWithFilter","symbolLocation":76,"imageIndex":5},{"imageOffset":232772,"symbol":"_DPSNextEvent","symbolLocation":636,"imageIndex":3},{"imageOffset":229088,"symbol":"-[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:]","symbolLocation":716,"imageIndex":3},{"imageOffset":181060,"symbol":"-[NSApplication run]","symbolLocation":464,"imageIndex":3},{"imageOffset":830764,"symbol":"winit::platform_impl::platform::event_loop::EventLoop$LT$T$GT$::run_return::h7fa8789091e4d751","symbolLocation":540,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0},{"imageOffset":858928,"symbol":"eframe::native::run::with_event_loop::h3656f0002f160a0b","symbolLocation":820,"imageIndex":0}]},{"id":1579388,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":1579389,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":1579397,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]},{"id":1579398,"name":"com.apple.NSEventThread","frames":[{"imageOffset":3860,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":7},{"imageOffset":78400,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":7},{"imageOffset":39800,"symbol":"mach_msg_overwrite","symbolLocation":604,"imageIndex":7},{"imageOffset":4752,"symbol":"mach_msg","symbolLocation":24,"imageIndex":7},{"imageOffset":522212,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":4},{"imageOffset":516292,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":4},{"imageOffset":513208,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":4},{"imageOffset":1454900,"symbol":"_NSEventThread","symbolLocation":172,"imageIndex":3},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":6},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":1579403,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}]}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64",
"base" : 4305158144,
"size" : 4751360,
"uuid" : "218d4cf1-cf78-313c-a5c9-7e7eb1a24f28",
"path" : "/Users/USER/
/eframe_template",
"name" : "eframe_template"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 4539744256,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AppleMetalOpenGLRenderer",
"size" : 442368,
"uuid" : "01596a35-894c-3104-8314-40d3c08f18ca",
"path" : "/System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/MacOS/AppleMetalOpenGLRenderer",
"name" : "AppleMetalOpenGLRenderer",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 4319952896,
"size" : 49152,
"uuid" : "570c31f7-94c6-3b86-ae44-1694db0a4bcd",
"path" : "/usr/lib/libobjc-trampolines.dylib",
"name" : "libobjc-trampolines.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6734827520,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.AppKit",
"size" : 15790080,
"uuid" : "041c7d21-21cc-3eea-ae53-d39f5ca6a24e",
"path" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit",
"name" : "AppKit",
"CFBundleVersion" : "2299.60.124"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6681980928,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 5087232,
"uuid" : "203e4401-8c2e-3157-a24b-92f52551d43e",
"path" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1977"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6841982976,
"CFBundleShortVersionString" : "2.1.1",
"CFBundleIdentifier" : "com.apple.HIToolbox",
"size" : 3358720,
"uuid" : "d800278b-4e6c-3032-b56f-027a938a51d6",
"path" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox",
"name" : "HIToolbox"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6681563136,
"size" : 53248,
"uuid" : "46d35233-a051-3f4f-bba4-ba56dddc4d1a",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6681325568,
"size" : 237544,
"uuid" : "42f503e2-9273-360a-a086-c1b19bbd3962",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
}
],
"sharedCache" : {
"base" : 6677397504,
"size" : 3551805440,
"uuid" : "7d9faa84-5c6b-3ef4-9379-faba64346673"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)\nWritable regions: Total=799.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=799.0M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nCG backing stores 768K 4 \nCG image 1200K 9 \nColorSync 544K 28 \nCoreAnimation 128K 8 \nCoreGraphics 32K 2 \nCoreUI image data 496K 7 \nDispatch continuations 64.0M 1 \nFoundation 16K 1 \nImage IO 1024K 1 \nKernel Alloc Once 32K 1 \nMALLOC 144.4M 47 \nMALLOC guard page 192K 10 \nMALLOC_MEDIUM (reserved) 576.0M 5 reserved VM address space (unallocated)\nOpenGL GLSL 256K 3 \nSTACK GUARD 80K 5 \nStack 10.6M 6 \nStack Guard 56.0M 1 \nVM_ALLOCATE 432K 20 \nVM_ALLOCATE (reserved) 128K 1 reserved VM address space (unallocated)\n__AUTH 678K 175 \n__AUTH_CONST 13.2M 333 \n__CTF 824 1 \n__DATA 3072K 320 \n__DATA_CONST 15.4M 336 \n__DATA_DIRTY 718K 112 \n__FONT_DATA 2352 1 \n__GLSLBUILTINS 5174K 1 \n__LINKEDIT 805.3M 4 \n__OBJC_RO 66.3M 1 \n__OBJC_RW 2011K 1 \n__TEXT 258.0M 349 \ndyld private memory 272K 2 \nmapped file 183.7M 28 \nshared memory 960K 19 \n=========== ======= ======= \nTOTAL 2.2G 1845 \nTOTAL, minus reserved VM space 1.6G 1845 \n",
"legacyInfo" : {
"threadTriggered" : {
"name" : "main",
"queue" : "com.apple.main-thread"
}
},
"logWritingSignature" : "b8cbfe2d703070677a6da1a52c23e3d001cdb8f8",
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "62c73fd17cce0d1b0bcb8a02",
"factorPackIds" : {

  },
  "deploymentId" : 240000119
},
{
  "rolloutId" : "62c74108bcb0435c2153f963",
  "factorPackIds" : {
    "SIRI_TEXT_TO_SPEECH" : "64810e3fd0f2cd4ea9c0d6b9"
  },
  "deploymentId" : 240000226
}

],
"experiments" : [

]
}
}

Model: Mac14,7, BootROM 8422.121.1, proc 8:4:4 processors, 16 GB, SMC
Graphics: Apple M2, Apple M2, Built-In
Display: COOCAA, 1920 x 1080 (1080p FHD - Full High Definition), Main, MirrorOff, Online
Memory Module: LPDDR5, Hynix
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4378), wl0: Jan 12 2023 06:32:20 version 18.20.383.14.7.8.149 FWID 01-92e4bc4d
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB3.0 Hub
USB Device: USB2.0 Hub
USB Device: Gaming Mouse
USB Device: USB C Video Adaptor
USB Device: USB Keyboard
USB Device: USB Billboard Device
USB Device: Star Y360
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

@kekeimiku
Copy link

This problem still exists...

show log

Sorry, I just switched to the master branch, it should have been fixed.

@oletf
Copy link

oletf commented Aug 25, 2023

Hello,

I'm having this problem with egui/eframe version 0.22.0 on a Macos 12.5.1,
and have not been able to figure out what triggers it because it doesn't happen every time I close the window.

The exception triggered is similar to the first screenshot (EXC_BAD_INSTRUCTION) of this issue and not the other dumps shared here (which show EXC_BREAKPOINT).

Any insight on this ?

Thanks forward

@emilk
Copy link
Owner

emilk commented Aug 27, 2023

@oletf do you get the problem on the master branch of egui?

@oletf
Copy link

oletf commented Aug 28, 2023

my Cargo.toml only has eframe = "0.22.0" and everything comes from it so I assume it's the master branch yes

I'm also using tokio for other things, but I made sure that the eframe thing is being run from the main thread as I saw it could cause problems if it wasn't the case. (not sure if it could be part of the problem but more context is always better)

Thanks a lot for the quick reply !

@emilk
Copy link
Owner

emilk commented Aug 28, 2023

eframe = "0.22.0" means you are using the latest published eframe. If you wanna test the master you need to patch it with:

[patch.crates-io]
eframe = { git = "https://github.com/emilk/egui", branch = "master" }

I suspect the problem is fixed on master, and if so will be part of egui 0.23, due in a couple of weeks

@oletf
Copy link

oletf commented Aug 28, 2023

thanks a lot,
I didn't realize there wasn't a dev branch and that master was the full most recent state of the project :D

gonna try this within the week,
and I'll keep you updated once done !

@oletf
Copy link

oletf commented Aug 28, 2023

Hi again,

I just tested with master, and I can confirm the problem is solved with it !

thanks a lot for this crate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something is broken
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants