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

Fix segfault at exit #1317

Merged
merged 20 commits into from
Apr 5, 2022
Merged

Fix segfault at exit #1317

merged 20 commits into from
Apr 5, 2022

Conversation

azeey
Copy link
Contributor

@azeey azeey commented Jan 31, 2022

🦟 Bug fix

Fixes #1158

Summary

As discussed in #1158, a segfault occurs during exit because Views created as a result of an ECM query by plugins have their destructors stored in the shared library of the plugin. For GUI plugins, the plugins are unloaded from memory before the ECM is destructed, so when it's time to destruct the Views, a segfault occurs because the pointer to the virtual destructor is invalid. This PR is an attempt to fix the problem by making View a regular class instead of a template. This ensures that the destructor of View is stored in the core library of ignition-gazebo. As a result, the ECM can be destructed after GUI plugins have been unloaded.

To test

Run ign gazebo minimal_scene.sdf. Before this PR, exiting via ctrl-c would cause a segfault. With this PR, it should exit normally.

TODOS

  • [ ] Now that View is not a template, it doesn't really need to inherit from BaseView. The two classes can be combined into one Will do this in a follow up PR.
  • Fix tests

Checklist

  • Signed all commits for DCO
  • Added tests
  • Updated documentation (as needed)
  • Updated migration guide (as needed)
  • codecheck passed (See contributing)
  • All tests passed (See test coverage)
  • While waiting for a review on your PR, please help review another open pull request to support the maintainers

Note to maintainers: Remember to use Squash-Merge and edit the commit message to match the pull request summary while retaining Signed-off-by messages.

@azeey azeey requested review from chapulina and adlarkin January 31, 2022 21:33
@github-actions github-actions bot added the 🏯 fortress Ignition Fortress label Jan 31, 2022
@srmainwaring
Copy link
Contributor

srmainwaring commented Feb 1, 2022

Hi @azeey, I tried running this commit on macOS to see if it would address #1212 / #1158 but no luck unfortunately.

I'm not sure it's just a template versus regular class problem (although copies of the template base class code being in the plugin library won't help).

Suppose our abstract base view is defined in the main app library and a derived view is defined in the plugin library. Then the derived view will have the instructions for its (virtual) destructor defined in the plugin library as well. When delete is called on a pointer to the base view from the main app library we are expecting to find a v-table entry pointing to the derived view's destructor - however this address could contain anything once the plugin has been unloaded (in general it will be a non-null memory location) => segfault.

The issue is clearer if for example we did some cleanup code in the derived view's destructor using the derived view's private methods - we would expect a problem as the instructions for those methods are unloaded with the plugin. I suspect it's the same even if the derived view has a default destructor. This happens for regular classes as well as templates.

A (horrible) fix that does stop the segfault on exit is to release the views rather than reset them (which is what std::unique_ptr will do by default):

  public: ~EntityComponentManagerPrivate()
  {
    // Force views to be released rather than reset (d-tor already unloaded)
    for (auto& item : this->views)
    {
      auto& key = item.first;       // detail::ComponentTypeKey
      auto& value = item.second;    // std::pair
      auto& view = value.first;     // unique_ptr<detail::BaseView>
      auto& mutex = value.second;   // unique_ptr<std::mutex>
      view.release();               // release rather than reset
    }
  }

This will leak for sure, but then it's leaking anyway...

@adlarkin
Copy link
Contributor

adlarkin commented Feb 1, 2022

Thank you @azeey and @srmainwaring for looking into this and providing potential solutions. I don't have any other ideas/thoughts on a solution at the moment, but I wanted to ask if the fix proposed by @azeey (making views non-templated) breaks API/ABI? The ABI checker is failing, and I'd imagine this change would break API/ABI, but I'm not sure if removing templates is a special case.


As a follow up to the previous comments, it sounds like this PR fixes the crash on linux, but not macOS, right? I wonder if making the view class non-templated and removing the inheritance (i.e., combining the BaseView and View class into one) would solve the problem on all platforms. The only setback is that this change can't be made in Fortress, since changing the inheritance structure would break API/ABI.

@azeey
Copy link
Contributor Author

azeey commented Feb 1, 2022

@srmainwaring I just tested this on macOS and it fixes the issue for me. Do you mind trying a clean build and see if it still doesn't work for you? Also, can you check the symbols in libVisualizationCapabilities.dylib for vtable entries for View. This is what I'm using. nm -C libVisualizationCapabilities.dylib | grep View | grep vtable

@azeey
Copy link
Contributor Author

azeey commented Feb 1, 2022

@adlarkin, looking at the ABI report, it looks like the issue is with the removal of BaseView::~BaseView. We might be able to fix this by keeping the user defined destructor even though it won't be used by anything. This we'll do when we combine the functionalities of BaseView and View.

@srmainwaring
Copy link
Contributor

srmainwaring commented Feb 1, 2022

Do you mind trying a clean build and see if it still doesn't work for you?

@azeey still no luck I'm afraid.

I am running this branch of ign-gazebo plus your commit cherry-picked: https://github.com/srmainwaring/ign-gazebo/tree/feature/ign-gazebo7-metal-demo. Clean build running on the shapes.sdf example. What version are you running on macOS?

Confirm no vtable entries for View using:

nm -C libVisualizationCapabilities.dylib| grep View | grep vtable

-- so that's confusing!?

The stack traces are not that helpful. In the debugger the segfault happens when the unordered_map containing the Views is cleared.

Output from the gui terminal

% ign gazebo -v4 -g

Stack trace (most recent call last) in thread 123145434726400:
#9    Object "libsystem_pthread.dylib", at 0x7fff2030f8fc, in _pthread_start + 224
#8    Object "libignition-transport12.12.0.0~pre1", at 0x1094d528e, in void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeShared::*)(), ignition::transport::v12::NodeShared*> >(void*) + 62
#7    Object "libignition-transport12.12.0.0~pre1", at 0x1094c1b18, in ignition::transport::v12::NodeShared::RunReceptionTask() + 248
#6    Object "libignition-transport12.12.0.0~pre1", at 0x1094c497a, in ignition::transport::v12::NodeShared::RecvMsgUpdate() + 2026
#5    Object "libignition-transport12.12.0.0~pre1", at 0x1094c87be, in ignition::transport::v12::NodeShared::TriggerCallbacks(ignition::transport::v12::MessageInfo const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, ignition::transport::v12::NodeShared::HandlerInfo const&) + 1822
#4    Object "libignition-gazebo7-gui.7.0.0~pre1.", at 0x1065cc278, in ignition::transport::v12::SubscriptionHandler<ignition::msgs::SerializedStepMap>::RunLocalCallback(google::protobuf::Message const&, ignition::transport::v12::MessageInfo const&) + 72
#3    Object "libignition-gazebo7-gui.7.0.0~pre1.", at 0x106574f80, in ignition::gazebo::v7::GuiRunner::OnState(ignition::msgs::SerializedStepMap const&) + 16
#2    Object "libsystem_platform.dylib", at 0x7fff20354d7c, in _sigtramp + 28
#1    Object "libignition-tools-backward.dylib", at 0x106487fad, in backward::SignalHandling::sig_handler(int, __siginfo*, void*) + 13
#0    Object "libignition-tools-backward.dylib", at 0x106488016, in backward::SignalHandling::handleSignal(int, __siginfo*, void*) + 70
zsh: segmentation fault  ign gazebo -v4 -g

Full macOS report

Process:               ruby [63495]
Path:                  /usr/local/opt/ruby/bin/ruby
Identifier:            ruby
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        zsh [727]
Responsible:           Terminal [724]
User ID:               501

Date/Time:             2022-02-01 21:24:25.745 +0000
OS Version:            macOS 11.6.2 (20G314)
Report Version:        12
Bridge OS Version:     6.1 (19P647)
Anonymous UUID:        2C998EB8-54B9-88AA-62E1-424AAC345F37

Sleep/Wake UUID:       E2D9295A-CFF5-49C2-89CF-EE0F122E9500

Time Awake Since Boot: 600000 seconds
Time Since Wake:       9800 seconds

System Integrity Protection: enabled

Crashed Thread:        8

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x00000000000000a8
Exception Note:        EXC_CORPSE_NOTIFY

VM Regions Near 0xa8:
--> 
    __TEXT                      104c29000-104c2d000    [   16K] r-x/r-x SM=COW  /usr/local/Cellar/ruby/3.0.3/bin/ruby

Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_malloc.dylib        	0x00007fff20142d59 tiny_free_scan_madvise_free + 235
1   libsystem_malloc.dylib        	0x00007fff2013b988 tiny_free_no_lock + 1917
2   libsystem_malloc.dylib        	0x00007fff2013b0c9 free_tiny + 442
3   libsdformat13.13.0.0~pre1.dylib	0x0000000106d4d002 std::__1::__shared_count::__release_shared() + 20 (memory:2506) [inlined]
4   libsdformat13.13.0.0~pre1.dylib	0x0000000106d4d002 std::__1::__shared_weak_count::__release_shared() + 20 (memory:2548) [inlined]
5   libsdformat13.13.0.0~pre1.dylib	0x0000000106d4d002 std::__1::shared_ptr<sdf::v13::Param>::~shared_ptr() + 39 (memory:3238) [inlined]
6   libsdformat13.13.0.0~pre1.dylib	0x0000000106d4d002 std::__1::shared_ptr<sdf::v13::Param>::~shared_ptr() + 39 (memory:3236) [inlined]
7   libsdformat13.13.0.0~pre1.dylib	0x0000000106d4d002 sdf::v13::ElementPrivate::~ElementPrivate() + 466 (Element.hh:620)
8   libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
9   libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
10  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
11  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
12  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
13  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
14  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
15  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
16  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_count::__release_shared() + 27 (memory:2506) [inlined]
17  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_weak_count::__release_shared() + 27 (memory:2548) [inlined]
18  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3238) [inlined]
19  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3236) [inlined]
20  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >::destroy(std::__1::shared_ptr<sdf::v13::Element>*) + 32 (memory:921) [inlined]
21  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 void std::__1::allocator_traits<std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::destroy<std::__1::shared_ptr<sdf::v13::Element>, void>(std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >&, std::__1::shared_ptr<sdf::v13::Element>*) + 32 (allocator_traits.h:307) [inlined]
22  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::__destruct_at_end(std::__1::shared_ptr<sdf::v13::Element>*) + 70 (vector:428) [inlined]
23  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::clear() + 70 (vector:371) [inlined]
24  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~__vector_base() + 86 (vector:465) [inlined]
25  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:557) [inlined]
26  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:552) [inlined]
27  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 sdf::v13::ElementPrivate::~ElementPrivate() + 210 (Element.hh:620)
28  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
29  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
30  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
31  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
32  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
33  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
34  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
35  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
36  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_count::__release_shared() + 27 (memory:2506) [inlined]
37  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_weak_count::__release_shared() + 27 (memory:2548) [inlined]
38  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3238) [inlined]
39  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3236) [inlined]
40  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >::destroy(std::__1::shared_ptr<sdf::v13::Element>*) + 32 (memory:921) [inlined]
41  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 void std::__1::allocator_traits<std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::destroy<std::__1::shared_ptr<sdf::v13::Element>, void>(std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >&, std::__1::shared_ptr<sdf::v13::Element>*) + 32 (allocator_traits.h:307) [inlined]
42  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::__destruct_at_end(std::__1::shared_ptr<sdf::v13::Element>*) + 70 (vector:428) [inlined]
43  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::clear() + 70 (vector:371) [inlined]
44  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~__vector_base() + 86 (vector:465) [inlined]
45  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:557) [inlined]
46  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:552) [inlined]
47  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 sdf::v13::ElementPrivate::~ElementPrivate() + 210 (Element.hh:620)
48  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
49  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
50  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
51  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
52  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
53  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
54  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
55  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
56  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_count::__release_shared() + 27 (memory:2506) [inlined]
57  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_weak_count::__release_shared() + 27 (memory:2548) [inlined]
58  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3238) [inlined]
59  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3236) [inlined]
60  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >::destroy(std::__1::shared_ptr<sdf::v13::Element>*) + 32 (memory:921) [inlined]
61  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 void std::__1::allocator_traits<std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::destroy<std::__1::shared_ptr<sdf::v13::Element>, void>(std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >&, std::__1::shared_ptr<sdf::v13::Element>*) + 32 (allocator_traits.h:307) [inlined]
62  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::__destruct_at_end(std::__1::shared_ptr<sdf::v13::Element>*) + 70 (vector:428) [inlined]
63  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::clear() + 70 (vector:371) [inlined]
64  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~__vector_base() + 86 (vector:465) [inlined]
65  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:557) [inlined]
66  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:552) [inlined]
67  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 sdf::v13::ElementPrivate::~ElementPrivate() + 210 (Element.hh:620)
68  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
69  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
70  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
71  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
72  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
73  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
74  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
75  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
76  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_count::__release_shared() + 27 (memory:2506) [inlined]
77  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_weak_count::__release_shared() + 27 (memory:2548) [inlined]
78  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3238) [inlined]
79  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3236) [inlined]
80  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >::destroy(std::__1::shared_ptr<sdf::v13::Element>*) + 32 (memory:921) [inlined]
81  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 void std::__1::allocator_traits<std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::destroy<std::__1::shared_ptr<sdf::v13::Element>, void>(std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >&, std::__1::shared_ptr<sdf::v13::Element>*) + 32 (allocator_traits.h:307) [inlined]
82  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::__destruct_at_end(std::__1::shared_ptr<sdf::v13::Element>*) + 70 (vector:428) [inlined]
83  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::clear() + 70 (vector:371) [inlined]
84  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~__vector_base() + 86 (vector:465) [inlined]
85  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:557) [inlined]
86  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:552) [inlined]
87  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 sdf::v13::ElementPrivate::~ElementPrivate() + 210 (Element.hh:620)
88  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
89  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
90  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
91  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
92  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
93  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
94  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
95  libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
96  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_count::__release_shared() + 27 (memory:2506) [inlined]
97  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_weak_count::__release_shared() + 27 (memory:2548) [inlined]
98  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3238) [inlined]
99  libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3236) [inlined]
100 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >::destroy(std::__1::shared_ptr<sdf::v13::Element>*) + 32 (memory:921) [inlined]
101 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 void std::__1::allocator_traits<std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::destroy<std::__1::shared_ptr<sdf::v13::Element>, void>(std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >&, std::__1::shared_ptr<sdf::v13::Element>*) + 32 (allocator_traits.h:307) [inlined]
102 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::__destruct_at_end(std::__1::shared_ptr<sdf::v13::Element>*) + 70 (vector:428) [inlined]
103 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::clear() + 70 (vector:371) [inlined]
104 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~__vector_base() + 86 (vector:465) [inlined]
105 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:557) [inlined]
106 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:552) [inlined]
107 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 sdf::v13::ElementPrivate::~ElementPrivate() + 210 (Element.hh:620)
108 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
109 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
110 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
111 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
112 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
113 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
114 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
115 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
116 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_count::__release_shared() + 27 (memory:2506) [inlined]
117 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__shared_weak_count::__release_shared() + 27 (memory:2548) [inlined]
118 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3238) [inlined]
119 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 32 (memory:3236) [inlined]
120 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >::destroy(std::__1::shared_ptr<sdf::v13::Element>*) + 32 (memory:921) [inlined]
121 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 void std::__1::allocator_traits<std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::destroy<std::__1::shared_ptr<sdf::v13::Element>, void>(std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> >&, std::__1::shared_ptr<sdf::v13::Element>*) + 32 (allocator_traits.h:307) [inlined]
122 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::__destruct_at_end(std::__1::shared_ptr<sdf::v13::Element>*) + 70 (vector:428) [inlined]
123 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::clear() + 70 (vector:371) [inlined]
124 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::__vector_base<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~__vector_base() + 86 (vector:465) [inlined]
125 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:557) [inlined]
126 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 std::__1::vector<std::__1::shared_ptr<sdf::v13::Element>, std::__1::allocator<std::__1::shared_ptr<sdf::v13::Element> > >::~vector() + 86 (vector:552) [inlined]
127 libsdformat13.13.0.0~pre1.dylib	0x0000000106d4cf02 sdf::v13::ElementPrivate::~ElementPrivate() + 210 (Element.hh:620)
128 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::ElementPrivate::~ElementPrivate() + 8 (Element.hh:620) [inlined]
129 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::default_delete<sdf::v13::ElementPrivate>::operator()(sdf::v13::ElementPrivate*) const + 8 (memory:1428) [inlined]
130 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::reset(sdf::v13::ElementPrivate*) + 25 (memory:1689) [inlined]
131 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
132 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d std::__1::unique_ptr<sdf::v13::ElementPrivate, std::__1::default_delete<sdf::v13::ElementPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
133 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:40) [inlined]
134 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 35 (Element.cc:39) [inlined]
135 libsdformat13.13.0.0~pre1.dylib	0x0000000106d44b0d sdf::v13::Element::~Element() + 45 (Element.cc:39)
136 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacd2c std::__1::__shared_count::__release_shared() + 20 (memory:2506) [inlined]
137 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacd2c std::__1::__shared_weak_count::__release_shared() + 20 (memory:2548) [inlined]
138 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacd2c std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 39 (memory:3238) [inlined]
139 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacd2c std::__1::shared_ptr<sdf::v13::Element>::~shared_ptr() + 39 (memory:3236) [inlined]
140 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacd2c sdf::v13::Model::Implementation::~Implementation() + 284 (Model.cc:40)
141 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacab3 sdf::v13::Model::Implementation::~Implementation() + 5 (Model.cc:40) [inlined]
142 libsdformat13.13.0.0~pre1.dylib	0x0000000106dacab3 void ignition::utils::detail::DefaultDelete<sdf::v13::Model::Implementation>(sdf::v13::Model::Implementation*) + 19 (DefaultOps.hh:48)
143 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb std::__1::unique_ptr<sdf::v13::Model::Implementation, void (*)(sdf::v13::Model::Implementation*)>::reset(sdf::v13::Model::Implementation*) + 20 (memory:1689) [inlined]
144 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb std::__1::unique_ptr<sdf::v13::Model::Implementation, void (*)(sdf::v13::Model::Implementation*)>::~unique_ptr() + 20 (memory:1643) [inlined]
145 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb std::__1::unique_ptr<sdf::v13::Model::Implementation, void (*)(sdf::v13::Model::Implementation*)>::~unique_ptr() + 20 (memory:1643) [inlined]
146 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb ignition::utils::ImplPtr<sdf::v13::Model::Implementation, void (*)(sdf::v13::Model::Implementation*), ignition::utils::detail::CopyMoveDeleteOperations<sdf::v13::Model::Implementation, sdf::v13::Model::Implementation* (*)(sdf::v13::Model::Implementation const&), void (*)(sdf::v13::Model::Implementation&, sdf::v13::Model::Implementation const&)> >::~ImplPtr() + 20 (ImplPtr.hh:105) [inlined]
147 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb ignition::utils::ImplPtr<sdf::v13::Model::Implementation, void (*)(sdf::v13::Model::Implementation*), ignition::utils::detail::CopyMoveDeleteOperations<sdf::v13::Model::Implementation, sdf::v13::Model::Implementation* (*)(sdf::v13::Model::Implementation const&), void (*)(sdf::v13::Model::Implementation&, sdf::v13::Model::Implementation const&)> >::~ImplPtr() + 20 (ImplPtr.hh:105) [inlined]
148 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb sdf::v13::Model::~Model() + 20 (Model.hh:48) [inlined]
149 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb sdf::v13::Model::~Model() + 20 (Model.hh:48) [inlined]
150 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb ignition::gazebo::v7::components::Component<sdf::v13::Model, ignition::gazebo::v7::components::ModelTag, ignition::gazebo::v7::serializers::SdfModelSerializer>::~Component() + 34 (Component.hh:337) [inlined]
151 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb ignition::gazebo::v7::components::Component<sdf::v13::Model, ignition::gazebo::v7::components::ModelTag, ignition::gazebo::v7::serializers::SdfModelSerializer>::~Component() + 34 (Component.hh:337) [inlined]
152 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068e44fb ignition::gazebo::v7::components::Component<sdf::v13::Model, ignition::gazebo::v7::components::ModelTag, ignition::gazebo::v7::serializers::SdfModelSerializer>::~Component() + 43 (Component.hh:337)
153 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent>::operator()(ignition::gazebo::v7::components::BaseComponent*) const + 6 (memory:1428) [inlined]
154 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >::reset(ignition::gazebo::v7::components::BaseComponent*) + 11 (memory:1689) [inlined]
155 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >::~unique_ptr() + 11 (memory:1643) [inlined]
156 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >::~unique_ptr() + 11 (memory:1643) [inlined]
157 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > >::destroy(std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >*) + 11 (memory:921) [inlined]
158 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 void std::__1::allocator_traits<std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >::destroy<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, void>(std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > >&, std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >*) + 11 (allocator_traits.h:307) [inlined]
159 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::__vector_base<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >::__destruct_at_end(std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >*) + 47 (vector:428) [inlined]
160 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::__vector_base<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >::clear() + 47 (vector:371) [inlined]
161 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::__vector_base<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >::~__vector_base() + 57 (vector:465) [inlined]
162 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >::~vector() + 57 (vector:557) [inlined]
163 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >::~vector() + 57 (vector:552) [inlined]
164 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::pair<unsigned long long const, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >::~pair() + 57 (utility:297) [inlined]
165 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::pair<unsigned long long const, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >::~pair() + 57 (utility:297) [inlined]
166 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 void std::__1::allocator_traits<std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, void*> > >::destroy<std::__1::pair<unsigned long long const, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, void, void>(std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, void*> >&, std::__1::pair<unsigned long long const, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >*) + 57 (allocator_traits.h:317) [inlined]
167 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::__hash_table<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::__unordered_map_hasher<unsigned long long, std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::hash<unsigned long long>, std::__1::equal_to<unsigned long long>, true>, std::__1::__unordered_map_equal<unsigned long long, std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::equal_to<unsigned long long>, std::__1::hash<unsigned long long>, true>, std::__1::allocator<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > > > >::__deallocate_node(std::__1::__hash_node_base<std::__1::__hash_node<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, void*>*>*) + 102 (__hash_table:1580) [inlined]
168 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::__hash_table<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::__unordered_map_hasher<unsigned long long, std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::hash<unsigned long long>, std::__1::equal_to<unsigned long long>, true>, std::__1::__unordered_map_equal<unsigned long long, std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::equal_to<unsigned long long>, std::__1::hash<unsigned long long>, true>, std::__1::allocator<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > > > >::~__hash_table() + 102 (__hash_table:1519) [inlined]
169 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::__hash_table<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::__unordered_map_hasher<unsigned long long, std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::hash<unsigned long long>, std::__1::equal_to<unsigned long long>, true>, std::__1::__unordered_map_equal<unsigned long long, std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > >, std::__1::equal_to<unsigned long long>, std::__1::hash<unsigned long long>, true>, std::__1::allocator<std::__1::__hash_value_type<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > > > >::~__hash_table() + 102 (__hash_table:1511) [inlined]
170 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::unordered_map<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >, std::__1::hash<unsigned long long>, std::__1::equal_to<unsigned long long>, std::__1::allocator<std::__1::pair<unsigned long long const, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > > > >::~unordered_map() + 102 (unordered_map:1044) [inlined]
171 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 std::__1::unordered_map<unsigned long long, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > >, std::__1::hash<unsigned long long>, std::__1::equal_to<unsigned long long>, std::__1::allocator<std::__1::pair<unsigned long long const, std::__1::vector<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> >, std::__1::allocator<std::__1::unique_ptr<ignition::gazebo::v7::components::BaseComponent, std::__1::default_delete<ignition::gazebo::v7::components::BaseComponent> > > > > > >::~unordered_map() + 102 (unordered_map:1042) [inlined]
172 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068c9610 ignition::gazebo::EntityComponentManagerPrivate::~EntityComponentManagerPrivate() + 1872 (EntityComponentManager.cc:48)
173 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd ignition::gazebo::EntityComponentManagerPrivate::~EntityComponentManagerPrivate() + 8 (EntityComponentManager.cc:48) [inlined]
174 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate>::operator()(ignition::gazebo::EntityComponentManagerPrivate*) const + 8 (memory:1428) [inlined]
175 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate> >::reset(ignition::gazebo::EntityComponentManagerPrivate*) + 25 (memory:1689) [inlined]
176 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
177 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate> >::~unique_ptr() + 25 (memory:1643) [inlined]
178 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd ignition::gazebo::v7::EntityComponentManager::~EntityComponentManager() + 25 (EntityComponentManager.cc:288) [inlined]
179 libignition-gazebo7.7.0.0~pre1.dylib	0x00000001068b00cd ignition::gazebo::v7::EntityComponentManager::~EntityComponentManager() + 29 (EntityComponentManager.cc:288)
180 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001065c8848 ignition::gazebo::v7::GuiRunner::Implementation::~Implementation() + 74 (GuiRunner.cc:43) [inlined]
181 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001065c8848 ignition::gazebo::v7::GuiRunner::Implementation::~Implementation() + 74 (GuiRunner.cc:43) [inlined]
182 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001065c8848 void ignition::utils::detail::DefaultDelete<ignition::gazebo::v7::GuiRunner::Implementation>(ignition::gazebo::v7::GuiRunner::Implementation*) + 88 (DefaultOps.hh:48)
183 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x0000000106573f2b std::__1::unique_ptr<ignition::gazebo::v7::GuiRunner::Implementation, void (*)(ignition::gazebo::v7::GuiRunner::Implementation*)>::reset(ignition::gazebo::v7::GuiRunner::Implementation*) + 20 (memory:1689) [inlined]
184 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x0000000106573f2b std::__1::unique_ptr<ignition::gazebo::v7::GuiRunner::Implementation, void (*)(ignition::gazebo::v7::GuiRunner::Implementation*)>::~unique_ptr() + 20 (memory:1643) [inlined]
185 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x0000000106573f2b std::__1::unique_ptr<ignition::gazebo::v7::GuiRunner::Implementation, void (*)(ignition::gazebo::v7::GuiRunner::Implementation*)>::~unique_ptr() + 20 (memory:1643) [inlined]
186 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x0000000106573f2b ignition::gazebo::v7::GuiRunner::~GuiRunner() + 34 (GuiRunner.cc:131) [inlined]
187 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x0000000106573f2b ignition::gazebo::v7::GuiRunner::~GuiRunner() + 34 (GuiRunner.cc:131) [inlined]
188 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x0000000106573f2b ignition::gazebo::v7::GuiRunner::~GuiRunner() + 43 (GuiRunner.cc:131)
189 org.qt-project.QtCore         	0x000000010a99ddd1 QObjectPrivate::deleteChildren() + 289
190 org.qt-project.QtCore         	0x000000010a99db24 QObject::~QObject() + 1924
191 org.qt-project.QtWidgets      	0x0000000109bfc00e QApplication::~QApplication() + 830
192 libignition-gui7.7.0.0~pre1.dylib	0x0000000107076308 ignition::gui::Application::~Application() + 1240 (Application.cc:192)
193 libignition-gui7.7.0.0~pre1.dylib	0x000000010707693e ignition::gui::Application::~Application() + 5 (Application.cc:156) [inlined]
194 libignition-gui7.7.0.0~pre1.dylib	0x000000010707693e ignition::gui::Application::~Application() + 14 (Application.cc:156)
195 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x000000010656a35d std::__1::default_delete<ignition::gui::Application>::operator()(ignition::gui::Application*) const + 9 (memory:1428) [inlined]
196 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x000000010656a35d std::__1::unique_ptr<ignition::gui::Application, std::__1::default_delete<ignition::gui::Application> >::reset(ignition::gui::Application*) + 17 (memory:1689) [inlined]
197 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x000000010656a35d std::__1::unique_ptr<ignition::gui::Application, std::__1::default_delete<ignition::gui::Application> >::~unique_ptr() + 17 (memory:1643) [inlined]
198 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x000000010656a35d std::__1::unique_ptr<ignition::gui::Application, std::__1::default_delete<ignition::gui::Application> >::~unique_ptr() + 17 (memory:1643) [inlined]
199 libignition-gazebo7-gui.7.0.0~pre1.dylib	0x000000010656a35d ignition::gazebo::v7::gui::runGui(int&, char**, char const*, char const*) + 301 (Gui.cc:336)
200 libignition-gazebo7-ign.7.0.0~pre1.dylib	0x00000001064c28ad runGui + 45 (ign.cc:374)
201 libffi.dylib                  	0x00007fff2d8f08f5 ffi_call_unix64 + 85
202 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
203 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
204 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
205 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
206 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
207 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
208 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
209 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
210 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
211 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
212 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
213 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
214 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
215 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
216 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
217 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
218 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
219 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
220 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
221 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
222 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
223 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
224 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
225 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
226 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
227 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
228 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
229 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
230 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
231 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
232 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
233 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
234 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
235 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
236 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
237 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
238 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
239 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
240 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
241 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
242 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
243 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
244 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
245 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
246 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
247 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
248 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
249 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
250 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
251 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
252 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
253 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
254 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
255 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
256 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
257 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
258 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
259 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
260 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
261 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
262 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
263 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
264 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
265 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
266 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
267 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
268 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
269 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
270 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
271 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
272 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
273 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
274 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
275 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
276 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
277 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
278 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
279 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
280 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
281 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
282 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
283 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
284 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
285 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
286 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
287 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
288 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
289 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
290 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
291 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
292 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
293 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
294 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
295 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
296 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
297 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
298 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
299 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
300 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
301 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
302 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
303 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
304 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
305 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
306 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
307 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
308 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
309 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
310 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
311 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
312 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
313 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
314 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
315 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
316 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
317 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
318 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
319 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
320 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
321 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
322 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
323 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
324 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
325 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
326 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
327 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
328 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
329 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
330 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
331 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
332 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
333 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
334 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
335 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
336 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
337 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
338 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
339 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
340 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
341 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
342 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
343 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
344 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
345 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
346 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
347 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
348 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
349 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
350 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
351 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
352 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
353 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
354 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
355 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
356 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
357 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
358 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
359 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
360 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
361 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
362 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
363 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
364 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
365 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
366 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
367 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
368 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
369 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
370 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
371 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
372 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
373 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
374 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
375 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
376 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
377 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
378 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
379 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
380 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
381 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
382 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
383 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
384 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
385 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
386 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
387 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
388 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
389 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
390 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
391 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
392 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
393 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
394 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
395 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
396 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
397 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
398 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
399 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
400 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
401 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
402 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
403 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
404 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
405 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
406 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
407 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
408 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
409 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
410 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
411 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
412 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
413 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
414 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
415 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
416 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
417 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
418 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
419 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
420 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
421 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
422 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
423 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
424 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
425 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
426 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
427 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
428 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
429 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
430 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
431 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
432 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
433 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
434 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
435 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
436 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
437 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
438 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
439 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
440 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
441 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
442 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
443 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
444 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
445 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
446 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
447 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
448 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
449 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
450 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
451 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
452 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
453 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
454 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
455 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
456 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
457 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
458 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
459 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
460 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
461 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
462 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
463 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
464 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
465 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
466 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
467 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
468 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
469 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
470 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
471 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
472 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
473 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
474 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
475 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
476 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
477 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
478 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
479 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
480 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
481 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
482 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
483 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
484 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
485 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
486 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
487 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
488 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
489 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
490 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
491 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
492 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
493 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
494 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
495 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
496 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
497 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
498 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
499 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
500 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
501 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
502 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
503 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
504 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
505 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
506 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
507 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
508 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
509 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
510 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
511 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
512 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
513 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
514 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
515 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
516 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
517 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
518 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
519 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
520 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
521 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
522 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
523 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
524 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
525 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
526 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
527 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
528 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
529 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
530 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
531 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
532 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
533 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
534 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
535 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
536 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
537 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
538 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
539 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
540 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
541 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
542 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
543 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
544 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
545 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
546 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
547 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
548 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
549 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
550 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
551 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
552 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
553 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
554 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
555 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
556 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
557 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
558 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
559 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
560 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
561 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
562 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
563 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
564 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
565 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
566 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
567 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
568 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
569 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
570 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
571 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
572 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
573 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
574 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
575 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
576 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
577 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
578 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
579 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
580 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
581 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
582 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
583 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
584 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
585 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
586 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
587 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
588 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
589 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
590 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
591 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
592 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
593 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
594 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
595 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
596 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
597 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
598 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
599 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
600 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
601 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
602 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
603 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
604 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
605 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
606 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
607 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
608 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
609 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
610 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
611 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
612 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
613 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
614 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
615 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
616 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
617 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
618 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
619 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
620 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
621 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
622 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
623 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
624 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
625 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
626 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
627 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
628 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
629 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
630 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
631 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
632 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
633 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
634 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
635 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
636 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
637 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
638 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
639 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
640 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
641 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
642 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
643 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
644 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
645 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
646 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
647 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
648 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
649 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
650 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
651 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
652 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
653 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
654 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
655 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
656 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
657 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
658 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
659 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
660 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
661 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
662 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
663 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
664 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
665 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
666 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
667 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
668 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
669 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
670 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
671 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
672 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
673 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
674 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
675 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
676 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
677 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
678 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
679 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
680 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699
681 libffi.dylib                  	0x00007fff2d8f022d ffi_call_int + 699

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff202e09ca poll + 10
1   libruby.3.0.dylib             	0x0000000104db5233 timer_pthread_fn + 104
2   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
3   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

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

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

Thread 4:
0   libsystem_pthread.dylib       	0x00007fff2030b420 start_wqthread + 0

Thread 5:: QQmlThread
0   libsystem_kernel.dylib        	0x00007fff202e09ca poll + 10
1   org.qt-project.QtCore         	0x000000010a9d386e qt_safe_poll(pollfd*, unsigned int, timespec const*) + 94
2   org.qt-project.QtCore         	0x000000010a9d50bc QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 812
3   org.qt-project.QtCore         	0x000000010a9720c7 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 471
4   org.qt-project.QtCore         	0x000000010a7b1c2c QThread::exec() + 140
5   org.qt-project.QtQml          	0x00000001091c5199 0x108f3e000 + 2650521
6   org.qt-project.QtCore         	0x000000010a7b2b3a 0x10a790000 + 142138
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 6:: ZMQbg/Reaper
0   libsystem_kernel.dylib        	0x00007fff202dec4a kevent + 10
1   libzmq.5.dylib                	0x000000010b83c2b1 zmq::kqueue_t::loop() + 181
2   libzmq.5.dylib                	0x000000010b86327e thread_routine(void*) + 60
3   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
4   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 7:: ZMQbg/IO/0
0   libsystem_kernel.dylib        	0x00007fff202dec4a kevent + 10
1   libzmq.5.dylib                	0x000000010b83c2b1 zmq::kqueue_t::loop() + 181
2   libzmq.5.dylib                	0x000000010b86327e thread_routine(void*) + 60
3   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
4   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 8 Crashed:
0   libsystem_kernel.dylib        	0x00007fff202e092e __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff2030f5bd pthread_kill + 263
2   libsystem_c.dylib             	0x00007fff201f3bd5 raise + 26
3   libignition-tools-backward.dylib	0x0000000106487fb5 backward::SignalHandling::sig_handler(int, __siginfo*, void*) + 21 (backward.hpp:4268)
4   libsystem_platform.dylib      	0x00007fff20354d7d _sigtramp + 29
5   libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001066fdf80 0x10655a000 + 1720192
6   libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001065cc278 std::__1::__function::__value_func<void (ignition::msgs::SerializedStepMap const&, ignition::transport::v12::MessageInfo const&)>::operator()(ignition::msgs::SerializedStepMap const&, ignition::transport::v12::MessageInfo const&) const + 25 (functional:1885) [inlined]
7   libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001065cc278 std::__1::function<void (ignition::msgs::SerializedStepMap const&, ignition::transport::v12::MessageInfo const&)>::operator()(ignition::msgs::SerializedStepMap const&, ignition::transport::v12::MessageInfo const&) const + 25 (functional:2560) [inlined]
8   libignition-gazebo7-gui.7.0.0~pre1.dylib	0x00000001065cc278 ignition::transport::v12::SubscriptionHandler<ignition::msgs::SerializedStepMap>::RunLocalCallback(google::protobuf::Message const&, ignition::transport::v12::MessageInfo const&) + 72 (SubscriptionHandler.hh:220)
9   libignition-transport12.12.0.0~pre1.dylib	0x00000001094c87be ignition::transport::v12::NodeShared::TriggerCallbacks(ignition::transport::v12::MessageInfo const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, ignition::transport::v12::NodeShared::HandlerInfo const&) + 1822 (NodeShared.cc:627)
10  libignition-transport12.12.0.0~pre1.dylib	0x00000001094c497a ignition::transport::v12::NodeShared::RecvMsgUpdate() + 2026 (NodeShared.cc:520)
11  libignition-transport12.12.0.0~pre1.dylib	0x00000001094c1b18 ignition::transport::v12::NodeShared::RunReceptionTask() + 248 (NodeShared.cc:364)
12  libignition-transport12.12.0.0~pre1.dylib	0x00000001094d528e decltype(*(std::__1::forward<ignition::transport::v12::NodeShared*>(fp0)).*fp()) std::__1::__invoke<void (ignition::transport::v12::NodeShared::*)(), ignition::transport::v12::NodeShared*, void>(void (ignition::transport::v12::NodeShared::*&&)(), ignition::transport::v12::NodeShared*&&) + 26 (type_traits:3635) [inlined]
13  libignition-transport12.12.0.0~pre1.dylib	0x00000001094d528e void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeShared::*)(), ignition::transport::v12::NodeShared*, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeShared::*)(), ignition::transport::v12::NodeShared*>&, std::__1::__tuple_indices<2ul>) + 26 (thread:286) [inlined]
14  libignition-transport12.12.0.0~pre1.dylib	0x00000001094d528e void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeShared::*)(), ignition::transport::v12::NodeShared*> >(void*) + 62 (thread:297)
15  libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
16  libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 9:
0   libsystem_kernel.dylib        	0x00007fff202e09ca poll + 10
1   libzmq.5.dylib                	0x000000010b86ffb5 zmq_poll + 292
2   libignition-transport12.12.0.0~pre1.dylib	0x00000001094ab6e7 zmq::detail::poll(zmq_pollitem_t*, unsigned long, long) + 10 (zmq.hpp:307) [inlined]
3   libignition-transport12.12.0.0~pre1.dylib	0x00000001094ab6e7 zmq::poll(zmq_pollitem_t*, unsigned long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 10 (zmq.hpp:356) [inlined]
4   libignition-transport12.12.0.0~pre1.dylib	0x00000001094ab6e7 ignition::transport::v12::pollSockets(std::__1::vector<int, std::__1::allocator<int> > const&, int) + 71 (Discovery.cc:54)
5   libignition-transport12-log.12.0.0~pre1.dylib	0x00000001089c2c2f ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>::RecvMessages() + 191 (Discovery.hh:767)
6   libignition-transport12.12.0.0~pre1.dylib	0x00000001094d7c3e decltype(*(std::__1::forward<ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>*>(fp0)).*fp()) std::__1::__invoke<void (ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>*, void>(void (ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>::*&&)(), ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>*&&) + 26 (type_traits:3635) [inlined]
7   libignition-transport12.12.0.0~pre1.dylib	0x00000001094d7c3e void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>*, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>*>&, std::__1::__tuple_indices<2ul>) + 26 (thread:286) [inlined]
8   libignition-transport12.12.0.0~pre1.dylib	0x00000001094d7c3e void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::MessagePublisher>*> >(void*) + 62 (thread:297)
9   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
10  libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 10:
0   libsystem_kernel.dylib        	0x00007fff202e09ca poll + 10
1   libzmq.5.dylib                	0x000000010b86ffb5 zmq_poll + 292
2   libignition-transport12.12.0.0~pre1.dylib	0x00000001094ab6e7 zmq::detail::poll(zmq_pollitem_t*, unsigned long, long) + 10 (zmq.hpp:307) [inlined]
3   libignition-transport12.12.0.0~pre1.dylib	0x00000001094ab6e7 zmq::poll(zmq_pollitem_t*, unsigned long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 10 (zmq.hpp:356) [inlined]
4   libignition-transport12.12.0.0~pre1.dylib	0x00000001094ab6e7 ignition::transport::v12::pollSockets(std::__1::vector<int, std::__1::allocator<int> > const&, int) + 71 (Discovery.cc:54)
5   libignition-transport12.12.0.0~pre1.dylib	0x00000001094d7d6f ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>::RecvMessages() + 191 (Discovery.hh:767)
6   libignition-transport12.12.0.0~pre1.dylib	0x00000001094daaae decltype(*(std::__1::forward<ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>*>(fp0)).*fp()) std::__1::__invoke<void (ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>*, void>(void (ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>::*&&)(), ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>*&&) + 26 (type_traits:3635) [inlined]
7   libignition-transport12.12.0.0~pre1.dylib	0x00000001094daaae void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>*, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>*>&, std::__1::__tuple_indices<2ul>) + 26 (thread:286) [inlined]
8   libignition-transport12.12.0.0~pre1.dylib	0x00000001094daaae void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>::*)(), ignition::transport::v12::Discovery<ignition::transport::v12::ServicePublisher>*> >(void*) + 62 (thread:297)
9   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
10  libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 11:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libc++.1.dylib                	0x00007fff20278e03 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 93
3   libignition-transport12.12.0.0~pre1.dylib	0x00000001094c3ace std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> > >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> > > const&) + 12 (__mutex_base:423) [inlined]
4   libignition-transport12.12.0.0~pre1.dylib	0x00000001094c3ace bool std::__1::condition_variable::wait_until<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> >, ignition::transport::v12::NodeSharedPrivate::PublishThread()::$_0>(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> > > const&, ignition::transport::v12::NodeSharedPrivate::PublishThread()::$_0) + 12 (__mutex_base:435) [inlined]
5   libignition-transport12.12.0.0~pre1.dylib	0x00000001094c3ace ignition::transport::v12::NodeSharedPrivate::PublishThread() + 1182 (NodeShared.cc:1801)
6   libignition-transport12.12.0.0~pre1.dylib	0x00000001094dac2e decltype(*(std::__1::forward<ignition::transport::v12::NodeSharedPrivate*>(fp0)).*fp()) std::__1::__invoke<void (ignition::transport::v12::NodeSharedPrivate::*)(), ignition::transport::v12::NodeSharedPrivate*, void>(void (ignition::transport::v12::NodeSharedPrivate::*&&)(), ignition::transport::v12::NodeSharedPrivate*&&) + 26 (type_traits:3635) [inlined]
7   libignition-transport12.12.0.0~pre1.dylib	0x00000001094dac2e void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeSharedPrivate::*)(), ignition::transport::v12::NodeSharedPrivate*, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeSharedPrivate::*)(), ignition::transport::v12::NodeSharedPrivate*>&, std::__1::__tuple_indices<2ul>) + 26 (thread:286) [inlined]
8   libignition-transport12.12.0.0~pre1.dylib	0x00000001094dac2e void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ignition::transport::v12::NodeSharedPrivate::*)(), ignition::transport::v12::NodeSharedPrivate*> >(void*) + 62 (thread:297)
9   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
10  libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 12:
0   libsystem_pthread.dylib       	0x00007fff2030b420 start_wqthread + 0

Thread 13:
0   libsystem_pthread.dylib       	0x00007fff2030b420 start_wqthread + 0

Thread 14:
0   libsystem_pthread.dylib       	0x00007fff2030b420 start_wqthread + 0

Thread 15:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff202da2ba mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff202da62c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2040755f __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff20405c3f __CFRunLoopRun + 1328
4   com.apple.CoreFoundation      	0x00007fff2040504c CFRunLoopRunSpecific + 563
5   com.apple.AppKit              	0x00007fff22d93e3a _NSEventThread + 124
6   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 16:: OGL Profiler
0   libsystem_kernel.dylib        	0x00007fff202da2ba mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff202da62c mach_msg + 60
2   com.apple.opengl              	0x00007fff6b801a69 glcDebugListener + 301
3   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
4   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 17:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218bc9b Ogre::WaitableEvent::wait() + 59 (OgreWaitableEvent.cpp:84)
3   libOgreMain.2.2.6.dylib       	0x00000001420ed4e8 Ogre::TextureGpuManager::_updateStreamingWorkerThread(Ogre::ThreadHandle*) + 23 (OgreTextureGpuManager.cpp:2453) [inlined]
4   libOgreMain.2.2.6.dylib       	0x00000001420ed4e8 Ogre::updateStreamingWorkerThread(Ogre::ThreadHandle*) + 27 (OgreTextureGpuManager.cpp:2446) [inlined]
5   libOgreMain.2.2.6.dylib       	0x00000001420ed4e8 Ogre::updateStreamingWorkerThread_internal(void*) + 40 (OgreTextureGpuManager.cpp:81)
6   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 18:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 19:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 20:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 21:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 22:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 23:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 24:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 25:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 26:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 27:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 28:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 29:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 30:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 31:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 32:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 33:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 34:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 35:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 36:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 37:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 38:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 39:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 40:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 41:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 42:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 43:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 44:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 45:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 46:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 47:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 48:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 49:
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe49 _pthread_cond_wait + 1298
2   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::pthread_barrier_wait(pthread_barrier_t*) + 31 (OgreBarrierPThreads.cpp:85) [inlined]
3   libOgreMain.2.2.6.dylib       	0x000000014218b788 Ogre::Barrier::sync() + 40 (OgreBarrierPThreads.cpp:110)
4   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::SceneManager::_updateWorkerThread(Ogre::ThreadHandle*) + 23 (OgreSceneManager.cpp:4701) [inlined]
5   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread(Ogre::ThreadHandle*) + 31 (OgreSceneManager.cpp:4663) [inlined]
6   libOgreMain.2.2.6.dylib       	0x000000014205475d Ogre::updateWorkerThread_internal(void*) + 45 (OgreSceneManager.cpp:4665)
7   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 50:: CVDisplayLink
0   libsystem_kernel.dylib        	0x00007fff202dccde __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff2030fe7f _pthread_cond_wait + 1352
2   com.apple.CoreVideo           	0x00007fff27261fe3 CVDisplayLink::waitUntil(unsigned long long) + 229
3   com.apple.CoreVideo           	0x00007fff272614ec CVDisplayLink::runIOThread() + 482
4   libsystem_pthread.dylib       	0x00007fff2030f8fc _pthread_start + 224
5   libsystem_pthread.dylib       	0x00007fff2030b443 thread_start + 15

Thread 8 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000700007e48000  rcx: 0x0000700007e475a8  rdx: 0x0000000000000000
  rdi: 0x000000000000a003  rsi: 0x000000000000000b  rbp: 0x0000700007e475d0  rsp: 0x0000700007e475a8
   r8: 0x00000000000019af   r9: 0x0000000000000013  r10: 0x0000700007e48000  r11: 0x0000000000000246
  r12: 0x000000000000a003  r13: 0x00007fd81fdde230  r14: 0x000000000000000b  r15: 0x0000000000000016
  rip: 0x00007fff202e092e  rfl: 0x0000000000000246  cr2: 0x00007fff8701d808
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133

Thread 8 instruction stream:
  45 a0 01 74 31 48 8b 7d-b0 eb 21 48 89 c3 f6 45  E..t1H.}..!H...E
  c0 01 74 0e 48 8b 7d d0-e8 be e9 05 00 eb 03 48  ..t.H.}........H
  89 c3 f6 45 80 01 74 0e-48 8b 7d 90 e8 aa e9 05  ...E..t.H.}.....
  00 eb 03 48 89 c3 f6 45-e0 01 74 09 48 8b 7d f0  ...H...E..t.H.}.
  e8 96 e9 05 00 48 89 df-e8 a0 e0 05 00 0f 1f 40  .....H.........@
  00 55 48 89 e5 48 81 ec-40 01 00 00 48 8b 47 10  [email protected].
 [80]b8 a8 00 00 00 00 0f-84 b7 00 00 00 0f 57 c0  ..............W.	<==
  0f 29 85 60 ff ff ff 0f-29 85 70 ff ff ff 0f 29  .).`....).p....)
  45 80 0f 29 45 90 0f 29-45 a0 0f 29 45 b0 0f 29  E..)E..)E..)E..)
  45 c0 0f 29 45 d0 0f 29-45 e0 48 89 75 f0 48 8d  E..)E..)E.H.u.H.
  05 bc 8f 18 00 48 89 45-f8 0f 28 85 60 ff ff ff  .....H.E..(.`...
  0f 11 84 24 90 00 00 00-0f 28 85 70 ff ff ff 0f  ...$.....(.p....
  
Thread 8 last branch register state not available.


Binary Images:
       0x104c29000 -        0x104c2cfff +ruby (0) <23A481F0-5A0F-33DC-BCE6-CE9BB9B1C2D1> /usr/local/opt/ruby/bin/ruby
       0x104c39000 -        0x104ea4fff +libruby.3.0.dylib (0) <5C474714-6B7D-3521-862E-29BDEA4DB0F8> /usr/local/Cellar/ruby/3.0.3/lib/libruby.3.0.dylib
       0x1063f0000 -        0x1063f3fff +encdb.bundle (0) <1FB57E0E-D87C-3F54-A170-D973EBAB9DC1> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/enc/encdb.bundle
       0x106400000 -        0x106403fff +transdb.bundle (0) <7D398EBB-6D07-31A0-BC7D-A80ABDD3553B> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/enc/trans/transdb.bundle
       0x106410000 -        0x106413fff +monitor.bundle (0) <316ED8B7-E86E-3A87-B438-A73A91425EE7> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/monitor.bundle
       0x106420000 -        0x106423fff +psych.bundle (0) <9B2D7E58-A2C1-3F41-9ED7-0F71E54EC848> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/psych.bundle
       0x106430000 -        0x106447fff +libyaml-0.2.dylib (0) <F0DDC334-B2AA-3FEB-88C0-DDEFD0FB577B> /usr/local/opt/libyaml/lib/libyaml-0.2.dylib
       0x10644e000 -        0x106455fff +stringio.bundle (0) <48C24822-0237-36D1-AEFB-EC7E60738416> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/stringio.bundle
       0x106462000 -        0x106465fff +strscan.bundle (0) <F50890A5-B732-3F32-91B2-045F096619A3> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/strscan.bundle
       0x106472000 -        0x106479fff +fiddle.bundle (0) <AB374E53-7E0D-376F-85C0-41C0349849EA> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/fiddle.bundle
       0x106486000 -        0x10648dfff +libignition-tools-backward.dylib (0) <D77D03DE-42BC-3BCD-8B05-705F59B3EFF0> /usr/local/Cellar/ignition-tools1/1.4.1/lib/libignition-tools-backward.dylib
       0x1064a2000 -        0x1064a5fff +escape.bundle (0) <9BB07468-B9BC-3E19-AA9A-7BDB38ED2032> /usr/local/Cellar/ruby/3.0.3/lib/ruby/3.0.0/x86_64-darwin20/cgi/escape.bundle
       0x1064b2000 -        0x1064f1fff +libignition-gazebo7-ign.7.0.0~pre1.dylib (0) <FC51C560-4EDE-3204-8C88-ADB1F8B92078> /usr/local/Cellar/ignition-gazebo7/7.0.0/lib/libignition-gazebo7-ign.7.0.0~pre1.dylib
       0x10655a000 -        0x106701fff +libignition-gazebo7-gui.7.0.0~pre1.dylib (0) <3B7F1026-F4AA-3DD7-AD2A-20AED09BBF72> /usr/local/Cellar/ignition-gazebo7/7.0.0/lib/libignition-gazebo7-gui.7.0.0~pre1.dylib
       0x106896000 -        0x1069d5fff +libignition-gazebo7.7.0.0~pre1.dylib (0) <7C13050D-F2F7-3ED4-A877-713594C3BEEA> /usr/local/Cellar/ignition-gazebo7/7.0.0/lib/libignition-gazebo7.7.0.0~pre1.dylib
       0x106c4a000 -        0x106cb9fff +libignition-fuel_tools8.8.0.0~pre1.dylib (0) <0C2016C2-6CEA-3FF5-BBBD-7701E8E0DBCE> /usr/local/Cellar/ignition-fuel-tools8/8.0.0/lib/libignition-fuel_tools8.8.0.0~pre1.dylib
       0x106d12000 -        0x106efdfff +libsdformat13.13.0.0~pre1.dylib (0) <15C7F0CA-A86C-35B0-99C1-444048D70F5D> /usr/local/Cellar/sdformat13/13.0.0/lib/libsdformat13.13.0.0~pre1.dylib
       0x10706a000 -        0x1070c5fff +libignition-gui7.7.0.0~pre1.dylib (0) <7D2662F5-A465-3C0B-B7BB-1DB182922868> /usr/local/Cellar/ignition-gui7/7.0.0/lib/libignition-gui7.7.0.0~pre1.dylib
       0x10712a000 -        0x107139fff +libignition-common5-profiler.5.0.0~pre1.dylib (0) <01C40697-15B3-34FA-BCC8-3FBF1FE58B86> /usr/local/Cellar/ignition-common5/5.0.0/lib/libignition-common5-profiler.5.0.0~pre1.dylib
       0x10714a000 -        0x10714dfff +libignition-common5-events.5.0.0~pre1.dylib (0) <A34D0A15-D963-3975-891E-D393F0AF0404> /usr/local/Cellar/ignition-common5/5.0.0/lib/libignition-common5-events.5.0.0~pre1.dylib
       0x10715e000 -        0x10716dfff +libignition-common5-av.5.0.0~pre1.dylib (0) <E55CCB02-6834-3D39-A6B5-2D65EC5C5629> /usr/local/Cellar/ignition-common5/5.0.0/lib/libignition-common5-av.5.0.0~pre1.dylib
       0x107182000 -        0x107201fff +libswscale.5.dylib (0) <3B6001BA-2ADF-36C0-98A4-0C9C70B49A8E> /usr/local/opt/ffmpeg/lib/libswscale.5.dylib
       0x107214000 -        0x107233fff +libavdevice.58.dylib (0) <6A954CF6-63AF-3948-973D-90D837409D74> /usr/local/opt/ffmpeg/lib/libavdevice.58.dylib
       0x107242000 -        0x1073e1fff +libavformat.58.dylib (0) <2FC039D0-9348-3AB9-99AB-FFC3AD45DDCA> /usr/local/opt/ffmpeg/lib/libavformat.58.dylib
       0x107430000 -        0x107eb7fff +libavcodec.58.dylib (0) <74E241F1-2236-30CA-ADDC-111C1CD690BB> /usr/local/opt/ffmpeg/lib/libavcodec.58.dylib
       0x10857f000 -        0x1085d2fff +libavutil.56.dylib (0) <F2CD9998-F2F7-32BF-B05D-205C2CCCB453> /usr/local/opt/ffmpeg/lib/libavutil.56.dylib
       0x1087f9000 -        0x108874fff +libignition-common5-graphics.5.0.0~pre1.dylib (0) <51794586-145C-34B7-BF76-F9E7C58ED667> /usr/local/Cellar/ignition-common5/5.0.0/lib/libignition-common5-graphics.5.0.0~pre1.dylib
       0x1088d9000 -        0x108914fff +libignition-common5.5.0.0~pre1.dylib (0) <BE027253-67CA-3C40-8E13-2443A8F15C49> /usr/local/Cellar/ignition-common5/5.0.0/lib/libignition-common5.5.0.0~pre1.dylib
       0x108961000 -        0x108970fff +libignition-plugin1-loader.1.2.1.dylib (0) <1460CDA1-E2FC-3431-B9D7-4D1136F85239> /usr/local/Cellar/ignition-plugin1/1.2.1/lib/libignition-plugin1-loader.1.2.1.dylib
       0x108989000 -        0x108990fff +libignition-plugin1.1.2.1.dylib (0) <C6FC74B2-B3AE-3778-93ED-047B6AF69C30> /usr/local/Cellar/ignition-plugin1/1.2.1/lib/libignition-plugin1.1.2.1.dylib
       0x1089a1000 -        0x1089d8fff +libignition-transport12-log.12.0.0~pre1.dylib (0) <080FC36B-4A8F-3BAA-BEAD-632614DE6340> /usr/local/Cellar/ignition-transport12/12.0.0/lib/libignition-transport12-log.12.0.0~pre1.dylib
       0x108a29000 -        0x108a44fff +org.qt-project.QtQuickControls2 (5.15 - 5.15.2) <1A243169-EDCF-30D0-B3A5-31F126589DC6> /usr/local/opt/qt@5/lib/QtQuickControls2.framework/Versions/5/QtQuickControls2
       0x108a5d000 -        0x108d94fff +org.qt-project.QtQuick (5.15 - 5.15.2) <1FC555D0-DFF9-3185-A081-B09548D78ACE> /usr/local/opt/qt@5/lib/QtQuick.framework/Versions/5/QtQuick
       0x108ec7000 -        0x108f1efff +org.qt-project.QtQmlModels (5.15 - 5.15.2) <6E14BC33-3265-3AEE-AD14-C47C5733E773> /usr/local/opt/qt@5/lib/QtQmlModels.framework/Versions/5/QtQmlModels
       0x108f3e000 -        0x109285fff +org.qt-project.QtQml (5.15 - 5.15.2) <4D3930B8-1D10-3B8E-B0EC-FA5B0A3652BF> /usr/local/opt/qt@5/lib/QtQml.framework/Versions/5/QtQml
       0x109330000 -        0x10943bfff +org.qt-project.QtNetwork (5.15 - 5.15.2) <5C39AE8E-5005-3B8B-9B2C-3BF59F58740C> /usr/local/opt/qt@5/lib/QtNetwork.framework/Versions/5/QtNetwork
       0x109488000 -        0x109493fff +libtinyxml2.9.dylib (0) <A6A80783-3D48-307D-B67B-E713A5DD56C4> /usr/local/opt/tinyxml2/lib/libtinyxml2.9.dylib
       0x1094a4000 -        0x1094f7fff +libignition-transport12.12.0.0~pre1.dylib (0) <AF4067B4-2AAC-3B4D-B5CF-2639813F90FC> /usr/local/Cellar/ignition-transport12/12.0.0/lib/libignition-transport12.12.0.0~pre1.dylib
       0x109568000 -        0x1096a3fff +libignition-msgs9.9.0.0~pre1.dylib (0) <58A5CE01-FD9A-327D-8F66-113FEF80E5E4> /usr/local/Cellar/ignition-msgs9/9.0.0/lib/libignition-msgs9.9.0.0~pre1.dylib
       0x10991c000 -        0x109a5ffff +libprotobuf.30.dylib (0) <6FDECCFC-4D73-3FA7-B1DA-996740A028A7> /usr/local/opt/protobuf/lib/libprotobuf.30.dylib
       0x109b6c000 -        0x109b9bfff +libignition-math7.7.0.0~pre1.dylib (0) <F53AADAE-589B-3EB9-8217-438367DC5EC6> /usr/local/Cellar/ignition-math7/7.0.0/lib/libignition-math7.7.0.0~pre1.dylib
       0x109be0000 -        0x109be3fff +libignition-utils1.1.1.0.dylib (0) <2D093249-1AEA-3282-9DE0-9AD181EE5B5C> /usr/local/Cellar/ignition-utils1/1.1.0/lib/libignition-utils1.1.1.0.dylib
       0x109bf0000 -        0x10a02ffff +org.qt-project.QtWidgets (5.15 - 5.15.2) <D801C509-1422-3755-9DF9-31E58A9EF464> /usr/local/opt/qt@5/lib/QtWidgets.framework/Versions/5/QtWidgets
       0x10a195000 -        0x10a674fff +org.qt-project.QtGui (5.15 - 5.15.2) <DA53DB54-97B3-33E4-B043-8AB4DB184908> /usr/local/opt/qt@5/lib/QtGui.framework/Versions/5/QtGui
       0x10a790000 -        0x10acd3fff +org.qt-project.QtCore (5.15 - 5.15.2) <7046633A-7ED1-3A02-B6F9-69F438EDC363> /usr/local/opt/qt@5/lib/QtCore.framework/Versions/5/QtCore
       0x10ad9e000 -        0x10adc5fff +libjsoncpp.25.dylib (0) <16C4E4D2-65E4-3C70-95D3-04E0C00A98B4> /usr/local/opt/jsoncpp/lib/libjsoncpp.25.dylib
       0x10ade2000 -        0x10adf5fff +libzip.5.dylib (0) <3374F177-A811-3C30-820A-4E5A98B6DC31> /usr/local/opt/libzip/lib/libzip.5.dylib
       0x10ae06000 -        0x10ae9dfff +libzstd.1.dylib (0) <E8621DA1-8065-34CA-841C-7825F54AF2A9> /usr/local/opt/zstd/lib/libzstd.1.dylib
       0x10aeb2000 -        0x10af6dfff +org.qt-project.QtQuickTemplates2 (5.15 - 5.15.2) <6975C29E-6ADD-3EB8-9F4F-A40D662CED88> /usr/local/Cellar/qt@5/5.15.2_1/lib/QtQuickTemplates2.framework/Versions/5/QtQuickTemplates2
       0x10aff7000 -        0x10b036fff +libgts-0.7.5.dylib (0) <EB811488-A37D-3F90-9E92-1D44C09ACF14> /usr/local/opt/gts/lib/libgts-0.7.5.dylib
       0x10b047000 -        0x10b54afff +libfreeimage.dylib (0) <41293980-3490-36BA-A516-008AED81FE77> /usr/local/opt/freeimage/lib/libfreeimage.dylib
       0x10b64f000 -        0x10b652fff +libgthread-2.0.0.dylib (0) <BC56FEB0-FE34-3EA6-B2AF-C5D2D8BEBB82> /usr/local/opt/glib/lib/libgthread-2.0.0.dylib
       0x10b65f000 -        0x10b662fff +libgmodule-2.0.0.dylib (0) <5080FB0A-FBF2-3699-B6C7-0B06EAF1CD69> /usr/local/opt/glib/lib/libgmodule-2.0.0.dylib
       0x10b66f000 -        0x10b772fff +libglib-2.0.0.dylib (0) <B43DC9E5-80AF-3A60-BF6C-C7AC01BC88EF> /usr/local/opt/glib/lib/libglib-2.0.0.dylib
       0x10b79f000 -        0x10b7a8fff +libintl.8.dylib (0) <FA921CC0-395B-3155-8259-EA61DE25C5D2> /usr/local/opt/gettext/lib/libintl.8.dylib
       0x10b7af000 -        0x10b81afff +libpcre.1.dylib (0) <2FE6978A-064C-3F4C-8F3A-947322344D62> /usr/local/opt/pcre/lib/libpcre.1.dylib
       0x10b827000 -        0x10b882fff +libzmq.5.dylib (0) <2A595E8B-957C-3C0A-9AEC-16A5855C0BF8> /usr/local/opt/zeromq/lib/libzmq.5.dylib
       0x10b8c3000 -        0x10b902fff +libsodium.23.dylib (0) <D8777AB1-B4BA-324E-8E40-FEF56A1E7955> /usr/local/opt/libsodium/lib/libsodium.23.dylib
       0x10b914000 -        0x10b91bfff +liburdfdom_sensor.3.0.dylib (0) <DDC3C219-09D9-31F0-A6A7-18CA0C55096D> /usr/local/opt/urdfdom/lib/liburdfdom_sensor.3.0.dylib
       0x10b928000 -        0x10b92ffff +liburdfdom_model_state.3.0.dylib (0) <4472B4B1-D536-344B-9F09-F642E9ECF7B7> /usr/local/opt/urdfdom/lib/liburdfdom_model_state.3.0.dylib
       0x10b940000 -        0x10b957fff +liburdfdom_model.3.0.dylib (0) <EC7FF7B9-3E87-363E-AED6-0A3E9F4E3E5E> /usr/local/opt/urdfdom/lib/liburdfdom_model.3.0.dylib
       0x10b974000 -        0x10b98bfff +liburdfdom_world.3.0.dylib (0) <ABB36813-2EBA-3EB9-8489-E541D70D8BE6> /usr/local/opt/urdfdom/lib/liburdfdom_world.3.0.dylib
       0x10b9a8000 -        0x10b9aafff +libconsole_bridge.1.0.dylib (0) <40ACF48D-48DD-38B0-B37D-9336B9607588> /usr/local/opt/console_bridge/lib/libconsole_bridge.1.0.dylib
       0x10b9af000 -        0x10b9bafff +libtinyxml.dylib (0) <5DCBF664-2866-3C23-9381-5AE97DB4A220> /usr/local/opt/tinyxml/lib/libtinyxml.dylib
       0x10b9cb000 -        0x10bc1efff +libavfilter.7.110.100.dylib (0) <6B116E30-FDA4-32C4-9D37-5BBD359900FC> /usr/local/Cellar/ffmpeg/4.4.1_5/lib/libavfilter.7.110.100.dylib
       0x10bcbc000 -        0x10bcdbfff +libpostproc.55.9.100.dylib (0) <B4730E81-5ACB-3F6D-970D-DF858474AE2E> /usr/local/Cellar/ffmpeg/4.4.1_5/lib/libpostproc.55.9.100.dylib
       0x10bce5000 -        0x10bcfcfff +libswresample.3.9.100.dylib (0) <FF7981D9-3B8E-3B61-A264-773AFEC4F5DB> /usr/local/Cellar/ffmpeg/4.4.1_5/lib/libswresample.3.9.100.dylib
       0x10bd07000 -        0x10bd22fff +libavresample.4.0.0.dylib (0) <ABEB5E59-FBF0-33F7-9BC8-4B6B0788B2A6> /usr/local/Cellar/ffmpeg/4.4.1_5/lib/libavresample.4.0.0.dylib
       0x10bd2d000 -        0x10bd40fff +libxcb.1.dylib (0) <B8BE490A-7438-325D-AEA9-C4D12D129B27> /usr/local/opt/libxcb/lib/libxcb.1.dylib
       0x10bd59000 -        0x10bd5cfff +libxcb-shm.0.dylib (0) <2086C27D-6FA7-3D66-9934-6EE352847C01> /usr/local/opt/libxcb/lib/libxcb-shm.0.dylib
       0x10bd69000 -        0x10bd6cfff +libxcb-shape.0.dylib (0) <A9768F5F-9DE9-3969-8655-7053A565B4B9> /usr/local/opt/libxcb/lib/libxcb-shape.0.dylib
       0x10bd79000 -        0x10bd7cfff +libxcb-xfixes.0.dylib (0) <823B0F98-14DF-3344-9F18-081FAA921D84> /usr/local/opt/libxcb/lib/libxcb-xfixes.0.dylib
       0x10bd89000 -        0x10be90fff +libSDL2-2.0.0.dylib (0) <6F649AB3-E7D3-3296-9C11-6D11875F8016> /usr/local/opt/sdl2/lib/libSDL2-2.0.0.dylib
       0x10bee1000 -        0x10bf0cfff +librubberband.2.dylib (0) <B16F63D6-E72F-313A-9D17-6B22EE886F21> /usr/local/opt/rubberband/lib/librubberband.2.dylib
       0x10bf21000 -        0x10c08afff +libsamplerate.0.dylib (0) <8AFE47FF-DA75-3EDC-8B4D-190FE458921E> /usr/local/opt/libsamplerate/lib/libsamplerate.0.dylib
       0x10c08e000 -        0x10c0ddfff +libvmaf.1.dylib (0) <2BB4AFB0-0D02-3B77-BEBA-4274CC55A58F> /usr/local/opt/libvmaf/lib/libvmaf.1.dylib
       0x10c1a2000 -        0x10c395fff +libtesseract.5.dylib (0) <006B93EC-E575-3652-9941-083E87FF17C7> /usr/local/opt/tesseract/lib/libtesseract.5.dylib
       0x10c45e000 -        0x10c489fff +libass.9.dylib (0) <D7E4FCCB-0E8A-3F37-875C-41C00D5E9972> /usr/local/opt/libass/lib/libass.9.dylib
       0x10c49e000 -        0x10c4a7fff +libvidstab.1.1.dylib (0) <16813C5C-CD8D-314E-91AF-B7003A4BC30B> /usr/local/opt/libvidstab/lib/libvidstab.1.1.dylib
       0x10c4ad000 -        0x10c554fff +libzimg.2.dylib (0) <58FA2B05-C816-360F-B377-0DCE4CED113A> /usr/local/opt/zimg/lib/libzimg.2.dylib
       0x10c58d000 -        0x10c5bcfff +libfontconfig.1.dylib (0) <B0C36C06-6190-3DA7-9107-CE9362345FA5> /usr/local/opt/fontconfig/lib/libfontconfig.1.dylib
       0x10c5ca000 -        0x10c649fff +libfreetype.6.dylib (0) <A7367C7F-593E-3DEA-8C26-595809A31F32> /usr/local/opt/freetype/lib/libfreetype.6.dylib
       0x10c66a000 -        0x10c6a1fff +libbluray.2.dylib (0) <8B2D2BF4-9845-33F6-BE48-1ED89BEA836A> /usr/local/opt/libbluray/lib/libbluray.2.dylib
       0x10c6b2000 -        0x10c7f9fff +libgnutls.30.dylib (0) <C6FDC876-426E-3426-8182-97F3B2531151> /usr/local/opt/gnutls/lib/libgnutls.30.dylib
       0x10c84a000 -        0x10c871fff +librist.4.dylib (0) <ECAEC177-C948-32AF-921C-F6159B5BA1D9> /usr/local/opt/librist/lib/librist.4.dylib
       0x10c882000 -        0x10c8edfff +libsrt.1.4.dylib (0) <1F5B9DDF-6DB8-32C7-8834-0CB2D0F93817> /usr/local/opt/srt/lib/libsrt.1.4.dylib
       0x10c922000 -        0x10cafdfff +libvpx.7.dylib (0) <A44F095C-0342-34DA-A40F-3BF578EAC6DB> /usr/local/opt/libvpx/lib/libvpx.7.dylib
       0x10cb4e000 -        0x10cb55fff +libwebpmux.3.dylib (0) <529D39EE-AE39-378D-8C90-9749C4E71305> /usr/local/opt/webp/lib/libwebpmux.3.dylib
       0x10cb62000 -        0x10cbb5fff +libwebp.7.dylib (0) <9A65CD58-B258-3C78-B933-144735A43587> /usr/local/opt/webp/lib/libwebp.7.dylib
       0x10cbca000 -        0x10cbe5fff +liblzma.5.dylib (0) <E4406E42-7BC4-3945-A1A4-E9B6874EF052> /usr/local/opt/xz/lib/liblzma.5.dylib
       0x10cbec000 -        0x10cd43fff +libdav1d.5.dylib (0) <B799DEF9-181A-3076-A87C-A444C397C825> /usr/local/opt/dav1d/lib/libdav1d.5.dylib
       0x10ce0c000 -        0x10ce1cfff +libopencore-amrwb.0.dylib (0) <A9879565-126F-3AEA-905F-320AEC806A43> /usr/local/opt/opencore-amr/lib/libopencore-amrwb.0.dylib
       0x10ce21000 -        0x10ce28fff +libsnappy.1.dylib (0) <938F3866-777A-37D5-9878-48CA380F9A53> /usr/local/opt/snappy/lib/libsnappy.1.dylib
       0x10ce35000 -        0x10d2e4fff +libaom.3.dylib (0) <BA3F6FC9-4E1E-3E69-8F13-B27F59DAACE6> /usr/local/opt/aom/lib/libaom.3.dylib
       0x10d3cd000 -        0x10d5d8fff +libjxl.0.6.dylib (0) <4703A6F1-4A48-3B8C-8149-A5C136AAA1D1> /usr/local/opt/jpeg-xl/lib/libjxl.0.6.dylib
       0x10d649000 -        0x10d680fff +libmp3lame.0.dylib (0) <F5423EC7-022A-341F-A0AB-CABC3CE7C8AD> /usr/local/opt/lame/lib/libmp3lame.0.dylib
       0x10d6ba000 -        0x10d6dbfff +libopencore-amrnb.0.dylib (0) <CEE1677D-C7A6-3711-B1CD-C279B6DE625E> /usr/local/opt/opencore-amr/lib/libopencore-amrnb.0.dylib
       0x10d6e1000 -        0x10d720fff +libopenjp2.7.dylib (0) <161B8769-D70C-351E-9CDE-E55C2625F9B1> /usr/local/opt/openjpeg/lib/libopenjp2.7.dylib
       0x10d731000 -        0x10d779fff +libopus.0.dylib (0) <C7BFE092-5924-3420-AB4E-C014AA65C737> /usr/local/opt/opus/lib/libopus.0.dylib
       0x10d782000 -        0x10d9b9fff +librav1e.0.5.1.dylib (0) <4E915885-DBE6-31F5-A39D-E1E170719A4C> /usr/local/opt/rav1e/lib/librav1e.0.5.1.dylib
       0x10dae6000 -        0x10daf7fff +libspeex.1.dylib (0) <D55FE52D-75C1-3435-AFC4-D1B73390209E> /usr/local/opt/speex/lib/libspeex.1.dylib
       0x10dafd000 -        0x10db24fff +libtheoraenc.1.dylib (0) <FD3A113D-4ECD-33DA-BC62-233DFB9F63DD> /usr/local/opt/theora/lib/libtheoraenc.1.dylib
       0x10db2a000 -        0x10db35fff +libtheoradec.1.dylib (0) <C7DC699E-2565-3E6F-82CE-9E89BAA6886F> /usr/local/opt/theora/lib/libtheoradec.1.dylib
       0x10db3a000 -        0x10db41fff +libogg.0.dylib (0) <BFDBD02C-9BDF-37A0-9C78-536077343AE6> /usr/local/opt/libogg/lib/libogg.0.dylib
       0x10db4e000 -        0x10db70fff +libvorbis.0.dylib (0) <DA7F7CAE-8D16-37D7-B52F-9988143141A1> /usr/local/opt/libvorbis/lib/libvorbis.0.dylib
       0x10db76000 -        0x10dbedfff +libvorbisenc.2.dylib (0) <E3986D08-096C-31D1-ADE4-707F97B57C19> /usr/local/opt/libvorbis/lib/libvorbisenc.2.dylib
       0x10dc1f000 -        0x10ddb6fff +libx264.163.dylib (0) <A3E431A4-F2CC-3A75-BE75-AA212D5565C7> /usr/local/opt/x264/lib/libx264.163.dylib
       0x10debb000 -        0x10ed5afff +libx265.199.dylib (0) <5B456E0C-F689-39C2-A579-356B41172B32> /usr/local/opt/x265/lib/libx265.199.dylib
       0x10ef63000 -        0x10ef88fff +libsoxr.0.dylib (0) <04234685-A9B5-37E4-A17F-F105ED8882DD> /usr/local/opt/libsoxr/lib/libsoxr.0.dylib
       0x10efc4000 -        0x10efcdfff +libbrotlidec.1.dylib (0) <AC7337FC-F5BF-32B2-B46C-218E3B99F77D> /usr/local/opt/brotli/lib/libbrotlidec.1.dylib
       0x10efd1000 -        0x10eff0fff +libbrotlicommon.1.dylib (0) <ED294103-E26D-3933-A628-59997A33770D> /usr/local/opt/brotli/lib/libbrotlicommon.1.dylib
       0x10eff4000 -        0x10f07cfff +libbrotlienc.1.dylib (0) <884F12FA-EBCE-3FBD-AF81-A2F3E60C7E3A> /usr/local/opt/brotli/lib/libbrotlienc.1.dylib
       0x10f082000 -        0x10f0a4fff +libpng16.16.dylib (0) <F666699A-02D5-3061-ADF9-B7A7E471C1E1> /usr/local/opt/libpng/lib/libpng16.16.dylib
       0x10f0ae000 -        0x10f151fff +libp11-kit.0.dylib (0) <89F0260A-9BE0-3581-B02A-53EFE1C94B9C> /usr/local/opt/p11-kit/lib/libp11-kit.0.dylib
       0x10f1a2000 -        0x10f1c1fff +libidn2.0.dylib (0) <640EB1B8-B507-350F-8027-588DC2C271F6> /usr/local/opt/libidn2/lib/libidn2.0.dylib
       0x10f1ce000 -        0x10f359fff +libunistring.2.dylib (0) <2BA12507-0DEB-3316-9666-76476657C4EC> /usr/local/opt/libunistring/lib/libunistring.2.dylib
       0x10f372000 -        0x10f381fff +libtasn1.6.dylib (0) <6EEC7B02-EE11-313C-8AA6-5213A7BB4EC7> /usr/local/opt/libtasn1/lib/libtasn1.6.dylib
       0x10f38e000 -        0x10f3bdfff +libnettle.8.dylib (0) <FBA83D1B-B47F-34E9-825D-F58698089DC9> /usr/local/opt/nettle/lib/libnettle.8.dylib
       0x10f3d2000 -        0x10f409fff +libhogweed.6.dylib (0) <B4EB323A-F950-39AD-BC93-9BCBA53E8ADB> /usr/local/opt/nettle/lib/libhogweed.6.dylib
       0x10f41e000 -        0x10f47dfff +libgmp.10.dylib (0) <185B6429-AE7F-3DAB-841C-B1C2C1736C6B> /usr/local/opt/gmp/lib/libgmp.10.dylib
       0x10f496000 -        0x10f49dfff +libffi.8.dylib (0) <D49CE75D-6943-3027-BD3E-A37C2EE3747E> /usr/local/opt/libffi/lib/libffi.8.dylib
       0x10f4aa000 -        0x10f4f5fff +libmbedcrypto.11.dylib (0) <78C69A52-F0A1-3EFC-AC61-C0BEE8C151D4> /usr/local/opt/mbedtls/lib/libmbedcrypto.11.dylib
       0x10f51a000 -        0x10f51dfff +libcjson.1.dylib (0) <425A9095-1BC0-3A28-B281-9EE63EABB370> /usr/local/opt/cjson/lib/libcjson.1.dylib
       0x10f52a000 -        0x10f579fff +libssl.1.1.dylib (0) <F2EB5CFF-F422-385A-B77F-BDBFA379A3E0> /usr/local/opt/[email protected]/lib/libssl.1.1.dylib
       0x10f5a6000 -        0x10f765fff +libcrypto.1.1.dylib (0) <C8DC773B-B42A-39EE-8488-5EB7D41DA704> /usr/local/opt/[email protected]/lib/libcrypto.1.1.dylib
       0x10f7fe000 -        0x10f9c5fff +liblept.5.dylib (0) <C2ECEAFD-3EAB-3807-9CD3-F1A20E788D11> /usr/local/opt/leptonica/lib/liblept.5.dylib
       0x10fa1e000 -        0x10faa5fff +libarchive.13.dylib (0) <0FDCAF65-FD0B-3724-A930-8305E9D635ED> /usr/local/opt/libarchive/lib/libarchive.13.dylib
       0x10fac6000 -        0x10faf4fff +libjpeg.9.dylib (0) <5500CEBB-26F2-39DF-9364-8903B1C286CE> /usr/local/opt/jpeg/lib/libjpeg.9.dylib
       0x10fafc000 -        0x10fb00fff +libgif.dylib (0) <7C4F033C-607E-385A-8A49-E23517F8AF24> /usr/local/opt/giflib/lib/libgif.dylib
       0x10fb05000 -        0x10fb24fff +liblz4.1.dylib (0) <FAB3E132-EF2A-3B4F-A7BC-39631DB6402E> /usr/local/opt/lz4/lib/liblz4.1.dylib
       0x10fb31000 -        0x10fb46fff +libb2.1.dylib (0) <40B58772-8639-3EA0-ACD1-E738AF76C509> /usr/local/opt/libb2/lib/libb2.1.dylib
       0x10fb4b000 -        0x10fb60fff +libgraphite2.3.dylib (0) <456FA518-5038-36D4-90CF-96F67D85EB1C> /usr/local/opt/graphite2/lib/libgraphite2.3.dylib
       0x10fb70000 -        0x10fc0bfff  dyld (852.2) <0C7C4286-1F67-3DCE-A63D-63315D26F19A> /usr/lib/dyld
       0x10fc88000 -        0x10fce7fff +libtiff.5.dylib (0) <DE1B4F0C-2C5C-3C20-AE60-3EEED670DAC9> /usr/local/opt/libtiff/lib/libtiff.5.dylib
       0x10fd00000 -        0x10fd1bfff +libfribidi.0.dylib (0) <272DD9BA-8B0D-38B9-A021-474B3CD1E67F> /usr/local/opt/fribidi/lib/libfribidi.0.dylib
       0x10fd28000 -        0x10fe0ffff +libharfbuzz.0.dylib (0) <BA1C284F-ACCF-38DC-AF7C-95B0E9CC217F> /usr/local/opt/harfbuzz/lib/libharfbuzz.0.dylib
       0x10fe48000 -        0x10fe4bfff +libXau.6.dylib (0) <FDFD191A-AB86-340D-BEC9-5C23C0A15025> /usr/local/opt/libxau/lib/libXau.6.dylib
       0x10fe58000 -        0x10fe5bfff +libXdmcp.6.dylib (0) <59B83237-80C2-3EA3-81E5-C676F0379306> /usr/local/opt/libxdmcp/lib/libXdmcp.6.dylib
       0x10fefe000 -        0x10ff5dfff +org.qt-project.QtDBus (5.15 - 5.15.2) <D4EBE479-ADBA-397B-B49E-DA1CF560AA2B> /usr/local/Cellar/qt@5/5.15.2_1/lib/QtDBus.framework/Versions/5/QtDBus
       0x10ff79000 -        0x10ffa4fff +org.qt-project.QtPrintSupport (5.15 - 5.15.2) <CF9146E9-8FAE-3A03-87BE-5E1BAFE926B9> /usr/local/Cellar/qt@5/5.15.2_1/lib/QtPrintSupport.framework/Versions/5/QtPrintSupport
       0x121f9f000 -        0x122102fff +libqcocoa.dylib (0) <E1670066-A1CE-31B1-9B62-6B81ED18C519> /usr/local/Cellar/qt@5/5.15.2_1/plugins/platforms/libqcocoa.dylib
       0x122f45000 -        0x122f54fff  libobjc-trampolines.dylib (824.1) <28364891-9DF2-3DD3-AD2C-3AD82D9A24CC> /usr/lib/libobjc-trampolines.dylib
       0x12509a000 -        0x1250c1fff +libqmacstyle.dylib (0) <5AF7BFF1-B6D1-3339-9C57-F523BA53C081> /usr/local/Cellar/qt@5/5.15.2_1/plugins/styles/libqmacstyle.dylib
       0x125b13000 -        0x125b1afff +libqtquick2plugin.dylib (0) <1D8409E6-3143-3244-81BF-1BFD82BFD613> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick.2/libqtquick2plugin.dylib
       0x125b20000 -        0x125b2bfff +org.qt-project.QtQmlWorkerScript (5.15 - 5.15.2) <F4200E55-87A6-37F4-B8E6-D8C30E956C31> /usr/local/Cellar/qt@5/5.15.2_1/lib/QtQmlWorkerScript.framework/Versions/5/QtQmlWorkerScript
       0x125b35000 -        0x125b78fff +libqtquickcontrols2plugin.dylib (0) <1146CDCE-F60B-3F69-B8F3-386AEFA700FC> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Controls.2/libqtquickcontrols2plugin.dylib
       0x125b8b000 -        0x125bcefff +libqtquickcontrols2materialstyleplugin.dylib (0) <8DDDC1B9-CCFE-30BC-8EAA-1678298D682B> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Controls.2/Material/libqtquickcontrols2materialstyleplugin.dylib
       0x139f6f000 -        0x139f8efff +libdialogplugin.dylib (0) <5BDFC9A9-48D5-366B-8521-A8F14DF634DF> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Dialogs/libdialogplugin.dylib
       0x139f9e000 -        0x139fb5fff +libqquicklayoutsplugin.dylib (0) <064FBFBD-B4BA-3780-ACED-FD216C0D09C0> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Layouts/libqquicklayoutsplugin.dylib
       0x139fc2000 -        0x139ffdfff +libqtquicktemplates2plugin.dylib (0) <29341F3D-1F1A-3117-B41E-987C96BAAFA4> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Templates.2/libqtquicktemplates2plugin.dylib
       0x13a02b000 -        0x13a02efff +libqmlplugin.dylib (0) <C999EEF0-11F2-3835-9B8B-0185E741391C> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQml/libqmlplugin.dylib
       0x13a051000 -        0x13a05cfff +libwindowplugin.dylib (0) <63ABE915-BA7D-389F-B907-965C20FB0809> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Window.2/libwindowplugin.dylib
       0x13a084000 -        0x13a0c7fff +libqtquickcontrolsplugin.dylib (0) <8B9C722C-D3E2-3E6C-984B-1B68754D7C0E> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Controls/libqtquickcontrolsplugin.dylib
       0x13a0e9000 -        0x13a0f4fff +libdialogsprivateplugin.dylib (0) <B8CCBCF0-695B-3EB9-8062-347CDD82D2FD> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQuick/Dialogs/Private/libdialogsprivateplugin.dylib
       0x13a0fd000 -        0x13a108fff +libqmlfolderlistmodelplugin.dylib (0) <F01DB266-CAA4-30E5-98F3-3A6638BE5722> /usr/local/Cellar/qt@5/5.15.2_1/qml/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.dylib
       0x13a112000 -        0x13a119fff +libqmlsettingsplugin.dylib (0) <7792C15B-766D-347A-B1DA-BAB612DAA663> /usr/local/Cellar/qt@5/5.15.2_1/qml/Qt/labs/settings/libqmlsettingsplugin.dylib
       0x13a19b000 -        0x13a19efff +libmodelsplugin.dylib (0) <98946C09-5393-346F-A3B8-CED75ED90FF1> /usr/local/Cellar/qt@5/5.15.2_1/qml/QtQml/Models.2/libmodelsplugin.dylib
       0x13a1fd000 -        0x13a204fff +libqgif.dylib (0) <61DF12C2-D77F-3EB3-8AF1-0CD97F962D23> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqgif.dylib
       0x13a20b000 -        0x13a212fff +libqicns.dylib (0) <7B18793C-182E-3AC9-B55D-565A2ADAD27D> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqicns.dylib
       0x13a21a000 -        0x13a221fff +libqico.dylib (0) <9CC182B0-A75F-32A8-B1D2-B6662B865D0A> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqico.dylib
       0x13a229000 -        0x13a290fff +libqjpeg.dylib (0) <ACB89B22-79EB-340B-AEB2-59F978EEB32B> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqjpeg.dylib
       0x13a299000 -        0x13a2a0fff +libqmacheif.dylib (0) <5B2909F2-F580-3F03-9428-E8C3E78C40FB> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqmacheif.dylib
       0x13a2a8000 -        0x13a2affff +libqmacjp2.dylib (0) <B32B434A-B062-3A81-902A-136EA4123058> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqmacjp2.dylib
       0x13a2b7000 -        0x13a2befff +libqpdf.dylib (0) <36C7EAC3-36F0-31F2-B6B0-DE8D65DB035C> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqpdf.dylib
       0x13a2c5000 -        0x13a8e4fff +org.qt-project.QtPdf (5.15 - 5.15.2) <B3DD5A6C-9A8C-32B8-BB3A-6C6A998B2FDF> /usr/local/Cellar/qt@5/5.15.2_1/lib/QtPdf.framework/Versions/5/QtPdf
       0x13a918000 -        0x13a91ffff +libqsvg.dylib (0) <9A4ABEF3-3776-3E92-8300-A51BC3F31927> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqsvg.dylib
       0x13a927000 -        0x13a95efff +org.qt-project.QtSvg (5.15 - 5.15.2) <96CB8DCD-BDDA-3296-A1EB-7221D1B3EAE0> /usr/local/Cellar/qt@5/5.15.2_1/lib/QtSvg.framework/Versions/5/QtSvg
       0x13a97c000 -        0x13a983fff +libqtga.dylib (0) <18D4732D-E187-3FEF-815D-55D3FE03B1CC> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqtga.dylib
       0x13a98a000 -        0x13a9f5fff +libqtiff.dylib (0) <3D7E1AF8-14D2-3E73-84EE-09D8ECBB82B7> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqtiff.dylib
       0x13a9fe000 -        0x13aa05fff +libqwbmp.dylib (0) <BC505F4A-D60D-3B55-BC0D-EB52E03AFD5C> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqwbmp.dylib
       0x13aa0c000 -        0x13aaa7fff +libqwebp.dylib (0) <F1CBE0C6-82BF-3F30-9ADD-5797DDADF63B> /usr/local/Cellar/qt@5/5.15.2_1/plugins/imageformats/libqwebp.dylib
       0x13b6fe000 -        0x13bb9dfff  com.apple.AMDRadeonX6000MTLDriver (4.6.21 - 4.0.6) <99F5162A-8BBB-3285-9BC6-FFA3F28FE647> /System/Library/Extensions/AMDRadeonX6000MTLDriver.bundle/Contents/MacOS/AMDRadeonX6000MTLDriver
       0x13bfad000 -        0x13bfc8fff +libMinimalScene.dylib (0) <3C0F5959-FE8D-3CF1-B843-247D9F3BE3B5> /usr/local/Cellar/ignition-gui7/7.0.0/lib/ign-gui-7/plugins/libMinimalScene.dylib
       0x13c001000 -        0x13c038fff +libignition-rendering7.7.0.0~pre1.dylib (0) <54015959-77BD-3A98-A62E-F597EF46C94D> /usr/local/Cellar/ignition-rendering7/7.0.0/lib/libignition-rendering7.7.0.0~pre1.dylib
       0x13c4a9000 -        0x13c4bcfff +libEntityContextMenuPlugin.dylib (0) <0A299A8F-AA1F-3C5B-BD9D-6F0D8F9E89D6> /usr/local/Cellar/ignition-gazebo7/7.0.0/lib/ign-gazebo-7/plugins/gui/libEntityContextMenuPlugin.dylib
       0x13c4e1000 -        0x13c59cfff +libignition-gazebo7-rendering.7.0.0~pre1.dylib (0) <5D641447-451E-3A7E-9297-E794B8636CFC> /usr/local/Cellar/ignition-gazebo7/7.0.0/lib/libignition-gazebo7-rendering.7.0.0~pre1.dylib
       0x13c746000 -        0x13c759fff +libEntityContextMenu.dylib (0) <25B99565-53DA-3600-B692-7A047F7A5D26> /usr/local/Cellar/ignition-gazebo7/7.0.0/lib/ign-gazebo-7/plugins/gui/IgnGazebo/libEntityContextMenu.dylib
       0x141a8b000 -        0x141b8afff +libignition-rendering7-ogre2.7.0.0~pre1.dylib (0) <4D4E8629-4F01-3855-9CC2-5FBEE24A5F09> /usr/local/Cellar/ignition-rendering7/7.0.0/lib/ign-rendering-7/engine-plugins/libignition-rendering7-ogre2.7.0.0~pre1.dylib
       0x141e57000 -        0x1421eafff +libOgreMain.2.2.6.dylib (0) <FF0E9815-10FB-3895-9F1A-27587153438B> /usr/local/Cellar/ogre2.2/2.2.6/lib/libOgreMain.2.2.6.dylib
       0x142573000 -        0x1425cefff +libOgreHlmsPbs.2.2.6.dylib (0) <E84A7265-42D9-3326-817D-C8AEB6841D48> /usr/local/Cellar/ogre2.2/2.2.6/lib/libOgreHlmsPbs.2.2.6.dylib
       0x142627000 -        0x14263efff +libOgreHlmsUnlit.2.2.6.dylib (0) <133F5001-602F-33C2-A084-0A4025F018AF> /usr/local/Cellar/ogre2.2/2.2.6/lib/libOgreHlmsUnlit.2.2.6.dylib
       0x14265f000 -        0x142686fff +libOgreOverlay.2.2.6.dylib (0) <E164ADCD-2C05-3BA3-9436-EE5F5FFB3507> /usr/local/Cellar/ogre2.2/2.2.6/lib/libOgreOverlay.2.2.6.dylib
       0x1426cf000 -        0x1426d2fff +libzzip-0.13.dylib (0) <3E7BEA9C-C15E-34E9-9442-281DBB85EF7C> /usr/local/opt/libzzip/lib/libzzip-0.13.dylib
       0x1426df000 -        0x142736fff +RenderSystem_GL3Plus.2.2.6.dylib (0) <AE3FC826-5886-3BCF-8BC0-ADBCDB517DEF> /usr/local/Cellar/ogre2.2/2.2.6/lib/OGRE-2.2/OGRE/RenderSystem_GL3Plus.2.2.6.dylib
       0x1427b7000 -        0x14290afff  com.apple.AMDRadeonX6000GLDriver (4.6.21 - 4.0.6) <701CDCE4-F46A-35FE-ABFE-A98EEDC9BF3C> /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
       0x142989000 -        0x14299cfff +Plugin_ParticleFX.2.2.6.dylib (0) <3F045A68-8FC1-3AA7-8266-C15973A7338A> /usr/local/Cellar/ogre2.2/2.2.6/lib/OGRE-2.2/OGRE/Plugin_ParticleFX.2.2.6.dylib
       0x1429cd000 -        0x142a08fff +RenderSystem_Metal.2.2.6.dylib (0) <834ED309-5E61-39B1-A90F-3FB5C852B12A> /usr/local/Cellar/ogre2.2/2.2.6/lib/OGRE-2.2/OGRE/RenderSystem_Metal.2.2.6.dylib
    0x7fff20047000 -     0x7fff20048fff  libsystem_blocks.dylib (79) <4DF6D8F5-D9C2-3A96-8DE4-5E99D6B73DC8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff20049000 -     0x7fff2007efff  libxpc.dylib (2038.120.1) <0397FC9F-BD11-31FC-882E-9EDAA1E5CA65> /usr/lib/system/libxpc.dylib
    0x7fff2007f000 -     0x7fff20096fff  libsystem_trace.dylib (1277.120.1) <0A24EB90-5396-36B0-A7E6-E9288702856D> /usr/lib/system/libsystem_trace.dylib
    0x7fff20097000 -     0x7fff20134fff  libcorecrypto.dylib (1000.140.4) <57E7471E-3960-3398-8918-20DF446EA99B> /usr/lib/system/libcorecrypto.dylib
    0x7fff20135000 -     0x7fff20161fff  libsystem_malloc.dylib (317.140.5) <10C22FD0-FC7B-3325-852E-FEC4E88D2BC5> /usr/lib/system/libsystem_malloc.dylib
    0x7fff20162000 -     0x7fff201a6fff  libdispatch.dylib (1271.120.2) <BA7AD614-F2C2-3E89-9043-43DD548AE5B1> /usr/lib/system/libdispatch.dylib
    0x7fff201a7000 -     0x7fff201e0fff  libobjc.A.dylib (824.1) <A598DA89-FF71-37BF-B954-26277541D859> /usr/lib/libobjc.A.dylib
    0x7fff201e1000 -     0x7fff201e3fff  libsystem_featureflags.dylib (28.60.1) <6EB33926-8E22-3000-B2F1-C6182B8CBD8F> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff201e4000 -     0x7fff2026cfff  libsystem_c.dylib (1439.141.1) <8447A4B8-0751-3EF1-AA9B-042E40EFA07D> /usr/lib/system/libsystem_c.dylib
    0x7fff2026d000 -     0x7fff202c2fff  libc++.1.dylib (905.6) <81674ADB-670F-3B19-AF5D-F3F66CB93D44> /usr/lib/libc++.1.dylib
    0x7fff202c3000 -     0x7fff202d8fff  libc++abi.dylib (905.6) <78CE7863-E224-3D0B-98F1-E5E3E382322D> /usr/lib/libc++abi.dylib
    0x7fff202d9000 -     0x7fff20308fff  libsystem_kernel.dylib (7195.141.14) <812CB6C2-EDCA-311B-A8A7-B60508D8AB81> /usr/lib/system/libsystem_kernel.dylib
    0x7fff20309000 -     0x7fff20314fff  libsystem_pthread.dylib (454.120.2) <49670AEC-4D5D-3383-906C-23F568351FCB> /usr/lib/system/libsystem_pthread.dylib
    0x7fff20315000 -     0x7fff20350fff  libdyld.dylib (852.2) <5FBD0E1A-ACCE-36DB-B11C-622F26C85132> /usr/lib/system/libdyld.dylib
    0x7fff20351000 -     0x7fff2035afff  libsystem_platform.dylib (254.80.2) <A85D12B6-6213-34EE-84D8-8E993C19E330> /usr/lib/system/libsystem_platform.dylib
    0x7fff2035b000 -     0x7fff20386fff  libsystem_info.dylib (542.40.3) <36329FC6-9982-306A-87F9-D018E7F49F4B> /usr/lib/system/libsystem_info.dylib
    0x7fff20387000 -     0x7fff20824fff  com.apple.CoreFoundation (6.9 - 1778.102) <9C236482-6D12-3448-8DE3-54700AFBF22E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff20825000 -     0x7fff20a5afff  com.apple.LaunchServices (1122.45 - 1122.45) <16730C4F-B3DB-3ECA-A660-83135DD27605> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20a5b000 -     0x7fff20b2ffff  com.apple.gpusw.MetalTools (1.0 - 1) <72B42432-B432-381F-8EA6-F1B829C3EE5D> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20b30000 -     0x7fff20d8cfff  libBLAS.dylib (1336.140.1) <333A7ED7-D38C-3489-88A1-51F1D8414E47> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20d8d000 -     0x7fff20ddafff  com.apple.Lexicon-framework (1.0 - 86.2) <FE0BC1AF-D1A0-3A6B-A404-A187AEF07704> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20ddb000 -     0x7fff20e49fff  libSparse.dylib (106) <95043C27-910C-3B53-ADE7-0E7907E579C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20e4a000 -     0x7fff20ec7fff  com.apple.SystemConfiguration (1.20 - 1.20) <AE4BE9DB-6F7D-3D4A-BA51-D86DDFC6B5B2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff20ec8000 -     0x7fff20efcfff  libCRFSuite.dylib (50) <95816B40-6F71-33EB-9324-E2942543DDD4> /usr/lib/libCRFSuite.dylib
    0x7fff20efd000 -     0x7fff21135fff  libmecabra.dylib (929.10) <1E492E01-642F-3A9D-8A04-CF648C32696C> /usr/lib/libmecabra.dylib
    0x7fff21136000 -     0x7fff21494fff  com.apple.Foundation (6.9 - 1778.102) <138B18A2-4A04-3CC0-93A2-B52914C924E1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff21495000 -     0x7fff2157dfff  com.apple.LanguageModeling (1.0 - 247.3) <D7E3186D-41DD-3826-85C8-D9ECC7D17197> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff2157e000 -     0x7fff216b4fff  com.apple.CoreDisplay (237.4 - 237.4) <07520DBC-E1BB-310C-AD92-6F313820D60E> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff216b5000 -     0x7fff21925fff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72.2) <6E10A766-6A9F-3BDE-9858-ACAB6D15B098> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff21926000 -     0x7fff21b0bfff  com.apple.CoreText (677.6.0.2 - 677.6.0.2) <4C194C5B-3B53-347A-B558-AF0070B6D27B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21b0c000 -     0x7fff2219dfff  com.apple.audio.CoreAudio (5.0 - 5.0) <7178815E-1890-3A3D-B0FD-F93EBB529E78> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2219e000 -     0x7fff224f5fff  com.apple.security (7.0 - 59754.141.1) <7EC1D1C5-672E-3DFD-902C-D511ECE6C110> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff224f6000 -     0x7fff22755fff  libicucore.A.dylib (66112) <251FC896-7EA1-3505-A9AA-80BAE7A6FD2B> /usr/lib/libicucore.A.dylib
    0x7fff22756000 -     0x7fff2275ffff  libsystem_darwin.dylib (1439.141.1) <29F82ABE-E1A0-3BC2-B91E-ADC010CF23FA> /usr/lib/system/libsystem_darwin.dylib
    0x7fff22760000 -     0x7fff22a4bfff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <8191DB78-205F-3709-8E42-E257F3AD4459> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22a4c000 -     0x7fff22a8afff  com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <E07F95A5-AE7E-34A2-84CC-3870DCDC45D6> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22a8b000 -     0x7fff22ac5fff  com.apple.CSStore (1122.45 - 1122.45) <FE19851C-109B-315E-8528-3879C6ACA700> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22ac6000 -     0x7fff22b74fff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <61CDC69E-EC9E-32B1-8A63-532619BA310F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22b75000 -     0x7fff22b80fff  libsystem_notify.dylib (279.40.4) <608B5A07-D31A-3BEC-86BF-C2E498C085AF> /usr/lib/system/libsystem_notify.dylib
    0x7fff22b81000 -     0x7fff22bcefff  libsandbox.1.dylib (1441.141.5) <F1CF44AB-80CA-3F76-951F-FAA63E31C5BD> /usr/lib/libsandbox.1.dylib
    0x7fff22bcf000 -     0x7fff2391afff  com.apple.AppKit (6.9 - 2022.60.130) <10E8FE2A-AF54-35B1-8485-D78380948640> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2391b000 -     0x7fff23b69fff  com.apple.UIFoundation (1.0 - 728.9) <A7628FB1-C04A-3F24-A14A-DDCD4CE67A00> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23b6a000 -     0x7fff23b7cfff  com.apple.UniformTypeIdentifiers (637 - 637) <5C5C0766-21EC-3C7C-9887-3DF23CBFCB84> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff23b7d000 -     0x7fff23d07fff  com.apple.desktopservices (1.21 - 1346.6.1) <F2D70A76-BF47-31DC-8337-D4D929DA4A27> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff23d08000 -     0x7fff23d1afff  com.apple.metadata.SpotlightLinguistics (1.0 - 1) <21E29156-2D46-3743-8E89-518EE82E083F> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/Versions/A/SpotlightLinguistics
    0x7fff23fe7000 -     0x7fff2466dfff  libnetwork.dylib (2288.140.7) <6D702F3B-34C0-3809-8CEC-1D59D58CF8BB> /usr/lib/libnetwork.dylib
    0x7fff2466e000 -     0x7fff24b0cfff  com.apple.CFNetwork (1240.0.4 - 1240.0.4) <5AC97239-B546-33F2-80B0-ACBFD66C0E58> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24b0d000 -     0x7fff24b1bfff  libsystem_networkextension.dylib (1295.140.3) <022BE26C-C058-3CC7-8E0B-348B3D3B639C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24b1c000 -     0x7fff24b1cfff  libenergytrace.dylib (22.100.1) <13CE770E-37DA-35D5-84A7-2F6C07F3B707> /usr/lib/libenergytrace.dylib
    0x7fff24b1d000 -     0x7fff24b79fff  libMobileGestalt.dylib (978.140.1) <897D0689-8D50-33EC-B103-185F9F04893E> /usr/lib/libMobileGestalt.dylib
    0x7fff24b7a000 -     0x7fff24b90fff  libsystem_asl.dylib (385.0.1) <1598AB23-6100-3DFA-9B9C-3A597E5C5243> /usr/lib/system/libsystem_asl.dylib
    0x7fff24b91000 -     0x7fff24ba9fff  com.apple.TCC (1.0 - 1) <B3F4A60E-A15A-3656-ABED-C8F0ABBFE2D6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24baa000 -     0x7fff24f0ffff  com.apple.SkyLight (1.600.0 - 588.9) <65B12FE6-C326-34E4-B1FF-3E42BB74F09C> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff24f10000 -     0x7fff25599fff  com.apple.CoreGraphics (2.0 - 1463.18.4.1) <F720E729-88DF-304D-B498-A6C4459A9670> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2559a000 -     0x7fff25691fff  com.apple.ColorSync (4.13.0 - 3473.6.1) <402D6A90-F0B1-3D6F-97D2-929F14E02932> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff25692000 -     0x7fff256edfff  com.apple.HIServices (1.22 - 716) <6118C8D4-70EA-3FD5-A375-0B500896506A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25a94000 -     0x7fff25eb3fff  com.apple.CoreData (120 - 1048) <C5D60909-0D12-316D-8455-9023884A60BE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff25eb4000 -     0x7fff25ec9fff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <A2E727C2-659A-3791-8076-2DA387C440F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff25eca000 -     0x7fff2607dfff  libsqlite3.dylib (321.3) <AC4BFB61-2C0C-3FE6-A776-E97BE0F8EFF3> /usr/lib/libsqlite3.dylib
    0x7fff2607e000 -     0x7fff260fafff  com.apple.Accounts (113 - 113) <A4533970-D42E-3A4E-8244-2ACC60504923> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff260fb000 -     0x7fff26112fff  com.apple.commonutilities (8.0 - 900) <56BAD997-43B7-3AF5-8E99-9F0810619899> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff26113000 -     0x7fff26192fff  com.apple.BaseBoard (526 - 526) <A59E4406-C169-3723-9CC5-396A3ED80F49> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff26193000 -     0x7fff261dbfff  com.apple.RunningBoardServices (1.0 - 505.100.9) <596F75F9-6D8E-3113-BE54-B4CA556D2770> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff261dc000 -     0x7fff26250fff  com.apple.AE (918.6 - 918.6) <2AC07F95-A6EB-3D82-B8AC-D6516E42C60F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff26251000 -     0x7fff26257fff  libdns_services.dylib (1310.140.1) <9D69602C-7ADF-3701-8A4E-F7C7B0A1AC37> /usr/lib/libdns_services.dylib
    0x7fff26258000 -     0x7fff2625ffff  libsystem_symptoms.dylib (1431.140.1) <EA6435E7-8F85-315B-8AED-C20A07DE7F96> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff26260000 -     0x7fff263ebfff  com.apple.Network (1.0 - 1) <95AC4C13-4BD4-36AB-B0CE-BFB9B0812930> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff263ec000 -     0x7fff2641bfff  com.apple.analyticsd (1.0 - 1) <7A3B8499-D064-3A1A-99F6-67B86BA82661> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff2641c000 -     0x7fff2641efff  libDiagnosticMessagesClient.dylib (112) <2FCF6C74-5FAF-3968-AE36-294C9EF3AA75> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff2641f000 -     0x7fff2646bfff  com.apple.spotlight.metadata.utilities (1.0 - 2150.26) <2775C636-B8B5-3ED3-A8FC-7C2CB8C737A9> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff2646c000 -     0x7fff26506fff  com.apple.Metadata (10.7.0 - 2150.26) <A3A109B8-0C44-3377-A1BA-482D7AC72C0E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff26507000 -     0x7fff2650dfff  com.apple.DiskArbitration (2.7 - 2.7) <C121EA04-ABB5-34B6-80DD-360A75945764> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff2650e000 -     0x7fff26b75fff  com.apple.vImage (8.1 - 544.4) <AD7CE38E-4FC4-3AFA-9643-337552CDD639> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26b76000 -     0x7fff26e53fff  com.apple.QuartzCore (1.11 - 927.24) <5B7F4259-9A62-3137-8366-1804C1734737> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26e54000 -     0x7fff26e95fff  libFontRegistry.dylib (309) <ACF99477-688E-33DA-8100-3191721EB052> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff26e96000 -     0x7fff26fd6fff  com.apple.coreui (2.1 - 692.1) <CC1F2421-0338-3912-86BE-A15BFDDF5C00> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff26fd7000 -     0x7fff270c2fff  com.apple.ViewBridge (553.1 - 553.1) <B5CC51A9-EA5C-3BE2-914C-5672C30A0311> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff270c3000 -     0x7fff270cefff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <4460D0DF-74B4-3EDB-9391-733525F1D0C6> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff270cf000 -     0x7fff270defff  com.apple.OpenDirectory (11.6 - 230.40.1) <E204DA2B-17DA-3A4B-A03C-8F3B673D5CCD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff270df000 -     0x7fff270fefff  com.apple.CFOpenDirectory (11.6 - 230.40.1) <9294B2FA-1269-3173-AB57-E80EBD2FE3E1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff270ff000 -     0x7fff2710bfff  com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <87C05C54-DD61-3555-8246-F56E535072D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2710c000 -     0x7fff27130fff  com.apple.coreservices.SharedFileList (144 - 144) <FC634ADE-7F29-3A8D-AEB4-2F5A34685C88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff27131000 -     0x7fff27133fff  libapp_launch_measurement.dylib (14.1) <34296F0E-D81B-383B-8B45-137CA086BC4D> /usr/lib/libapp_launch_measurement.dylib
    0x7fff27134000 -     0x7fff2717bfff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <0AA28C77-F6DE-3B5B-BD3B-6BDCE805B634> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff2717c000 -     0x7fff2725efff  libxml2.2.dylib (34.10) <6750E272-224C-3FDD-9A1C-87249E63DA07> /usr/lib/libxml2.2.dylib
    0x7fff2725f000 -     0x7fff272acfff  com.apple.CoreVideo (1.8 - 414.7) <7E4736C8-AB84-3A3A-BB7C-A6A9A36BCE79> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff272ad000 -     0x7fff272affff  com.apple.loginsupport (1.0 - 1) <F0181B5E-C653-3769-B7D2-8AEB1210898C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff272d8000 -     0x7fff272f3fff  com.apple.UserManagement (1.0 - 1) <844C9F98-08E1-36EB-978D-660B4F4FA17E> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff27486000 -     0x7fff27507fff  com.apple.CloudDocs (1.0 - 738.3) <17D4DA33-00D8-39AC-A6A8-E379D7DBB619> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff28267000 -     0x7fff28277fff  libsystem_containermanager.dylib (318.100.4) <E0A89571-6D3E-3184-9F39-C6094C87B92B> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff28278000 -     0x7fff28289fff  com.apple.IOSurface (290.8.1 - 290.8.1) <9D6CA654-3E6F-3719-B9B9-65C4CDA41BC5> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff2828a000 -     0x7fff28293fff  com.apple.IOAccelerator (442.9 - 442.9) <CF36BA06-85BA-3CCF-B59D-6A92EAB5EABB> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28294000 -     0x7fff283b7fff  com.apple.Metal (244.303 - 244.303) <1A5DBC62-5F40-3407-8BBA-FE2B56CFA993> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff283b8000 -     0x7fff283d4fff  com.apple.audio.caulk (1.0 - 70) <B2CA358A-CC85-3B89-810C-B0209F0EEAEA> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff283d5000 -     0x7fff284bffff  com.apple.CoreMedia (1.0 - 2780.10.4.1) <FDE1187A-BDBD-3B4E-A200-A3E2E22694B5> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff284c0000 -     0x7fff2861cfff  libFontParser.dylib (305.6.0.4) <7A6DF449-3B4B-34FC-9D5C-B00FE59E6031> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff2861d000 -     0x7fff28918fff  com.apple.HIToolbox (2.1.1 - 1062) <028D8F63-A386-33B9-A797-FF5C82B44C2F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff28919000 -     0x7fff2892cfff  com.apple.framework.DFRFoundation (1.0 - 267) <236EDA40-6A75-3BFE-9300-F9E4AAD36256> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff2892d000 -     0x7fff28930fff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <C49751E0-0098-380F-99BC-DE7F2087884B> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff28931000 -     0x7fff2895afff  com.apple.CoreSVG (1.0 - 149) <01655535-CA23-3F54-A8CE-92423D73CC99> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff2895b000 -     0x7fff28b97fff  com.apple.ImageIO (3.3.0 - 2130.8.2) <A6ED6CCC-FC4E-3283-B08D-4EC264D41FD7> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28b98000 -     0x7fff28f13fff  com.apple.CoreImage (16.3.0 - 1140.2) <E05C48FC-81E3-3270-A37C-D206F364FF62> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff28f14000 -     0x7fff28f7afff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <6AE9618A-B8C9-3D0F-A389-71382F438DF8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff28f7b000 -     0x7fff28f7efff  libsystem_configuration.dylib (1109.140.1) <89E70992-616F-3DD3-9430-67025F759A1B> /usr/lib/system/libsystem_configuration.dylib
    0x7fff28f7f000 -     0x7fff28f83fff  libsystem_sandbox.dylib (1441.141.5) <B2E91CE2-C9E2-3909-996F-D8FB92E2D2EE> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff28f84000 -     0x7fff28f85fff  com.apple.AggregateDictionary (1.0 - 1) <9FD9D68F-7B02-31A6-9583-EFF60B2A9F1C> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff28f86000 -     0x7fff28f89fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <0B523600-B02C-359B-BDD7-6EADCE8B5AD8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff28f8a000 -     0x7fff28f8bfff  liblangid.dylib (136) <5645ED02-635B-3BA0-ACEF-D6C8BC74FAF0> /usr/lib/liblangid.dylib
    0x7fff28f8c000 -     0x7fff29030fff  com.apple.CoreNLP (1.0 - 245.2) <24291100-1C4C-361B-B53B-B99CB4B53906> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff29031000 -     0x7fff29037fff  com.apple.LinguisticData (1.0 - 399) <55FF3554-9E14-3351-8E3C-3280C9CB664B> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff29038000 -     0x7fff296e0fff  libBNNS.dylib (288.100.5) <9A4AB8C3-BCF1-3BAB-896C-FA460E3A68D0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff296e1000 -     0x7fff298b3fff  libvDSP.dylib (760.100.3) <FF0A256C-B4CD-3BB1-9784-3F0054D62A91> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff298b4000 -     0x7fff298c5fff  com.apple.CoreEmoji (1.0 - 128.4) <37352743-CFF8-3196-8234-6AF30E531759> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff298c6000 -     0x7fff298d0fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <A6497A63-1658-3652-91ED-D3AF0EFAFABD> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff298d1000 -     0x7fff299a3fff  com.apple.framework.CoreWLAN (16.0 - 1657) <5887F6C3-D272-3B6C-8CC8-262701FD9862> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff299a4000 -     0x7fff29ba5fff  com.apple.CoreUtils (6.6 - 660.37) <CC8A07A0-797C-3943-BEFF-A9E3466A0B7C> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29ba6000 -     0x7fff29bc8fff  com.apple.MobileKeyBag (2.0 - 1.0) <70A80CF0-3682-32A6-AB83-8647FD8B2E52> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29bc9000 -     0x7fff29bd9fff  com.apple.AssertionServices (1.0 - 505.100.9) <968E021C-1BCD-3249-BBAD-FEE64370EB1F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29bda000 -     0x7fff29c65fff  com.apple.securityfoundation (6.0 - 55240.40.4) <DB010D41-F904-3592-9301-BB75A0FA2FD4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29c66000 -     0x7fff29c6ffff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <B222BEB6-CE24-3D70-903B-A9034D6FC6F6> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29c70000 -     0x7fff29c74fff  com.apple.xpc.ServiceManagement (1.0 - 1) <E1167FFF-E757-3C96-B26A-C0CE98EAA899> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29c75000 -     0x7fff29c77fff  libquarantine.dylib (119.40.4) <941CF313-683C-375E-BE24-AF51ABCF11AC> /usr/lib/system/libquarantine.dylib
    0x7fff29c78000 -     0x7fff29c83fff  libCheckFix.dylib (31) <15B50527-5A34-3071-BA05-660AEBBA6D4F> /usr/lib/libCheckFix.dylib
    0x7fff29c84000 -     0x7fff29c9bfff  libcoretls.dylib (169.100.1) <972397D6-A93B-302D-9CA3-C8B12C93899B> /usr/lib/libcoretls.dylib
    0x7fff29c9c000 -     0x7fff29cacfff  libbsm.0.dylib (68.40.1) <FEA138A5-B03E-3AD5-9E21-3F35405D147F> /usr/lib/libbsm.0.dylib
    0x7fff29cad000 -     0x7fff29cf6fff  libmecab.dylib (929.10) <E391699C-D139-338C-8919-1B2817BC1E25> /usr/lib/libmecab.dylib
    0x7fff29cf7000 -     0x7fff29cfcfff  libgermantok.dylib (24) <3DF990AD-8806-36B2-8168-4F18762C74A4> /usr/lib/libgermantok.dylib
    0x7fff29cfd000 -     0x7fff29d12fff  libLinearAlgebra.dylib (1336.140.1) <0D201041-7BAB-3492-898D-ABDDD9D85D48> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29d13000 -     0x7fff29f31fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <5B727E28-3ACF-3DBB-B787-B1633CFB2413> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff29f32000 -     0x7fff29f81fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <315027A8-ADFD-3DC7-9B2A-6F1457E4D32E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff29f82000 -     0x7fff2a0e3fff  com.apple.MLCompute (1.0 - 1) <E0A748E2-21DA-319C-8B28-80A853090B86> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a0e4000 -     0x7fff2a11afff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <5D3C245B-BF53-31B0-B405-E4EB0FA608ED> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a11b000 -     0x7fff2a171fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <C251786D-BC17-3C99-94E7-10EC828139D4> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a172000 -     0x7fff2a202fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <AAE88278-E296-3976-9FCC-345F71C8005D> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a203000 -     0x7fff2a212fff  com.apple.AppleFSCompression (125 - 1.0) <EAA1DBD4-02EE-3E39-A9F8-C40AA535C32A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a213000 -     0x7fff2a21ffff  libbz2.1.0.dylib (44) <90425CDA-B4E1-3004-800B-7E4A87DCBCD2> /usr/lib/libbz2.1.0.dylib
    0x7fff2a220000 -     0x7fff2a224fff  libsystem_coreservices.dylib (127.1) <7AE405FC-6A44-34A0-86AD-6BD80B0050BB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a225000 -     0x7fff2a252fff  com.apple.CoreServices.OSServices (1122.45 - 1122.45) <43C2A369-8FB8-3CF7-8282-A8D6AC246660> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a253000 -     0x7fff2a382fff  com.apple.AuthKit (1.0 - 1) <BE5EBFF1-F354-3F16-9B16-B30B6867ED3E> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a383000 -     0x7fff2a3b1fff  com.apple.UserNotifications (1.0 - 348.5) <F6D81ADE-EDF8-39FA-995A-4249DDC7E696> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications
    0x7fff2a421000 -     0x7fff2a433fff  libz.1.dylib (76) <73C471D3-07CE-307D-A531-92C5D0E4C0E9> /usr/lib/libz.1.dylib
    0x7fff2a434000 -     0x7fff2a47bfff  libsystem_m.dylib (3186.100.3) <EA0354A3-8618-3D76-A760-E550AC60CE95> /usr/lib/system/libsystem_m.dylib
    0x7fff2a47c000 -     0x7fff2a47cfff  libcharset.1.dylib (59) <E389024B-7CAC-32A5-BF12-DF20C8A3B050> /usr/lib/libcharset.1.dylib
    0x7fff2a47d000 -     0x7fff2a482fff  libmacho.dylib (980) <1FCE2BE3-4F6F-3EAA-9BC5-A9892A45CF0D> /usr/lib/system/libmacho.dylib
    0x7fff2a483000 -     0x7fff2a49efff  libkxld.dylib (7195.141.14) <E6ACEEFD-C607-3962-9731-21DA9C85E08F> /usr/lib/system/libkxld.dylib
    0x7fff2a49f000 -     0x7fff2a4aafff  libcommonCrypto.dylib (60178.120.3) <7E242F29-1CB6-30EF-8C9A-C768A90FDBA0> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a4ab000 -     0x7fff2a4b5fff  libunwind.dylib (201) <A5B040A8-847F-36EE-B13D-5DD1F5CD5BED> /usr/lib/system/libunwind.dylib
    0x7fff2a4b6000 -     0x7fff2a4bdfff  liboah.dylib (203.58) <26D08622-69F5-32DB-80D2-9B4651A9F0CC> /usr/lib/liboah.dylib
    0x7fff2a4be000 -     0x7fff2a4c8fff  libcopyfile.dylib (173.40.2) <8C783785-0F5F-3DC5-B815-B29CEBA75737> /usr/lib/system/libcopyfile.dylib
    0x7fff2a4c9000 -     0x7fff2a4d0fff  libcompiler_rt.dylib (102.2) <1FDC92D1-8A17-30AF-8E72-4F0517AEA157> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a4d1000 -     0x7fff2a4d3fff  libsystem_collections.dylib (1439.141.1) <11D5775A-AD4C-35ED-BC05-616AB67ACBBE> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a4d4000 -     0x7fff2a4d6fff  libsystem_secinit.dylib (87.60.1) <27982311-637E-3308-9F55-4871762736F4> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a4d7000 -     0x7fff2a4d9fff  libremovefile.dylib (49.120.1) <5973CED7-797B-3288-9589-C1856752F91A> /usr/lib/system/libremovefile.dylib
    0x7fff2a4da000 -     0x7fff2a4dafff  libkeymgr.dylib (31) <AAA929A0-45E5-3186-8ABD-37EB25B2C939> /usr/lib/system/libkeymgr.dylib
    0x7fff2a4db000 -     0x7fff2a4e2fff  libsystem_dnssd.dylib (1310.140.1) <4A85F13B-E3AD-3C44-B327-091F56D35CC1> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a4e3000 -     0x7fff2a4e8fff  libcache.dylib (83) <435668CB-666B-3379-AD65-F604A72099F4> /usr/lib/system/libcache.dylib
    0x7fff2a4e9000 -     0x7fff2a4eafff  libSystem.B.dylib (1292.120.1) <AAF81FCF-88D9-316E-88A5-6962CE68CB25> /usr/lib/libSystem.B.dylib
    0x7fff2a4eb000 -     0x7fff2a4eefff  libfakelink.dylib (3) <C7E36B51-4FD6-3704-975E-AB9B46DF6D30> /usr/lib/libfakelink.dylib
    0x7fff2a4ef000 -     0x7fff2a4effff  com.apple.SoftLinking (1.0 - 1) <AF16BDE9-8995-39F5-A0ED-C65232A61095> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a4f0000 -     0x7fff2a527fff  libpcap.A.dylib (98.100.3) <7EB940E4-BB5E-327D-B7F8-951F22F27D72> /usr/lib/libpcap.A.dylib
    0x7fff2a528000 -     0x7fff2a618fff  libiconv.2.dylib (59) <1F132286-CEA4-37A4-93F7-3C0A60C3645B> /usr/lib/libiconv.2.dylib
    0x7fff2a619000 -     0x7fff2a62afff  libcmph.dylib (8) <8A5DF97C-1CDA-36BC-86E8-EF8B7F314EDC> /usr/lib/libcmph.dylib
    0x7fff2a62b000 -     0x7fff2a69cfff  libarchive.2.dylib (83.100.2) <BAF76083-029C-3AC5-96E5-AE54786574A6> /usr/lib/libarchive.2.dylib
    0x7fff2a69d000 -     0x7fff2a704fff  com.apple.SearchKit (1.4.1 - 1.4.1) <7B3B1E70-2C63-30E2-B5CF-6BC8EE7EA418> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a705000 -     0x7fff2a706fff  libThaiTokenizer.dylib (3) <84E7B443-74C5-386F-AEFF-FD48B94A04EB> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a707000 -     0x7fff2a729fff  com.apple.applesauce (1.0 - 16.28) <0F9016E9-9DBB-3047-A1C3-A9FC85BAFE20> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a72a000 -     0x7fff2a741fff  libapple_nghttp2.dylib (1.41) <B730D1A0-8F61-3497-B63A-5661EB887E73> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a742000 -     0x7fff2a758fff  libSparseBLAS.dylib (1336.140.1) <89309B8D-FA44-3525-BA00-21E87D51D424> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a759000 -     0x7fff2a75afff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <295CF572-CFF5-3C5D-8006-F63988CFB5B7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a75b000 -     0x7fff2a75ffff  libpam.2.dylib (28.40.1) <B2457D3D-DADD-3157-8BFD-CF76F982FC13> /usr/lib/libpam.2.dylib
    0x7fff2a760000 -     0x7fff2a77ffff  libcompression.dylib (96.120.1) <788EAF3B-62D8-3A5F-9E42-E4CEDB3DAB51> /usr/lib/libcompression.dylib
    0x7fff2a780000 -     0x7fff2a785fff  libQuadrature.dylib (7) <EA417A8F-8395-32AC-A67A-FA75DC2110CB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a786000 -     0x7fff2ab23fff  libLAPACK.dylib (1336.140.1) <4A2BD114-000A-372A-B4CD-091360A39058> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2ab24000 -     0x7fff2ab73fff  com.apple.DictionaryServices (1.2 - 341) <960CC0D7-B2C6-3308-A120-C86F41A2301C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2ab74000 -     0x7fff2ab8cfff  liblzma.5.dylib (16) <933D5DEC-E8E8-3946-A16E-1056F2075602> /usr/lib/liblzma.5.dylib
    0x7fff2ab8d000 -     0x7fff2ab8efff  libcoretls_cfhelpers.dylib (169.100.1) <E2AC5901-93EC-3F67-A8B1-738E76B49804> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2ab8f000 -     0x7fff2ac8afff  com.apple.APFS (1677.141.2 - 1677.141.2) <C4CDA06B-22D5-35A4-BA73-856DC272FAB5> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2ac8b000 -     0x7fff2ac98fff  libxar.1.dylib (452.0.4) <F45E7073-9E81-30DE-9DCB-FABA46E5DBBC> /usr/lib/libxar.1.dylib
    0x7fff2ac99000 -     0x7fff2ac9cfff  libutil.dylib (58.40.2) <AE460378-5737-3BD8-90D9-E4E7603C4002> /usr/lib/libutil.dylib
    0x7fff2ac9d000 -     0x7fff2acc5fff  libxslt.1.dylib (17.6) <BFB2EA40-332D-3DB4-AA3E-025966219E88> /usr/lib/libxslt.1.dylib
    0x7fff2acc6000 -     0x7fff2acd0fff  libChineseTokenizer.dylib (37.1) <344E5492-4BD5-354A-8274-047F8388A826> /usr/lib/libChineseTokenizer.dylib
    0x7fff2acd1000 -     0x7fff2ad8efff  libvMisc.dylib (760.100.3) <90F4EDF5-52D8-3345-9D57-2DC2E522959F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2ad8f000 -     0x7fff2ae26fff  libate.dylib (3.0.6) <6F17C1CE-1F4D-3291-919D-A49E32E35344> /usr/lib/libate.dylib
    0x7fff2ae27000 -     0x7fff2ae2efff  libIOReport.dylib (64.100.1) <4690B952-7BCF-31DB-A796-996D8094AB24> /usr/lib/libIOReport.dylib
    0x7fff2ae2f000 -     0x7fff2ae42fff  com.apple.CrashReporterSupport (10.13 - 15053.1) <E2FC8295-8285-32B2-8AF7-997B090D8B94> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff2aef9000 -     0x7fff2af2ffff  com.apple.pluginkit.framework (1.0 - 1) <545963FE-A289-3F66-B6EA-9122340016DD> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff2af30000 -     0x7fff2af37fff  libMatch.1.dylib (38) <E1296A96-E533-39A6-A519-05A0AE78181E> /usr/lib/libMatch.1.dylib
    0x7fff2af38000 -     0x7fff2afc3fff  libCoreStorage.dylib (554.140.2) <AEE8AC91-7058-3275-90D4-B0217A41BED6> /usr/lib/libCoreStorage.dylib
    0x7fff2afc4000 -     0x7fff2b017fff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <DC3B87A5-AA7D-3534-BF4F-089E16226C0D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b018000 -     0x7fff2b031fff  libexpat.1.dylib (26.141.1) <F579645F-A493-3F2D-A9DB-C77664A1BCA1> /usr/lib/libexpat.1.dylib
    0x7fff2b032000 -     0x7fff2b03bfff  libheimdal-asn1.dylib (597.140.2) <D59F68F4-A2E2-3F98-8167-DD5DDDAB568B> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b03c000 -     0x7fff2b050fff  com.apple.IconFoundation (479.4 - 479.4) <6B77361F-69AF-393F-97B8-9BDED38304B0> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b051000 -     0x7fff2b0bdfff  com.apple.IconServices (479.4 - 479.4) <727B7BC3-AC02-31F7-9149-0014FDBCF17B> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b0be000 -     0x7fff2b15cfff  com.apple.MediaExperience (1.0 - 1) <B71F329D-70E3-34A8-A789-82D7ACA63C34> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b15d000 -     0x7fff2b185fff  com.apple.persistentconnection (1.0 - 1.0) <E05B6AF9-376E-3E4D-B2F5-3A7A85D7CBB3> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b186000 -     0x7fff2b194fff  com.apple.GraphVisualizer (1.0 - 100.1) <09C716AC-B62A-3EF0-85A1-98A949EB88B3> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b195000 -     0x7fff2b5b0fff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <0E25BE9A-551C-3457-B7E8-7ED414223E3A> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b5b1000 -     0x7fff2b5f8fff  com.apple.OTSVG (1.0 - 677.6.0.2) <53E2913D-E023-3685-9161-A14608F89DC1> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b5f9000 -     0x7fff2b5fffff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <523B9C03-A39E-3FF4-8216-34309C158113> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b600000 -     0x7fff2b612fff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <53477D30-E8A6-3935-A3B1-7CBDE387210A> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b613000 -     0x7fff2b615fff  libspindump.dylib (295.2) <003C7E84-C242-311A-A2FA-4622B66E3F24> /usr/lib/libspindump.dylib
    0x7fff2b616000 -     0x7fff2b6d6fff  com.apple.Heimdal (4.0 - 2.0) <22D8BF25-5FD0-3EE3-A547-B3F55FC09330> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b6d7000 -     0x7fff2b6f1fff  com.apple.login (3.0 - 3.0) <6A0F479C-875F-3280-A99F-4424C3ED9448> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff2b872000 -     0x7fff2b875fff  libodfde.dylib (26) <5E7BCB99-7876-3088-80E8-15A4DBE7D341> /usr/lib/libodfde.dylib
    0x7fff2b876000 -     0x7fff2b8b2fff  com.apple.bom (14.0 - 235) <8C9005F1-FC51-3CF3-9CAC-264C1D8031F7> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2b8b3000 -     0x7fff2b8fcfff  com.apple.AppleJPEG (1.0 - 1) <D751A39A-DC50-3E2E-9C2D-70284574EC84> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2b8fd000 -     0x7fff2b9dcfff  libJP2.dylib (2130.8.2) <B4A3B417-4218-303F-B660-603B1A3C75AE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2b9dd000 -     0x7fff2b9e0fff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <13BB2B82-DF17-33C3-A19B-432E03744896> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2b9e1000 -     0x7fff2ba17fff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <8B7FB5F9-E38B-3193-98AC-51EF565F61CB> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2ba18000 -     0x7fff2bb76fff  com.apple.VideoToolbox (1.0 - 2780.10.4.1) <1134D8C6-EA97-32B4-BD4C-DD02901F4B0B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bb77000 -     0x7fff2bbaafff  libAudioToolboxUtility.dylib (1181.72.2) <ACECAA1D-3463-3D02-BAF0-E32A2B957BDC> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bbab000 -     0x7fff2bbcbfff  libPng.dylib (2130.8.2) <BEB6FABB-4E78-391B-85BD-8E69A3ABAB24> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bbcc000 -     0x7fff2bc2bfff  libTIFF.dylib (2130.8.2) <B8DD7B9D-0589-308D-9A60-AB23EA106A87> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bc2c000 -     0x7fff2bc48fff  com.apple.IOPresentment (58 - 37) <990B304C-15B6-397D-8B7E-636DA14AE1D3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bc49000 -     0x7fff2bc50fff  com.apple.GPUWrangler (6.3.5 - 6.3.5) <E07D5D60-104E-3141-90CC-F81074D95E0D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bc51000 -     0x7fff2bc54fff  libRadiance.dylib (2130.8.2) <04232355-A894-31E6-8C05-B68F1F7FA3E2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bc55000 -     0x7fff2bc5afff  com.apple.DSExternalDisplay (3.1 - 380) <DCD6682A-9C61-3779-A81D-8E1FBED38C69> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bc5b000 -     0x7fff2bc7ffff  libJPEG.dylib (2130.8.2) <D9864597-F6ED-3AD8-8886-761EAA0559E2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2bc80000 -     0x7fff2bcaffff  com.apple.ATSUI (1.0 - 1) <92428504-C766-3ACE-BC36-89F1A5CAB61C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2bcb0000 -     0x7fff2bcb4fff  libGIF.dylib (2130.8.2) <A52215E6-F61A-398D-A9C9-FDE9D3517982> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2bcb5000 -     0x7fff2bcbefff  com.apple.CMCaptureCore (1.0 - 82.6) <C1960208-BCA3-3D47-9DBE-CF1A81C2053B> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2bcbf000 -     0x7fff2bd06fff  com.apple.print.framework.PrintCore (16.1 - 531.1) <8139D1A2-7037-3B4F-AB8F-2BF38D64D798> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2bd07000 -     0x7fff2bdd4fff  com.apple.TextureIO (3.10.9 - 3.10.9) <0E29AC8D-246E-3F7F-A8A0-10E09DD64603> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2bdd5000 -     0x7fff2bdddfff  com.apple.InternationalSupport (1.0 - 61.1) <8E0C26AC-7462-34B5-B608-0DB611CCB687> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2bdde000 -     0x7fff2be58fff  com.apple.datadetectorscore (8.0 - 674) <3E182298-355E-337F-A398-B266DEC5E6F3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2be59000 -     0x7fff2beb6fff  com.apple.UserActivity (439 - 439) <E011EB02-BB18-3154-8010-AD4C6D21792B> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2beb7000 -     0x7fff2c653fff  com.apple.MediaToolbox (1.0 - 2780.10.4.1) <A90F330D-ACB5-30FC-9F25-CA12F6D8DE3C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff2cb24000 -     0x7fff2cb55fff  libSessionUtility.dylib (76.69) <E6D8E0BB-3C76-343B-B8EA-03C411971A6C> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2cb56000 -     0x7fff2cc8afff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <658FE33F-9BDC-3368-946A-A2B81269836E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2cc8b000 -     0x7fff2ccf0fff  com.apple.audio.AudioSession (1.0 - 76.69) <3E7FD009-AC1B-398E-A5BE-D892725A73C7> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2ccf1000 -     0x7fff2cd03fff  libAudioStatistics.dylib (27.64) <2072394F-C2D4-3EBE-8259-CEBBC87DB2C7> /usr/lib/libAudioStatistics.dylib
    0x7fff2cd04000 -     0x7fff2cd13fff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <3FADC203-0E7D-3208-9BF7-CD8AE1B9D204> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2cd14000 -     0x7fff2cd80fff  com.apple.ApplicationServices.ATS (377 - 516) <79E67A4C-DAED-3E60-AF13-23BF0C11A3CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2cd81000 -     0x7fff2cd99fff  libresolv.9.dylib (68) <E2B9E465-C557-3CEA-85F9-4DAF5D550503> /usr/lib/libresolv.9.dylib
    0x7fff2cd9a000 -     0x7fff2cdadfff  libsasl2.2.dylib (214) <BB375531-9020-3B34-BB66-BF3108F71CED> /usr/lib/libsasl2.2.dylib
    0x7fff2ce67000 -     0x7fff2cecbfff  com.apple.CoreMediaIO (1000.0 - 5325) <DE199736-378F-33EC-8B14-42443DF96E57> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff2cecc000 -     0x7fff2cfabfff  libSMC.dylib (20) <B45BD314-B645-3948-B1C2-1FDA40453078> /usr/lib/libSMC.dylib
    0x7fff2cfac000 -     0x7fff2d00bfff  libcups.2.dylib (494.3) <353033B4-E6E6-375A-8BC7-0EE2F67FC8C3> /usr/lib/libcups.2.dylib
    0x7fff2d00c000 -     0x7fff2d01bfff  com.apple.LangAnalysis (1.7.0 - 254) <EE21E044-0B25-3D3E-A892-A276452D8EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d01c000 -     0x7fff2d026fff  com.apple.NetAuth (6.2 - 6.2) <08F7BAF1-D834-3FAF-9FCC-7FBC32BAF037> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d027000 -     0x7fff2d02efff  com.apple.ColorSyncLegacy (4.13.0 - 1) <86ACDDDF-BE29-3002-B35B-2217F7697F0C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d02f000 -     0x7fff2d03afff  com.apple.QD (4.0 - 416) <41CBD1BE-1975-3983-B4E0-32E511997BB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d03b000 -     0x7fff2d68ffff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <882F280D-B129-3299-B098-D1E59B78841A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2d690000 -     0x7fff2d69bfff  com.apple.perfdata (1.0 - 67.40.1) <B80E66C3-5A5F-391A-9475-15DB16BA72E8> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2d69c000 -     0x7fff2d6aafff  libperfcheck.dylib (41) <A9A6BE18-57EA-35F6-96BC-D71C49013A09> /usr/lib/libperfcheck.dylib
    0x7fff2d6ab000 -     0x7fff2d6bafff  com.apple.Kerberos (3.0 - 1) <06AAAB8C-AA8B-344E-A3F3-4CEDF0AF8C78> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2d6bb000 -     0x7fff2d70bfff  com.apple.GSS (4.0 - 2.0) <604B241D-5B83-3F6C-85D3-F3AB29C950D8> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2d70c000 -     0x7fff2d71cfff  com.apple.CommonAuth (4.0 - 2.0) <90C46CDE-4DD0-338C-9609-68F4BCDD3F03> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2d71d000 -     0x7fff2d744fff  com.apple.MobileAssets (1.0 - 659.100.21) <5516BEA4-1FAC-353E-8195-23EEFFA08AB7> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff2d772000 -     0x7fff2d791fff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <92FFAD21-9FA8-3194-8764-946F3D8F429E> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff2d792000 -     0x7fff2d79afff  com.apple.CorePhoneNumbers (1.0 - 1) <A667EA02-1F06-36D7-8290-0B6CD36F89BC> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff2d8ed000 -     0x7fff2d8edfff  liblaunch.dylib (2038.120.1) <A3F46CC6-BD89-39DB-8732-C885B881A635> /usr/lib/system/liblaunch.dylib
    0x7fff2d8ee000 -     0x7fff2d8f3fff  libffi.dylib (27) <D03C219A-1726-3769-A2CC-6A6441CBF457> /usr/lib/libffi.dylib
    0x7fff2e0cf000 -     0x7fff2e21afff  com.apple.Sharing (1630 - 1630) <76D1A200-27A3-3B3E-8B30-4026ABD24217> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff2e21b000 -     0x7fff2e33cfff  com.apple.Bluetooth (8.0.5 - 8.0.5d7) <3AC4216F-EDE3-324E-AB62-8C4B562CBD1A> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2e356000 -     0x7fff2e3affff  com.apple.ProtectedCloudStorage (1.0 - 1) <4BCCB350-CAA2-3217-8AE6-6A6B25755D9F> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff2fb0b000 -     0x7fff2fb16fff  com.apple.DirectoryService.Framework (11.6 - 230.40.1) <5F74B94B-E5FE-308E-8FF6-203162A1DA9D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff2fb17000 -     0x7fff2fb3efff  com.apple.RemoteViewServices (2.0 - 163) <5A16528F-4822-3B0C-BB89-A79459F3AF87> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff2fb3f000 -     0x7fff2fb4efff  com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <80F52037-912C-335F-B1DA-22AFD73DBDA2> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff2fb4f000 -     0x7fff2fb56fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <00007833-3C2A-3F10-97ED-838FB606B5FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2fd84000 -     0x7fff2fd84fff  libsystem_product_info_filter.dylib (8.40.1) <6CA8DEA4-5BD4-375F-9AA7-3338135306C5> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff2fe5c000 -     0x7fff2fe5cfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <BA7C5415-119A-30E5-8177-B24AB40624A3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2fe82000 -     0x7fff2fe82fff  com.apple.CoreServices (1122.45 - 1122.45) <53078FC9-BB1E-3D7E-AFAF-6D9AC420F25E> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff3003e000 -     0x7fff3003efff  com.apple.Accelerate (1.11 - Accelerate 1.11) <515931D4-4026-3320-8805-60E7892CB527> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff3007f000 -     0x7fff3008afff  com.apple.MediaAccessibility (1.0 - 130) <9F936D44-8663-3C49-9B14-3D906CEC361C> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff3008b000 -     0x7fff300aafff  com.apple.networking.AlgosScoreFramework (1.0 - 1) <D0286FFC-1658-30C0-A2C6-FBE9C94331EB> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
    0x7fff300ab000 -     0x7fff300affff  com.apple.AppleSRP (5.0 - 1) <DA2F374E-D025-3E62-B688-8D2772B23FC0> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff300b0000 -     0x7fff300bbfff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <657A98E1-0365-3F99-9B79-8091C19A4BAD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff300bc000 -     0x7fff300f3fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <0DB46D8E-B3CD-3652-8702-1F92EB12E0F4> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff30880000 -     0x7fff308e5fff  com.apple.CoreBluetooth (1.0 - 1) <3045519A-D711-3CD1-9E87-D7581A430423> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff308e6000 -     0x7fff308effff  com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <22A34196-22AD-3021-88CD-CC9A7C0AF006> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff308f0000 -     0x7fff30902fff  com.apple.PowerLog (1.0 - 1) <134B88CE-59B5-3B92-91E0-A3079C8B3952> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
    0x7fff30903000 -     0x7fff3090ffff  com.apple.AppleIDAuthSupport (1.0 - 1) <B80B4F16-3756-303D-A349-3486A08B2216> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff30910000 -     0x7fff309b8fff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <EEEBFD3F-D4A5-37AB-BCE8-CD8A7F17F743> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff309b9000 -     0x7fff309ecfff  com.apple.MediaKit (16 - 927.40.2) <88268EAB-5430-3BCB-9263-E3B4BCC34609> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff309ed000 -     0x7fff30ad8fff  com.apple.DiskManagement (14.0 - 1733.140.2) <4BF7BFA4-4950-3582-B43B-25A4B6A3E7B7> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff30ad9000 -     0x7fff30e93fff  com.apple.CoreAUC (326.2.0 - 326.2.0) <2CA2A80E-FEA5-3631-AD13-A8CC304C7FF7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff30e94000 -     0x7fff30e97fff  com.apple.Mangrove (1.0 - 25) <00241832-3B38-3D76-88DA-0F0ADEEBFAAC> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff30e98000 -     0x7fff30ec5fff  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <D4FFFBBA-0AD9-31D0-99A1-7FC249867A20> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff30ec6000 -     0x7fff31015fff  com.apple.FileProvider (349.141.2 - 349.141.2) <D2C77486-711B-3A81-B6D5-EB059AC1D2F9> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff31016000 -     0x7fff31038fff  com.apple.GenerationalStorage (2.0 - 323) <9419BDA9-3F2D-32A8-8ABD-5CAF5B6DB77F> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff314a1000 -     0x7fff31635fff  com.apple.AVFCore (1.0 - 2020.10) <70A422C7-FCC6-3C1F-A78E-686B861847F4> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
    0x7fff31636000 -     0x7fff316a5fff  com.apple.FrontBoardServices (703.16 - 703.16) <1B6F7F55-D9F7-342F-8361-E66465F2A617> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
    0x7fff316a6000 -     0x7fff316cffff  com.apple.BoardServices (1.0 - 526) <12D89B26-4E91-34A2-83D9-3023D199255C> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
    0x7fff31711000 -     0x7fff3172cfff  com.apple.ExtensionKit (19.4 - 19.4) <A9753B92-EFA2-32EF-AF39-58E5605FBB61> /System/Library/PrivateFrameworks/ExtensionKit.framework/Versions/A/ExtensionKit
    0x7fff3172d000 -     0x7fff31733fff  com.apple.ExtensionFoundation (19.4 - 19.4) <2D46CB26-6391-398E-A8DA-F2D370D0A0CE> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/Versions/A/ExtensionFoundation
    0x7fff31734000 -     0x7fff31779fff  com.apple.CryptoTokenKit (1.0 - 1) <20C8FFAD-1B83-3867-A960-38841AFEB424> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit
    0x7fff3177a000 -     0x7fff31790fff  com.apple.LocalAuthentication (1.0 - 827.140.1) <5ABF445B-C0BA-383F-925F-04B1EF500DBA> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
    0x7fff31791000 -     0x7fff317befff  com.apple.CoreAuthentication.SharedUtils (1.0 - 827.140.1) <6582D8B0-2FC8-30B8-99B9-7DD482A0E345> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
    0x7fff31833000 -     0x7fff31874fff  com.apple.CoreHaptics (1.0 - 1) <CE726154-01B5-3D7F-B886-8207554AD019> /System/Library/Frameworks/CoreHaptics.framework/Versions/A/CoreHaptics
    0x7fff31882000 -     0x7fff318c1fff  com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <07AE0E16-85CC-30F2-A575-A51458366DD9> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff31974000 -     0x7fff319affff  com.apple.DebugSymbols (195.1 - 195.1) <C94557E3-11DD-3007-B001-DC2509CFE14D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff319b0000 -     0x7fff31a65fff  com.apple.CoreSymbolication (12.5 - 64544.81.1) <1D4A9F11-AB1C-3F5F-90A1-38C3EAA7BE1F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff32974000 -     0x7fff329d7fff  com.apple.framework.Apple80211 (17.0 - 1728) <533F7734-3B2E-3F8C-AAF6-971011659A95> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff329d8000 -     0x7fff32b29fff  com.apple.CoreWiFi (3.0 - 341) <B6423C61-FA72-35FD-9D43-4F6CC39F23CB> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff32b2a000 -     0x7fff32b44fff  com.apple.BackBoardServices (1.0 - 1.0) <A7D65AAF-EFEF-3BC9-BF87-973374EBA5D7> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
    0x7fff32b45000 -     0x7fff32b7cfff  com.apple.LDAPFramework (2.4.28 - 194.5) <156E9C09-EE7C-396E-A32C-C28362D5AAE5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff32b7d000 -     0x7fff32b7efff  com.apple.TrustEvaluationAgent (2.0 - 35) <2F6327D6-E9A1-3CC5-93C8-CA189B5C2D22> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff32b7f000 -     0x7fff32c84fff  libcrypto.44.dylib (56.60.3) <7324FB01-7FFF-3EF1-80E9-ED3C97D9CF51> /usr/lib/libcrypto.44.dylib
    0x7fff32c85000 -     0x7fff32cb2fff  libssl.46.dylib (56.60.3) <59A2C2E0-7C5C-32CC-BF55-1EB022BB8236> /usr/lib/libssl.46.dylib
    0x7fff32cb3000 -     0x7fff32d62fff  com.apple.DiskImagesFramework (595.140.1 - 595.140.1) <3D758232-F6EA-3CCC-8B22-EB9DC459CB10> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff32d9a000 -     0x7fff32da9fff  com.apple.RemoteServiceDiscovery (1.0 - 1.120.1) <4D674B64-AC7B-3654-8A51-E256FCD9D524> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff32e07000 -     0x7fff32e0afff  com.apple.help (1.3.8 - 71) <F94CF2A6-2886-3552-A1E5-8D83452AE773> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff32e0b000 -     0x7fff32e12fff  com.apple.EFILogin (2.0 - 2) <A86695A6-1567-330B-870D-805FDB9EE437> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff32e13000 -     0x7fff32e1efff  libcsfde.dylib (554.140.2) <678CA1E1-733D-3709-A327-2208B49C6C1A> /usr/lib/libcsfde.dylib
    0x7fff32e1f000 -     0x7fff32e85fff  libcurl.4.dylib (121.101.1) <517F6BB3-5752-3B40-9107-E35C627A1E43> /usr/lib/libcurl.4.dylib
    0x7fff32e86000 -     0x7fff32e8dfff  com.apple.LoginUICore (4.0 - 4.0) <19B20CB0-6E46-311A-88E4-F7C536475912> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff32e8e000 -     0x7fff32ef0fff  com.apple.AppSupport (1.0.0 - 29) <9DF0F117-4F1B-3E0B-A4E3-BDCAB2EB1740> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
    0x7fff32f90000 -     0x7fff33054fff  com.apple.GameController (1.0 - 1) <EC2B5E0E-7D54-30F2-9409-2FEA779C8253> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
    0x7fff3305d000 -     0x7fff3305dfff  com.apple.ApplicationServices (48 - 50) <1D06CF1D-7086-37D3-A1F8-F0E909B5C631> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff3321f000 -     0x7fff3325efff  com.apple.AppleIDSSOAuthentication (1.0 - 1) <836444C4-6FDD-3659-81EB-1F366C9F1C71> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
    0x7fff33372000 -     0x7fff33372fff  libHeimdalProxy.dylib (79) <2572CF4E-C22E-346A-A72F-9BD07BA56057> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff33425000 -     0x7fff33425fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <47019C26-F502-34D8-A6B4-E792983870A3> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff33449000 -     0x7fff3348cfff  com.apple.StreamingZip (1.0 - 1) <7F9BB412-0B57-3261-BAC1-8FAA2704710E> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff33538000 -     0x7fff33d39fff  com.apple.vision.EspressoFramework (1.0 - 256.4.4) <A207A19F-47D1-38C7-A792-9E0CCC778EF3> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
    0x7fff33d3a000 -     0x7fff33d51fff  com.apple.ANEServices (4.76 - 4.76) <3C70C879-5C89-3890-AEE6-A72BA53ACCFC> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
    0x7fff34109000 -     0x7fff343dcfff  com.apple.spotlight.index (10.7.0 - 2150.26) <40FF1E73-F746-32C4-AC00-4BE570B6C178> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex
    0x7fff343f5000 -     0x7fff34445fff  com.apple.ChunkingLibrary (334.1 - 334.1) <1F0C24A0-F8F0-3773-91FF-39956CF3A1F8> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff34cb9000 -     0x7fff34ccefff  com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <14E9F653-6DB2-3E6B-805F-C3FA91EAF4FC> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
    0x7fff34e55000 -     0x7fff34e58fff  com.apple.Cocoa (6.11 - 23) <6CD0A82D-A0A6-3B0D-91C2-23441C57A083> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff34ea2000 -     0x7fff35296fff  com.apple.AppleMediaServices (1.0 - 1) <5EB8EBFF-B2EE-3580-A990-33D63C390F8B> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices
    0x7fff362f1000 -     0x7fff36314fff  com.apple.openscripting (1.7 - 190) <96A579D8-4148-31DD-9752-D41F9E121051> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff36315000 -     0x7fff36318fff  com.apple.securityhi (9.0 - 55008) <4933616C-D994-3E1E-AFEA-E1E460A1A39E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff36319000 -     0x7fff3631cfff  com.apple.ink.framework (10.15 - 227) <FDE6A6E5-DDD2-31DE-9695-6148EE88005B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff3631d000 -     0x7fff36320fff  com.apple.CommonPanels (1.2.6 - 101) <623B24C3-6256-388A-949B-C7A37AD72690> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff36321000 -     0x7fff36328fff  com.apple.ImageCapture (1711.5.2.1 - 1711.5.2.1) <DF34BF94-579A-3CD7-8785-F49C06525E50> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff37585000 -     0x7fff37697fff  com.apple.AVFCapture (1.0 - 82.6) <119E6F65-DB53-38B4-B4FA-7AFB5645476D> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
    0x7fff37698000 -     0x7fff3772bfff  com.apple.Quagga (47 - 47) <7DABFA1D-0B1C-3F38-8B71-FDA918DF066E> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
    0x7fff3772c000 -     0x7fff37976fff  com.apple.CMCapture (1.0 - 82.6) <FBCE95F0-81D5-38F1-8B39-88F51E3EC323> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
    0x7fff3bbd6000 -     0x7fff3bc6dfff  com.apple.AirPlaySync (1.0 - 2780.10.4.1) <AD221FBA-7DFB-310F-AB9C-760D0F1F37B2> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
    0x7fff3c882000 -     0x7fff3c885fff  com.apple.print.framework.Print (15 - 271) <47961FDE-D450-3357-948E-CFDEFA763A7B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3c886000 -     0x7fff3c889fff  com.apple.Carbon (160 - 164) <F366D867-C06A-3C86-8954-E800C71840D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3c982000 -     0x7fff3c982fff  com.apple.avfoundation (2.0 - 2020.10) <19FE20E3-D0AC-3846-A30D-E1B9EC6731C3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff3cb3c000 -     0x7fff3cb5bfff  com.apple.private.SystemPolicy (1.0 - 1) <16320B9E-AB33-31F7-8837-0389EE6ACFC3> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3d138000 -     0x7fff3d13efff  com.apple.FeatureFlagsSupport (1.0 - 28.60.1) <E972A36A-AD54-356D-8B85-B632DBE29898> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/Versions/A/FeatureFlagsSupport
    0x7fff3d479000 -     0x7fff3d484fff  com.apple.MallocStackLogging (1.0 - 1) <80F5AFE5-59AD-39BF-9A19-C055FE2468F1> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
    0x7fff3d499000 -     0x7fff3d4abfff  libmis.dylib (274.140.2) <F4EE6883-6A50-33B0-9AF9-5131DA07E3D3> /usr/lib/libmis.dylib
    0x7fff40cd4000 -     0x7fff40cddfff  com.apple.IOAccelMemoryInfo (1.0 - 1) <08AAEF20-40F5-3E42-8A12-B057F6B19622> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff41160000 -     0x7fff4117efff  libCGInterfaces.dylib (544.4) <4C0BFB8B-23F1-3C97-A945-6D0CECE4F7A8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff4370d000 -     0x7fff43980fff  com.apple.RawCamera.bundle (9.10.0 - 1450.3) <9CF8B9F4-AA5E-335B-A17F-BBBFDC66E9C5> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff46253000 -     0x7fff4625efff  libGPUSupportMercury.dylib (18.5.9) <833F5327-1ABE-3378-8294-1342F2D4321A> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff47889000 -     0x7fff478c9fff  com.apple.osanalytics.OSAnalytics (1.0 - 1) <01D45AF2-7F1D-39D3-BECA-9F27D2A905BB> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
    0x7fff51359000 -     0x7fff513f8fff  com.apple.Symbolication (12.5 - 64544.70.1) <6D9C8333-6369-3964-A972-5BF99B0AC549> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff53c80000 -     0x7fff53cb6fff  com.apple.ReplayKit (1.0 - 1) <438FB59E-E6C0-3336-896D-05F2FEE1E87B> /System/Library/Frameworks/ReplayKit.framework/Versions/A/ReplayKit
    0x7fff552ad000 -     0x7fff552b0fff  com.apple.ForceFeedback (1.0.6 - 1.0.6) <21453E43-7BA5-3E6B-8CA4-CD66F4E1FEF0> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
    0x7fff5de78000 -     0x7fff5e8dbfff  libSC.dylib (4.6.21) <65C20AA8-041F-308D-8D2E-F3CD6D945C53> /System/Library/Extensions/AMDShared.bundle/Contents/PlugIns/libSC.dylib
    0x7fff693a9000 -     0x7fff693adfff  libmetal_timestamp.dylib (31001.192.1) <B3C388EA-0FE0-3F19-A575-59A2ACA1428E> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
    0x7fff6b7f4000 -     0x7fff6b7fafff  libCoreFSCache.dylib (200.11) <A10745F3-1533-329E-B42A-6DE60871F7C0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6b7fb000 -     0x7fff6b7fffff  libCoreVMClient.dylib (200.11) <3370F902-DA03-3297-804C-EB5F7FD67A01> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6b800000 -     0x7fff6b80ffff  com.apple.opengl (18.5.9 - 18.5.9) <2A421CC5-4D60-339C-9772-3AC991232BD8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6b810000 -     0x7fff6b812fff  libCVMSPluginSupport.dylib (18.5.9) <BF44FEB3-FB8E-3FD8-8988-AD56AD53CFD4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6b813000 -     0x7fff6b81bfff  libGFXShared.dylib (18.5.9) <C4751529-359A-3ECC-84B2-74A23EFAD42A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6b81c000 -     0x7fff6b84ffff  libGLImage.dylib (18.5.9) <C153E192-20A3-3F7D-A897-533DACE748EC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6b850000 -     0x7fff6b88cfff  libGLU.dylib (18.5.9) <8275A6AB-AAD5-3222-A80B-411C0FAFCA63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6b88d000 -     0x7fff6ba20fff  libGLProgrammability.dylib (18.5.9) <A8A0ED0E-5850-31E2-AAF5-6B434239551A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff6ba21000 -     0x7fff6ba2bfff  libGL.dylib (18.5.9) <C6BE589B-CD26-3142-BD18-10C13D404904> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6ba2c000 -     0x7fff6bba9fff  GLEngine (18.5.9) <108F9A6E-A502-3C2D-AD83-1852F8539E26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff6bbaa000 -     0x7fff6bbd2fff  GLRendererFloat (18.5.9) <6554D864-074A-3E97-AD03-4111E27B0E06> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff6ce6b000 -     0x7fff6cec3fff  com.apple.opencl (4.6 - 4.6) <79DA4138-12AB-3561-9967-D49EFB14B437> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff6de0d000 -     0x7fff6de5cfff  ATIRadeonX6000SCLib.dylib (4.6.21) <C0F4E01A-677D-3EAD-BFC1-02B3F4326FA5> /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/ATIRadeonX6000SCLib.dylib
    0x7fff6df6d000 -     0x7fff6df74fff  com.apple.agl (3.3.4 - AGL-3.3.3) <92B718FF-EBC6-36DD-9711-5035FFE32DE4> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x7fff6df75000 -     0x7fff6e05cfff  com.apple.audio.AVFAudio (1.0 - 477.88) <B2C8331B-60D4-3651-B9A0-B9914A230C36> /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff6f5de000 -     0x7fff6f5f0fff  com.apple.CMImaging (1.0 - 82.6) <F60EEDA0-C221-3B51-B537-EE2FE48E19E9> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging
    0x7fff738f2000 -     0x7fff738fdfff  com.apple.SymptomAnalytics (1.0 - 1431.140.1) <B5FD8A0F-E68E-3663-9FA0-7BE8D87AF51E> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/Versions/A/SymptomAnalytics
    0x7fff73b13000 -     0x7fff73b2bfff  com.apple.SymptomPresentationFeed (1.0 - 1431.140.1) <2BCD1681-9B58-33E4-9AD2-448A686BDA9F> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/Versions/A/SymptomPresentationFeed
    0x7fff7743b000 -     0x7fff77442fff  libRosetta.dylib (203.58) <26D08622-69F5-32DB-80D2-9B4651A9F0CC> /usr/lib/libRosetta.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: 38
    thread_create: 0
    thread_set_state: 6840

VM Region Summary:
ReadOnly portion of Libraries: Total=924.6M resident=0K(0%) swapped_out_or_unallocated=924.6M(100%)
Writable regions: Total=2.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.3G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               256K        2 
Activity Tracing                   256K        1 
CG backing stores                 1440K        6 
CG image                           108K        7 
CoreAnimation                       40K        8 
CoreGraphics                        12K        2 
CoreUI image data                  512K        8 
Dispatch continuations           256.0M        2 
Foundation                          16K        1 
IOKit                             7940K        1 
JS JIT generated code              568K      135 
JS VM Gigacage                    12.0M        3 
JS VM Isolated Heap               6400K        5 
Kernel Alloc Once                    8K        1 
MALLOC                           512.6M      170 
MALLOC guard page                   48K       10 
MALLOC_MEDIUM (reserved)           1.5G       13         reserved VM address space (unallocated)
STACK GUARD                       56.2M       51 
Stack                             40.9M       51 
VM_ALLOCATE                       21.0M      122 
__DATA                            43.4M      573 
__DATA_CONST                      19.5M      355 
__DATA_DIRTY                       868K      128 
__FONT_DATA                          4K        1 
__GLSLBUILTINS                    5176K        1 
__LINKEDIT                       542.0M      276 
__OBJC_RO                         70.2M        1 
__OBJC_RW                         2496K        2 
__TEXT                           383.3M      553 
__UNICODE                          588K        1 
mapped file                      444.4M      173 
shared memory                      768K       17 
===========                     =======  ======= 
TOTAL                              3.8G     2680 
TOTAL, minus reserved VM space     2.4G     2680 

Model: MacPro7,1, BootROM 1715.60.5.0.0 (iBridge: 19.16.10647.0.0,0), 16 processors, 16-Core Intel Xeon W, 3.2 GHz, 32 GB, SMC 
Graphics: AMD Radeon Pro W5700X, AMD Radeon Pro W5700X, spdisplays_pcie_device, 16 GB
Memory Module: Slot 3 (Channel E / DIMM 1), 8 GB, DDR4 R-DIMM, 2933 MHz, Micron, 9ASF1G72PZ-2G9E6
Memory Module: Slot 5 (Channel D / DIMM 1), 8 GB, DDR4 R-DIMM, 2933 MHz, Micron, 9ASF1G72PZ-2G9E6
Memory Module: Slot 8 (Channel A / DIMM 1), 8 GB, DDR4 R-DIMM, 2933 MHz, Micron, 9ASF1G72PZ-2G9E6
Memory Module: Slot 10 (Channel B / DIMM 1), 8 GB, DDR4 R-DIMM, 2933 MHz, Micron, 9ASF1G72PZ-2G9E6
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Aug 10 2021 20:10:47 version 9.30.444.18.32.5.71 FWID 01-30b2601e
Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Ethernet 1, Ethernet, en0
Network Service: Wi-Fi, AirPort, en2
PCI Card: AMD Radeon Pro W5700X, gpu-controller, Slot-1@9,0,0
PCI Card: pci1002,ab38, sppci_audiodevice, Slot-1@9,0,1
PCI Card: pci1987,5016, sppci_nvme, Slot-6@13,0,0
PCI Card: pci1987,5016, sppci_nvme, Slot-7@21,0,0
PCI Card: XHC4, sppci_usbxhci, Thunderbolt@200,0,0
PCI Card: pci8086,15eb, sppci_thunderbolt, Thunderbolt@201,0,0
PCI Card: XHC2, sppci_usbxhci, Thunderbolt@83,0,0
PCI Card: XHC3, sppci_usbxhci, Thunderbolt@24,0,0
PCI Card: pci8086,15eb, sppci_thunderbolt, Thunderbolt@84,0,0
PCI Card: pci8086,15eb, sppci_thunderbolt, Thunderbolt@25,0,0
Serial ATA Device: TOSHIBA MD06ACA800V, 8 TB
USB Device: USB 3.0 Bus
USB Device: My Passport 0748
USB Device: USB-Serial (0001)
USB Device: USB-C dongle
USB Device: Mobile Drive
USB Device: Apple T2 Bus
USB Device: Headset
USB Device: Apple T2 Controller
Thunderbolt Bus: Mac Pro, Apple Inc., 63.3
Thunderbolt Bus: Mac Pro, Apple Inc., 63.3
Thunderbolt Bus: Mac Pro, Apple Inc., 63.3
Thunderbolt Bus: Mac Pro, Apple Inc., 63.3

@azeey
Copy link
Contributor Author

azeey commented Feb 1, 2022

@srmainwaring I'm building from the ign-gazebo6 branch and running on Big Sur. I see that you're using the main branch. I wonder if you're experiencing a different problem. That console log looks very different from when I tried running the version without this PR on macOS. Here are my logs on a debug build:

GUI terminal log
Stack trace (most recent call last):
#31   Object "libignition-gazebo6-gui.6.4.0.dylib", at 0x104e58cc1, in void ignition::utils::detail::DefaultDelete<ignition::gazebo::v6::GuiRunner::Implementation>(ignition::gazebo::v6::GuiRunner::Implementation*) + 49
#30   Object "libignition-gazebo6-gui.6.4.0.dylib", at 0x104e58da5, in ignition::gazebo::v6::GuiRunner::Implementation::~Implementation() + 21
#29   Object "libignition-gazebo6-gui.6.4.0.dylib", at 0x104e58e10, in ignition::gazebo::v6::GuiRunner::Implementation::~Implementation() + 96
#28   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058d1605, in ignition::gazebo::v6::EntityComponentManager::~EntityComponentManager() + 21
#27   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058d15c5, in ignition::gazebo::v6::EntityComponentManager::~EntityComponentManager() + 21
#26   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058d15e5, in std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate> >::~unique_ptr() + 21
#25   Object "libignition-gazebo6.6.4.0.dylib", at 0x105908219, in std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate> >::~unique_ptr() + 25
#24   Object "libignition-gazebo6.6.4.0.dylib", at 0x10590827c, in std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate> >::reset(ignition::gazebo::EntityComponentManagerPrivate*) + 92
#23   Object "libignition-gazebo6.6.4.0.dylib", at 0x1059082fb, in std::__1::default_delete<ignition::gazebo::EntityComponentManagerPrivate>::operator()(ignition::gazebo::EntityComponentManagerPrivate*) const + 43
#22   Object "libignition-gazebo6.6.4.0.dylib", at 0x105908345, in ignition::gazebo::EntityComponentManagerPrivate::~EntityComponentManagerPrivate() + 21
#21   Object "libignition-gazebo6.6.4.0.dylib", at 0x105908420, in ignition::gazebo::EntityComponentManagerPrivate::~EntityComponentManagerPrivate() + 208
#20   Object "libignition-gazebo6.6.4.0.dylib", at 0x1059085a5, in std::__1::unordered_map<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > >, ignition::gazebo::v6::detail::ComponentTypeHasher, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > >, std::__1::allocator<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > > >::~unordered_map() + 21
#19   Object "libignition-gazebo6.6.4.0.dylib", at 0x105909a95, in std::__1::unordered_map<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > >, ignition::gazebo::v6::detail::ComponentTypeHasher, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > >, std::__1::allocator<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > > >::~unordered_map() + 21
#18   Object "libignition-gazebo6.6.4.0.dylib", at 0x105909ab5, in std::__1::__hash_table<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, std::__1::__unordered_map_hasher<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, ignition::gazebo::v6::detail::ComponentTypeHasher, true>, std::__1::__unordered_map_equal<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > >, true>, std::__1::allocator<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > > >::~__hash_table() + 21
#17   Object "libignition-gazebo6.6.4.0.dylib", at 0x105909ae9, in std::__1::__hash_table<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, std::__1::__unordered_map_hasher<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, ignition::gazebo::v6::detail::ComponentTypeHasher, true>, std::__1::__unordered_map_equal<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > >, true>, std::__1::allocator<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > > >::~__hash_table() + 41
#16   Object "libignition-gazebo6.6.4.0.dylib", at 0x105909b6e, in std::__1::__hash_table<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, std::__1::__unordered_map_hasher<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, ignition::gazebo::v6::detail::ComponentTypeHasher, true>, std::__1::__unordered_map_equal<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > >, true>, std::__1::allocator<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > > >::__deallocate_node(std::__1::__hash_node_base<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, void*>*>*) + 110
#15   Object "libignition-gazebo6.6.4.0.dylib", at 0x105909c1d, in void std::__1::allocator_traits<std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, void*> > >::destroy<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > >(std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, void*> >&, std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >*) + 29
#14   Object "libignition-gazebo6.6.4.0.dylib", at 0x105909d09, in void std::__1::allocator_traits<std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, void*> > >::__destroy<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > > >(std::__1::integral_constant<bool, false>, std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >, void*> >&, std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >*) + 25
#13   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058dc3b5, in std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >::~pair() + 21
#12   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058f8bbd, in std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > > >::~pair() + 29
#11   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058dc3d5, in std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > >::~pair() + 21
#10   Object "libignition-gazebo6.6.4.0.dylib", at 0x1058f8bf6, in std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_delete<std::__1::mutex> > >::~pair() + 38
#9    Object "libignition-gazebo6.6.4.0.dylib", at 0x1058f8c15, in std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >::~unique_ptr() + 21
#8    Object "libignition-gazebo6.6.4.0.dylib", at 0x1058f8c39, in std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >::~unique_ptr() + 25
#7    Object "libignition-gazebo6.6.4.0.dylib", at 0x1058f8c9c, in std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_delete<ignition::gazebo::v6::detail::BaseView> >::reset(ignition::gazebo::v6::detail::BaseView*) + 92
#6    Object "libignition-gazebo6.6.4.0.dylib", at 0x1058f8cda, in std::__1::default_delete<ignition::gazebo::v6::detail::BaseView>::operator()(ignition::gazebo::v6::detail::BaseView*) const + 42
#5    Object "libsystem_platform.dylib", at 0x7fff2036bd7c, in _sigtramp + 28
#4    Object "libignition-tools-backward.dylib", at 0x102ba3242, in backward::SignalHandling::sig_handler(int, __siginfo*, void*) + 34
#3    Object "libignition-tools-backward.dylib", at 0x102ba348a, in backward::SignalHandling::handleSignal(int, __siginfo*, void*) + 106
#2    Object "libignition-tools-backward.dylib", at 0x102ba35a8, in backward::StackTraceImpl<backward::system_tag::darwin_tag>::load_from(void*, unsigned long, void*, void*) + 56
#1    Object "libignition-tools-backward.dylib", at 0x102ba3701, in backward::StackTraceImpl<backward::system_tag::darwin_tag>::load_here(unsigned long, void*, void*) + 129
#0    Object "libignition-tools-backward.dylib", at 0x102ba4f60, in unsigned long backward::details::unwind<backward::StackTraceImpl<backward::system_tag::darwin_tag>::callback>(backward::StackTraceImpl<backward::system_tag::darwin_tag>::callback, unsigned long) + 32

