Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created December 27, 2020 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melezhik/9005ef60ea6564b5975ed2dc3cfd2a51 to your computer and use it in GitHub Desktop.
Save melezhik/9005ef60ea6564b5975ed2dc3cfd2a51 to your computer and use it in GitHub Desktop.
Raku profile data. Rakudo Version: 45b4e6464d5437526aac6fa0c0822c2c90c0cb2c
<!DOCTYPE html>
<html lang="en" ng-app="moarProfApp" ng-controller="NavigationController">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MoarVM Profiler Results</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<style>
body {
min-height: 500px;
padding-top: 70px;
}
.icyclegraph .call {
display: block;
border: 1px solid black;
overflow: hidden;
}
.icyclegraph .child {
float: left;
}
.icyclegraph a {
color: black;
}
</style>
</head>
<body >
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">MoarVM Profiler Results</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li ng-class="Tab == 'Overview' ? 'active' : ''"><a href="#overview" ng-click="Tab = 'Overview'">Overview</a></li>
<li ng-class="Tab == 'Routines' ? 'active' : ''"><a href="#routines" ng-click="Tab = 'Routines'">Routines</a></li>
<li ng-class="Tab == 'Call Graph' ? 'active' : ''"><a href="#callgraph" ng-click="Tab = 'Call Graph'">Call Graph</a></li>
<li ng-class="Tab == 'Allocations' ? 'active' : ''"><a href="#allocations" ng-click="Tab = 'Allocations'">Allocations</a></li>
<li ng-class="Tab == 'GC' ? 'active' : ''"><a href="#gc" ng-click="Tab = 'GC'">GC</a></li>
<li ng-class="Tab == 'OSR/Deopt' ? 'active' : ''"><a href="#osrdeopt" ng-click="Tab = 'OSR/Deopt'">OSR / Deopt</a></li>
</ul>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Overview'">
<div ng-controller="OverviewController">
<h3>Time Spent</h3>
<p>The profiled code ran for <strong>{{TotalTime}}ms</strong>. Of this,
<strong>{{GCOverheadTime}}ms</strong> were spent on garbage collection
(that's <strong>{{GCOverheadTimePercent}}%</strong>).
</p>
<p>The dynamic optimizer was active for <strong>{{SpeshTimePercent}}%</strong> of the program's run time.
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Executing Code</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{ExecutingTimePercent}}%;">
</div>
</div>
</div>
<div>
{{ExecutingTimePercent}}%
({{ExecutingTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Garbage Collection</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{GCTimePercent}}%;">
</div>
</div>
</div>
<div>
{{GCTimePercent}}%
({{GCTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Dynamic Optimization</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshTimePercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshTimePercent}}%
({{SpeshTime}}ms)
</div>
</td>
</tr>
</tbody>
</table>
<h3>Call Frames</h3>
<p>In total, <strong>{{EntriesWithoutInline}} call frames</strong> were
entered and exited by the profiled code. Inlining eliminated the need
to create <strong>{{EntriesInline}} call frames</strong> (that's
<strong>{{InlinePercent}}%</strong>).
</p>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Interpreted Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpFramesPercent}}%
({{InterpFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshFramesPercent}}%
({{SpeshFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{JITFramesPercent}}%
({{JITFrames}})
</div>
</td>
</tr>
</tbody>
</table>
<h3>Garbage Collection</h3>
<p>The profiled code did <strong>{{GCRuns}} garbage collections</strong>.
There were <strong>{{FullGCRuns}} full collections</strong> involving
the entire heap.
</p>
<p ng-show="{{GCRuns > 0}}">
The average nursery collection time was <strong>{{NurseryAverage}}ms</strong>.
<span ng-show="{{FullGCRuns > 0}}">
The average full collection time was <strong>{{FullAverage}}ms</strong>.
</span>
<span ng-show="{{AverageParticipants > 1}}">
On average, <strong>{{AverageParticipants}}</strong> threads participated in GC.
</span>
</p>
<p ng-show="{{ScalarReplacements > 1}}">
Scalar replacement eliminated <strong>{{ScalarReplacements}}</strong> allocations
(that's <strong>{{ScalarReplacementPercent}}%</strong>).
</p>
<h3>Dynamic Optimization</h3>
<p>Of {{OptimizedFrames}} specialized or JIT-compiled frames, there were
<strong>{{DeoptOnes}} deoptimizations</strong> (that's <strong>
{{DeoptOnePercent}}%</strong> of all optimized frames).
</p>
<p ng-show="DeoptAlls == 0">
There was <strong>no global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls == 1">
There was <strong>one global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls > 1">
There were <strong>{{DeoptAlls}} global deoptimization</strong> triggered
by the profiled code.
</p>
<p ng-show="OSRs == 0">
There was <strong>no On Stack Replacement</strong> performed while
executing the profiled code (normal if the code lacks long-running
loops with many iterations).
</p>
<p ng-show="OSRs == 1">
There was <strong>one On Stack Replacement</strong> performed while
executing the profiled code.
</p>
<p ng-show="OSRs > 1">
There were <strong>{{OSRs}} On Stack Replacements</strong> performed
while executing the profiled code.
</p>
</div>
</div>
<div class="container" ng-show="Tab == 'Routines'">
<div ng-controller="RoutinesController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Entries' ? !reverse : true; predicate = 'Entries';">Entries</a></th>
<th><a href="" ng-click="reverse = predicate == 'InclusiveTime' ? !reverse : true; predicate = 'InclusiveTime';">Inclusive Time</a></th>
<th><a href="" ng-click="reverse = predicate == 'ExclusiveTime' ? !reverse : true; predicate = 'ExclusiveTime';">Exclusive Time</a></th>
<th>
<span class="text-danger" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
</thead>
<tbody>
<tr ng-repeat="routine in Routines | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>{{routine.Entries}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.InclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.InclusiveTimePercent}}%</strong>
({{routine.InclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.ExclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.ExclusiveTimePercent}}%</strong>
({{routine.ExclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 110px">
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.InterpEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.SpeshEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.JITEntriesPercent}}%">
</div>
</div>
</div>
<div>
<span class="label label-default" ng-show="routine.OSR">OSR</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/ng-template" id="icycle_graph_callee_renderer.html">
<a href="#" class="call" style="background-color:{{backgroundColor(callee)}}" ng-click="toCallee(callee)">{{callee.name}}</a>
<div class="child" style="width: {{callee.inclusive_time * 100 / Current.inclusive_time}}%;" ng-repeat="callee in callee.callees" title="{{callee.name}}" ng-include="'icycle_graph_callee_renderer.html'"></div>
</script>
<div class="container" ng-show="Tab == 'Call Graph'">
<div ng-controller="CallGraphController">
<ol class="breadcrumb">
<li><strong>Callers:</strong></li>
<li ng-show="RecentCallers.length == 0"><em>None</em></li>
<li ng-repeat="caller in RecentCallers">
<a href="" ng-click="toCaller(caller)">
{{caller.name == '' ? '&lt;anon&gt;' : caller.name}}
</a>
</li>
</ol>
<p>
<span class="lead">{{Current.name == '' ? '&lt;anon&gt;' : Current.name}}</span><br />
<span class="text-muted">{{File}}:{{Line}}</span>
</p>
<div class="icyclegraph">
<div class="child" ng-repeat="callee in [Current]" ng-include="'icycle_graph_callee_renderer.html'"></div>
</div>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Calls <span class="text-success">(Inlined)</span></strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{Percent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{InlinePercent}}%;">
</div>
</div>
</div>
<div ng-show="InlinePercent == 0">
{{Entries}}
</div>
<div ng-show="InlinePercent != 0">
{{Entries}} +
<span class="text-success">{{InlineEntries}} ({{InlinePercent}}%)</span>
</div>
</td>
</tr>
<tr>
<td><strong>Interpreted Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpPercent}}%
({{InterpEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshPercent}}%
({{SpeshEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITPercent}}%;">
</div>
</div>
</div>
<div>
{{JITPercent}}%
({{JITEntries}})
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel panel-default">
<div class="panel-heading">Callees</div>
<table class="table table-striped table-condensed table-bordered" ng-show="Callees.length > 0">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Calls' ? !reverse : true; predicate = 'Calls';">Calls</a></th>
<th><a href="" ng-click="reverse = predicate == 'Time' ? !reverse : true; predicate = 'Time';">Time In Callee</a></th>
<th>
<span class="text-danger" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
<th>
<span tooltip-placement="bottom" tooltip="Code from this callee was flattened into the routine by the optimizer">Inlined</span>
</th>
</thead>
<tbody>
<tr ng-repeat="callee in Callees | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong><a href="" ng-click="toCallee(callee.Node)">{{callee.Name}}</a></strong><br />
<span class="text-muted">{{callee.File}}:{{callee.Line}}</span>
</td>
<td>{{callee.Calls}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{callee.TimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{callee.TimePercent}}%</strong>
({{callee.Time}}ms)
</div>
</td>
<td>
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{callee.InterpCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{callee.SpeshCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{callee.JITCallsPercent}}%">
</div>
</div>
</td>
<td>
<div ng-show="callee.VeryInline">
<span class="text-success">
<span class="glyphicon glyphicon-star"></span>
</span>
{{callee.InlinedPercent}}%
</div>
<div ng-show="callee.SometimesInline">
<span class="text-muted">
<span class="glyphicon glyphicon-star-empty"></span>
</span>
{{callee.InlinedPercent}}%
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel-body" ng-show="Callees.length == 0">
This code has no callees.
</div>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Allocations'">
<div ng-controller="AllocationsController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Allocations' ? !reverse : true; predicate = 'Allocations';">Allocations</a></th>
<th>Allocating Routines</th>
</thead>
<tbody>
<tr ng-repeat="alloc in AllocationSummary | filter:NameFilter | orderBy:predicate:reverse">
<td><strong>{{alloc.Name}}</strong></td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{alloc.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{alloc.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{alloc.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{alloc.Allocations}}
</div>
</td>
<td>
<a href="" ng-click="showAllocatingRoutines(alloc)">View</a>
</td>
</tr>
</tbody>
</table>
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<button type="button" ng-click="modalInstance.close()"
class="close" data-dismiss="modal">
<span aria-hidden="true">&times;</span><span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="allocatingRoutinesModalLabel">
Routines Allocating {{CurrentAllocatingRoutine}}
</h4>
</div>
<div class="modal-body">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="routineReverse = routinePredicate == 'Name' ? !routineReverse : false; routinePredicate = 'Name';">Name</a>
<input ng-model="RoutineNameFilter">
</th>
<th><a href="" ng-click="routineReverse = routinePredicate == 'Allocations' ? !routineReverse : true; routinePredicate = 'Allocations';">Allocations</a></th>
</thead>
<tbody>
<tr ng-repeat="routine in CurrentAllocatingRoutineStats | filter:RoutineNameFilter | orderBy:routinePredicate:routineReverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{routine.Allocations}}
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" ng-click="modalInstance.close()"
class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</script>
</div>
</div>
<div class="container" ng-show="Tab == 'GC'">
<div ng-controller="GCController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'StartTime' ? !reverse : false; predicate = 'StartTime';">Start Time</a>
</th>
<th>
<a href="" ng-click="reverse = predicate == 'Run' ? !reverse : false; predicate = 'Run';">Run</a>
</th>
<th>Full</th>
<th>
<a href="" ng-click="reverse = predicate == 'Time' ? !reverse : false; predicate = 'Time';">Time</a>
</th>
<th>
Nursery:
<span class="text-danger" tooltip-placement="bottom" tooltip="Bytes retained in the nursery">Retained</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Bytes promoted to gen2 and now available in nursery">Promoted</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Bytes released and now availabe in nursery">Freed</span>
</th>
</thead>
<tbody>
<tr ng-repeat="gc in GCs | orderBy:predicate:reverse">
<td>{{gc.StartTime}}ms</td>
<td><strong>{{gc.Run}}</strong></td>
<td>
<span class="text-success" ng-show="gc.Full">
<span class="glyphicon glyphicon-star"></span>
</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar" role="progressbar" style="width: {{gc.TimePercent}}%;">
</div>
</div>
</div>
<div>
{{gc.Time}}ms
</div>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{gc.RetainedPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{gc.PromotedPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{gc.ClearedPercent}}%">
</div>
</div>
</div>
<div>
{{gc.RetainedKilobytes}}KB /
{{gc.PromotedKilobytes}}KB /
{{gc.ClearedKilobytes}}KB ...
<small>{{gc.Gen2Roots}} gen2 roots</small>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container" ng-show="Tab == 'OSR/Deopt'">
<div ng-controller="OSRDeoptController">
<h3>OSR</h3>
<p>On Stack Replacement detects routines containing hot loops that are
being interpreted, and replaces them with specialized or JIT-compiled
code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="OSRs.length > 0">
<thead>
<th>
Routine
</th>
<th>On Stack Replacements</th>
</thead>
<tbody>
<tr ng-repeat="osr in OSRs | orderBy:predicate:reverse">
<td>
<strong>{{osr.Name}}</strong><br />
<span class="text-muted">{{osr.File}}:{{osr.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{osr.Percent}}%;">
</div>
</div>
</div>
<div>
{{osr.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="OSRs.length == 0">
<em>No OSR was performed during this profile.</em>
</p>
<h3>Local Deoptimization</h3>
<p>Local deoptimization happens when a guard in specialized or JIT-compiled
code fails. Since the code was produced assuming the guard would hold,
the VM falls back to running the safe, but slower, interpreted code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptOnes.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptOnes | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptOnes.length == 0">
<em>No local deoptimizations occurred during this profile.</em>
</p>
<h3>Global Deoptimization</h3>
<p>Global deoptimization happens when an event occurs that renders
all currently type-specialized or JIT-compiled code on the call
stack potentially invalid. Mixins - changing the type of an object
in place - are a common reason.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptAlls.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptAlls | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptAlls.length == 0">
<em>No global deoptimizations occurred during this profile.</em>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.2.0/ui-bootstrap-tpls.js"></script>
<script>
var rawData = JSON.parse('[{"999":{"name":"flags","line":1111,"file":"gen/moar/stage2/MASTNodes.nqp"},"998":{"name":"num-annotations","line":1120,"file":"gen/moar/stage2/MASTNodes.nqp"},"997":{"name":"annotations-offset","line":1098,"file":"gen/moar/stage2/MASTNodes.nqp"},"996":{"name":"write_uint16","line":80,"file":"gen/moar/stage2/MASTNodes.nqp"},"995":{"name":"outer","line":1028,"file":"gen/moar/stage2/MASTNodes.nqp"},"994":{"name":"name-idx","line":1093,"file":"gen/moar/stage2/MASTNodes.nqp"},"993":{"name":"cuuid-idx","line":1092,"file":"gen/moar/stage2/MASTNodes.nqp"},"992":{"name":"bytecode-length","line":1095,"file":"gen/moar/stage2/MASTNodes.nqp"},"991":{"name":"bytecode-offset","line":1096,"file":"gen/moar/stage2/MASTNodes.nqp"},"990":{"name":"debug_map_idxs","line":1013,"file":"gen/moar/stage2/MASTNodes.nqp"},"99":{"name":"stash_type","line":14,"file":"gen/moar/Metamodel.nqp"},"989":{"name":"handlers","line":1121,"file":"gen/moar/stage2/MASTNodes.nqp"},"988":{"name":"lexical-name-idxs","line":1107,"file":"gen/moar/stage2/MASTNodes.nqp"},"987":{"name":"write_frame","line":7215,"file":"gen/moar/stage2/QAST.nqp"},"986":{"name":"write_extops","line":7317,"file":"gen/moar/stage2/QAST.nqp"},"985":{"name":"write_sc_deps_table","line":7312,"file":"gen/moar/stage2/QAST.nqp"},"984":{"name":"align","line":7336,"file":"gen/moar/stage2/QAST.nqp"},"983":{"name":"main_frame","line":279,"file":"gen/moar/stage2/MASTNodes.nqp"},"982":{"name":"elems","line":7068,"file":"gen/moar/stage2/QAST.nqp"},"981":{"name":"elems","line":7008,"file":"gen/moar/stage2/QAST.nqp"},"980":{"name":"write_s","line":62,"file":"gen/moar/stage2/MASTNodes.nqp"},"98":"Stash","979":{"name":"serialized","line":297,"file":"gen/moar/stage2/MASTNodes.nqp"},"978":{"name":"size","line":7064,"file":"gen/moar/stage2/QAST.nqp"},"977":{"name":"size","line":7012,"file":"gen/moar/stage2/QAST.nqp"},"976":{"name":"debug_map","line":1009,"file":"gen/moar/stage2/MASTNodes.nqp"},"975":{"name":"static_lex_values","line":1108,"file":"gen/moar/stage2/MASTNodes.nqp"},"974":{"name":"lexical_types","line":1104,"file":"gen/moar/stage2/MASTNodes.nqp"},"973":{"name":"size","line":1122,"file":"gen/moar/stage2/MASTNodes.nqp"},"972":{"name":"align_section","line":7080,"file":"gen/moar/stage2/QAST.nqp"},"971":{"name":"write_header","line":7125,"file":"gen/moar/stage2/QAST.nqp"},"970":{"name":"set-bytecode-offset","line":1100,"file":"gen/moar/stage2/MASTNodes.nqp"},"97":{"name":"add_stash","line":210,"file":"gen/moar/Metamodel.nqp"},"969":{"name":"collect_bytecode","line":7285,"file":"gen/moar/stage2/QAST.nqp"},"968":{"name":"assemble","line":7363,"file":"gen/moar/stage2/QAST.nqp"},"967":{"name":"write_buf","line":86,"file":"gen/moar/stage2/MASTNodes.nqp"},"966":{"name":"annotations","line":1097,"file":"gen/moar/stage2/MASTNodes.nqp"},"965":{"name":"set-annotations-offset","line":1099,"file":"gen/moar/stage2/MASTNodes.nqp"},"964":{"name":"prepare","line":954,"file":"gen/moar/stage2/MASTNodes.nqp"},"963":{"name":"collect_extop_names","line":7306,"file":"gen/moar/stage2/QAST.nqp"},"962":{"name":"add-string","line":7119,"file":"gen/moar/stage2/QAST.nqp"},"961":{"name":"collect_sc_deps","line":7300,"file":"gen/moar/stage2/QAST.nqp"},"960":{"name":"prepare","line":7106,"file":"gen/moar/stage2/QAST.nqp"},"96":{"name":"set_name","line":159,"file":"gen/moar/Metamodel.nqp"},"959":{"name":"add-frame","line":7122,"file":"gen/moar/stage2/QAST.nqp"},"958":{"name":"writer","line":253,"file":"gen/moar/stage2/MASTNodes.nqp"},"957":{"name":"assemble","line":7467,"file":"gen/moar/stage2/QAST.nqp"},"956":{"name":"assemble_and_load","line":7478,"file":"gen/moar/stage2/QAST.nqp"},"955":{"name":"mbc","line":799,"file":"gen/moar/stage2/NQPHLL.nqp"},"954":{"name":"mainline_frame","line":273,"file":"gen/moar/stage2/MASTNodes.nqp"},"953":{"name":"main","line":1065,"file":"gen/moar/stage2/QASTNode.nqp"},"952":{"name":"load_frame","line":285,"file":"gen/moar/stage2/MASTNodes.nqp"},"951":{"name":"deserialize_frame","line":291,"file":"gen/moar/stage2/MASTNodes.nqp"},"950":{"name":"default","line":629,"file":"gen/moar/stage2/QASTNode.nqp"},"95":{"name":"BUILDALLPLAN","line":1256,"file":"gen/moar/stage2/nqpmo.nqp"},"949":{"name":"","line":6526,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"948":{"name":"","line":6559,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"947":{"name":"","line":6553,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"946":{"name":"","line":8076,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"945":{"name":"","line":7394,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"944":{"name":"get_frame_index","line":7435,"file":"gen/moar/stage2/QAST.nqp"},"943":{"name":"writer","line":1029,"file":"gen/moar/stage2/MASTNodes.nqp"},"942":{"name":"","line":6539,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"941":{"name":"value","line":496,"file":"gen/moar/stage2/QASTNode.nqp"},"940":{"name":"compile_node","line":6737,"file":"gen/moar/stage2/QAST.nqp"},"94":{"name":"BUILDALL","line":637,"file":"gen/moar/stage2/NQPCORE.setting"},"939":{"name":"clone_inner","line":5030,"file":"gen/moar/stage2/QAST.nqp"},"938":{"name":"capture_inner","line":5027,"file":"gen/moar/stage2/QAST.nqp"},"937":{"name":"add_local_debug_name","line":1005,"file":"gen/moar/stage2/MASTNodes.nqp"},"936":{"name":"local_debug_map","line":988,"file":"gen/moar/stage2/QASTNode.nqp"},"935":{"name":"","line":9527,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"934":{"name":"","line":6399,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"933":{"name":"new_with_operand_array","line":439,"file":"gen/moar/stage2/MASTNodes.nqp"},"932":{"name":"push_op","line":4708,"file":"gen/moar/stage2/QAST.nqp"},"931":{"name":"params","line":5012,"file":"gen/moar/stage2/QAST.nqp"},"930":{"name":"custom_args","line":920,"file":"gen/moar/stage2/QASTNode.nqp"},"93":"Perl6::Metamodel::ClassHOW","929":{"name":"contvar_locals","line":5046,"file":"gen/moar/stage2/QAST.nqp"},"928":{"name":"cloned_inners","line":5044,"file":"gen/moar/stage2/QAST.nqp"},"927":{"name":"captured_inners","line":5043,"file":"gen/moar/stage2/QAST.nqp"},"926":{"name":"","line":5774,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"925":{"name":"return_kind","line":4980,"file":"gen/moar/stage2/QAST.nqp"},"924":{"name":"","line":8400,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"923":{"name":"","line":9815,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"922":{"name":"alternative","line":761,"file":"gen/moar/stage2/QASTNode.nqp"},"921":{"name":"supports","line":757,"file":"gen/moar/stage2/QASTNode.nqp"},"920":{"name":"compile_node","line":6178,"file":"gen/moar/stage2/QAST.nqp"},"92":{"name":"new","line":3992,"file":"gen/moar/Metamodel.nqp"},"919":"QAST::VM","918":{"name":"new","line":750,"file":"gen/moar/stage2/QASTNode.nqp"},"917":{"name":"compile_node","line":6696,"file":"gen/moar/stage2/QAST.nqp"},"916":{"name":"compile_with_stmt_temps","line":6102,"file":"gen/moar/stage2/QAST.nqp"},"915":{"name":"compile_node","line":6090,"file":"gen/moar/stage2/QAST.nqp"},"914":{"name":"compile_node","line":6755,"file":"gen/moar/stage2/QAST.nqp"},"913":{"name":"","line":5564,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"912":{"name":"add-label","line":1152,"file":"gen/moar/stage2/MASTNodes.nqp"},"911":{"name":"write_buf_at","line":89,"file":"gen/moar/stage2/MASTNodes.nqp"},"910":{"name":"annotations-end","line":810,"file":"gen/moar/stage2/MASTNodes.nqp"},"91":"IO","909":{"name":"read_uint32_at","line":74,"file":"gen/moar/stage2/MASTNodes.nqp"},"908":{"name":"insert_bytecode","line":842,"file":"gen/moar/stage2/MASTNodes.nqp"},"907":{"name":"label-fixups","line":1143,"file":"gen/moar/stage2/MASTNodes.nqp"},"906":{"name":"labels","line":1142,"file":"gen/moar/stage2/MASTNodes.nqp"},"905":{"name":"compile_label","line":1177,"file":"gen/moar/stage2/MASTNodes.nqp"},"904":{"name":"","line":5571,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"903":{"name":"end-annotations","line":814,"file":"gen/moar/stage2/MASTNodes.nqp"},"902":{"name":"handlers","line":813,"file":"gen/moar/stage2/MASTNodes.nqp"},"901":{"name":"annotations-offset","line":809,"file":"gen/moar/stage2/MASTNodes.nqp"},"900":{"name":"labels","line":812,"file":"gen/moar/stage2/MASTNodes.nqp"},"90":{"name":"new_type","line":3997,"file":"gen/moar/Metamodel.nqp"},"9":{"name":"","line":2612,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"899":{"name":"label-fixups","line":811,"file":"gen/moar/stage2/MASTNodes.nqp"},"898":{"name":"bytecode","line":808,"file":"gen/moar/stage2/MASTNodes.nqp"},"897":{"name":"end_subbuffer","line":830,"file":"gen/moar/stage2/MASTNodes.nqp"},"896":{"name":"start_subbuffer","line":817,"file":"gen/moar/stage2/MASTNodes.nqp"},"895":{"name":"local_types","line":1101,"file":"gen/moar/stage2/MASTNodes.nqp"},"894":{"name":"isa","line":1342,"file":"gen/moar/stage2/nqpmo.nqp"},"893":{"name":"isa","line":721,"file":"gen/moar/stage2/NQPCORE.setting"},"892":{"name":"consume-all-chars","line":809,"file":"gen/moar/stage2/NQPCORE.setting"},"891":{"name":"add-bytes","line":800,"file":"gen/moar/stage2/NQPCORE.setting"},"890":{"name":"get_callsite_id_from_args","line":6953,"file":"gen/moar/stage2/QAST.nqp"},"89":{"name":"make_pun","line":2335,"file":"gen/moar/Metamodel.nqp"},"889":{"name":"callsites","line":1140,"file":"gen/moar/stage2/MASTNodes.nqp"},"888":{"name":"","line":7237,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"887":{"name":"fresh_o","line":4807,"file":"gen/moar/stage2/QAST.nqp"},"886":{"name":"arrange_args","line":2875,"file":"gen/moar/stage2/QAST.nqp"},"885":{"name":"","line":3042,"file":"gen/moar/stage2/QAST.nqp"},"884":{"name":"","line":7261,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"883":{"name":"","line":8286,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"882":{"name":"has_compile_time_value","line":208,"file":"gen/moar/stage2/QASTNode.nqp"},"881":{"name":"","line":7223,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"880":{"name":"needs_cond_passed","line":2126,"file":"gen/moar/stage2/QAST.nqp"},"88":{"name":"pun","line":2350,"file":"gen/moar/Metamodel.nqp"},"879":{"name":"keep-label","line":1148,"file":"gen/moar/stage2/MASTNodes.nqp"},"878":"MAST::Label","877":{"name":"new","line":416,"file":"gen/moar/stage2/MASTNodes.nqp"},"876":{"name":"unique","line":5063,"file":"gen/moar/stage2/QAST.nqp"},"875":{"name":"","line":2132,"file":"gen/moar/stage2/QAST.nqp"},"874":{"name":"","line":5453,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"873":{"name":"","line":5725,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"872":{"name":"lexical","line":5002,"file":"gen/moar/stage2/QAST.nqp"},"871":{"name":"","line":9251,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"870":{"name":"is_var","line":4976,"file":"gen/moar/stage2/QAST.nqp"},"87":{"name":"composable","line":141,"file":"gen/moar/Metamodel.nqp"},"869":{"name":"release_register","line":4833,"file":"gen/moar/stage2/QAST.nqp"},"868":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/QAST.moarvm"},"867":{"name":"bytecode","line":1094,"file":"gen/moar/stage2/MASTNodes.nqp"},"866":{"name":"","line":5446,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"865":{"name":"new","line":435,"file":"gen/moar/stage2/MASTNodes.nqp"},"864":{"name":"fresh_s","line":4806,"file":"gen/moar/stage2/QAST.nqp"},"863":{"name":"const_s","line":6725,"file":"gen/moar/stage2/QAST.nqp"},"862":{"name":"value","line":469,"file":"gen/moar/stage2/QASTNode.nqp"},"861":{"name":"compile_node","line":6733,"file":"gen/moar/stage2/QAST.nqp"},"860":{"name":"as_mast_clear_bindval","line":6658,"file":"gen/moar/stage2/QAST.nqp"},"86":{"name":"archetypes","line":3520,"file":"gen/moar/Metamodel.nqp"},"859":{"name":"local_kind","line":5007,"file":"gen/moar/stage2/QAST.nqp"},"858":{"name":"local","line":5006,"file":"gen/moar/stage2/QAST.nqp"},"857":{"name":"","line":3198,"file":"gen/moar/stage2/QAST.nqp"},"856":{"name":"append","line":1469,"file":"gen/moar/stage2/QAST.nqp"},"855":{"name":"result_reg","line":1466,"file":"gen/moar/stage2/QAST.nqp"},"854":{"name":"coercion","line":5132,"file":"gen/moar/stage2/QAST.nqp"},"853":{"name":"add_static_lex_value","line":990,"file":"gen/moar/stage2/MASTNodes.nqp"},"852":{"name":"mast_compunit","line":5065,"file":"gen/moar/stage2/QAST.nqp"},"851":"MAST::Lexical","850":{"name":"new","line":387,"file":"gen/moar/stage2/MASTNodes.nqp"},"85":{"name":"Str","line":181,"file":"SETTING::src/core.c/IO/Path.pm6"},"849":{"name":"register_lexical","line":4921,"file":"gen/moar/stage2/QAST.nqp"},"848":{"name":"add_lexical","line":976,"file":"gen/moar/stage2/MASTNodes.nqp"},"847":{"name":"add_lexical","line":4899,"file":"gen/moar/stage2/QAST.nqp"},"846":{"name":"set_code_object_idxs","line":1052,"file":"gen/moar/stage2/MASTNodes.nqp"},"845":{"name":"sc_idx","line":319,"file":"gen/moar/stage2/MASTNodes.nqp"},"844":{"name":"set_outer","line":1017,"file":"gen/moar/stage2/MASTNodes.nqp"},"843":{"name":"ACCEPTS","line":712,"file":"gen/moar/stage2/NQPCORE.setting"},"842":{"name":"compile_mastop","line":1520,"file":"gen/moar/stage2/QAST.nqp"},"841":{"name":"","line":1780,"file":"gen/moar/stage2/QAST.nqp"},"840":{"name":"","line":2890,"file":"gen/moar/stage2/QAST.nqp"},"84":{"name":"assign-scalar-no-whence-no-typecheck","line":4398,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"839":{"name":"compile_op","line":1500,"file":"gen/moar/stage2/QAST.nqp"},"838":{"name":"compile_node","line":6173,"file":"gen/moar/stage2/QAST.nqp"},"837":{"name":"add-string","line":1137,"file":"gen/moar/stage2/MASTNodes.nqp"},"836":{"name":"write_uint32","line":68,"file":"gen/moar/stage2/MASTNodes.nqp"},"835":{"name":"add-annotation","line":1251,"file":"gen/moar/stage2/MASTNodes.nqp"},"834":{"name":"new","line":612,"file":"gen/moar/stage2/MASTNodes.nqp"},"833":{"name":"line_and_column_of","line":2444,"file":"gen/moar/stage2/NQPHLL.nqp"},"832":{"name":"linefileof","line":2504,"file":"gen/moar/stage2/NQPHLL.nqp"},"831":{"name":"compile_annotation","line":6112,"file":"gen/moar/stage2/QAST.nqp"},"830":{"name":"compile_node","line":6081,"file":"gen/moar/stage2/QAST.nqp"},"83":{"name":"","line":4450,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"829":{"name":"result_kind","line":1467,"file":"gen/moar/stage2/QAST.nqp"},"828":{"name":"coerce","line":5122,"file":"gen/moar/stage2/QAST.nqp"},"827":"MAST::InstructionList","826":{"name":"new","line":1459,"file":"gen/moar/stage2/QAST.nqp"},"825":{"name":"index","line":375,"file":"gen/moar/stage2/MASTNodes.nqp"},"824":"MAST::Local","823":{"name":"new","line":369,"file":"gen/moar/stage2/MASTNodes.nqp"},"822":{"name":"add_local","line":999,"file":"gen/moar/stage2/MASTNodes.nqp"},"821":{"name":"fresh_register","line":4812,"file":"gen/moar/stage2/QAST.nqp"},"820":{"name":"type_to_register_kind","line":6798,"file":"gen/moar/stage2/QAST.nqp"},"82":{"name":"ASSIGN-KEY","line":123,"file":"SETTING::src/core.c/Hash.pm6"},"819":{"name":"register_local","line":4953,"file":"gen/moar/stage2/QAST.nqp"},"818":{"name":"add_param","line":4886,"file":"gen/moar/stage2/QAST.nqp"},"817":{"name":"compile_var","line":6269,"file":"gen/moar/stage2/QAST.nqp"},"816":{"name":"compile_node","line":6241,"file":"gen/moar/stage2/QAST.nqp"},"815":{"name":"compile_all_the_stmts","line":6124,"file":"gen/moar/stage2/QAST.nqp"},"814":"RegAlloc","813":{"name":"new","line":4795,"file":"gen/moar/stage2/QAST.nqp"},"812":{"name":"","line":5734,"file":"gen/moar/stage2/QAST.nqp"},"811":{"name":"no_inline","line":923,"file":"gen/moar/stage2/QASTNode.nqp"},"810":{"name":"is_thunk","line":922,"file":"gen/moar/stage2/QASTNode.nqp"},"81":{"name":"ASSIGN-KEY","line":420,"file":"SETTING::src/core.c/Any.pm6"},"809":{"name":"has_exit_handler","line":921,"file":"gen/moar/stage2/QASTNode.nqp"},"808":{"name":"BUILD","line":4868,"file":"gen/moar/stage2/QAST.nqp"},"807":"BlockInfo","806":{"name":"new","line":4862,"file":"gen/moar/stage2/QAST.nqp"},"805":{"name":"set_index","line":971,"file":"gen/moar/stage2/MASTNodes.nqp"},"804":{"name":"add_frame","line":257,"file":"gen/moar/stage2/MASTNodes.nqp"},"803":{"name":"BUILD","line":801,"file":"gen/moar/stage2/MASTNodes.nqp"},"802":"SubBuffer","801":{"name":"new","line":796,"file":"gen/moar/stage2/MASTNodes.nqp"},"800":{"name":"write_uint8","line":83,"file":"gen/moar/stage2/MASTNodes.nqp"},"80":{"name":"postcircumfix:<{ }>","line":9,"file":"SETTING::src/core.c/hash_slice.pm6"},"8":"CallCapture","799":{"name":"write_uint32_at","line":77,"file":"gen/moar/stage2/MASTNodes.nqp"},"798":{"name":"add-internal","line":7038,"file":"gen/moar/stage2/QAST.nqp"},"797":{"name":"add","line":7061,"file":"gen/moar/stage2/QAST.nqp"},"796":{"name":"callsites","line":7117,"file":"gen/moar/stage2/QAST.nqp"},"795":{"name":"string-heap","line":7116,"file":"gen/moar/stage2/QAST.nqp"},"794":{"name":"BUILD","line":921,"file":"gen/moar/stage2/MASTNodes.nqp"},"793":"MAST::Frame","792":{"name":"new","line":915,"file":"gen/moar/stage2/MASTNodes.nqp"},"791":{"name":"","line":5685,"file":"gen/moar/stage2/QAST.nqp"},"790":{"name":"compile_node","line":5675,"file":"gen/moar/stage2/QAST.nqp"},"79":{"name":"postcircumfix:<{ }>","line":3,"file":"SETTING::src/core.c/hash_slice.pm6"},"789":{"name":"hll","line":267,"file":"gen/moar/stage2/MASTNodes.nqp"},"788":{"name":"compile_node","line":5493,"file":"gen/moar/stage2/QAST.nqp"},"787":{"name":"as_mast","line":5366,"file":"gen/moar/stage2/QAST.nqp"},"786":{"name":"set-compunit","line":7115,"file":"gen/moar/stage2/QAST.nqp"},"785":{"name":"BUILD","line":243,"file":"gen/moar/stage2/MASTNodes.nqp"},"784":{"name":"BUILD","line":7096,"file":"gen/moar/stage2/QAST.nqp"},"783":"MAST::CompUnit","782":"MoarVM::BytecodeWriter","781":{"name":"to_mast","line":5069,"file":"gen/moar/stage2/QAST.nqp"},"780":"MASTCompilerInstance","78":{"name":"nominal","line":137,"file":"gen/moar/Metamodel.nqp"},"779":{"name":"to_mast","line":6839,"file":"gen/moar/stage2/QAST.nqp"},"778":{"name":"mast","line":795,"file":"gen/moar/stage2/NQPHLL.nqp"},"777":{"name":"finish","line":3095,"file":"gen/moar/stage2/NQPHLL.nqp"},"776":{"name":"","line":2590,"file":"gen/moar/World.nqp"},"775":{"name":"cleanup_tasks","line":457,"file":"gen/moar/World.nqp"},"774":{"name":"cleanup","line":4460,"file":"gen/moar/World.nqp"},"773":{"name":"report","line":393,"file":"gen/moar/Optimizer.nqp"},"772":{"name":"add_local_debug_mapping","line":983,"file":"gen/moar/stage2/QASTNode.nqp"},"771":{"name":"unique","line":242,"file":"gen/moar/stage2/QASTNode.nqp"},"770":{"name":"lexical_vars_to_locals","line":711,"file":"gen/moar/Optimizer.nqp"},"77":{"name":"base_type","line":5141,"file":"gen/moar/Metamodel.nqp"},"769":{"name":"LoweredAwayLexical","line":118,"file":"gen/moar/Optimizer.nqp"},"768":{"name":"simplify_takedispatcher","line":702,"file":"gen/moar/Optimizer.nqp"},"767":{"name":"delete_unused_autoslurpy","line":687,"file":"gen/moar/Optimizer.nqp"},"766":{"name":"delete_unused_magicals","line":618,"file":"gen/moar/Optimizer.nqp"},"765":{"name":"pop_block","line":81,"file":"gen/moar/Optimizer.nqp"},"764":{"name":"scopes_in","line":237,"file":"gen/moar/Optimizer.nqp"},"763":{"name":"name","line":105,"file":"gen/moar/stage2/NQPHLL.nqp"},"762":{"name":"backend","line":1781,"file":"gen/moar/stage2/NQPHLL.nqp"},"761":"Num","760":{"name":"Num","line":62,"file":"SETTING::src/core.c/Int.pm6"},"76":{"name":"check_instantiated","line":5136,"file":"gen/moar/Metamodel.nqp"},"759":{"name":"count","line":101,"file":"SETTING::src/core.c/Signature.pm6"},"758":{"name":"arity","line":97,"file":"SETTING::src/core.c/Signature.pm6"},"757":{"name":"simplify_refs","line":3159,"file":"gen/moar/Optimizer.nqp"},"756":{"name":"call_ct_chosen_multi","line":3123,"file":"gen/moar/Optimizer.nqp"},"755":{"name":"","line":3203,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"754":{"name":"","line":2970,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"753":{"name":"trial_bind","line":979,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"752":{"name":"trial_bind","line":390,"file":"gen/moar/Ops.nqp"},"751":{"name":"signature","line":21,"file":"SETTING::src/core.c/Code.pm6"},"750":{"name":"has_compile_time_value","line":551,"file":"gen/moar/stage2/QASTNode.nqp"},"75":{"name":"definite","line":5146,"file":"gen/moar/Metamodel.nqp"},"749":{"name":"Mu","line":109,"file":"gen/moar/Optimizer.nqp"},"748":{"name":"flat","line":174,"file":"gen/moar/stage2/QASTNode.nqp"},"747":{"name":"analyze_args_for_ct_call","line":2726,"file":"gen/moar/Optimizer.nqp"},"746":{"name":"onlystar","line":22,"file":"SETTING::src/core.c/Routine.pm6"},"745":{"name":"","line":2226,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"744":{"name":"optimize_call","line":1898,"file":"gen/moar/Optimizer.nqp"},"743":{"name":"op_eq_core","line":2349,"file":"gen/moar/Optimizer.nqp"},"742":{"name":"visit_want","line":2594,"file":"gen/moar/Optimizer.nqp"},"741":{"name":"resultchild","line":851,"file":"gen/moar/stage2/QASTNode.nqp"},"740":{"name":"named","line":164,"file":"gen/moar/stage2/QASTNode.nqp"},"74":{"name":"definite","line":146,"file":"gen/moar/Metamodel.nqp"},"739":{"name":"AST","line":117,"file":"gen/moar/Optimizer.nqp"},"738":{"name":"Regex","line":112,"file":"gen/moar/Optimizer.nqp"},"737":{"name":"PseudoStash","line":113,"file":"gen/moar/Optimizer.nqp"},"736":{"name":"has_compile_time_value","line":9,"file":"gen/moar/stage2/QASTNode.nqp"},"735":{"name":"register_getlexouter_usage","line":509,"file":"gen/moar/Optimizer.nqp"},"734":{"name":"register_call","line":507,"file":"gen/moar/Optimizer.nqp"},"733":{"name":"add_usage","line":491,"file":"gen/moar/Optimizer.nqp"},"732":{"name":"visit_op_children","line":1748,"file":"gen/moar/Optimizer.nqp"},"731":{"name":"is_outer_foldable","line":880,"file":"gen/moar/Optimizer.nqp"},"730":{"name":"optimize","line":952,"file":"gen/moar/Optimizer.nqp"},"73":{"name":"archetypes","line":5099,"file":"gen/moar/Metamodel.nqp"},"729":{"name":"visit_op","line":1324,"file":"gen/moar/Optimizer.nqp"},"728":{"name":"name","line":611,"file":"gen/moar/stage2/QASTNode.nqp"},"727":{"name":"add_decl","line":471,"file":"gen/moar/Optimizer.nqp"},"726":{"name":"decl","line":619,"file":"gen/moar/stage2/QASTNode.nqp"},"725":{"name":"scope","line":615,"file":"gen/moar/stage2/QASTNode.nqp"},"724":{"name":"visit_var","line":2667,"file":"gen/moar/Optimizer.nqp"},"723":{"name":"resultchild","line":802,"file":"gen/moar/stage2/QASTNode.nqp"},"722":{"name":"visit_children","line":2832,"file":"gen/moar/Optimizer.nqp"},"721":"BlockVarOptimizer","720":{"name":"push_block","line":78,"file":"gen/moar/Optimizer.nqp"},"72":{"name":"","line":4315,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"719":{"name":"visit_block","line":1107,"file":"gen/moar/Optimizer.nqp"},"718":{"name":"UNIT","line":108,"file":"gen/moar/Optimizer.nqp"},"717":{"name":"BUILD","line":315,"file":"gen/moar/Optimizer.nqp"},"716":"Problems","715":{"name":"new","line":310,"file":"gen/moar/Optimizer.nqp"},"714":{"name":"BUILD","line":874,"file":"gen/moar/Optimizer.nqp"},"713":"JunctionOptimizer","712":{"name":"new","line":869,"file":"gen/moar/Optimizer.nqp"},"711":{"name":"find_symbol","line":124,"file":"gen/moar/Optimizer.nqp"},"710":{"name":"force_value","line":222,"file":"gen/moar/Optimizer.nqp"},"71":{"name":"identity","line":4145,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"709":{"name":"find_lexical","line":182,"file":"gen/moar/Optimizer.nqp"},"708":{"name":"BUILD","line":53,"file":"gen/moar/Optimizer.nqp"},"707":"Symbols","706":{"name":"new","line":48,"file":"gen/moar/Optimizer.nqp"},"705":{"name":"optimize","line":1070,"file":"gen/moar/Optimizer.nqp"},"704":"Perl6::Optimizer","703":{"name":"optimize","line":122,"file":"gen/moar/Compiler.nqp"},"702":{"name":"ast","line":2309,"file":"gen/moar/stage2/NQPHLL.nqp"},"701":{"name":"syntaxcheck","line":135,"file":"gen/moar/Compiler.nqp"},"700":{"name":"pop_lexpad","line":279,"file":"gen/moar/World.nqp"},"70":{"name":"decontrv_plugin","line":4177,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"7":"Hash","699":{"name":"pop_lexpad","line":880,"file":"gen/moar/World.nqp"},"698":{"name":"annotate_self","line":221,"file":"gen/moar/stage2/QASTNode.nqp"},"697":{"name":"post_deserialize","line":1074,"file":"gen/moar/stage2/QASTNode.nqp"},"696":{"name":"sc","line":1062,"file":"gen/moar/stage2/QASTNode.nqp"},"695":{"name":"compilation_mode","line":1067,"file":"gen/moar/stage2/QASTNode.nqp"},"694":{"name":"repo_conflict_resolver","line":1078,"file":"gen/moar/stage2/QASTNode.nqp"},"693":{"name":"is_nested","line":1084,"file":"gen/moar/stage2/QASTNode.nqp"},"692":{"name":"pre_deserialize","line":1070,"file":"gen/moar/stage2/QASTNode.nqp"},"691":{"name":"load","line":1064,"file":"gen/moar/stage2/QASTNode.nqp"},"690":{"name":"code_ref_blocks","line":1081,"file":"gen/moar/stage2/QASTNode.nqp"},"69":{"name":"sink","line":712,"file":"SETTING::src/core.c/List.pm6"},"689":{"name":"hll","line":1063,"file":"gen/moar/stage2/QASTNode.nqp"},"688":"QAST::CompUnit","687":{"name":"new","line":1055,"file":"gen/moar/stage2/QASTNode.nqp"},"686":{"name":"fixup_tasks","line":3083,"file":"gen/moar/stage2/NQPHLL.nqp"},"685":{"name":"load_dependency_tasks","line":3078,"file":"gen/moar/stage2/NQPHLL.nqp"},"684":{"name":"code_ref_blocks","line":3073,"file":"gen/moar/stage2/NQPHLL.nqp"},"683":{"name":"sc","line":3064,"file":"gen/moar/stage2/NQPHLL.nqp"},"682":{"name":"blocktype","line":916,"file":"gen/moar/stage2/QASTNode.nqp"},"681":{"name":"CTXSAVE","line":1505,"file":"gen/moar/stage2/NQPHLL.nqp"},"680":{"name":"unshift","line":71,"file":"gen/moar/stage2/QASTNode.nqp"},"68":{"name":"SET-SELF","line":13,"file":"SETTING::src/core.c/IO/Path.pm6"},"679":{"name":"slurpy","line":628,"file":"gen/moar/stage2/QASTNode.nqp"},"678":{"name":"!clear_highwater","line":1819,"file":"gen/moar/stage2/QRegex.nqp"},"677":{"name":"statementlist_with_handlers","line":1846,"file":"gen/moar/Actions.nqp"},"676":{"name":"protos_to_sort","line":433,"file":"gen/moar/World.nqp"},"675":{"name":"sort_protos","line":952,"file":"gen/moar/World.nqp"},"674":{"name":"stub_check","line":424,"file":"gen/moar/World.nqp"},"673":{"name":"assert_stubs_defined","line":939,"file":"gen/moar/World.nqp"},"672":{"name":"add_phasers_handling_code","line":2759,"file":"gen/moar/World.nqp"},"671":{"name":"fixup_tasks","line":2961,"file":"gen/moar/stage2/NQPHLL.nqp"},"670":{"name":"add_fixup_task","line":3054,"file":"gen/moar/stage2/NQPHLL.nqp"},"67":{"name":"Str","line":61,"file":"SETTING::src/core.c/Str.pm6"},"669":{"name":"set_attribute","line":2862,"file":"gen/moar/World.nqp"},"668":"QAST::BVal","667":{"name":"new","line":489,"file":"gen/moar/stage2/QASTNode.nqp"},"666":{"name":"is_nested","line":3033,"file":"gen/moar/stage2/NQPHLL.nqp"},"665":{"name":"sub_id_to_sc_idx","line":445,"file":"gen/moar/World.nqp"},"664":{"name":"code_ref_blocks","line":2956,"file":"gen/moar/stage2/NQPHLL.nqp"},"663":{"name":"next_code_ref_num","line":2950,"file":"gen/moar/stage2/NQPHLL.nqp"},"662":{"name":"add_root_code_ref","line":3016,"file":"gen/moar/stage2/NQPHLL.nqp"},"661":{"name":"name","line":912,"file":"gen/moar/stage2/QASTNode.nqp"},"660":{"name":"add_cleanup_task","line":453,"file":"gen/moar/World.nqp"},"66":{"name":"Str","line":648,"file":"SETTING::src/core.c/Mu.pm6"},"659":{"name":"sub_id_to_code_object","line":441,"file":"gen/moar/World.nqp"},"658":{"name":"cuid","line":933,"file":"gen/moar/stage2/QASTNode.nqp"},"657":{"name":"code_object","line":926,"file":"gen/moar/stage2/QASTNode.nqp"},"656":{"name":"pop_code_object","line":411,"file":"gen/moar/World.nqp"},"655":{"name":"finish_code_object","line":2564,"file":"gen/moar/World.nqp"},"654":{"name":"attach_signature","line":2551,"file":"gen/moar/World.nqp"},"653":{"name":"value","line":514,"file":"gen/moar/stage2/QASTNode.nqp"},"652":"Signature","651":{"name":"create_signature","line":2457,"file":"gen/moar/World.nqp"},"650":{"name":"comp_unit","line":1301,"file":"gen/moar/Actions.nqp"},"65":{"name":"new","line":32,"file":"SETTING::src/core.c/IO/Path.pm6"},"649":{"name":"checks","line":558,"file":"gen/moar/World.nqp"},"648":{"name":"CHECK","line":4452,"file":"gen/moar/World.nqp"},"647":{"name":"compose","line":504,"file":"gen/moar/Metamodel.nqp"},"646":"!EVAL_MARKER","645":"!UNIT_MARKER","644":"Perl6::Metamodel::PackageHOW","643":{"name":"new_type","line":496,"file":"gen/moar/Metamodel.nqp"},"642":{"name":"pkg_create_mo","line":3263,"file":"gen/moar/World.nqp"},"641":{"name":"how","line":1375,"file":"gen/moar/stage2/QRegex.nqp"},"640":{"name":"add_unit_marker","line":840,"file":"gen/moar/World.nqp"},"64":{"name":"","line":33,"file":"SETTING::src/core.c/IO/Path.pm6"},"639":{"name":"compile_time_value","line":13,"file":"gen/moar/stage2/QASTNode.nqp"},"638":"Array","637":{"name":"new","line":245,"file":"SETTING::src/core.c/Array.pm6"},"636":{"name":"new","line":239,"file":"SETTING::src/core.c/Array.pm6"},"635":{"name":"mop_up_and_check","line":846,"file":"gen/moar/World.nqp"},"634":{"name":"cry_sorrows","line":4500,"file":"gen/moar/Grammar.nqp"},"633":{"name":"hash","line":1141,"file":"gen/moar/stage2/NQPCORE.setting"},"632":{"name":"explain_mystery","line":4440,"file":"gen/moar/Grammar.nqp"},"631":{"name":"install_doc_phaser","line":1433,"file":"gen/moar/Actions.nqp"},"630":{"name":"install_doc_phaser","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"63":"Code","629":{"name":"final","line":192,"file":"gen/moar/stage2/QASTNode.nqp"},"628":"QAST::Stmt","627":{"name":"new","line":844,"file":"gen/moar/stage2/QASTNode.nqp"},"626":{"name":"sink","line":1124,"file":"gen/moar/Actions.nqp"},"625":{"name":"nosink","line":190,"file":"gen/moar/stage2/QASTNode.nqp"},"624":{"name":"autosink","line":1142,"file":"gen/moar/Actions.nqp"},"623":{"name":"statementlist","line":1488,"file":"gen/moar/Actions.nqp"},"622":{"name":"eat_terminator","line":990,"file":"gen/moar/Grammar.nqp"},"621":{"name":"","line":1604,"file":"gen/moar/Actions.nqp"},"620":{"name":"statement","line":1602,"file":"gen/moar/Actions.nqp"},"62":{"name":"","line":2025,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"619":{"name":"statement_mod_loop","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"618":{"name":"statement_mod_cond","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"617":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"616":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"615":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"614":"NQPMatch","613":{"name":"ACCEPTS","line":2351,"file":"gen/moar/stage2/QRegex.nqp"},"612":"NQPRegex","611":{"name":"new","line":2332,"file":"gen/moar/stage2/QRegex.nqp"},"610":{"name":"add_mystery","line":4391,"file":"gen/moar/Grammar.nqp"},"61":{"name":"","line":342,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"609":{"name":"name","line":692,"file":"gen/moar/stage2/QASTNode.nqp"},"608":{"name":"WANTALL","line":48,"file":"gen/moar/Actions.nqp"},"607":{"name":"handle_special_call_names","line":10135,"file":"gen/moar/Actions.nqp"},"606":{"name":"istype","line":10487,"file":"gen/moar/Actions.nqp"},"605":{"name":"find_macro_routine","line":6260,"file":"gen/moar/Actions.nqp"},"604":{"name":"attach_adverbs","line":4540,"file":"gen/moar/World.nqp"},"603":{"name":"term:sym<name>","line":6375,"file":"gen/moar/Actions.nqp"},"602":{"name":"args","line":6616,"file":"gen/moar/Actions.nqp"},"601":{"name":"arglist","line":6683,"file":"gen/moar/Actions.nqp"},"600":{"name":"EXPR","line":7073,"file":"gen/moar/Actions.nqp"},"60":"Str","6":"BOOTHash","599":{"name":"!clone_match_at","line":1640,"file":"gen/moar/stage2/QRegex.nqp"},"598":{"name":"infixish","line":3782,"file":"gen/moar/Grammar.nqp"},"597":{"name":"made","line":1158,"file":"gen/moar/stage2/QRegex.nqp"},"596":{"name":"termish","line":1626,"file":"gen/moar/stage2/NQPHLL.nqp"},"595":{"name":"terminator:sym<;>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"594":{"name":"terminator","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"593":{"name":"postfixish","line":3823,"file":"gen/moar/Grammar.nqp"},"592":{"name":"term:sym<value>","line":6773,"file":"gen/moar/Actions.nqp"},"591":{"name":"value:sym<quote>","line":8222,"file":"gen/moar/Actions.nqp"},"590":{"name":"ast","line":1159,"file":"gen/moar/stage2/QRegex.nqp"},"59":{"name":"","line":1,"file":"SETTING::src/core.c/Env.pm6"},"589":{"name":"quote:sym<dblq>","line":8643,"file":"gen/moar/Actions.nqp"},"588":{"name":"set_braid_from","line":1387,"file":"gen/moar/stage2/QRegex.nqp"},"587":{"name":"make","line":1157,"file":"gen/moar/stage2/QRegex.nqp"},"586":{"name":"shift","line":731,"file":"gen/moar/stage2/NQPCORE.setting"},"585":"QAST::Want","584":{"name":"new","line":544,"file":"gen/moar/stage2/QASTNode.nqp"},"583":{"name":"returns","line":159,"file":"gen/moar/stage2/QASTNode.nqp"},"582":"QAST::WVal","581":{"name":"new","line":507,"file":"gen/moar/stage2/QASTNode.nqp"},"580":{"name":"join","line":1073,"file":"gen/moar/stage2/NQPCORE.setting"},"58":{"name":"language_version","line":79,"file":"gen/moar/Compiler.nqp"},"579":{"name":"sorted_keys","line":1150,"file":"gen/moar/stage2/NQPCORE.setting"},"578":{"name":"const_cache","line":449,"file":"gen/moar/World.nqp"},"577":{"name":"add_constant","line":3000,"file":"gen/moar/World.nqp"},"576":{"name":"add_string_constant","line":3093,"file":"gen/moar/World.nqp"},"575":{"name":"nibbler","line":10803,"file":"gen/moar/Actions.nqp"},"574":"NFAType","573":{"name":"optimize","line":817,"file":"gen/moar/stage2/QRegex.nqp"},"572":{"name":"mergesubstates","line":665,"file":"gen/moar/stage2/QRegex.nqp"},"571":{"name":"NFA","line":571,"file":"gen/moar/stage2/NQPCORE.setting"},"570":{"name":"mergesubrule","line":560,"file":"gen/moar/stage2/QRegex.nqp"},"57":{"name":"INITIALIZE-DYNAMIC","line":1006,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"569":{"name":"addstate","line":84,"file":"gen/moar/stage2/QRegex.nqp"},"568":{"name":"new","line":73,"file":"gen/moar/stage2/QRegex.nqp"},"567":{"name":"cache_add","line":1414,"file":"gen/moar/stage2/nqpmo.nqp"},"566":{"name":"name","line":386,"file":"gen/moar/stage2/NQPCORE.setting"},"565":{"name":"methods","line":1280,"file":"gen/moar/stage2/nqpmo.nqp"},"564":{"name":"!protoregex_table","line":1721,"file":"gen/moar/stage2/QRegex.nqp"},"563":{"name":"","line":1705,"file":"gen/moar/stage2/QRegex.nqp"},"562":{"name":"cache","line":1396,"file":"gen/moar/stage2/nqpmo.nqp"},"561":{"name":"!protoregex_nfa","line":1704,"file":"gen/moar/stage2/QRegex.nqp"},"560":{"name":"escape","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"56":"VMString","559":{"name":"starter","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"558":{"name":"!INTERPOLATE","line":2268,"file":"gen/moar/stage2/QRegex.nqp"},"557":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"556":{"name":"do_nibbling","line":5541,"file":"gen/moar/Grammar.nqp"},"555":{"name":"nibbler","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"554":{"name":"nibble","line":257,"file":"gen/moar/Grammar.nqp"},"553":{"name":"associative_delegate","line":1667,"file":"gen/moar/stage2/nqpmo.nqp"},"552":{"name":"positional_delegate","line":1663,"file":"gen/moar/stage2/nqpmo.nqp"},"551":{"name":"auto_viv_container","line":1647,"file":"gen/moar/stage2/nqpmo.nqp"},"550":{"name":"box_target","line":1643,"file":"gen/moar/stage2/nqpmo.nqp"},"55":{"name":"DYNAMIC","line":33,"file":"SETTING::src/core.c/stubs.pm6"},"549":{"name":"type","line":1623,"file":"gen/moar/stage2/nqpmo.nqp"},"548":{"name":"name","line":1619,"file":"gen/moar/stage2/nqpmo.nqp"},"547":{"name":"is_array_type","line":820,"file":"gen/moar/stage2/nqpmo.nqp"},"546":{"name":"compose_repr","line":935,"file":"gen/moar/stage2/nqpmo.nqp"},"545":{"name":"BUILDPLAN","line":1252,"file":"gen/moar/stage2/nqpmo.nqp"},"544":{"name":"create_BUILDPLAN","line":1200,"file":"gen/moar/stage2/nqpmo.nqp"},"543":{"name":"find_method","line":1379,"file":"gen/moar/stage2/nqpmo.nqp"},"542":{"name":"publish_boolification_spec","line":1176,"file":"gen/moar/stage2/nqpmo.nqp"},"541":{"name":"reverse","line":1156,"file":"gen/moar/stage2/nqpmo.nqp"},"540":{"name":"publish_method_cache","line":1162,"file":"gen/moar/stage2/nqpmo.nqp"},"54":"IO::Path","539":{"name":"role_typecheck_list","line":331,"file":"gen/moar/stage2/nqpmo.nqp"},"538":{"name":"role_typecheck_list","line":1276,"file":"gen/moar/stage2/nqpmo.nqp"},"537":{"name":"mro","line":1268,"file":"gen/moar/stage2/nqpmo.nqp"},"536":{"name":"publish_type_cache","line":1136,"file":"gen/moar/stage2/nqpmo.nqp"},"535":{"name":"compose","line":1671,"file":"gen/moar/stage2/nqpmo.nqp"},"534":{"name":"attributes","line":1320,"file":"gen/moar/stage2/nqpmo.nqp"},"533":{"name":"incorporate_multi_candidates","line":991,"file":"gen/moar/stage2/nqpmo.nqp"},"532":{"name":"parents","line":1264,"file":"gen/moar/stage2/nqpmo.nqp"},"531":{"name":"compute_c3_mro","line":1044,"file":"gen/moar/stage2/nqpmo.nqp"},"530":{"name":"attributes","line":323,"file":"gen/moar/stage2/nqpmo.nqp"},"53":{"name":"new","line":40,"file":"SETTING::src/core.c/IO/Path.pm6"},"529":{"name":"add_method","line":785,"file":"gen/moar/stage2/nqpmo.nqp"},"528":{"name":"method_table","line":1299,"file":"gen/moar/stage2/nqpmo.nqp"},"527":{"name":"has_method","line":343,"file":"gen/moar/stage2/nqpmo.nqp"},"526":{"name":"methods","line":294,"file":"gen/moar/stage2/nqpmo.nqp"},"525":{"name":"collisions","line":310,"file":"gen/moar/stage2/nqpmo.nqp"},"524":{"name":"apply","line":356,"file":"gen/moar/stage2/nqpmo.nqp"},"523":{"name":"compose","line":270,"file":"gen/moar/stage2/nqpmo.nqp"},"522":{"name":"add_method","line":231,"file":"gen/moar/stage2/nqpmo.nqp"},"521":{"name":"save","line":549,"file":"gen/moar/stage2/QRegex.nqp"},"520":{"name":"addedge","line":93,"file":"gen/moar/stage2/QRegex.nqp"},"52":{"name":"new","line":31,"file":"SETTING::src/core.c/IO/Path.pm6"},"519":{"name":"ord-or-str","line":291,"file":"gen/moar/stage2/QRegex.nqp"},"518":{"name":"subtype","line":381,"file":"gen/moar/stage2/QASTNode.nqp"},"517":{"name":"literal","line":297,"file":"gen/moar/stage2/QRegex.nqp"},"516":"QAST::Regex","515":{"name":"new","line":367,"file":"gen/moar/stage2/QASTNode.nqp"},"514":{"name":"instantiate_generic","line":761,"file":"gen/moar/stage2/QRegex.nqp"},"513":"QRegex::NFA","512":{"name":"from_saved","line":80,"file":"gen/moar/stage2/QRegex.nqp"},"511":"NQPRegex","510":{"name":"clone","line":583,"file":"gen/moar/stage2/NQPCORE.setting"},"51":{"name":"IO","line":35,"file":"SETTING::src/core.c/Str.pm6"},"509":{"name":"instantiate_generic","line":603,"file":"gen/moar/stage2/NQPCORE.setting"},"508":{"name":"name","line":615,"file":"gen/moar/stage2/NQPCORE.setting"},"507":{"name":"BUILD","line":210,"file":"gen/moar/stage2/nqpmo.nqp"},"506":"NQPConcreteRoleHOW","505":{"name":"new","line":204,"file":"gen/moar/stage2/nqpmo.nqp"},"504":"stop","503":{"name":"new_type","line":226,"file":"gen/moar/stage2/nqpmo.nqp"},"502":{"name":"","line":21,"file":"gen/moar/Grammar.nqp"},"501":{"name":"specialize","line":588,"file":"gen/moar/stage2/nqpmo.nqp"},"500":{"name":"specialize","line":438,"file":"gen/moar/stage2/nqpmo.nqp"},"50":"List","5":{"name":"EVALFILE","line":103,"file":"SETTING::src/core.c/ForeignCode.pm6"},"499":{"name":"compose","line":886,"file":"gen/moar/stage2/nqpmo.nqp"},"498":{"name":"add_role","line":876,"file":"gen/moar/stage2/nqpmo.nqp"},"497":{"name":"add_parent","line":833,"file":"gen/moar/stage2/nqpmo.nqp"},"496":"NQPMixinCacheHOW","495":{"name":"new","line":673,"file":"gen/moar/stage2/nqpmo.nqp"},"494":"mixin cache","493":{"name":"new_type","line":676,"file":"gen/moar/stage2/nqpmo.nqp"},"492":{"name":"setup_mixin_cache","line":1430,"file":"gen/moar/stage2/nqpmo.nqp"},"491":{"name":"set_is_mixin","line":1428,"file":"gen/moar/stage2/nqpmo.nqp"},"490":{"name":"BUILD","line":751,"file":"gen/moar/stage2/nqpmo.nqp"},"49":{"name":"","line":3755,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"489":"NQPClassHOW","488":{"name":"new","line":745,"file":"gen/moar/stage2/nqpmo.nqp"},"487":"Perl6::QGrammar+{qq}+{stop}","486":{"name":"new_type","line":771,"file":"gen/moar/stage2/nqpmo.nqp"},"485":{"name":"name","line":442,"file":"gen/moar/stage2/nqpmo.nqp"},"484":{"name":"flush_cache","line":1403,"file":"gen/moar/stage2/nqpmo.nqp"},"483":{"name":"generate_mixin","line":1447,"file":"gen/moar/stage2/nqpmo.nqp"},"482":{"name":"","line":679,"file":"gen/moar/stage2/nqpmo.nqp"},"481":{"name":"name","line":649,"file":"gen/moar/stage2/nqpmo.nqp"},"480":{"name":"BUILD","line":426,"file":"gen/moar/stage2/nqpmo.nqp"},"48":{"name":"IO","line":387,"file":"SETTING::src/core.c/Cool.pm6"},"479":"NQPCurriedRoleHOW","478":{"name":"new","line":420,"file":"gen/moar/stage2/nqpmo.nqp"},"477":"stop","476":{"name":"new_type","line":431,"file":"gen/moar/stage2/nqpmo.nqp"},"475":{"name":"curry","line":582,"file":"gen/moar/stage2/nqpmo.nqp"},"474":{"name":"unbalanced","line":60,"file":"gen/moar/Grammar.nqp"},"473":{"name":"mixin","line":1434,"file":"gen/moar/stage2/nqpmo.nqp"},"472":{"name":"apply_tweak","line":5649,"file":"gen/moar/Grammar.nqp"},"471":{"name":"truly","line":5644,"file":"gen/moar/Grammar.nqp"},"470":{"name":"tweak_qq","line":5657,"file":"gen/moar/Grammar.nqp"},"47":{"name":"name","line":155,"file":"gen/moar/Metamodel.nqp"},"469":"Perl6::QGrammar","468":{"name":"con_lang","line":84,"file":"gen/moar/Grammar.nqp"},"467":{"name":"quote_lang_cache","line":5714,"file":"gen/moar/World.nqp"},"466":{"name":"name","line":1303,"file":"gen/moar/stage2/nqpmo.nqp"},"465":{"name":"lang_key","line":68,"file":"gen/moar/Grammar.nqp"},"464":{"name":"quote_lang","line":67,"file":"gen/moar/Grammar.nqp"},"463":{"name":"quote:sym<dblq>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"462":{"name":"quote","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"461":{"name":"value:sym<quote>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"460":{"name":"value","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"46":{"name":"","line":4970,"file":"gen/moar/Metamodel.nqp"},"459":{"name":"term:sym<value>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"458":{"name":"stdstopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"457":{"name":"arglist","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"456":{"name":"args","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"455":{"name":"is_lexical","line":369,"file":"gen/moar/World.nqp"},"454":{"name":"is_lexical","line":5219,"file":"gen/moar/World.nqp"},"453":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/World.moarvm"},"452":{"name":"is_pseudo_package","line":4673,"file":"gen/moar/World.nqp"},"451":{"name":"is_pseudo_package","line":4815,"file":"gen/moar/World.nqp"},"450":{"name":"is_name","line":4820,"file":"gen/moar/World.nqp"},"45":{"name":"coerce","line":4953,"file":"gen/moar/Metamodel.nqp"},"449":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/World.moarvm"},"448":{"name":"package","line":1354,"file":"gen/moar/stage2/QRegex.nqp"},"447":{"name":"find_symbol","line":5054,"file":"gen/moar/World.nqp"},"446":{"name":"is_type","line":4845,"file":"gen/moar/World.nqp"},"445":{"name":"components","line":4550,"file":"gen/moar/World.nqp"},"444":{"name":"get_who","line":4647,"file":"gen/moar/World.nqp"},"443":{"name":"contains_indirect_lookup","line":4568,"file":"gen/moar/World.nqp"},"442":{"name":"to","line":1148,"file":"gen/moar/stage2/QRegex.nqp"},"441":{"name":"Str","line":1151,"file":"gen/moar/stage2/QRegex.nqp"},"440":{"name":"Bool","line":1128,"file":"gen/moar/stage2/QRegex.nqp"},"44":{"name":"accepts_type","line":4947,"file":"gen/moar/Metamodel.nqp"},"439":"LongName","438":{"name":"dissect_longname","line":4728,"file":"gen/moar/World.nqp"},"437":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"436":{"name":"name","line":2832,"file":"gen/moar/Actions.nqp"},"435":{"name":"morename","line":590,"file":"gen/moar/Grammar.nqp"},"434":{"name":"apostrophe","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"433":{"name":"!cursor_pass_quick","line":1598,"file":"gen/moar/stage2/QRegex.nqp"},"432":{"name":"ident","line":2008,"file":"gen/moar/stage2/QRegex.nqp"},"431":{"name":"identifier","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"430":{"name":"name","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"43":{"name":"type_check","line":4939,"file":"gen/moar/Metamodel.nqp"},"429":{"name":"longname","line":595,"file":"gen/moar/Grammar.nqp"},"428":{"name":"term:sym<name>","line":3154,"file":"gen/moar/Grammar.nqp"},"427":{"name":"states","line":119,"file":"gen/moar/stage2/QRegex.nqp"},"426":{"name":"run","line":735,"file":"gen/moar/stage2/QRegex.nqp"},"425":{"name":"!protoregex","line":1676,"file":"gen/moar/stage2/QRegex.nqp"},"424":{"name":"term","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"423":{"name":"arg_flat_nok","line":3748,"file":"gen/moar/Grammar.nqp"},"422":{"name":"termish","line":3715,"file":"gen/moar/Grammar.nqp"},"421":{"name":"EXPR","line":1222,"file":"gen/moar/stage2/NQPHLL.nqp"},"420":{"name":"EXPR","line":3758,"file":"gen/moar/Grammar.nqp"},"42":{"name":"parents","line":1219,"file":"gen/moar/Metamodel.nqp"},"419":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"418":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"417":{"name":"before","line":1924,"file":"gen/moar/stage2/QRegex.nqp"},"416":{"name":"statement","line":957,"file":"gen/moar/Grammar.nqp"},"415":{"name":"!cursor_pos","line":1613,"file":"gen/moar/stage2/QRegex.nqp"},"414":{"name":"from","line":1146,"file":"gen/moar/stage2/QRegex.nqp"},"413":{"name":"shallow_copy","line":900,"file":"gen/moar/Grammar.nqp"},"412":{"name":"slangs","line":1266,"file":"gen/moar/stage2/QRegex.nqp"},"411":{"name":"statementlist","line":890,"file":"gen/moar/Grammar.nqp"},"410":{"name":"traced","line":1312,"file":"gen/moar/stage2/nqpmo.nqp"},"41":{"name":"type_check_parents","line":3350,"file":"gen/moar/Metamodel.nqp"},"409":{"name":"set_actions","line":1347,"file":"gen/moar/stage2/QRegex.nqp"},"408":{"name":"slang_actions","line":1274,"file":"gen/moar/stage2/QRegex.nqp"},"407":{"name":"!clone","line":1103,"file":"gen/moar/stage2/QRegex.nqp"},"406":{"name":"braid","line":1386,"file":"gen/moar/stage2/QRegex.nqp"},"405":{"name":"clone_braid_from","line":1388,"file":"gen/moar/stage2/QRegex.nqp"},"404":{"name":"!shared","line":1672,"file":"gen/moar/stage2/QRegex.nqp"},"403":{"name":"orig","line":1144,"file":"gen/moar/stage2/QRegex.nqp"},"402":{"name":"check_PACKAGE_oopsies","line":1303,"file":"gen/moar/stage2/QRegex.nqp"},"401":{"name":"LANG","line":1465,"file":"gen/moar/stage2/NQPHLL.nqp"},"400":{"name":"slang_grammar","line":1270,"file":"gen/moar/stage2/QRegex.nqp"},"40":{"name":"!get_nonsignatured_candidate","line":3718,"file":"gen/moar/Metamodel.nqp"},"4":{"name":"<unit>","line":1,"file":"-e"},"399":{"name":"FOREIGN_LANG","line":1340,"file":"gen/moar/Grammar.nqp"},"398":"QAST::Op","397":{"name":"new","line":683,"file":"gen/moar/stage2/QASTNode.nqp"},"396":"QAST::SVal","395":{"name":"new","line":461,"file":"gen/moar/stage2/QASTNode.nqp"},"394":{"name":"op","line":696,"file":"gen/moar/stage2/QASTNode.nqp"},"393":{"name":"list","line":67,"file":"gen/moar/stage2/QASTNode.nqp"},"392":{"name":"sunk","line":189,"file":"gen/moar/stage2/QASTNode.nqp"},"391":{"name":"setflag","line":184,"file":"gen/moar/stage2/QASTNode.nqp"},"390":{"name":"isflag","line":186,"file":"gen/moar/stage2/QASTNode.nqp"},"39":{"name":"pretending_to_be","line":389,"file":"gen/moar/Metamodel.nqp"},"389":{"name":"wanted","line":188,"file":"gen/moar/stage2/QASTNode.nqp"},"388":{"name":"wanted","line":79,"file":"gen/moar/Actions.nqp"},"387":{"name":"WANTED","line":272,"file":"gen/moar/Actions.nqp"},"386":{"name":"ann","line":227,"file":"gen/moar/stage2/QASTNode.nqp"},"385":{"name":"cur_lexpad","line":285,"file":"gen/moar/World.nqp"},"384":{"name":"cur_lexpad","line":885,"file":"gen/moar/World.nqp"},"383":{"name":"finishpad","line":1923,"file":"gen/moar/Actions.nqp"},"382":{"name":"finishpad","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"381":{"name":"add_load_dependency_task","line":3043,"file":"gen/moar/stage2/NQPHLL.nqp"},"380":{"name":"sc","line":2946,"file":"gen/moar/stage2/NQPHLL.nqp"},"38":{"name":"type_check","line":3646,"file":"gen/moar/Metamodel.nqp"},"379":{"name":"add_object","line":3007,"file":"gen/moar/stage2/NQPHLL.nqp"},"378":{"name":"add_object_if_no_sc","line":5678,"file":"gen/moar/World.nqp"},"377":{"name":"push_code_object","line":407,"file":"gen/moar/World.nqp"},"376":{"name":"stub_code_object","line":2541,"file":"gen/moar/World.nqp"},"375":{"name":"push","line":69,"file":"gen/moar/stage2/QASTNode.nqp"},"374":{"name":"value","line":630,"file":"gen/moar/stage2/QASTNode.nqp"},"373":"QAST::Var","372":{"name":"new","line":601,"file":"gen/moar/stage2/QASTNode.nqp"},"371":{"name":"install_lexical_symbol","line":1724,"file":"gen/moar/World.nqp"},"370":{"name":"set_package","line":1360,"file":"gen/moar/stage2/QRegex.nqp"},"37":{"name":"is_narrower","line":2299,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"369":{"name":"FLATTENABLE_HASH","line":506,"file":"SETTING::src/core.c/Map.pm6"},"368":{"name":"stash_hash","line":5582,"file":"gen/moar/World.nqp"},"367":{"name":"force_value","line":5322,"file":"gen/moar/World.nqp"},"366":{"name":"blocks","line":252,"file":"gen/moar/World.nqp"},"365":{"name":"find_single_symbol","line":4991,"file":"gen/moar/World.nqp"},"364":{"name":"unitstart","line":1477,"file":"gen/moar/Actions.nqp"},"363":{"name":"unitstart","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"362":{"name":"comp_unit_stage1","line":718,"file":"gen/moar/World.nqp"},"361":{"name":"!cursor_capture","line":1543,"file":"gen/moar/stage2/QRegex.nqp"},"360":{"name":"symbol","line":948,"file":"gen/moar/stage2/QASTNode.nqp"},"36":{"name":"target_type","line":4892,"file":"gen/moar/Metamodel.nqp"},"359":{"name":"Str","line":740,"file":"gen/moar/stage2/NQPCORE.setting"},"358":{"name":"SET_BLOCK_OUTER_CTX","line":1531,"file":"gen/moar/stage2/NQPHLL.nqp"},"357":{"name":"lang-version","line":1484,"file":"gen/moar/Actions.nqp"},"356":{"name":"load-lang-ver","line":586,"file":"gen/moar/World.nqp"},"355":{"name":"!cursor_next","line":1617,"file":"gen/moar/stage2/QRegex.nqp"},"354":{"name":"!cursor_push_cstack","line":1555,"file":"gen/moar/stage2/QRegex.nqp"},"353":{"name":"!reduce","line":1653,"file":"gen/moar/stage2/QRegex.nqp"},"352":{"name":"!cursor_pass","line":1587,"file":"gen/moar/stage2/QRegex.nqp"},"351":{"name":"MARKER","line":1437,"file":"gen/moar/stage2/NQPHLL.nqp"},"350":{"name":"run_alt","line":746,"file":"gen/moar/stage2/QRegex.nqp"},"35":{"name":"constraint_type","line":4896,"file":"gen/moar/Metamodel.nqp"},"349":{"name":"cache_get","line":1409,"file":"gen/moar/stage2/nqpmo.nqp"},"348":{"name":"!alt","line":1735,"file":"gen/moar/stage2/QRegex.nqp"},"347":{"name":"ww","line":1981,"file":"gen/moar/stage2/QRegex.nqp"},"346":{"name":"!dba","line":1786,"file":"gen/moar/stage2/QRegex.nqp"},"345":{"name":"!fresh_highexpect","line":1809,"file":"gen/moar/stage2/QRegex.nqp"},"344":{"name":"_ws","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"343":{"name":"Bool","line":2247,"file":"gen/moar/stage2/QRegex.nqp"},"342":{"name":"pos","line":1147,"file":"gen/moar/stage2/QRegex.nqp"},"341":{"name":"!cursor_start_fail","line":1529,"file":"gen/moar/stage2/QRegex.nqp"},"340":{"name":"MARKED","line":1454,"file":"gen/moar/stage2/NQPHLL.nqp"},"34":{"name":"nominalizable_kind","line":5057,"file":"gen/moar/Metamodel.nqp"},"339":{"name":"ws","line":678,"file":"gen/moar/Grammar.nqp"},"338":{"name":"lang-version","line":864,"file":"gen/moar/Grammar.nqp"},"337":{"name":"!cursor_fail","line":1605,"file":"gen/moar/stage2/QRegex.nqp"},"336":{"name":"bom","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"335":{"name":"annotate","line":217,"file":"gen/moar/stage2/QASTNode.nqp"},"334":"QAST::Block","333":{"name":"new","line":903,"file":"gen/moar/stage2/QASTNode.nqp"},"332":{"name":"node","line":153,"file":"gen/moar/stage2/QASTNode.nqp"},"331":{"name":"set","line":142,"file":"gen/moar/stage2/QASTNode.nqp"},"330":"QAST::Stmts","33":{"name":"!find_wrappee","line":341,"file":"gen/moar/Metamodel.nqp"},"329":{"name":"new","line":795,"file":"gen/moar/stage2/QASTNode.nqp"},"328":{"name":"create_block","line":256,"file":"gen/moar/World.nqp"},"327":{"name":"push_lexpad","line":271,"file":"gen/moar/World.nqp"},"326":{"name":"context","line":3037,"file":"gen/moar/stage2/NQPHLL.nqp"},"325":{"name":"push_lexpad","line":875,"file":"gen/moar/World.nqp"},"324":{"name":"comp_unit_stage0","line":680,"file":"gen/moar/World.nqp"},"323":{"name":"reset_language_version","line":69,"file":"gen/moar/Compiler.nqp"},"322":{"name":"onlyname","line":524,"file":"gen/moar/stage2/NQPCORE.setting"},"321":{"name":"prepare-hash","line":501,"file":"gen/moar/stage2/NQPCORE.setting"},"320":{"name":"prepare-list","line":480,"file":"gen/moar/stage2/NQPCORE.setting"},"32":{"name":"wrappee","line":367,"file":"gen/moar/Metamodel.nqp"},"319":{"name":"has-captures","line":472,"file":"gen/moar/stage2/NQPCORE.setting"},"318":{"name":"CAPS","line":568,"file":"gen/moar/stage2/NQPCORE.setting"},"317":{"name":"MATCH","line":2144,"file":"gen/moar/stage2/QRegex.nqp"},"316":{"name":"!cursor_start","line":1485,"file":"gen/moar/stage2/QRegex.nqp"},"315":{"name":"comp_unit","line":832,"file":"gen/moar/Grammar.nqp"},"314":{"name":"is_precompilation_mode","line":3029,"file":"gen/moar/stage2/NQPHLL.nqp"},"313":{"name":"add_initializations","line":5335,"file":"gen/moar/World.nqp"},"312":{"name":"BUILD","line":526,"file":"gen/moar/World.nqp"},"311":{"name":"BUILD","line":237,"file":"gen/moar/World.nqp"},"310":"SCRef","31":{"name":"archetypes","line":4851,"file":"gen/moar/Metamodel.nqp"},"309":{"name":"BUILD","line":2933,"file":"gen/moar/stage2/NQPHLL.nqp"},"308":"Perl6CompilationContext","307":{"name":"context_class","line":494,"file":"gen/moar/World.nqp"},"306":{"name":"BUILD","line":2983,"file":"gen/moar/stage2/NQPHLL.nqp"},"305":"Perl6::World","304":{"name":"target","line":1145,"file":"gen/moar/stage2/QRegex.nqp"},"303":{"name":"set_how","line":1378,"file":"gen/moar/stage2/QRegex.nqp"},"302":{"name":"set_pragma","line":1370,"file":"gen/moar/stage2/QRegex.nqp"},"301":{"name":"pragma","line":1367,"file":"gen/moar/stage2/QRegex.nqp"},"300":{"name":"define_slang","line":1278,"file":"gen/moar/stage2/QRegex.nqp"},"30":{"name":"coercive","line":145,"file":"gen/moar/Metamodel.nqp"},"3":"BOOTArray","299":{"name":"actions","line":1342,"file":"gen/moar/stage2/QRegex.nqp"},"298":{"name":"TOP","line":491,"file":"gen/moar/Grammar.nqp"},"297":{"name":"!cursor_start_cur","line":1511,"file":"gen/moar/stage2/QRegex.nqp"},"296":"ParseShared","295":"Perl6::Grammar","294":{"name":"!cursor_init","line":1408,"file":"gen/moar/stage2/QRegex.nqp"},"293":"Braid","292":{"name":"!braid_init","line":1095,"file":"gen/moar/stage2/QRegex.nqp"},"291":{"name":"parse","line":2258,"file":"gen/moar/stage2/QRegex.nqp"},"290":{"name":"parseactions","line":1977,"file":"gen/moar/stage2/NQPHLL.nqp"},"29":{"name":"archetypes","line":3988,"file":"gen/moar/Metamodel.nqp"},"289":{"name":"parsegrammar","line":1970,"file":"gen/moar/stage2/NQPHLL.nqp"},"288":{"name":"parse","line":2286,"file":"gen/moar/stage2/NQPHLL.nqp"},"287":"NQPDecoder","286":{"name":"new","line":795,"file":"gen/moar/stage2/NQPCORE.setting"},"285":{"name":"new","line":59,"file":"gen/moar/stage2/MASTNodes.nqp"},"284":{"name":"BUILD","line":6894,"file":"gen/moar/stage2/QAST.nqp"},"283":"BOOTStrArray","282":"MAST::Bytecode","281":{"name":"BUILD","line":7027,"file":"gen/moar/stage2/QAST.nqp"},"280":"MoarVM::Callsites","28":"BOOTInt","279":"MoarVM::StringHeap","278":{"name":"start","line":776,"file":"gen/moar/stage2/NQPHLL.nqp"},"277":{"name":"execute_stage","line":2209,"file":"gen/moar/stage2/NQPHLL.nqp"},"276":{"name":"run","line":2249,"file":"gen/moar/stage2/NQPHLL.nqp"},"275":{"name":"","line":2245,"file":"gen/moar/stage2/NQPHLL.nqp"},"274":{"name":"stages","line":1963,"file":"gen/moar/stage2/NQPHLL.nqp"},"273":{"name":"stdin","line":1025,"file":"gen/moar/stage2/NQPCORE.setting"},"272":{"name":"stderr","line":1027,"file":"gen/moar/stage2/NQPCORE.setting"},"271":{"name":"compile","line":2222,"file":"gen/moar/stage2/NQPHLL.nqp"},"270":{"name":"FLATTENABLE_HASH","line":931,"file":"SETTING::src/core.c/List.pm6"},"27":"BOOTStr","269":{"name":"FLATTENABLE_LIST","line":917,"file":"SETTING::src/core.c/List.pm6"},"268":{"name":"defined","line":112,"file":"SETTING::src/core.c/Mu.pm6"},"267":{"name":"reification-target","line":565,"file":"SETTING::src/core.c/List.pm6"},"266":"List::Reifier","265":"IterationBuffer","264":{"name":"from-slurpy-onearg","line":215,"file":"SETTING::src/core.c/List.pm6"},"263":{"name":"infix:<andthen>","line":344,"file":"SETTING::src/core.c/operators.pm6"},"262":{"name":"infix:<andthen>","line":343,"file":"SETTING::src/core.c/operators.pm6"},"261":"Block","260":{"name":"","line":2085,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"26":"BOOTIntArray","259":{"name":"","line":3760,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"258":{"name":"cli-options","line":2531,"file":"gen/moar/stage2/NQPHLL.nqp"},"257":{"name":"default","line":1125,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"256":{"name":"next","line":1156,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"255":{"name":"default","line":1163,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"254":"ContainerDescriptor::BindHashPos","253":{"name":"new","line":1263,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"252":"ContainerDescriptor::Untyped","251":{"name":"AT_KEY_CONTAINER","line":29,"file":"SETTING::src/core.c/Hash.pm6"},"250":{"name":"AT-KEY","line":33,"file":"SETTING::src/core.c/Hash.pm6"},"25":"NQPArrayIter","249":"CALLERS","248":{"name":"","line":163,"file":"SETTING::src/core.c/PseudoStash.pm6"},"247":{"name":"EXISTS-KEY","line":305,"file":"SETTING::src/core.c/PseudoStash.pm6"},"246":{"name":"postcircumfix:<{ }>","line":21,"file":"SETTING::src/core.c/hash_slice.pm6"},"245":{"name":"role_typecheck_list","line":4830,"file":"gen/moar/Metamodel.nqp"},"244":{"name":"mro","line":1306,"file":"gen/moar/Metamodel.nqp"},"243":{"name":"type_check","line":1615,"file":"gen/moar/Metamodel.nqp"},"242":{"name":"sink","line":12,"file":"SETTING::src/core.c/Mu.pm6"},"241":{"name":"defined","line":113,"file":"SETTING::src/core.c/Mu.pm6"},"240":{"name":"defined","line":111,"file":"SETTING::src/core.c/Mu.pm6"},"24":{"name":"","line":2269,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"239":{"name":"NORMALIZE_ENCODING","line":342,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"238":{"name":"decode","line":306,"file":"SETTING::src/core.c/Buf.pm6"},"237":{"name":"decode","line":292,"file":"SETTING::src/core.c/Buf.pm6"},"236":{"name":"infix:<eq>","line":3660,"file":"SETTING::src/core.c/Str.pm6"},"235":{"name":"infix:<eq>","line":35,"file":"SETTING::src/core.c/Stringy.pm6"},"234":{"name":"archetypes","line":4681,"file":"gen/moar/Metamodel.nqp"},"233":{"name":"Bool","line":105,"file":"SETTING::src/core.c/Mu.pm6"},"232":{"name":"assign-scalar-no-whence","line":4406,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"231":{"name":"EVAL","line":27,"file":"SETTING::src/core.c/ForeignCode.pm6"},"230":"Perl6::Metamodel::ModuleHOW","23":{"name":"slurp","line":126,"file":"SETTING::src/core.c/io_operators.pm6"},"229":{"name":"new","line":529,"file":"gen/moar/Metamodel.nqp"},"228":"CALLER","227":{"name":"new_type","line":533,"file":"gen/moar/Metamodel.nqp"},"226":{"name":"","line":100,"file":"SETTING::src/core.c/PseudoStash.pm6"},"225":{"name":"AT-KEY","line":239,"file":"SETTING::src/core.c/PseudoStash.pm6"},"224":{"name":"AT-KEY","line":399,"file":"SETTING::src/core.c/Any.pm6"},"223":{"name":"postcircumfix:<{ }>","line":6,"file":"SETTING::src/core.c/hash_slice.pm6"},"222":"PseudoStash","221":{"name":"new","line":15,"file":"SETTING::src/core.c/PseudoStash.pm6"},"220":"Buf[uint8]","22":{"name":"EVALFILE","line":104,"file":"SETTING::src/core.c/ForeignCode.pm6"},"219":{"name":"slurp-PIO","line":568,"file":"SETTING::src/core.c/IO/Path.pm6"},"218":"BOOTIO","217":{"name":"slurp-path-bin","line":591,"file":"SETTING::src/core.c/IO/Path.pm6"},"216":{"name":"decontrv","line":4158,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"215":"StrLexRef","214":{"name":"canonpath","line":3,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"213":{"name":"of","line":1123,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"212":{"name":"rel2abs","line":259,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"211":{"name":"absolute","line":218,"file":"SETTING::src/core.c/IO/Path.pm6"},"210":{"name":"absolute","line":217,"file":"SETTING::src/core.c/IO/Path.pm6"},"21":"BOOTMultiCache","209":{"name":"slurp","line":615,"file":"SETTING::src/core.c/IO/Path.pm6"},"208":{"name":"slurp","line":614,"file":"SETTING::src/core.c/IO/Path.pm6"},"207":{"name":"slurp","line":129,"file":"SETTING::src/core.c/io_operators.pm6"},"206":{"name":"WHY","line":199,"file":"gen/moar/Metamodel.nqp"},"205":{"name":"has_multi_invocation_attrs","line":2243,"file":"gen/moar/Metamodel.nqp"},"204":{"name":"invocation_handler","line":2235,"file":"gen/moar/Metamodel.nqp"},"203":{"name":"has_invocation_handler","line":2234,"file":"gen/moar/Metamodel.nqp"},"202":{"name":"has_invocation_attr","line":2230,"file":"gen/moar/Metamodel.nqp"},"201":{"name":"compose_invocation","line":2248,"file":"gen/moar/Metamodel.nqp"},"200":{"name":"meta_methods","line":1091,"file":"gen/moar/Metamodel.nqp"},"20":{"name":"add_to_cache","line":2894,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"2":"BOOTCode","199":{"name":"compose_meta_methods","line":1097,"file":"gen/moar/Metamodel.nqp"},"198":{"name":"get_container_spec","line":456,"file":"gen/moar/Metamodel.nqp"},"197":{"name":"publish_container_spec","line":464,"file":"gen/moar/Metamodel.nqp"},"196":{"name":"publish_boolification_spec","line":435,"file":"gen/moar/Metamodel.nqp"},"195":{"name":"has_fallbacks","line":4260,"file":"gen/moar/Metamodel.nqp"},"194":{"name":"value","line":739,"file":"gen/moar/stage2/NQPCORE.setting"},"193":{"name":"key","line":738,"file":"gen/moar/stage2/NQPCORE.setting"},"192":{"name":"publish_method_cache","line":1571,"file":"gen/moar/Metamodel.nqp"},"191":{"name":"role_typecheck_list","line":4221,"file":"gen/moar/Metamodel.nqp"},"190":{"name":"publish_type_cache","line":1634,"file":"gen/moar/Metamodel.nqp"},"19":{"name":"handle_optional","line":606,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"189":{"name":"compose_repr","line":2129,"file":"gen/moar/Metamodel.nqp"},"188":{"name":"BUILDALLPLAN","line":2120,"file":"gen/moar/Metamodel.nqp"},"187":{"name":"create_BUILDPLAN","line":1844,"file":"gen/moar/Metamodel.nqp"},"186":{"name":"set_boolification_mode","line":431,"file":"gen/moar/Metamodel.nqp"},"185":{"name":"get_boolification_mode","line":427,"file":"gen/moar/Metamodel.nqp"},"184":{"name":"submethod_table","line":851,"file":"gen/moar/Metamodel.nqp"},"183":{"name":"find_method","line":1518,"file":"gen/moar/Metamodel.nqp"},"182":{"name":"setup_finalization","line":713,"file":"gen/moar/Metamodel.nqp"},"181":{"name":"submethod_type","line":21,"file":"gen/moar/Metamodel.nqp"},"180":{"name":"incorporate_multi_candidates","line":982,"file":"gen/moar/Metamodel.nqp"},"18":"int","179":{"name":"repr_composed","line":2195,"file":"gen/moar/Metamodel.nqp"},"178":{"name":"add_parent","line":1189,"file":"gen/moar/Metamodel.nqp"},"177":{"name":"get_default_parent_type","line":1283,"file":"gen/moar/Metamodel.nqp"},"176":{"name":"has_default_parent_type","line":1279,"file":"gen/moar/Metamodel.nqp"},"175":{"name":"private_methods","line":923,"file":"gen/moar/Metamodel.nqp"},"174":{"name":"compose_method_table","line":3825,"file":"gen/moar/Metamodel.nqp"},"173":{"name":"lang-rev-before","line":290,"file":"gen/moar/Metamodel.nqp"},"172":{"name":"apply","line":3818,"file":"gen/moar/Metamodel.nqp"},"171":{"name":"method_table","line":846,"file":"gen/moar/Metamodel.nqp"},"170":"NQPHashIter","17":{"name":"","line":2009,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"169":{"name":"compose_attributes","line":626,"file":"gen/moar/Metamodel.nqp"},"168":{"name":"role_typecheck_list","line":2924,"file":"gen/moar/Metamodel.nqp"},"167":{"name":"wipe_conc_cache","line":2820,"file":"gen/moar/Metamodel.nqp"},"166":{"name":"collisions","line":2911,"file":"gen/moar/Metamodel.nqp"},"165":{"name":"prepare","line":3758,"file":"gen/moar/Metamodel.nqp"},"164":"RoleToClassApplier","163":{"name":"role_to_class_applier_type","line":37,"file":"gen/moar/Metamodel.nqp"},"162":{"name":"archetypes","line":2851,"file":"gen/moar/Metamodel.nqp"},"161":{"name":"mro","line":1493,"file":"gen/moar/Metamodel.nqp"},"160":{"name":"hides","line":1253,"file":"gen/moar/Metamodel.nqp"},"16":"Scalar","159":{"name":"inheritable","line":139,"file":"gen/moar/Metamodel.nqp"},"158":{"name":"unshift","line":730,"file":"gen/moar/stage2/NQPCORE.setting"},"157":{"name":"c3_merge","line":1427,"file":"gen/moar/Metamodel.nqp"},"156":{"name":"concretizations","line":2684,"file":"gen/moar/Metamodel.nqp"},"155":{"name":"compute_mro","line":1334,"file":"gen/moar/Metamodel.nqp"},"154":{"name":"add_concretization","line":2677,"file":"gen/moar/Metamodel.nqp"},"153":{"name":"incompat-revisions","line":312,"file":"gen/moar/Metamodel.nqp"},"152":{"name":"check-type-compat","line":299,"file":"gen/moar/Metamodel.nqp"},"151":{"name":"ver","line":230,"file":"gen/moar/Metamodel.nqp"},"150":{"name":"add_conc_to_cache","line":2795,"file":"gen/moar/Metamodel.nqp"},"15":{"name":"bind_one_param","line":207,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"149":{"name":"push","line":728,"file":"gen/moar/stage2/NQPCORE.setting"},"148":{"name":"publish_type_cache","line":2941,"file":"gen/moar/Metamodel.nqp"},"147":{"name":"role_typecheck_list","line":3345,"file":"gen/moar/Metamodel.nqp"},"146":{"name":"apply","line":2404,"file":"gen/moar/Metamodel.nqp"},"145":{"name":"role_to_role_applier_type","line":43,"file":"gen/moar/Metamodel.nqp"},"144":{"name":"compose","line":2886,"file":"gen/moar/Metamodel.nqp"},"143":{"name":"is_array_type","line":2388,"file":"gen/moar/Metamodel.nqp"},"142":{"name":"multi_methods_to_incorporate","line":976,"file":"gen/moar/Metamodel.nqp"},"141":{"name":"private_method_names","line":927,"file":"gen/moar/Metamodel.nqp"},"140":{"name":"","line":748,"file":"gen/moar/stage2/NQPCORE.setting"},"14":{"name":"bind","line":639,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"139":{"name":"private_method_table","line":919,"file":"gen/moar/Metamodel.nqp"},"138":{"name":"method_names","line":840,"file":"gen/moar/Metamodel.nqp"},"137":{"name":"method_order","line":836,"file":"gen/moar/Metamodel.nqp"},"136":{"name":"attributes","line":690,"file":"gen/moar/Metamodel.nqp"},"135":{"name":"specialize_with","line":3426,"file":"gen/moar/Metamodel.nqp"},"134":{"name":"","line":1,"file":"SETTING::src/core.c/IO.pm6"},"133":{"name":"hidden","line":1262,"file":"gen/moar/Metamodel.nqp"},"132":{"name":"set_language_revision","line":275,"file":"gen/moar/Metamodel.nqp"},"131":{"name":"language-revision","line":322,"file":"gen/moar/Metamodel.nqp"},"130":{"name":"set_ver","line":234,"file":"gen/moar/Metamodel.nqp"},"13":"BOOTContext","129":"Perl6::Metamodel::ConcreteRoleHOW","128":{"name":"new","line":2855,"file":"gen/moar/Metamodel.nqp"},"127":"IO","126":{"name":"new_type","line":2870,"file":"gen/moar/Metamodel.nqp"},"125":{"name":"is_composed","line":4225,"file":"gen/moar/Metamodel.nqp"},"124":"Capture","123":{"name":"!make_capture","line":2777,"file":"gen/moar/Metamodel.nqp"},"122":{"name":"get_cached_conc","line":2807,"file":"gen/moar/Metamodel.nqp"},"121":{"name":"","line":3386,"file":"gen/moar/Metamodel.nqp"},"120":{"name":"protect","line":1216,"file":"gen/moar/stage2/NQPCORE.setting"},"12":{"name":"","line":958,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"119":{"name":"specialize","line":3380,"file":"gen/moar/Metamodel.nqp"},"118":{"name":"body_block","line":3299,"file":"gen/moar/Metamodel.nqp"},"117":{"name":"try_select","line":3597,"file":"gen/moar/Metamodel.nqp"},"116":{"name":"","line":3596,"file":"gen/moar/Metamodel.nqp"},"115":{"name":"select_candidate","line":3592,"file":"gen/moar/Metamodel.nqp"},"114":{"name":"specialize","line":3631,"file":"gen/moar/Metamodel.nqp"},"113":{"name":"pop","line":729,"file":"gen/moar/stage2/NQPCORE.setting"},"112":{"name":"roles_to_compose","line":1137,"file":"gen/moar/Metamodel.nqp"},"111":{"name":"set_language_version","line":249,"file":"gen/moar/Metamodel.nqp"},"110":{"name":"compose","line":4046,"file":"gen/moar/Metamodel.nqp"},"11":{"name":"is_bindable","line":952,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"109":{"name":"set_pun_source","line":4264,"file":"gen/moar/Metamodel.nqp"},"108":{"name":"add_role","line":1133,"file":"gen/moar/Metamodel.nqp"},"107":"MixinCacheHOW","106":{"name":"CREATE","line":627,"file":"gen/moar/stage2/NQPCORE.setting"},"105":{"name":"bless","line":631,"file":"gen/moar/stage2/NQPCORE.setting"},"104":{"name":"new","line":703,"file":"gen/moar/stage2/NQPCORE.setting"},"103":"<unknown type>","1028":{"name":"gist","line":14,"file":"SETTING::src/core.c/Bool.pm6"},"1027":{"name":"gist","line":4,"file":"SETTING::src/core.c/Bool.pm6"},"1026":{"name":"WRITE","line":615,"file":"SETTING::src/core.c/IO/Handle.pm6"},"1025":"utf8","1024":{"name":"encode-chars","line":22,"file":"SETTING::src/core.c/Encoding/Encoder/Builtin.pm6"},"1023":{"name":"print","line":658,"file":"SETTING::src/core.c/IO/Handle.pm6"},"1022":{"name":"print","line":675,"file":"SETTING::src/core.c/Mu.pm6"},"1021":{"name":"nl-out","line":4,"file":"SETTING::src/core.c/IO/Handle.pm6"},"1020":{"name":"gist","line":811,"file":"SETTING::src/core.c/Str.pm6"},"102":{"name":"new_type","line":1686,"file":"gen/moar/Metamodel.nqp"},"1019":{"name":"gist","line":780,"file":"SETTING::src/core.c/Mu.pm6"},"1018":{"name":"say","line":35,"file":"SETTING::src/core.c/io_operators.pm6"},"1017":{"name":"say","line":30,"file":"SETTING::src/core.c/io_operators.pm6"},"1016":{"name":"<unit>","line":1,"file":"code.rakuplay-1609039196.raku"},"1015":{"name":"<unit-outer>","line":1,"file":"code.rakuplay-1609039196.raku"},"1014":"ForeignCode","1013":{"name":"","line":3765,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"1012":{"name":"compunit_mainline","line":822,"file":"gen/moar/stage2/NQPHLL.nqp"},"1011":{"name":"moar","line":814,"file":"gen/moar/stage2/NQPHLL.nqp"},"1010":{"name":"<dependencies+deserialize>","line":-1,"file":""},"101":{"name":"setup_mixin_cache","line":1708,"file":"gen/moar/Metamodel.nqp"},"1009":{"name":"bytecode","line":7451,"file":"gen/moar/stage2/QAST.nqp"},"1008":{"name":"write_annotations","line":7333,"file":"gen/moar/stage2/QAST.nqp"},"1007":{"name":"write_serialized_data","line":7297,"file":"gen/moar/stage2/QAST.nqp"},"1006":{"name":"strings","line":7071,"file":"gen/moar/stage2/QAST.nqp"},"1005":{"name":"write_string_heap","line":7294,"file":"gen/moar/stage2/QAST.nqp"},"1004":{"name":"bytecode","line":7016,"file":"gen/moar/stage2/QAST.nqp"},"1003":{"name":"write_callsites","line":7291,"file":"gen/moar/stage2/QAST.nqp"},"1002":{"name":"code_obj_sc_idx","line":1117,"file":"gen/moar/stage2/MASTNodes.nqp"},"1001":{"name":"code_obj_sc_dep_idx","line":1114,"file":"gen/moar/stage2/MASTNodes.nqp"},"1000":{"name":"type_to_local_type","line":6870,"file":"gen/moar/stage2/QAST.nqp"},"100":{"name":"stash_attr_type","line":15,"file":"gen/moar/Metamodel.nqp"},"10":"NQPArray","1":{"name":"<unit-outer>","line":1,"file":"-e"},"0":{"name":"","line":1939,"file":"gen/moar/stage2/NQPHLL.nqp"}},{"total_time":106035,"thread":1,"start_time":0,"spesh_time":48802,"parent":0,"gcs":[],"call_graph":{"inclusive_time":61126,"id":"0","highest_child_id":3409,"first_entry_time":0,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":61089,"id":"1","highest_child_id":3409,"first_entry_time":36,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":61024,"id":"4","highest_child_id":3409,"first_entry_time":101,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":60741,"id":"5","highest_child_id":3384,"first_entry_time":165,"exclusive_time":321,"entries":1,"callees":[{"inclusive_time":693,"id":"9","highest_child_id":11,"first_entry_time":484,"exclusive_time":60,"entries":1,"callees":[{"inclusive_time":629,"id":"11","highest_child_id":10,"first_entry_time":526,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":547,"id":"12","highest_child_id":10,"first_entry_time":605,"exclusive_time":201,"entries":1,"callees":[{"inclusive_time":346,"id":"14","highest_child_id":10,"first_entry_time":806,"exclusive_time":288,"entries":1,"callees":[{"inclusive_time":54,"id":"15","highest_child_id":9,"first_entry_time":1058,"exclusive_time":50,"entries":3,"callees":[{"inclusive_time":3,"id":"17","highest_child_id":9,"first_entry_time":1083,"exclusive_time":3,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":3}]},{"inclusive_time":3,"id":"19","highest_child_id":10,"first_entry_time":1122,"exclusive_time":2,"entries":2}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":11,"first_entry_time":1172,"exclusive_time":3,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":59726,"id":"22","highest_child_id":3384,"first_entry_time":1179,"exclusive_time":536,"entries":1,"callees":[{"inclusive_time":13830,"id":"23","highest_child_id":453,"first_entry_time":1206,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":12635,"id":"9","highest_child_id":365,"first_entry_time":1212,"exclusive_time":286,"entries":1,"callees":[{"inclusive_time":2114,"id":"24","highest_child_id":30,"first_entry_time":1460,"exclusive_time":1364,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":16,"first_entry_time":2312,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"30","highest_child_id":17,"first_entry_time":2331,"exclusive_time":2,"entries":4},{"inclusive_time":5,"id":"17","highest_child_id":18,"first_entry_time":2337,"exclusive_time":4,"entries":4,"allocations":[{"id":"18","count":4}]},{"inclusive_time":3,"id":"31","highest_child_id":19,"first_entry_time":2388,"exclusive_time":2,"entries":3},{"inclusive_time":67,"id":"32","highest_child_id":22,"first_entry_time":2405,"exclusive_time":49,"entries":3,"callees":[{"inclusive_time":17,"id":"33","highest_child_id":22,"first_entry_time":2451,"exclusive_time":16,"entries":3,"callees":[{"inclusive_time":1,"id":"34","highest_child_id":22,"first_entry_time":2461,"exclusive_time":0,"entries":3}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"6","count":3}]},{"inclusive_time":2,"id":"35","highest_child_id":23,"first_entry_time":2475,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"36","highest_child_id":24,"first_entry_time":2490,"exclusive_time":1,"entries":3},{"inclusive_time":680,"id":"37","highest_child_id":30,"first_entry_time":2725,"exclusive_time":281,"entries":56,"callees":[{"inclusive_time":392,"id":"38","highest_child_id":30,"first_entry_time":2843,"exclusive_time":272,"entries":24,"callees":[{"inclusive_time":7,"id":"39","highest_child_id":27,"first_entry_time":2858,"exclusive_time":2,"entries":24},{"inclusive_time":5,"id":"40","highest_child_id":28,"first_entry_time":2886,"exclusive_time":4,"entries":6},{"inclusive_time":110,"id":"41","highest_child_id":30,"first_entry_time":3038,"exclusive_time":90,"entries":6,"callees":[{"inclusive_time":19,"id":"42","highest_child_id":30,"first_entry_time":3119,"exclusive_time":18,"entries":6}],"allocations":[{"id":"25","count":6}]}],"allocations":[{"id":"25","count":30}]}]}],"allocations":[{"id":"10","count":33},{"id":"25","count":6},{"id":"6","count":16},{"id":"26","count":10},{"id":"27","count":1},{"id":"28","count":8}]},{"inclusive_time":10230,"id":"11","highest_child_id":364,"first_entry_time":3610,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":10183,"id":"12","highest_child_id":364,"first_entry_time":3657,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":10177,"id":"14","highest_child_id":364,"first_entry_time":3662,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":10161,"id":"15","highest_child_id":364,"first_entry_time":3672,"exclusive_time":184,"entries":2,"callees":[{"inclusive_time":19,"id":"43","highest_child_id":40,"first_entry_time":3702,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":15,"id":"38","highest_child_id":40,"first_entry_time":3706,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"39","highest_child_id":37,"first_entry_time":3707,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"40","highest_child_id":38,"first_entry_time":3713,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"41","highest_child_id":40,"first_entry_time":3715,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"42","highest_child_id":40,"first_entry_time":3717,"exclusive_time":2,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":1,"id":"44","highest_child_id":41,"first_entry_time":3738,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"17","highest_child_id":42,"first_entry_time":3742,"exclusive_time":2,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":6,"id":"32","highest_child_id":45,"first_entry_time":3746,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"33","highest_child_id":45,"first_entry_time":3749,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"34","highest_child_id":45,"first_entry_time":3750,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9948,"id":"45","highest_child_id":364,"first_entry_time":3871,"exclusive_time":104,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":47,"first_entry_time":3876,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":48,"first_entry_time":3880,"exclusive_time":0,"entries":1},{"inclusive_time":9841,"id":"46","highest_child_id":364,"first_entry_time":3977,"exclusive_time":130,"entries":1,"callees":[{"inclusive_time":3,"id":"47","highest_child_id":50,"first_entry_time":4000,"exclusive_time":3,"entries":1},{"inclusive_time":3207,"id":"48","highest_child_id":150,"first_entry_time":4048,"exclusive_time":80,"entries":1,"callees":[{"inclusive_time":2,"id":"49","highest_child_id":52,"first_entry_time":4073,"exclusive_time":2,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":134,"id":"9","highest_child_id":59,"first_entry_time":4090,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":105,"id":"24","highest_child_id":58,"first_entry_time":4099,"exclusive_time":77,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":55,"first_entry_time":4111,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":56,"first_entry_time":4114,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":57,"first_entry_time":4118,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":22,"id":"37","highest_child_id":58,"first_entry_time":4158,"exclusive_time":21,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":2,"id":"20","highest_child_id":59,"first_entry_time":4221,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2990,"id":"51","highest_child_id":150,"first_entry_time":4265,"exclusive_time":858,"entries":1,"callees":[{"inclusive_time":2129,"id":"52","highest_child_id":148,"first_entry_time":5119,"exclusive_time":60,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":62,"first_entry_time":5123,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":503,"id":"9","highest_child_id":69,"first_entry_time":5130,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":462,"id":"24","highest_child_id":68,"first_entry_time":5135,"exclusive_time":347,"entries":1,"callees":[{"inclusive_time":4,"id":"29","highest_child_id":65,"first_entry_time":5281,"exclusive_time":2,"entries":10},{"inclusive_time":5,"id":"30","highest_child_id":66,"first_entry_time":5284,"exclusive_time":3,"entries":10},{"inclusive_time":7,"id":"17","highest_child_id":67,"first_entry_time":5288,"exclusive_time":5,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":108,"id":"37","highest_child_id":68,"first_entry_time":5404,"exclusive_time":102,"entries":30}],"allocations":[{"id":"10","count":32},{"id":"25","count":7},{"id":"6","count":12},{"id":"26","count":12},{"id":"27","count":3},{"id":"28","count":6}]},{"inclusive_time":3,"id":"20","highest_child_id":69,"first_entry_time":5629,"exclusive_time":3,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":1564,"id":"53","highest_child_id":148,"first_entry_time":5683,"exclusive_time":77,"entries":1,"callees":[{"inclusive_time":1267,"id":"55","highest_child_id":122,"first_entry_time":5738,"exclusive_time":91,"entries":2,"callees":[{"inclusive_time":1175,"id":"57","highest_child_id":122,"first_entry_time":5832,"exclusive_time":99,"entries":1,"callees":[{"inclusive_time":2,"id":"58","highest_child_id":73,"first_entry_time":5867,"exclusive_time":2,"entries":1},{"inclusive_time":1074,"id":"59","highest_child_id":122,"first_entry_time":5933,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":774,"id":"52","highest_child_id":111,"first_entry_time":5956,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":76,"first_entry_time":5961,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":288,"id":"9","highest_child_id":88,"first_entry_time":5967,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":253,"id":"11","highest_child_id":87,"first_entry_time":5994,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":204,"id":"12","highest_child_id":87,"first_entry_time":6042,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":198,"id":"14","highest_child_id":87,"first_entry_time":6047,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":107,"id":"15","highest_child_id":83,"first_entry_time":6055,"exclusive_time":100,"entries":5,"callees":[{"inclusive_time":4,"id":"17","highest_child_id":82,"first_entry_time":6064,"exclusive_time":3,"entries":5,"allocations":[{"id":"18","count":5}]},{"inclusive_time":3,"id":"61","highest_child_id":83,"first_entry_time":6120,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":15},{"id":"16","count":3}]},{"inclusive_time":64,"id":"19","highest_child_id":87,"first_entry_time":6154,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":3,"id":"62","highest_child_id":85,"first_entry_time":6178,"exclusive_time":3,"entries":1,"allocations":[{"id":"63","count":1},{"id":"2","count":1}]},{"inclusive_time":19,"id":"64","highest_child_id":87,"first_entry_time":6198,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":15,"id":"55","highest_child_id":87,"first_entry_time":6202,"exclusive_time":15,"entries":1,"allocations":[{"id":"56","count":1}]}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":88,"first_entry_time":6252,"exclusive_time":3,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":471,"id":"65","highest_child_id":111,"first_entry_time":6258,"exclusive_time":252,"entries":1,"callees":[{"inclusive_time":2,"id":"62","highest_child_id":90,"first_entry_time":6262,"exclusive_time":2,"entries":1,"allocations":[{"id":"63","count":1},{"id":"2","count":1}]},{"inclusive_time":12,"id":"64","highest_child_id":92,"first_entry_time":6266,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"55","highest_child_id":92,"first_entry_time":6268,"exclusive_time":10,"entries":1,"allocations":[{"id":"56","count":1}]}]},{"inclusive_time":63,"id":"66","highest_child_id":97,"first_entry_time":6303,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":94,"first_entry_time":6305,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":36,"id":"9","highest_child_id":96,"first_entry_time":6311,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":7,"id":"20","highest_child_id":96,"first_entry_time":6339,"exclusive_time":6,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2,"id":"67","highest_child_id":97,"first_entry_time":6364,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":35,"id":"68","highest_child_id":99,"first_entry_time":6439,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":2,"id":"69","highest_child_id":99,"first_entry_time":6467,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"70","highest_child_id":100,"first_entry_time":6508,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"71","highest_child_id":101,"first_entry_time":6523,"exclusive_time":0,"entries":2},{"inclusive_time":102,"id":"72","highest_child_id":111,"first_entry_time":6624,"exclusive_time":68,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":103,"first_entry_time":6636,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":104,"first_entry_time":6639,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"74","highest_child_id":105,"first_entry_time":6653,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"75","highest_child_id":107,"first_entry_time":6668,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"76","highest_child_id":107,"first_entry_time":6691,"exclusive_time":1,"entries":1}]},{"inclusive_time":3,"id":"77","highest_child_id":109,"first_entry_time":6706,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":109,"first_entry_time":6707,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":110,"first_entry_time":6710,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"78","highest_child_id":111,"first_entry_time":6722,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"16","count":1},{"id":"6","count":1},{"id":"54","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":254,"id":"79","highest_child_id":122,"first_entry_time":6753,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":56,"id":"9","highest_child_id":114,"first_entry_time":6761,"exclusive_time":53,"entries":1,"callees":[{"inclusive_time":3,"id":"20","highest_child_id":114,"first_entry_time":6812,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":171,"id":"80","highest_child_id":122,"first_entry_time":6836,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":149,"id":"81","highest_child_id":122,"first_entry_time":6857,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":117,"first_entry_time":6860,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":21,"id":"9","highest_child_id":119,"first_entry_time":6871,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":119,"first_entry_time":6889,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":89,"id":"82","highest_child_id":122,"first_entry_time":6917,"exclusive_time":82,"entries":1,"callees":[{"inclusive_time":5,"id":"83","highest_child_id":121,"first_entry_time":6986,"exclusive_time":5,"entries":1},{"inclusive_time":1,"id":"84","highest_child_id":122,"first_entry_time":7004,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]}],"allocations":[{"id":"56","count":1},{"id":"60","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"56","count":2}]}],"allocations":[{"id":"56","count":2}]},{"inclusive_time":181,"id":"66","highest_child_id":134,"first_entry_time":7010,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":124,"first_entry_time":7012,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":139,"id":"9","highest_child_id":131,"first_entry_time":7017,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":120,"id":"24","highest_child_id":130,"first_entry_time":7022,"exclusive_time":93,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":127,"first_entry_time":7032,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":128,"first_entry_time":7034,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":129,"first_entry_time":7039,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":22,"id":"37","highest_child_id":130,"first_entry_time":7092,"exclusive_time":21,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":2,"id":"20","highest_child_id":131,"first_entry_time":7154,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":9,"id":"85","highest_child_id":134,"first_entry_time":7182,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":133,"first_entry_time":7186,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":134,"first_entry_time":7190,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":12,"id":"68","highest_child_id":136,"first_entry_time":7193,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"69","highest_child_id":136,"first_entry_time":7198,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":137,"first_entry_time":7207,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"71","highest_child_id":138,"first_entry_time":7210,"exclusive_time":0,"entries":2},{"inclusive_time":24,"id":"72","highest_child_id":148,"first_entry_time":7212,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":140,"first_entry_time":7214,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":141,"first_entry_time":7216,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":142,"first_entry_time":7219,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":144,"first_entry_time":7221,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":144,"first_entry_time":7222,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":146,"first_entry_time":7225,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":146,"first_entry_time":7226,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"29","highest_child_id":147,"first_entry_time":7228,"exclusive_time":5,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":148,"first_entry_time":7234,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"54","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"70","highest_child_id":149,"first_entry_time":7250,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":150,"first_entry_time":7254,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"86","highest_child_id":151,"first_entry_time":7269,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"87","highest_child_id":152,"first_entry_time":7286,"exclusive_time":1,"entries":1},{"inclusive_time":6498,"id":"88","highest_child_id":364,"first_entry_time":7319,"exclusive_time":53,"entries":1,"callees":[{"inclusive_time":6445,"id":"89","highest_child_id":364,"first_entry_time":7370,"exclusive_time":449,"entries":1,"callees":[{"inclusive_time":1,"id":"47","highest_child_id":155,"first_entry_time":7373,"exclusive_time":1,"entries":1},{"inclusive_time":364,"id":"90","highest_child_id":172,"first_entry_time":7460,"exclusive_time":87,"entries":1,"callees":[{"inclusive_time":146,"id":"92","highest_child_id":159,"first_entry_time":7480,"exclusive_time":59,"entries":1,"callees":[{"inclusive_time":86,"id":"94","highest_child_id":159,"first_entry_time":7539,"exclusive_time":85,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":159,"first_entry_time":7552,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":12},{"id":"10","count":18}]}],"allocations":[{"id":"6","count":1},{"id":"93","count":1}]},{"inclusive_time":4,"id":"96","highest_child_id":160,"first_entry_time":7649,"exclusive_time":3,"entries":1},{"inclusive_time":26,"id":"97","highest_child_id":164,"first_entry_time":7674,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"99","highest_child_id":162,"first_entry_time":7683,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"100","highest_child_id":163,"first_entry_time":7694,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"47","highest_child_id":164,"first_entry_time":7697,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"98","count":1}]},{"inclusive_time":101,"id":"101","highest_child_id":172,"first_entry_time":7723,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":70,"id":"102","highest_child_id":172,"first_entry_time":7752,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":49,"id":"104","highest_child_id":171,"first_entry_time":7765,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":36,"id":"105","highest_child_id":171,"first_entry_time":7778,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":169,"first_entry_time":7788,"exclusive_time":1,"entries":1,"allocations":[{"id":"107","count":1}]},{"inclusive_time":23,"id":"94","highest_child_id":171,"first_entry_time":7791,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":171,"first_entry_time":7811,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"47","highest_child_id":172,"first_entry_time":7817,"exclusive_time":1,"entries":1}],"allocations":[{"id":"103","count":1},{"id":"56","count":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"91","count":1}]},{"inclusive_time":3,"id":"108","highest_child_id":173,"first_entry_time":7842,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"109","highest_child_id":174,"first_entry_time":7863,"exclusive_time":1,"entries":1},{"inclusive_time":5623,"id":"110","highest_child_id":363,"first_entry_time":8170,"exclusive_time":2031,"entries":1,"callees":[{"inclusive_time":28,"id":"111","highest_child_id":177,"first_entry_time":8286,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":1,"id":"58","highest_child_id":177,"first_entry_time":8302,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"112","highest_child_id":178,"first_entry_time":8330,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"113","highest_child_id":179,"first_entry_time":8345,"exclusive_time":0,"entries":1},{"inclusive_time":1821,"id":"114","highest_child_id":224,"first_entry_time":8378,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":88,"id":"115","highest_child_id":186,"first_entry_time":8437,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":45,"id":"116","highest_child_id":185,"first_entry_time":8459,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":27,"id":"117","highest_child_id":185,"first_entry_time":8476,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":18,"id":"9","highest_child_id":185,"first_entry_time":8484,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":185,"first_entry_time":8500,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"8","count":1}]}],"allocations":[{"id":"2","count":1}]},{"inclusive_time":1,"id":"118","highest_child_id":186,"first_entry_time":8522,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1652,"id":"119","highest_child_id":224,"first_entry_time":8546,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":1612,"id":"120","highest_child_id":224,"first_entry_time":8587,"exclusive_time":86,"entries":1,"callees":[{"inclusive_time":1525,"id":"121","highest_child_id":224,"first_entry_time":8672,"exclusive_time":541,"entries":1,"callees":[{"inclusive_time":67,"id":"122","highest_child_id":192,"first_entry_time":8723,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":25,"id":"123","highest_child_id":192,"first_entry_time":8761,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"125","highest_child_id":192,"first_entry_time":8780,"exclusive_time":1,"entries":1}],"allocations":[{"id":"124","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"47","highest_child_id":193,"first_entry_time":8794,"exclusive_time":1,"entries":1},{"inclusive_time":101,"id":"126","highest_child_id":199,"first_entry_time":8934,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":55,"id":"128","highest_child_id":197,"first_entry_time":8954,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":50,"id":"94","highest_child_id":197,"first_entry_time":8959,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":197,"first_entry_time":8962,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":10},{"id":"10","count":12}]}],"allocations":[{"id":"6","count":1},{"id":"129","count":1}]},{"inclusive_time":3,"id":"96","highest_child_id":198,"first_entry_time":9014,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"130","highest_child_id":199,"first_entry_time":9034,"exclusive_time":1,"entries":1}],"allocations":[{"id":"127","count":1}]},{"inclusive_time":1,"id":"131","highest_child_id":200,"first_entry_time":9050,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"132","highest_child_id":202,"first_entry_time":9083,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":14,"id":"111","highest_child_id":202,"first_entry_time":9090,"exclusive_time":13,"entries":1,"allocations":[{"id":"27","count":2},{"id":"56","count":1}]}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":2,"id":"133","highest_child_id":203,"first_entry_time":9123,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"134","highest_child_id":204,"first_entry_time":9149,"exclusive_time":8,"entries":1,"allocations":[{"id":"3","count":1},{"id":"13","count":1}]},{"inclusive_time":762,"id":"135","highest_child_id":222,"first_entry_time":9381,"exclusive_time":214,"entries":1,"callees":[{"inclusive_time":6,"id":"136","highest_child_id":206,"first_entry_time":9428,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"137","highest_child_id":207,"first_entry_time":9451,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"138","highest_child_id":208,"first_entry_time":9465,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"139","highest_child_id":209,"first_entry_time":9487,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"140","highest_child_id":210,"first_entry_time":9501,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"141","highest_child_id":211,"first_entry_time":9515,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"142","highest_child_id":212,"first_entry_time":9531,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"112","highest_child_id":213,"first_entry_time":9534,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"42","highest_child_id":214,"first_entry_time":9537,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"143","highest_child_id":215,"first_entry_time":9555,"exclusive_time":1,"entries":1},{"inclusive_time":526,"id":"144","highest_child_id":222,"first_entry_time":9617,"exclusive_time":492,"entries":1,"callees":[{"inclusive_time":1,"id":"145","highest_child_id":217,"first_entry_time":9630,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"112","highest_child_id":218,"first_entry_time":9632,"exclusive_time":3,"entries":2},{"inclusive_time":11,"id":"146","highest_child_id":219,"first_entry_time":10064,"exclusive_time":11,"entries":1,"allocations":[{"id":"2","count":3},{"id":"6","count":6},{"id":"10","count":5}]},{"inclusive_time":1,"id":"147","highest_child_id":220,"first_entry_time":10099,"exclusive_time":1,"entries":1},{"inclusive_time":16,"id":"148","highest_child_id":222,"first_entry_time":10125,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"149","highest_child_id":222,"first_entry_time":10138,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"25","count":3}]}],"allocations":[{"id":"25","count":7}]},{"inclusive_time":16,"id":"150","highest_child_id":224,"first_entry_time":10181,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":3,"id":"123","highest_child_id":224,"first_entry_time":10184,"exclusive_time":3,"entries":1,"allocations":[{"id":"124","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"56","count":1},{"id":"27","count":1},{"id":"10","count":2}]}],"allocations":[{"id":"10","count":1}]}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":2,"id":"133","highest_child_id":225,"first_entry_time":10202,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"131","highest_child_id":226,"first_entry_time":10206,"exclusive_time":0,"entries":1},{"inclusive_time":47,"id":"132","highest_child_id":230,"first_entry_time":10208,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":42,"id":"111","highest_child_id":230,"first_entry_time":10213,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":2,"id":"151","highest_child_id":229,"first_entry_time":10239,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"130","highest_child_id":230,"first_entry_time":10250,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":2},{"id":"56","count":1}]}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":36,"id":"152","highest_child_id":233,"first_entry_time":10304,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"131","highest_child_id":232,"first_entry_time":10308,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"153","highest_child_id":233,"first_entry_time":10336,"exclusive_time":3,"entries":1,"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":1,"id":"149","highest_child_id":234,"first_entry_time":10342,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"154","highest_child_id":235,"first_entry_time":10366,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":496,"id":"155","highest_child_id":260,"first_entry_time":10544,"exclusive_time":245,"entries":2,"callees":[{"inclusive_time":5,"id":"42","highest_child_id":237,"first_entry_time":10553,"exclusive_time":4,"entries":2},{"inclusive_time":144,"id":"156","highest_child_id":243,"first_entry_time":10626,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":86,"id":"156","highest_child_id":240,"first_entry_time":10635,"exclusive_time":79,"entries":2,"callees":[{"inclusive_time":6,"id":"157","highest_child_id":240,"first_entry_time":10710,"exclusive_time":6,"entries":2,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":39,"id":"157","highest_child_id":243,"first_entry_time":10718,"exclusive_time":32,"entries":2,"callees":[{"inclusive_time":4,"id":"157","highest_child_id":242,"first_entry_time":10730,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":2,"id":"158","highest_child_id":243,"first_entry_time":10745,"exclusive_time":2,"entries":2}],"allocations":[{"id":"10","count":4},{"id":"25","count":6}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":4}]},{"inclusive_time":1,"id":"158","highest_child_id":244,"first_entry_time":10749,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"29","highest_child_id":245,"first_entry_time":10753,"exclusive_time":1,"entries":8},{"inclusive_time":6,"id":"159","highest_child_id":246,"first_entry_time":10769,"exclusive_time":4,"entries":10},{"inclusive_time":7,"id":"133","highest_child_id":247,"first_entry_time":10779,"exclusive_time":6,"entries":5},{"inclusive_time":18,"id":"160","highest_child_id":248,"first_entry_time":10795,"exclusive_time":17,"entries":5},{"inclusive_time":2,"id":"149","highest_child_id":249,"first_entry_time":11904,"exclusive_time":1,"entries":3},{"inclusive_time":5,"id":"161","highest_child_id":250,"first_entry_time":11929,"exclusive_time":5,"entries":1},{"inclusive_time":61,"id":"157","highest_child_id":259,"first_entry_time":11939,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":2,"id":"149","highest_child_id":252,"first_entry_time":11949,"exclusive_time":1,"entries":3},{"inclusive_time":38,"id":"157","highest_child_id":258,"first_entry_time":11960,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"149","highest_child_id":254,"first_entry_time":11968,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"157","highest_child_id":257,"first_entry_time":11971,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":4,"id":"157","highest_child_id":256,"first_entry_time":11990,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"158","highest_child_id":257,"first_entry_time":11995,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"25","count":5}]},{"inclusive_time":0,"id":"158","highest_child_id":258,"first_entry_time":11998,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"25","count":5}]},{"inclusive_time":0,"id":"158","highest_child_id":259,"first_entry_time":11999,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"25","count":5}]},{"inclusive_time":1,"id":"162","highest_child_id":260,"first_entry_time":12020,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":19},{"id":"6","count":14},{"id":"25","count":10},{"id":"56","count":5}]},{"inclusive_time":1,"id":"163","highest_child_id":261,"first_entry_time":10815,"exclusive_time":1,"entries":1},{"inclusive_time":49,"id":"104","highest_child_id":266,"first_entry_time":10826,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":47,"id":"105","highest_child_id":266,"first_entry_time":10828,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":264,"first_entry_time":10830,"exclusive_time":1,"entries":1,"allocations":[{"id":"164","count":1}]},{"inclusive_time":42,"id":"94","highest_child_id":266,"first_entry_time":10832,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":266,"first_entry_time":10861,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":20,"id":"165","highest_child_id":268,"first_entry_time":11029,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"166","highest_child_id":268,"first_entry_time":11046,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":3,"id":"167","highest_child_id":269,"first_entry_time":11063,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"168","highest_child_id":270,"first_entry_time":11080,"exclusive_time":1,"entries":1},{"inclusive_time":34,"id":"169","highest_child_id":273,"first_entry_time":11146,"exclusive_time":31,"entries":2,"callees":[{"inclusive_time":2,"id":"171","highest_child_id":272,"first_entry_time":11159,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"140","highest_child_id":273,"first_entry_time":11163,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":4},{"id":"170","count":2},{"id":"25","count":2}]},{"inclusive_time":181,"id":"172","highest_child_id":284,"first_entry_time":11537,"exclusive_time":159,"entries":1,"callees":[{"inclusive_time":4,"id":"173","highest_child_id":275,"first_entry_time":11566,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"137","highest_child_id":276,"first_entry_time":11574,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"138","highest_child_id":277,"first_entry_time":11577,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"174","highest_child_id":278,"first_entry_time":11666,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":2}]},{"inclusive_time":1,"id":"175","highest_child_id":279,"first_entry_time":11684,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"141","highest_child_id":280,"first_entry_time":11688,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"142","highest_child_id":281,"first_entry_time":11693,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"136","highest_child_id":282,"first_entry_time":11697,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"42","highest_child_id":283,"first_entry_time":11702,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"143","highest_child_id":284,"first_entry_time":11713,"exclusive_time":2,"entries":2}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"25","count":4}]},{"inclusive_time":1,"id":"42","highest_child_id":285,"first_entry_time":11720,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"176","highest_child_id":286,"first_entry_time":11738,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"47","highest_child_id":287,"first_entry_time":11742,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"177","highest_child_id":288,"first_entry_time":11759,"exclusive_time":1,"entries":1},{"inclusive_time":26,"id":"178","highest_child_id":291,"first_entry_time":11842,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"125","highest_child_id":290,"first_entry_time":11844,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"179","highest_child_id":291,"first_entry_time":11862,"exclusive_time":2,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":17,"id":"180","highest_child_id":293,"first_entry_time":12209,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"181","highest_child_id":293,"first_entry_time":12223,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":1},{"id":"6","count":1}]},{"inclusive_time":112,"id":"182","highest_child_id":301,"first_entry_time":12282,"exclusive_time":53,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":295,"first_entry_time":12284,"exclusive_time":2,"entries":1},{"inclusive_time":52,"id":"183","highest_child_id":300,"first_entry_time":12330,"exclusive_time":40,"entries":3,"callees":[{"inclusive_time":2,"id":"184","highest_child_id":297,"first_entry_time":12342,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"140","highest_child_id":298,"first_entry_time":12345,"exclusive_time":0,"entries":9},{"inclusive_time":6,"id":"161","highest_child_id":299,"first_entry_time":12347,"exclusive_time":5,"entries":3},{"inclusive_time":3,"id":"171","highest_child_id":300,"first_entry_time":12351,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":3},{"id":"6","count":6},{"id":"25","count":3}]},{"inclusive_time":4,"id":"173","highest_child_id":301,"first_entry_time":12359,"exclusive_time":3,"entries":3,"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"185","highest_child_id":302,"first_entry_time":12408,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"161","highest_child_id":303,"first_entry_time":12412,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"171","highest_child_id":304,"first_entry_time":12416,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"140","highest_child_id":305,"first_entry_time":12417,"exclusive_time":0,"entries":5},{"inclusive_time":1,"id":"184","highest_child_id":306,"first_entry_time":12420,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"186","highest_child_id":307,"first_entry_time":12440,"exclusive_time":1,"entries":1},{"inclusive_time":19,"id":"183","highest_child_id":312,"first_entry_time":12444,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"184","highest_child_id":309,"first_entry_time":12450,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"140","highest_child_id":310,"first_entry_time":12451,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"161","highest_child_id":311,"first_entry_time":12453,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"171","highest_child_id":312,"first_entry_time":12457,"exclusive_time":1,"entries":3}],"allocations":[{"id":"27","count":1},{"id":"6","count":2},{"id":"25","count":1}]},{"inclusive_time":82,"id":"187","highest_child_id":324,"first_entry_time":12835,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":3,"id":"136","highest_child_id":314,"first_entry_time":12840,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"173","highest_child_id":315,"first_entry_time":12845,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":32,"id":"183","highest_child_id":320,"first_entry_time":12850,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":1,"id":"184","highest_child_id":317,"first_entry_time":12852,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"140","highest_child_id":318,"first_entry_time":12854,"exclusive_time":0,"entries":8},{"inclusive_time":3,"id":"161","highest_child_id":319,"first_entry_time":12855,"exclusive_time":3,"entries":2},{"inclusive_time":3,"id":"171","highest_child_id":320,"first_entry_time":12859,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":2},{"id":"6","count":4},{"id":"25","count":2}]},{"inclusive_time":8,"id":"42","highest_child_id":322,"first_entry_time":12888,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":322,"first_entry_time":12889,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":2}]},{"inclusive_time":1,"id":"161","highest_child_id":323,"first_entry_time":12898,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"188","highest_child_id":324,"first_entry_time":12914,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":5}]},{"inclusive_time":37,"id":"189","highest_child_id":329,"first_entry_time":12987,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":1,"id":"143","highest_child_id":326,"first_entry_time":12990,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"161","highest_child_id":327,"first_entry_time":12993,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"136","highest_child_id":328,"first_entry_time":12999,"exclusive_time":4,"entries":3,"allocations":[{"id":"10","count":3},{"id":"25","count":3}]},{"inclusive_time":3,"id":"42","highest_child_id":329,"first_entry_time":13002,"exclusive_time":3,"entries":3}],"allocations":[{"id":"10","count":7},{"id":"25","count":4},{"id":"6","count":1}]},{"inclusive_time":40,"id":"190","highest_child_id":333,"first_entry_time":13051,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":331,"first_entry_time":13053,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"149","highest_child_id":332,"first_entry_time":13058,"exclusive_time":0,"entries":7},{"inclusive_time":2,"id":"191","highest_child_id":333,"first_entry_time":13076,"exclusive_time":2,"entries":3}],"allocations":[{"id":"10","count":1},{"id":"25","count":4}]},{"inclusive_time":357,"id":"192","highest_child_id":343,"first_entry_time":13144,"exclusive_time":345,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":335,"first_entry_time":13147,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"158","highest_child_id":336,"first_entry_time":13151,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"171","highest_child_id":337,"first_entry_time":13155,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"140","highest_child_id":338,"first_entry_time":13157,"exclusive_time":0,"entries":4},{"inclusive_time":29,"id":"193","highest_child_id":339,"first_entry_time":13168,"exclusive_time":0,"entries":147},{"inclusive_time":24,"id":"194","highest_child_id":340,"first_entry_time":13178,"exclusive_time":0,"entries":147},{"inclusive_time":1,"id":"125","highest_child_id":341,"first_entry_time":13281,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"184","highest_child_id":342,"first_entry_time":13454,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"195","highest_child_id":343,"first_entry_time":13497,"exclusive_time":3,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1},{"id":"25","count":2},{"id":"170","count":4},{"id":"27","count":147}]},{"inclusive_time":3,"id":"196","highest_child_id":344,"first_entry_time":13525,"exclusive_time":2,"entries":1},{"inclusive_time":22,"id":"197","highest_child_id":347,"first_entry_time":13550,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":346,"first_entry_time":13552,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"198","highest_child_id":347,"first_entry_time":13566,"exclusive_time":3,"entries":3}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":28,"id":"199","highest_child_id":350,"first_entry_time":13606,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":349,"first_entry_time":13609,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"200","highest_child_id":350,"first_entry_time":13623,"exclusive_time":2,"entries":3}],"allocations":[{"id":"6","count":1},{"id":"10","count":1},{"id":"25","count":4}]},{"inclusive_time":94,"id":"201","highest_child_id":363,"first_entry_time":13699,"exclusive_time":62,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":352,"first_entry_time":13700,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"87","highest_child_id":353,"first_entry_time":13702,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"183","highest_child_id":358,"first_entry_time":13706,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"184","highest_child_id":355,"first_entry_time":13708,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"140","highest_child_id":356,"first_entry_time":13710,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"161","highest_child_id":357,"first_entry_time":13712,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"171","highest_child_id":358,"first_entry_time":13716,"exclusive_time":1,"entries":3}],"allocations":[{"id":"27","count":1},{"id":"6","count":2},{"id":"25","count":1}]},{"inclusive_time":3,"id":"161","highest_child_id":359,"first_entry_time":13724,"exclusive_time":3,"entries":2},{"inclusive_time":3,"id":"202","highest_child_id":360,"first_entry_time":13737,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"203","highest_child_id":361,"first_entry_time":13749,"exclusive_time":2,"entries":3},{"inclusive_time":1,"id":"204","highest_child_id":362,"first_entry_time":13766,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"205","highest_child_id":363,"first_entry_time":13782,"exclusive_time":2,"entries":3}],"allocations":[{"id":"25","count":2}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":3},{"id":"27","count":1},{"id":"25","count":3}]},{"inclusive_time":2,"id":"206","highest_child_id":364,"first_entry_time":13812,"exclusive_time":1,"entries":1}]}]}]}]}],"allocations":[{"id":"2","count":6},{"id":"16","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":365,"first_entry_time":13844,"exclusive_time":3,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":1186,"id":"207","highest_child_id":453,"first_entry_time":13850,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":367,"first_entry_time":13852,"exclusive_time":0,"entries":1},{"inclusive_time":68,"id":"45","highest_child_id":384,"first_entry_time":13855,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":369,"first_entry_time":13857,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":370,"first_entry_time":13860,"exclusive_time":0,"entries":1},{"inclusive_time":60,"id":"46","highest_child_id":384,"first_entry_time":13862,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"47","highest_child_id":372,"first_entry_time":13863,"exclusive_time":0,"entries":1},{"inclusive_time":49,"id":"51","highest_child_id":381,"first_entry_time":13867,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":45,"id":"53","highest_child_id":380,"first_entry_time":13869,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":20,"id":"55","highest_child_id":375,"first_entry_time":13876,"exclusive_time":20,"entries":2,"allocations":[{"id":"56","count":2}]},{"inclusive_time":3,"id":"85","highest_child_id":377,"first_entry_time":13900,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":377,"first_entry_time":13902,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":8,"id":"68","highest_child_id":379,"first_entry_time":13904,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"69","highest_child_id":379,"first_entry_time":13907,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"71","highest_child_id":380,"first_entry_time":13913,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"54","count":1}]},{"inclusive_time":0,"id":"71","highest_child_id":381,"first_entry_time":13916,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"86","highest_child_id":382,"first_entry_time":13917,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"87","highest_child_id":383,"first_entry_time":13918,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"88","highest_child_id":384,"first_entry_time":13920,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1085,"id":"208","highest_child_id":451,"first_entry_time":13947,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":232,"id":"9","highest_child_id":398,"first_entry_time":13952,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":102,"id":"24","highest_child_id":391,"first_entry_time":13956,"exclusive_time":70,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":388,"first_entry_time":13963,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":389,"first_entry_time":13964,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":390,"first_entry_time":13968,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":29,"id":"37","highest_child_id":391,"first_entry_time":14002,"exclusive_time":28,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"27","count":2},{"id":"28","count":3}]},{"inclusive_time":98,"id":"11","highest_child_id":397,"first_entry_time":14080,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":56,"id":"12","highest_child_id":397,"first_entry_time":14121,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":47,"id":"14","highest_child_id":397,"first_entry_time":14130,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":27,"id":"15","highest_child_id":397,"first_entry_time":14136,"exclusive_time":23,"entries":3,"callees":[{"inclusive_time":1,"id":"61","highest_child_id":396,"first_entry_time":14142,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"17","highest_child_id":397,"first_entry_time":14145,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":398,"first_entry_time":14181,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":845,"id":"209","highest_child_id":451,"first_entry_time":14186,"exclusive_time":50,"entries":1,"callees":[{"inclusive_time":588,"id":"210","highest_child_id":446,"first_entry_time":14212,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":0,"id":"49","highest_child_id":401,"first_entry_time":14215,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":78,"id":"9","highest_child_id":408,"first_entry_time":14219,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":62,"id":"24","highest_child_id":407,"first_entry_time":14223,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":404,"first_entry_time":14240,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":405,"first_entry_time":14242,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":406,"first_entry_time":14245,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":3,"id":"37","highest_child_id":407,"first_entry_time":14273,"exclusive_time":3,"entries":2}],"allocations":[{"id":"10","count":12},{"id":"25","count":3},{"id":"6","count":4},{"id":"26","count":4},{"id":"28","count":2}]},{"inclusive_time":1,"id":"20","highest_child_id":408,"first_entry_time":14295,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":476,"id":"211","highest_child_id":446,"first_entry_time":14325,"exclusive_time":223,"entries":1,"callees":[{"inclusive_time":239,"id":"212","highest_child_id":434,"first_entry_time":14542,"exclusive_time":139,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":411,"first_entry_time":14546,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"83","highest_child_id":415,"first_entry_time":14552,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":1,"id":"213","highest_child_id":413,"first_entry_time":14563,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"29","highest_child_id":414,"first_entry_time":14565,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"78","highest_child_id":415,"first_entry_time":14567,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"84","highest_child_id":416,"first_entry_time":14572,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"67","highest_child_id":417,"first_entry_time":14575,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":72,"id":"214","highest_child_id":432,"first_entry_time":14704,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":419,"first_entry_time":14711,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"70","highest_child_id":420,"first_entry_time":14727,"exclusive_time":2,"entries":1},{"inclusive_time":4,"id":"216","highest_child_id":421,"first_entry_time":14746,"exclusive_time":4,"entries":1},{"inclusive_time":21,"id":"72","highest_child_id":431,"first_entry_time":14753,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":423,"first_entry_time":14755,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":424,"first_entry_time":14757,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":425,"first_entry_time":14764,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":427,"first_entry_time":14765,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":427,"first_entry_time":14766,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":429,"first_entry_time":14769,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":429,"first_entry_time":14769,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":430,"first_entry_time":14771,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":431,"first_entry_time":14772,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"71","highest_child_id":432,"first_entry_time":14776,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"16","count":2},{"id":"6","count":1},{"id":"7","count":1},{"id":"215","count":1},{"id":"60","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":433,"first_entry_time":14778,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":434,"first_entry_time":14781,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"6","count":1},{"id":"56","count":2},{"id":"60","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":435,"first_entry_time":14783,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":436,"first_entry_time":14785,"exclusive_time":0,"entries":2},{"inclusive_time":12,"id":"72","highest_child_id":446,"first_entry_time":14787,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":438,"first_entry_time":14788,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":439,"first_entry_time":14789,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":440,"first_entry_time":14791,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"75","highest_child_id":442,"first_entry_time":14792,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":442,"first_entry_time":14792,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":444,"first_entry_time":14794,"exclusive_time":0,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":444,"first_entry_time":14795,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":445,"first_entry_time":14796,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":446,"first_entry_time":14797,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":204,"id":"217","highest_child_id":449,"first_entry_time":14819,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":124,"id":"219","highest_child_id":449,"first_entry_time":14890,"exclusive_time":120,"entries":1,"callees":[{"inclusive_time":3,"id":"88","highest_child_id":449,"first_entry_time":14969,"exclusive_time":3,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"220","count":1}]}],"allocations":[{"id":"218","count":1}]},{"inclusive_time":2,"id":"70","highest_child_id":450,"first_entry_time":15027,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":451,"first_entry_time":15032,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"70","highest_child_id":452,"first_entry_time":15034,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":453,"first_entry_time":15036,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":13,"id":"221","highest_child_id":456,"first_entry_time":15251,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":455,"first_entry_time":15260,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":456,"first_entry_time":15264,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"222","count":1},{"id":"13","count":2}]},{"inclusive_time":838,"id":"79","highest_child_id":488,"first_entry_time":15268,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":152,"id":"9","highest_child_id":459,"first_entry_time":15276,"exclusive_time":149,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":459,"first_entry_time":15425,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":663,"id":"223","highest_child_id":488,"first_entry_time":15443,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":647,"id":"224","highest_child_id":488,"first_entry_time":15459,"exclusive_time":84,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":462,"first_entry_time":15461,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":352,"id":"9","highest_child_id":475,"first_entry_time":15465,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":335,"id":"24","highest_child_id":474,"first_entry_time":15469,"exclusive_time":223,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":465,"first_entry_time":15477,"exclusive_time":1,"entries":9},{"inclusive_time":4,"id":"30","highest_child_id":466,"first_entry_time":15479,"exclusive_time":2,"entries":10},{"inclusive_time":5,"id":"17","highest_child_id":467,"first_entry_time":15482,"exclusive_time":3,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":0,"id":"31","highest_child_id":468,"first_entry_time":15596,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"32","highest_child_id":471,"first_entry_time":15599,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"33","highest_child_id":471,"first_entry_time":15601,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"34","highest_child_id":471,"first_entry_time":15603,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"35","highest_child_id":472,"first_entry_time":15605,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"36","highest_child_id":473,"first_entry_time":15609,"exclusive_time":0,"entries":1},{"inclusive_time":104,"id":"37","highest_child_id":474,"first_entry_time":15617,"exclusive_time":99,"entries":30}],"allocations":[{"id":"10","count":29},{"id":"25","count":6},{"id":"6","count":12},{"id":"26","count":10},{"id":"28","count":6}]},{"inclusive_time":2,"id":"20","highest_child_id":475,"first_entry_time":15815,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":209,"id":"225","highest_child_id":488,"first_entry_time":15897,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":477,"first_entry_time":15901,"exclusive_time":1,"entries":1},{"inclusive_time":172,"id":"226","highest_child_id":488,"first_entry_time":15933,"exclusive_time":111,"entries":1,"callees":[{"inclusive_time":60,"id":"227","highest_child_id":488,"first_entry_time":16045,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":29,"id":"229","highest_child_id":482,"first_entry_time":16060,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":10,"id":"94","highest_child_id":482,"first_entry_time":16079,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":482,"first_entry_time":16082,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"230","count":1}]},{"inclusive_time":3,"id":"96","highest_child_id":483,"first_entry_time":16093,"exclusive_time":3,"entries":1},{"inclusive_time":0,"id":"130","highest_child_id":484,"first_entry_time":16097,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"97","highest_child_id":488,"first_entry_time":16099,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"99","highest_child_id":486,"first_entry_time":16100,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"100","highest_child_id":487,"first_entry_time":16102,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"47","highest_child_id":488,"first_entry_time":16103,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"98","count":1}]}],"allocations":[{"id":"228","count":1}]}],"allocations":[{"id":"16","count":1},{"id":"13","count":1},{"id":"222","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":44507,"id":"231","highest_child_id":3382,"first_entry_time":16395,"exclusive_time":1563,"entries":1,"callees":[{"inclusive_time":26,"id":"83","highest_child_id":494,"first_entry_time":16402,"exclusive_time":22,"entries":3,"callees":[{"inclusive_time":1,"id":"213","highest_child_id":491,"first_entry_time":16406,"exclusive_time":1,"entries":3},{"inclusive_time":0,"id":"29","highest_child_id":492,"first_entry_time":16408,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"78","highest_child_id":493,"first_entry_time":16409,"exclusive_time":0,"entries":3},{"inclusive_time":0,"id":"31","highest_child_id":494,"first_entry_time":16423,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"84","highest_child_id":495,"first_entry_time":16414,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"44","highest_child_id":496,"first_entry_time":16417,"exclusive_time":1,"entries":3},{"inclusive_time":9,"id":"232","highest_child_id":501,"first_entry_time":16451,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":498,"first_entry_time":16454,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"31","highest_child_id":499,"first_entry_time":16456,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"30","highest_child_id":500,"first_entry_time":16457,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"45","highest_child_id":501,"first_entry_time":16459,"exclusive_time":1,"entries":1}]},{"inclusive_time":42,"id":"45","highest_child_id":509,"first_entry_time":16473,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":503,"first_entry_time":16475,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":504,"first_entry_time":16478,"exclusive_time":0,"entries":1},{"inclusive_time":35,"id":"46","highest_child_id":509,"first_entry_time":16480,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":2,"id":"47","highest_child_id":506,"first_entry_time":16482,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"233","highest_child_id":507,"first_entry_time":16501,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"234","highest_child_id":508,"first_entry_time":16512,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"87","highest_child_id":509,"first_entry_time":16514,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":2,"id":"69","highest_child_id":510,"first_entry_time":16524,"exclusive_time":1,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":75,"id":"235","highest_child_id":525,"first_entry_time":16553,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":25,"id":"9","highest_child_id":513,"first_entry_time":16560,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":513,"first_entry_time":16582,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":22,"id":"236","highest_child_id":525,"first_entry_time":16606,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":16,"id":"72","highest_child_id":524,"first_entry_time":16610,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":516,"first_entry_time":16612,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":517,"first_entry_time":16613,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":518,"first_entry_time":16616,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":520,"first_entry_time":16617,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":520,"first_entry_time":16618,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":522,"first_entry_time":16620,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":522,"first_entry_time":16621,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"234","highest_child_id":523,"first_entry_time":16623,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":524,"first_entry_time":16624,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"71","highest_child_id":525,"first_entry_time":16628,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":370,"id":"237","highest_child_id":548,"first_entry_time":17812,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":527,"first_entry_time":17822,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":288,"id":"9","highest_child_id":544,"first_entry_time":17827,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":138,"id":"24","highest_child_id":534,"first_entry_time":17831,"exclusive_time":101,"entries":1,"callees":[{"inclusive_time":1,"id":"86","highest_child_id":530,"first_entry_time":17863,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":531,"first_entry_time":17864,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"17","highest_child_id":532,"first_entry_time":17868,"exclusive_time":2,"entries":6,"allocations":[{"id":"18","count":6}]},{"inclusive_time":0,"id":"29","highest_child_id":533,"first_entry_time":17871,"exclusive_time":0,"entries":3},{"inclusive_time":32,"id":"37","highest_child_id":534,"first_entry_time":17916,"exclusive_time":31,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"27","count":1},{"id":"28","count":3}]},{"inclusive_time":123,"id":"11","highest_child_id":543,"first_entry_time":17986,"exclusive_time":53,"entries":1,"callees":[{"inclusive_time":69,"id":"12","highest_child_id":543,"first_entry_time":18039,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":65,"id":"14","highest_child_id":543,"first_entry_time":18043,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":50,"id":"15","highest_child_id":542,"first_entry_time":18048,"exclusive_time":39,"entries":4,"callees":[{"inclusive_time":5,"id":"38","highest_child_id":540,"first_entry_time":18053,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"39","highest_child_id":540,"first_entry_time":18054,"exclusive_time":0,"entries":1}],"allocations":[{"id":"25","count":2}]},{"inclusive_time":3,"id":"61","highest_child_id":541,"first_entry_time":18064,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"17","highest_child_id":542,"first_entry_time":18068,"exclusive_time":2,"entries":4,"allocations":[{"id":"18","count":4}]}],"allocations":[{"id":"2","count":12},{"id":"16","count":2}]},{"inclusive_time":1,"id":"19","highest_child_id":543,"first_entry_time":18084,"exclusive_time":0,"entries":1}],"allocations":[{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":544,"first_entry_time":18113,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":64,"id":"238","highest_child_id":548,"first_entry_time":18117,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":20,"id":"239","highest_child_id":548,"first_entry_time":18154,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":547,"first_entry_time":18170,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":548,"first_entry_time":18174,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"16","count":2},{"id":"6","count":1},{"id":"56","count":1},{"id":"60","count":1}]}],"allocations":[{"id":"18","count":1},{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":40,"id":"240","highest_child_id":553,"first_entry_time":18239,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":550,"first_entry_time":18241,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":18,"id":"9","highest_child_id":552,"first_entry_time":18246,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":552,"first_entry_time":18261,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":1,"id":"241","highest_child_id":553,"first_entry_time":18277,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":4,"id":"55","highest_child_id":554,"first_entry_time":18283,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"242","highest_child_id":555,"first_entry_time":18297,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":407,"id":"79","highest_child_id":579,"first_entry_time":18302,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":335,"id":"9","highest_child_id":573,"first_entry_time":18308,"exclusive_time":140,"entries":1,"callees":[{"inclusive_time":192,"id":"11","highest_child_id":572,"first_entry_time":18444,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":155,"id":"12","highest_child_id":572,"first_entry_time":18481,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":151,"id":"14","highest_child_id":572,"first_entry_time":18484,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":137,"id":"15","highest_child_id":572,"first_entry_time":18490,"exclusive_time":35,"entries":3,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":562,"first_entry_time":18499,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":92,"id":"43","highest_child_id":567,"first_entry_time":18520,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":59,"id":"243","highest_child_id":567,"first_entry_time":18552,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":565,"first_entry_time":18584,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"245","highest_child_id":566,"first_entry_time":18601,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"191","highest_child_id":567,"first_entry_time":18604,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":6}]}]},{"inclusive_time":0,"id":"44","highest_child_id":568,"first_entry_time":18614,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"32","highest_child_id":571,"first_entry_time":18622,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"33","highest_child_id":571,"first_entry_time":18624,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"34","highest_child_id":571,"first_entry_time":18625,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"45","highest_child_id":572,"first_entry_time":18628,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":9},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":573,"first_entry_time":18640,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":64,"id":"246","highest_child_id":579,"first_entry_time":18645,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":575,"first_entry_time":18648,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"247","highest_child_id":579,"first_entry_time":18695,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":577,"first_entry_time":18697,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"70","highest_child_id":578,"first_entry_time":18705,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":579,"first_entry_time":18708,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":5,"id":"221","highest_child_id":581,"first_entry_time":18711,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":581,"first_entry_time":18716,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"222","count":1},{"id":"13","count":2}]},{"inclusive_time":181,"id":"223","highest_child_id":601,"first_entry_time":18721,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":70,"id":"225","highest_child_id":595,"first_entry_time":18723,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":584,"first_entry_time":18725,"exclusive_time":0,"entries":1},{"inclusive_time":37,"id":"248","highest_child_id":595,"first_entry_time":18755,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":31,"id":"227","highest_child_id":595,"first_entry_time":18761,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":10,"id":"229","highest_child_id":589,"first_entry_time":18763,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"94","highest_child_id":589,"first_entry_time":18765,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":589,"first_entry_time":18767,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"230","count":1}]},{"inclusive_time":2,"id":"96","highest_child_id":590,"first_entry_time":18780,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"130","highest_child_id":591,"first_entry_time":18784,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"97","highest_child_id":595,"first_entry_time":18786,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"99","highest_child_id":593,"first_entry_time":18787,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"100","highest_child_id":594,"first_entry_time":18788,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"47","highest_child_id":595,"first_entry_time":18790,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"98","count":1}]}],"allocations":[{"id":"249","count":1}]}],"allocations":[{"id":"16","count":1},{"id":"13","count":1},{"id":"222","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"6","count":1},{"id":"7","count":1}]},{"inclusive_time":88,"id":"250","highest_child_id":601,"first_entry_time":18863,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":71,"id":"251","highest_child_id":601,"first_entry_time":18880,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"253","highest_child_id":598,"first_entry_time":18893,"exclusive_time":1,"entries":1,"allocations":[{"id":"254","count":1}]},{"inclusive_time":45,"id":"255","highest_child_id":601,"first_entry_time":18905,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1,"id":"256","highest_child_id":600,"first_entry_time":18916,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"257","highest_child_id":601,"first_entry_time":18950,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"252","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":18,"id":"246","highest_child_id":606,"first_entry_time":18794,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":603,"first_entry_time":18796,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"247","highest_child_id":606,"first_entry_time":18799,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":605,"first_entry_time":18800,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":606,"first_entry_time":18812,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}]},{"inclusive_time":1,"id":"258","highest_child_id":607,"first_entry_time":18828,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"259","highest_child_id":608,"first_entry_time":18837,"exclusive_time":1,"entries":1,"allocations":[{"id":"7","count":1}]},{"inclusive_time":3,"id":"260","highest_child_id":609,"first_entry_time":18982,"exclusive_time":2,"entries":1,"allocations":[{"id":"261","count":1},{"id":"2","count":1}]},{"inclusive_time":422,"id":"262","highest_child_id":624,"first_entry_time":19013,"exclusive_time":167,"entries":1,"callees":[{"inclusive_time":32,"id":"9","highest_child_id":613,"first_entry_time":19122,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":13,"id":"24","highest_child_id":612,"first_entry_time":19127,"exclusive_time":13,"entries":1,"allocations":[{"id":"10","count":7},{"id":"25","count":2},{"id":"6","count":2},{"id":"26","count":2},{"id":"28","count":2}]},{"inclusive_time":2,"id":"20","highest_child_id":613,"first_entry_time":19152,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":222,"id":"263","highest_child_id":624,"first_entry_time":19212,"exclusive_time":173,"entries":1,"callees":[{"inclusive_time":46,"id":"264","highest_child_id":621,"first_entry_time":19368,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":616,"first_entry_time":19372,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":8,"id":"267","highest_child_id":619,"first_entry_time":19401,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":618,"first_entry_time":19405,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":619,"first_entry_time":19409,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":620,"first_entry_time":19411,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":621,"first_entry_time":19414,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"16","count":4},{"id":"8","count":1},{"id":"265","count":1},{"id":"50","count":1},{"id":"266","count":1}]},{"inclusive_time":1,"id":"268","highest_child_id":622,"first_entry_time":19427,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":623,"first_entry_time":19431,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":624,"first_entry_time":19434,"exclusive_time":0,"entries":1}],"allocations":[{"id":"3","count":2},{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":9,"id":"269","highest_child_id":627,"first_entry_time":19461,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":626,"first_entry_time":19464,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":627,"first_entry_time":19467,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"58","highest_child_id":628,"first_entry_time":19473,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"270","highest_child_id":631,"first_entry_time":19488,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":630,"first_entry_time":19490,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":631,"first_entry_time":19493,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":4}]},{"inclusive_time":40431,"id":"271","highest_child_id":3334,"first_entry_time":19561,"exclusive_time":129,"entries":1,"callees":[{"inclusive_time":1,"id":"272","highest_child_id":633,"first_entry_time":19582,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"273","highest_child_id":634,"first_entry_time":19591,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"274","highest_child_id":635,"first_entry_time":19605,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":40298,"id":"275","highest_child_id":3333,"first_entry_time":19673,"exclusive_time":45,"entries":8,"callees":[{"inclusive_time":40252,"id":"276","highest_child_id":3333,"first_entry_time":19686,"exclusive_time":32,"entries":8,"callees":[{"inclusive_time":40220,"id":"277","highest_child_id":3333,"first_entry_time":19707,"exclusive_time":165,"entries":8,"callees":[{"inclusive_time":129,"id":"278","highest_child_id":648,"first_entry_time":19747,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":105,"id":"104","highest_child_id":648,"first_entry_time":19767,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":101,"id":"105","highest_child_id":648,"first_entry_time":19769,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":642,"first_entry_time":19770,"exclusive_time":1,"entries":2,"allocations":[{"id":"279","count":1},{"id":"280","count":1}]},{"inclusive_time":95,"id":"94","highest_child_id":648,"first_entry_time":19772,"exclusive_time":40,"entries":2,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":644,"first_entry_time":19774,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"281","highest_child_id":645,"first_entry_time":19796,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1},{"id":"282","count":1},{"id":"283","count":1},{"id":"6","count":1},{"id":"25","count":1}]},{"inclusive_time":48,"id":"284","highest_child_id":648,"first_entry_time":19824,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":647,"first_entry_time":19853,"exclusive_time":1,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":3,"id":"286","highest_child_id":648,"first_entry_time":19869,"exclusive_time":3,"entries":1,"allocations":[{"id":"287","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":6},{"id":"10","count":5}]},{"inclusive_time":24568,"id":"288","highest_child_id":1993,"first_entry_time":19919,"exclusive_time":50,"entries":1,"callees":[{"inclusive_time":1,"id":"289","highest_child_id":650,"first_entry_time":19934,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"290","highest_child_id":651,"first_entry_time":19945,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":24511,"id":"291","highest_child_id":1991,"first_entry_time":19970,"exclusive_time":259,"entries":1,"callees":[{"inclusive_time":2,"id":"292","highest_child_id":653,"first_entry_time":19989,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":48,"id":"294","highest_child_id":655,"first_entry_time":20034,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":6,"id":"297","highest_child_id":655,"first_entry_time":20075,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":2},{"id":"295","count":1},{"id":"296","count":1},{"id":"283","count":1}]},{"inclusive_time":24200,"id":"298","highest_child_id":1990,"first_entry_time":20279,"exclusive_time":476,"entries":1,"callees":[{"inclusive_time":2,"id":"299","highest_child_id":657,"first_entry_time":20291,"exclusive_time":2,"entries":2},{"inclusive_time":23,"id":"300","highest_child_id":658,"first_entry_time":20309,"exclusive_time":22,"entries":5,"allocations":[{"id":"27","count":5},{"id":"56","count":5}]},{"inclusive_time":2,"id":"301","highest_child_id":659,"first_entry_time":20354,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"302","highest_child_id":660,"first_entry_time":20365,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"303","highest_child_id":661,"first_entry_time":20379,"exclusive_time":5,"entries":2,"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":1,"id":"304","highest_child_id":662,"first_entry_time":20400,"exclusive_time":1,"entries":1},{"inclusive_time":139,"id":"104","highest_child_id":677,"first_entry_time":20422,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":136,"id":"105","highest_child_id":677,"first_entry_time":20424,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":665,"first_entry_time":20426,"exclusive_time":0,"entries":1,"allocations":[{"id":"305","count":1}]},{"inclusive_time":131,"id":"94","highest_child_id":677,"first_entry_time":20428,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":667,"first_entry_time":20430,"exclusive_time":0,"entries":1},{"inclusive_time":83,"id":"306","highest_child_id":676,"first_entry_time":20458,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"307","highest_child_id":669,"first_entry_time":20469,"exclusive_time":0,"entries":1},{"inclusive_time":66,"id":"104","highest_child_id":676,"first_entry_time":20471,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":64,"id":"105","highest_child_id":676,"first_entry_time":20473,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"106","highest_child_id":672,"first_entry_time":20475,"exclusive_time":0,"entries":1,"allocations":[{"id":"308","count":1}]},{"inclusive_time":60,"id":"94","highest_child_id":676,"first_entry_time":20477,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":674,"first_entry_time":20479,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"309","highest_child_id":675,"first_entry_time":20496,"exclusive_time":7,"entries":1,"allocations":[{"id":"310","count":1},{"id":"10","count":2}]},{"inclusive_time":12,"id":"311","highest_child_id":676,"first_entry_time":20523,"exclusive_time":12,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":5}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":4,"id":"312","highest_child_id":677,"first_entry_time":20556,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":3},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":10,"id":"313","highest_child_id":679,"first_entry_time":20575,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"314","highest_child_id":679,"first_entry_time":20583,"exclusive_time":1,"entries":1}]},{"inclusive_time":23520,"id":"315","highest_child_id":1986,"first_entry_time":20929,"exclusive_time":1078,"entries":1,"callees":[{"inclusive_time":6,"id":"316","highest_child_id":681,"first_entry_time":20972,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":94,"id":"317","highest_child_id":688,"first_entry_time":21064,"exclusive_time":83,"entries":3,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":683,"first_entry_time":21075,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"319","highest_child_id":684,"first_entry_time":21084,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"320","highest_child_id":685,"first_entry_time":21100,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"321","highest_child_id":686,"first_entry_time":21115,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":1,"id":"322","highest_child_id":687,"first_entry_time":21124,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"317","highest_child_id":688,"first_entry_time":26419,"exclusive_time":1,"entries":3}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"323","highest_child_id":689,"first_entry_time":21137,"exclusive_time":1,"entries":1},{"inclusive_time":185,"id":"324","highest_child_id":701,"first_entry_time":21195,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":159,"id":"325","highest_child_id":699,"first_entry_time":21206,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":692,"first_entry_time":21213,"exclusive_time":0,"entries":2},{"inclusive_time":136,"id":"327","highest_child_id":699,"first_entry_time":21226,"exclusive_time":34,"entries":2,"callees":[{"inclusive_time":101,"id":"328","highest_child_id":699,"first_entry_time":21258,"exclusive_time":51,"entries":2,"callees":[{"inclusive_time":41,"id":"329","highest_child_id":697,"first_entry_time":21268,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":19,"id":"331","highest_child_id":697,"first_entry_time":21284,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":2,"id":"332","highest_child_id":697,"first_entry_time":21297,"exclusive_time":2,"entries":2}],"allocations":[{"id":"170","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"330","count":2}]},{"inclusive_time":5,"id":"333","highest_child_id":698,"first_entry_time":21313,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"334","count":2}]},{"inclusive_time":5,"id":"335","highest_child_id":699,"first_entry_time":21332,"exclusive_time":4,"entries":5,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":2,"id":"58","highest_child_id":700,"first_entry_time":21369,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"335","highest_child_id":701,"first_entry_time":21378,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"56","count":2},{"id":"27","count":2}]},{"inclusive_time":23,"id":"336","highest_child_id":704,"first_entry_time":21407,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":703,"first_entry_time":21408,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":704,"first_entry_time":21427,"exclusive_time":2,"entries":1}]},{"inclusive_time":4797,"id":"338","highest_child_id":750,"first_entry_time":21550,"exclusive_time":191,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":706,"first_entry_time":21552,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":329,"id":"339","highest_child_id":726,"first_entry_time":21573,"exclusive_time":99,"entries":4,"callees":[{"inclusive_time":22,"id":"340","highest_child_id":710,"first_entry_time":21589,"exclusive_time":18,"entries":4,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":709,"first_entry_time":21599,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"342","highest_child_id":710,"first_entry_time":21909,"exclusive_time":1,"entries":6}]},{"inclusive_time":5,"id":"343","highest_child_id":711,"first_entry_time":21611,"exclusive_time":5,"entries":4},{"inclusive_time":203,"id":"344","highest_child_id":726,"first_entry_time":21678,"exclusive_time":100,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":713,"first_entry_time":21680,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"345","highest_child_id":714,"first_entry_time":21701,"exclusive_time":3,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":2,"id":"346","highest_child_id":715,"first_entry_time":21716,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"347","highest_child_id":716,"first_entry_time":21740,"exclusive_time":2,"entries":1},{"inclusive_time":36,"id":"348","highest_child_id":719,"first_entry_time":21766,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":718,"first_entry_time":21779,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"350","highest_child_id":719,"first_entry_time":21795,"exclusive_time":6,"entries":1}]},{"inclusive_time":36,"id":"351","highest_child_id":723,"first_entry_time":21824,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":721,"first_entry_time":21826,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"342","highest_child_id":722,"first_entry_time":21838,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"352","highest_child_id":723,"first_entry_time":21856,"exclusive_time":2,"entries":1}]},{"inclusive_time":18,"id":"352","highest_child_id":726,"first_entry_time":21863,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":726,"first_entry_time":21878,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":726,"first_entry_time":21879,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":13,"id":"354","highest_child_id":727,"first_entry_time":21903,"exclusive_time":12,"entries":4,"allocations":[{"id":"10","count":1}]},{"inclusive_time":31,"id":"355","highest_child_id":730,"first_entry_time":21939,"exclusive_time":9,"entries":3,"callees":[{"inclusive_time":18,"id":"297","highest_child_id":729,"first_entry_time":21942,"exclusive_time":18,"entries":3,"allocations":[{"id":"295","count":3},{"id":"26","count":3}]},{"inclusive_time":4,"id":"337","highest_child_id":730,"first_entry_time":21948,"exclusive_time":3,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":16,"id":"317","highest_child_id":736,"first_entry_time":21987,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":732,"first_entry_time":21990,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":733,"first_entry_time":21992,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":734,"first_entry_time":21993,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":735,"first_entry_time":21995,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"322","highest_child_id":736,"first_entry_time":22000,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":7,"id":"356","highest_child_id":737,"first_entry_time":22124,"exclusive_time":7,"entries":1,"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":4204,"id":"352","highest_child_id":750,"first_entry_time":22143,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4200,"id":"353","highest_child_id":750,"first_entry_time":22146,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":740,"first_entry_time":22148,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"317","highest_child_id":746,"first_entry_time":22150,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":742,"first_entry_time":22153,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":743,"first_entry_time":22155,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":744,"first_entry_time":22156,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":745,"first_entry_time":22158,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":746,"first_entry_time":22160,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4168,"id":"357","highest_child_id":750,"first_entry_time":22178,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":4103,"id":"358","highest_child_id":750,"first_entry_time":22243,"exclusive_time":2532,"entries":1,"callees":[{"inclusive_time":140,"id":"359","highest_child_id":749,"first_entry_time":22263,"exclusive_time":0,"entries":782},{"inclusive_time":1873,"id":"360","highest_child_id":750,"first_entry_time":22288,"exclusive_time":1571,"entries":1546,"allocations":[{"id":"6","count":783}]}],"allocations":[{"id":"170","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":10,"id":"361","highest_child_id":751,"first_entry_time":26400,"exclusive_time":10,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2248,"id":"362","highest_child_id":797,"first_entry_time":26829,"exclusive_time":300,"entries":1,"callees":[{"inclusive_time":1682,"id":"363","highest_child_id":764,"first_entry_time":26860,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":6,"id":"316","highest_child_id":754,"first_entry_time":26862,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1671,"id":"352","highest_child_id":764,"first_entry_time":26871,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1667,"id":"353","highest_child_id":764,"first_entry_time":26874,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":757,"first_entry_time":26876,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"317","highest_child_id":760,"first_entry_time":26879,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":759,"first_entry_time":26882,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":760,"first_entry_time":26883,"exclusive_time":0,"entries":1}]},{"inclusive_time":1642,"id":"364","highest_child_id":764,"first_entry_time":26899,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1639,"id":"358","highest_child_id":764,"first_entry_time":26902,"exclusive_time":1258,"entries":1,"callees":[{"inclusive_time":133,"id":"359","highest_child_id":763,"first_entry_time":26910,"exclusive_time":0,"entries":782},{"inclusive_time":533,"id":"360","highest_child_id":764,"first_entry_time":26912,"exclusive_time":380,"entries":782,"allocations":[{"id":"6","count":782}]}],"allocations":[{"id":"170","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":43,"id":"365","highest_child_id":769,"first_entry_time":28626,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":766,"first_entry_time":28631,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"366","highest_child_id":767,"first_entry_time":28641,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":768,"first_entry_time":28644,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":3}]},{"inclusive_time":3,"id":"367","highest_child_id":769,"first_entry_time":28664,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":21,"id":"368","highest_child_id":773,"first_entry_time":28679,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":9,"id":"369","highest_child_id":773,"first_entry_time":28692,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":772,"first_entry_time":28696,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":773,"first_entry_time":28700,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"jit_entries":15,"inclusive_time":2,"id":"193","highest_child_id":774,"first_entry_time":28705,"exclusive_time":0,"entries":15},{"jit_entries":15,"inclusive_time":1,"id":"194","highest_child_id":775,"first_entry_time":28707,"exclusive_time":0,"entries":15},{"inclusive_time":29,"id":"303","highest_child_id":776,"first_entry_time":28709,"exclusive_time":26,"entries":15,"allocations":[{"id":"56","count":15}]},{"inclusive_time":8,"id":"360","highest_child_id":777,"first_entry_time":28786,"exclusive_time":6,"entries":8,"allocations":[{"id":"6","count":8}]},{"inclusive_time":3,"id":"367","highest_child_id":778,"first_entry_time":28791,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2,"id":"370","highest_child_id":779,"first_entry_time":28811,"exclusive_time":2,"entries":1},{"inclusive_time":96,"id":"371","highest_child_id":785,"first_entry_time":28875,"exclusive_time":42,"entries":4,"callees":[{"inclusive_time":17,"id":"360","highest_child_id":781,"first_entry_time":28877,"exclusive_time":15,"entries":8,"allocations":[{"id":"6","count":4}]},{"inclusive_time":35,"id":"372","highest_child_id":784,"first_entry_time":28897,"exclusive_time":13,"entries":4,"callees":[{"inclusive_time":21,"id":"331","highest_child_id":784,"first_entry_time":28903,"exclusive_time":18,"entries":4,"callees":[{"inclusive_time":3,"id":"374","highest_child_id":784,"first_entry_time":28915,"exclusive_time":2,"entries":4}],"allocations":[{"id":"170","count":4}]}],"allocations":[{"id":"27","count":4},{"id":"10","count":4},{"id":"6","count":4},{"id":"373","count":4}]},{"inclusive_time":3,"id":"375","highest_child_id":785,"first_entry_time":28926,"exclusive_time":2,"entries":4}]},{"inclusive_time":65,"id":"376","highest_child_id":796,"first_entry_time":28992,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":14,"id":"365","highest_child_id":791,"first_entry_time":28994,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":788,"first_entry_time":28998,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":789,"first_entry_time":29000,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"360","highest_child_id":790,"first_entry_time":29003,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"367","highest_child_id":791,"first_entry_time":29006,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":0,"id":"326","highest_child_id":792,"first_entry_time":29010,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"377","highest_child_id":793,"first_entry_time":29025,"exclusive_time":1,"entries":1},{"inclusive_time":20,"id":"378","highest_child_id":796,"first_entry_time":29037,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":10,"id":"379","highest_child_id":796,"first_entry_time":29047,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"380","highest_child_id":796,"first_entry_time":29055,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"261","count":1}]},{"inclusive_time":1,"id":"381","highest_child_id":797,"first_entry_time":29075,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1},{"id":"27","count":15}]},{"inclusive_time":711,"id":"382","highest_child_id":831,"first_entry_time":29102,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":16,"id":"316","highest_child_id":799,"first_entry_time":29105,"exclusive_time":15,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":689,"id":"352","highest_child_id":831,"first_entry_time":29124,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":685,"id":"353","highest_child_id":831,"first_entry_time":29127,"exclusive_time":93,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":802,"first_entry_time":29128,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"317","highest_child_id":805,"first_entry_time":29131,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":804,"first_entry_time":29134,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":805,"first_entry_time":29136,"exclusive_time":0,"entries":1}]},{"inclusive_time":583,"id":"383","highest_child_id":831,"first_entry_time":29229,"exclusive_time":84,"entries":1,"callees":[{"inclusive_time":15,"id":"384","highest_child_id":809,"first_entry_time":29241,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":808,"first_entry_time":29242,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"385","highest_child_id":809,"first_entry_time":29254,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"386","highest_child_id":810,"first_entry_time":29267,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"360","highest_child_id":811,"first_entry_time":29271,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"372","highest_child_id":812,"first_entry_time":29276,"exclusive_time":4,"entries":2,"allocations":[{"id":"27","count":2},{"id":"10","count":2},{"id":"6","count":2},{"id":"373","count":2}]},{"inclusive_time":2,"id":"375","highest_child_id":813,"first_entry_time":29281,"exclusive_time":1,"entries":2},{"inclusive_time":447,"id":"387","highest_child_id":824,"first_entry_time":29303,"exclusive_time":312,"entries":2,"callees":[{"inclusive_time":130,"id":"388","highest_child_id":822,"first_entry_time":29610,"exclusive_time":88,"entries":2,"callees":[{"inclusive_time":25,"id":"389","highest_child_id":818,"first_entry_time":29632,"exclusive_time":21,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":817,"first_entry_time":29642,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"391","highest_child_id":818,"first_entry_time":29688,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"392","highest_child_id":820,"first_entry_time":29659,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":820,"first_entry_time":29661,"exclusive_time":1,"entries":2}]},{"inclusive_time":6,"id":"393","highest_child_id":821,"first_entry_time":29670,"exclusive_time":5,"entries":2},{"inclusive_time":9,"id":"394","highest_child_id":822,"first_entry_time":29752,"exclusive_time":6,"entries":19}],"allocations":[{"id":"2","count":2},{"id":"27","count":21},{"id":"28","count":2}]},{"inclusive_time":4,"id":"389","highest_child_id":824,"first_entry_time":29691,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"391","highest_child_id":824,"first_entry_time":29693,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":3,"id":"395","highest_child_id":825,"first_entry_time":29706,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":5,"id":"397","highest_child_id":826,"first_entry_time":29724,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"398","count":2}]},{"inclusive_time":16,"id":"365","highest_child_id":831,"first_entry_time":29792,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":828,"first_entry_time":29796,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":829,"first_entry_time":29798,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":830,"first_entry_time":29800,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":831,"first_entry_time":29805,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]}]}]}]},{"inclusive_time":12283,"id":"399","highest_child_id":1772,"first_entry_time":29868,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":2,"id":"400","highest_child_id":833,"first_entry_time":29894,"exclusive_time":2,"entries":1},{"inclusive_time":12222,"id":"401","highest_child_id":1772,"first_entry_time":29929,"exclusive_time":234,"entries":1,"callees":[{"inclusive_time":7,"id":"402","highest_child_id":835,"first_entry_time":29966,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"400","highest_child_id":836,"first_entry_time":29972,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"403","highest_child_id":837,"first_entry_time":29982,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"342","highest_child_id":838,"first_entry_time":29984,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"404","highest_child_id":839,"first_entry_time":29993,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"294","highest_child_id":842,"first_entry_time":29995,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"292","highest_child_id":841,"first_entry_time":30000,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":4,"id":"297","highest_child_id":842,"first_entry_time":30004,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"295","count":1}]},{"inclusive_time":25,"id":"405","highest_child_id":845,"first_entry_time":30020,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":844,"first_entry_time":30027,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"407","highest_child_id":845,"first_entry_time":30040,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]}]},{"inclusive_time":7,"id":"408","highest_child_id":846,"first_entry_time":30053,"exclusive_time":7,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":2,"id":"409","highest_child_id":847,"first_entry_time":30072,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"410","highest_child_id":848,"first_entry_time":30082,"exclusive_time":0,"entries":1},{"inclusive_time":11924,"id":"411","highest_child_id":1770,"first_entry_time":30223,"exclusive_time":303,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":850,"first_entry_time":30227,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"412","highest_child_id":851,"first_entry_time":30245,"exclusive_time":1,"entries":1},{"inclusive_time":56,"id":"413","highest_child_id":854,"first_entry_time":30261,"exclusive_time":55,"entries":1,"callees":[{"jit_entries":27,"inclusive_time":3,"id":"193","highest_child_id":853,"first_entry_time":30265,"exclusive_time":0,"entries":27},{"jit_entries":27,"inclusive_time":2,"id":"194","highest_child_id":854,"first_entry_time":30268,"exclusive_time":0,"entries":27}],"allocations":[{"id":"6","count":1},{"id":"170","count":1},{"id":"27","count":27}]},{"inclusive_time":2,"id":"346","highest_child_id":855,"first_entry_time":30320,"exclusive_time":2,"entries":1},{"inclusive_time":93,"id":"339","highest_child_id":875,"first_entry_time":30324,"exclusive_time":18,"entries":9,"callees":[{"inclusive_time":27,"id":"340","highest_child_id":859,"first_entry_time":30325,"exclusive_time":21,"entries":9,"callees":[{"inclusive_time":6,"id":"342","highest_child_id":858,"first_entry_time":30327,"exclusive_time":3,"entries":18},{"inclusive_time":1,"id":"341","highest_child_id":859,"first_entry_time":41677,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"343","highest_child_id":860,"first_entry_time":30331,"exclusive_time":7,"entries":9},{"inclusive_time":40,"id":"344","highest_child_id":875,"first_entry_time":41681,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":862,"first_entry_time":41682,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"345","highest_child_id":863,"first_entry_time":41688,"exclusive_time":1,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":1,"id":"346","highest_child_id":864,"first_entry_time":41690,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"347","highest_child_id":865,"first_entry_time":41692,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"348","highest_child_id":868,"first_entry_time":41696,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":867,"first_entry_time":41698,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":868,"first_entry_time":41701,"exclusive_time":2,"entries":1}]},{"inclusive_time":6,"id":"351","highest_child_id":872,"first_entry_time":41708,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"414","highest_child_id":870,"first_entry_time":41709,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":871,"first_entry_time":41711,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"415","highest_child_id":872,"first_entry_time":41712,"exclusive_time":0,"entries":1}]},{"inclusive_time":4,"id":"352","highest_child_id":875,"first_entry_time":41716,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":875,"first_entry_time":41718,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":875,"first_entry_time":41719,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":28,"id":"354","highest_child_id":876,"first_entry_time":30334,"exclusive_time":26,"entries":11,"allocations":[{"id":"10","count":1}]},{"inclusive_time":28,"id":"317","highest_child_id":883,"first_entry_time":30348,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":878,"first_entry_time":30350,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"319","highest_child_id":879,"first_entry_time":30352,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"320","highest_child_id":880,"first_entry_time":30354,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"321","highest_child_id":881,"first_entry_time":30356,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":882,"first_entry_time":30359,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"317","highest_child_id":883,"first_entry_time":41829,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":12,"id":"405","highest_child_id":886,"first_entry_time":30364,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":885,"first_entry_time":30365,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"407","highest_child_id":886,"first_entry_time":30372,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]}]},{"inclusive_time":10,"id":"348","highest_child_id":889,"first_entry_time":30388,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":888,"first_entry_time":30391,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":889,"first_entry_time":30394,"exclusive_time":3,"entries":1}]},{"inclusive_time":11059,"id":"416","highest_child_id":1726,"first_entry_time":30577,"exclusive_time":138,"entries":2,"deopt_all":1,"callees":[{"inclusive_time":9,"id":"316","highest_child_id":891,"first_entry_time":30581,"exclusive_time":9,"entries":2,"allocations":[{"id":"295","count":2},{"id":"26","count":2}]},{"inclusive_time":6,"id":"408","highest_child_id":892,"first_entry_time":30593,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":35,"id":"317","highest_child_id":899,"first_entry_time":30598,"exclusive_time":27,"entries":4,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":894,"first_entry_time":30601,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"319","highest_child_id":895,"first_entry_time":30603,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"320","highest_child_id":896,"first_entry_time":30605,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"321","highest_child_id":897,"first_entry_time":30606,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":1,"id":"322","highest_child_id":898,"first_entry_time":30608,"exclusive_time":0,"entries":3},{"inclusive_time":0,"id":"317","highest_child_id":899,"first_entry_time":41301,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":2,"id":"409","highest_child_id":900,"first_entry_time":30611,"exclusive_time":2,"entries":2},{"inclusive_time":90,"id":"417","highest_child_id":912,"first_entry_time":30644,"exclusive_time":42,"entries":2,"callees":[{"inclusive_time":7,"id":"297","highest_child_id":902,"first_entry_time":30653,"exclusive_time":7,"entries":2,"allocations":[{"id":"295","count":2},{"id":"26","count":2}]},{"inclusive_time":36,"id":"418","highest_child_id":909,"first_entry_time":30683,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":7,"id":"316","highest_child_id":904,"first_entry_time":30685,"exclusive_time":7,"entries":2,"allocations":[{"id":"295","count":2},{"id":"26","count":2}]},{"inclusive_time":14,"id":"348","highest_child_id":907,"first_entry_time":30692,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":906,"first_entry_time":30695,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"350","highest_child_id":907,"first_entry_time":30698,"exclusive_time":3,"entries":2}]},{"inclusive_time":2,"id":"337","highest_child_id":908,"first_entry_time":30702,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"352","highest_child_id":909,"first_entry_time":41771,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"352","highest_child_id":912,"first_entry_time":41774,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":912,"first_entry_time":41776,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":912,"first_entry_time":41777,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"283","count":2}]},{"inclusive_time":20,"id":"419","highest_child_id":915,"first_entry_time":30728,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":13,"id":"316","highest_child_id":914,"first_entry_time":30729,"exclusive_time":13,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":915,"first_entry_time":30745,"exclusive_time":2,"entries":1}]},{"inclusive_time":1,"id":"400","highest_child_id":916,"first_entry_time":30750,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":12,"id":"348","highest_child_id":919,"first_entry_time":30758,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":918,"first_entry_time":30760,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"350","highest_child_id":919,"first_entry_time":30764,"exclusive_time":6,"entries":1}]},{"inclusive_time":10493,"id":"420","highest_child_id":1689,"first_entry_time":30785,"exclusive_time":149,"entries":1,"callees":[{"inclusive_time":10344,"id":"421","highest_child_id":1689,"first_entry_time":30934,"exclusive_time":251,"entries":1,"callees":[{"inclusive_time":5,"id":"297","highest_child_id":922,"first_entry_time":30943,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":9963,"id":"422","highest_child_id":1654,"first_entry_time":31183,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":924,"first_entry_time":31187,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"346","highest_child_id":925,"first_entry_time":31197,"exclusive_time":3,"entries":2},{"inclusive_time":26,"id":"348","highest_child_id":928,"first_entry_time":31202,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":927,"first_entry_time":31205,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":20,"id":"350","highest_child_id":928,"first_entry_time":31209,"exclusive_time":19,"entries":1}]},{"inclusive_time":24,"id":"423","highest_child_id":936,"first_entry_time":31256,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":930,"first_entry_time":31258,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":7,"id":"317","highest_child_id":933,"first_entry_time":31265,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":932,"first_entry_time":31268,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":933,"first_entry_time":31270,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"352","highest_child_id":936,"first_entry_time":31274,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":936,"first_entry_time":31277,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":936,"first_entry_time":31278,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":9706,"id":"424","highest_child_id":1610,"first_entry_time":31290,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":9674,"id":"425","highest_child_id":1610,"first_entry_time":31322,"exclusive_time":400,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":939,"first_entry_time":31325,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"426","highest_child_id":940,"first_entry_time":31339,"exclusive_time":17,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":941,"first_entry_time":31365,"exclusive_time":0,"entries":1},{"inclusive_time":9253,"id":"428","highest_child_id":1610,"first_entry_time":31741,"exclusive_time":348,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":943,"first_entry_time":31746,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":514,"id":"429","highest_child_id":994,"first_entry_time":31804,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":945,"first_entry_time":31806,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":342,"id":"430","highest_child_id":978,"first_entry_time":31883,"exclusive_time":158,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":947,"first_entry_time":31885,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":10,"id":"348","highest_child_id":950,"first_entry_time":31892,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":949,"first_entry_time":31895,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":950,"first_entry_time":31898,"exclusive_time":3,"entries":1}]},{"inclusive_time":96,"id":"431","highest_child_id":961,"first_entry_time":31939,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":952,"first_entry_time":31940,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":22,"id":"432","highest_child_id":955,"first_entry_time":31966,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":954,"first_entry_time":31970,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"433","highest_child_id":955,"first_entry_time":31986,"exclusive_time":2,"entries":1}]},{"inclusive_time":17,"id":"434","highest_child_id":958,"first_entry_time":32010,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":9,"id":"316","highest_child_id":957,"first_entry_time":32012,"exclusive_time":9,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":958,"first_entry_time":32025,"exclusive_time":1,"entries":1}]},{"inclusive_time":6,"id":"352","highest_child_id":961,"first_entry_time":32028,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":961,"first_entry_time":32031,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":961,"first_entry_time":32033,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":11,"id":"361","highest_child_id":962,"first_entry_time":32036,"exclusive_time":11,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":15,"id":"435","highest_child_id":965,"first_entry_time":32160,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":964,"first_entry_time":32164,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":965,"first_entry_time":32173,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":1}]},{"inclusive_time":46,"id":"352","highest_child_id":978,"first_entry_time":32179,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":43,"id":"353","highest_child_id":978,"first_entry_time":32181,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":968,"first_entry_time":32183,"exclusive_time":0,"entries":1},{"inclusive_time":29,"id":"317","highest_child_id":977,"first_entry_time":32185,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":970,"first_entry_time":32188,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":971,"first_entry_time":32190,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":972,"first_entry_time":32192,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":973,"first_entry_time":32193,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":974,"first_entry_time":32198,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"317","highest_child_id":977,"first_entry_time":32202,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":976,"first_entry_time":32204,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":977,"first_entry_time":32210,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"436","highest_child_id":978,"first_entry_time":32223,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":5,"id":"361","highest_child_id":979,"first_entry_time":32227,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":16,"id":"317","highest_child_id":986,"first_entry_time":32233,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":981,"first_entry_time":32236,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":982,"first_entry_time":32237,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":983,"first_entry_time":32238,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":984,"first_entry_time":32240,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":985,"first_entry_time":32244,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":986,"first_entry_time":32247,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":55,"id":"417","highest_child_id":991,"first_entry_time":32252,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":988,"first_entry_time":32255,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":10,"id":"437","highest_child_id":991,"first_entry_time":32295,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":990,"first_entry_time":32297,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"337","highest_child_id":991,"first_entry_time":32303,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"283","count":1}]},{"inclusive_time":9,"id":"352","highest_child_id":994,"first_entry_time":32309,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"353","highest_child_id":994,"first_entry_time":32312,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":994,"first_entry_time":32317,"exclusive_time":1,"entries":1}]}]}]},{"inclusive_time":8,"id":"361","highest_child_id":995,"first_entry_time":32321,"exclusive_time":8,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":52,"id":"317","highest_child_id":1008,"first_entry_time":32327,"exclusive_time":29,"entries":3,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":997,"first_entry_time":32329,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"319","highest_child_id":998,"first_entry_time":32331,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"320","highest_child_id":999,"first_entry_time":32332,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"321","highest_child_id":1000,"first_entry_time":32334,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1001,"first_entry_time":32336,"exclusive_time":0,"entries":2},{"inclusive_time":17,"id":"317","highest_child_id":1008,"first_entry_time":32339,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1003,"first_entry_time":32342,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1004,"first_entry_time":32343,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1005,"first_entry_time":32344,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"321","highest_child_id":1006,"first_entry_time":32345,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1007,"first_entry_time":32349,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1008,"first_entry_time":32353,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":50,"id":"438","highest_child_id":1014,"first_entry_time":32455,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":10,"id":"343","highest_child_id":1011,"first_entry_time":32460,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"440","highest_child_id":1011,"first_entry_time":32468,"exclusive_time":0,"entries":1}]},{"inclusive_time":15,"id":"441","highest_child_id":1013,"first_entry_time":32486,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"442","highest_child_id":1013,"first_entry_time":32498,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":1,"id":"149","highest_child_id":1014,"first_entry_time":32503,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"439","count":1}]},{"inclusive_time":1,"id":"342","highest_child_id":1015,"first_entry_time":32507,"exclusive_time":0,"entries":2},{"inclusive_time":21,"id":"441","highest_child_id":1017,"first_entry_time":32509,"exclusive_time":17,"entries":5,"callees":[{"inclusive_time":4,"id":"442","highest_child_id":1017,"first_entry_time":32515,"exclusive_time":3,"entries":5}],"allocations":[{"id":"56","count":5}]},{"inclusive_time":4,"id":"443","highest_child_id":1018,"first_entry_time":32539,"exclusive_time":4,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"444","highest_child_id":1019,"first_entry_time":32552,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"445","highest_child_id":1020,"first_entry_time":32562,"exclusive_time":1,"entries":2},{"inclusive_time":128,"id":"446","highest_child_id":1028,"first_entry_time":32579,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":53,"id":"447","highest_child_id":1028,"first_entry_time":32654,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":49,"id":"365","highest_child_id":1028,"first_entry_time":32658,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1024,"first_entry_time":32663,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1025,"first_entry_time":32665,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":1026,"first_entry_time":32667,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"448","highest_child_id":1027,"first_entry_time":32684,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"449","highest_child_id":1028,"first_entry_time":32703,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]}]}]},{"inclusive_time":116,"id":"450","highest_child_id":1042,"first_entry_time":32740,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":13,"id":"451","highest_child_id":1031,"first_entry_time":32750,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"452","highest_child_id":1031,"first_entry_time":32761,"exclusive_time":2,"entries":1}]},{"inclusive_time":37,"id":"447","highest_child_id":1038,"first_entry_time":32765,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":35,"id":"365","highest_child_id":1038,"first_entry_time":32767,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1034,"first_entry_time":32770,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1035,"first_entry_time":32772,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1036,"first_entry_time":32774,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":6,"id":"448","highest_child_id":1037,"first_entry_time":32780,"exclusive_time":5,"entries":2},{"inclusive_time":1,"id":"453","highest_child_id":1038,"first_entry_time":32800,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]}]},{"inclusive_time":43,"id":"454","highest_child_id":1042,"first_entry_time":32813,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1040,"first_entry_time":32815,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"455","highest_child_id":1042,"first_entry_time":32849,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"360","highest_child_id":1042,"first_entry_time":32852,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":6928,"id":"456","highest_child_id":1525,"first_entry_time":32946,"exclusive_time":59,"entries":1,"callees":[{"inclusive_time":14,"id":"316","highest_child_id":1044,"first_entry_time":32949,"exclusive_time":14,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"346","highest_child_id":1045,"first_entry_time":32968,"exclusive_time":2,"entries":1},{"inclusive_time":11,"id":"348","highest_child_id":1048,"first_entry_time":32972,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":1047,"first_entry_time":32974,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"350","highest_child_id":1048,"first_entry_time":32978,"exclusive_time":5,"entries":1}]},{"inclusive_time":6763,"id":"457","highest_child_id":1509,"first_entry_time":33031,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1050,"first_entry_time":33033,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":76,"id":"339","highest_child_id":1070,"first_entry_time":33041,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":6,"id":"340","highest_child_id":1054,"first_entry_time":33042,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1053,"first_entry_time":33044,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"341","highest_child_id":1054,"first_entry_time":33047,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"343","highest_child_id":1055,"first_entry_time":33049,"exclusive_time":1,"entries":1},{"inclusive_time":64,"id":"344","highest_child_id":1070,"first_entry_time":33052,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1057,"first_entry_time":33053,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"345","highest_child_id":1058,"first_entry_time":33063,"exclusive_time":2,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":2,"id":"346","highest_child_id":1059,"first_entry_time":33065,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"347","highest_child_id":1060,"first_entry_time":33068,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"348","highest_child_id":1063,"first_entry_time":33072,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1062,"first_entry_time":33074,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1063,"first_entry_time":33077,"exclusive_time":3,"entries":1}]},{"inclusive_time":22,"id":"351","highest_child_id":1067,"first_entry_time":33085,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"414","highest_child_id":1065,"first_entry_time":33094,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"342","highest_child_id":1066,"first_entry_time":33097,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"415","highest_child_id":1067,"first_entry_time":33106,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1070,"first_entry_time":33111,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":1070,"first_entry_time":33113,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1070,"first_entry_time":33114,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"346","highest_child_id":1071,"first_entry_time":33118,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"348","highest_child_id":1074,"first_entry_time":33121,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1073,"first_entry_time":33122,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1074,"first_entry_time":33125,"exclusive_time":2,"entries":1}]},{"inclusive_time":35,"id":"458","highest_child_id":1082,"first_entry_time":33170,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1076,"first_entry_time":33172,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":11,"id":"340","highest_child_id":1078,"first_entry_time":33179,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1078,"first_entry_time":33189,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"348","highest_child_id":1081,"first_entry_time":33192,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1080,"first_entry_time":33194,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1081,"first_entry_time":33197,"exclusive_time":3,"entries":1}]},{"inclusive_time":1,"id":"337","highest_child_id":1082,"first_entry_time":33203,"exclusive_time":1,"entries":1}]},{"inclusive_time":6350,"id":"420","highest_child_id":1484,"first_entry_time":33207,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":6347,"id":"421","highest_child_id":1484,"first_entry_time":33210,"exclusive_time":327,"entries":1,"callees":[{"inclusive_time":3,"id":"297","highest_child_id":1085,"first_entry_time":33212,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5256,"id":"422","highest_child_id":1433,"first_entry_time":33218,"exclusive_time":295,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1087,"first_entry_time":33220,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"346","highest_child_id":1088,"first_entry_time":33228,"exclusive_time":2,"entries":2},{"inclusive_time":15,"id":"348","highest_child_id":1091,"first_entry_time":33231,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1090,"first_entry_time":33234,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":10,"id":"350","highest_child_id":1091,"first_entry_time":33236,"exclusive_time":10,"entries":1}]},{"inclusive_time":25,"id":"423","highest_child_id":1099,"first_entry_time":33249,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1093,"first_entry_time":33250,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":10,"id":"317","highest_child_id":1096,"first_entry_time":33256,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1095,"first_entry_time":33259,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1096,"first_entry_time":33260,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1099,"first_entry_time":33268,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1099,"first_entry_time":33271,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1099,"first_entry_time":33272,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":4681,"id":"424","highest_child_id":1389,"first_entry_time":33275,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4680,"id":"425","highest_child_id":1389,"first_entry_time":33276,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1102,"first_entry_time":33278,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"426","highest_child_id":1103,"first_entry_time":33280,"exclusive_time":9,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1104,"first_entry_time":33292,"exclusive_time":0,"entries":1},{"inclusive_time":4632,"id":"459","highest_child_id":1389,"first_entry_time":33323,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1106,"first_entry_time":33324,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":4567,"id":"460","highest_child_id":1375,"first_entry_time":33339,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4566,"id":"425","highest_child_id":1375,"first_entry_time":33340,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1109,"first_entry_time":33342,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"426","highest_child_id":1110,"first_entry_time":33345,"exclusive_time":4,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1111,"first_entry_time":33351,"exclusive_time":0,"entries":1},{"inclusive_time":4527,"id":"461","highest_child_id":1375,"first_entry_time":33378,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1113,"first_entry_time":33380,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":4464,"id":"462","highest_child_id":1361,"first_entry_time":33394,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4462,"id":"425","highest_child_id":1361,"first_entry_time":33396,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1116,"first_entry_time":33398,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"426","highest_child_id":1117,"first_entry_time":33400,"exclusive_time":3,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1118,"first_entry_time":33404,"exclusive_time":0,"entries":1},{"inclusive_time":4382,"id":"463","highest_child_id":1361,"first_entry_time":33474,"exclusive_time":62,"entries":1,"callees":[{"inclusive_time":9,"id":"316","highest_child_id":1120,"first_entry_time":33476,"exclusive_time":9,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"346","highest_child_id":1121,"first_entry_time":33489,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"400","highest_child_id":1122,"first_entry_time":33492,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2092,"id":"464","highest_child_id":1247,"first_entry_time":33527,"exclusive_time":111,"entries":1,"callees":[{"inclusive_time":21,"id":"465","highest_child_id":1126,"first_entry_time":33569,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"466","highest_child_id":1125,"first_entry_time":33580,"exclusive_time":1,"entries":2},{"inclusive_time":0,"id":"149","highest_child_id":1126,"first_entry_time":33587,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":2},{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"467","highest_child_id":1127,"first_entry_time":33601,"exclusive_time":1,"entries":1},{"inclusive_time":1955,"id":"468","highest_child_id":1245,"first_entry_time":33658,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":1,"id":"403","highest_child_id":1129,"first_entry_time":33660,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"342","highest_child_id":1130,"first_entry_time":33662,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"404","highest_child_id":1131,"first_entry_time":33664,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"294","highest_child_id":1134,"first_entry_time":33666,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"292","highest_child_id":1133,"first_entry_time":33671,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":4,"id":"297","highest_child_id":1134,"first_entry_time":33675,"exclusive_time":3,"entries":1,"allocations":[{"id":"469","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"469","count":1}]},{"inclusive_time":6,"id":"405","highest_child_id":1137,"first_entry_time":33680,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"406","highest_child_id":1136,"first_entry_time":33681,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"407","highest_child_id":1137,"first_entry_time":33683,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]}]},{"inclusive_time":44,"id":"470","highest_child_id":1141,"first_entry_time":33702,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"471","highest_child_id":1139,"first_entry_time":33714,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":18,"id":"472","highest_child_id":1141,"first_entry_time":33728,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":5,"id":"473","highest_child_id":1141,"first_entry_time":33740,"exclusive_time":5,"entries":1,"deopt_all":1,"allocations":[{"id":"10","count":1}]}]}]},{"inclusive_time":1,"id":"412","highest_child_id":1142,"first_entry_time":33753,"exclusive_time":1,"entries":1},{"jit_entries":4,"inclusive_time":0,"id":"194","highest_child_id":1143,"first_entry_time":33757,"exclusive_time":0,"entries":4},{"jit_entries":1,"inclusive_time":1,"id":"193","highest_child_id":1144,"first_entry_time":33762,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"408","highest_child_id":1145,"first_entry_time":33764,"exclusive_time":2,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":1,"id":"409","highest_child_id":1146,"first_entry_time":33768,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"302","highest_child_id":1147,"first_entry_time":33772,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1818,"id":"474","highest_child_id":1245,"first_entry_time":33795,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":52,"id":"475","highest_child_id":1153,"first_entry_time":33822,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":37,"id":"476","highest_child_id":1153,"first_entry_time":33836,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":12,"id":"478","highest_child_id":1152,"first_entry_time":33848,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"480","highest_child_id":1152,"first_entry_time":33858,"exclusive_time":1,"entries":1}],"allocations":[{"id":"479","count":1}]},{"inclusive_time":1,"id":"481","highest_child_id":1153,"first_entry_time":33870,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"477","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1738,"id":"473","highest_child_id":1245,"first_entry_time":33875,"exclusive_time":16,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":1721,"id":"482","highest_child_id":1245,"first_entry_time":33887,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1691,"id":"483","highest_child_id":1245,"first_entry_time":33917,"exclusive_time":120,"entries":1,"callees":[{"inclusive_time":1,"id":"484","highest_child_id":1157,"first_entry_time":33929,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"466","highest_child_id":1158,"first_entry_time":33931,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"485","highest_child_id":1160,"first_entry_time":33945,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"481","highest_child_id":1160,"first_entry_time":33947,"exclusive_time":0,"entries":1}]},{"inclusive_time":88,"id":"486","highest_child_id":1168,"first_entry_time":33968,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":25,"id":"488","highest_child_id":1163,"first_entry_time":33979,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":3,"id":"490","highest_child_id":1163,"first_entry_time":34001,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":9},{"id":"6","count":1}]}],"allocations":[{"id":"489","count":1}]},{"inclusive_time":1,"id":"491","highest_child_id":1164,"first_entry_time":34014,"exclusive_time":0,"entries":1},{"inclusive_time":31,"id":"492","highest_child_id":1168,"first_entry_time":34024,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":17,"id":"493","highest_child_id":1168,"first_entry_time":34037,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":2,"id":"495","highest_child_id":1167,"first_entry_time":34047,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1},{"id":"496","count":1}]},{"inclusive_time":1,"id":"466","highest_child_id":1168,"first_entry_time":34052,"exclusive_time":0,"entries":1}],"allocations":[{"id":"494","count":1},{"id":"56","count":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"487","count":1},{"id":"6","count":1}]},{"inclusive_time":3,"id":"497","highest_child_id":1169,"first_entry_time":34078,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"498","highest_child_id":1170,"first_entry_time":34094,"exclusive_time":1,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1473,"id":"499","highest_child_id":1245,"first_entry_time":34136,"exclusive_time":322,"entries":1,"callees":[{"inclusive_time":508,"id":"500","highest_child_id":1194,"first_entry_time":34149,"exclusive_time":54,"entries":1,"callees":[{"inclusive_time":454,"id":"501","highest_child_id":1194,"first_entry_time":34203,"exclusive_time":117,"entries":1,"callees":[{"inclusive_time":13,"id":"502","highest_child_id":1174,"first_entry_time":34225,"exclusive_time":13,"entries":1,"allocations":[{"id":"13","count":1}]},{"inclusive_time":34,"id":"503","highest_child_id":1177,"first_entry_time":34260,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":21,"id":"505","highest_child_id":1177,"first_entry_time":34271,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":3,"id":"507","highest_child_id":1177,"first_entry_time":34289,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":1}]}],"allocations":[{"id":"506","count":1}]}],"allocations":[{"id":"504","count":1}]},{"inclusive_time":1,"id":"508","highest_child_id":1178,"first_entry_time":34306,"exclusive_time":1,"entries":2},{"inclusive_time":279,"id":"509","highest_child_id":1192,"first_entry_time":34327,"exclusive_time":79,"entries":2,"callees":[{"inclusive_time":3,"id":"510","highest_child_id":1180,"first_entry_time":34341,"exclusive_time":3,"entries":2,"allocations":[{"id":"2","count":2},{"id":"511","count":2}]},{"inclusive_time":16,"id":"512","highest_child_id":1185,"first_entry_time":34377,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":14,"id":"105","highest_child_id":1185,"first_entry_time":34379,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"106","highest_child_id":1183,"first_entry_time":34381,"exclusive_time":0,"entries":1,"allocations":[{"id":"513","count":1}]},{"inclusive_time":9,"id":"94","highest_child_id":1185,"first_entry_time":34383,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":1185,"first_entry_time":34385,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":179,"id":"514","highest_child_id":1191,"first_entry_time":34429,"exclusive_time":96,"entries":1,"callees":[{"inclusive_time":4,"id":"515","highest_child_id":1187,"first_entry_time":34451,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"516","count":1}]},{"inclusive_time":79,"id":"517","highest_child_id":1191,"first_entry_time":34527,"exclusive_time":69,"entries":1,"callees":[{"inclusive_time":2,"id":"518","highest_child_id":1189,"first_entry_time":34542,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"519","highest_child_id":1190,"first_entry_time":34565,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"56","count":1},{"id":"28","count":1}]},{"inclusive_time":4,"id":"520","highest_child_id":1191,"first_entry_time":34602,"exclusive_time":4,"entries":1}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"10","count":5},{"id":"513","count":1},{"id":"25","count":2}]},{"inclusive_time":1,"id":"521","highest_child_id":1192,"first_entry_time":34625,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"522","highest_child_id":1193,"first_entry_time":34358,"exclusive_time":4,"entries":2},{"inclusive_time":3,"id":"523","highest_child_id":1194,"first_entry_time":34652,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":4},{"id":"27","count":2}]}]},{"inclusive_time":84,"id":"524","highest_child_id":1202,"first_entry_time":34715,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":1,"id":"525","highest_child_id":1196,"first_entry_time":34725,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"526","highest_child_id":1197,"first_entry_time":34737,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"508","highest_child_id":1198,"first_entry_time":34740,"exclusive_time":1,"entries":2},{"inclusive_time":10,"id":"527","highest_child_id":1200,"first_entry_time":34751,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":1200,"first_entry_time":34759,"exclusive_time":1,"entries":2}]},{"inclusive_time":4,"id":"529","highest_child_id":1201,"first_entry_time":34779,"exclusive_time":3,"entries":2},{"inclusive_time":1,"id":"530","highest_child_id":1202,"first_entry_time":34797,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":3},{"id":"27","count":2}]},{"inclusive_time":41,"id":"531","highest_child_id":1216,"first_entry_time":34821,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1204,"first_entry_time":34832,"exclusive_time":1,"entries":1},{"inclusive_time":26,"id":"531","highest_child_id":1216,"first_entry_time":34835,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1206,"first_entry_time":34837,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"531","highest_child_id":1216,"first_entry_time":34839,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1208,"first_entry_time":34841,"exclusive_time":1,"entries":1},{"inclusive_time":18,"id":"531","highest_child_id":1216,"first_entry_time":34843,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1210,"first_entry_time":34844,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"531","highest_child_id":1216,"first_entry_time":34850,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1212,"first_entry_time":34852,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"531","highest_child_id":1216,"first_entry_time":34854,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1214,"first_entry_time":34855,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"531","highest_child_id":1216,"first_entry_time":34857,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1216,"first_entry_time":34859,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"533","highest_child_id":1217,"first_entry_time":34910,"exclusive_time":1,"entries":1},{"inclusive_time":31,"id":"534","highest_child_id":1219,"first_entry_time":34933,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":10,"id":"534","highest_child_id":1219,"first_entry_time":34937,"exclusive_time":9,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":3,"id":"535","highest_child_id":1220,"first_entry_time":34974,"exclusive_time":0,"entries":14},{"inclusive_time":46,"id":"536","highest_child_id":1224,"first_entry_time":35012,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":1,"id":"537","highest_child_id":1222,"first_entry_time":35020,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"538","highest_child_id":1223,"first_entry_time":35030,"exclusive_time":1,"entries":7},{"inclusive_time":2,"id":"539","highest_child_id":1224,"first_entry_time":35040,"exclusive_time":1,"entries":4}],"allocations":[{"id":"10","count":1},{"id":"25","count":12}]},{"inclusive_time":148,"id":"540","highest_child_id":1227,"first_entry_time":35075,"exclusive_time":143,"entries":1,"callees":[{"inclusive_time":2,"id":"541","highest_child_id":1226,"first_entry_time":35085,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"528","highest_child_id":1227,"first_entry_time":35090,"exclusive_time":2,"entries":7}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"170","count":7}]},{"inclusive_time":45,"id":"542","highest_child_id":1230,"first_entry_time":35235,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":15,"id":"543","highest_child_id":1230,"first_entry_time":35264,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":2,"id":"528","highest_child_id":1230,"first_entry_time":35268,"exclusive_time":1,"entries":5}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}]},{"inclusive_time":32,"id":"544","highest_child_id":1235,"first_entry_time":35325,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":2,"id":"534","highest_child_id":1232,"first_entry_time":35327,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"528","highest_child_id":1233,"first_entry_time":35330,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"537","highest_child_id":1234,"first_entry_time":35333,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"545","highest_child_id":1235,"first_entry_time":35343,"exclusive_time":1,"entries":7}],"allocations":[{"id":"10","count":2},{"id":"25","count":9}]},{"inclusive_time":211,"id":"546","highest_child_id":1245,"first_entry_time":35396,"exclusive_time":173,"entries":1,"callees":[{"inclusive_time":1,"id":"547","highest_child_id":1237,"first_entry_time":35404,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"534","highest_child_id":1238,"first_entry_time":35408,"exclusive_time":10,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]},{"inclusive_time":4,"id":"532","highest_child_id":1239,"first_entry_time":35411,"exclusive_time":3,"entries":7},{"inclusive_time":4,"id":"548","highest_child_id":1240,"first_entry_time":35443,"exclusive_time":1,"entries":14},{"inclusive_time":6,"id":"549","highest_child_id":1241,"first_entry_time":35454,"exclusive_time":4,"entries":14},{"inclusive_time":7,"id":"550","highest_child_id":1242,"first_entry_time":35466,"exclusive_time":4,"entries":14},{"inclusive_time":6,"id":"551","highest_child_id":1243,"first_entry_time":35476,"exclusive_time":3,"entries":14},{"inclusive_time":7,"id":"552","highest_child_id":1244,"first_entry_time":35487,"exclusive_time":4,"entries":14},{"inclusive_time":7,"id":"553","highest_child_id":1245,"first_entry_time":35497,"exclusive_time":4,"entries":14}],"allocations":[{"id":"10","count":15},{"id":"25","count":8},{"id":"6","count":15}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":2}]}],"allocations":[{"id":"56","count":3},{"id":"27","count":1}]}]}],"allocations":[{"id":"10","count":1}]}]}],"allocations":[{"id":"25","count":2},{"id":"56","count":1},{"id":"170","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"448","highest_child_id":1246,"first_entry_time":35616,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"370","highest_child_id":1247,"first_entry_time":35619,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":2},{"id":"10","count":1}]},{"inclusive_time":2149,"id":"554","highest_child_id":1347,"first_entry_time":35637,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":1,"id":"403","highest_child_id":1249,"first_entry_time":35639,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":1250,"first_entry_time":35641,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"404","highest_child_id":1251,"first_entry_time":35643,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"294","highest_child_id":1254,"first_entry_time":35645,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":3,"id":"407","highest_child_id":1253,"first_entry_time":35649,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]},{"inclusive_time":4,"id":"297","highest_child_id":1254,"first_entry_time":35655,"exclusive_time":4,"entries":1,"allocations":[{"id":"487","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"487","count":1}]},{"inclusive_time":2082,"id":"555","highest_child_id":1345,"first_entry_time":35691,"exclusive_time":169,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1256,"first_entry_time":35694,"exclusive_time":4,"entries":1,"allocations":[{"id":"487","count":1},{"id":"26","count":1}]},{"inclusive_time":1538,"id":"556","highest_child_id":1311,"first_entry_time":35864,"exclusive_time":127,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1258,"first_entry_time":35867,"exclusive_time":5,"entries":1,"allocations":[{"id":"487","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"342","highest_child_id":1259,"first_entry_time":35874,"exclusive_time":1,"entries":3},{"inclusive_time":149,"id":"557","highest_child_id":1269,"first_entry_time":35914,"exclusive_time":70,"entries":6,"callees":[{"inclusive_time":19,"id":"316","highest_child_id":1261,"first_entry_time":35916,"exclusive_time":18,"entries":6,"allocations":[{"id":"487","count":6},{"id":"26","count":6}]},{"inclusive_time":49,"id":"558","highest_child_id":1265,"first_entry_time":35969,"exclusive_time":28,"entries":6,"callees":[{"inclusive_time":17,"id":"297","highest_child_id":1263,"first_entry_time":35972,"exclusive_time":16,"entries":6,"allocations":[{"id":"487","count":6},{"id":"26","count":6}]},{"inclusive_time":2,"id":"304","highest_child_id":1264,"first_entry_time":35978,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"433","highest_child_id":1265,"first_entry_time":37353,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":6},{"id":"56","count":6}]},{"inclusive_time":6,"id":"337","highest_child_id":1266,"first_entry_time":35982,"exclusive_time":5,"entries":5},{"inclusive_time":6,"id":"352","highest_child_id":1269,"first_entry_time":37356,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":1269,"first_entry_time":37359,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1269,"first_entry_time":37360,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":35,"id":"559","highest_child_id":1272,"first_entry_time":36017,"exclusive_time":15,"entries":5,"callees":[{"inclusive_time":15,"id":"316","highest_child_id":1271,"first_entry_time":36019,"exclusive_time":14,"entries":5,"allocations":[{"id":"487","count":5},{"id":"26","count":5}]},{"inclusive_time":5,"id":"337","highest_child_id":1272,"first_entry_time":36025,"exclusive_time":4,"entries":5}]},{"inclusive_time":1195,"id":"560","highest_child_id":1301,"first_entry_time":36037,"exclusive_time":5,"entries":5,"callees":[{"inclusive_time":1190,"id":"425","highest_child_id":1301,"first_entry_time":36039,"exclusive_time":72,"entries":5,"callees":[{"inclusive_time":4,"id":"349","highest_child_id":1275,"first_entry_time":36042,"exclusive_time":3,"entries":5},{"inclusive_time":1099,"id":"561","highest_child_id":1298,"first_entry_time":36078,"exclusive_time":207,"entries":1,"callees":[{"inclusive_time":532,"id":"562","highest_child_id":1284,"first_entry_time":36102,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":503,"id":"563","highest_child_id":1283,"first_entry_time":36112,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":484,"id":"564","highest_child_id":1283,"first_entry_time":36131,"exclusive_time":406,"entries":1,"callees":[{"inclusive_time":52,"id":"565","highest_child_id":1281,"first_entry_time":36151,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":6,"id":"565","highest_child_id":1281,"first_entry_time":36155,"exclusive_time":4,"entries":7}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":29,"id":"508","highest_child_id":1282,"first_entry_time":36205,"exclusive_time":12,"entries":89},{"inclusive_time":51,"id":"566","highest_child_id":1283,"first_entry_time":36220,"exclusive_time":13,"entries":195}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"27","count":324},{"id":"56","count":40},{"id":"10","count":5}]}]},{"inclusive_time":3,"id":"567","highest_child_id":1284,"first_entry_time":36630,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":31,"id":"568","highest_child_id":1290,"first_entry_time":36647,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":15,"id":"105","highest_child_id":1289,"first_entry_time":36649,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":1287,"first_entry_time":36652,"exclusive_time":0,"entries":1,"allocations":[{"id":"513","count":1}]},{"inclusive_time":10,"id":"94","highest_child_id":1289,"first_entry_time":36654,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":1289,"first_entry_time":36657,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"569","highest_child_id":1290,"first_entry_time":36674,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":0,"id":"427","highest_child_id":1291,"first_entry_time":36679,"exclusive_time":0,"entries":1},{"inclusive_time":233,"id":"570","highest_child_id":1297,"first_entry_time":36734,"exclusive_time":122,"entries":6,"callees":[{"inclusive_time":3,"id":"410","highest_child_id":1293,"first_entry_time":36744,"exclusive_time":2,"entries":6},{"inclusive_time":2,"id":"571","highest_child_id":1294,"first_entry_time":36754,"exclusive_time":1,"entries":6},{"inclusive_time":107,"id":"572","highest_child_id":1297,"first_entry_time":36818,"exclusive_time":75,"entries":6,"callees":[{"inclusive_time":4,"id":"569","highest_child_id":1296,"first_entry_time":36821,"exclusive_time":3,"entries":6,"allocations":[{"id":"10","count":6}]},{"inclusive_time":29,"id":"520","highest_child_id":1297,"first_entry_time":36830,"exclusive_time":26,"entries":12,"allocations":[{"id":"28","count":4}]}],"allocations":[{"id":"10","count":23},{"id":"28","count":10}]}],"allocations":[{"id":"6","count":12},{"id":"10","count":6}]},{"inclusive_time":94,"id":"573","highest_child_id":1298,"first_entry_time":37081,"exclusive_time":94,"entries":1,"allocations":[{"id":"26","count":2},{"id":"28","count":5},{"id":"10","count":18}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"567","highest_child_id":1299,"first_entry_time":37178,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":12,"id":"426","highest_child_id":1300,"first_entry_time":37183,"exclusive_time":11,"entries":5,"allocations":[{"id":"574","count":1},{"id":"26","count":5}]},{"inclusive_time":1,"id":"427","highest_child_id":1301,"first_entry_time":37192,"exclusive_time":0,"entries":5}],"allocations":[{"id":"27","count":5}]}]},{"inclusive_time":20,"id":"317","highest_child_id":1307,"first_entry_time":37364,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1303,"first_entry_time":37367,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1304,"first_entry_time":37368,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1305,"first_entry_time":37370,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"321","highest_child_id":1306,"first_entry_time":37372,"exclusive_time":9,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":4}]},{"inclusive_time":0,"id":"322","highest_child_id":1307,"first_entry_time":37382,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"403","highest_child_id":1308,"first_entry_time":37393,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"352","highest_child_id":1311,"first_entry_time":37397,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1311,"first_entry_time":37399,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1311,"first_entry_time":37401,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"10","count":1},{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":370,"id":"352","highest_child_id":1345,"first_entry_time":37403,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":368,"id":"353","highest_child_id":1345,"first_entry_time":37405,"exclusive_time":82,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1314,"first_entry_time":37406,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"317","highest_child_id":1317,"first_entry_time":37408,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1316,"first_entry_time":37411,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1317,"first_entry_time":37412,"exclusive_time":0,"entries":1}]},{"inclusive_time":278,"id":"575","highest_child_id":1345,"first_entry_time":37494,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":228,"id":"576","highest_child_id":1341,"first_entry_time":37520,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":142,"id":"577","highest_child_id":1336,"first_entry_time":37582,"exclusive_time":82,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1321,"first_entry_time":37586,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"578","highest_child_id":1322,"first_entry_time":37597,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"579","highest_child_id":1323,"first_entry_time":37624,"exclusive_time":8,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]},{"inclusive_time":4,"id":"580","highest_child_id":1324,"first_entry_time":37648,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"283","count":1},{"id":"25","count":1}]},{"inclusive_time":21,"id":"447","highest_child_id":1330,"first_entry_time":37657,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":18,"id":"365","highest_child_id":1330,"first_entry_time":37660,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1327,"first_entry_time":37666,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1328,"first_entry_time":37668,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1329,"first_entry_time":37670,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1330,"first_entry_time":37675,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":5,"id":"378","highest_child_id":1333,"first_entry_time":37685,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"379","highest_child_id":1333,"first_entry_time":37687,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1333,"first_entry_time":37688,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":18,"id":"581","highest_child_id":1336,"first_entry_time":37704,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":13,"id":"331","highest_child_id":1336,"first_entry_time":37708,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1336,"first_entry_time":37719,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"582","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":1},{"id":"56","count":4},{"id":"60","count":1}]},{"inclusive_time":2,"id":"395","highest_child_id":1337,"first_entry_time":37725,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":1,"id":"583","highest_child_id":1338,"first_entry_time":37729,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"584","highest_child_id":1341,"first_entry_time":37741,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1341,"first_entry_time":37745,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1341,"first_entry_time":37747,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"585","count":1}]}]},{"inclusive_time":0,"id":"149","highest_child_id":1342,"first_entry_time":37750,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":1343,"first_entry_time":37758,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"332","highest_child_id":1344,"first_entry_time":37762,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1345,"first_entry_time":37770,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"27","count":2},{"id":"25","count":2}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"588","highest_child_id":1347,"first_entry_time":37783,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":1347,"first_entry_time":37784,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":5,"id":"361","highest_child_id":1348,"first_entry_time":37788,"exclusive_time":5,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":61,"id":"352","highest_child_id":1361,"first_entry_time":37796,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":58,"id":"353","highest_child_id":1361,"first_entry_time":37798,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1351,"first_entry_time":37800,"exclusive_time":0,"entries":1},{"inclusive_time":22,"id":"317","highest_child_id":1358,"first_entry_time":37802,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":1353,"first_entry_time":37805,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1354,"first_entry_time":37807,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":1355,"first_entry_time":37808,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1356,"first_entry_time":37810,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1357,"first_entry_time":37816,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1358,"first_entry_time":37821,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":13,"id":"589","highest_child_id":1361,"first_entry_time":37843,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1360,"first_entry_time":37852,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1361,"first_entry_time":37855,"exclusive_time":1,"entries":1}]}]}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":5,"id":"361","highest_child_id":1362,"first_entry_time":37860,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":39,"id":"352","highest_child_id":1375,"first_entry_time":37866,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":36,"id":"353","highest_child_id":1375,"first_entry_time":37868,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1365,"first_entry_time":37869,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"317","highest_child_id":1372,"first_entry_time":37872,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1367,"first_entry_time":37874,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1368,"first_entry_time":37875,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1369,"first_entry_time":37877,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1370,"first_entry_time":37878,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1371,"first_entry_time":37880,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1372,"first_entry_time":37884,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"591","highest_child_id":1375,"first_entry_time":37900,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1374,"first_entry_time":37902,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1375,"first_entry_time":37904,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"361","highest_child_id":1376,"first_entry_time":37908,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":38,"id":"352","highest_child_id":1389,"first_entry_time":37917,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":35,"id":"353","highest_child_id":1389,"first_entry_time":37920,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1379,"first_entry_time":37921,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"317","highest_child_id":1386,"first_entry_time":37923,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1381,"first_entry_time":37925,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1382,"first_entry_time":37927,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":1383,"first_entry_time":37928,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1384,"first_entry_time":37930,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1385,"first_entry_time":37932,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1386,"first_entry_time":37935,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"592","highest_child_id":1389,"first_entry_time":37949,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1388,"first_entry_time":37951,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1389,"first_entry_time":37954,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"361","highest_child_id":1390,"first_entry_time":37958,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":18,"id":"317","highest_child_id":1397,"first_entry_time":37968,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1392,"first_entry_time":37970,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1393,"first_entry_time":37972,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1394,"first_entry_time":37973,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":1395,"first_entry_time":37975,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1396,"first_entry_time":37979,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1397,"first_entry_time":37982,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":159,"id":"593","highest_child_id":1420,"first_entry_time":38258,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":6,"id":"316","highest_child_id":1399,"first_entry_time":38266,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":139,"id":"458","highest_child_id":1419,"first_entry_time":38275,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1401,"first_entry_time":38276,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"340","highest_child_id":1403,"first_entry_time":38283,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1403,"first_entry_time":38285,"exclusive_time":0,"entries":1}]},{"inclusive_time":10,"id":"348","highest_child_id":1406,"first_entry_time":38288,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1405,"first_entry_time":38291,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"350","highest_child_id":1406,"first_entry_time":38294,"exclusive_time":3,"entries":1}]},{"inclusive_time":90,"id":"594","highest_child_id":1416,"first_entry_time":38313,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":88,"id":"425","highest_child_id":1416,"first_entry_time":38315,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1409,"first_entry_time":38318,"exclusive_time":1,"entries":1},{"inclusive_time":30,"id":"426","highest_child_id":1410,"first_entry_time":38320,"exclusive_time":30,"entries":1,"allocations":[{"id":"574","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1411,"first_entry_time":38353,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"595","highest_child_id":1416,"first_entry_time":38387,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1413,"first_entry_time":38389,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":6,"id":"352","highest_child_id":1416,"first_entry_time":38396,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":1416,"first_entry_time":38399,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1416,"first_entry_time":38401,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":8,"id":"352","highest_child_id":1419,"first_entry_time":38405,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"353","highest_child_id":1419,"first_entry_time":38407,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1419,"first_entry_time":38412,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1420,"first_entry_time":38415,"exclusive_time":1,"entries":1}]},{"inclusive_time":51,"id":"352","highest_child_id":1433,"first_entry_time":38423,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":47,"id":"353","highest_child_id":1433,"first_entry_time":38426,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1423,"first_entry_time":38427,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"317","highest_child_id":1430,"first_entry_time":38429,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1425,"first_entry_time":38431,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1426,"first_entry_time":38433,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1427,"first_entry_time":38434,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":1428,"first_entry_time":38436,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1429,"first_entry_time":38441,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1430,"first_entry_time":38444,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":13,"id":"596","highest_child_id":1433,"first_entry_time":38460,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"597","highest_child_id":1432,"first_entry_time":38469,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1433,"first_entry_time":38472,"exclusive_time":1,"entries":1}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":0,"id":"317","highest_child_id":1434,"first_entry_time":38475,"exclusive_time":0,"entries":1},{"inclusive_time":69,"id":"339","highest_child_id":1454,"first_entry_time":38479,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"340","highest_child_id":1438,"first_entry_time":38481,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1437,"first_entry_time":38482,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"341","highest_child_id":1438,"first_entry_time":38485,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"343","highest_child_id":1439,"first_entry_time":38488,"exclusive_time":1,"entries":1},{"inclusive_time":57,"id":"344","highest_child_id":1454,"first_entry_time":38491,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":8,"id":"316","highest_child_id":1441,"first_entry_time":38492,"exclusive_time":8,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"345","highest_child_id":1442,"first_entry_time":38503,"exclusive_time":2,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":1,"id":"346","highest_child_id":1443,"first_entry_time":38505,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"347","highest_child_id":1444,"first_entry_time":38507,"exclusive_time":2,"entries":1},{"inclusive_time":19,"id":"348","highest_child_id":1447,"first_entry_time":38512,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":8,"id":"349","highest_child_id":1446,"first_entry_time":38514,"exclusive_time":8,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"350","highest_child_id":1447,"first_entry_time":38526,"exclusive_time":4,"entries":1}]},{"inclusive_time":6,"id":"351","highest_child_id":1451,"first_entry_time":38534,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"414","highest_child_id":1449,"first_entry_time":38536,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":1450,"first_entry_time":38538,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"415","highest_child_id":1451,"first_entry_time":38540,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1454,"first_entry_time":38543,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1454,"first_entry_time":38546,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1454,"first_entry_time":38547,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":78,"id":"598","highest_child_id":1477,"first_entry_time":38821,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":6,"id":"316","highest_child_id":1456,"first_entry_time":38828,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":59,"id":"458","highest_child_id":1476,"first_entry_time":38837,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1458,"first_entry_time":38838,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":7,"id":"340","highest_child_id":1460,"first_entry_time":38845,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1460,"first_entry_time":38851,"exclusive_time":1,"entries":1}]},{"inclusive_time":9,"id":"348","highest_child_id":1463,"first_entry_time":38855,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1462,"first_entry_time":38857,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1463,"first_entry_time":38860,"exclusive_time":3,"entries":1}]},{"inclusive_time":25,"id":"594","highest_child_id":1473,"first_entry_time":38865,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":23,"id":"425","highest_child_id":1473,"first_entry_time":38867,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1466,"first_entry_time":38869,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1467,"first_entry_time":38871,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1468,"first_entry_time":38875,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"595","highest_child_id":1473,"first_entry_time":38877,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1470,"first_entry_time":38878,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1473,"first_entry_time":38884,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1473,"first_entry_time":38887,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1473,"first_entry_time":38888,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"352","highest_child_id":1476,"first_entry_time":38892,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1476,"first_entry_time":38894,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1476,"first_entry_time":38895,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1477,"first_entry_time":38898,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":19,"id":"599","highest_child_id":1480,"first_entry_time":38945,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":1479,"first_entry_time":38947,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"433","highest_child_id":1480,"first_entry_time":38953,"exclusive_time":1,"entries":1}],"allocations":[{"id":"18","count":2}]},{"inclusive_time":591,"id":"353","highest_child_id":1484,"first_entry_time":38965,"exclusive_time":584,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1482,"first_entry_time":38966,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1483,"first_entry_time":38969,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"600","highest_child_id":1484,"first_entry_time":39551,"exclusive_time":4,"entries":1,"allocations":[{"id":"2","count":1}]}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":2}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"361","highest_child_id":1485,"first_entry_time":39560,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":226,"id":"352","highest_child_id":1509,"first_entry_time":39568,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":222,"id":"353","highest_child_id":1509,"first_entry_time":39571,"exclusive_time":147,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1488,"first_entry_time":39572,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"317","highest_child_id":1495,"first_entry_time":39575,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":1490,"first_entry_time":39578,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1491,"first_entry_time":39579,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1492,"first_entry_time":39581,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1493,"first_entry_time":39583,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1494,"first_entry_time":39585,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1495,"first_entry_time":39589,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":55,"id":"601","highest_child_id":1509,"first_entry_time":39737,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":17,"id":"365","highest_child_id":1501,"first_entry_time":39744,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1498,"first_entry_time":39748,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1499,"first_entry_time":39750,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1500,"first_entry_time":39752,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":1501,"first_entry_time":39757,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":9,"id":"397","highest_child_id":1504,"first_entry_time":39763,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1504,"first_entry_time":39767,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":1504,"first_entry_time":39770,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":8,"id":"343","highest_child_id":1506,"first_entry_time":39774,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1506,"first_entry_time":39780,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1507,"first_entry_time":39783,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"375","highest_child_id":1508,"first_entry_time":39790,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1509,"first_entry_time":39792,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"6","count":1},{"id":"25","count":2}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"361","highest_child_id":1510,"first_entry_time":39796,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":72,"id":"352","highest_child_id":1525,"first_entry_time":39802,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":69,"id":"353","highest_child_id":1525,"first_entry_time":39805,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1513,"first_entry_time":39806,"exclusive_time":0,"entries":1},{"inclusive_time":21,"id":"317","highest_child_id":1520,"first_entry_time":39808,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1515,"first_entry_time":39811,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1516,"first_entry_time":39812,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1517,"first_entry_time":39814,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1518,"first_entry_time":39816,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1519,"first_entry_time":39817,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1520,"first_entry_time":39821,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":12,"id":"602","highest_child_id":1525,"first_entry_time":39862,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"343","highest_child_id":1523,"first_entry_time":39865,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1523,"first_entry_time":39867,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1524,"first_entry_time":39870,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1525,"first_entry_time":39873,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"403","highest_child_id":1526,"first_entry_time":39912,"exclusive_time":1,"entries":1},{"inclusive_time":1071,"id":"352","highest_child_id":1610,"first_entry_time":39923,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1068,"id":"353","highest_child_id":1610,"first_entry_time":39926,"exclusive_time":335,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1529,"first_entry_time":39927,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"317","highest_child_id":1536,"first_entry_time":39929,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1531,"first_entry_time":39931,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1532,"first_entry_time":39933,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1533,"first_entry_time":39934,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1534,"first_entry_time":39936,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1535,"first_entry_time":39937,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1536,"first_entry_time":39940,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":715,"id":"603","highest_child_id":1610,"first_entry_time":40278,"exclusive_time":284,"entries":1,"callees":[{"inclusive_time":4,"id":"443","highest_child_id":1538,"first_entry_time":40285,"exclusive_time":4,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":8,"id":"343","highest_child_id":1540,"first_entry_time":40292,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1540,"first_entry_time":40299,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"604","highest_child_id":1541,"first_entry_time":40315,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"445","highest_child_id":1542,"first_entry_time":40318,"exclusive_time":0,"entries":1},{"inclusive_time":66,"id":"605","highest_child_id":1555,"first_entry_time":40346,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":23,"id":"447","highest_child_id":1549,"first_entry_time":40359,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":20,"id":"365","highest_child_id":1549,"first_entry_time":40362,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1546,"first_entry_time":40367,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1547,"first_entry_time":40369,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"360","highest_child_id":1548,"first_entry_time":40372,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":1549,"first_entry_time":40378,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":11,"id":"365","highest_child_id":1554,"first_entry_time":40385,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1551,"first_entry_time":40387,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1552,"first_entry_time":40388,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1553,"first_entry_time":40390,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"367","highest_child_id":1554,"first_entry_time":40394,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":2,"id":"606","highest_child_id":1555,"first_entry_time":40410,"exclusive_time":2,"entries":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1556,"first_entry_time":40415,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"441","highest_child_id":1558,"first_entry_time":40418,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"442","highest_child_id":1558,"first_entry_time":40421,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":61,"id":"607","highest_child_id":1571,"first_entry_time":40502,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":38,"id":"608","highest_child_id":1571,"first_entry_time":40525,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":1561,"first_entry_time":40528,"exclusive_time":1,"entries":1},{"inclusive_time":29,"id":"387","highest_child_id":1571,"first_entry_time":40532,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":22,"id":"388","highest_child_id":1569,"first_entry_time":40535,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":6,"id":"389","highest_child_id":1566,"first_entry_time":40539,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":1565,"first_entry_time":40541,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"391","highest_child_id":1566,"first_entry_time":40555,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":1568,"first_entry_time":40543,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"390","highest_child_id":1568,"first_entry_time":40545,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"393","highest_child_id":1569,"first_entry_time":40547,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":1},{"id":"28","count":1}]},{"inclusive_time":2,"id":"389","highest_child_id":1571,"first_entry_time":40559,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"391","highest_child_id":1571,"first_entry_time":40560,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"609","highest_child_id":1572,"first_entry_time":40576,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"414","highest_child_id":1573,"first_entry_time":40581,"exclusive_time":1,"entries":1},{"inclusive_time":275,"id":"610","highest_child_id":1607,"first_entry_time":40709,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1575,"first_entry_time":40713,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"611","highest_child_id":1580,"first_entry_time":40727,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":10,"id":"105","highest_child_id":1580,"first_entry_time":40729,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":1578,"first_entry_time":40732,"exclusive_time":0,"entries":1,"allocations":[{"id":"612","count":1}]},{"inclusive_time":5,"id":"94","highest_child_id":1580,"first_entry_time":40734,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":1580,"first_entry_time":40736,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":188,"id":"613","highest_child_id":1595,"first_entry_time":40751,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":185,"id":"291","highest_child_id":1595,"first_entry_time":40753,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":2,"id":"292","highest_child_id":1583,"first_entry_time":40759,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":11,"id":"294","highest_child_id":1585,"first_entry_time":40762,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":1585,"first_entry_time":40769,"exclusive_time":4,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":2},{"id":"614","count":1},{"id":"296","count":1},{"id":"283","count":1}]},{"inclusive_time":130,"id":"615","highest_child_id":1594,"first_entry_time":40804,"exclusive_time":70,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1587,"first_entry_time":40807,"exclusive_time":4,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]},{"inclusive_time":54,"id":"616","highest_child_id":1593,"first_entry_time":40878,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1589,"first_entry_time":40885,"exclusive_time":4,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]},{"inclusive_time":17,"id":"617","highest_child_id":1592,"first_entry_time":40913,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":7,"id":"316","highest_child_id":1591,"first_entry_time":40914,"exclusive_time":7,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":1592,"first_entry_time":40927,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"337","highest_child_id":1593,"first_entry_time":40931,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":1,"id":"337","highest_child_id":1594,"first_entry_time":40933,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"317","highest_child_id":1595,"first_entry_time":40936,"exclusive_time":2,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":1,"id":"343","highest_child_id":1596,"first_entry_time":40940,"exclusive_time":0,"entries":1},{"inclusive_time":39,"id":"454","highest_child_id":1607,"first_entry_time":40944,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1598,"first_entry_time":40946,"exclusive_time":0,"entries":1},{"inclusive_time":36,"id":"455","highest_child_id":1607,"first_entry_time":40947,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":1600,"first_entry_time":40950,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"367","highest_child_id":1601,"first_entry_time":40957,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":21,"id":"447","highest_child_id":1607,"first_entry_time":40962,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1603,"first_entry_time":40964,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1604,"first_entry_time":40966,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1605,"first_entry_time":40970,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1606,"first_entry_time":40974,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"586","highest_child_id":1607,"first_entry_time":40978,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":3}]}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":3},{"id":"56","count":2}]},{"inclusive_time":1,"id":"393","highest_child_id":1608,"first_entry_time":40986,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"332","highest_child_id":1609,"first_entry_time":40990,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1610,"first_entry_time":40992,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":1},{"id":"56","count":1},{"id":"27","count":2}]}]}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":5},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":9,"id":"361","highest_child_id":1611,"first_entry_time":40998,"exclusive_time":9,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":20,"id":"317","highest_child_id":1618,"first_entry_time":41013,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1613,"first_entry_time":41015,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1614,"first_entry_time":41017,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1615,"first_entry_time":41019,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":1616,"first_entry_time":41020,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1617,"first_entry_time":41025,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1618,"first_entry_time":41029,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":71,"id":"593","highest_child_id":1641,"first_entry_time":41037,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1620,"first_entry_time":41039,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":58,"id":"458","highest_child_id":1640,"first_entry_time":41047,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1622,"first_entry_time":41048,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"340","highest_child_id":1624,"first_entry_time":41054,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1624,"first_entry_time":41056,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"348","highest_child_id":1627,"first_entry_time":41059,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1626,"first_entry_time":41061,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1627,"first_entry_time":41064,"exclusive_time":3,"entries":1}]},{"inclusive_time":30,"id":"594","highest_child_id":1637,"first_entry_time":41069,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":28,"id":"425","highest_child_id":1637,"first_entry_time":41071,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1630,"first_entry_time":41076,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"426","highest_child_id":1631,"first_entry_time":41079,"exclusive_time":3,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1632,"first_entry_time":41084,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"595","highest_child_id":1637,"first_entry_time":41086,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1634,"first_entry_time":41087,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1637,"first_entry_time":41093,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1637,"first_entry_time":41095,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1637,"first_entry_time":41097,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"352","highest_child_id":1640,"first_entry_time":41101,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1640,"first_entry_time":41103,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1640,"first_entry_time":41104,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1641,"first_entry_time":41106,"exclusive_time":1,"entries":1}]},{"inclusive_time":32,"id":"352","highest_child_id":1654,"first_entry_time":41113,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":29,"id":"353","highest_child_id":1654,"first_entry_time":41116,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1644,"first_entry_time":41117,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"317","highest_child_id":1651,"first_entry_time":41119,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1646,"first_entry_time":41121,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1647,"first_entry_time":41122,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1648,"first_entry_time":41124,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":1649,"first_entry_time":41125,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1650,"first_entry_time":41130,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1651,"first_entry_time":41133,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"596","highest_child_id":1654,"first_entry_time":41140,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"597","highest_child_id":1653,"first_entry_time":41142,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1654,"first_entry_time":41144,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":0,"id":"317","highest_child_id":1655,"first_entry_time":41147,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"339","highest_child_id":1659,"first_entry_time":41151,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"340","highest_child_id":1658,"first_entry_time":41152,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1658,"first_entry_time":41153,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"343","highest_child_id":1659,"first_entry_time":41157,"exclusive_time":1,"entries":1}]},{"inclusive_time":82,"id":"598","highest_child_id":1682,"first_entry_time":41160,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1661,"first_entry_time":41163,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":69,"id":"458","highest_child_id":1681,"first_entry_time":41170,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1663,"first_entry_time":41171,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"340","highest_child_id":1665,"first_entry_time":41176,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"341","highest_child_id":1665,"first_entry_time":41178,"exclusive_time":0,"entries":1}]},{"inclusive_time":7,"id":"348","highest_child_id":1668,"first_entry_time":41180,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1667,"first_entry_time":41182,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"350","highest_child_id":1668,"first_entry_time":41185,"exclusive_time":2,"entries":1}]},{"inclusive_time":43,"id":"594","highest_child_id":1678,"first_entry_time":41189,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":41,"id":"425","highest_child_id":1678,"first_entry_time":41191,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1671,"first_entry_time":41193,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1672,"first_entry_time":41195,"exclusive_time":1,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1673,"first_entry_time":41198,"exclusive_time":0,"entries":1},{"inclusive_time":31,"id":"595","highest_child_id":1678,"first_entry_time":41200,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":20,"id":"316","highest_child_id":1675,"first_entry_time":41201,"exclusive_time":20,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":6,"id":"352","highest_child_id":1678,"first_entry_time":41225,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1678,"first_entry_time":41228,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1678,"first_entry_time":41230,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"352","highest_child_id":1681,"first_entry_time":41234,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1681,"first_entry_time":41236,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1681,"first_entry_time":41237,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1682,"first_entry_time":41240,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":13,"id":"599","highest_child_id":1685,"first_entry_time":41244,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":1684,"first_entry_time":41246,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"433","highest_child_id":1685,"first_entry_time":41251,"exclusive_time":1,"entries":1}],"allocations":[{"id":"18","count":2}]},{"inclusive_time":19,"id":"353","highest_child_id":1689,"first_entry_time":41259,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1687,"first_entry_time":41260,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1688,"first_entry_time":41262,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"600","highest_child_id":1689,"first_entry_time":41264,"exclusive_time":13,"entries":1,"allocations":[{"id":"2","count":1}]}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":2}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"361","highest_child_id":1690,"first_entry_time":41281,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"346","highest_child_id":1691,"first_entry_time":41289,"exclusive_time":3,"entries":3},{"inclusive_time":3,"id":"340","highest_child_id":1693,"first_entry_time":41307,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1693,"first_entry_time":41309,"exclusive_time":0,"entries":1}]},{"inclusive_time":12,"id":"339","highest_child_id":1697,"first_entry_time":41314,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":6,"id":"340","highest_child_id":1696,"first_entry_time":41315,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1696,"first_entry_time":41317,"exclusive_time":1,"entries":4}]},{"inclusive_time":2,"id":"343","highest_child_id":1697,"first_entry_time":41320,"exclusive_time":2,"entries":2}]},{"inclusive_time":13,"id":"618","highest_child_id":1702,"first_entry_time":41334,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"425","highest_child_id":1702,"first_entry_time":41336,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1700,"first_entry_time":41339,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1701,"first_entry_time":41342,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1702,"first_entry_time":41346,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":11,"id":"619","highest_child_id":1707,"first_entry_time":41365,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"425","highest_child_id":1707,"first_entry_time":41367,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1705,"first_entry_time":41369,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1706,"first_entry_time":41371,"exclusive_time":1,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1707,"first_entry_time":41374,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":199,"id":"352","highest_child_id":1725,"first_entry_time":41379,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":196,"id":"353","highest_child_id":1725,"first_entry_time":41382,"exclusive_time":90,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1710,"first_entry_time":41383,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"317","highest_child_id":1717,"first_entry_time":41385,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1712,"first_entry_time":41388,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1713,"first_entry_time":41389,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1714,"first_entry_time":41391,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1715,"first_entry_time":41392,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1716,"first_entry_time":41394,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1717,"first_entry_time":41397,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":89,"id":"620","highest_child_id":1725,"first_entry_time":41488,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":3,"id":"343","highest_child_id":1720,"first_entry_time":41492,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1720,"first_entry_time":41495,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"621","highest_child_id":1722,"first_entry_time":41561,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1722,"first_entry_time":41564,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"335","highest_child_id":1723,"first_entry_time":41570,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"301","highest_child_id":1724,"first_entry_time":41573,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"587","highest_child_id":1725,"first_entry_time":41576,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1}]}]}]},{"inclusive_time":2,"id":"337","highest_child_id":1726,"first_entry_time":41781,"exclusive_time":2,"entries":1}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":4,"id":"361","highest_child_id":1727,"first_entry_time":41580,"exclusive_time":4,"entries":1},{"inclusive_time":16,"id":"622","highest_child_id":1732,"first_entry_time":41651,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1729,"first_entry_time":41654,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1732,"first_entry_time":41662,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1732,"first_entry_time":41665,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1732,"first_entry_time":41666,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"2","count":1}]},{"inclusive_time":2,"id":"588","highest_child_id":1734,"first_entry_time":41803,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"406","highest_child_id":1734,"first_entry_time":41805,"exclusive_time":0,"entries":1}]},{"inclusive_time":303,"id":"352","highest_child_id":1770,"first_entry_time":41843,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":301,"id":"353","highest_child_id":1770,"first_entry_time":41845,"exclusive_time":114,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1737,"first_entry_time":41846,"exclusive_time":0,"entries":1},{"inclusive_time":30,"id":"317","highest_child_id":1744,"first_entry_time":41848,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1739,"first_entry_time":41851,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1740,"first_entry_time":41852,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1741,"first_entry_time":41854,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"321","highest_child_id":1742,"first_entry_time":41855,"exclusive_time":13,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"322","highest_child_id":1743,"first_entry_time":41871,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1744,"first_entry_time":41876,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":155,"id":"623","highest_child_id":1770,"first_entry_time":41991,"exclusive_time":73,"entries":1,"callees":[{"inclusive_time":9,"id":"329","highest_child_id":1748,"first_entry_time":41993,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"331","highest_child_id":1748,"first_entry_time":41998,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":1748,"first_entry_time":42001,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"330","count":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1749,"first_entry_time":42006,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"386","highest_child_id":1750,"first_entry_time":42008,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"394","highest_child_id":1751,"first_entry_time":42013,"exclusive_time":1,"entries":4},{"inclusive_time":45,"id":"624","highest_child_id":1758,"first_entry_time":42044,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":1753,"first_entry_time":42047,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"625","highest_child_id":1755,"first_entry_time":42065,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":1755,"first_entry_time":42067,"exclusive_time":1,"entries":1}]},{"inclusive_time":9,"id":"626","highest_child_id":1758,"first_entry_time":42080,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"397","highest_child_id":1757,"first_entry_time":42082,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":2,"id":"584","highest_child_id":1758,"first_entry_time":42087,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"585","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"583","highest_child_id":1759,"first_entry_time":42090,"exclusive_time":1,"entries":3},{"inclusive_time":8,"id":"627","highest_child_id":1762,"first_entry_time":42102,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1762,"first_entry_time":42106,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1762,"first_entry_time":42109,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"628","count":1}]},{"inclusive_time":1,"id":"332","highest_child_id":1763,"first_entry_time":42112,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"375","highest_child_id":1764,"first_entry_time":42114,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"393","highest_child_id":1765,"first_entry_time":42117,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"392","highest_child_id":1767,"first_entry_time":42118,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":1767,"first_entry_time":42120,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"629","highest_child_id":1769,"first_entry_time":42136,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"391","highest_child_id":1769,"first_entry_time":42139,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":1,"id":"587","highest_child_id":1770,"first_entry_time":42145,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":4}]}]}]}]},{"inclusive_time":2,"id":"588","highest_child_id":1772,"first_entry_time":42148,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"406","highest_child_id":1772,"first_entry_time":42150,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":79,"id":"630","highest_child_id":1781,"first_entry_time":42181,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1774,"first_entry_time":42182,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":70,"id":"352","highest_child_id":1781,"first_entry_time":42189,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":67,"id":"353","highest_child_id":1781,"first_entry_time":42192,"exclusive_time":56,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1777,"first_entry_time":42193,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"317","highest_child_id":1780,"first_entry_time":42195,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1779,"first_entry_time":42198,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1780,"first_entry_time":42200,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"631","highest_child_id":1781,"first_entry_time":42255,"exclusive_time":3,"entries":1}]}]}]},{"inclusive_time":15,"id":"632","highest_child_id":1783,"first_entry_time":42353,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"633","highest_child_id":1783,"first_entry_time":42363,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":3},{"id":"170","count":1}]},{"inclusive_time":1,"id":"634","highest_child_id":1784,"first_entry_time":42405,"exclusive_time":1,"entries":1},{"inclusive_time":406,"id":"635","highest_child_id":1845,"first_entry_time":42463,"exclusive_time":62,"entries":1,"callees":[{"inclusive_time":136,"id":"577","highest_child_id":1817,"first_entry_time":42467,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1787,"first_entry_time":42470,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"578","highest_child_id":1788,"first_entry_time":42472,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"447","highest_child_id":1794,"first_entry_time":42476,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":15,"id":"365","highest_child_id":1794,"first_entry_time":42478,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1791,"first_entry_time":42482,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1792,"first_entry_time":42483,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1793,"first_entry_time":42485,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1794,"first_entry_time":42490,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":73,"id":"636","highest_child_id":1811,"first_entry_time":42513,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":1796,"first_entry_time":42516,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":21,"id":"9","highest_child_id":1798,"first_entry_time":42522,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"20","highest_child_id":1798,"first_entry_time":42540,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":29,"id":"637","highest_child_id":1811,"first_entry_time":42557,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":1800,"first_entry_time":42561,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":1801,"first_entry_time":42566,"exclusive_time":0,"entries":2},{"inclusive_time":16,"id":"72","highest_child_id":1811,"first_entry_time":42568,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":1803,"first_entry_time":42569,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":1804,"first_entry_time":42571,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":1805,"first_entry_time":42573,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":1807,"first_entry_time":42574,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":1807,"first_entry_time":42575,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":1809,"first_entry_time":42578,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":1809,"first_entry_time":42579,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":1810,"first_entry_time":42581,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":1811,"first_entry_time":42582,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"638","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":5,"id":"378","highest_child_id":1814,"first_entry_time":42588,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":3,"id":"379","highest_child_id":1814,"first_entry_time":42589,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"380","highest_child_id":1814,"first_entry_time":42591,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":8,"id":"581","highest_child_id":1817,"first_entry_time":42594,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1817,"first_entry_time":42598,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1817,"first_entry_time":42600,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"582","count":1}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":1,"id":"639","highest_child_id":1818,"first_entry_time":42615,"exclusive_time":1,"entries":1},{"inclusive_time":33,"id":"371","highest_child_id":1824,"first_entry_time":42619,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"360","highest_child_id":1820,"first_entry_time":42620,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":22,"id":"372","highest_child_id":1823,"first_entry_time":42624,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":5,"id":"331","highest_child_id":1823,"first_entry_time":42641,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"374","highest_child_id":1823,"first_entry_time":42644,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":1,"id":"375","highest_child_id":1824,"first_entry_time":42647,"exclusive_time":1,"entries":1}]},{"inclusive_time":161,"id":"640","highest_child_id":1843,"first_entry_time":42672,"exclusive_time":59,"entries":2,"callees":[{"inclusive_time":7,"id":"641","highest_child_id":1826,"first_entry_time":42683,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":60,"id":"642","highest_child_id":1836,"first_entry_time":42718,"exclusive_time":26,"entries":2,"callees":[{"inclusive_time":26,"id":"643","highest_child_id":1833,"first_entry_time":42739,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":4,"id":"96","highest_child_id":1829,"first_entry_time":42745,"exclusive_time":4,"entries":2},{"inclusive_time":10,"id":"97","highest_child_id":1833,"first_entry_time":42749,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"99","highest_child_id":1831,"first_entry_time":42750,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"100","highest_child_id":1832,"first_entry_time":42752,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"47","highest_child_id":1833,"first_entry_time":42754,"exclusive_time":1,"entries":2}],"allocations":[{"id":"6","count":2},{"id":"98","count":2}]}],"allocations":[{"id":"644","count":2},{"id":"645","count":1},{"id":"646","count":1}]},{"inclusive_time":7,"id":"378","highest_child_id":1836,"first_entry_time":42756,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":4,"id":"379","highest_child_id":1836,"first_entry_time":42758,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1836,"first_entry_time":42759,"exclusive_time":0,"entries":2}]}]}],"allocations":[{"id":"6","count":4},{"id":"27","count":2}]},{"inclusive_time":2,"id":"647","highest_child_id":1837,"first_entry_time":42771,"exclusive_time":1,"entries":2},{"inclusive_time":34,"id":"371","highest_child_id":1843,"first_entry_time":42775,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":8,"id":"360","highest_child_id":1839,"first_entry_time":42777,"exclusive_time":7,"entries":4,"allocations":[{"id":"6","count":2}]},{"inclusive_time":15,"id":"372","highest_child_id":1842,"first_entry_time":42780,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":7,"id":"331","highest_child_id":1842,"first_entry_time":42785,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"374","highest_child_id":1842,"first_entry_time":42788,"exclusive_time":1,"entries":2}],"allocations":[{"id":"170","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":2},{"id":"6","count":2},{"id":"373","count":2}]},{"inclusive_time":2,"id":"375","highest_child_id":1843,"first_entry_time":42790,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":11,"id":"648","highest_child_id":1845,"first_entry_time":42857,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"649","highest_child_id":1845,"first_entry_time":42867,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":1578,"id":"352","highest_child_id":1986,"first_entry_time":42871,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1574,"id":"353","highest_child_id":1986,"first_entry_time":42874,"exclusive_time":370,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1848,"first_entry_time":42875,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"317","highest_child_id":1855,"first_entry_time":42878,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1850,"first_entry_time":42881,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1851,"first_entry_time":42883,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1852,"first_entry_time":42884,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1853,"first_entry_time":42886,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1854,"first_entry_time":42888,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1855,"first_entry_time":42892,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1183,"id":"650","highest_child_id":1986,"first_entry_time":43264,"exclusive_time":444,"entries":1,"callees":[{"inclusive_time":123,"id":"651","highest_child_id":1882,"first_entry_time":43313,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":24,"id":"365","highest_child_id":1862,"first_entry_time":43316,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1859,"first_entry_time":43320,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"366","highest_child_id":1860,"first_entry_time":43322,"exclusive_time":0,"entries":2},{"inclusive_time":3,"id":"360","highest_child_id":1861,"first_entry_time":43325,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":4,"id":"367","highest_child_id":1862,"first_entry_time":43328,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":4,"id":"378","highest_child_id":1865,"first_entry_time":43334,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"379","highest_child_id":1865,"first_entry_time":43335,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1865,"first_entry_time":43337,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":66,"id":"577","highest_child_id":1880,"first_entry_time":43350,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1867,"first_entry_time":43353,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"578","highest_child_id":1868,"first_entry_time":43355,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"579","highest_child_id":1869,"first_entry_time":43357,"exclusive_time":16,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]},{"inclusive_time":4,"id":"580","highest_child_id":1870,"first_entry_time":43379,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"283","count":1},{"id":"25","count":1}]},{"inclusive_time":16,"id":"447","highest_child_id":1876,"first_entry_time":43389,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"365","highest_child_id":1876,"first_entry_time":43391,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1873,"first_entry_time":43394,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1874,"first_entry_time":43396,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1875,"first_entry_time":43397,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1876,"first_entry_time":43402,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":0,"id":"378","highest_child_id":1877,"first_entry_time":43407,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"581","highest_child_id":1880,"first_entry_time":43409,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1880,"first_entry_time":43412,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1880,"first_entry_time":43415,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"582","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":1},{"id":"56","count":4}]},{"inclusive_time":4,"id":"653","highest_child_id":1882,"first_entry_time":43431,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":1882,"first_entry_time":43434,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"652","count":1}]},{"inclusive_time":22,"id":"654","highest_child_id":1888,"first_entry_time":43449,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":19,"id":"365","highest_child_id":1888,"first_entry_time":43451,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1885,"first_entry_time":43455,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"366","highest_child_id":1886,"first_entry_time":43456,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"360","highest_child_id":1887,"first_entry_time":43458,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1888,"first_entry_time":43461,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]}]},{"inclusive_time":257,"id":"655","highest_child_id":1921,"first_entry_time":43562,"exclusive_time":162,"entries":1,"callees":[{"inclusive_time":2,"id":"329","highest_child_id":1890,"first_entry_time":43567,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"330","count":2}]},{"inclusive_time":2,"id":"326","highest_child_id":1891,"first_entry_time":43572,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"656","highest_child_id":1893,"first_entry_time":43581,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"113","highest_child_id":1893,"first_entry_time":43584,"exclusive_time":0,"entries":1}]},{"inclusive_time":19,"id":"365","highest_child_id":1898,"first_entry_time":43585,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1895,"first_entry_time":43589,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"366","highest_child_id":1896,"first_entry_time":43591,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"360","highest_child_id":1897,"first_entry_time":43593,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1898,"first_entry_time":43595,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":1,"id":"335","highest_child_id":1899,"first_entry_time":43607,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"657","highest_child_id":1900,"first_entry_time":43619,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"658","highest_child_id":1901,"first_entry_time":43633,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"659","highest_child_id":1902,"first_entry_time":43646,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"660","highest_child_id":1903,"first_entry_time":43657,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"661","highest_child_id":1904,"first_entry_time":43673,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"662","highest_child_id":1909,"first_entry_time":43690,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"663","highest_child_id":1906,"first_entry_time":43700,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"664","highest_child_id":1907,"first_entry_time":43710,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"149","highest_child_id":1908,"first_entry_time":43712,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"380","highest_child_id":1909,"first_entry_time":43714,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"665","highest_child_id":1910,"first_entry_time":43723,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"314","highest_child_id":1911,"first_entry_time":43726,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"666","highest_child_id":1912,"first_entry_time":43737,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"667","highest_child_id":1913,"first_entry_time":43749,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"668","count":1}]},{"inclusive_time":14,"id":"669","highest_child_id":1917,"first_entry_time":43768,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"581","highest_child_id":1915,"first_entry_time":43770,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"582","count":2}]},{"inclusive_time":3,"id":"372","highest_child_id":1916,"first_entry_time":43775,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":2,"id":"397","highest_child_id":1917,"first_entry_time":43779,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"375","highest_child_id":1918,"first_entry_time":43783,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"670","highest_child_id":1921,"first_entry_time":43806,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"671","highest_child_id":1920,"first_entry_time":43815,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"149","highest_child_id":1921,"first_entry_time":43817,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"2","count":4},{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":16,"id":"672","highest_child_id":1927,"first_entry_time":43873,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":12,"id":"365","highest_child_id":1927,"first_entry_time":43875,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1924,"first_entry_time":43879,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1925,"first_entry_time":43881,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"360","highest_child_id":1926,"first_entry_time":43883,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"367","highest_child_id":1927,"first_entry_time":43886,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":13,"id":"673","highest_child_id":1930,"first_entry_time":43912,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1929,"first_entry_time":43914,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"674","highest_child_id":1930,"first_entry_time":43923,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":11,"id":"675","highest_child_id":1933,"first_entry_time":43940,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1932,"first_entry_time":43941,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"676","highest_child_id":1933,"first_entry_time":43950,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":9,"id":"677","highest_child_id":1936,"first_entry_time":43991,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"590","highest_child_id":1935,"first_entry_time":43993,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"466","highest_child_id":1936,"first_entry_time":43998,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"329","highest_child_id":1937,"first_entry_time":44001,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"330","count":1}]},{"inclusive_time":3,"id":"678","highest_child_id":1938,"first_entry_time":44015,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"395","highest_child_id":1939,"first_entry_time":44025,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":2,"id":"581","highest_child_id":1940,"first_entry_time":44029,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"582","count":2}]},{"inclusive_time":6,"id":"397","highest_child_id":1941,"first_entry_time":44032,"exclusive_time":6,"entries":4,"allocations":[{"id":"10","count":4},{"id":"6","count":4},{"id":"398","count":4}]},{"inclusive_time":5,"id":"670","highest_child_id":1944,"first_entry_time":44036,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"671","highest_child_id":1943,"first_entry_time":44038,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"149","highest_child_id":1944,"first_entry_time":44040,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"332","highest_child_id":1945,"first_entry_time":44042,"exclusive_time":1,"entries":1},{"inclusive_time":34,"id":"372","highest_child_id":1948,"first_entry_time":44045,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":25,"id":"331","highest_child_id":1948,"first_entry_time":44053,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":2,"id":"679","highest_child_id":1948,"first_entry_time":44076,"exclusive_time":2,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":3,"id":"680","highest_child_id":1949,"first_entry_time":44088,"exclusive_time":3,"entries":1},{"inclusive_time":3,"id":"661","highest_child_id":1950,"first_entry_time":44092,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"314","highest_child_id":1951,"first_entry_time":44098,"exclusive_time":0,"entries":2},{"inclusive_time":30,"id":"681","highest_child_id":1956,"first_entry_time":44132,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":8,"id":"372","highest_child_id":1953,"first_entry_time":44135,"exclusive_time":7,"entries":5,"allocations":[{"id":"27","count":5},{"id":"10","count":5},{"id":"6","count":5},{"id":"373","count":5}]},{"inclusive_time":7,"id":"397","highest_child_id":1954,"first_entry_time":44141,"exclusive_time":6,"entries":6,"allocations":[{"id":"10","count":6},{"id":"6","count":6},{"id":"398","count":6}]},{"inclusive_time":1,"id":"395","highest_child_id":1955,"first_entry_time":44150,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":1,"id":"329","highest_child_id":1956,"first_entry_time":44161,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"330","count":1}]}]},{"inclusive_time":2,"id":"375","highest_child_id":1957,"first_entry_time":44163,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"682","highest_child_id":1958,"first_entry_time":44181,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"683","highest_child_id":1960,"first_entry_time":44193,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1960,"first_entry_time":44195,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"684","highest_child_id":1962,"first_entry_time":44204,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"664","highest_child_id":1962,"first_entry_time":44206,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"685","highest_child_id":1963,"first_entry_time":44216,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"686","highest_child_id":1965,"first_entry_time":44225,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"671","highest_child_id":1965,"first_entry_time":44228,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"666","highest_child_id":1966,"first_entry_time":44230,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"447","highest_child_id":1972,"first_entry_time":44234,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1968,"first_entry_time":44236,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1969,"first_entry_time":44238,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1970,"first_entry_time":44241,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1971,"first_entry_time":44246,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"586","highest_child_id":1972,"first_entry_time":44250,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"667","highest_child_id":1973,"first_entry_time":44259,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"668","count":1}]},{"inclusive_time":149,"id":"687","highest_child_id":1984,"first_entry_time":44274,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":131,"id":"331","highest_child_id":1984,"first_entry_time":44291,"exclusive_time":113,"entries":1,"callees":[{"inclusive_time":3,"id":"689","highest_child_id":1976,"first_entry_time":44308,"exclusive_time":3,"entries":1},{"inclusive_time":3,"id":"690","highest_child_id":1977,"first_entry_time":44333,"exclusive_time":3,"entries":1},{"inclusive_time":2,"id":"691","highest_child_id":1978,"first_entry_time":44351,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"692","highest_child_id":1979,"first_entry_time":44364,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"693","highest_child_id":1980,"first_entry_time":44375,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"694","highest_child_id":1981,"first_entry_time":44387,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"695","highest_child_id":1982,"first_entry_time":44398,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"696","highest_child_id":1983,"first_entry_time":44408,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"697","highest_child_id":1984,"first_entry_time":44421,"exclusive_time":2,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"688","count":1}]},{"inclusive_time":5,"id":"698","highest_child_id":1985,"first_entry_time":44435,"exclusive_time":4,"entries":4,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"587","highest_child_id":1986,"first_entry_time":44446,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":2},{"id":"27","count":5}]}]}]}],"allocations":[{"id":"6","count":6},{"id":"10","count":7},{"id":"27","count":7},{"id":"28","count":1}]},{"inclusive_time":19,"id":"699","highest_child_id":1990,"first_entry_time":44459,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1988,"first_entry_time":44461,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"700","highest_child_id":1990,"first_entry_time":44472,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"113","highest_child_id":1990,"first_entry_time":44474,"exclusive_time":0,"entries":4}]}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":1,"id":"317","highest_child_id":1991,"first_entry_time":44480,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"6","count":1}]},{"inclusive_time":3,"id":"343","highest_child_id":1993,"first_entry_time":44483,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"440","highest_child_id":1993,"first_entry_time":44485,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"701","highest_child_id":1994,"first_entry_time":44509,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"702","highest_child_id":1996,"first_entry_time":44533,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1996,"first_entry_time":44536,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4598,"id":"703","highest_child_id":2274,"first_entry_time":44561,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":18,"id":"104","highest_child_id":2002,"first_entry_time":44566,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":16,"id":"105","highest_child_id":2002,"first_entry_time":44567,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2000,"first_entry_time":44569,"exclusive_time":0,"entries":1,"allocations":[{"id":"704","count":1}]},{"inclusive_time":12,"id":"94","highest_child_id":2002,"first_entry_time":44571,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":2002,"first_entry_time":44573,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4471,"id":"705","highest_child_id":2268,"first_entry_time":44632,"exclusive_time":202,"entries":1,"callees":[{"inclusive_time":213,"id":"706","highest_child_id":2013,"first_entry_time":44644,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":170,"id":"708","highest_child_id":2013,"first_entry_time":44687,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":2,"id":"386","highest_child_id":2006,"first_entry_time":44690,"exclusive_time":1,"entries":2},{"inclusive_time":73,"id":"709","highest_child_id":2009,"first_entry_time":44714,"exclusive_time":49,"entries":10,"callees":[{"inclusive_time":17,"id":"360","highest_child_id":2008,"first_entry_time":44717,"exclusive_time":13,"entries":20,"allocations":[{"id":"6","count":20}]},{"inclusive_time":11,"id":"710","highest_child_id":2009,"first_entry_time":44736,"exclusive_time":9,"entries":10}],"allocations":[{"id":"27","count":10}]},{"inclusive_time":15,"id":"711","highest_child_id":2013,"first_entry_time":44842,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"360","highest_child_id":2011,"first_entry_time":44845,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"710","highest_child_id":2012,"first_entry_time":44850,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":2013,"first_entry_time":44853,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"10","count":3},{"id":"6","count":1},{"id":"27","count":3}]}],"allocations":[{"id":"707","count":1}]},{"inclusive_time":11,"id":"712","highest_child_id":2015,"first_entry_time":44868,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"714","highest_child_id":2015,"first_entry_time":44878,"exclusive_time":1,"entries":1}],"allocations":[{"id":"713","count":1}]},{"inclusive_time":12,"id":"715","highest_child_id":2017,"first_entry_time":44889,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"717","highest_child_id":2017,"first_entry_time":44899,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"716","count":1}]},{"inclusive_time":2,"id":"386","highest_child_id":2018,"first_entry_time":44903,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"395","highest_child_id":2019,"first_entry_time":44908,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":2,"id":"397","highest_child_id":2020,"first_entry_time":44912,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":1,"id":"718","highest_child_id":2021,"first_entry_time":44922,"exclusive_time":1,"entries":1},{"inclusive_time":4022,"id":"719","highest_child_id":2267,"first_entry_time":45031,"exclusive_time":585,"entries":1,"callees":[{"inclusive_time":1,"id":"720","highest_child_id":2023,"first_entry_time":45048,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"104","highest_child_id":2028,"first_entry_time":45052,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":20,"id":"105","highest_child_id":2028,"first_entry_time":45053,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2026,"first_entry_time":45055,"exclusive_time":0,"entries":1,"allocations":[{"id":"721","count":1}]},{"inclusive_time":16,"id":"94","highest_child_id":2028,"first_entry_time":45057,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":2028,"first_entry_time":45058,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":5},{"id":"10","count":4}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"149","highest_child_id":2029,"first_entry_time":45074,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"386","highest_child_id":2030,"first_entry_time":45076,"exclusive_time":1,"entries":2},{"inclusive_time":3232,"id":"722","highest_child_id":2242,"first_entry_time":45318,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":6,"id":"389","highest_child_id":2033,"first_entry_time":45326,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2033,"first_entry_time":45328,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"392","highest_child_id":2035,"first_entry_time":45331,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2035,"first_entry_time":45332,"exclusive_time":1,"entries":3}]},{"inclusive_time":5,"id":"629","highest_child_id":2037,"first_entry_time":45334,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2037,"first_entry_time":45335,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":2,"id":"723","highest_child_id":2038,"first_entry_time":45348,"exclusive_time":2,"entries":3},{"inclusive_time":3166,"id":"722","highest_child_id":2241,"first_entry_time":45352,"exclusive_time":1166,"entries":3,"callees":[{"inclusive_time":20,"id":"389","highest_child_id":2041,"first_entry_time":45357,"exclusive_time":13,"entries":13,"callees":[{"inclusive_time":7,"id":"390","highest_child_id":2041,"first_entry_time":45358,"exclusive_time":4,"entries":13}]},{"inclusive_time":16,"id":"392","highest_child_id":2043,"first_entry_time":45360,"exclusive_time":10,"entries":13,"callees":[{"inclusive_time":5,"id":"390","highest_child_id":2043,"first_entry_time":45361,"exclusive_time":3,"entries":13}]},{"inclusive_time":18,"id":"629","highest_child_id":2045,"first_entry_time":45363,"exclusive_time":10,"entries":13,"callees":[{"inclusive_time":7,"id":"390","highest_child_id":2045,"first_entry_time":45364,"exclusive_time":5,"entries":13,"allocations":[{"id":"28","count":13}]}]},{"inclusive_time":116,"id":"724","highest_child_id":2051,"first_entry_time":45436,"exclusive_time":69,"entries":8,"callees":[{"inclusive_time":6,"id":"725","highest_child_id":2047,"first_entry_time":45450,"exclusive_time":4,"entries":8},{"inclusive_time":4,"id":"726","highest_child_id":2048,"first_entry_time":45464,"exclusive_time":3,"entries":8},{"inclusive_time":38,"id":"727","highest_child_id":2051,"first_entry_time":45481,"exclusive_time":30,"entries":8,"callees":[{"inclusive_time":5,"id":"725","highest_child_id":2050,"first_entry_time":45483,"exclusive_time":3,"entries":8},{"inclusive_time":4,"id":"728","highest_child_id":2051,"first_entry_time":45495,"exclusive_time":3,"entries":8}],"allocations":[{"id":"27","count":16}]}],"allocations":[{"id":"27","count":16}]},{"inclusive_time":549,"id":"729","highest_child_id":2119,"first_entry_time":46539,"exclusive_time":109,"entries":3,"callees":[{"inclusive_time":5,"id":"394","highest_child_id":2053,"first_entry_time":46545,"exclusive_time":4,"entries":8},{"inclusive_time":47,"id":"730","highest_child_id":2057,"first_entry_time":46591,"exclusive_time":28,"entries":3,"callees":[{"inclusive_time":18,"id":"731","highest_child_id":2056,"first_entry_time":46614,"exclusive_time":14,"entries":3,"callees":[{"inclusive_time":3,"id":"394","highest_child_id":2056,"first_entry_time":46616,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"394","highest_child_id":2057,"first_entry_time":46943,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":384,"id":"732","highest_child_id":2116,"first_entry_time":46642,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2059,"first_entry_time":46644,"exclusive_time":1,"entries":3},{"inclusive_time":374,"id":"722","highest_child_id":2116,"first_entry_time":46648,"exclusive_time":36,"entries":3,"callees":[{"inclusive_time":10,"id":"389","highest_child_id":2062,"first_entry_time":46653,"exclusive_time":6,"entries":6,"callees":[{"inclusive_time":4,"id":"390","highest_child_id":2062,"first_entry_time":46654,"exclusive_time":2,"entries":6}]},{"inclusive_time":80,"id":"724","highest_child_id":2070,"first_entry_time":46657,"exclusive_time":61,"entries":3,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2064,"first_entry_time":46659,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"726","highest_child_id":2065,"first_entry_time":46661,"exclusive_time":2,"entries":3},{"inclusive_time":10,"id":"733","highest_child_id":2068,"first_entry_time":46686,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2067,"first_entry_time":46687,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"728","highest_child_id":2068,"first_entry_time":46690,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":3},{"id":"10","count":1}]},{"inclusive_time":4,"id":"727","highest_child_id":2070,"first_entry_time":46893,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2070,"first_entry_time":46895,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":236,"id":"729","highest_child_id":2112,"first_entry_time":46701,"exclusive_time":27,"entries":3,"callees":[{"inclusive_time":3,"id":"394","highest_child_id":2072,"first_entry_time":46704,"exclusive_time":2,"entries":6},{"inclusive_time":17,"id":"730","highest_child_id":2076,"first_entry_time":46708,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":10,"id":"731","highest_child_id":2075,"first_entry_time":46709,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":3,"id":"394","highest_child_id":2075,"first_entry_time":46710,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"394","highest_child_id":2076,"first_entry_time":47009,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":188,"id":"732","highest_child_id":2112,"first_entry_time":46715,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2078,"first_entry_time":46717,"exclusive_time":1,"entries":3},{"inclusive_time":180,"id":"722","highest_child_id":2112,"first_entry_time":46719,"exclusive_time":25,"entries":3,"callees":[{"inclusive_time":7,"id":"389","highest_child_id":2081,"first_entry_time":46723,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2081,"first_entry_time":46724,"exclusive_time":1,"entries":4}]},{"inclusive_time":5,"id":"392","highest_child_id":2083,"first_entry_time":46726,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2083,"first_entry_time":46727,"exclusive_time":1,"entries":4}]},{"inclusive_time":6,"id":"629","highest_child_id":2085,"first_entry_time":46729,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2085,"first_entry_time":46730,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]},{"inclusive_time":10,"id":"724","highest_child_id":2090,"first_entry_time":46976,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2087,"first_entry_time":46978,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2088,"first_entry_time":46981,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"733","highest_child_id":2090,"first_entry_time":46983,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2090,"first_entry_time":46985,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":127,"id":"729","highest_child_id":2112,"first_entry_time":47024,"exclusive_time":42,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2092,"first_entry_time":47026,"exclusive_time":1,"entries":4},{"inclusive_time":9,"id":"730","highest_child_id":2095,"first_entry_time":47030,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":7,"id":"731","highest_child_id":2095,"first_entry_time":47031,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2095,"first_entry_time":47033,"exclusive_time":1,"entries":4}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":69,"id":"732","highest_child_id":2110,"first_entry_time":47037,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2097,"first_entry_time":47038,"exclusive_time":1,"entries":2},{"inclusive_time":49,"id":"722","highest_child_id":2109,"first_entry_time":47052,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":5,"id":"389","highest_child_id":2100,"first_entry_time":47057,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2100,"first_entry_time":47058,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"392","highest_child_id":2102,"first_entry_time":47060,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2102,"first_entry_time":47061,"exclusive_time":1,"entries":3}]},{"inclusive_time":5,"id":"629","highest_child_id":2104,"first_entry_time":47063,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2104,"first_entry_time":47064,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":16,"id":"724","highest_child_id":2109,"first_entry_time":47067,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2106,"first_entry_time":47068,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"726","highest_child_id":2107,"first_entry_time":47071,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"733","highest_child_id":2109,"first_entry_time":47074,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2109,"first_entry_time":47075,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":1,"id":"609","highest_child_id":2110,"first_entry_time":47114,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":3,"id":"609","highest_child_id":2111,"first_entry_time":47103,"exclusive_time":2,"entries":5},{"inclusive_time":1,"id":"734","highest_child_id":2112,"first_entry_time":47142,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"27","count":9}]}]}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]},{"inclusive_time":6,"id":"392","highest_child_id":2114,"first_entry_time":46854,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2114,"first_entry_time":46855,"exclusive_time":1,"entries":4}]},{"inclusive_time":6,"id":"629","highest_child_id":2116,"first_entry_time":46857,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2116,"first_entry_time":46859,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"735","highest_child_id":2117,"first_entry_time":46758,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2118,"first_entry_time":46916,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"386","highest_child_id":2119,"first_entry_time":46919,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"27","count":9}]},{"inclusive_time":1,"id":"386","highest_child_id":2120,"first_entry_time":47195,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"736","highest_child_id":2121,"first_entry_time":47206,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"332","highest_child_id":2122,"first_entry_time":47208,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"653","highest_child_id":2124,"first_entry_time":47210,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":2,"id":"639","highest_child_id":2124,"first_entry_time":47212,"exclusive_time":1,"entries":3}]},{"inclusive_time":1,"id":"737","highest_child_id":2125,"first_entry_time":47222,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"738","highest_child_id":2126,"first_entry_time":47232,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"739","highest_child_id":2127,"first_entry_time":47242,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"393","highest_child_id":2128,"first_entry_time":47258,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2129,"first_entry_time":47273,"exclusive_time":1,"entries":1},{"inclusive_time":1269,"id":"722","highest_child_id":2241,"first_entry_time":47276,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2132,"first_entry_time":47280,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2132,"first_entry_time":47282,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":2134,"first_entry_time":47284,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2134,"first_entry_time":47285,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"629","highest_child_id":2136,"first_entry_time":47287,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2136,"first_entry_time":47288,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":1,"id":"741","highest_child_id":2137,"first_entry_time":47301,"exclusive_time":1,"entries":1},{"inclusive_time":1237,"id":"722","highest_child_id":2240,"first_entry_time":47304,"exclusive_time":107,"entries":1,"callees":[{"inclusive_time":3,"id":"389","highest_child_id":2140,"first_entry_time":47308,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2140,"first_entry_time":47310,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":2142,"first_entry_time":47312,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"390","highest_child_id":2142,"first_entry_time":47313,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"629","highest_child_id":2144,"first_entry_time":47315,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2144,"first_entry_time":47316,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":1121,"id":"742","highest_child_id":2240,"first_entry_time":47419,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2146,"first_entry_time":47422,"exclusive_time":1,"entries":1},{"inclusive_time":1113,"id":"722","highest_child_id":2240,"first_entry_time":47426,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2149,"first_entry_time":47431,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2149,"first_entry_time":47432,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":2151,"first_entry_time":47434,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"390","highest_child_id":2151,"first_entry_time":47436,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"629","highest_child_id":2153,"first_entry_time":47437,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2153,"first_entry_time":47439,"exclusive_time":0,"entries":1,"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":1096,"id":"729","highest_child_id":2240,"first_entry_time":47441,"exclusive_time":200,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2155,"first_entry_time":47444,"exclusive_time":1,"entries":2},{"inclusive_time":12,"id":"730","highest_child_id":2159,"first_entry_time":47448,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":6,"id":"731","highest_child_id":2159,"first_entry_time":47450,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2158,"first_entry_time":47451,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2159,"first_entry_time":47453,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":51,"id":"732","highest_child_id":2177,"first_entry_time":47461,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2161,"first_entry_time":47463,"exclusive_time":0,"entries":1},{"inclusive_time":46,"id":"722","highest_child_id":2177,"first_entry_time":47466,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2164,"first_entry_time":47469,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2164,"first_entry_time":47471,"exclusive_time":0,"entries":1}]},{"inclusive_time":38,"id":"742","highest_child_id":2177,"first_entry_time":47473,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":35,"id":"722","highest_child_id":2177,"first_entry_time":47476,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":3,"id":"389","highest_child_id":2168,"first_entry_time":47480,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2168,"first_entry_time":47481,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"392","highest_child_id":2170,"first_entry_time":47483,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2170,"first_entry_time":47484,"exclusive_time":0,"entries":2}]},{"inclusive_time":3,"id":"629","highest_child_id":2172,"first_entry_time":47486,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2172,"first_entry_time":47487,"exclusive_time":1,"entries":2,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":5,"id":"653","highest_child_id":2174,"first_entry_time":47490,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":2174,"first_entry_time":47491,"exclusive_time":1,"entries":3}]},{"inclusive_time":1,"id":"737","highest_child_id":2175,"first_entry_time":47494,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"738","highest_child_id":2176,"first_entry_time":47497,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"739","highest_child_id":2177,"first_entry_time":47500,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"734","highest_child_id":2178,"first_entry_time":47514,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"609","highest_child_id":2179,"first_entry_time":47516,"exclusive_time":1,"entries":3},{"inclusive_time":13,"id":"709","highest_child_id":2182,"first_entry_time":47533,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":2181,"first_entry_time":47536,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"710","highest_child_id":2182,"first_entry_time":47545,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"743","highest_child_id":2184,"first_entry_time":47562,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"609","highest_child_id":2184,"first_entry_time":47564,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":810,"id":"744","highest_child_id":2240,"first_entry_time":47726,"exclusive_time":338,"entries":1,"callees":[{"inclusive_time":3,"id":"609","highest_child_id":2186,"first_entry_time":47731,"exclusive_time":2,"entries":5},{"inclusive_time":10,"id":"709","highest_child_id":2189,"first_entry_time":47734,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":2188,"first_entry_time":47736,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"710","highest_child_id":2189,"first_entry_time":47742,"exclusive_time":1,"entries":1}]},{"inclusive_time":3,"id":"745","highest_child_id":2190,"first_entry_time":47767,"exclusive_time":3,"entries":1},{"inclusive_time":2,"id":"746","highest_child_id":2191,"first_entry_time":47782,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":65,"id":"747","highest_child_id":2202,"first_entry_time":47872,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2193,"first_entry_time":47875,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2194,"first_entry_time":47892,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2195,"first_entry_time":47896,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2196,"first_entry_time":47898,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"749","highest_child_id":2197,"first_entry_time":47907,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"29","highest_child_id":2198,"first_entry_time":47910,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":2199,"first_entry_time":47911,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"750","highest_child_id":2201,"first_entry_time":47924,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"736","highest_child_id":2201,"first_entry_time":47926,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"149","highest_child_id":2202,"first_entry_time":47929,"exclusive_time":2,"entries":3,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":1},{"id":"28","count":1}]},{"inclusive_time":9,"id":"751","highest_child_id":2205,"first_entry_time":47950,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":2204,"first_entry_time":47954,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":2205,"first_entry_time":47958,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":87,"id":"752","highest_child_id":2207,"first_entry_time":47970,"exclusive_time":83,"entries":1,"callees":[{"inclusive_time":4,"id":"753","highest_child_id":2207,"first_entry_time":48053,"exclusive_time":4,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"8","count":1}]},{"inclusive_time":12,"id":"754","highest_child_id":2208,"first_entry_time":48153,"exclusive_time":11,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"394","highest_child_id":2209,"first_entry_time":48168,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"755","highest_child_id":2210,"first_entry_time":48189,"exclusive_time":1,"entries":1},{"inclusive_time":276,"id":"756","highest_child_id":2240,"first_entry_time":48258,"exclusive_time":111,"entries":1,"callees":[{"inclusive_time":4,"id":"751","highest_child_id":2213,"first_entry_time":48261,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":2213,"first_entry_time":48264,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":144,"id":"757","highest_child_id":2234,"first_entry_time":48314,"exclusive_time":101,"entries":1,"callees":[{"inclusive_time":2,"id":"758","highest_child_id":2215,"first_entry_time":48378,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":8,"id":"759","highest_child_id":2218,"first_entry_time":48396,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":2217,"first_entry_time":48399,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":2218,"first_entry_time":48403,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":28,"id":"760","highest_child_id":2230,"first_entry_time":48420,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":18,"id":"72","highest_child_id":2229,"first_entry_time":48428,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":2221,"first_entry_time":48430,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":2222,"first_entry_time":48432,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":2223,"first_entry_time":48435,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":2225,"first_entry_time":48436,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":2225,"first_entry_time":48437,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":2227,"first_entry_time":48439,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":2227,"first_entry_time":48440,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":2228,"first_entry_time":48443,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":2229,"first_entry_time":48443,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"71","highest_child_id":2230,"first_entry_time":48447,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"761","count":1}]},{"inclusive_time":1,"id":"393","highest_child_id":2231,"first_entry_time":48449,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2232,"first_entry_time":48451,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2233,"first_entry_time":48455,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2234,"first_entry_time":48457,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"762","highest_child_id":2235,"first_entry_time":48479,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"763","highest_child_id":2236,"first_entry_time":48493,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2237,"first_entry_time":48498,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"764","highest_child_id":2239,"first_entry_time":48523,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":2239,"first_entry_time":48526,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]}]},{"inclusive_time":1,"id":"394","highest_child_id":2240,"first_entry_time":48533,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":5}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":2,"id":"583","highest_child_id":2241,"first_entry_time":48543,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":4,"id":"583","highest_child_id":2242,"first_entry_time":46816,"exclusive_time":2,"entries":6}]},{"inclusive_time":1,"id":"765","highest_child_id":2243,"first_entry_time":48559,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"113","highest_child_id":2244,"first_entry_time":48562,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"718","highest_child_id":2245,"first_entry_time":48563,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"766","highest_child_id":2247,"first_entry_time":48651,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"726","highest_child_id":2247,"first_entry_time":48658,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"767","highest_child_id":2248,"first_entry_time":48695,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"768","highest_child_id":2249,"first_entry_time":48712,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"769","highest_child_id":2250,"first_entry_time":48722,"exclusive_time":1,"entries":1},{"inclusive_time":159,"id":"770","highest_child_id":2266,"first_entry_time":48889,"exclusive_time":100,"entries":1,"callees":[{"inclusive_time":7,"id":"725","highest_child_id":2252,"first_entry_time":48896,"exclusive_time":5,"entries":11,"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"726","highest_child_id":2253,"first_entry_time":48900,"exclusive_time":2,"entries":8},{"inclusive_time":1,"id":"386","highest_child_id":2254,"first_entry_time":48914,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"374","highest_child_id":2255,"first_entry_time":48921,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"728","highest_child_id":2256,"first_entry_time":48924,"exclusive_time":2,"entries":4},{"inclusive_time":19,"id":"771","highest_child_id":2257,"first_entry_time":48958,"exclusive_time":19,"entries":1,"allocations":[{"id":"27","count":1},{"id":"56","count":2}]},{"inclusive_time":1,"id":"583","highest_child_id":2258,"first_entry_time":48979,"exclusive_time":1,"entries":1},{"inclusive_time":10,"id":"372","highest_child_id":2261,"first_entry_time":48985,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":2261,"first_entry_time":48990,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"374","highest_child_id":2261,"first_entry_time":48993,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":2,"id":"680","highest_child_id":2262,"first_entry_time":48997,"exclusive_time":2,"entries":1},{"inclusive_time":7,"id":"360","highest_child_id":2265,"first_entry_time":49008,"exclusive_time":6,"entries":1,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":2264,"first_entry_time":49012,"exclusive_time":0,"entries":1},{"jit_entries":1,"inclusive_time":0,"id":"194","highest_child_id":2265,"first_entry_time":49014,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"170","count":1},{"id":"27","count":1}]},{"inclusive_time":4,"id":"772","highest_child_id":2266,"first_entry_time":49033,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"25","count":3},{"id":"27","count":24},{"id":"56","count":1}]},{"inclusive_time":1,"id":"682","highest_child_id":2267,"first_entry_time":49050,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"773","highest_child_id":2268,"first_entry_time":49100,"exclusive_time":2,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"386","highest_child_id":2269,"first_entry_time":49105,"exclusive_time":1,"entries":1},{"inclusive_time":39,"id":"774","highest_child_id":2274,"first_entry_time":49120,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":2271,"first_entry_time":49122,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"775","highest_child_id":2272,"first_entry_time":49131,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"776","highest_child_id":2273,"first_entry_time":49141,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"777","highest_child_id":2274,"first_entry_time":49158,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9095,"id":"778","highest_child_id":3238,"first_entry_time":49183,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":9081,"id":"779","highest_child_id":3238,"first_entry_time":49196,"exclusive_time":60,"entries":1,"callees":[{"inclusive_time":13,"id":"104","highest_child_id":2281,"first_entry_time":49199,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":12,"id":"105","highest_child_id":2281,"first_entry_time":49200,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2279,"first_entry_time":49202,"exclusive_time":0,"entries":1,"allocations":[{"id":"780","count":1}]},{"inclusive_time":8,"id":"94","highest_child_id":2281,"first_entry_time":49204,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":2281,"first_entry_time":49205,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9007,"id":"781","highest_child_id":3238,"first_entry_time":49270,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":2283,"first_entry_time":49277,"exclusive_time":1,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":67,"id":"104","highest_child_id":2291,"first_entry_time":49281,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":62,"id":"105","highest_child_id":2291,"first_entry_time":49283,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2286,"first_entry_time":49285,"exclusive_time":1,"entries":2,"allocations":[{"id":"782","count":1},{"id":"783","count":1}]},{"inclusive_time":54,"id":"94","highest_child_id":2291,"first_entry_time":49287,"exclusive_time":41,"entries":2,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":2288,"first_entry_time":49289,"exclusive_time":1,"entries":2},{"inclusive_time":6,"id":"784","highest_child_id":2290,"first_entry_time":49308,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":2290,"first_entry_time":49312,"exclusive_time":0,"entries":2,"allocations":[{"id":"282","count":2}]}],"allocations":[{"id":"10","count":3}]},{"inclusive_time":4,"id":"785","highest_child_id":2291,"first_entry_time":49345,"exclusive_time":4,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"786","highest_child_id":2292,"first_entry_time":49359,"exclusive_time":1,"entries":1},{"inclusive_time":8893,"id":"787","highest_child_id":3238,"first_entry_time":49384,"exclusive_time":102,"entries":1,"callees":[{"inclusive_time":8790,"id":"788","highest_child_id":3238,"first_entry_time":49486,"exclusive_time":94,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2295,"first_entry_time":49489,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"689","highest_child_id":2296,"first_entry_time":49493,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"789","highest_child_id":2297,"first_entry_time":49507,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"696","highest_child_id":2298,"first_entry_time":49510,"exclusive_time":1,"entries":3},{"inclusive_time":8665,"id":"787","highest_child_id":3225,"first_entry_time":49519,"exclusive_time":144,"entries":3,"callees":[{"inclusive_time":8521,"id":"790","highest_child_id":3225,"first_entry_time":49659,"exclusive_time":111,"entries":3,"callees":[{"inclusive_time":7,"id":"658","highest_child_id":2301,"first_entry_time":49668,"exclusive_time":6,"entries":3,"allocations":[{"id":"56","count":2}]},{"inclusive_time":8397,"id":"791","highest_child_id":3223,"first_entry_time":49749,"exclusive_time":423,"entries":3,"callees":[{"inclusive_time":3,"id":"661","highest_child_id":2303,"first_entry_time":49757,"exclusive_time":2,"entries":3},{"inclusive_time":287,"id":"792","highest_child_id":2314,"first_entry_time":49779,"exclusive_time":53,"entries":3,"callees":[{"inclusive_time":233,"id":"794","highest_child_id":2314,"first_entry_time":49829,"exclusive_time":76,"entries":3,"callees":[{"inclusive_time":2,"id":"795","highest_child_id":2306,"first_entry_time":49840,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"796","highest_child_id":2307,"first_entry_time":49849,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"285","highest_child_id":2308,"first_entry_time":49852,"exclusive_time":1,"entries":6,"allocations":[{"id":"282","count":6}]},{"inclusive_time":126,"id":"797","highest_child_id":2312,"first_entry_time":49867,"exclusive_time":38,"entries":6,"callees":[{"inclusive_time":88,"id":"798","highest_child_id":2312,"first_entry_time":49900,"exclusive_time":80,"entries":6,"callees":[{"inclusive_time":5,"id":"799","highest_child_id":2311,"first_entry_time":49914,"exclusive_time":4,"entries":6},{"inclusive_time":5,"id":"800","highest_child_id":2312,"first_entry_time":49926,"exclusive_time":2,"entries":12}]}]},{"inclusive_time":28,"id":"801","highest_child_id":2314,"first_entry_time":49960,"exclusive_time":24,"entries":3,"callees":[{"inclusive_time":3,"id":"803","highest_child_id":2314,"first_entry_time":49973,"exclusive_time":3,"entries":3}],"allocations":[{"id":"802","count":3}]}],"allocations":[{"id":"10","count":18},{"id":"6","count":12},{"id":"26","count":6}]}],"allocations":[{"id":"793","count":3}]},{"inclusive_time":18,"id":"804","highest_child_id":2316,"first_entry_time":49990,"exclusive_time":15,"entries":3,"callees":[{"inclusive_time":3,"id":"805","highest_child_id":2316,"first_entry_time":50000,"exclusive_time":2,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":33,"id":"806","highest_child_id":2318,"first_entry_time":50016,"exclusive_time":26,"entries":3,"callees":[{"inclusive_time":7,"id":"808","highest_child_id":2318,"first_entry_time":50036,"exclusive_time":6,"entries":3,"allocations":[{"id":"6","count":27},{"id":"10","count":9}]}],"allocations":[{"id":"807","count":3}]},{"inclusive_time":3,"id":"809","highest_child_id":2319,"first_entry_time":50054,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"810","highest_child_id":2320,"first_entry_time":50065,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"811","highest_child_id":2321,"first_entry_time":50075,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"657","highest_child_id":2322,"first_entry_time":50078,"exclusive_time":1,"entries":3},{"inclusive_time":7618,"id":"812","highest_child_id":3221,"first_entry_time":50368,"exclusive_time":268,"entries":3,"callees":[{"inclusive_time":17,"id":"813","highest_child_id":2324,"first_entry_time":50393,"exclusive_time":16,"entries":3,"allocations":[{"id":"814","count":3},{"id":"10","count":39},{"id":"26","count":3}]},{"inclusive_time":5,"id":"682","highest_child_id":2325,"first_entry_time":50401,"exclusive_time":4,"entries":6},{"inclusive_time":3,"id":"393","highest_child_id":2326,"first_entry_time":50407,"exclusive_time":3,"entries":4},{"inclusive_time":7038,"id":"815","highest_child_id":3161,"first_entry_time":50468,"exclusive_time":73,"entries":3,"callees":[{"inclusive_time":6956,"id":"787","highest_child_id":3157,"first_entry_time":50475,"exclusive_time":66,"entries":6,"callees":[{"inclusive_time":863,"id":"816","highest_child_id":2343,"first_entry_time":50487,"exclusive_time":658,"entries":1,"callees":[{"inclusive_time":204,"id":"817","highest_child_id":2343,"first_entry_time":51146,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2331,"first_entry_time":51149,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2332,"first_entry_time":51153,"exclusive_time":1,"entries":1},{"inclusive_time":150,"id":"818","highest_child_id":2342,"first_entry_time":51182,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2334,"first_entry_time":51185,"exclusive_time":1,"entries":1},{"inclusive_time":103,"id":"819","highest_child_id":2342,"first_entry_time":51229,"exclusive_time":70,"entries":1,"callees":[{"inclusive_time":1,"id":"728","highest_child_id":2336,"first_entry_time":51231,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2337,"first_entry_time":51236,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"820","highest_child_id":2338,"first_entry_time":51269,"exclusive_time":1,"entries":1},{"inclusive_time":27,"id":"821","highest_child_id":2341,"first_entry_time":51293,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":2,"id":"822","highest_child_id":2340,"first_entry_time":51305,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"823","highest_child_id":2341,"first_entry_time":51317,"exclusive_time":2,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2342,"first_entry_time":51329,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2343,"first_entry_time":51342,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":13,"id":"828","highest_child_id":2345,"first_entry_time":51363,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":2,"id":"829","highest_child_id":2345,"first_entry_time":51371,"exclusive_time":1,"entries":3}]},{"inclusive_time":217,"id":"830","highest_child_id":2364,"first_entry_time":51428,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":183,"id":"831","highest_child_id":2360,"first_entry_time":51449,"exclusive_time":54,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":2348,"first_entry_time":51452,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"403","highest_child_id":2349,"first_entry_time":51455,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"414","highest_child_id":2350,"first_entry_time":51457,"exclusive_time":0,"entries":1},{"inclusive_time":44,"id":"832","highest_child_id":2352,"first_entry_time":51491,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":8,"id":"833","highest_child_id":2352,"first_entry_time":51521,"exclusive_time":8,"entries":1,"allocations":[{"id":"26","count":2}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":81,"id":"834","highest_child_id":2360,"first_entry_time":51551,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":59,"id":"835","highest_child_id":2360,"first_entry_time":51573,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":2355,"first_entry_time":51583,"exclusive_time":2,"entries":3},{"inclusive_time":30,"id":"837","highest_child_id":2360,"first_entry_time":51594,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":28,"id":"797","highest_child_id":2360,"first_entry_time":51597,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":25,"id":"798","highest_child_id":2360,"first_entry_time":51600,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2359,"first_entry_time":51616,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"800","highest_child_id":2360,"first_entry_time":51620,"exclusive_time":1,"entries":3}]}]}]}]}]}]},{"inclusive_time":1,"id":"723","highest_child_id":2361,"first_entry_time":51634,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"393","highest_child_id":2362,"first_entry_time":51637,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"815","highest_child_id":2364,"first_entry_time":51638,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"826","highest_child_id":2364,"first_entry_time":51643,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":5239,"id":"838","highest_child_id":3019,"first_entry_time":51668,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":5215,"id":"839","highest_child_id":3019,"first_entry_time":51689,"exclusive_time":183,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2367,"first_entry_time":51692,"exclusive_time":1,"entries":2},{"inclusive_time":5030,"id":"840","highest_child_id":3019,"first_entry_time":51870,"exclusive_time":104,"entries":2,"callees":[{"inclusive_time":2,"id":"393","highest_child_id":2369,"first_entry_time":51880,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"609","highest_child_id":2370,"first_entry_time":51883,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"586","highest_child_id":2371,"first_entry_time":51887,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"397","highest_child_id":2372,"first_entry_time":51890,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"398","count":2}]},{"inclusive_time":4851,"id":"787","highest_child_id":2999,"first_entry_time":51895,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4841,"id":"838","highest_child_id":2997,"first_entry_time":51897,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":4837,"id":"839","highest_child_id":2997,"first_entry_time":51900,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2376,"first_entry_time":51901,"exclusive_time":1,"entries":2},{"inclusive_time":4817,"id":"841","highest_child_id":2997,"first_entry_time":51916,"exclusive_time":121,"entries":2,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2378,"first_entry_time":51919,"exclusive_time":1,"entries":2},{"inclusive_time":4694,"id":"842","highest_child_id":2997,"first_entry_time":52037,"exclusive_time":41,"entries":2,"callees":[{"inclusive_time":4619,"id":"787","highest_child_id":2985,"first_entry_time":52049,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":4565,"id":"790","highest_child_id":2969,"first_entry_time":52053,"exclusive_time":61,"entries":1,"callees":[{"inclusive_time":1,"id":"658","highest_child_id":2382,"first_entry_time":52055,"exclusive_time":1,"entries":1},{"inclusive_time":4476,"id":"791","highest_child_id":2959,"first_entry_time":52070,"exclusive_time":103,"entries":1,"callees":[{"inclusive_time":1,"id":"661","highest_child_id":2384,"first_entry_time":52075,"exclusive_time":1,"entries":1},{"inclusive_time":60,"id":"792","highest_child_id":2395,"first_entry_time":52085,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":57,"id":"794","highest_child_id":2395,"first_entry_time":52088,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"795","highest_child_id":2387,"first_entry_time":52101,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"796","highest_child_id":2388,"first_entry_time":52104,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"285","highest_child_id":2389,"first_entry_time":52106,"exclusive_time":0,"entries":2,"allocations":[{"id":"282","count":2}]},{"inclusive_time":26,"id":"797","highest_child_id":2393,"first_entry_time":52109,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":23,"id":"798","highest_child_id":2393,"first_entry_time":52111,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":2,"id":"799","highest_child_id":2392,"first_entry_time":52117,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"800","highest_child_id":2393,"first_entry_time":52121,"exclusive_time":1,"entries":5}]}]},{"inclusive_time":4,"id":"801","highest_child_id":2395,"first_entry_time":52140,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"803","highest_child_id":2395,"first_entry_time":52143,"exclusive_time":1,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"10","count":6},{"id":"6","count":4},{"id":"26","count":2}]}],"allocations":[{"id":"793","count":1}]},{"inclusive_time":3,"id":"804","highest_child_id":2397,"first_entry_time":52146,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"805","highest_child_id":2397,"first_entry_time":52148,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":8,"id":"806","highest_child_id":2399,"first_entry_time":52154,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"808","highest_child_id":2399,"first_entry_time":52159,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":9},{"id":"10","count":3}]}],"allocations":[{"id":"807","count":1}]},{"inclusive_time":1,"id":"843","highest_child_id":2400,"first_entry_time":52176,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"844","highest_child_id":2401,"first_entry_time":52188,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"809","highest_child_id":2402,"first_entry_time":52191,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"810","highest_child_id":2403,"first_entry_time":52193,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"811","highest_child_id":2404,"first_entry_time":52195,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"657","highest_child_id":2405,"first_entry_time":52198,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"845","highest_child_id":2406,"first_entry_time":52213,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"846","highest_child_id":2407,"first_entry_time":52228,"exclusive_time":1,"entries":1},{"inclusive_time":4273,"id":"812","highest_child_id":2954,"first_entry_time":52232,"exclusive_time":119,"entries":1,"callees":[{"inclusive_time":4,"id":"813","highest_child_id":2409,"first_entry_time":52234,"exclusive_time":3,"entries":1,"allocations":[{"id":"814","count":1},{"id":"10","count":13},{"id":"26","count":1}]},{"inclusive_time":2,"id":"682","highest_child_id":2410,"first_entry_time":52240,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"393","highest_child_id":2411,"first_entry_time":52245,"exclusive_time":1,"entries":1},{"inclusive_time":4001,"id":"815","highest_child_id":2915,"first_entry_time":52247,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":3976,"id":"787","highest_child_id":2911,"first_entry_time":52252,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":3964,"id":"830","highest_child_id":2909,"first_entry_time":52255,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":47,"id":"831","highest_child_id":2425,"first_entry_time":52257,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":2,"id":"332","highest_child_id":2416,"first_entry_time":52258,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"403","highest_child_id":2417,"first_entry_time":52261,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"414","highest_child_id":2418,"first_entry_time":52263,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"832","highest_child_id":2420,"first_entry_time":52265,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":6,"id":"833","highest_child_id":2420,"first_entry_time":52268,"exclusive_time":5,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":18,"id":"834","highest_child_id":2425,"first_entry_time":52281,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":15,"id":"835","highest_child_id":2425,"first_entry_time":52284,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":2423,"first_entry_time":52286,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"837","highest_child_id":2425,"first_entry_time":52289,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"797","highest_child_id":2425,"first_entry_time":52291,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":2,"id":"723","highest_child_id":2426,"first_entry_time":52301,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"393","highest_child_id":2427,"first_entry_time":52303,"exclusive_time":1,"entries":3},{"inclusive_time":3902,"id":"815","highest_child_id":2909,"first_entry_time":52305,"exclusive_time":81,"entries":3,"callees":[{"inclusive_time":3808,"id":"787","highest_child_id":2905,"first_entry_time":52309,"exclusive_time":103,"entries":14,"callees":[{"inclusive_time":388,"id":"816","highest_child_id":2453,"first_entry_time":52312,"exclusive_time":17,"entries":9,"callees":[{"inclusive_time":370,"id":"817","highest_child_id":2453,"first_entry_time":52314,"exclusive_time":95,"entries":9,"callees":[{"inclusive_time":7,"id":"725","highest_child_id":2432,"first_entry_time":52316,"exclusive_time":5,"entries":9},{"inclusive_time":4,"id":"726","highest_child_id":2433,"first_entry_time":52319,"exclusive_time":3,"entries":9},{"inclusive_time":229,"id":"847","highest_child_id":2444,"first_entry_time":52358,"exclusive_time":139,"entries":8,"callees":[{"inclusive_time":5,"id":"583","highest_child_id":2435,"first_entry_time":52362,"exclusive_time":3,"entries":8},{"inclusive_time":5,"id":"820","highest_child_id":2436,"first_entry_time":52364,"exclusive_time":3,"entries":8},{"inclusive_time":9,"id":"728","highest_child_id":2437,"first_entry_time":52367,"exclusive_time":6,"entries":16},{"inclusive_time":12,"id":"848","highest_child_id":2438,"first_entry_time":52381,"exclusive_time":11,"entries":8},{"inclusive_time":43,"id":"849","highest_child_id":2440,"first_entry_time":52401,"exclusive_time":33,"entries":8,"callees":[{"inclusive_time":10,"id":"850","highest_child_id":2440,"first_entry_time":52413,"exclusive_time":8,"entries":8,"allocations":[{"id":"851","count":8}]}]},{"inclusive_time":4,"id":"374","highest_child_id":2441,"first_entry_time":52419,"exclusive_time":3,"entries":8},{"inclusive_time":3,"id":"852","highest_child_id":2442,"first_entry_time":52435,"exclusive_time":1,"entries":8},{"inclusive_time":8,"id":"845","highest_child_id":2443,"first_entry_time":52438,"exclusive_time":6,"entries":8,"allocations":[{"id":"27","count":2}]},{"inclusive_time":11,"id":"853","highest_child_id":2444,"first_entry_time":52453,"exclusive_time":10,"entries":8,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"27","count":16},{"id":"28","count":8}]},{"inclusive_time":6,"id":"826","highest_child_id":2445,"first_entry_time":52459,"exclusive_time":4,"entries":9,"allocations":[{"id":"827","count":9}]},{"inclusive_time":32,"id":"819","highest_child_id":2453,"first_entry_time":52625,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"728","highest_child_id":2447,"first_entry_time":52627,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2448,"first_entry_time":52640,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2449,"first_entry_time":52642,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"821","highest_child_id":2452,"first_entry_time":52646,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2451,"first_entry_time":52649,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2452,"first_entry_time":52652,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2453,"first_entry_time":52655,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":18}]}]},{"inclusive_time":294,"id":"828","highest_child_id":2462,"first_entry_time":52463,"exclusive_time":270,"entries":13,"callees":[{"inclusive_time":4,"id":"829","highest_child_id":2455,"first_entry_time":52465,"exclusive_time":1,"entries":13},{"inclusive_time":13,"id":"854","highest_child_id":2459,"first_entry_time":53300,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2457,"first_entry_time":53303,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":2458,"first_entry_time":53305,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"826","highest_child_id":2459,"first_entry_time":53308,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]}]},{"inclusive_time":7,"id":"856","highest_child_id":2462,"first_entry_time":53322,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"855","highest_child_id":2461,"first_entry_time":53324,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"829","highest_child_id":2462,"first_entry_time":53326,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2429,"id":"838","highest_child_id":2777,"first_entry_time":52669,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2424,"id":"839","highest_child_id":2777,"first_entry_time":52671,"exclusive_time":383,"entries":3,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2465,"first_entry_time":52673,"exclusive_time":1,"entries":3},{"inclusive_time":532,"id":"857","highest_child_id":2557,"first_entry_time":52698,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2467,"first_entry_time":52701,"exclusive_time":1,"entries":2},{"inclusive_time":523,"id":"787","highest_child_id":2557,"first_entry_time":52704,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":519,"id":"816","highest_child_id":2557,"first_entry_time":52706,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":512,"id":"817","highest_child_id":2557,"first_entry_time":52708,"exclusive_time":74,"entries":2,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2471,"first_entry_time":52710,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"726","highest_child_id":2472,"first_entry_time":52712,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"728","highest_child_id":2473,"first_entry_time":52716,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"858","highest_child_id":2474,"first_entry_time":52728,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"859","highest_child_id":2475,"first_entry_time":52739,"exclusive_time":1,"entries":2},{"inclusive_time":385,"id":"860","highest_child_id":2542,"first_entry_time":52755,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":380,"id":"787","highest_child_id":2542,"first_entry_time":52758,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":253,"id":"838","highest_child_id":2514,"first_entry_time":52765,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":250,"id":"839","highest_child_id":2514,"first_entry_time":52768,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2480,"first_entry_time":52769,"exclusive_time":1,"entries":1},{"inclusive_time":244,"id":"841","highest_child_id":2514,"first_entry_time":52774,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2482,"first_entry_time":52776,"exclusive_time":0,"entries":1},{"inclusive_time":239,"id":"842","highest_child_id":2514,"first_entry_time":52778,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":138,"id":"787","highest_child_id":2502,"first_entry_time":52789,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":121,"id":"861","highest_child_id":2500,"first_entry_time":52802,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":2486,"first_entry_time":52814,"exclusive_time":1,"entries":1},{"inclusive_time":91,"id":"863","highest_child_id":2500,"first_entry_time":52831,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":10,"id":"864","highest_child_id":2491,"first_entry_time":52841,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"821","highest_child_id":2491,"first_entry_time":52843,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2490,"first_entry_time":52847,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2491,"first_entry_time":52849,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":53,"id":"865","highest_child_id":2499,"first_entry_time":52862,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":32,"id":"866","highest_child_id":2499,"first_entry_time":52883,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2494,"first_entry_time":52895,"exclusive_time":1,"entries":1},{"inclusive_time":16,"id":"837","highest_child_id":2499,"first_entry_time":52898,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":14,"id":"797","highest_child_id":2499,"first_entry_time":52900,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":12,"id":"798","highest_child_id":2499,"first_entry_time":52902,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2498,"first_entry_time":52908,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2499,"first_entry_time":52911,"exclusive_time":1,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":6,"id":"826","highest_child_id":2500,"first_entry_time":52917,"exclusive_time":5,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"828","highest_child_id":2502,"first_entry_time":52924,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2502,"first_entry_time":52926,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2503,"first_entry_time":52928,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"855","highest_child_id":2504,"first_entry_time":52932,"exclusive_time":6,"entries":2},{"inclusive_time":20,"id":"868","highest_child_id":2508,"first_entry_time":52953,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":18,"id":"869","highest_child_id":2508,"first_entry_time":52955,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":2508,"first_entry_time":52967,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2508,"first_entry_time":52970,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":7,"id":"821","highest_child_id":2511,"first_entry_time":52975,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2510,"first_entry_time":52978,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2511,"first_entry_time":52980,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":7,"id":"871","highest_child_id":2513,"first_entry_time":53007,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2513,"first_entry_time":53012,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2514,"first_entry_time":53016,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"828","highest_child_id":2516,"first_entry_time":53019,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2516,"first_entry_time":53021,"exclusive_time":1,"entries":2}]},{"inclusive_time":112,"id":"816","highest_child_id":2542,"first_entry_time":53527,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":110,"id":"817","highest_child_id":2542,"first_entry_time":53529,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2519,"first_entry_time":53531,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2520,"first_entry_time":53533,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2521,"first_entry_time":53536,"exclusive_time":1,"entries":1},{"inclusive_time":45,"id":"863","highest_child_id":2533,"first_entry_time":53539,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"864","highest_child_id":2524,"first_entry_time":53541,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":2524,"first_entry_time":53543,"exclusive_time":2,"entries":1}]},{"inclusive_time":34,"id":"865","highest_child_id":2532,"first_entry_time":53546,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":31,"id":"866","highest_child_id":2532,"first_entry_time":53549,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2527,"first_entry_time":53553,"exclusive_time":1,"entries":1},{"inclusive_time":24,"id":"837","highest_child_id":2532,"first_entry_time":53556,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":22,"id":"797","highest_child_id":2532,"first_entry_time":53557,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":20,"id":"798","highest_child_id":2532,"first_entry_time":53559,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2531,"first_entry_time":53567,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2532,"first_entry_time":53570,"exclusive_time":1,"entries":3}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2533,"first_entry_time":53582,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":2,"id":"872","highest_child_id":2534,"first_entry_time":53597,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"821","highest_child_id":2535,"first_entry_time":53601,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2536,"first_entry_time":53605,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"873","highest_child_id":2538,"first_entry_time":53622,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2538,"first_entry_time":53624,"exclusive_time":1,"entries":1}]},{"inclusive_time":7,"id":"869","highest_child_id":2541,"first_entry_time":53629,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2541,"first_entry_time":53632,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2541,"first_entry_time":53634,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":2,"id":"826","highest_child_id":2542,"first_entry_time":53637,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]}]}]},{"inclusive_time":2,"id":"855","highest_child_id":2543,"first_entry_time":53024,"exclusive_time":1,"entries":4},{"inclusive_time":8,"id":"874","highest_child_id":2545,"first_entry_time":53038,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2545,"first_entry_time":53041,"exclusive_time":1,"entries":2}]},{"inclusive_time":10,"id":"869","highest_child_id":2548,"first_entry_time":53046,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":2548,"first_entry_time":53049,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2548,"first_entry_time":53051,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2,"id":"826","highest_child_id":2549,"first_entry_time":53055,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]},{"inclusive_time":22,"id":"819","highest_child_id":2557,"first_entry_time":53495,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"728","highest_child_id":2551,"first_entry_time":53497,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2552,"first_entry_time":53502,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2553,"first_entry_time":53504,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"821","highest_child_id":2556,"first_entry_time":53507,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2555,"first_entry_time":53510,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2556,"first_entry_time":53513,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2557,"first_entry_time":53516,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]}]}]}]},{"inclusive_time":1507,"id":"875","highest_child_id":2777,"first_entry_time":54028,"exclusive_time":122,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2559,"first_entry_time":54034,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"876","highest_child_id":2560,"first_entry_time":54052,"exclusive_time":3,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":15,"id":"877","highest_child_id":2562,"first_entry_time":54068,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":2,"id":"879","highest_child_id":2562,"first_entry_time":54078,"exclusive_time":2,"entries":2}],"allocations":[{"id":"878","count":2}]},{"inclusive_time":3,"id":"880","highest_child_id":2563,"first_entry_time":54102,"exclusive_time":2,"entries":4},{"inclusive_time":1276,"id":"787","highest_child_id":2742,"first_entry_time":54108,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1268,"id":"838","highest_child_id":2740,"first_entry_time":54111,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1264,"id":"839","highest_child_id":2740,"first_entry_time":54113,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2567,"first_entry_time":54115,"exclusive_time":1,"entries":2},{"inclusive_time":104,"id":"841","highest_child_id":2593,"first_entry_time":54119,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":2569,"first_entry_time":54120,"exclusive_time":0,"entries":1},{"inclusive_time":100,"id":"842","highest_child_id":2593,"first_entry_time":54122,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":32,"id":"787","highest_child_id":2581,"first_entry_time":54136,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":25,"id":"816","highest_child_id":2579,"first_entry_time":54139,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":23,"id":"817","highest_child_id":2579,"first_entry_time":54141,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2574,"first_entry_time":54143,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2575,"first_entry_time":54145,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2576,"first_entry_time":54151,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":2577,"first_entry_time":54155,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"859","highest_child_id":2578,"first_entry_time":54158,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2579,"first_entry_time":54162,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2581,"first_entry_time":54165,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2581,"first_entry_time":54167,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2582,"first_entry_time":54169,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2583,"first_entry_time":54172,"exclusive_time":1,"entries":2},{"inclusive_time":8,"id":"868","highest_child_id":2587,"first_entry_time":54177,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"869","highest_child_id":2587,"first_entry_time":54179,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2587,"first_entry_time":54182,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2587,"first_entry_time":54183,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":7,"id":"821","highest_child_id":2590,"first_entry_time":54187,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2589,"first_entry_time":54190,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2590,"first_entry_time":54193,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":6,"id":"881","highest_child_id":2592,"first_entry_time":54212,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2592,"first_entry_time":54217,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2593,"first_entry_time":54220,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":1146,"id":"875","highest_child_id":2740,"first_entry_time":54267,"exclusive_time":168,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2595,"first_entry_time":54270,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"876","highest_child_id":2596,"first_entry_time":54275,"exclusive_time":2,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":5,"id":"877","highest_child_id":2598,"first_entry_time":54279,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"879","highest_child_id":2598,"first_entry_time":54282,"exclusive_time":1,"entries":2}],"allocations":[{"id":"878","count":2}]},{"inclusive_time":3,"id":"880","highest_child_id":2599,"first_entry_time":54287,"exclusive_time":2,"entries":4},{"inclusive_time":768,"id":"787","highest_child_id":2706,"first_entry_time":54291,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":742,"id":"838","highest_child_id":2697,"first_entry_time":54293,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":739,"id":"839","highest_child_id":2697,"first_entry_time":54295,"exclusive_time":152,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2603,"first_entry_time":54296,"exclusive_time":1,"entries":2},{"inclusive_time":233,"id":"841","highest_child_id":2647,"first_entry_time":54299,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":2605,"first_entry_time":54301,"exclusive_time":0,"entries":1},{"inclusive_time":229,"id":"842","highest_child_id":2647,"first_entry_time":54303,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":93,"id":"787","highest_child_id":2631,"first_entry_time":54311,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":21,"id":"816","highest_child_id":2615,"first_entry_time":54314,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":18,"id":"817","highest_child_id":2615,"first_entry_time":54316,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2610,"first_entry_time":54318,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2611,"first_entry_time":54320,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2612,"first_entry_time":54323,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":2613,"first_entry_time":54327,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"859","highest_child_id":2614,"first_entry_time":54329,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2615,"first_entry_time":54333,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":4,"id":"828","highest_child_id":2617,"first_entry_time":54336,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2617,"first_entry_time":54338,"exclusive_time":1,"entries":2}]},{"inclusive_time":59,"id":"861","highest_child_id":2631,"first_entry_time":54401,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"862","highest_child_id":2619,"first_entry_time":54405,"exclusive_time":2,"entries":1},{"inclusive_time":51,"id":"863","highest_child_id":2631,"first_entry_time":54410,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":8,"id":"864","highest_child_id":2622,"first_entry_time":54414,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"821","highest_child_id":2622,"first_entry_time":54417,"exclusive_time":4,"entries":1}]},{"inclusive_time":33,"id":"865","highest_child_id":2630,"first_entry_time":54424,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":28,"id":"866","highest_child_id":2630,"first_entry_time":54430,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2625,"first_entry_time":54436,"exclusive_time":1,"entries":1},{"inclusive_time":18,"id":"837","highest_child_id":2630,"first_entry_time":54439,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":16,"id":"797","highest_child_id":2630,"first_entry_time":54441,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"798","highest_child_id":2630,"first_entry_time":54443,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2629,"first_entry_time":54451,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2630,"first_entry_time":54454,"exclusive_time":1,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2631,"first_entry_time":54459,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2632,"first_entry_time":54340,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":2633,"first_entry_time":54343,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"882","highest_child_id":2634,"first_entry_time":54353,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"821","highest_child_id":2637,"first_entry_time":54360,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2636,"first_entry_time":54498,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2637,"first_entry_time":54500,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":28,"id":"865","highest_child_id":2640,"first_entry_time":54365,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":10,"id":"883","highest_child_id":2640,"first_entry_time":54382,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"867","highest_child_id":2640,"first_entry_time":54388,"exclusive_time":2,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":22,"id":"868","highest_child_id":2644,"first_entry_time":54470,"exclusive_time":9,"entries":3,"callees":[{"inclusive_time":13,"id":"869","highest_child_id":2644,"first_entry_time":54472,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":6,"id":"870","highest_child_id":2644,"first_entry_time":54475,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2644,"first_entry_time":54477,"exclusive_time":0,"entries":3}]}]}]},{"inclusive_time":7,"id":"884","highest_child_id":2646,"first_entry_time":54522,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2646,"first_entry_time":54526,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2647,"first_entry_time":54530,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":351,"id":"885","highest_child_id":2697,"first_entry_time":54710,"exclusive_time":173,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2649,"first_entry_time":54714,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":2650,"first_entry_time":54717,"exclusive_time":1,"entries":1},{"inclusive_time":37,"id":"787","highest_child_id":2661,"first_entry_time":54720,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":29,"id":"816","highest_child_id":2659,"first_entry_time":54722,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":27,"id":"817","highest_child_id":2659,"first_entry_time":54725,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2654,"first_entry_time":54727,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2655,"first_entry_time":54734,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2656,"first_entry_time":54739,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":2657,"first_entry_time":54743,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"859","highest_child_id":2658,"first_entry_time":54746,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2659,"first_entry_time":54750,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2661,"first_entry_time":54753,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2661,"first_entry_time":54755,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":3,"id":"609","highest_child_id":2662,"first_entry_time":54758,"exclusive_time":2,"entries":5},{"inclusive_time":3,"id":"886","highest_child_id":2663,"first_entry_time":54777,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":1,"id":"829","highest_child_id":2664,"first_entry_time":54781,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"855","highest_child_id":2665,"first_entry_time":54784,"exclusive_time":1,"entries":5},{"inclusive_time":1,"id":"843","highest_child_id":2666,"first_entry_time":54787,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"867","highest_child_id":2667,"first_entry_time":54790,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"887","highest_child_id":2671,"first_entry_time":54803,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":9,"id":"821","highest_child_id":2671,"first_entry_time":54805,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2670,"first_entry_time":54815,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2671,"first_entry_time":54817,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":5,"id":"883","highest_child_id":2673,"first_entry_time":54821,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2673,"first_entry_time":54824,"exclusive_time":1,"entries":1}]},{"inclusive_time":10,"id":"888","highest_child_id":2677,"first_entry_time":54847,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2675,"first_entry_time":54850,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"837","highest_child_id":2677,"first_entry_time":54853,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"797","highest_child_id":2677,"first_entry_time":54855,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":17,"id":"869","highest_child_id":2680,"first_entry_time":54858,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":6,"id":"870","highest_child_id":2680,"first_entry_time":54861,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2680,"first_entry_time":54862,"exclusive_time":1,"entries":3}]}]},{"inclusive_time":1,"id":"889","highest_child_id":2681,"first_entry_time":54880,"exclusive_time":1,"entries":1},{"inclusive_time":44,"id":"890","highest_child_id":2688,"first_entry_time":54937,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":0,"id":"285","highest_child_id":2683,"first_entry_time":54940,"exclusive_time":0,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2684,"first_entry_time":54945,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2685,"first_entry_time":54947,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2686,"first_entry_time":54950,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"891","highest_child_id":2687,"first_entry_time":54962,"exclusive_time":3,"entries":1},{"inclusive_time":3,"id":"892","highest_child_id":2688,"first_entry_time":54972,"exclusive_time":3,"entries":1,"allocations":[{"id":"56","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":3},{"id":"27","count":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2689,"first_entry_time":54985,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2690,"first_entry_time":54987,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2691,"first_entry_time":55003,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2692,"first_entry_time":55005,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"821","highest_child_id":2693,"first_entry_time":55008,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"893","highest_child_id":2695,"first_entry_time":55020,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":4,"id":"894","highest_child_id":2695,"first_entry_time":55040,"exclusive_time":4,"entries":1}]},{"inclusive_time":1,"id":"895","highest_child_id":2696,"first_entry_time":55054,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"826","highest_child_id":2697,"first_entry_time":55059,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":5},{"id":"25","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":16,"id":"828","highest_child_id":2706,"first_entry_time":55067,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2699,"first_entry_time":55068,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"854","highest_child_id":2703,"first_entry_time":55071,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2701,"first_entry_time":55072,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2702,"first_entry_time":55074,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2703,"first_entry_time":55076,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":4,"id":"856","highest_child_id":2706,"first_entry_time":55078,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"855","highest_child_id":2705,"first_entry_time":55080,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":2706,"first_entry_time":55082,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":18,"id":"896","highest_child_id":2709,"first_entry_time":54535,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":13,"id":"801","highest_child_id":2709,"first_entry_time":54539,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"803","highest_child_id":2709,"first_entry_time":54549,"exclusive_time":2,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"282","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"829","highest_child_id":2710,"first_entry_time":55084,"exclusive_time":1,"entries":5},{"inclusive_time":52,"id":"897","highest_child_id":2717,"first_entry_time":55108,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2712,"first_entry_time":55117,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2713,"first_entry_time":55125,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2714,"first_entry_time":55134,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2715,"first_entry_time":55141,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2716,"first_entry_time":55150,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":2717,"first_entry_time":55159,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"855","highest_child_id":2718,"first_entry_time":55169,"exclusive_time":1,"entries":2},{"inclusive_time":54,"id":"904","highest_child_id":2724,"first_entry_time":55186,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2720,"first_entry_time":55189,"exclusive_time":1,"entries":1},{"inclusive_time":27,"id":"905","highest_child_id":2724,"first_entry_time":55213,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"906","highest_child_id":2722,"first_entry_time":55224,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"907","highest_child_id":2723,"first_entry_time":55234,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"836","highest_child_id":2724,"first_entry_time":55239,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"56","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"867","highest_child_id":2725,"first_entry_time":55243,"exclusive_time":1,"entries":1},{"inclusive_time":48,"id":"908","highest_child_id":2734,"first_entry_time":55318,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2727,"first_entry_time":55320,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"909","highest_child_id":2728,"first_entry_time":55331,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2729,"first_entry_time":55339,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2730,"first_entry_time":55342,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2731,"first_entry_time":55345,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2732,"first_entry_time":55347,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"910","highest_child_id":2733,"first_entry_time":55355,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"911","highest_child_id":2734,"first_entry_time":55364,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"170","count":2}]},{"inclusive_time":9,"id":"869","highest_child_id":2737,"first_entry_time":55370,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2737,"first_entry_time":55375,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2737,"first_entry_time":55377,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":9,"id":"912","highest_child_id":2739,"first_entry_time":55401,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"799","highest_child_id":2739,"first_entry_time":55408,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2740,"first_entry_time":55411,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2742,"first_entry_time":55415,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2742,"first_entry_time":55416,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":9,"id":"896","highest_child_id":2745,"first_entry_time":54243,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"801","highest_child_id":2745,"first_entry_time":54247,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"803","highest_child_id":2745,"first_entry_time":54249,"exclusive_time":1,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"282","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"829","highest_child_id":2746,"first_entry_time":55419,"exclusive_time":1,"entries":5},{"inclusive_time":12,"id":"897","highest_child_id":2753,"first_entry_time":55422,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2748,"first_entry_time":55424,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2749,"first_entry_time":55426,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2750,"first_entry_time":55428,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2751,"first_entry_time":55429,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2752,"first_entry_time":55431,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":2753,"first_entry_time":55433,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"855","highest_child_id":2754,"first_entry_time":55442,"exclusive_time":1,"entries":2},{"inclusive_time":17,"id":"913","highest_child_id":2760,"first_entry_time":55465,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2756,"first_entry_time":55469,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"905","highest_child_id":2760,"first_entry_time":55472,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"906","highest_child_id":2758,"first_entry_time":55474,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"907","highest_child_id":2759,"first_entry_time":55478,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"836","highest_child_id":2760,"first_entry_time":55481,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"56","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"867","highest_child_id":2761,"first_entry_time":55484,"exclusive_time":1,"entries":1},{"inclusive_time":27,"id":"908","highest_child_id":2771,"first_entry_time":55487,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2763,"first_entry_time":55488,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"909","highest_child_id":2764,"first_entry_time":55491,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"899","highest_child_id":2765,"first_entry_time":55494,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"799","highest_child_id":2766,"first_entry_time":55498,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2767,"first_entry_time":55501,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2768,"first_entry_time":55504,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2769,"first_entry_time":55508,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"910","highest_child_id":2770,"first_entry_time":55510,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"911","highest_child_id":2771,"first_entry_time":55512,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"28","count":2},{"id":"170","count":2}]},{"inclusive_time":6,"id":"869","highest_child_id":2774,"first_entry_time":55518,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2774,"first_entry_time":55520,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2774,"first_entry_time":55522,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":6,"id":"912","highest_child_id":2776,"first_entry_time":55526,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2776,"first_entry_time":55531,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2777,"first_entry_time":55533,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":5,"id":"914","highest_child_id":2779,"first_entry_time":55599,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"826","highest_child_id":2779,"first_entry_time":55602,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":588,"id":"915","highest_child_id":2905,"first_entry_time":55648,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":49,"id":"831","highest_child_id":2791,"first_entry_time":55650,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":2782,"first_entry_time":55652,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"403","highest_child_id":2783,"first_entry_time":55655,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"414","highest_child_id":2784,"first_entry_time":55657,"exclusive_time":1,"entries":1},{"inclusive_time":19,"id":"832","highest_child_id":2786,"first_entry_time":55660,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":5,"id":"833","highest_child_id":2786,"first_entry_time":55662,"exclusive_time":5,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":15,"id":"834","highest_child_id":2791,"first_entry_time":55684,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":11,"id":"835","highest_child_id":2791,"first_entry_time":55688,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":2789,"first_entry_time":55690,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"837","highest_child_id":2791,"first_entry_time":55693,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"797","highest_child_id":2791,"first_entry_time":55695,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":510,"id":"916","highest_child_id":2904,"first_entry_time":55721,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"741","highest_child_id":2793,"first_entry_time":55724,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"393","highest_child_id":2794,"first_entry_time":55726,"exclusive_time":0,"entries":1},{"inclusive_time":503,"id":"815","highest_child_id":2904,"first_entry_time":55728,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":489,"id":"787","highest_child_id":2901,"first_entry_time":55734,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":472,"id":"917","highest_child_id":2901,"first_entry_time":55751,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":468,"id":"787","highest_child_id":2901,"first_entry_time":55754,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":466,"id":"838","highest_child_id":2901,"first_entry_time":55757,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":463,"id":"839","highest_child_id":2901,"first_entry_time":55759,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2801,"first_entry_time":55761,"exclusive_time":1,"entries":1},{"inclusive_time":456,"id":"840","highest_child_id":2901,"first_entry_time":55765,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2803,"first_entry_time":55769,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2804,"first_entry_time":55771,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"394","highest_child_id":2805,"first_entry_time":55773,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"395","highest_child_id":2806,"first_entry_time":55776,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":3,"id":"918","highest_child_id":2807,"first_entry_time":55788,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"919","count":1}]},{"inclusive_time":2,"id":"397","highest_child_id":2808,"first_entry_time":55793,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":311,"id":"787","highest_child_id":2875,"first_entry_time":55797,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":247,"id":"838","highest_child_id":2861,"first_entry_time":55799,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":245,"id":"839","highest_child_id":2861,"first_entry_time":55801,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2812,"first_entry_time":55803,"exclusive_time":0,"entries":1},{"inclusive_time":239,"id":"841","highest_child_id":2861,"first_entry_time":55806,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":2814,"first_entry_time":55808,"exclusive_time":0,"entries":1},{"inclusive_time":235,"id":"842","highest_child_id":2861,"first_entry_time":55810,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":188,"id":"787","highest_child_id":2851,"first_entry_time":55827,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":145,"id":"920","highest_child_id":2849,"first_entry_time":55867,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":3,"id":"921","highest_child_id":2818,"first_entry_time":55877,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2,"id":"922","highest_child_id":2819,"first_entry_time":55889,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"393","highest_child_id":2820,"first_entry_time":55893,"exclusive_time":0,"entries":1},{"inclusive_time":115,"id":"842","highest_child_id":2849,"first_entry_time":55895,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":47,"id":"787","highest_child_id":2837,"first_entry_time":55904,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":40,"id":"861","highest_child_id":2835,"first_entry_time":55907,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":2824,"first_entry_time":55909,"exclusive_time":1,"entries":1},{"inclusive_time":36,"id":"863","highest_child_id":2835,"first_entry_time":55911,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"864","highest_child_id":2827,"first_entry_time":55914,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":2827,"first_entry_time":55915,"exclusive_time":2,"entries":1}]},{"inclusive_time":24,"id":"865","highest_child_id":2834,"first_entry_time":55919,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":21,"id":"866","highest_child_id":2834,"first_entry_time":55922,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2830,"first_entry_time":55927,"exclusive_time":1,"entries":1},{"inclusive_time":14,"id":"837","highest_child_id":2834,"first_entry_time":55930,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":12,"id":"797","highest_child_id":2834,"first_entry_time":55931,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"798","highest_child_id":2834,"first_entry_time":55933,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2834,"first_entry_time":55940,"exclusive_time":1,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2835,"first_entry_time":55945,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"828","highest_child_id":2837,"first_entry_time":55948,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2837,"first_entry_time":55950,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2838,"first_entry_time":55952,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2839,"first_entry_time":55955,"exclusive_time":1,"entries":2},{"inclusive_time":15,"id":"868","highest_child_id":2843,"first_entry_time":55960,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"869","highest_child_id":2843,"first_entry_time":55962,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2843,"first_entry_time":55970,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2843,"first_entry_time":55972,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"821","highest_child_id":2844,"first_entry_time":55977,"exclusive_time":2,"entries":1},{"inclusive_time":6,"id":"923","highest_child_id":2846,"first_entry_time":55997,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2846,"first_entry_time":56001,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2847,"first_entry_time":56005,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]},{"inclusive_time":2,"id":"828","highest_child_id":2849,"first_entry_time":56008,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2849,"first_entry_time":56009,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"828","highest_child_id":2851,"first_entry_time":56013,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2851,"first_entry_time":56014,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2852,"first_entry_time":56016,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2853,"first_entry_time":56019,"exclusive_time":0,"entries":2},{"inclusive_time":9,"id":"868","highest_child_id":2857,"first_entry_time":56024,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"869","highest_child_id":2857,"first_entry_time":56026,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2857,"first_entry_time":56029,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2857,"first_entry_time":56030,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"821","highest_child_id":2858,"first_entry_time":56034,"exclusive_time":2,"entries":1},{"inclusive_time":4,"id":"883","highest_child_id":2860,"first_entry_time":56038,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2860,"first_entry_time":56041,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2861,"first_entry_time":56044,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":59,"id":"917","highest_child_id":2875,"first_entry_time":56076,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":57,"id":"787","highest_child_id":2875,"first_entry_time":56079,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":50,"id":"914","highest_child_id":2875,"first_entry_time":56085,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"653","highest_child_id":2866,"first_entry_time":56087,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":2866,"first_entry_time":56088,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"845","highest_child_id":2867,"first_entry_time":56092,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"887","highest_child_id":2871,"first_entry_time":56095,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":2871,"first_entry_time":56096,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2870,"first_entry_time":56099,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2871,"first_entry_time":56102,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":26,"id":"865","highest_child_id":2874,"first_entry_time":56106,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":7,"id":"924","highest_child_id":2874,"first_entry_time":56124,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2874,"first_entry_time":56129,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2875,"first_entry_time":56133,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]},{"inclusive_time":5,"id":"886","highest_child_id":2877,"first_entry_time":56048,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"740","highest_child_id":2877,"first_entry_time":56051,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":3,"id":"855","highest_child_id":2878,"first_entry_time":56054,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"843","highest_child_id":2879,"first_entry_time":56057,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"867","highest_child_id":2880,"first_entry_time":56071,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":2881,"first_entry_time":56137,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"889","highest_child_id":2882,"first_entry_time":56140,"exclusive_time":0,"entries":1},{"inclusive_time":21,"id":"890","highest_child_id":2889,"first_entry_time":56142,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"285","highest_child_id":2884,"first_entry_time":56144,"exclusive_time":0,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2885,"first_entry_time":56148,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2886,"first_entry_time":56150,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2887,"first_entry_time":56152,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"891","highest_child_id":2888,"first_entry_time":56156,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"892","highest_child_id":2889,"first_entry_time":56158,"exclusive_time":2,"entries":1,"allocations":[{"id":"56","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2890,"first_entry_time":56166,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2891,"first_entry_time":56169,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"869","highest_child_id":2894,"first_entry_time":56175,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"870","highest_child_id":2894,"first_entry_time":56178,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2894,"first_entry_time":56180,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"583","highest_child_id":2895,"first_entry_time":56196,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2896,"first_entry_time":56198,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"821","highest_child_id":2897,"first_entry_time":56200,"exclusive_time":2,"entries":1},{"inclusive_time":6,"id":"893","highest_child_id":2899,"first_entry_time":56204,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"894","highest_child_id":2899,"first_entry_time":56206,"exclusive_time":3,"entries":1}]},{"inclusive_time":1,"id":"895","highest_child_id":2900,"first_entry_time":56211,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2901,"first_entry_time":56220,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":6},{"id":"10","count":1},{"id":"25","count":2},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2902,"first_entry_time":56224,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"855","highest_child_id":2903,"first_entry_time":56228,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2904,"first_entry_time":56230,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"579","highest_child_id":2905,"first_entry_time":56233,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"25","count":1}]}]},{"inclusive_time":5,"id":"855","highest_child_id":2906,"first_entry_time":52469,"exclusive_time":2,"entries":14},{"inclusive_time":4,"id":"829","highest_child_id":2907,"first_entry_time":52470,"exclusive_time":1,"entries":16},{"inclusive_time":10,"id":"869","highest_child_id":2908,"first_entry_time":52472,"exclusive_time":7,"entries":13},{"inclusive_time":3,"id":"826","highest_child_id":2909,"first_entry_time":53451,"exclusive_time":2,"entries":3,"allocations":[{"id":"827","count":3}]}],"allocations":[{"id":"25","count":3}]}]},{"inclusive_time":4,"id":"828","highest_child_id":2911,"first_entry_time":53454,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2911,"first_entry_time":53455,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":1,"id":"855","highest_child_id":2912,"first_entry_time":53458,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"829","highest_child_id":2913,"first_entry_time":53460,"exclusive_time":0,"entries":5},{"inclusive_time":2,"id":"869","highest_child_id":2914,"first_entry_time":53461,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"826","highest_child_id":2915,"first_entry_time":56246,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2916,"first_entry_time":56249,"exclusive_time":1,"entries":3},{"inclusive_time":8,"id":"925","highest_child_id":2918,"first_entry_time":56279,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"682","highest_child_id":2918,"first_entry_time":56283,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":1,"id":"855","highest_child_id":2919,"first_entry_time":56291,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"926","highest_child_id":2921,"first_entry_time":56306,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2921,"first_entry_time":56310,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"896","highest_child_id":2924,"first_entry_time":56313,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"801","highest_child_id":2924,"first_entry_time":56317,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"803","highest_child_id":2924,"first_entry_time":56319,"exclusive_time":1,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"282","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"821","highest_child_id":2925,"first_entry_time":56323,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"927","highest_child_id":2926,"first_entry_time":56334,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"869","highest_child_id":2929,"first_entry_time":56338,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2929,"first_entry_time":56341,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2929,"first_entry_time":56342,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"928","highest_child_id":2930,"first_entry_time":56353,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"579","highest_child_id":2931,"first_entry_time":56356,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]},{"inclusive_time":1,"id":"929","highest_child_id":2932,"first_entry_time":56370,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"930","highest_child_id":2933,"first_entry_time":56382,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"931","highest_child_id":2934,"first_entry_time":56392,"exclusive_time":1,"entries":2},{"inclusive_time":52,"id":"932","highest_child_id":2940,"first_entry_time":56404,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":38,"id":"933","highest_child_id":2940,"first_entry_time":56416,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":6,"id":"934","highest_child_id":2938,"first_entry_time":56431,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2938,"first_entry_time":56435,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"935","highest_child_id":2940,"first_entry_time":56454,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2940,"first_entry_time":56456,"exclusive_time":1,"entries":1}]}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":18,"id":"897","highest_child_id":2947,"first_entry_time":56460,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2942,"first_entry_time":56462,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2943,"first_entry_time":56468,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2944,"first_entry_time":56470,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2945,"first_entry_time":56472,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2946,"first_entry_time":56474,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":2947,"first_entry_time":56476,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":26,"id":"908","highest_child_id":2954,"first_entry_time":56479,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2949,"first_entry_time":56480,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"909","highest_child_id":2950,"first_entry_time":56484,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"799","highest_child_id":2951,"first_entry_time":56486,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"899","highest_child_id":2952,"first_entry_time":56491,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2953,"first_entry_time":56496,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"911","highest_child_id":2954,"first_entry_time":56503,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":3},{"id":"28","count":6},{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"10","count":2},{"id":"25","count":5}]},{"inclusive_time":1,"id":"936","highest_child_id":2955,"first_entry_time":56515,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"579","highest_child_id":2957,"first_entry_time":56519,"exclusive_time":5,"entries":1,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":2957,"first_entry_time":56522,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"170","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"858","highest_child_id":2958,"first_entry_time":56527,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"937","highest_child_id":2959,"first_entry_time":56543,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"27","count":1},{"id":"10","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"682","highest_child_id":2960,"first_entry_time":56548,"exclusive_time":2,"entries":6},{"inclusive_time":4,"id":"938","highest_child_id":2962,"first_entry_time":56571,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"658","highest_child_id":2962,"first_entry_time":56574,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":18,"id":"939","highest_child_id":2968,"first_entry_time":56598,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"658","highest_child_id":2964,"first_entry_time":56599,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"821","highest_child_id":2967,"first_entry_time":56604,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2966,"first_entry_time":56607,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2967,"first_entry_time":56610,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2968,"first_entry_time":56614,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2969,"first_entry_time":56616,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":7}]},{"inclusive_time":4,"id":"828","highest_child_id":2971,"first_entry_time":56619,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2971,"first_entry_time":56621,"exclusive_time":1,"entries":2}]},{"inclusive_time":42,"id":"940","highest_child_id":2985,"first_entry_time":58016,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"941","highest_child_id":2973,"first_entry_time":58018,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"658","highest_child_id":2974,"first_entry_time":58024,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"843","highest_child_id":2975,"first_entry_time":58028,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"887","highest_child_id":2979,"first_entry_time":58031,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":2979,"first_entry_time":58033,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2978,"first_entry_time":58036,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2979,"first_entry_time":58038,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":13,"id":"865","highest_child_id":2984,"first_entry_time":58042,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"942","highest_child_id":2984,"first_entry_time":58044,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2982,"first_entry_time":58047,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"943","highest_child_id":2983,"first_entry_time":58050,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"944","highest_child_id":2984,"first_entry_time":58052,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2985,"first_entry_time":58056,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2986,"first_entry_time":56623,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":2987,"first_entry_time":56626,"exclusive_time":1,"entries":4},{"inclusive_time":14,"id":"868","highest_child_id":2991,"first_entry_time":56631,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":11,"id":"869","highest_child_id":2991,"first_entry_time":56633,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"870","highest_child_id":2991,"first_entry_time":56635,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2991,"first_entry_time":56637,"exclusive_time":1,"entries":2}]}]}]},{"inclusive_time":8,"id":"821","highest_child_id":2994,"first_entry_time":56641,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2993,"first_entry_time":56643,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2994,"first_entry_time":56645,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":7,"id":"883","highest_child_id":2996,"first_entry_time":56649,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2996,"first_entry_time":56651,"exclusive_time":1,"entries":2}]},{"inclusive_time":2,"id":"826","highest_child_id":2997,"first_entry_time":56655,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"10","count":8},{"id":"25","count":4}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2999,"first_entry_time":56658,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2999,"first_entry_time":56659,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":3,"id":"394","highest_child_id":3000,"first_entry_time":56662,"exclusive_time":2,"entries":4},{"inclusive_time":3,"id":"886","highest_child_id":3001,"first_entry_time":56665,"exclusive_time":3,"entries":2,"allocations":[{"id":"10","count":4},{"id":"25","count":4}]},{"inclusive_time":3,"id":"855","highest_child_id":3002,"first_entry_time":56667,"exclusive_time":2,"entries":8},{"inclusive_time":2,"id":"843","highest_child_id":3003,"first_entry_time":56674,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"867","highest_child_id":3004,"first_entry_time":56678,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"889","highest_child_id":3005,"first_entry_time":56681,"exclusive_time":1,"entries":2},{"inclusive_time":21,"id":"890","highest_child_id":3009,"first_entry_time":56683,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":3007,"first_entry_time":56685,"exclusive_time":0,"entries":2,"allocations":[{"id":"282","count":2}]},{"inclusive_time":2,"id":"891","highest_child_id":3008,"first_entry_time":56688,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"892","highest_child_id":3009,"first_entry_time":56691,"exclusive_time":2,"entries":2,"allocations":[{"id":"56","count":2}]}],"allocations":[{"id":"26","count":4},{"id":"25","count":4},{"id":"27","count":2}]},{"inclusive_time":11,"id":"869","highest_child_id":3012,"first_entry_time":56699,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":3012,"first_entry_time":56702,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3012,"first_entry_time":56703,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":1,"id":"583","highest_child_id":3013,"first_entry_time":56710,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"820","highest_child_id":3014,"first_entry_time":56712,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"821","highest_child_id":3015,"first_entry_time":56714,"exclusive_time":3,"entries":2},{"inclusive_time":11,"id":"893","highest_child_id":3017,"first_entry_time":56717,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":7,"id":"894","highest_child_id":3017,"first_entry_time":56720,"exclusive_time":6,"entries":2}]},{"inclusive_time":1,"id":"895","highest_child_id":3018,"first_entry_time":56725,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"826","highest_child_id":3019,"first_entry_time":56742,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"27","count":10},{"id":"10","count":4},{"id":"25","count":4},{"id":"56","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":558,"id":"915","highest_child_id":3157,"first_entry_time":57206,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":5,"id":"831","highest_child_id":3022,"first_entry_time":57209,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":3022,"first_entry_time":57211,"exclusive_time":1,"entries":2}]},{"inclusive_time":533,"id":"916","highest_child_id":3156,"first_entry_time":57214,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"741","highest_child_id":3024,"first_entry_time":57216,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"393","highest_child_id":3025,"first_entry_time":57218,"exclusive_time":0,"entries":2},{"inclusive_time":520,"id":"815","highest_child_id":3156,"first_entry_time":57220,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":499,"id":"787","highest_child_id":3152,"first_entry_time":57224,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":315,"id":"830","highest_child_id":3105,"first_entry_time":57226,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"831","highest_child_id":3030,"first_entry_time":57228,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"332","highest_child_id":3030,"first_entry_time":57229,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"723","highest_child_id":3031,"first_entry_time":57231,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"393","highest_child_id":3032,"first_entry_time":57233,"exclusive_time":0,"entries":1},{"inclusive_time":307,"id":"815","highest_child_id":3105,"first_entry_time":57234,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":290,"id":"787","highest_child_id":3101,"first_entry_time":57241,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":266,"id":"838","highest_child_id":3092,"first_entry_time":57244,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":264,"id":"839","highest_child_id":3092,"first_entry_time":57246,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":3037,"first_entry_time":57248,"exclusive_time":0,"entries":1},{"inclusive_time":258,"id":"857","highest_child_id":3092,"first_entry_time":57252,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":3039,"first_entry_time":57253,"exclusive_time":0,"entries":1},{"inclusive_time":254,"id":"787","highest_child_id":3092,"first_entry_time":57256,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":252,"id":"816","highest_child_id":3092,"first_entry_time":57258,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":249,"id":"817","highest_child_id":3092,"first_entry_time":57260,"exclusive_time":50,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":3043,"first_entry_time":57262,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":3044,"first_entry_time":57264,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":3045,"first_entry_time":57267,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"393","highest_child_id":3046,"first_entry_time":57270,"exclusive_time":0,"entries":1},{"inclusive_time":153,"id":"860","highest_child_id":3076,"first_entry_time":57272,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":148,"id":"787","highest_child_id":3076,"first_entry_time":57274,"exclusive_time":33,"entries":3,"callees":[{"inclusive_time":57,"id":"914","highest_child_id":3060,"first_entry_time":57276,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":8,"id":"653","highest_child_id":3051,"first_entry_time":57278,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":3051,"first_entry_time":57280,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"845","highest_child_id":3052,"first_entry_time":57283,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":1}]},{"inclusive_time":13,"id":"887","highest_child_id":3056,"first_entry_time":57286,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":11,"id":"821","highest_child_id":3056,"first_entry_time":57288,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":2,"id":"822","highest_child_id":3055,"first_entry_time":57291,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"823","highest_child_id":3056,"first_entry_time":57293,"exclusive_time":2,"entries":2,"allocations":[{"id":"824","count":2}]}]}]},{"inclusive_time":16,"id":"865","highest_child_id":3059,"first_entry_time":57297,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":11,"id":"924","highest_child_id":3059,"first_entry_time":57300,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3059,"first_entry_time":57305,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":2,"id":"826","highest_child_id":3060,"first_entry_time":57308,"exclusive_time":1,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"28","count":1}]},{"inclusive_time":5,"id":"828","highest_child_id":3062,"first_entry_time":57311,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3062,"first_entry_time":57312,"exclusive_time":1,"entries":3}]},{"inclusive_time":52,"id":"940","highest_child_id":3076,"first_entry_time":57383,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"941","highest_child_id":3064,"first_entry_time":57394,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"658","highest_child_id":3065,"first_entry_time":57397,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"843","highest_child_id":3066,"first_entry_time":57401,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"887","highest_child_id":3070,"first_entry_time":57404,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":3070,"first_entry_time":57405,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":3069,"first_entry_time":57408,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":3070,"first_entry_time":57411,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":18,"id":"865","highest_child_id":3075,"first_entry_time":57414,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":15,"id":"942","highest_child_id":3075,"first_entry_time":57417,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3073,"first_entry_time":57420,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"943","highest_child_id":3074,"first_entry_time":57423,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"944","highest_child_id":3075,"first_entry_time":57425,"exclusive_time":6,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":3076,"first_entry_time":57433,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":2,"id":"653","highest_child_id":3078,"first_entry_time":57345,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":3078,"first_entry_time":57346,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"583","highest_child_id":3079,"first_entry_time":57349,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":3080,"first_entry_time":57351,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"855","highest_child_id":3081,"first_entry_time":57441,"exclusive_time":1,"entries":6},{"inclusive_time":21,"id":"945","highest_child_id":3087,"first_entry_time":57466,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3083,"first_entry_time":57470,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"837","highest_child_id":3087,"first_entry_time":57473,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":11,"id":"797","highest_child_id":3087,"first_entry_time":57475,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"798","highest_child_id":3087,"first_entry_time":57477,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":3087,"first_entry_time":57483,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"829","highest_child_id":3088,"first_entry_time":57489,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"869","highest_child_id":3091,"first_entry_time":57493,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":3091,"first_entry_time":57496,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3091,"first_entry_time":57498,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"826","highest_child_id":3092,"first_entry_time":57507,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"56","count":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":20,"id":"828","highest_child_id":3101,"first_entry_time":57511,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3094,"first_entry_time":57513,"exclusive_time":1,"entries":1},{"inclusive_time":10,"id":"854","highest_child_id":3098,"first_entry_time":57515,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3096,"first_entry_time":57517,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":3097,"first_entry_time":57518,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":3098,"first_entry_time":57520,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":4,"id":"856","highest_child_id":3101,"first_entry_time":57527,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"855","highest_child_id":3100,"first_entry_time":57528,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":3101,"first_entry_time":57530,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"855","highest_child_id":3102,"first_entry_time":57533,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"829","highest_child_id":3103,"first_entry_time":57535,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"869","highest_child_id":3104,"first_entry_time":57537,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":3105,"first_entry_time":57540,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"828","highest_child_id":3107,"first_entry_time":57542,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3107,"first_entry_time":57544,"exclusive_time":0,"entries":1}]},{"inclusive_time":176,"id":"838","highest_child_id":3152,"first_entry_time":57585,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":173,"id":"839","highest_child_id":3152,"first_entry_time":57588,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":3110,"first_entry_time":57590,"exclusive_time":0,"entries":1},{"inclusive_time":167,"id":"841","highest_child_id":3152,"first_entry_time":57594,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":3112,"first_entry_time":57599,"exclusive_time":1,"entries":1},{"inclusive_time":159,"id":"842","highest_child_id":3152,"first_entry_time":57601,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":89,"id":"787","highest_child_id":3142,"first_entry_time":57610,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":45,"id":"861","highest_child_id":3130,"first_entry_time":57612,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":3116,"first_entry_time":57614,"exclusive_time":1,"entries":1},{"inclusive_time":41,"id":"863","highest_child_id":3130,"first_entry_time":57616,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":9,"id":"864","highest_child_id":3121,"first_entry_time":57619,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":3121,"first_entry_time":57620,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":3120,"first_entry_time":57623,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":3121,"first_entry_time":57625,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":26,"id":"865","highest_child_id":3129,"first_entry_time":57628,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":24,"id":"866","highest_child_id":3129,"first_entry_time":57631,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3124,"first_entry_time":57634,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"837","highest_child_id":3129,"first_entry_time":57637,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":15,"id":"797","highest_child_id":3129,"first_entry_time":57638,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":14,"id":"798","highest_child_id":3129,"first_entry_time":57640,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":3128,"first_entry_time":57646,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":3129,"first_entry_time":57649,"exclusive_time":1,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":3130,"first_entry_time":57656,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"828","highest_child_id":3132,"first_entry_time":57659,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3132,"first_entry_time":57660,"exclusive_time":1,"entries":2}]},{"inclusive_time":33,"id":"914","highest_child_id":3142,"first_entry_time":57672,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":8,"id":"653","highest_child_id":3135,"first_entry_time":57674,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":6,"id":"639","highest_child_id":3135,"first_entry_time":57676,"exclusive_time":6,"entries":1}]},{"inclusive_time":1,"id":"845","highest_child_id":3136,"first_entry_time":57685,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"887","highest_child_id":3138,"first_entry_time":57688,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":3138,"first_entry_time":57689,"exclusive_time":2,"entries":1}]},{"inclusive_time":9,"id":"865","highest_child_id":3141,"first_entry_time":57694,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"924","highest_child_id":3141,"first_entry_time":57696,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3141,"first_entry_time":57700,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":3142,"first_entry_time":57704,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":3143,"first_entry_time":57663,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":3144,"first_entry_time":57666,"exclusive_time":1,"entries":4},{"inclusive_time":14,"id":"868","highest_child_id":3148,"first_entry_time":57713,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":10,"id":"869","highest_child_id":3148,"first_entry_time":57715,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":3148,"first_entry_time":57719,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3148,"first_entry_time":57720,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"821","highest_child_id":3149,"first_entry_time":57730,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"946","highest_child_id":3151,"first_entry_time":57750,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3151,"first_entry_time":57755,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":3152,"first_entry_time":57758,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":1,"id":"855","highest_child_id":3153,"first_entry_time":57546,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"829","highest_child_id":3154,"first_entry_time":57548,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"869","highest_child_id":3155,"first_entry_time":57549,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"826","highest_child_id":3156,"first_entry_time":57552,"exclusive_time":1,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":5,"id":"579","highest_child_id":3157,"first_entry_time":57555,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"170","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"25","count":2}]}]},{"inclusive_time":3,"id":"855","highest_child_id":3158,"first_entry_time":51381,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"829","highest_child_id":3159,"first_entry_time":51383,"exclusive_time":1,"entries":12},{"inclusive_time":3,"id":"869","highest_child_id":3160,"first_entry_time":51403,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"826","highest_child_id":3161,"first_entry_time":56750,"exclusive_time":2,"entries":3,"allocations":[{"id":"827","count":3}]}],"allocations":[{"id":"25","count":3}]},{"inclusive_time":3,"id":"829","highest_child_id":3162,"first_entry_time":56752,"exclusive_time":1,"entries":9},{"inclusive_time":23,"id":"925","highest_child_id":3164,"first_entry_time":56756,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":4,"id":"682","highest_child_id":3164,"first_entry_time":56759,"exclusive_time":3,"entries":6}],"allocations":[{"id":"10","count":3},{"id":"27","count":6}]},{"inclusive_time":1,"id":"855","highest_child_id":3165,"first_entry_time":56768,"exclusive_time":1,"entries":3},{"inclusive_time":10,"id":"926","highest_child_id":3167,"first_entry_time":56771,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":2,"id":"867","highest_child_id":3167,"first_entry_time":56774,"exclusive_time":1,"entries":3}]},{"inclusive_time":19,"id":"896","highest_child_id":3170,"first_entry_time":56777,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":8,"id":"801","highest_child_id":3170,"first_entry_time":56780,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2,"id":"803","highest_child_id":3170,"first_entry_time":56783,"exclusive_time":2,"entries":3}],"allocations":[{"id":"802","count":3}]}],"allocations":[{"id":"282","count":3},{"id":"6","count":3},{"id":"26","count":3},{"id":"10","count":3}]},{"inclusive_time":12,"id":"821","highest_child_id":3173,"first_entry_time":56787,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":2,"id":"822","highest_child_id":3172,"first_entry_time":56789,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"823","highest_child_id":3173,"first_entry_time":56792,"exclusive_time":2,"entries":2,"allocations":[{"id":"824","count":2}]}]},{"inclusive_time":1,"id":"927","highest_child_id":3174,"first_entry_time":56794,"exclusive_time":1,"entries":3},{"inclusive_time":48,"id":"942","highest_child_id":3178,"first_entry_time":56816,"exclusive_time":38,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3176,"first_entry_time":56819,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"943","highest_child_id":3177,"first_entry_time":56828,"exclusive_time":1,"entries":2},{"inclusive_time":7,"id":"944","highest_child_id":3178,"first_entry_time":56852,"exclusive_time":7,"entries":2,"allocations":[{"id":"18","count":4}]}]},{"inclusive_time":4,"id":"947","highest_child_id":3180,"first_entry_time":56869,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3180,"first_entry_time":56872,"exclusive_time":1,"entries":1}]},{"inclusive_time":15,"id":"869","highest_child_id":3183,"first_entry_time":56875,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":6,"id":"870","highest_child_id":3183,"first_entry_time":56878,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3183,"first_entry_time":56879,"exclusive_time":1,"entries":3}]}]},{"inclusive_time":1,"id":"928","highest_child_id":3184,"first_entry_time":56883,"exclusive_time":1,"entries":3},{"inclusive_time":13,"id":"579","highest_child_id":3186,"first_entry_time":56886,"exclusive_time":12,"entries":3,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":3186,"first_entry_time":56893,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"170","count":3},{"id":"27","count":1}]},{"inclusive_time":5,"id":"948","highest_child_id":3188,"first_entry_time":56922,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3188,"first_entry_time":56925,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"929","highest_child_id":3189,"first_entry_time":56929,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"930","highest_child_id":3190,"first_entry_time":56931,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"931","highest_child_id":3191,"first_entry_time":56934,"exclusive_time":1,"entries":6},{"inclusive_time":2,"id":"679","highest_child_id":3192,"first_entry_time":56937,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"740","highest_child_id":3193,"first_entry_time":56939,"exclusive_time":1,"entries":4},{"inclusive_time":62,"id":"932","highest_child_id":3201,"first_entry_time":56942,"exclusive_time":11,"entries":7,"callees":[{"inclusive_time":51,"id":"933","highest_child_id":3201,"first_entry_time":56944,"exclusive_time":26,"entries":7,"callees":[{"inclusive_time":11,"id":"934","highest_child_id":3197,"first_entry_time":56946,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":2,"id":"867","highest_child_id":3197,"first_entry_time":56949,"exclusive_time":1,"entries":3}]},{"inclusive_time":6,"id":"949","highest_child_id":3199,"first_entry_time":57005,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3199,"first_entry_time":57009,"exclusive_time":1,"entries":1}]},{"inclusive_time":7,"id":"935","highest_child_id":3201,"first_entry_time":57018,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2,"id":"867","highest_child_id":3201,"first_entry_time":57020,"exclusive_time":1,"entries":3}]}]}],"allocations":[{"id":"10","count":7}]},{"inclusive_time":1,"id":"725","highest_child_id":3202,"first_entry_time":56954,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":3203,"first_entry_time":56957,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":3204,"first_entry_time":56960,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"950","highest_child_id":3205,"first_entry_time":56973,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"728","highest_child_id":3206,"first_entry_time":56980,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":3207,"first_entry_time":56982,"exclusive_time":1,"entries":1},{"inclusive_time":27,"id":"897","highest_child_id":3214,"first_entry_time":57027,"exclusive_time":18,"entries":3,"callees":[{"inclusive_time":2,"id":"898","highest_child_id":3209,"first_entry_time":57030,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"899","highest_child_id":3210,"first_entry_time":57032,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"900","highest_child_id":3211,"first_entry_time":57034,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"901","highest_child_id":3212,"first_entry_time":57035,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"902","highest_child_id":3213,"first_entry_time":57038,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"903","highest_child_id":3214,"first_entry_time":57040,"exclusive_time":1,"entries":3}]},{"inclusive_time":27,"id":"908","highest_child_id":3221,"first_entry_time":57042,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":3216,"first_entry_time":57044,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"899","highest_child_id":3217,"first_entry_time":57047,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"901","highest_child_id":3218,"first_entry_time":57049,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"909","highest_child_id":3219,"first_entry_time":57052,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"799","highest_child_id":3220,"first_entry_time":57054,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"911","highest_child_id":3221,"first_entry_time":57056,"exclusive_time":2,"entries":3}],"allocations":[{"id":"25","count":9},{"id":"170","count":3}]}],"allocations":[{"id":"6","count":3},{"id":"27","count":9},{"id":"10","count":6},{"id":"25","count":16}]},{"inclusive_time":3,"id":"936","highest_child_id":3222,"first_entry_time":57059,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":5,"id":"579","highest_child_id":3223,"first_entry_time":57062,"exclusive_time":4,"entries":3,"allocations":[{"id":"10","count":3},{"id":"170","count":3}]}],"allocations":[{"id":"2","count":6},{"id":"27","count":3},{"id":"10","count":3},{"id":"25","count":3}]},{"inclusive_time":3,"id":"682","highest_child_id":3224,"first_entry_time":57066,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"826","highest_child_id":3225,"first_entry_time":57070,"exclusive_time":2,"entries":3,"allocations":[{"id":"827","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}]},{"inclusive_time":1,"id":"693","highest_child_id":3226,"first_entry_time":57073,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"695","highest_child_id":3227,"first_entry_time":57075,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"692","highest_child_id":3228,"first_entry_time":57077,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"697","highest_child_id":3229,"first_entry_time":57079,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"333","highest_child_id":3230,"first_entry_time":57082,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"334","count":2}]},{"inclusive_time":3,"id":"627","highest_child_id":3231,"first_entry_time":57088,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"628","count":2}]},{"inclusive_time":2,"id":"375","highest_child_id":3232,"first_entry_time":57091,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"658","highest_child_id":3233,"first_entry_time":57862,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"951","highest_child_id":3234,"first_entry_time":57875,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"691","highest_child_id":3235,"first_entry_time":57878,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"952","highest_child_id":3236,"first_entry_time":58249,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"953","highest_child_id":3237,"first_entry_time":58260,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"954","highest_child_id":3238,"first_entry_time":58275,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1650,"id":"955","highest_child_id":3332,"first_entry_time":58308,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1633,"id":"956","highest_child_id":3332,"first_entry_time":58325,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1579,"id":"957","highest_child_id":3330,"first_entry_time":58341,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":1,"id":"958","highest_child_id":3242,"first_entry_time":58350,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"959","highest_child_id":3243,"first_entry_time":58361,"exclusive_time":2,"entries":4},{"inclusive_time":364,"id":"960","highest_child_id":3263,"first_entry_time":58385,"exclusive_time":95,"entries":1,"callees":[{"inclusive_time":125,"id":"961","highest_child_id":3250,"first_entry_time":58399,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":108,"id":"962","highest_child_id":3250,"first_entry_time":58411,"exclusive_time":17,"entries":4,"callees":[{"inclusive_time":91,"id":"797","highest_child_id":3250,"first_entry_time":58414,"exclusive_time":5,"entries":4,"callees":[{"inclusive_time":85,"id":"798","highest_child_id":3250,"first_entry_time":58416,"exclusive_time":81,"entries":4,"callees":[{"inclusive_time":3,"id":"799","highest_child_id":3249,"first_entry_time":58435,"exclusive_time":2,"entries":4},{"inclusive_time":1,"id":"800","highest_child_id":3250,"first_entry_time":58520,"exclusive_time":1,"entries":2}],"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"963","highest_child_id":3251,"first_entry_time":58538,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":134,"id":"964","highest_child_id":3260,"first_entry_time":58570,"exclusive_time":26,"entries":4,"callees":[{"inclusive_time":21,"id":"579","highest_child_id":3254,"first_entry_time":58574,"exclusive_time":20,"entries":4,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":3254,"first_entry_time":58715,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"170","count":4},{"id":"27","count":1}]},{"inclusive_time":87,"id":"837","highest_child_id":3259,"first_entry_time":58617,"exclusive_time":8,"entries":9,"callees":[{"inclusive_time":79,"id":"797","highest_child_id":3259,"first_entry_time":58619,"exclusive_time":7,"entries":9,"callees":[{"inclusive_time":71,"id":"798","highest_child_id":3259,"first_entry_time":58624,"exclusive_time":65,"entries":7,"callees":[{"inclusive_time":3,"id":"799","highest_child_id":3258,"first_entry_time":58631,"exclusive_time":2,"entries":7},{"inclusive_time":4,"id":"800","highest_child_id":3259,"first_entry_time":58634,"exclusive_time":2,"entries":13}],"allocations":[{"id":"28","count":7}]}]}]},{"inclusive_time":1,"id":"825","highest_child_id":3260,"first_entry_time":58720,"exclusive_time":1,"entries":1}],"allocations":[{"id":"26","count":8},{"id":"25","count":8}]},{"inclusive_time":3,"id":"965","highest_child_id":3261,"first_entry_time":58593,"exclusive_time":3,"entries":4,"allocations":[{"id":"28","count":2}]},{"inclusive_time":2,"id":"966","highest_child_id":3262,"first_entry_time":58602,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"967","highest_child_id":3263,"first_entry_time":58611,"exclusive_time":3,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":2}]},{"inclusive_time":1130,"id":"968","highest_child_id":3330,"first_entry_time":58790,"exclusive_time":442,"entries":1,"callees":[{"inclusive_time":1,"id":"789","highest_child_id":3265,"first_entry_time":58793,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"962","highest_child_id":3269,"first_entry_time":58796,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"797","highest_child_id":3269,"first_entry_time":58798,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"798","highest_child_id":3269,"first_entry_time":58800,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":3269,"first_entry_time":58805,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]}]}]},{"inclusive_time":28,"id":"969","highest_child_id":3273,"first_entry_time":58826,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":3,"id":"970","highest_child_id":3271,"first_entry_time":58837,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":3}]},{"inclusive_time":1,"id":"867","highest_child_id":3272,"first_entry_time":58840,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"967","highest_child_id":3273,"first_entry_time":58842,"exclusive_time":3,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":3}]},{"inclusive_time":207,"id":"971","highest_child_id":3292,"first_entry_time":59032,"exclusive_time":135,"entries":1,"callees":[{"inclusive_time":6,"id":"972","highest_child_id":3275,"first_entry_time":59045,"exclusive_time":4,"entries":8,"allocations":[{"id":"28","count":4}]},{"inclusive_time":40,"id":"973","highest_child_id":3280,"first_entry_time":59073,"exclusive_time":34,"entries":4,"callees":[{"inclusive_time":2,"id":"895","highest_child_id":3277,"first_entry_time":59075,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"974","highest_child_id":3278,"first_entry_time":59084,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"975","highest_child_id":3279,"first_entry_time":59092,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"976","highest_child_id":3280,"first_entry_time":59100,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":4}]},{"inclusive_time":1,"id":"977","highest_child_id":3281,"first_entry_time":59127,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"978","highest_child_id":3282,"first_entry_time":59137,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"979","highest_child_id":3283,"first_entry_time":59154,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"980","highest_child_id":3284,"first_entry_time":59165,"exclusive_time":2,"entries":1},{"inclusive_time":10,"id":"836","highest_child_id":3285,"first_entry_time":59169,"exclusive_time":6,"entries":22},{"inclusive_time":1,"id":"981","highest_child_id":3286,"first_entry_time":59187,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"982","highest_child_id":3287,"first_entry_time":59197,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"954","highest_child_id":3288,"first_entry_time":59209,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"944","highest_child_id":3289,"first_entry_time":59212,"exclusive_time":4,"entries":3,"allocations":[{"id":"18","count":6}]},{"inclusive_time":1,"id":"983","highest_child_id":3290,"first_entry_time":59225,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"952","highest_child_id":3291,"first_entry_time":59229,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"951","highest_child_id":3292,"first_entry_time":59235,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":11},{"id":"25","count":1}]},{"inclusive_time":28,"id":"984","highest_child_id":3294,"first_entry_time":59257,"exclusive_time":23,"entries":9,"callees":[{"inclusive_time":6,"id":"800","highest_child_id":3294,"first_entry_time":59818,"exclusive_time":3,"entries":14}]},{"inclusive_time":8,"id":"985","highest_child_id":3296,"first_entry_time":59271,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":3296,"first_entry_time":59274,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"986","highest_child_id":3297,"first_entry_time":59308,"exclusive_time":2,"entries":1},{"inclusive_time":366,"id":"987","highest_child_id":3319,"first_entry_time":59447,"exclusive_time":302,"entries":4,"callees":[{"inclusive_time":2,"id":"895","highest_child_id":3299,"first_entry_time":59450,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"974","highest_child_id":3300,"first_entry_time":59453,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"988","highest_child_id":3301,"first_entry_time":59461,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"975","highest_child_id":3302,"first_entry_time":59464,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"989","highest_child_id":3303,"first_entry_time":59472,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"990","highest_child_id":3304,"first_entry_time":59481,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"991","highest_child_id":3305,"first_entry_time":59489,"exclusive_time":1,"entries":4},{"inclusive_time":25,"id":"836","highest_child_id":3306,"first_entry_time":59492,"exclusive_time":11,"entries":73},{"inclusive_time":2,"id":"992","highest_child_id":3307,"first_entry_time":59500,"exclusive_time":2,"entries":4},{"inclusive_time":2,"id":"993","highest_child_id":3308,"first_entry_time":59512,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"994","highest_child_id":3309,"first_entry_time":59523,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"995","highest_child_id":3310,"first_entry_time":59532,"exclusive_time":1,"entries":4},{"inclusive_time":21,"id":"996","highest_child_id":3311,"first_entry_time":59542,"exclusive_time":10,"entries":55},{"inclusive_time":2,"id":"997","highest_child_id":3312,"first_entry_time":59550,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"998","highest_child_id":3313,"first_entry_time":59560,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"999","highest_child_id":3314,"first_entry_time":59570,"exclusive_time":1,"entries":8},{"inclusive_time":2,"id":"976","highest_child_id":3315,"first_entry_time":59578,"exclusive_time":1,"entries":4},{"inclusive_time":17,"id":"1000","highest_child_id":3316,"first_entry_time":59606,"exclusive_time":12,"entries":26,"allocations":[{"id":"56","count":2}]},{"inclusive_time":2,"id":"944","highest_child_id":3317,"first_entry_time":59634,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]},{"inclusive_time":1,"id":"1001","highest_child_id":3318,"first_entry_time":59653,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"1002","highest_child_id":3319,"first_entry_time":59662,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":17},{"id":"25","count":12}]},{"inclusive_time":12,"id":"1003","highest_child_id":3322,"first_entry_time":59837,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"1004","highest_child_id":3321,"first_entry_time":59845,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"967","highest_child_id":3322,"first_entry_time":59848,"exclusive_time":1,"entries":1}]},{"inclusive_time":11,"id":"1005","highest_child_id":3325,"first_entry_time":59863,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"1006","highest_child_id":3324,"first_entry_time":59871,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"967","highest_child_id":3325,"first_entry_time":59873,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"1007","highest_child_id":3327,"first_entry_time":59889,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"979","highest_child_id":3327,"first_entry_time":59891,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"967","highest_child_id":3328,"first_entry_time":59896,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"1008","highest_child_id":3330,"first_entry_time":59910,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"967","highest_child_id":3330,"first_entry_time":59913,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"1009","highest_child_id":3331,"first_entry_time":59928,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"1010","highest_child_id":3332,"first_entry_time":59955,"exclusive_time":3,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"1011","highest_child_id":3333,"first_entry_time":59976,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]}]}]}]},{"inclusive_time":1,"id":"1012","highest_child_id":3334,"first_entry_time":59989,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":2},{"id":"27","count":1},{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"1013","highest_child_id":3335,"first_entry_time":60003,"exclusive_time":2,"entries":1,"allocations":[{"id":"1014","count":1}]},{"inclusive_time":876,"id":"1015","highest_child_id":3380,"first_entry_time":60021,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":854,"id":"1016","highest_child_id":3380,"first_entry_time":60042,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":822,"id":"1017","highest_child_id":3380,"first_entry_time":60074,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":17,"id":"9","highest_child_id":3340,"first_entry_time":60084,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3340,"first_entry_time":60098,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":765,"id":"1018","highest_child_id":3380,"first_entry_time":60131,"exclusive_time":164,"entries":1,"callees":[{"inclusive_time":10,"id":"55","highest_child_id":3342,"first_entry_time":60139,"exclusive_time":10,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":130,"id":"1019","highest_child_id":3352,"first_entry_time":60170,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":3344,"first_entry_time":60173,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":93,"id":"9","highest_child_id":3351,"first_entry_time":60178,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":79,"id":"24","highest_child_id":3350,"first_entry_time":60182,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":3347,"first_entry_time":60191,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":3348,"first_entry_time":60193,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":3349,"first_entry_time":60197,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":17,"id":"37","highest_child_id":3350,"first_entry_time":60225,"exclusive_time":16,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":1,"id":"20","highest_child_id":3351,"first_entry_time":60269,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2,"id":"1020","highest_child_id":3352,"first_entry_time":60298,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"1021","highest_child_id":3353,"first_entry_time":60395,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":454,"id":"1022","highest_child_id":3378,"first_entry_time":60435,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":3355,"first_entry_time":60439,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":204,"id":"9","highest_child_id":3362,"first_entry_time":60444,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":181,"id":"24","highest_child_id":3361,"first_entry_time":60449,"exclusive_time":131,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":3358,"first_entry_time":60457,"exclusive_time":0,"entries":8},{"inclusive_time":3,"id":"30","highest_child_id":3359,"first_entry_time":60459,"exclusive_time":2,"entries":8},{"inclusive_time":4,"id":"17","highest_child_id":3360,"first_entry_time":60462,"exclusive_time":2,"entries":8,"allocations":[{"id":"18","count":8}]},{"inclusive_time":47,"id":"37","highest_child_id":3361,"first_entry_time":60521,"exclusive_time":43,"entries":20}],"allocations":[{"id":"10","count":27},{"id":"25","count":6},{"id":"6","count":10},{"id":"26","count":10},{"id":"28","count":6}]},{"inclusive_time":2,"id":"20","highest_child_id":3362,"first_entry_time":60646,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":206,"id":"1023","highest_child_id":3378,"first_entry_time":60683,"exclusive_time":125,"entries":1,"callees":[{"inclusive_time":31,"id":"1024","highest_child_id":3376,"first_entry_time":60708,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":3365,"first_entry_time":60716,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3366,"first_entry_time":60720,"exclusive_time":0,"entries":2},{"inclusive_time":16,"id":"72","highest_child_id":3376,"first_entry_time":60722,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":3368,"first_entry_time":60724,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":3369,"first_entry_time":60725,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":3370,"first_entry_time":60727,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":3372,"first_entry_time":60729,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":3372,"first_entry_time":60730,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":3374,"first_entry_time":60732,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":3374,"first_entry_time":60733,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"86","highest_child_id":3375,"first_entry_time":60735,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":3376,"first_entry_time":60736,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"1025","count":1}]},{"inclusive_time":47,"id":"1026","highest_child_id":3377,"first_entry_time":60756,"exclusive_time":47,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"242","highest_child_id":3378,"first_entry_time":60887,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"60","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"70","highest_child_id":3379,"first_entry_time":60892,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3380,"first_entry_time":60895,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"8","count":3}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":3381,"first_entry_time":60898,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3382,"first_entry_time":60901,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"16","count":5},{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":3383,"first_entry_time":60903,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3384,"first_entry_time":60905,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":3}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":214,"id":"1017","highest_child_id":3408,"first_entry_time":60907,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":15,"id":"9","highest_child_id":3387,"first_entry_time":60912,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3387,"first_entry_time":60924,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":192,"id":"1018","highest_child_id":3408,"first_entry_time":60929,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":9,"id":"55","highest_child_id":3389,"first_entry_time":60933,"exclusive_time":8,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":118,"id":"1027","highest_child_id":3401,"first_entry_time":60979,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":3391,"first_entry_time":60983,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":77,"id":"9","highest_child_id":3398,"first_entry_time":60988,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":59,"id":"24","highest_child_id":3397,"first_entry_time":60991,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":1,"id":"234","highest_child_id":3394,"first_entry_time":61000,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":3395,"first_entry_time":61001,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"17","highest_child_id":3396,"first_entry_time":61005,"exclusive_time":1,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":8,"id":"37","highest_child_id":3397,"first_entry_time":61036,"exclusive_time":8,"entries":2}],"allocations":[{"id":"10","count":12},{"id":"25","count":3},{"id":"6","count":4},{"id":"26","count":4},{"id":"28","count":2}]},{"inclusive_time":1,"id":"20","highest_child_id":3398,"first_entry_time":61062,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":12,"id":"1028","highest_child_id":3401,"first_entry_time":61086,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":3400,"first_entry_time":61093,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3401,"first_entry_time":61097,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"1021","highest_child_id":3402,"first_entry_time":61100,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":17,"id":"1023","highest_child_id":3407,"first_entry_time":61103,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":6,"id":"1024","highest_child_id":3405,"first_entry_time":61107,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":3405,"first_entry_time":61112,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"1025","count":1}]},{"inclusive_time":2,"id":"1026","highest_child_id":3406,"first_entry_time":61115,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"242","highest_child_id":3407,"first_entry_time":61119,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"60","count":1},{"id":"6","count":1}]},{"inclusive_time":0,"id":"71","highest_child_id":3408,"first_entry_time":61121,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":0,"id":"242","highest_child_id":3409,"first_entry_time":61124,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]}]}}]');
// grab the "dictionary" from the very first entry
var id_to_things = rawData[0];
// the rest of the program expects the list to contain callframes, not the dictionary
// so we just shift it off the beginning.
rawData.shift();
// Extract some common things out of the raw data.
var nodeIdToName = {};
var nodeIdToFile = {};
var nodeIdToLine = {};
(function () {
function walkCallGraphNode(node) {
if (!nodeIdToName[node.id]) {
var existing_data = id_to_things[node.id.toString()];
node.name = existing_data.name;
node.line = existing_data.line;
node.file = existing_data.file;
nodeIdToName[node.id] = node.name == "" ? "<anon>" : node.name;
nodeIdToLine[node.id] = node.line < 1 ? "<unknown>" : node.line;
nodeIdToFile[node.id] = node.file == "" ? "<unknown>" : node.file;
}
if (node.callees)
node.callees.map(walkCallGraphNode);
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
}());
var maxSeqNum = 0;
var gcParticipants = [];
var gcTimings = [];
(function() {
rawData.forEach(function (data, index) {
gcs = data.gcs;
if (gcs.length == 0)
return;
let seq = gcs[gcs.length - 1].sequence;
if (seq > maxSeqNum)
maxSeqNum = seq;
gcs.forEach(function (data) {
if (typeof gcParticipants[data.sequence] == "undefined")
gcParticipants[data.sequence] = [];
if (typeof gcTimings[data.sequence] == "undefined")
gcTimings[data.sequence] = { start: Infinity, end: -Infinity, full: 0 };
gcParticipants[data.sequence].push(index);
if (data.start_time < gcTimings[data.sequence].start)
gcTimings[data.sequence].start = data.start_time;
if (data.start_time + data.time > gcTimings[data.sequence].end)
gcTimings[data.sequence].end = data.start_time + data.time;
gcTimings[data.sequence].full = data.full;
});
});
gcTimings.forEach(function (data) {
data.total = data.end - data.start;
});
}());
// Register application and add controllers, increase recursion depth for callGraphController
var moarProfApp = angular.module('moarProfApp', ['ui.bootstrap']).config(function($rootScopeProvider) {
$rootScopeProvider.digestTtl(100);
});
moarProfApp.controller('NavigationController', function ($scope) {
$scope.Tab = 'Overview';
});
moarProfApp.controller('OverviewController', function ($scope) {
/* It's okay to take only the first thread's data here:
* - the total time of the main thread should be the maximum
* anyway, since all other threads are spawned from it.
* - Spesh time is stashed in the main thread's profile data,
* even though it's actually spent in another thread.
*/
var totalTime = rawData[0].total_time;
var speshTime = rawData[0].spesh_time;
var gcTime = 0;
var gcNursery = 0;
var gcFull = 0;
var gcNurseryTime = 0;
var gcFullTime = 0;
var totalEntries = 0;
var inlineEntries = 0;
var jitEntries = 0;
var speshEntries = 0;
var replacements = 0;
var allocations = 0;
var deoptOnes = 0;
var deoptAlls = 0;
var osrs = 0;
var numThreads = rawData.length;
var averageParticipants = 0;
gcParticipants.forEach(function (run) {
averageParticipants += run.length;
});
averageParticipants = averageParticipants / gcParticipants.length;
gcTimings.map(function (gc) {
gcTime += gc.total;
if (gc.full) {
gcFull++;
gcFullTime += gc.total;
}
else {
gcNursery++;
gcNurseryTime += gc.total;
}
});
function walkCallGraphNode(node) {
totalEntries += node.entries || 0;
inlineEntries += node.inlined_entries || 0;
speshEntries += node.spesh_entries || 0;
jitEntries += node.jit_entries || 0;
deoptOnes += node.deopt_one || 0;
deoptAlls += node.deopt_all || 0;
osrs += node.osr || 0;
if (node.allocations) {
node.allocations.map(function (alloc) {
if (alloc.count)
allocations += alloc.count;
if (alloc.replaced)
replacements += alloc.replaced;
});
}
if (node.callees)
node.callees.map(walkCallGraphNode);
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
$scope.NumThreads = numThreads;
// Time spent
var overheadTime = gcTime;
var executingTime = totalTime - overheadTime;
$scope.TotalTime = +(totalTime / 1000).toFixed(2);
$scope.GCOverheadTime = +(overheadTime / 1000).toFixed(2);
$scope.GCOverheadTimePercent = +(100 * overheadTime / totalTime).toFixed(2);
$scope.ExecutingTime = +(executingTime / 1000).toFixed(2);
$scope.ExecutingTimePercent = +(100 * executingTime / totalTime).toFixed(2);
$scope.GCTime = +(gcTime / 1000).toFixed(2);
$scope.GCTimePercent = +(100 * gcTime / totalTime).toFixed(2);
$scope.SpeshTime = +(speshTime / 1000).toFixed(2);
$scope.SpeshTimePercent = +(100 * speshTime / totalTime).toFixed(2);
// Routines
var interpEntries = totalEntries - (jitEntries + speshEntries);
$scope.EntriesWithoutInline = totalEntries - inlineEntries;
$scope.EntriesInline = inlineEntries;
$scope.InlinePercent = +(100 * inlineEntries / totalEntries).toFixed(2);
$scope.InterpFrames = interpEntries;
$scope.InterpFramesPercent = +(100 * interpEntries / totalEntries).toFixed(2);
$scope.SpeshFrames = speshEntries;
$scope.SpeshFramesPercent = +(100 * speshEntries / totalEntries).toFixed(2);
$scope.JITFrames = jitEntries;
$scope.JITFramesPercent = +(100 * jitEntries / totalEntries).toFixed(2);
// Garbage collection
$scope.GCRuns = gcNursery + gcFull;
$scope.FullGCRuns = gcFull;
$scope.NurseryAverage = +((gcNurseryTime / 1000) / gcNursery).toFixed(2);
$scope.FullAverage = +((gcFullTime / 1000) / gcFull).toFixed(2);
$scope.AverageParticipants = averageParticipants.toFixed(2);
$scope.ScalarReplacements = replacements;
$scope.ScalarReplacementPercent = allocations + replacements > 0
? +(100 * replacements / (allocations + replacements)).toFixed(2)
: 0;
// Dynamic optimization
var optimizedFrames = speshEntries + jitEntries;
$scope.OptimizedFrames = optimizedFrames;
$scope.DeoptOnes = deoptOnes;
$scope.DeoptOnePercent = +(100 * deoptOnes / (optimizedFrames || 1)).toFixed(2);
$scope.DeoptAlls = deoptAlls;
$scope.OSRs = osrs;
});
moarProfApp.controller('RoutinesController', function ($scope) {
// Walk call graph to build data.
var idToEntries = {};
var idToSpeshEntries = {};
var idToJITEntries = {};
var idToExclusive = {};
var idToInclusive = {};
var idToOSR = {};
var idRecDepth = {};
var totalExclusive = 0;
var totalInclusive = rawData[0].call_graph.inclusive_time;
function walkCallGraphNode(node) {
if (!idToEntries[node.id]) {
idToEntries[node.id] = 0;
idToSpeshEntries[node.id] = 0;
idToJITEntries[node.id] = 0;
idToExclusive[node.id] = 0;
idToInclusive[node.id] = 0;
idToOSR[node.id] = false;
idRecDepth[node.id] = 0;
}
idToEntries[node.id] += node.entries || 0;
idToSpeshEntries[node.id] += node.spesh_entries || 0;
idToJITEntries[node.id] += node.jit_entries || 0;
idToExclusive[node.id] += node.exclusive_time || 0;
totalExclusive += node.exclusive_time || 0;
if (node.osr > 0)
idToOSR[node.id] = true;
if (idRecDepth[node.id] == 0)
idToInclusive[node.id] += node.inclusive_time;
if (node.callees) {
idRecDepth[node.id]++;
node.callees.map(walkCallGraphNode);
idRecDepth[node.id]--;
}
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
// Build object list per routine.
var routineList = [];
for (id in idToEntries) {
var speshEntriesPercent = +(100 * idToSpeshEntries[id] / idToEntries[id]).toFixed(2);
var jitEntriesPercent = +(100 * idToJITEntries[id] / idToEntries[id]).toFixed(2);
var interpEntriesPercent = 100 - (speshEntriesPercent + jitEntriesPercent);
var entry = {
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Entries: idToEntries[id],
InterpEntriesPercent: interpEntriesPercent,
SpeshEntriesPercent: speshEntriesPercent,
JITEntriesPercent: jitEntriesPercent,
InclusiveTime: +(idToInclusive[id] / 1000).toFixed(2),
InclusiveTimePercent: +(100 * idToInclusive[id] / totalInclusive).toFixed(2),
ExclusiveTime: +(idToExclusive[id] / 1000).toFixed(2),
ExclusiveTimePercent: +(100 * idToExclusive[id] / totalExclusive).toFixed(2),
OSR: idToOSR[id]
};
routineList.push(entry);
}
$scope.Routines = routineList;
$scope.predicate = "InclusiveTime";
$scope.reverse = true;
});
moarProfApp.controller('CallGraphController', function ($scope) {
$scope.Current = rawData[0].call_graph;
$scope.total_time = rawData[0].total_time;
$scope.SuchCallers = false;
$scope.RecentCallers = [];
$scope.predicate = "Time";
$scope.reverse = true;
var all_callers = [];
updateCurrentData();
$scope.toCallee = function (callee) {
// Update caller history.
all_callers.push($scope.Current);
$scope.RecentCallers.push($scope.Current);
if ($scope.RecentCallers.length > 5)
$scope.RecentCallers.shift();
// Update current node and callees.
$scope.Current = callee;
updateCurrentData();
};
$scope.toCaller = function (caller) {
// Update caller history.
while (all_callers.length > 0) {
var removed = all_callers.pop();
if ($scope.RecentCallers.length > 0)
$scope.RecentCallers.pop();
if (removed == caller)
break;
}
if (all_callers.length > $scope.RecentCallers.length) {
var ptr = all_callers.length - $scope.RecentCallers.length;
while (ptr >= 0 && $scope.RecentCallers.length < 5) {
$scope.RecentCallers.unshift(all_callers[ptr]);
ptr--;
}
}
// Update current node and callees.
$scope.Current = caller;
updateCurrentData();
}
/*
* Given a callee, create a unique, repeatable color;
* h/t https://stackoverflow.com/questions/3426404
*/
$scope.backgroundColor = function (callee) {
var str = callee.$$hashKey + callee.file + callee.name;
for (var i = 0, hash = 0; i < str.length; hash = str.charCodeAt(i++) + ((hash << 5) - hash));
for (var i = 0, colour = "#"; i < 3; colour += ("00" + ((hash >> i++ * 8) & 0xFF).toString(16)).slice(-2));
return colour;
}
function updateCurrentData() {
// Line and file.
var current = $scope.Current;
$scope.Line = current.line;
$scope.File = current.file;
// Entry statistics.
var interpEntries = current.entries - (current.spesh_entries + current.jit_entries);
var nonInlineEntries = current.entries - current.inlined_entries;
$scope.Entries = nonInlineEntries;
$scope.Percent = (100 * nonInlineEntries / current.entries).toFixed(2);
$scope.InlineEntries = current.inlined_entries;
$scope.InlinePercent = (100 * current.inlined_entries / current.entries).toFixed(2);
$scope.InterpEntries = interpEntries;
$scope.InterpPercent = (100 * interpEntries / current.entries).toFixed(2);
$scope.SpeshEntries = current.spesh_entries;
$scope.SpeshPercent = (100 * current.spesh_entries / current.entries).toFixed(2);
$scope.JITEntries = current.jit_entries;
$scope.JITPercent = (100 * current.jit_entries / current.entries).toFixed(2);
// Callees.
$scope.Callees = calleesOf(current);
}
function calleesOf(node) {
if (!node.callees)
return [];
var totalExclusive = 0.0;
node.callees.map(function (c) { totalExclusive += c.exclusive_time; });
return node.callees.map(function (c) {
var speshCallsPercent = +(100 * c.spesh_entries / c.entries).toFixed(2);
var jitCallsPercent = +(100 * c.jit_entries / c.entries).toFixed(2);
var interpCallsPercent = 100 - (speshCallsPercent + jitCallsPercent);
var inlinedPercent = +(100 * c.inlined_entries / c.entries).toFixed(2);
return {
Name: nodeIdToName[c.id],
Line: nodeIdToLine[c.id],
File: nodeIdToFile[c.id],
Calls: c.entries,
Time: +(c.inclusive_time / 1000).toFixed(2),
TimePercent: +(100 * c.inclusive_time / node.inclusive_time).toFixed(2),
InterpCallsPercent: interpCallsPercent,
SpeshCallsPercent: speshCallsPercent,
JITCallsPercent: jitCallsPercent,
InlinedPercent: inlinedPercent,
VeryInline: inlinedPercent >= 95,
SometimesInline: inlinedPercent < 95 && inlinedPercent > 10,
Node: c
};
});
}
});
moarProfApp.controller('AllocationsController', function ($scope, $uibModal) {
// Traverse all call nodes, counting up the allocations.
var typeIdToName = {};
var typeIdToAllocations = {};
var typeIdToAllocationsByType = {};
var typeIdToRoutineStats = {};
var maxAllocations = 1;
function walkCallGraphNode(node) {
if (node.allocations) {
node.allocations.map(function (alloc) {
alloc.type = id_to_things[alloc.id];
if (!typeIdToName[alloc.id]) {
typeIdToName[alloc.id] = alloc.type == "" ? "<anon>" : alloc.type;
typeIdToAllocations[alloc.id] = 0;
typeIdToAllocationsByType[alloc.id] = [0, 0, 0];
typeIdToRoutineStats[alloc.id] = {};
}
typeIdToAllocations[alloc.id] += alloc.count;
typeIdToAllocationsByType[alloc.id][0] += alloc.count - (alloc.spesh || 0) - (alloc.jit || 0);
typeIdToAllocationsByType[alloc.id][1] += alloc.spesh || 0;
typeIdToAllocationsByType[alloc.id][2] += alloc.jit || 0;
if (typeIdToAllocations[alloc.id] > maxAllocations)
maxAllocations = typeIdToAllocations[alloc.id];
if (typeIdToRoutineStats[alloc.id][node.id]) {
typeIdToRoutineStats[alloc.id][node.id]['count'] += alloc.count || 0;
typeIdToRoutineStats[alloc.id][node.id]['spesh'] += alloc.spesh || 0;
typeIdToRoutineStats[alloc.id][node.id]['jit'] += alloc.jit || 0;
} else {
typeIdToRoutineStats[alloc.id][node.id] = {
count: alloc.count || 0,
spesh: alloc.spesh || 0,
jit: alloc.jit || 0
};
}
});
}
if (node.callees) {
node.callees.map(walkCallGraphNode);
}
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
// Build allocation summary.
var allocationSummary = [];
for (id in typeIdToName) {
var maxAllocationByRoutine = 1;
for (var rid in typeIdToRoutineStats[id])
if (typeIdToRoutineStats[id][rid]['count'] > maxAllocationByRoutine)
maxAllocationByRoutine = typeIdToRoutineStats[id][rid]['count'];
var routineStats = [];
for (var rid in typeIdToRoutineStats[id])
routineStats.push({
Name: nodeIdToName[rid],
Line: nodeIdToLine[rid],
File: nodeIdToFile[rid],
Allocations: typeIdToRoutineStats[id][rid]['count'],
AllocationsSpesh: typeIdToRoutineStats[id][rid]['spesh'],
AllocationsJit: typeIdToRoutineStats[id][rid]['jit'],
AllocationsPercent: (100 * typeIdToRoutineStats[id][rid]['count'] / maxAllocationByRoutine),
AllocationsInterpPercent: (100 * (typeIdToRoutineStats[id][rid]['count'] - typeIdToRoutineStats[id][rid]['jit'] - typeIdToRoutineStats[id][rid]['spesh']) / maxAllocationByRoutine),
AllocationsSpeshPercent: (100 * typeIdToRoutineStats[id][rid]['spesh'] / maxAllocationByRoutine),
AllocationsJitPercent: (100 * typeIdToRoutineStats[id][rid]['jit'] / maxAllocationByRoutine)
});
var entry = {
Name: typeIdToName[id],
Allocations: typeIdToAllocations[id],
AllocationsPercent: +(100 * typeIdToAllocations[id] / maxAllocations).toFixed(2),
AllocationsInterpPercent: +(100 * typeIdToAllocationsByType[id][0] / maxAllocations).toFixed(2),
AllocationsSpeshPercent: +(100 * typeIdToAllocationsByType[id][1] / maxAllocations).toFixed(2),
AllocationsJitPercent: +(100 * typeIdToAllocationsByType[id][2] / maxAllocations).toFixed(2),
RoutineStats: routineStats
};
allocationSummary.push(entry);
}
$scope.AllocationSummary = allocationSummary;
$scope.predicate = "Allocations";
$scope.reverse = true;
$scope.routinePredicate = "Allocations";
$scope.routineReverse = true;
// Allocating routines handlng.
$scope.modalInstance = null;
$scope.showAllocatingRoutines = function (alloc) {
// Show modal dialog with data.
$scope.CurrentAllocatingRoutine = alloc.Name;
$scope.CurrentAllocatingRoutineStats = alloc.RoutineStats;
$scope.modalInstance = $uibModal.open({
templateUrl: 'myModalContent.html',
scope: $scope
});
}
});
moarProfApp.controller('GCController', function ($scope) {
// Find longest GC run.
var longestGC = 0;
gcTimings.map(function (timing) {
if (timing.total > longestGC)
longestGC = timing.total;
});
// Produce something nice to render.
var run = 0;
$scope.GCs = rawData[0].gcs.map(function (gc) {
var totalBytes = gc.cleared_bytes + gc.retained_bytes + gc.promoted_bytes;
return {
Run: ++run,
StartTime: +(gc.start_time / 1000).toFixed(2),
Time: +(gc.time / 1000).toFixed(2),
Full: (gc.full != 0),
TimePercent: +(100 * gc.time / longestGC).toFixed(2),
RetainedKilobytes: Math.round(gc.retained_bytes / 1024),
PromotedKilobytes: Math.round(gc.promoted_bytes / 1024),
ClearedKilobytes: Math.round(gc.cleared_bytes / 1024),
RetainedPercent: +(100 * gc.retained_bytes / totalBytes).toFixed(2),
PromotedPercent: +(100 * gc.promoted_bytes / totalBytes).toFixed(2),
ClearedPercent: +(100 * gc.cleared_bytes / totalBytes).toFixed(2),
Gen2Roots: 'gen2_roots' in gc ? gc.gen2_roots : 0
};
});
$scope.predicate = 'Run';
$scope.reverse = false;
});
moarProfApp.controller('OSRDeoptController', function ($scope) {
// Walk call graph to build data.
var idToOSR = {};
var idToDeoptOne = {};
var idToDeoptAll = {};
var maxOSR = 1;
var maxDeoptOne = 1;
var maxDeoptAll = 1;
function walkCallGraphNode(node) {
if (!idToOSR[node.id]) {
idToOSR[node.id] = 0;
idToDeoptOne[node.id] = 0;
idToDeoptAll[node.id] = 0;
}
idToOSR[node.id] += node.osr || 0;
idToDeoptOne[node.id] += node.deopt_one || 0;
idToDeoptAll[node.id] += node.deopt_all || 0;
if (idToOSR[node.id] > maxOSR)
maxOSR = idToOSR[node.id];
if (idToDeoptOne[node.id] > maxDeoptOne)
maxDeoptOne = idToDeoptOne[node.id];
if (idToDeoptAll[node.id] > maxDeoptAll)
maxDeoptAll = idToDeoptAll[node.id];
if (node.callees)
node.callees.map(walkCallGraphNode);
}
walkCallGraphNode(rawData[0].call_graph);
// Build up OSR, deopt one, and deopt all tables.
var osrs = [];
var deoptOnes = [];
var deoptAlls = [];
for (id in idToOSR) {
if (idToOSR[id] > 0) {
osrs.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToOSR[id],
Percent: Math.round(100 * idToOSR[id] / maxOSR)
});
}
if (idToDeoptOne[id] > 0) {
deoptOnes.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToDeoptOne[id],
Percent: Math.round(100 * idToDeoptOne[id] / maxDeoptOne)
});
}
if (idToDeoptAll[id] > 0) {
deoptAlls.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToDeoptAll[id],
Percent: Math.round(100 * idToDeoptAll[id] / maxDeoptAll)
});
}
}
$scope.OSRs = osrs;
$scope.DeoptOnes = deoptOnes;
$scope.DeoptAlls = deoptAlls;
$scope.predicate = 'Count';
$scope.reverse = true;
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment