bitwarden / server

Bitwarden infrastructure/backend (API, database, Docker, etc).
https://bitwarden.com
Other
15.49k stars 1.31k forks source link

License error in Identity build #1198

Closed mikibakaiki closed 3 years ago

mikibakaiki commented 3 years ago

Hi everyone. I'm trying to run the server locally, but I can't seem to run successfully the src/Identity.

I've followed everything in the CONTRIBUTING.md (I think!) and no success.

This issue illustrates my problem but I'm not sure about the solution. I asked there, but since it's a closed issue, i thought no one would ever see it.

Basically, is there any other folder that i should create?

I've got this for the secrets.json of both Api and Identity projects:

{
  "globalSettings": {
    "selfHosted": true,
    "identityServer": {
      "certificateThumbprint": "<various pairs of characters, separated by spaces>"
    },
    "dataProtection": {
      "certificateThumbprint": "<various pairs of characters, separated by spaces>"
    },
    "installation": {
      "id": "<some_id>",
      "key": "<some_key>"
    },
    "licenseDirectory": "/Users/mikibakaiki/github/bitwarden/random_empty/",
    "sqlServer": {
      "connectionString": "Data Source=localhost,1433;Initial Catalog=vault;Persist Security Info=False;User ID=sa;Password=<password>;MultipleActiveResultSets=False;Connect Timeout=30;Encrypt=True;TrustServerCertificate=True"
    }
  }
}

What am i missing?

Should the thumbprints be separated by spaces, like: XX XX XX XX or everything together, like: XXXXXXXX ?

The license directory is an arbitrarily empty folder

Thanks for the help :)

cscharf commented 3 years ago

Thumbprints should not have spaces, so I would try that. Are you seeing any other errors in your debug output/console when running/debugging?

mikibakaiki commented 3 years ago

Thanks for the reply! I suspected that the thumbprints shouldn't have spaces, but it's not a problem for the Apiproject, so I kinda ignored it. I changed it now and I still got the same problem, here it is:

Time Elapsed 00:00:01.98
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]
      User profile is available. Using '/Users/mikibakaiki/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
info: IdentityServer4.Startup[0]
      Starting IdentityServer4 version 4.0.4+1b36d1b414f4e0f965af97ab2a7e9dd1b5167bca
crit: Microsoft.AspNetCore.Hosting.Diagnostics[6]
      Application startup exception
System.Exception: Invalid licensing certificate.
   at Bit.Core.Services.LicensingService..ctor(IUserRepository userRepository, IOrganizationRepository organizationRepository, IOrganizationUserRepository organizationUserRepository, IMailService mailService, IWebHostEnvironment environment, ILogger`1 logger, GlobalSettings globalSettings) in /Users/mikibakaiki/github/bitwarden/passcert_server/src/Core/Services/Implementations/LicensingService.cs:line 75
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitCache(ServiceCallSite callSite, RuntimeResolverContext context, ServiceProviderEngineScope serviceProviderEngine, RuntimeResolverLock lockType)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitRootCache(ServiceCallSite singletonCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass1_0.<RealizeService>b__0(ServiceProviderEngineScope scope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngine.GetService(Type serviceType, ServiceProviderEngineScope serviceProviderEngineScope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType)
   at Microsoft.AspNetCore.Builder.IdentityServerApplicationBuilderExtensions.TestService(IServiceProvider serviceProvider, Type service, ILogger logger, String message, Boolean doThrow)
   at Microsoft.AspNetCore.Builder.IdentityServerApplicationBuilderExtensions.Validate(IApplicationBuilder app)
   at Microsoft.AspNetCore.Builder.IdentityServerApplicationBuilderExtensions.UseIdentityServer(IApplicationBuilder app, IdentityServerMiddlewareOptions options)
   at Bit.Identity.Startup.Configure(IApplicationBuilder app, IWebHostEnvironment env, IHostApplicationLifetime appLifetime, GlobalSettings globalSettings, ILogger`1 logger) in /Users/mikibakaiki/github/bitwarden/passcert_server/src/Identity/Startup.cs:line 201
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at Microsoft.AspNetCore.Hosting.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
   at Microsoft.AspNetCore.Hosting.ConfigureBuilder.<>c__DisplayClass4_0.<Build>b__0(IApplicationBuilder builder)
   at Microsoft.AspNetCore.Hosting.GenericWebHostBuilder.<>c__DisplayClass13_0.<UseStartup>b__2(IApplicationBuilder app)
   at Microsoft.AspNetCore.Mvc.Filters.MiddlewareFilterBuilderStartupFilter.<>c__DisplayClass0_0.<Configure>g__MiddlewareFilterBuilder|0(IApplicationBuilder builder)
   at Microsoft.AspNetCore.HostFilteringStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder app)
   at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken cancellationToken)
Unhandled exception. System.Exception: Invalid licensing certificate.
   at Bit.Core.Services.LicensingService..ctor(IUserRepository userRepository, IOrganizationRepository organizationRepository, IOrganizationUserRepository organizationUserRepository, IMailService mailService, IWebHostEnvironment environment, ILogger`1 logger, GlobalSettings globalSettings) in /Users/mikibakaiki/github/bitwarden/passcert_server/src/Core/Services/Implementations/LicensingService.cs:line 75
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitCache(ServiceCallSite callSite, RuntimeResolverContext context, ServiceProviderEngineScope serviceProviderEngine, RuntimeResolverLock lockType)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitRootCache(ServiceCallSite singletonCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSiteMain(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2.VisitCallSite(ServiceCallSite callSite, TArgument argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.DynamicServiceProviderEngine.<>c__DisplayClass1_0.<RealizeService>b__0(ServiceProviderEngineScope scope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngine.GetService(Type serviceType, ServiceProviderEngineScope serviceProviderEngineScope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType)
   at Microsoft.AspNetCore.Builder.IdentityServerApplicationBuilderExtensions.TestService(IServiceProvider serviceProvider, Type service, ILogger logger, String message, Boolean doThrow)
   at Microsoft.AspNetCore.Builder.IdentityServerApplicationBuilderExtensions.Validate(IApplicationBuilder app)
   at Microsoft.AspNetCore.Builder.IdentityServerApplicationBuilderExtensions.UseIdentityServer(IApplicationBuilder app, IdentityServerMiddlewareOptions options)
   at Bit.Identity.Startup.Configure(IApplicationBuilder app, IWebHostEnvironment env, IHostApplicationLifetime appLifetime, GlobalSettings globalSettings, ILogger`1 logger) in /Users/mikibakaiki/github/bitwarden/passcert_server/src/Identity/Startup.cs:line 201
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor, Boolean wrapExceptions)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at Microsoft.AspNetCore.Hosting.ConfigureBuilder.Invoke(Object instance, IApplicationBuilder builder)
   at Microsoft.AspNetCore.Hosting.ConfigureBuilder.<>c__DisplayClass4_0.<Build>b__0(IApplicationBuilder builder)
   at Microsoft.AspNetCore.Hosting.GenericWebHostBuilder.<>c__DisplayClass13_0.<UseStartup>b__2(IApplicationBuilder app)
   at Microsoft.AspNetCore.Mvc.Filters.MiddlewareFilterBuilderStartupFilter.<>c__DisplayClass0_0.<Configure>g__MiddlewareFilterBuilder|0(IApplicationBuilder builder)
   at Microsoft.AspNetCore.HostFilteringStartupFilter.<>c__DisplayClass0_0.<Configure>b__0(IApplicationBuilder app)
   at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken cancellationToken)
   at Microsoft.Extensions.Hosting.Internal.Host.StartAsync(CancellationToken cancellationToken)
   at Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.RunAsync(IHost host, CancellationToken token)
   at Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.RunAsync(IHost host, CancellationToken token)
   at Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Run(IHost host)
   at Bit.Identity.Program.Main(String[] args) in /Users/mikibakaiki/github/bitwarden/passcert_server/src/Identity/Program.cs:line 13

Currently I've got the browser extension running, mssql running in docker and API running as well... only the Identity seems to be problematic

mikibakaiki commented 3 years ago

Should i have a specific folder for the certificates and keys??

mikibakaiki commented 3 years ago

Should the empty folder be in a specific path?

cscharf commented 3 years ago

What OS are you developing on? I'm using macOS and have them in my keychain. I imagine in Windows your Personal "My" store in mmc --> Certificates (local) is probably appropriate.

mikibakaiki commented 3 years ago

I'm also on macOS! i got them in keychain as well... :/ and the certificates are marked as trusted for all users, as suggested in the guide.

So, I'll try to get some more info here:

both appsettings.json are @ ~/.microsoft/usersecrets/bitwarden-Identity and ~/.microsoft/usersecrets/bitwarden-Api respectively.

They both contain the settings posted above.

Running the command dotnet restore; dotnet build; dotnet run; @ src/Api yields:

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:01.86
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]
      User profile is available. Using '/Users/mikibakaiki/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
info: Bit.Api.Startup[12482444]
      Api started.
info: Microsoft.Hosting.Lifetime[0]
      Now listening on: http://localhost:4000
info: Microsoft.Hosting.Lifetime[0]
      Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
      Hosting environment: Development
info: Microsoft.Hosting.Lifetime[0]
      Content root path: /Users/mikibakaiki/github/bitwarden/passcert_server/src/Api

running the same command @ src/Identity yields the error posted above.

In the folder ~/.aspnet/DataProtection-Keys I only have one key... should I have two or none?

EDIT: Seems like this key in ~/.aspnet/DataProtection-Keys is generated once you tun the command dotnet run

cscharf commented 3 years ago

I have something very similar:

Identity me$ dotnet run
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]
      User profile is available. Using '/Users/me/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
info: IdentityServer4.Startup[0]
      Starting IdentityServer4 version 4.0.4+1b36d1b414f4e0f965af97ab2a7e9dd1b5167bca
info: IdentityServer4.Startup[0]
      Using the default authentication scheme idsrv for IdentityServer
info: Bit.Identity.Startup[12482444]
      Identity started.
info: Microsoft.Hosting.Lifetime[0]
      Now listening on: http://localhost:33656
info: Microsoft.Hosting.Lifetime[0]
      Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
      Hosting environment: Development
info: Microsoft.Hosting.Lifetime[0]
      Content root path: /Users/me/source/bitwarden/server/src/Identity

Is it just not working for you? The host is running even with that warning, so I'm not sure there's a real issue there unless you're getting other errors/issues during runtime, which should also print out to the console when testing against the Identity with a client. Also be sure you spin up Identity first, then API once Identity is running.

mikibakaiki commented 3 years ago

i tried running dotnet clean and then running first identity and then the API... but the identity just crashes... it shows the error, then I get a pop up saying that don't core crashed, and if i want to report it ... :(

the last commit i have in my fork is this

I think i tried everything and i still can't do it 😭

This is the pop-up:

Screen Shot 2021-03-10 at 18 57 14

dotnet --version -> 5.0.103

cscharf commented 3 years ago

If you click "Report..." button, does it give you the details of what you would be reporting (crash report), or something you can pull out of console in macOS? That would probably be helpful.

mikibakaiki commented 3 years ago
Process:               dotnet [23852]
Path:                  /usr/local/share/dotnet/dotnet
Identifier:            dotnet
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        dotnet [23847]
Responsible:           iTerm2 [21480]
User ID:               501

Date/Time:             2021-03-10 19:13:50.294 +0000
OS Version:            macOS 11.2.3 (20D91)
Report Version:        12
Bridge OS Version:     5.2 (18P4347)
Anonymous UUID:        5A4C6CA2-BAB2-4C93-E314-B55CF529CE07

Sleep/Wake UUID:       342A8483-FCFC-47E8-AA92-F7637C08F7B2

Time Awake Since Boot: 19000 seconds
Time Since Wake:       1400 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

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

Thread 1:
0   libsystem_kernel.dylib          0x00007fff205f7e7e mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff205f81f0 mach_msg + 60
2   libcoreclr.dylib                0x0000000108d77518 MachMessage::Receive(unsigned int) + 72
3   libcoreclr.dylib                0x0000000108d7645e SEHExceptionThread(void*) + 94
4   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
5   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 2:
0   libsystem_kernel.dylib          0x00007fff205fe4fe poll + 10
1   libcoreclr.dylib                0x0000000108d68ace CorUnix::CPalSynchronizationManager::ThreadPrepareForShutdown() + 30
2   libcoreclr.dylib                0x0000000108d6a6c5 CorUnix::CPalSynchronizationManager::WorkerThread(void*) + 949
3   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
4   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
5   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 3:
0   libsystem_kernel.dylib          0x00007fff205f871a __open + 10
1   libsystem_kernel.dylib          0x00007fff20600b42 open + 209
2   libcoreclr.dylib                0x0000000108deb8bf TwoWayPipe::WaitForConnection() + 31
3   libcoreclr.dylib                0x0000000108de2847 DbgTransportSession::TransportWorker() + 167
4   libcoreclr.dylib                0x0000000108de12a9 DbgTransportSession::TransportWorkerStatic(void*) + 9
5   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
6   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
7   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 4:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d162 WaitForMultipleObjectsEx + 82
6   libcoreclr.dylib                0x0000000108ddf538 DebuggerRCThread::MainLoop() + 248
7   libcoreclr.dylib                0x0000000108ddf3dc DebuggerRCThread::ThreadProc() + 284
8   libcoreclr.dylib                0x0000000108ddf0f3 DebuggerRCThread::ThreadProcStatic(void*) + 131
9   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
10  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
11  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 5:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b63 SVR::gc_heap::gc_thread_function() + 179
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 6:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 7:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 8:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 9:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 10:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 11:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 12:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687fb CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000109072b31 SVR::gc_heap::gc_thread_function() + 129
8   libcoreclr.dylib                0x0000000109072aa6 SVR::gc_heap::gc_thread_stub(void*) + 54
9   libcoreclr.dylib                0x0000000108f918d2 (anonymous namespace)::CreateNonSuspendableThread(void (*)(void*), void*, char16_t const*)::$_1::__invoke(void*) + 178
10  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
11  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
12  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 13:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687de CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d09d WaitForSingleObjectEx + 77
6   libcoreclr.dylib                0x0000000109027899 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib                0x0000000108f8dfaf FinalizerThread::WaitForFinalizerEvent(CLREvent*) + 31
8   libcoreclr.dylib                0x0000000108f8e112 FinalizerThread::FinalizerThreadWorker(void*) + 98
9   libcoreclr.dylib                0x0000000108efc343 ManagedThreadBase_DispatchOuter(ManagedThreadCallState*) + 323
10  libcoreclr.dylib                0x0000000108efc990 ManagedThreadBase::FinalizerBase(void (*)(void*)) + 32
11  libcoreclr.dylib                0x0000000108f8e3e8 FinalizerThread::FinalizerThreadStart(void*) + 504
12  libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
13  libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
14  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 14:
0   libsystem_kernel.dylib          0x00007fff205fe4e6 __accept + 10
1   libcoreclr.dylib                0x0000000108deb61e IpcStream::DiagnosticsIpc::Accept(void (*)(char const*, unsigned int)) const + 62
2   libcoreclr.dylib                0x0000000108f69100 DiagnosticsServerThread(void*) + 288
3   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
4   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
5   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 15:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687de CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6d56d SleepEx + 141
5   libcoreclr.dylib                0x0000000108f234b2 ThreadpoolMgr::TimerThreadFire() + 146
6   libcoreclr.dylib                0x0000000108f23385 ThreadpoolMgr::TimerThreadStart(void*) + 181
7   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
8   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
9   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 16:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687de CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d048 PAL_WaitForSingleObjectPrioritized + 72
6   libcoreclr.dylib                0x0000000109027cb0 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7   libcoreclr.dylib                0x0000000108f2087e ThreadpoolMgr::WorkerThreadStart(void*) + 974
8   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
9   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
10  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 17:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687de CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6d56d SleepEx + 141
5   libcoreclr.dylib                0x0000000108f97d5f __SwitchToThread(unsigned int, unsigned int) + 15
6   libcoreclr.dylib                0x0000000108f22b4c ThreadpoolMgr::GateThreadStart(void*) + 188
7   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
8   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
9   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

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

Thread 19:
0   libsystem_pthread.dylib         0x00007fff20628458 start_wqthread + 0

Thread 20:
0   libsystem_kernel.dylib          0x00007fff205fa8e2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff2062ce6f _pthread_cond_wait + 1254
2   libcoreclr.dylib                0x0000000108d687de CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib                0x0000000108d68490 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib                0x0000000108d6ce7c CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 2028
5   libcoreclr.dylib                0x0000000108d6d048 PAL_WaitForSingleObjectPrioritized + 72
6   libcoreclr.dylib                0x0000000109027cb0 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7   libcoreclr.dylib                0x0000000108f2087e ThreadpoolMgr::WorkerThreadStart(void*) + 974
8   libcoreclr.dylib                0x0000000108d73d84 CorUnix::CPalThread::ThreadEntry(void*) + 436
9   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
10  libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 21:
0   libsystem_pthread.dylib         0x00007fff20628458 start_wqthread + 0

Thread 22:
0   libsystem_kernel.dylib          0x00007fff205f889e read + 10
1   System.Native.dylib             0x00000001098576df 0x10984f000 + 34527
2   libsystem_pthread.dylib         0x00007fff2062c950 _pthread_start + 224
3   libsystem_pthread.dylib         0x00007fff2062847b thread_start + 15

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x000000010f0a9e00  rcx: 0x00007ffee6fc9878  rdx: 0x0000000000000000
  rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x00007ffee6fc98a0  rsp: 0x00007ffee6fc9878
   r8: 0x0000000000044136   r9: 0xffffffff00000000  r10: 0x000000010f0a9e00  r11: 0x0000000000000246
  r12: 0x0000000000000307  r13: 0x00007ffee6fc9ee0  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff205fe462  rfl: 0x0000000000000246  cr2: 0x000070000f332ff8

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

Thread 0 instruction stream not available.

Thread 0 last branch register state not available.

Binary Images:
       0x108c34000 -        0x108c40fff +dotnet (0) <3741BCB4-F66C-34E5-99B5-5C8E70F3541C> /usr/local/share/dotnet/dotnet
       0x108c67000 -        0x108caefff +libhostfxr.dylib (0) <96ED2FD4-8A3F-3193-A91B-90686E84B126> /usr/local/share/dotnet/host/fxr/5.0.3/libhostfxr.dylib
       0x108cd6000 -        0x108d1afff +libhostpolicy.dylib (0) <FBC7738A-6C76-3F6A-A423-618952AB5A48> /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.13/libhostpolicy.dylib
       0x108d2c000 -        0x10928bfff +libcoreclr.dylib (0) <961A9335-3B4A-3DBE-8564-9A38418D5027> /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.13/libcoreclr.dylib
       0x10957f000 -        0x1097a4fff +libclrjit.dylib (0) <D9E83280-D3C8-39F7-9F1B-6A08DB4AE9EB> /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.13/libclrjit.dylib
       0x10984f000 -        0x109858fff +System.Native.dylib (0) <588954D5-F840-3435-8489-7765CE36B2F0> /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.13/System.Native.dylib
       0x109866000 -        0x10986efff +System.Globalization.Native.dylib (0) <A3F4E2B3-9124-3C1A-B59C-D14383495A32> /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.13/System.Globalization.Native.dylib
       0x10b8f2000 -        0x10b8f8fff +System.Security.Cryptography.Native.Apple.dylib (0) <E099F89A-8E25-3206-871E-35948D04D185> /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.13/System.Security.Cryptography.Native.Apple.dylib
       0x10ba78000 -        0x10ba8ffff  com.apple.security.csparser (3.0 - 59754.80.3) <8D71AEE8-A554-3169-8B49-69F5BC1B6C25> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
       0x10efd2000 -        0x10f06dfff  dyld (832.7.3) <0D4EA85F-7E30-338B-9215-314A5A5539B6> /usr/lib/dyld
    0x7fff20361000 -     0x7fff20362fff  libsystem_blocks.dylib (78) <E644CAA0-65B7-36E4-8041-520F3301F3DB> /usr/lib/system/libsystem_blocks.dylib
    0x7fff20363000 -     0x7fff20398fff  libxpc.dylib (2038.80.3) <70F26262-01AA-3CEC-9FAD-2701D24096F0> /usr/lib/system/libxpc.dylib
    0x7fff20399000 -     0x7fff203b0fff  libsystem_trace.dylib (1277.80.2) <87FEF600-48D9-31C9-B8FC-D5249B2AE95D> /usr/lib/system/libsystem_trace.dylib
    0x7fff203b1000 -     0x7fff20450fff  libcorecrypto.dylib (1000.80.5) <1EB11CFB-ABD7-36DD-97C7-C112A6601416> /usr/lib/system/libcorecrypto.dylib
    0x7fff20451000 -     0x7fff2047dfff  libsystem_malloc.dylib (317.40.8) <A498D1EF-E43D-310C-84E8-9C0AADA0C475> /usr/lib/system/libsystem_malloc.dylib
    0x7fff2047e000 -     0x7fff204c2fff  libdispatch.dylib (1271.40.12) <AD988EEA-1A2F-3404-9A6E-390FC2504223> /usr/lib/system/libdispatch.dylib
    0x7fff204c3000 -     0x7fff204fbfff  libobjc.A.dylib (818.2) <EB6B543F-D42C-3FB2-A2EC-43407C5F80D3> /usr/lib/libobjc.A.dylib
    0x7fff204fc000 -     0x7fff204fefff  libsystem_featureflags.dylib (28.60.1) <9CECB43A-094E-3CA9-B730-24DEA1A6DE05> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff204ff000 -     0x7fff20587fff  libsystem_c.dylib (1439.40.11) <4AF71812-4099-3E96-B271-1F259491A2B2> /usr/lib/system/libsystem_c.dylib
    0x7fff20588000 -     0x7fff205ddfff  libc++.1.dylib (904.4) <B217D905-4F9C-3DE0-8844-88FAA3C2C851> /usr/lib/libc++.1.dylib
    0x7fff205de000 -     0x7fff205f6fff  libc++abi.dylib (904.4) <3C9FE530-3CD2-3A64-8A36-70816AEBDF0D> /usr/lib/libc++abi.dylib
    0x7fff205f7000 -     0x7fff20625fff  libsystem_kernel.dylib (7195.81.3) <AB413518-ECDE-3F04-A61C-278D3CF43076> /usr/lib/system/libsystem_kernel.dylib
    0x7fff20626000 -     0x7fff20631fff  libsystem_pthread.dylib (454.80.2) <B989DF6C-ADFE-3AF9-9C91-07D2521F9E47> /usr/lib/system/libsystem_pthread.dylib
    0x7fff20632000 -     0x7fff2066cfff  libdyld.dylib (832.7.3) <4641E48F-75B5-3CC7-8263-47BF79F15394> /usr/lib/system/libdyld.dylib
    0x7fff2066d000 -     0x7fff20676fff  libsystem_platform.dylib (254.80.2) <1C3E1A0A-92A8-3CDE-B622-8940B43A5DF2> /usr/lib/system/libsystem_platform.dylib
    0x7fff20677000 -     0x7fff206a2fff  libsystem_info.dylib (542.40.3) <0C96CFE8-71F5-3335-8423-581BC3DE5846> /usr/lib/system/libsystem_info.dylib
    0x7fff206a3000 -     0x7fff20b3efff  com.apple.CoreFoundation (6.9 - 1774.101) <2A0E160E-9EE6-3B23-8832-6979A16EC250> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff20b3f000 -     0x7fff20d6efff  com.apple.LaunchServices (1122.11 - 1122.11) <9ACD5692-3B92-3E6E-8B24-56ADCC911556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20d6f000 -     0x7fff20e42fff  com.apple.gpusw.MetalTools (1.0 - 1) <B1FDD261-7707-3E20-A6C2-99D9AF46356B> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20e43000 -     0x7fff210a6fff  libBLAS.dylib (1336.40.1) <92702864-A5C6-3E22-86F6-DB329532674A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff210a7000 -     0x7fff210f4fff  com.apple.Lexicon-framework (1.0 - 86.1) <2F429EBD-1BD2-3057-B760-8A81546DBD6F> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff210f5000 -     0x7fff21163fff  libSparse.dylib (106) <B889DE4E-7356-3CC8-A13E-68D15E2024DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff21164000 -     0x7fff211e1fff  com.apple.SystemConfiguration (1.20 - 1.20) <3518EA0E-C32D-32CC-81B9-0F3C83B6430C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff211e2000 -     0x7fff21217fff  libCRFSuite.dylib (50) <970D1F7B-5DBD-355F-80D8-C820AA1626D2> /usr/lib/libCRFSuite.dylib
    0x7fff21218000 -     0x7fff2144ffff  libmecabra.dylib (929.1.1) <102A0AD8-D119-340B-B652-B75F0AAB1C7E> /usr/lib/libmecabra.dylib
    0x7fff21450000 -     0x7fff217b3fff  com.apple.Foundation (6.9 - 1774.101) <8D9081B3-3F6A-31A0-9B20-1AE5CD8DD747> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff217b4000 -     0x7fff218a0fff  com.apple.LanguageModeling (1.0 - 247.1) <1A05BCD7-232F-3950-936D-EC0F95BA3FB0> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff224dd000 -     0x7fff2282efff  com.apple.security (7.0 - 59754.80.3) <B377D7C7-EDB6-3737-B492-E9872F4C6469> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff2282f000 -     0x7fff22a90fff  libicucore.A.dylib (66109) <8F8D8A8B-4EE0-3C09-9F45-725A1FBDD38C> /usr/lib/libicucore.A.dylib
    0x7fff22a91000 -     0x7fff22a9afff  libsystem_darwin.dylib (1439.40.11) <E016D8F7-C87F-36F8-B8A0-6A61B8E4BACB> /usr/lib/system/libsystem_darwin.dylib
    0x7fff22a9b000 -     0x7fff22d82fff  com.apple.CoreServices.CarbonCore (1307 - 1307) <B857EADF-D517-34E8-8053-34C0E6695250> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22dc2000 -     0x7fff22dfcfff  com.apple.CSStore (1122.11 - 1122.11) <89992991-8538-380B-B2B8-4EA997CBFDBE> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22dfd000 -     0x7fff22eabfff  com.apple.framework.IOKit (2.0.2 - 1845.81.1) <49AC0177-35A3-3C96-AD9D-3E59923C4761> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22eac000 -     0x7fff22eb7fff  libsystem_notify.dylib (279.40.4) <B2BF20C7-448A-3FBD-A2F5-AB7618D173F6> /usr/lib/system/libsystem_notify.dylib
    0x7fff24326000 -     0x7fff24969fff  libnetwork.dylib (2288.80.2) <A3F1E999-6D61-32D7-B3F7-67832CEA53CD> /usr/lib/libnetwork.dylib
    0x7fff2496a000 -     0x7fff24e07fff  com.apple.CFNetwork (1220.1 - 1220.1) <04A917FB-DBFB-3432-BA4C-5B860990A420> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24e08000 -     0x7fff24e16fff  libsystem_networkextension.dylib (1295.80.3) <5213D866-7D0E-3FD9-8E1A-03C0E39CEC44> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24e17000 -     0x7fff24e17fff  libenergytrace.dylib (22) <33A9FBF3-A2D3-3ECE-9370-B0ADDE3896DE> /usr/lib/libenergytrace.dylib
    0x7fff24e18000 -     0x7fff24e73fff  libMobileGestalt.dylib (978.80.1) <C4C7A5DC-C3AD-374D-902A-B6DED14FBB67> /usr/lib/libMobileGestalt.dylib
    0x7fff24e74000 -     0x7fff24e8afff  libsystem_asl.dylib (385) <5B48071E-85EB-33B0-AE9B-127AEB398AEC> /usr/lib/system/libsystem_asl.dylib
    0x7fff24e8b000 -     0x7fff24ea2fff  com.apple.TCC (1.0 - 1) <2F48471B-68F3-3017-8B18-BEDD4ED5853F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff261d2000 -     0x7fff26391fff  libsqlite3.dylib (321.1) <ACCC6A4C-3257-38A4-8AFB-BA73D906205B> /usr/lib/libsqlite3.dylib
    0x7fff264f6000 -     0x7fff2656bfff  com.apple.AE (918.0.1 - 918.0.1) <9B6B42DB-8768-343B-B10E-A9A5710280CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff2656c000 -     0x7fff26572fff  libdns_services.dylib (1310.80.1) <97EB5DFD-BB41-3834-BF09-1F597D84F324> /usr/lib/libdns_services.dylib
    0x7fff26573000 -     0x7fff2657afff  libsystem_symptoms.dylib (1431.40.36) <BC85B46C-02EE-31FF-861D-F0DE01E8F6CF> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff26700000 -     0x7fff26724fff  com.apple.analyticsd (1.0 - 1) <4FFF906A-FE79-38F9-B777-AE878A0C99F1> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff26725000 -     0x7fff26727fff  libDiagnosticMessagesClient.dylib (112) <20EDB261-69C7-3E4A-8C00-878814186A62> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff26728000 -     0x7fff26774fff  com.apple.spotlight.metadata.utilities (1.0 - 2150.7.5) <FB7BF527-2D95-3E82-AAD8-D42B33DAC0F0> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff26775000 -     0x7fff2680ffff  com.apple.Metadata (10.7.0 - 2150.7.5) <49187239-597B-31A1-8895-8AA265C818C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff26810000 -     0x7fff26816fff  com.apple.DiskArbitration (2.7 - 2.7) <ACFCD23E-05DF-3F96-BCFA-E294AAAFD2CE> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff26817000 -     0x7fff26ebdfff  com.apple.vImage (8.1 - 544.2) <3EBF95E1-30EB-3162-A9D4-B97BE581B69F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff27405000 -     0x7fff27414fff  com.apple.OpenDirectory (11.2 - 230.40.1) <333A7F2E-0F3E-37F1-9E1B-69996F5084D2> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff27415000 -     0x7fff27434fff  com.apple.CFOpenDirectory (11.2 - 230.40.1) <25F138F8-9E55-3749-8271-0FDB275C3E2C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff27435000 -     0x7fff2743dfff  com.apple.CoreServices.FSEvents (1290.40.2 - 1290.40.2) <6B70B98B-BCC5-3FBE-A6B5-CD0696AA055A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2743e000 -     0x7fff27462fff  com.apple.coreservices.SharedFileList (144 - 144) <C861FAD6-D3A5-302C-88AE-B2813F7201A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff27463000 -     0x7fff27465fff  libapp_launch_measurement.dylib (14.1) <2BBB708C-4D91-364E-ABD0-39BF198688A6> /usr/lib/libapp_launch_measurement.dylib
    0x7fff27466000 -     0x7fff274aefff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <7A2E42E6-3AF2-3ECB-8A16-5C4AC41206EE> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff274af000 -     0x7fff27591fff  libxml2.2.dylib (34.9) <E0BF29C7-869B-3DD5-82AE-F36E6398091A> /usr/lib/libxml2.2.dylib
    0x7fff285c3000 -     0x7fff285d3fff  libsystem_containermanager.dylib (318.80.2) <6F08275F-B912-3D8E-9D74-4845158AE4F3> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff285d4000 -     0x7fff285e5fff  com.apple.IOSurface (289.3 - 289.3) <029C5E16-2E04-3E98-BE25-CC8BAE5E3D19> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff285e6000 -     0x7fff285eefff  com.apple.IOAccelerator (439.52 - 439.52) <41EDF102-E1B5-3FBA-A74A-6C583CAA5D24> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff285ef000 -     0x7fff28714fff  com.apple.Metal (244.32.7 - 244.32.7) <829B9C4D-2DB6-38C9-9FE8-E6544FB3BDCC> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff29274000 -     0x7fff292cffff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <287C79B5-4E13-3DF6-BDC4-439EC621E010> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff292d0000 -     0x7fff292d3fff  libsystem_configuration.dylib (1109.60.2) <4917D824-4DE8-32CC-9ED2-1FBF371FEB9F> /usr/lib/system/libsystem_configuration.dylib
    0x7fff292d4000 -     0x7fff292d8fff  libsystem_sandbox.dylib (1441.60.4) <5F7F3DD1-4B38-310C-AA8F-19FF1B0F5276> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff292d9000 -     0x7fff292dafff  com.apple.AggregateDictionary (1.0 - 1) <E6C1A91D-4ADE-33CB-AA47-2F573811BFD9> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff292db000 -     0x7fff292defff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <4F8A1D06-3EFF-3174-BE9C-C4B70A3EA290> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff292df000 -     0x7fff292e0fff  liblangid.dylib (136) <E8044658-AE79-3930-A902-07A38BB22382> /usr/lib/liblangid.dylib
    0x7fff292e1000 -     0x7fff29381fff  com.apple.CoreNLP (1.0 - 245.1) <6C49B26B-CB39-3504-AD5E-9C3333FFE086> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff29382000 -     0x7fff29388fff  com.apple.LinguisticData (1.0 - 399) <B059FF7F-731A-38F1-884A-588C6C8CA7F2> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff29389000 -     0x7fff29a46fff  libBNNS.dylib (288.80.1) <C5CD30D8-114B-3104-9020-E5C05E68CEE8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff29a47000 -     0x7fff29c1afff  libvDSP.dylib (760.40.6) <4CCEE561-A72B-33BC-B9F9-77A6CF2E7AF0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff29c1b000 -     0x7fff29c2dfff  com.apple.CoreEmoji (1.0 - 128) <D43F3FFA-6692-3D56-ACBA-DDA40C566DDE> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff29c2e000 -     0x7fff29c38fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <B15E9DA1-1C81-3ECF-94C7-FD137AD6C5E2> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29f40000 -     0x7fff29fccfff  com.apple.securityfoundation (6.0 - 55240.40.4) <72AC63B1-0B72-394F-97E8-BA9B114DD0A9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29fcd000 -     0x7fff29fd6fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <EC15118E-62BD-3C24-A880-3B9B74318B0B> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29fd7000 -     0x7fff29fdbfff  com.apple.xpc.ServiceManagement (1.0 - 1) <FD031028-B702-3909-B2AF-3916404DD4A8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29fdc000 -     0x7fff29fdefff  libquarantine.dylib (119.40.2) <40D35D75-524B-3DA6-8159-E7E0FA66F5BC> /usr/lib/system/libquarantine.dylib
    0x7fff29fdf000 -     0x7fff29feafff  libCheckFix.dylib (31) <74E17BB2-1A3C-3574-92DD-63ABE39E3FF9> /usr/lib/libCheckFix.dylib
    0x7fff29feb000 -     0x7fff2a002fff  libcoretls.dylib (169) <B33BEF87-3275-356D-9815-D0E94122D2EB> /usr/lib/libcoretls.dylib
    0x7fff2a003000 -     0x7fff2a013fff  libbsm.0.dylib (68.40.1) <D71EF121-D4B0-306E-9843-9FAFD558E3A4> /usr/lib/libbsm.0.dylib
    0x7fff2a014000 -     0x7fff2a05dfff  libmecab.dylib (929.1.1) <1F424683-4213-3594-9BF5-EFCCCDAA83A5> /usr/lib/libmecab.dylib
    0x7fff2a05e000 -     0x7fff2a063fff  libgermantok.dylib (24) <E40EFA11-E95C-36D1-A8BE-8CA5B1DD179D> /usr/lib/libgermantok.dylib
    0x7fff2a064000 -     0x7fff2a079fff  libLinearAlgebra.dylib (1336.40.1) <0D017F3F-6FD6-38DB-AA14-A64523A4D093> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff2a07a000 -     0x7fff2a2a1fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <8FA469B3-48BE-315B-B3A0-C868CD541608> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff2a2a2000 -     0x7fff2a2f1fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <613BB6F1-3588-3E25-B523-059022FBE56E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a2f2000 -     0x7fff2a439fff  com.apple.MLCompute (1.0 - 1) <01B968D9-A464-3667-8B8E-C99AEBA1FF79> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a43a000 -     0x7fff2a470fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <B988D5F6-4E54-335D-A654-12C74FD668EA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a471000 -     0x7fff2a4aefff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <51ECDE6B-39F8-3BAB-ADC1-84C958F40A3F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a4af000 -     0x7fff2a53ffff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <D009508B-DCDF-3421-B1CB-40FDF4A68E93> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a540000 -     0x7fff2a54ffff  com.apple.AppleFSCompression (125 - 1.0) <879A04AA-F9A1-3640-A9EF-F5D0813C852A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a550000 -     0x7fff2a55dfff  libbz2.1.0.dylib (44) <E163D5F9-E202-3A53-817B-8BC40B9293C0> /usr/lib/libbz2.1.0.dylib
    0x7fff2a55e000 -     0x7fff2a562fff  libsystem_coreservices.dylib (127) <529A0663-A936-309C-9318-1B04B7F70658> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a563000 -     0x7fff2a590fff  com.apple.CoreServices.OSServices (1122.11 - 1122.11) <8D30829B-426E-361E-B2A9-5850F1E5513D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a766000 -     0x7fff2a778fff  libz.1.dylib (76) <6E2BD7A3-DC55-3183-BBF7-3AC367BC1834> /usr/lib/libz.1.dylib
    0x7fff2a779000 -     0x7fff2a7c0fff  libsystem_m.dylib (3186.40.2) <DD26CC5C-AFF6-305F-A567-14909DD57163> /usr/lib/system/libsystem_m.dylib
    0x7fff2a7c1000 -     0x7fff2a7c1fff  libcharset.1.dylib (59) <D14F9D24-693A-37F0-8F92-D260248EB282> /usr/lib/libcharset.1.dylib
    0x7fff2a7c2000 -     0x7fff2a7c7fff  libmacho.dylib (973.4) <C2584BC4-497B-3170-ADDF-21B8E10B4DFD> /usr/lib/system/libmacho.dylib
    0x7fff2a7c8000 -     0x7fff2a7e3fff  libkxld.dylib (7195.81.3) <DE05C188-D9FE-30DC-8299-DF3DC9F837A5> /usr/lib/system/libkxld.dylib
    0x7fff2a7e4000 -     0x7fff2a7effff  libcommonCrypto.dylib (60178.40.2) <822A29CE-BF54-35AD-BB15-8FAECB800C7D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a7f0000 -     0x7fff2a7fafff  libunwind.dylib (200.10) <1D0A4B4A-4370-3548-8DC1-42A7B4BD45D3> /usr/lib/system/libunwind.dylib
    0x7fff2a7fb000 -     0x7fff2a802fff  liboah.dylib (203.30) <44C477D9-013F-3A6D-A9FE-68A89214E6A5> /usr/lib/liboah.dylib
    0x7fff2a803000 -     0x7fff2a80dfff  libcopyfile.dylib (173.40.2) <39DBE613-135B-3AFE-A6AF-7898A37F70C2> /usr/lib/system/libcopyfile.dylib
    0x7fff2a80e000 -     0x7fff2a815fff  libcompiler_rt.dylib (102.2) <62EE1D14-5ED7-3CEC-81C0-9C93833641F1> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a816000 -     0x7fff2a818fff  libsystem_collections.dylib (1439.40.11) <C53D5E0C-0C4F-3B35-A24B-E0D7101A3F95> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a819000 -     0x7fff2a81bfff  libsystem_secinit.dylib (87.60.1) <E05E35BC-1BAB-365B-8BEE-D774189EFD3B> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a81c000 -     0x7fff2a81efff  libremovefile.dylib (49.40.3) <5CC12A16-82CB-32F0-9040-72CFC88A48DF> /usr/lib/system/libremovefile.dylib
    0x7fff2a81f000 -     0x7fff2a81ffff  libkeymgr.dylib (31) <803F6AED-99D5-3CCF-B0FA-361BCF14C8C0> /usr/lib/system/libkeymgr.dylib
    0x7fff2a820000 -     0x7fff2a827fff  libsystem_dnssd.dylib (1310.80.1) <E0A0CAB3-6779-3C83-AC67-046CFE69F9C2> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a828000 -     0x7fff2a82dfff  libcache.dylib (83) <1A98B064-8FED-39CF-BB2E-5BDA1EF5B65A> /usr/lib/system/libcache.dylib
    0x7fff2a82e000 -     0x7fff2a82ffff  libSystem.B.dylib (1292.60.1) <83503CE0-32B1-36DB-A4F0-3CC6B7BCF50A> /usr/lib/libSystem.B.dylib
    0x7fff2a830000 -     0x7fff2a833fff  libfakelink.dylib (3) <D939A124-9FD5-37A2-B03B-72E98CBC98FE> /usr/lib/libfakelink.dylib
    0x7fff2a834000 -     0x7fff2a834fff  com.apple.SoftLinking (1.0 - 1) <EF2AC5FF-B98D-3252-ABA8-2FC721CBA942> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a835000 -     0x7fff2a86cfff  libpcap.A.dylib (98.40.1) <DE5787F8-D011-3E71-8323-936B35976D9E> /usr/lib/libpcap.A.dylib
    0x7fff2a86d000 -     0x7fff2a95dfff  libiconv.2.dylib (59) <AD10ECF4-E137-3152-9612-7EC548D919E8> /usr/lib/libiconv.2.dylib
    0x7fff2a95e000 -     0x7fff2a96ffff  libcmph.dylib (8) <A5D1EBB3-70A1-3ECA-A3C7-E97FBAD36ECF> /usr/lib/libcmph.dylib
    0x7fff2a970000 -     0x7fff2a9e1fff  libarchive.2.dylib (83.40.4) <9061C767-43FD-3483-9C48-73973AF82DC1> /usr/lib/libarchive.2.dylib
    0x7fff2a9e2000 -     0x7fff2aa49fff  com.apple.SearchKit (1.4.1 - 1.4.1) <6243D4C0-3572-30A6-889A-B8690A5EAC24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2aa4a000 -     0x7fff2aa4bfff  libThaiTokenizer.dylib (3) <47CDE3EE-60AB-38CE-9494-5CC047CACA7F> /usr/lib/libThaiTokenizer.dylib
    0x7fff2aa4c000 -     0x7fff2aa73fff  com.apple.applesauce (1.0 - 16.26) <4A637FE0-A740-32F0-AE70-4593F6DF1573> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2aa74000 -     0x7fff2aa8bfff  libapple_nghttp2.dylib (1.41) <A2F6DE8D-2B38-3669-A16E-E1BD54108F24> /usr/lib/libapple_nghttp2.dylib
    0x7fff2aa8c000 -     0x7fff2aa9efff  libSparseBLAS.dylib (1336.40.1) <FC45F7FD-6B10-3F8D-A553-F57C757F6717> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2aa9f000 -     0x7fff2aaa0fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <F37DBCE9-20CD-33D4-806B-93B326E08422> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2aaa1000 -     0x7fff2aaa5fff  libpam.2.dylib (28.40.1) <FA3308D0-E7B4-3A2C-AE39-0E085F6CDEE0> /usr/lib/libpam.2.dylib
    0x7fff2aaa6000 -     0x7fff2aabefff  libcompression.dylib (96.40.6) <9C42DB2C-0A6D-38CE-BB8D-899A9B34B695> /usr/lib/libcompression.dylib
    0x7fff2aabf000 -     0x7fff2aac4fff  libQuadrature.dylib (7) <55EE1866-623B-3C10-91FB-C8B06EB83995> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2aac5000 -     0x7fff2ae61fff  libLAPACK.dylib (1336.40.1) <2F92E8CD-396D-3665-88EB-41A4E1A9CB31> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2ae62000 -     0x7fff2aeb0fff  com.apple.DictionaryServices (1.2 - 341) <5D0B1BB2-995B-32EB-AE75-F5F27127ACAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2aeb1000 -     0x7fff2aec9fff  liblzma.5.dylib (16) <168D84A7-8E54-361E-9161-B661D96C0C9A> /usr/lib/liblzma.5.dylib
    0x7fff2aeca000 -     0x7fff2aecbfff  libcoretls_cfhelpers.dylib (169) <80AF345B-1989-3C88-AEF4-8FF18A366A9C> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2aecc000 -     0x7fff2afc6fff  com.apple.APFS (1677.81.1 - 1677.81.1) <E48CCAAC-34B5-377E-8E5D-06CDBD411C2F> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2afc7000 -     0x7fff2afd4fff  libxar.1.dylib (452) <FAA7B36E-21EC-3ADF-AA6A-E3742737CA3A> /usr/lib/libxar.1.dylib
    0x7fff2afd5000 -     0x7fff2afd8fff  libutil.dylib (58.40.2) <0A268749-08E7-3551-8969-442210651CCA> /usr/lib/libutil.dylib
    0x7fff2afd9000 -     0x7fff2b001fff  libxslt.1.dylib (17.3) <1C5219FB-B504-3658-B23B-2C45A3BA28F1> /usr/lib/libxslt.1.dylib
    0x7fff2b002000 -     0x7fff2b00cfff  libChineseTokenizer.dylib (37) <718400BF-9911-3CB6-8CCE-4C2D7C35D80A> /usr/lib/libChineseTokenizer.dylib
    0x7fff2b00d000 -     0x7fff2b0cbfff  libvMisc.dylib (760.40.6) <9D11FCFC-6C30-32B6-864B-9CC3ED7D1143> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2dc67000 -     0x7fff2dc67fff  liblaunch.dylib (2038.80.3) <C7C51322-8491-3B78-9CFA-2B4753662BCF> /usr/lib/system/liblaunch.dylib
    0x7fff3011b000 -     0x7fff3011bfff  libsystem_product_info_filter.dylib (8.40.1) <20310EE6-2C3F-361A-9ECA-4223AFC03B65> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff301f6000 -     0x7fff301f6fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <8CD6F55A-8E4F-3653-A367-427D0ED3DD16> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff3021d000 -     0x7fff3021dfff  com.apple.CoreServices (1122.11 - 1122.11) <E59859C6-7221-3324-BB58-F910B2199959> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff304eb000 -     0x7fff304ebfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <2423F0F6-A3A4-37AB-971E-FCFC7645D282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff6cb7b000 -     0x7fff6cb81fff  libCoreFSCache.dylib (177.22) <44489BD1-3963-35DF-86F1-DE95778AC0DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.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: 16926
    thread_create: 0
    thread_set_state: 0

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

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
Dispatch continuations            64.0M        1 
Kernel Alloc Once                    8K        1 
MALLOC                            81.2M       67 
MALLOC guard page                   16K        4 
MALLOC_LARGE (reserved)           19.9M        3         reserved VM address space (unallocated)
STACK GUARD                       56.1M       23 
Stack                             18.7M       23 
VM_ALLOCATE                       20.0G     2767 
VM_ALLOCATE (reserved)              64K        1         reserved VM address space (unallocated)
__DATA                            3018K      153 
__DATA_CONST                      6356K       95 
__DATA_DIRTY                       289K       59 
__LINKEDIT                       491.7M       13 
__OBJC_RO                         60.5M        1 
__OBJC_RW                         2449K        2 
__TEXT                            89.7M      154 
__UNICODE                          588K        1 
mapped file                       85.6M      607 
shared memory                       44K        5 
===========                     =======  ======= 
TOTAL                             21.0G     3981 
TOTAL, minus reserved VM space    21.0G     3981 

Model: MacBookPro15,2, BootROM 1554.80.3.0.0 (iBridge: 18.16.14347.0.0,0), 4 processors, Quad-Core Intel Core i5, 2,4 GHz, 8 GB, SMC 
Graphics: kHW_IntelIrisGraphics655Item, Intel Iris Plus Graphics 655, spdisplays_builtin
Memory Module: BANK 0/ChannelA-DIMM0, 4 GB, LPDDR3, 2133 MHz, Samsung, K4E6E304EC-EGCG
Memory Module: BANK 2/ChannelB-DIMM0, 4 GB, LPDDR3, 2133 MHz, Samsung, K4E6E304EC-EGCG
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Sep 11 2020 16:57:49 version 9.30.440.2.32.5.61 FWID 01-129bddb
Bluetooth: Version 8.0.3d9, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.1 Bus
USB Device: Apple T2 Bus
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 47.4
Thunderbolt Bus: MacBook Pro, Apple Inc., 47.4
mikibakaiki commented 3 years ago

Sorry for the big dump :/

Also, i deleted the multiple versions of dotnet core i had, and now I'm running 3.1, as recommended, still no success

cscharf commented 3 years ago

Did you get anything in iTerm2 console output from the crash, any exception stack-trace? I wonder if you have Visual Studio or Code installed if you can try to "debug" from there, it'll have a better time unwinding and hopefully symbolicating the crash data.

mikibakaiki commented 3 years ago

i do have them.

I ran with VS now, i got the same thing, ill leave here a picture and maybe you can tell me what fields to expand, i can't get them all in one picture.

Screen Shot 2021-03-10 at 19 31 03

Screen Shot 2021-03-10 at 19 32 48

Screen Shot 2021-03-10 at 19 33 26

cscharf commented 3 years ago

Hmm, that helps... I wonder there's something that needs to change with this check here: https://github.com/bitwarden/server/blob/master/src/Core/Services/Implementations/LicensingService.cs#L53 where it's then checking the thumbprint for the licensing cert, although it's still working for all of our normal self-hosted folks, but just when in development doesn't seem to be for you. Maybe @eliykat can take a look and see if it can be reproduced and worked through relatively easily or if this area requires a change for local debugging of selfHosted: true

mikibakaiki commented 3 years ago

I can try and remove that from the configs, see how (if) it runs :)

but it's weird... if you don't mind me asking, what version of macOS and dotnet are you running ? (and all other programs that might impact this)

mikibakaiki commented 3 years ago

BTW, I added a console.log to get the value of _certificate here and the result was blank... possibly a reflection of _certificate = null

mikibakaiki commented 3 years ago

So, i setup a breakpoint in that file, and it seems that the thumbprints somehow change, and become different, hence the failure...

Screen Shot 2021-03-10 at 21 08 47 Screen Shot 2021-03-10 at 21 09 06 Screen Shot 2021-03-10 at 21 09 32

I'm not sure if this is the desired behaviour

cscharf commented 3 years ago

if you don't mind me asking, what version of macOS and dotnet are you running ? (and all other programs that might impact this)

macOS Big Sur - 11.2.2 dotnet --version = 5.0.103

BTW, I added a console.log to get the value of _certificate here and the result was blank... possibly a reflection of _certificate = null

You did create the empty directory for that certificate and set that in the configuration file? Here's that portion of my secrets.json file for Identity (these are the literal values, nothing "masked"):

{
    "globalSettings:licenseDirectory": "c:/bwtest/licenses",
    "globalSettings:internalIdentityKey": "blahblah",
}

Note that I'm using a mac, there's no such thing path that even could exist of "c:/bwtest/licenses".. Try using that path and not one that actually "exists" for real.

So, i setup a breakpoint in that file, and it seems that the thumbprints somehow change, and become different, hence the failure...

No, that's not expected and that line should never get hit if you're using selfHosted: true. Please check your secrets file.

mikibakaiki commented 3 years ago

You did create the empty directory for that certificate and set that in the configuration file? Here's that portion of my secrets.json file for Identity (these are the literal values, nothing "masked"):