Full macOS Report ``` Process: ruby [6772] Path: /Users/USER/*/ruby Identifier: ruby Version: 0 Code Type: X86-64 (Native) Parent Process: zsh [27518] Responsible: Terminal [27466] User ID: 502

Date/Time: 2022-02-01 14:40:53.250 -0800
OS Version: macOS 11.6 (20G165)
Report Version: 12
Bridge OS Version: 5.5 (18P4759a)
Anonymous UUID: 74EDD631-829C-3905-562F-6BA3F345AD28

Time Awake Since Boot: 4400000 seconds

System Integrity Protection: enabled

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

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000000013619b9f0
Exception Note: EXC_CORPSE_NOTIFY

VM Regions Near 0x13619b9f0:
VM_ALLOCATE 135fe0000-135fe4000 [ 16K] rw-/rwx SM=PRV
-->
mapped file 136fe8000-136fe9000 [ 4K] r--/r-x SM=PRV Object_id=8b61aa7d

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff202f792e __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff203265bd pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2020abd5 raise + 26
3 libignition-tools-backward.dylib 0x0000000102ba324e backward::SignalHandling::sig_handler(int, __siginfo*, void*) + 46
4 libsystem_platform.dylib 0x00007fff2036bd7d _sigtramp + 29
5 ??? 000000000000000000 0 + 0
6 libignition-gazebo6.6.4.0.dylib 0x00000001058f8c9c std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >::reset(ignition::gazebo::v6::detail::BaseView*) + 92 (memory:2345)
7 libignition-gazebo6.6.4.0.dylib 0x00000001058f8c39 std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >::~unique_ptr() + 25 (memory:2299)
8 libignition-gazebo6.6.4.0.dylib 0x00000001058f8c15 std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >::~unique_ptr() + 21 (memory:2299)
9 libignition-gazebo6.6.4.0.dylib 0x00000001058f8bf6 std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > >::~pair() + 38 (utility:297)
10 libignition-gazebo6.6.4.0.dylib 0x00000001058dc3d5 std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > >::~pair() + 21 (utility:297)
11 libignition-gazebo6.6.4.0.dylib 0x00000001058f8bbd std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >::pair() + 29 (utility:297)
12 libignition-gazebo6.6.4.0.dylib 0x00000001058dc3b5 std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >::pair() + 21 (utility:297)
13 libignition-gazebo6.6.4.0.dylib 0x0000000105909d09 void std::__1::allocator_traits<std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, void*> > >::__destroy<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > >(std::__1::integral_constant<bool, false>, std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, void*> >&, std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >) + 25 (memory:1585)
14 libignition-gazebo6.6.4.0.dylib 0x0000000105909c1d void std::__1::allocator_traits<std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, void
> > >::destroy<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > >(std::__1::allocator<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, void*> >&, std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >) + 29 (memory:1419)
15 libignition-gazebo6.6.4.0.dylib 0x0000000105909b6e std::__1::__hash_table<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, std::__1::__unordered_map_hasher<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, ignition::gazebo::v6::detail::ComponentTypeHasher, true>, std::__1::__unordered_map_equal<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator > >, true>, std::__1::allocator<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > > >::__deallocate_node(std::__1::__hash_node_base<std::__1::__hash_node<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, void
>>) + 110 (__hash_table:1602)
16 libignition-gazebo6.6.4.0.dylib 0x0000000105909ae9 std::__1::__hash_table<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, std::__1::__unordered_map_hasher<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, ignition::gazebo::v6::detail::ComponentTypeHasher, true>, std::__1::__unordered_map_equal<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator > >, true>, std::__1::allocator<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > > >::
__hash_table() + 41 (__hash_table:1541)
17 libignition-gazebo6.6.4.0.dylib 0x0000000105909ab5 std::__1::__hash_table<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, std::__1::__unordered_map_hasher<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, ignition::gazebo::v6::detail::ComponentTypeHasher, true>, std::__1::__unordered_map_equal<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > >, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator > >, true>, std::__1::allocator<std::__1::__hash_value_type<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > > >::
__hash_table() + 21 (__hash_table:1533)
18 libignition-gazebo6.6.4.0.dylib 0x0000000105909a95 std::__1::unordered_map<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > >, ignition::gazebo::v6::detail::ComponentTypeHasher, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator > >, std::__1::allocator<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > > >::~unordered_map() + 21 (unordered_map:972)
19 libignition-gazebo6.6.4.0.dylib 0x00000001059085a5 std::__1::unordered_map<std::__1::vector<unsigned long long, std::__1::allocator >, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > >, ignition::gazebo::v6::detail::ComponentTypeHasher, std::__1::equal_to<std::__1::vector<unsigned long long, std::__1::allocator > >, std::__1::allocator<std::__1::pair<std::__1::vector<unsigned long long, std::__1::allocator > const, std::__1::pair<std::__1::unique_ptr<ignition::gazebo::v6::detail::BaseView, std::__1::default_deleteignition::gazebo::v6::detail::BaseView >, std::__1::unique_ptr<std::__1::mutex, std::__1::default_deletestd::__1::mutex > > > > >::~unordered_map() + 21 (unordered_map:970)
20 libignition-gazebo6.6.4.0.dylib 0x0000000105908420 ignition::gazebo::EntityComponentManagerPrivate::~EntityComponentManagerPrivate() + 208 (EntityComponentManager.cc:48)
21 libignition-gazebo6.6.4.0.dylib 0x0000000105908345 ignition::gazebo::EntityComponentManagerPrivate::~EntityComponentManagerPrivate() + 21 (EntityComponentManager.cc:48)
22 libignition-gazebo6.6.4.0.dylib 0x00000001059082fb std::__1::default_deleteignition::gazebo::EntityComponentManagerPrivate::operator()(ignition::gazebo::EntityComponentManagerPrivate*) const + 43 (memory:2084)
23 libignition-gazebo6.6.4.0.dylib 0x000000010590827c std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_deleteignition::gazebo::EntityComponentManagerPrivate >::reset(ignition::gazebo::EntityComponentManagerPrivate*) + 92 (memory:2345)
24 libignition-gazebo6.6.4.0.dylib 0x0000000105908219 std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_deleteignition::gazebo::EntityComponentManagerPrivate >::~unique_ptr() + 25 (memory:2299)
25 libignition-gazebo6.6.4.0.dylib 0x00000001058d15e5 std::__1::unique_ptr<ignition::gazebo::EntityComponentManagerPrivate, std::__1::default_deleteignition::gazebo::EntityComponentManagerPrivate >::~unique_ptr() + 21 (memory:2299)
26 libignition-gazebo6.6.4.0.dylib 0x00000001058d15c5 ignition::gazebo::v6::EntityComponentManager::~EntityComponentManager() + 21 (EntityComponentManager.cc:288)
27 libignition-gazebo6.6.4.0.dylib 0x00000001058d1605 ignition::gazebo::v6::EntityComponentManager::~EntityComponentManager() + 21 (EntityComponentManager.cc:288)
28 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104e58e10 ignition::gazebo::v6::GuiRunner::Implementation::~Implementation() + 96 (GuiRunner.cc:43)
29 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104e58da5 ignition::gazebo::v6::GuiRunner::Implementation::~Implementation() + 21 (GuiRunner.cc:43)
30 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104e58cc1 void ignition::utils::detail::DefaultDeleteignition::gazebo::v6::GuiRunner::Implementation(ignition::gazebo::v6::GuiRunner::Implementation*) + 49 (DefaultOps.hh:48)
31 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104e5902c std::__1::unique_ptr<ignition::gazebo::v6::GuiRunner::Implementation, void ()(ignition::gazebo::v6::GuiRunner::Implementation)>::reset(ignition::gazebo::v6::GuiRunner::Implementation*) + 92 (memory:2345)
32 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104e58fc9 std::__1::unique_ptr<ignition::gazebo::v6::GuiRunner::Implementation, void ()(ignition::gazebo::v6::GuiRunner::Implementation)>::~unique_ptr() + 25 (memory:2299)
33 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104db7b35 std::__1::unique_ptr<ignition::gazebo::v6::GuiRunner::Implementation, void ()(ignition::gazebo::v6::GuiRunner::Implementation)>::~unique_ptr() + 21 (memory:2299)
34 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104db7b9b ignition::gazebo::v6::GuiRunner::~GuiRunner() + 43 (GuiRunner.cc:131)
35 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104db7bc5 ignition::gazebo::v6::GuiRunner::~GuiRunner() + 21 (GuiRunner.cc:131)
36 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104db7be9 ignition::gazebo::v6::GuiRunner::~GuiRunner() + 25 (GuiRunner.cc:131)
37 org.qt-project.QtCore 0x000000010c724dd1 QObjectPrivate::deleteChildren() + 289
38 org.qt-project.QtCore 0x000000010c724b24 QObject::~QObject() + 1924
39 org.qt-project.QtWidgets 0x000000010b98300e QApplication::~QApplication() + 830
40 libignition-gui6.6.3.0.dylib 0x0000000108d77858 ignition::gui::Application::~Application() + 1240 (Application.cc:169)
41 libignition-gui6.6.3.0.dylib 0x0000000108d77e8e ignition::gui::Application::~Application() + 5 (Application.cc:133) [inlined]
42 libignition-gui6.6.3.0.dylib 0x0000000108d77e8e ignition::gui::Application::~Application() + 14 (Application.cc:133)
43 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104d7743c std::__1::default_deleteignition::gui::Application::operator()(ignition::gui::Application*) const + 44 (memory:2084)
44 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104d773bc std::__1::unique_ptr<ignition::gui::Application, std::__1::default_deleteignition::gui::Application >::reset(ignition::gui::Application*) + 92 (memory:2345)
45 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104d77359 std::__1::unique_ptr<ignition::gui::Application, std::__1::default_deleteignition::gui::Application >::~unique_ptr() + 25 (memory:2299)
46 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104d67445 std::__1::unique_ptr<ignition::gui::Application, std::__1::default_deleteignition::gui::Application >::~unique_ptr() + 21 (memory:2299)
47 libignition-gazebo6-gui.6.4.0.dylib 0x0000000104d67585 ignition::gazebo::v6::gui::runGui(int&, char**, char const*, char const*) + 309 (Gui.cc:336)
48 libignition-gazebo6-ign.6.4.0.dylib 0x0000000104673c57 runGui + 55 (ign.cc:374)
49 libffi.dylib 0x00007fff2d9068f5 ffi_call_unix64 + 85
50 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
51 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
52 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
53 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
54 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
55 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
56 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
57 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
58 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
59 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
60 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
61 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
62 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
63 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
64 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
65 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
66 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
67 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
68 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
69 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
70 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
71 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
72 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
73 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
74 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
75 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
76 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
77 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
78 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
79 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
80 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
81 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
82 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
83 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
84 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
85 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
86 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
87 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
88 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
89 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
90 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
91 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
92 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
93 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
94 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
95 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
96 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
97 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
98 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
99 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
100 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
101 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
102 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
103 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
104 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
105 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
106 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
107 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
108 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
109 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
110 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
111 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
112 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
113 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
114 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
115 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
116 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
117 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
118 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
119 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
120 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
121 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
122 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
123 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
124 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
125 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
126 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
127 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
128 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
129 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
130 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
131 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
132 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
133 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
134 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
135 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
136 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
137 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
138 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
139 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
140 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
141 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
142 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
143 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
144 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
145 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
146 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
147 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
148 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
149 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
150 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
151 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
152 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
153 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
154 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
155 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
156 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
157 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
158 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
159 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
160 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
161 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
162 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
163 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
164 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
165 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
166 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
167 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
168 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
169 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
170 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
171 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
172 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
173 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
174 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
175 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
176 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
177 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
178 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
179 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
180 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
181 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
182 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
183 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
184 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
185 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
186 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
187 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
188 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
189 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
190 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
191 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
192 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
193 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
194 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
195 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
196 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
197 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
198 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
199 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
200 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
201 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
202 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
203 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
204 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
205 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
206 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
207 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
208 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
209 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
210 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
211 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
212 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
213 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
214 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
215 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
216 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
217 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
218 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
219 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
220 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
221 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
222 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
223 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
224 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
225 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
226 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
227 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
228 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
229 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
230 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
231 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
232 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
233 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
234 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
235 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
236 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
237 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
238 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
239 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
240 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
241 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
242 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
243 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
244 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
245 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
246 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
247 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
248 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
249 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
250 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
251 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
252 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
253 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
254 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
255 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
256 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
257 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
258 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
259 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
260 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
261 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
262 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
263 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
264 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
265 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
266 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
267 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
268 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
269 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
270 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
271 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
272 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
273 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
274 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
275 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
276 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
277 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
278 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
279 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
280 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
281 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
282 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
283 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
284 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
285 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
286 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
287 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
288 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
289 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
290 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
291 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
292 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
293 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
294 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
295 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
296 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
297 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
298 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
299 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
300 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
301 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
302 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
303 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
304 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
305 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
306 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
307 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
308 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
309 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
310 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
311 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
312 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
313 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
314 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
315 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
316 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
317 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
318 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
319 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
320 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
321 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
322 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
323 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
324 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
325 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
326 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
327 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
328 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
329 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
330 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
331 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
332 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
333 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
334 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
335 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
336 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
337 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
338 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
339 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
340 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
341 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
342 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
343 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
344 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
345 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
346 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
347 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
348 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
349 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
350 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
351 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
352 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
353 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
354 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
355 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
356 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
357 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
358 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
359 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
360 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
361 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
362 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
363 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
364 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
365 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
366 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
367 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
368 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
369 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
370 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
371 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
372 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
373 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
374 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
375 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
376 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
377 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
378 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
379 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
380 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
381 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
382 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
383 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
384 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
385 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
386 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
387 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
388 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
389 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
390 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
391 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
392 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
393 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
394 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
395 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
396 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
397 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
398 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
399 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
400 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
401 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
402 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
403 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
404 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
405 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
406 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
407 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
408 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
409 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
410 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
411 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
412 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
413 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
414 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
415 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
416 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
417 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
418 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
419 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
420 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
421 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
422 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
423 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
424 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
425 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
426 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
427 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
428 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
429 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
430 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
431 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
432 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
433 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
434 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
435 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
436 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
437 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
438 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
439 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
440 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
441 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
442 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
443 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
444 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
445 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
446 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
447 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
448 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
449 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
450 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
451 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
452 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
453 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
454 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
455 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
456 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
457 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
458 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
459 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
460 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
461 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
462 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
463 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
464 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
465 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
466 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
467 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
468 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
469 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
470 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
471 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
472 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
473 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
474 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
475 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
476 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
477 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
478 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
479 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
480 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
481 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
482 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
483 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
484 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
485 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
486 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
487 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
488 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
489 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
490 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
491 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
492 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
493 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
494 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
495 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
496 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
497 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
498 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
499 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
500 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
501 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
502 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
503 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
504 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
505 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
506 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
507 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
508 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
509 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
510 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
511 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699
512 libffi.dylib 0x00007fff2d90622d ffi_call_int + 699

Thread 1:
0 libsystem_kernel.dylib 0x00007fff202f79ca poll + 10
1 libruby.2.7.dylib 0x0000000102932942 timer_pthread_fn + 107
2 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
3 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

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

Thread 3:: QQmlThread
0 libsystem_kernel.dylib 0x00007fff202f79ca poll + 10
1 org.qt-project.QtCore 0x000000010c75a86e qt_safe_poll(pollfd*, unsigned int, timespec const*) + 94
2 org.qt-project.QtCore 0x000000010c75c0bc QEventDispatcherUNIX::processEvents(QFlagsQEventLoop::ProcessEventsFlag) + 812
3 org.qt-project.QtCore 0x000000010c6f90c7 QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) + 471
4 org.qt-project.QtCore 0x000000010c538c2c QThread::exec() + 140
5 org.qt-project.QtQml 0x000000010aeec199 0x10ac65000 + 2650521
6 org.qt-project.QtCore 0x000000010c539b3a 0x10c517000 + 142138
7 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
8 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 4:: ZMQbg/Reaper
0 libsystem_kernel.dylib 0x00007fff202f5c4a kevent + 10
1 libzmq.5.dylib 0x000000010d5ce21a zmq::kqueue_t::loop() + 266
2 libzmq.5.dylib 0x000000010d5f56bc thread_routine(void*) + 60
3 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
4 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 5:: ZMQbg/IO/0
0 libsystem_kernel.dylib 0x00007fff202f5c4a kevent + 10
1 libzmq.5.dylib 0x000000010d5ce21a zmq::kqueue_t::loop() + 266
2 libzmq.5.dylib 0x000000010d5f56bc thread_routine(void*) + 60
3 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
4 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 6:
0 libsystem_kernel.dylib 0x00007fff202f79ca poll + 10
1 libzmq.5.dylib 0x000000010d602015 zmq_poll + 356
2 libignition-transport11.11.0.0.dylib 0x000000010b1f7579 zmq::detail::poll(zmq_pollitem_t*, unsigned long, long) + 18 (zmq.hpp:307) [inlined]
3 libignition-transport11.11.0.0.dylib 0x000000010b1f7579 zmq::poll(zmq_pollitem_t*, unsigned long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 18 (zmq.hpp:356) [inlined]
4 libignition-transport11.11.0.0.dylib 0x000000010b1f7579 ignition::transport::v11::NodeShared::RunReceptionTask() + 201 (NodeShared.cc:354)
5 libignition-transport11.11.0.0.dylib 0x000000010b20b94e decltype((std::__1::forwardignition::transport::v11::NodeShared*(fp0)).fp()) std::__1::__invoke<void (ignition::transport::v11::NodeShared::)(), ignition::transport::v11::NodeShared, void>(void (ignition::transport::v11::NodeShared::&&)(), ignition::transport::v11::NodeShared&&) + 26 (type_traits:3688) [inlined]
6 libignition-transport11.11.0.0.dylib 0x000000010b20b94e void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::NodeShared::)(), ignition::transport::v11::NodeShared, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::NodeShared::)(), ignition::transport::v11::NodeShared>&, std::__1::__tuple_indices<2ul>) + 26 (thread:280) [inlined]
7 libignition-transport11.11.0.0.dylib 0x000000010b20b94e void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::NodeShared::)(), ignition::transport::v11::NodeShared> >(void*) + 62 (thread:291)
8 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
9 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 7:
0 libsystem_kernel.dylib 0x00007fff202f79ca poll + 10
1 libzmq.5.dylib 0x000000010d602015 zmq_poll + 356
2 libignition-transport11.11.0.0.dylib 0x000000010b1df607 zmq::detail::poll(zmq_pollitem_t*, unsigned long, long) + 10 (zmq.hpp:307) [inlined]
3 libignition-transport11.11.0.0.dylib 0x000000010b1df607 zmq::poll(zmq_pollitem_t*, unsigned long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 10 (zmq.hpp:356) [inlined]
4 libignition-transport11.11.0.0.dylib 0x000000010b1df607 ignition::transport::v11::pollSockets(std::__1::vector<int, std::__1::allocator > const&, int) + 71 (Discovery.cc:54)
5 libignition-transport11-log.11.0.0.dylib 0x000000010a6f129f ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher::RecvMessages() + 191 (Discovery.hh:767)
6 libignition-transport11.11.0.0.dylib 0x000000010b20e2fe decltype((std::__1::forward<ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher>(fp0)).fp()) std::__1::__invoke<void (ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher::)(), ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher, void>(void (ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher::&&)(), ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher&&) + 26 (type_traits:3688) [inlined]
7 libignition-transport11.11.0.0.dylib 0x000000010b20e2fe void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher::
)(), ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher::)(), ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher>&, std::__1::__tuple_indices<2ul>) + 26 (thread:280) [inlined]
8 libignition-transport11.11.0.0.dylib 0x000000010b20e2fe void
std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher::)(), ignition::transport::v11::Discoveryignition::transport::v11::MessagePublisher> >(void*) + 62 (thread:291)
9 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
10 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 8:
0 libsystem_kernel.dylib 0x00007fff202f79ca poll + 10
1 libzmq.5.dylib 0x000000010d602015 zmq_poll + 356
2 libignition-transport11.11.0.0.dylib 0x000000010b1df607 zmq::detail::poll(zmq_pollitem_t*, unsigned long, long) + 10 (zmq.hpp:307) [inlined]
3 libignition-transport11.11.0.0.dylib 0x000000010b1df607 zmq::poll(zmq_pollitem_t*, unsigned long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 10 (zmq.hpp:356) [inlined]
4 libignition-transport11.11.0.0.dylib 0x000000010b1df607 ignition::transport::v11::pollSockets(std::__1::vector<int, std::__1::allocator > const&, int) + 71 (Discovery.cc:54)
5 libignition-transport11.11.0.0.dylib 0x000000010b20e42f ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher::RecvMessages() + 191 (Discovery.hh:767)
6 libignition-transport11.11.0.0.dylib 0x000000010b21116e decltype((std::__1::forward<ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher>(fp0)).fp()) std::__1::__invoke<void (ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher::)(), ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher, void>(void (ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher::&&)(), ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher&&) + 26 (type_traits:3688) [inlined]
7 libignition-transport11.11.0.0.dylib 0x000000010b21116e void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher::
)(), ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher::)(), ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher>&, std::__1::__tuple_indices<2ul>) + 26 (thread:280) [inlined]
8 libignition-transport11.11.0.0.dylib 0x000000010b21116e void
std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher::)(), ignition::transport::v11::Discoveryignition::transport::v11::ServicePublisher> >(void*) + 62 (thread:291)
9 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
10 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 9:
0 libsystem_kernel.dylib 0x00007fff202f3cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20326e49 _pthread_cond_wait + 1298
2 libc++.1.dylib 0x00007fff2028fe03 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lockstd::__1::mutex&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 93
3 libignition-transport11.11.0.0.dylib 0x000000010b1f955e std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> > >(std::__1::unique_lockstd::__1::mutex&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> > > const&) + 12 (__mutex_base:426) [inlined]
4 libignition-transport11.11.0.0.dylib 0x000000010b1f955e bool std::__1::condition_variable::wait_until<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> >, ignition::transport::v11::NodeSharedPrivate::PublishThread()::$_0>(std::__1::unique_lockstd::__1::mutex&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l> > > const&, ignition::transport::v11::NodeSharedPrivate::PublishThread()::$_0) + 12 (__mutex_base:438) [inlined]
5 libignition-transport11.11.0.0.dylib 0x000000010b1f955e ignition::transport::v11::NodeSharedPrivate::PublishThread() + 1182 (NodeShared.cc:1801)
6 libignition-transport11.11.0.0.dylib 0x000000010b2112ee decltype((std::__1::forwardignition::transport::v11::NodeSharedPrivate*(fp0)).fp()) std::__1::__invoke<void (ignition::transport::v11::NodeSharedPrivate::)(), ignition::transport::v11::NodeSharedPrivate, void>(void (ignition::transport::v11::NodeSharedPrivate::&&)(), ignition::transport::v11::NodeSharedPrivate&&) + 26 (type_traits:3688) [inlined]
7 libignition-transport11.11.0.0.dylib 0x000000010b2112ee void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::NodeSharedPrivate::)(), ignition::transport::v11::NodeSharedPrivate, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::NodeSharedPrivate::)(), ignition::transport::v11::NodeSharedPrivate>&, std::__1::__tuple_indices<2ul>) + 26 (thread:280) [inlined]
8 libignition-transport11.11.0.0.dylib 0x000000010b2112ee void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void (ignition::transport::v11::NodeSharedPrivate::)(), ignition::transport::v11::NodeSharedPrivate> >(void*) + 62 (thread:291)
9 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
10 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 10:
0 libsystem_pthread.dylib 0x00007fff20322420 start_wqthread + 0

Thread 11:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff202f12ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff202f162c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2041e49f __CFRunLoopServiceMachPort + 316
3 com.apple.CoreFoundation 0x00007fff2041cb7f __CFRunLoopRun + 1328
4 com.apple.CoreFoundation 0x00007fff2041bf8c CFRunLoopRunSpecific + 563
5 com.apple.AppKit 0x00007fff22dab23a _NSEventThread + 124
6 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
7 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 12:
0 libsystem_pthread.dylib 0x00007fff20322420 start_wqthread + 0

Thread 13:: CVDisplayLink
0 libsystem_kernel.dylib 0x00007fff202f3cde __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff20326e7f _pthread_cond_wait + 1352
2 com.apple.CoreVideo 0x00007fff27277fe3 CVDisplayLink::waitUntil(unsigned long long) + 229
3 com.apple.CoreVideo 0x00007fff272774ec CVDisplayLink::runIOThread() + 482
4 libsystem_pthread.dylib 0x00007fff203268fc _pthread_start + 224
5 libsystem_pthread.dylib 0x00007fff20322443 thread_start + 15

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00000001031e5e00 rcx: 0x00007fb240a97a28 rdx: 0x0000000000000000
rdi: 0x0000000000000103 rsi: 0x000000000000000b rbp: 0x00007fb240a97a50 rsp: 0x00007fb240a97a28
r8: 0x00000000000096a6 r9: 0x0000000000000013 r10: 0x00000001031e5e00 r11: 0x0000000000000246
r12: 0x0000000000000103 r13: 0x0000000000000001 r14: 0x000000000000000b r15: 0x0000000000000016
rip: 0x00007fff202f792e rfl: 0x0000000000000246 cr2: 0x0000000102bab3a0

Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133

Thread 0 instruction stream:
48 89 08 48 83 7d e8 00-0f 84 15 00 00 00 48 8b H..H.}........H.
7d d8 e8 30 fb ff ff 48-89 c7 48 8b 75 e8 e8 14 }..0...H..H.u...
00 00 00 48 83 c4 30 5d-c3 66 2e 0f 1f 84 00 00 ...H..0].f......
00 00 00 0f 1f 40 00 55-48 89 e5 48 83 ec 20 48 [email protected]..H.. H
89 7d f8 48 89 75 f0 48-8b 45 f0 48 89 45 e8 48 .}.H.u.H.E.H.E.H
83 f8 00 0f 84 0a 00 00-00 48 8b 7d e8 48 8b 07 .........H.}.H..
[ff]50 08 48 83 c4 20 5d-c3 66 2e 0f 1f 84 00 00 .P.H.. ].f...... <==
00 00 00 0f 1f 40 00 55-48 89 e5 48 83 ec 10 48 [email protected]..H...H
89 7d f8 48 8b 7d f8 48-83 c7 10 e8 fb b1 67 00 .}.H.}.H......g.
48 83 c4 10 5d c3 90 55-48 89 e5 48 83 ec 10 31 H...]..UH..H...1
c0 89 c6 48 89 7d f8 48-8b 7d f8 e8 e9 b8 67 00 ...H.}.H.}....g.
48 83 c4 10 5d c3 90 55-48 89 e5 48 83 ec 30 48 H...]..UH..H..0H

Thread 0 last branch register state not available.

</details>

@srmainwaring
Copy link
Contributor

srmainwaring commented Feb 2, 2022

I'm building from the ign-gazebo6 branch and running on Big Sur

Are you using the Metal support for rendering from ign-rendering7 and the PRs in ign-gui7 and ign-gazebo7 on that branch or are you running without MinimalScene working? Could you post the commits of the libraries in your build please and I'll see if I can replicate.

That console log looks very different from when I tried running the version without this PR on macOS

Yes, my log isn't very helpful, not sure what is going on there. It's a RelWithDebInfo build rather than Debug. I do find though that if I apply the release rather than reset change mentioned above when using your changes that the GUI exits clean.

@azeey
Copy link
Contributor Author

azeey commented Feb 2, 2022

Are you using the Metal support for rendering from ign-rendering7 and the PRs in ign-gui7 and ign-gazebo7 on that branch or are you running without MinimalScene working? Could you post the commits of the libraries in your build please and I'll see if I can replicate.

No, I was running without MinimalScene. I couldn't get Metal support working in the setup I have. I ran out of time trying to install Ogre in a custom homebrew prefix. The libraries I used were the release branches of Fortress (https://github.com/ignition-tooling/gazebodistro/blob/master/collection-fortress.yaml). For ign-gazebo, in addition to applying this PR, I removed the parts in src/cmd/cmdgazebo.rb.in that disabled running on macOS the same way you did on your fork https://github.com/srmainwaring/ign-gazebo/tree/feature/ign-gazebo7-metal-demo.

The example I ran was example/worlds/minimal_scene.sdf with the <plugin filename="MinimalScene" name="3D View"> tag removed.

@srmainwaring
Copy link
Contributor

srmainwaring commented Feb 2, 2022

Ok - I though perhaps I'd missed a trick in getting Ignition rendering running on macs!

I'm not sure how much the additional rendering / Metal code will affect the behaviour - it shouldn't interfere with the ECM that much as most of the rendering and scene graph processing is running on different threads to the main GUI app.

Slightly off topic: but if you need a hand setting up Metal support for macOS let me know - would be great to verify it's working for others. There is a one line change to the brew formula for ogre2.2 that gets the version needed for the Metal branches (https://github.com/srmainwaring/homebrew-simulation/tree/feature/ogre2.2-metal-texture-gpu)

@azeey
Copy link
Contributor Author

azeey commented Feb 5, 2022

I was finally able to run Ogre2 with metal. Thank you for the awesome contributions! I followed the wiki at https://github.com/srmainwaring/ign-rendering/wiki, but instead of <render_system>metal</render_system>, I needed to put <graphics_api>metal</graphics_api>.

I tested with shapes.sdf and it did not crash at exit for me.

Peek.2022-02-05.17-07.mp4

I exported the collection of libraries at the exact versions. For ign-gazebo, I used your fork (https://github.com/srmainwaring/ign-gazebo/tree/feature/ign-gazebo7-metal-demo) and cherry-picked this PR (b4274db) on top of it.

collection
repositories:
  ign-cmake:
    type: git
    url: https://github.com/ignitionrobotics/ign-cmake
    version: 3f918e012da87f4ef69b2b2e13229ed31ea8b5db
  ign-common:
    type: git
    url: https://github.com/ignitionrobotics/ign-common
    version: 9b790e67e20f1aeb729f33474db63a9df83c3080
  ign-fuel-tools:
    type: git
    url: https://github.com/ignitionrobotics/ign-fuel-tools
    version: c47d85f00419d4a684f1955e56fb4404a060f77d
  ign-gui:
    type: git
    url: https://github.com/srmainwaring/ign-gui.git
    version: 8363f0fd55c199a45cfe4b19f7ebbca92be1f05d
  ign-launch:
    type: git
    url: https://github.com/ignitionrobotics/ign-launch
    version: 51cab20faf86d52e29a9b8a8395be3209ee8e783
  ign-math:
    type: git
    url: https://github.com/ignitionrobotics/ign-math
    version: 6794eb970396a77987c15a4ae2a3067ff8730c18
  ign-msgs:
    type: git
    url: https://github.com/ignitionrobotics/ign-msgs
    version: 400764d3416df0ea4f7f7a4141abc9f97d2bf202
  ign-physics:
    type: git
    url: https://github.com/ignitionrobotics/ign-physics
    version: f198a7b8bccaa0d47f34e6584cd50642b8c61b04
  ign-plugin:
    type: git
    url: https://github.com/ignitionrobotics/ign-plugin
    version: 0da6f078a3b98c3ac962378272dd29c80b70b119
  ign-rendering:
    type: git
    url: https://github.com/ignitionrobotics/ign-rendering
    version: d90a20c5ecfa873a4a3809207fd81d1c442fabb4
  ign-sensors:
    type: git
    url: https://github.com/ignitionrobotics/ign-sensors
    version: 83855aa542275a3b135c2443afeff15a0689ccb3
  ign-tools:
    type: git
    url: https://github.com/ignitionrobotics/ign-tools
    version: 4df357f77a7389fdfc385849f910369440266a12
  ign-transport:
    type: git
    url: https://github.com/ignitionrobotics/ign-transport
    version: 185961ff1c97583c50d67c65a5b0c9bb9c64f5d5
  ign-utils:
    type: git
    url: https://github.com/ignitionrobotics/ign-utils
    version: 3991dca05d041dba5477e5aa53f6b058183cd111
  sdformat:
    type: git
    url: https://github.com/osrf/sdformat
    version: 1df5df20817f6f05ade84369020be3a334257c44

@srmainwaring
Copy link
Contributor

srmainwaring commented Feb 6, 2022

I was finally able to run Ogre2 with metal.

Thanks for testing it out - it's nice to see that it's working for someone else.

I needed to put <graphics_api>metal</graphics_api>

Yes, the instructions are a bit out of date. I've updated the xml tag, all the repo versions need updating as well once I've fixed on a combination that work (hopefully the standard garden branches will all be good).

I exported the collection of libraries at the exact versions

Thanks, that's very helpful. I should replace the version listing in the wiki with a vcs collection as well. I'm using slightly different versions for my own testing / development so I'll test both configs for the ECM fix and have included my config below.

I confirm that I don't see the crash on exit when your patch is included (both configs) - so that's great news!

I must have had some stale libraries or similar on my previous tests. The main thing I've changed is using colcon to build. I had been using a set of bash scripts which replicated the brew install of ignition from the osrf/simulation formula. Nominally this was to get around macOS SIP issues (i.e. the sanitising of DYLD_LIBRARY_PATH and friends) by installing into /usr/local/Cellar then linking into /usr/local and /usr/local/opt which are on the system search path.

I've since realised that you don't need to disable SIP provided that you use the build command:

colcon build --merge-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_MACOSX_RPATH=FALSE -DCMAKE_INSTALL_NAME_DIR=$(pwd)/install/lib

This inserts the full library install path into the shared libraries rather than @rpath, so there is no need for DYLD_LIBRARY_PATH to be set. The libraries are no longer relocatable, but that is not a problem in this case.

This is my development collection - your fix also works in this case.

collection
repositories:
  ign-cmake:
    type: git
    url: https://github.com/srmainwaring/ign-cmake
    version: 017be42ca82fc9d0f5c9b67b88de1efde898df22
  ign-common:
    type: git
    url: https://github.com/srmainwaring/ign-common
    version: 9be39473ffc9afbda5e163c85ec44a3ed9299d84
  ign-fuel-tools:
    type: git
    url: https://github.com/srmainwaring/ign-fuel-tools
    version: b23b50c30afdcfac6cf3bcea56de71aea7f5856c
  ign-gazebo:
    type: git
    url: https://github.com/srmainwaring/ign-gazebo.git
    version: b6e4aff9c2714aa0425d296061872b910334d04d
  ign-gui:
    type: git
    url: https://github.com/srmainwaring/ign-gui.git
    version: c9d87974d52db4eae37888a179371c39d9bcdb1b
  ign-math:
    type: git
    url: https://github.com/ignitionrobotics/ign-math
    version: 6794eb970396a77987c15a4ae2a3067ff8730c18
  ign-msgs:
    type: git
    url: https://github.com/ignitionrobotics/ign-msgs
    version: 400764d3416df0ea4f7f7a4141abc9f97d2bf202
  ign-physics:
    type: git
    url: https://github.com/ignitionrobotics/ign-physics
    version: f198a7b8bccaa0d47f34e6584cd50642b8c61b04
  ign-plugin:
    type: git
    url: https://github.com/ignitionrobotics/ign-plugin
    version: 0da6f078a3b98c3ac962378272dd29c80b70b119
  ign-rendering:
    type: git
    url: https://github.com/srmainwaring/ign-rendering
    version: d713e9a09b086e5e27d993bf756c128dce4f53f8
  ign-sensors:
    type: git
    url: https://github.com/ignitionrobotics/ign-sensors
    version: 83855aa542275a3b135c2443afeff15a0689ccb3
  ign-tools:
    type: git
    url: https://github.com/ignitionrobotics/ign-tools
    version: 4df357f77a7389fdfc385849f910369440266a12
  ign-transport:
    type: git
    url: https://github.com/ignitionrobotics/ign-transport
    version: 185961ff1c97583c50d67c65a5b0c9bb9c64f5d5
  ign-utils:
    type: git
    url: https://github.com/ignitionrobotics/ign-utils
    version: 268d2e645563a0ed8fccd7d14088e87056917d7e
  sdformat:
    type: git
    url: https://github.com/srmainwaring/sdformat
    version: f18558e89072f0eab98478901cd3e9447ecbb192

@azeey
Copy link
Contributor Author

azeey commented Feb 8, 2022

I confirm that I don't see the crash on exit when your patch is included (both configs) - so that's great news!

That's great to hear!!

I've since realised that you don't need to disable SIP provided that you use the build command:
colcon build --merge-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_MACOSX_RPATH=FALSE -DCMAKE_INSTALL_NAME_DIR=$(pwd)/install/lib

Cool! I had a lot of problems with this because ign itself uses #!/usr/bin/env ruby, which was picking up the system installed ruby on my machine, and hence, not forwarding the DYLD_LIBRARY_PATH to the subsequent invocation of ruby scripts. I had to manually change it and cmdgazebo.rb to use #!ruby. Perhaps with this new approach, I won't need to do that.

Copy link
Contributor

@adlarkin adlarkin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall, changes look good - thanks for working on this! I learned a few new things about c++ as well (for example, std::index_sequence_for). I think the main things to address are API/ABI compatibility and the potential impact on runtime performance (I left a few review comments about this). Other than that, most of the comments I left are minor.

include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
include/ignition/gazebo/detail/EntityComponentManager.hh Outdated Show resolved Hide resolved
src/gui/Gui_clean_exit_TEST.cc Show resolved Hide resolved
include/ignition/gazebo/detail/View.hh Show resolved Hide resolved
{
ignwarn << "Non-const component data is cached for entity " << _entity
<< ", but const component data is not cached." << std::endl;
return std::make_tuple(static_cast<Args>(_args[Is])...);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I originally modified the views to use templates/tuples, I found that creating a tuple can be a costly operation (this is why views have validData and invalidData containers). With the new approach proposed here, it looks like a tuple would be created whenever data is requested from a view. Have you benchmarked the runtime performance before/after these changes to see if creating a tuple for every view query is slower? The each benchmark test is what I'd recommend using.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm now using the vector directly from the valid*Data containers to iterate over and call the callback function. Here are the results from the benchmark test

Before this PR
----------------------------------------------------------------------------------------------
Benchmark                                                    Time             CPU   Iterations
----------------------------------------------------------------------------------------------
EntityComponentManagerFixture/EachNoCache/0/0            0.001 ms        0.001 ms      1075511
EntityComponentManagerFixture/EachNoCache/0/200           1.78 ms         1.78 ms          395
EntityComponentManagerFixture/EachNoCache/0/400           3.73 ms         3.73 ms          188
EntityComponentManagerFixture/EachNoCache/0/600           5.84 ms         5.84 ms          120
EntityComponentManagerFixture/EachNoCache/0/800           8.09 ms         8.09 ms           88
EntityComponentManagerFixture/EachNoCache/0/1000          10.3 ms         10.3 ms           68
EntityComponentManagerFixture/EachNoCache/200/0           3.96 ms         3.96 ms          177
EntityComponentManagerFixture/EachNoCache/200/200         6.07 ms         6.07 ms          116
EntityComponentManagerFixture/EachNoCache/200/400         8.45 ms         8.45 ms           84
EntityComponentManagerFixture/EachNoCache/200/600         10.7 ms         10.7 ms           66
EntityComponentManagerFixture/EachNoCache/200/800         12.9 ms         12.9 ms           54
EntityComponentManagerFixture/EachNoCache/200/1000        15.1 ms         15.1 ms           46
EntityComponentManagerFixture/EachNoCache/400/0           8.53 ms         8.53 ms           83
EntityComponentManagerFixture/EachNoCache/400/200         10.7 ms         10.7 ms           65
EntityComponentManagerFixture/EachNoCache/400/400         12.8 ms         12.8 ms           55
EntityComponentManagerFixture/EachNoCache/400/600         14.9 ms         14.9 ms           44
EntityComponentManagerFixture/EachNoCache/400/800         17.7 ms         17.7 ms           41
EntityComponentManagerFixture/EachNoCache/400/1000        19.7 ms         19.7 ms           36
EntityComponentManagerFixture/EachNoCache/600/0           12.9 ms         12.9 ms           53
EntityComponentManagerFixture/EachNoCache/600/200         15.1 ms         15.1 ms           46
EntityComponentManagerFixture/EachNoCache/600/400         17.3 ms         17.3 ms           41
EntityComponentManagerFixture/EachNoCache/600/600         19.6 ms         19.6 ms           36
EntityComponentManagerFixture/EachNoCache/600/800         22.2 ms         22.1 ms           32
EntityComponentManagerFixture/EachNoCache/600/1000        24.1 ms         24.1 ms           29
EntityComponentManagerFixture/EachNoCache/800/0           17.3 ms         17.3 ms           40
EntityComponentManagerFixture/EachNoCache/800/200         19.6 ms         19.6 ms           36
EntityComponentManagerFixture/EachNoCache/800/400         21.7 ms         21.7 ms           32
EntityComponentManagerFixture/EachNoCache/800/600         24.1 ms         24.1 ms           29
EntityComponentManagerFixture/EachNoCache/800/800         26.2 ms         26.2 ms           27
EntityComponentManagerFixture/EachNoCache/800/1000        28.4 ms         28.4 ms           25
EntityComponentManagerFixture/EachNoCache/1000/0          22.1 ms         22.1 ms           32
EntityComponentManagerFixture/EachNoCache/1000/200        23.9 ms         23.9 ms           29
EntityComponentManagerFixture/EachNoCache/1000/400        26.4 ms         26.4 ms           27
EntityComponentManagerFixture/EachNoCache/1000/600        28.4 ms         28.4 ms           25
EntityComponentManagerFixture/EachNoCache/1000/800        30.9 ms         30.9 ms           23
EntityComponentManagerFixture/EachNoCache/1000/1000       33.2 ms         33.2 ms           21
EntityComponentManagerFixture/EachCache/0/0              0.005 ms        0.005 ms       144311
EntityComponentManagerFixture/EachCache/0/200            0.005 ms        0.005 ms       143824
EntityComponentManagerFixture/EachCache/0/400            0.005 ms        0.005 ms       143736
EntityComponentManagerFixture/EachCache/0/600            0.005 ms        0.005 ms       143982
EntityComponentManagerFixture/EachCache/0/800            0.005 ms        0.005 ms       138543
EntityComponentManagerFixture/EachCache/0/1000           0.005 ms        0.005 ms       143255
EntityComponentManagerFixture/EachCache/200/0            0.222 ms        0.222 ms         3150
EntityComponentManagerFixture/EachCache/200/200          0.223 ms        0.223 ms         3120
EntityComponentManagerFixture/EachCache/200/400          0.223 ms        0.223 ms         3133
EntityComponentManagerFixture/EachCache/200/600          0.222 ms        0.222 ms         3144
EntityComponentManagerFixture/EachCache/200/800          0.222 ms        0.222 ms         3095
EntityComponentManagerFixture/EachCache/200/1000         0.223 ms        0.223 ms         3131
EntityComponentManagerFixture/EachCache/400/0            0.440 ms        0.440 ms         1576
EntityComponentManagerFixture/EachCache/400/200          0.439 ms        0.439 ms         1605
EntityComponentManagerFixture/EachCache/400/400          0.435 ms        0.435 ms         1610
EntityComponentManagerFixture/EachCache/400/600          0.435 ms        0.435 ms         1600
EntityComponentManagerFixture/EachCache/400/800          0.438 ms        0.438 ms         1585
EntityComponentManagerFixture/EachCache/400/1000         0.436 ms        0.436 ms         1605
EntityComponentManagerFixture/EachCache/600/0            0.653 ms        0.653 ms         1030
EntityComponentManagerFixture/EachCache/600/200          0.651 ms        0.651 ms         1078
EntityComponentManagerFixture/EachCache/600/400          0.646 ms        0.646 ms         1074
EntityComponentManagerFixture/EachCache/600/600          0.648 ms        0.648 ms         1074
EntityComponentManagerFixture/EachCache/600/800          0.654 ms        0.654 ms         1076
EntityComponentManagerFixture/EachCache/600/1000         0.649 ms        0.649 ms         1079
EntityComponentManagerFixture/EachCache/800/0            0.887 ms        0.887 ms          805
EntityComponentManagerFixture/EachCache/800/200          0.865 ms        0.865 ms          803
EntityComponentManagerFixture/EachCache/800/400          0.864 ms        0.864 ms          810
EntityComponentManagerFixture/EachCache/800/600          0.862 ms        0.862 ms          809
EntityComponentManagerFixture/EachCache/800/800          0.896 ms        0.896 ms          809
EntityComponentManagerFixture/EachCache/800/1000         0.863 ms        0.863 ms          803
EntityComponentManagerFixture/EachCache/1000/0            1.09 ms         1.09 ms          637
EntityComponentManagerFixture/EachCache/1000/200          1.09 ms         1.09 ms          650
EntityComponentManagerFixture/EachCache/1000/400          1.07 ms         1.07 ms          636
EntityComponentManagerFixture/EachCache/1000/600          1.08 ms         1.08 ms          646
EntityComponentManagerFixture/EachCache/1000/800          1.08 ms         1.08 ms          643
EntityComponentManagerFixture/EachCache/1000/1000         1.08 ms         1.08 ms          647
ManyComponentFixture/Each1ComponentNoCache/10            0.101 ms        0.101 ms         6865
ManyComponentFixture/Each1ComponentNoCache/100            1.14 ms         1.14 ms          624
ManyComponentFixture/Each1ComponentNoCache/1000           14.5 ms         14.5 ms           48
ManyComponentFixture/Each1ComponentCache/10              0.014 ms        0.014 ms        49822
ManyComponentFixture/Each1ComponentCache/100             0.104 ms        0.104 ms         6821
ManyComponentFixture/Each1ComponentCache/1000             1.02 ms         1.02 ms          701
ManyComponentFixture/Each5ComponentNoCache/10            0.378 ms        0.378 ms         1858
ManyComponentFixture/Each5ComponentNoCache/100            3.95 ms         3.95 ms          176
ManyComponentFixture/Each5ComponentNoCache/1000           43.9 ms         43.9 ms           16
ManyComponentFixture/Each5ComponentCache/10              0.016 ms        0.016 ms        42067
ManyComponentFixture/Each5ComponentCache/100             0.128 ms        0.128 ms         5487
ManyComponentFixture/Each5ComponentCache/1000             1.20 ms         1.20 ms          585
ManyComponentFixture/Each10ComponentNoCache/10           0.752 ms        0.752 ms          936
ManyComponentFixture/Each10ComponentNoCache/100           7.62 ms         7.62 ms           92
ManyComponentFixture/Each10ComponentNoCache/1000          78.9 ms         78.9 ms            9
ManyComponentFixture/Each10ComponentCache/10             0.019 ms        0.019 ms        37369
ManyComponentFixture/Each10ComponentCache/100            0.150 ms        0.150 ms         4750
ManyComponentFixture/Each10ComponentCache/1000            1.55 ms         1.55 ms          467
After this PR
----------------------------------------------------------------------------------------------
Benchmark                                                    Time             CPU   Iterations
----------------------------------------------------------------------------------------------
EntityComponentManagerFixture/EachNoCache/0/0            0.001 ms        0.001 ms      1040301
EntityComponentManagerFixture/EachNoCache/0/200           1.81 ms         1.81 ms          396
EntityComponentManagerFixture/EachNoCache/0/400           3.69 ms         3.69 ms          187
EntityComponentManagerFixture/EachNoCache/0/600           5.79 ms         5.79 ms          121
EntityComponentManagerFixture/EachNoCache/0/800           8.13 ms         8.13 ms           87
EntityComponentManagerFixture/EachNoCache/0/1000          10.8 ms         10.8 ms           64
EntityComponentManagerFixture/EachNoCache/200/0           3.90 ms         3.90 ms          181
EntityComponentManagerFixture/EachNoCache/200/200         6.00 ms         6.00 ms          119
EntityComponentManagerFixture/EachNoCache/200/400         8.47 ms         8.47 ms           80
EntityComponentManagerFixture/EachNoCache/200/600         10.8 ms         10.8 ms           65
EntityComponentManagerFixture/EachNoCache/200/800         12.9 ms         12.9 ms           53
EntityComponentManagerFixture/EachNoCache/200/1000        15.4 ms         15.4 ms           46
EntityComponentManagerFixture/EachNoCache/400/0           8.44 ms         8.44 ms           84
EntityComponentManagerFixture/EachNoCache/400/200         10.7 ms         10.7 ms           66
EntityComponentManagerFixture/EachNoCache/400/400         12.9 ms         12.9 ms           54
EntityComponentManagerFixture/EachNoCache/400/600         15.1 ms         15.1 ms           46
EntityComponentManagerFixture/EachNoCache/400/800         17.4 ms         17.4 ms           40
EntityComponentManagerFixture/EachNoCache/400/1000        20.0 ms         20.0 ms           35
EntityComponentManagerFixture/EachNoCache/600/0           13.0 ms         13.0 ms           53
EntityComponentManagerFixture/EachNoCache/600/200         15.4 ms         15.4 ms           46
EntityComponentManagerFixture/EachNoCache/600/400         17.2 ms         17.2 ms           41
EntityComponentManagerFixture/EachNoCache/600/600         19.9 ms         19.9 ms           36
EntityComponentManagerFixture/EachNoCache/600/800         22.1 ms         22.1 ms           32
EntityComponentManagerFixture/EachNoCache/600/1000        24.5 ms         24.5 ms           29
EntityComponentManagerFixture/EachNoCache/800/0           17.3 ms         17.3 ms           40
EntityComponentManagerFixture/EachNoCache/800/200         19.6 ms         19.6 ms           35
EntityComponentManagerFixture/EachNoCache/800/400         22.0 ms         22.0 ms           32
EntityComponentManagerFixture/EachNoCache/800/600         24.1 ms         24.1 ms           29
EntityComponentManagerFixture/EachNoCache/800/800         26.3 ms         26.3 ms           26
EntityComponentManagerFixture/EachNoCache/800/1000        28.5 ms         28.5 ms           24
EntityComponentManagerFixture/EachNoCache/1000/0          22.0 ms         22.0 ms           32
EntityComponentManagerFixture/EachNoCache/1000/200        24.2 ms         24.2 ms           29
EntityComponentManagerFixture/EachNoCache/1000/400        26.3 ms         26.3 ms           27
EntityComponentManagerFixture/EachNoCache/1000/600        28.7 ms         28.7 ms           24
EntityComponentManagerFixture/EachNoCache/1000/800        31.3 ms         31.3 ms           23
EntityComponentManagerFixture/EachNoCache/1000/1000       34.1 ms         34.0 ms           21
EntityComponentManagerFixture/EachCache/0/0              0.005 ms        0.005 ms       151133
EntityComponentManagerFixture/EachCache/0/200            0.005 ms        0.005 ms       151637
EntityComponentManagerFixture/EachCache/0/400            0.005 ms        0.005 ms       150618
EntityComponentManagerFixture/EachCache/0/600            0.005 ms        0.005 ms       153585
EntityComponentManagerFixture/EachCache/0/800            0.005 ms        0.005 ms       154180
EntityComponentManagerFixture/EachCache/0/1000           0.005 ms        0.005 ms       153978
EntityComponentManagerFixture/EachCache/200/0            0.234 ms        0.234 ms         2960
EntityComponentManagerFixture/EachCache/200/200          0.231 ms        0.231 ms         3024
EntityComponentManagerFixture/EachCache/200/400          0.231 ms        0.231 ms         3024
EntityComponentManagerFixture/EachCache/200/600          0.231 ms        0.231 ms         3031
EntityComponentManagerFixture/EachCache/200/800          0.231 ms        0.231 ms         3040
EntityComponentManagerFixture/EachCache/200/1000         0.233 ms        0.233 ms         3041
EntityComponentManagerFixture/EachCache/400/0            0.458 ms        0.458 ms         1520
EntityComponentManagerFixture/EachCache/400/200          0.453 ms        0.453 ms         1531
EntityComponentManagerFixture/EachCache/400/400          0.454 ms        0.454 ms         1536
EntityComponentManagerFixture/EachCache/400/600          0.453 ms        0.453 ms         1543
EntityComponentManagerFixture/EachCache/400/800          0.458 ms        0.458 ms         1542
EntityComponentManagerFixture/EachCache/400/1000         0.459 ms        0.459 ms         1533
EntityComponentManagerFixture/EachCache/600/0            0.704 ms        0.703 ms          986
EntityComponentManagerFixture/EachCache/600/200          0.697 ms        0.697 ms          988
EntityComponentManagerFixture/EachCache/600/400          0.679 ms        0.679 ms         1025
EntityComponentManagerFixture/EachCache/600/600          0.696 ms        0.696 ms          996
EntityComponentManagerFixture/EachCache/600/800          0.701 ms        0.701 ms          986
EntityComponentManagerFixture/EachCache/600/1000         0.693 ms        0.693 ms         1007
EntityComponentManagerFixture/EachCache/800/0            0.957 ms        0.957 ms          719
EntityComponentManagerFixture/EachCache/800/200          0.954 ms        0.954 ms          736
EntityComponentManagerFixture/EachCache/800/400          0.948 ms        0.948 ms          720
EntityComponentManagerFixture/EachCache/800/600          0.945 ms        0.945 ms          721
EntityComponentManagerFixture/EachCache/800/800          0.946 ms        0.946 ms          735
EntityComponentManagerFixture/EachCache/800/1000         0.920 ms        0.920 ms          752
EntityComponentManagerFixture/EachCache/1000/0            1.18 ms         1.18 ms          589
EntityComponentManagerFixture/EachCache/1000/200          1.22 ms         1.22 ms          554
EntityComponentManagerFixture/EachCache/1000/400          1.20 ms         1.20 ms          587
EntityComponentManagerFixture/EachCache/1000/600          1.16 ms         1.16 ms          589
EntityComponentManagerFixture/EachCache/1000/800          1.16 ms         1.16 ms          590
EntityComponentManagerFixture/EachCache/1000/1000         1.22 ms         1.22 ms          590
ManyComponentFixture/Each1ComponentNoCache/10            0.103 ms        0.103 ms         6814
ManyComponentFixture/Each1ComponentNoCache/100            1.19 ms         1.19 ms          580
ManyComponentFixture/Each1ComponentNoCache/1000           14.8 ms         14.8 ms           49
ManyComponentFixture/Each1ComponentCache/10              0.015 ms        0.015 ms        45421
ManyComponentFixture/Each1ComponentCache/100             0.126 ms        0.126 ms         5534
ManyComponentFixture/Each1ComponentCache/1000             1.19 ms         1.19 ms          577
ManyComponentFixture/Each5ComponentNoCache/10            0.377 ms        0.377 ms         1859
ManyComponentFixture/Each5ComponentNoCache/100            3.96 ms         3.96 ms          176
ManyComponentFixture/Each5ComponentNoCache/1000           43.9 ms         43.9 ms           16
ManyComponentFixture/Each5ComponentCache/10              0.016 ms        0.016 ms        43498
ManyComponentFixture/Each5ComponentCache/100             0.128 ms        0.128 ms         5441
ManyComponentFixture/Each5ComponentCache/1000             1.33 ms         1.33 ms          529
ManyComponentFixture/Each10ComponentNoCache/10           0.746 ms        0.746 ms          934
ManyComponentFixture/Each10ComponentNoCache/100           7.76 ms         7.76 ms           91
ManyComponentFixture/Each10ComponentNoCache/1000          79.7 ms         79.7 ms            9
ManyComponentFixture/Each10ComponentCache/10             0.019 ms        0.019 ms        37911
ManyComponentFixture/Each10ComponentCache/100            0.147 ms        0.147 ms         4748
ManyComponentFixture/Each10ComponentCache/1000            1.54 ms         1.54 ms          458

While running the benchmark in valgrind, I noticed that the cache misses were an issue, so I tried changing entities from a std::set to a std::vector and I got less cache misses and a modest speedup. I think it's worth making the change, so I'll open a follow up PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, the before/after numbers look good! Have you opened a follow-up PR yet with the std::vector change, or will that be done after this is merged?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm planning to do that once this is merged.

include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
src/View.cc Outdated Show resolved Hide resolved
@azeey azeey marked this pull request as ready for review March 9, 2022 21:21
@azeey azeey changed the title Potential fix for ECM segfault at exit Fix segfault at exit Mar 9, 2022
Signed-off-by: Addisu Z. Taddese <[email protected]>
@adlarkin
Copy link
Contributor

@azeey, I still need to review your most recent updates, but I wanted to point out that I found another way to resolve this issue that doesn't require re-writing the View class. This other approach is more of a "hack" that would technically result in a memory leak for downstream users of the EntityComponentManager class who destroy the ECM and then still continue to run their program. However, for the ign-gazebo use case, we only destroy the ECM when simulation shuts down, so I think this could be a potential solution for now while we continue to iterate on the approach you have proposed in this PR (we will need to figure out what to do about ABI with the approach in this PR). Here is the workaround approach I created if you want to take a look: 529bde9

azeey added 2 commits March 16, 2022 22:59
There seems to be a race condition that causes the test to hang when CPU
usage is high. This seems to be the issue on Github Actions, so,
we run the Gui_clean_exit_TEST only on Jenkins.

Signed-off-by: Addisu Z. Taddese <[email protected]>
@azeey azeey force-pushed the nontemplate_views branch from b3da340 to 6aa3691 Compare March 17, 2022 04:34
@azeey
Copy link
Contributor Author

azeey commented Mar 17, 2022

@adlarkin I believe I've resolved the ABI issue. If everything else is looks good, I think this is ready to go.

Note: I added a death test on the GUI, but it only works on Linux. It fails when the CPU load is high, which I verified locally. I think it's some kind of race condition. So I've also disabled it on Github Actions. @chapulina Is this okay?

@azeey
Copy link
Contributor Author

azeey commented Mar 17, 2022

The ABI checker failed due to an infrastructure issue.

@osrf-jenkins retest this please

src/BaseView_TEST.cc Show resolved Hide resolved
src/BaseView_TEST.cc Show resolved Hide resolved
src/BaseView_TEST.cc Show resolved Hide resolved
{
ignwarn << "Non-const component data is cached for entity " << _entity
<< ", but const component data is not cached." << std::endl;
return std::make_tuple(static_cast<Args>(_args[Is])...);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, the before/after numbers look good! Have you opened a follow-up PR yet with the std::vector change, or will that be done after this is merged?

Copy link
Contributor

@adlarkin adlarkin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a few final comments, but this looks great! Thanks for making these changes and fixing the crash on exit!

Also, it looks like my review got broken up into two separate reviews. I'm not sure how that happened, but just so you're aware, there are a few review comments above this one as well.

include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
include/ignition/gazebo/detail/View.hh Outdated Show resolved Hide resolved
src/gui/Gui_clean_exit_TEST.cc Show resolved Hide resolved
include/ignition/gazebo/detail/EntityComponentManager.hh Outdated Show resolved Hide resolved
@azeey
Copy link
Contributor Author

azeey commented Apr 5, 2022

All CI failures exist in the stable CI jobs, so I'll go ahead and merge.

@azeey azeey merged commit 031e334 into gazebosim:ign-gazebo6 Apr 5, 2022
@azeey azeey deleted the nontemplate_views branch April 5, 2022 20:26
azeey added a commit to azeey/gz-sim that referenced this pull request Apr 12, 2022
As discussed in gazebosim#1158, a segfault occurs during exit because Views created as a result of an ECM query by plugins have their destructors stored in the shared library of the plugin. For GUI plugins, the plugins are unloaded from memory before the ECM is destructed, so when it's time to destruct the Views, a segfault occurs because the pointer to the virtual destructor is invalid. This PR is fixes the problem by making View a regular class instead of a template. This ensures that the destructor of View is stored in the core library of ignition-gazebo. As a result, the ECM can be destructed after GUI plugins have been unloaded.

Signed-off-by: Addisu Z. Taddese <[email protected]>

Co-authored-by: Michael Carroll <[email protected]>
Co-authored-by: Ashton Larkin <[email protected]>
Signed-off-by: Addisu Z. Taddese <[email protected]>
azeey added a commit to azeey/gz-sim that referenced this pull request Apr 12, 2022
As discussed in gazebosim#1158, a segfault occurs during exit because Views created as a result of an ECM query by plugins have their destructors stored in the shared library of the plugin. For GUI plugins, the plugins are unloaded from memory before the ECM is destructed, so when it's time to destruct the Views, a segfault occurs because the pointer to the virtual destructor is invalid. This PR is fixes the problem by making View a regular class instead of a template. This ensures that the destructor of View is stored in the core library of ignition-gazebo. As a result, the ECM can be destructed after GUI plugins have been unloaded.

Signed-off-by: Addisu Z. Taddese <[email protected]>

Co-authored-by: Michael Carroll <[email protected]>
Co-authored-by: Ashton Larkin <[email protected]>
Signed-off-by: Addisu Z. Taddese <[email protected]>
chapulina pushed a commit that referenced this pull request Apr 13, 2022
As discussed in #1158, a segfault occurs during exit because Views created as a result of an ECM query by plugins have their destructors stored in the shared library of the plugin. For GUI plugins, the plugins are unloaded from memory before the ECM is destructed, so when it's time to destruct the Views, a segfault occurs because the pointer to the virtual destructor is invalid. This PR is fixes the problem by making View a regular class instead of a template. This ensures that the destructor of View is stored in the core library of ignition-gazebo. As a result, the ECM can be destructed after GUI plugins have been unloaded.

Signed-off-by: Addisu Z. Taddese <[email protected]>

Co-authored-by: Michael Carroll <[email protected]>
Co-authored-by: Ashton Larkin <[email protected]>
Signed-off-by: Addisu Z. Taddese <[email protected]>

Co-authored-by: Michael Carroll <[email protected]>
Co-authored-by: Ashton Larkin <[email protected]>
@osrf-triage
Copy link

This pull request has been mentioned on Gazebo Community. There might be relevant details there:

https://community.gazebosim.org/t/new-releases-2022-04-27-fortress-citadel/1389/1

@j-rivero j-rivero mentioned this pull request Sep 16, 2022
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏯 fortress Ignition Fortress
Projects
None yet
Development

Successfully merging this pull request may close these issues.

EntityByComponents causes a crash on exit
5 participants