In my secrets.json, I have

"licenseDirectory": "c:/bwtest/licenses"

I previously had a real, existing folder... ( ~/github/bitwarden/passcert_server/random_empty)

Should I leave this one? EDIT: failed Should i add the PW field? EDIT: failed

No, that's not expected and that line should never get hit if you're using selfHosted: true. Please check your secrets file.

From what i could tell now, the environment is not assuming that I'm in developer mode... this condition:

var certThumbprint = environment.IsDevelopment() ? "207E64A231E8AA32AAF68A61037C075EBEBD553F" : "β€ŽB34876439FCDA2846505B2EFBBA6C4A951313EBE";

is returning false, and therefore the B348.. value.

eliykat commented 3 years ago

Hey @mikibakaiki, I haven't had a chance to go through the whole thread in detail, but I remember hitting that error on the certThumbprint line as well before I joined the team.

When I inverted the ternary if condition, it worked fine, because my thumbprint was matching the other string literal:

var certThumbprint = !environment.IsDevelopment() ? "207E64A231E8AA32AAF68A61037C075EBEBD553F" : "β€ŽB34876439FCDA2846505B2EFBBA6C4A951313EBE";

(Note the bang before environment)

@cscharf I'll look into this when I have a bit of time to see if we can improve the instructions and/or code for self-hosted dev environments. I can attest that it's a bit of a struggle without our licensing certificates etc (at which point the doors just open to you)

mikibakaiki commented 3 years ago

Hey @mikibakaiki, I haven't had a chance to go through the whole thread in detail, but I remember hitting that error on the certThumbprint line as well before I joined the team.

Is that an indicator that I'll join the team, since i have the same error? πŸ˜„ eheh

Okay, i did it, it works ! πŸ₯³

But is there a way to set this up in a the secrets, or something? I'm thinking that if i want to commit this file (i won't, but in a possible fix...) it can ruin the run for other people...

mikibakaiki commented 3 years ago

I agree on making the documentation a bit better... from personal experience, i felt a bit abandoned, until i read thoroughly the CONTRIBUTING.md , which contains the installation instructions

cscharf commented 3 years ago

There's a better way to determine environment.IsDevelopment() instead of modifying that code, yes.

@eliykat / @mikibakaiki , please set your environment variable, ASPNETCORE_ENVIRONMENT=Development.

@mikibakaiki , please feel free to contribute to CONTRIBUTING.md to add this step or warning/notice to help others as well.

mikibakaiki commented 3 years ago

@eliykat did you manage to do it?

I tried adding at the end of my .zshrc the line export ASPNETCORE_ENVIRONMENT=Development and i removed the change you suggested... it's not running. i restarted the shell and if i echo $ASPNETCORE_ENVIRONMENT it returns correctly

Apparently the setup was correct, it's just not working πŸ˜•

Screen Shot 2021-03-10 at 22 02 47
eliykat commented 3 years ago

I haven't used that method before, I'll check it out later when I review our instructions in general.

If you can't figure out the environment variables, then I think the code hack will work as a temporary measure, just don't commit your changes πŸ˜‰ (Fwiw, I've never had to make changes to LicensingService, so it's pretty easy to remember not to commit it)

That said - if you do get the environment variable working as @cscharf suggested, please let me know and/or update the contributing guide.

mikibakaiki commented 3 years ago

Yeah, im trying to see why it's not being changed... maybe there's something overriding it in the project.

Ill leave feedback here, thank you both for the patience and help :)

EDIT:

All the launchSettings.json, which take precedence over the global environment variable seem to have the ASPNETCORE_ENVIRONMENT=Development there. Unless there's another file that has a higher priority than this one, I see nothing else that could prevent this.

EDIT 2:

I created a Pull Request for the small adjustments in the CONTRIBUTING.md. Hopefully I'm not going against any rule to contributing :)