Skip to content

Instantly share code, notes, and snippets.

@khare-ashwini
Last active December 17, 2015 12:59
Show Gist options
  • Save khare-ashwini/5614340 to your computer and use it in GitHub Desktop.
Save khare-ashwini/5614340 to your computer and use it in GitHub Desktop.
Firefox memory Consumption Donut
// Generated by CoffeeScript 1.6.1
(function() {
//D3 template
var width = 1200,
height = 800,
radius = 300;
var color = d3.scale.ordinal()
.range(["rgb(247, 155, 19)", "rgb(231, 138, 0)", "rgb(240, 191, 67)", "rgb(218, 122, 85)", "rgb(128, 200, 223)", "rgb(91, 172, 197)", "rgb(5, 146, 190)"]);
var arc = d3.svg.arc()
.outerRadius(radius - 10)
.innerRadius(radius - 120);
var pie = d3.layout.pie()
.sort(null)
.value(function(d) { return d.memory; });
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
var gEnter = svg.append("g")
.attr("transform", "translate(" + 400 + "," + 300 + ")");
var data, process,
_this = this;
/*
d3 visualization
*/
data = '';
d3.json('memory-report.json', function(json) {
return process(json);
});
process = function(json) {
var r, re, tabs, wprocess,
_this = this;
console.log('Process Json called');
console.log(json);
data = json;
re = /explicit\/window-objects\/*/;
wprocess = (function() {
var _i, _len, _ref, _results;
_ref = data.reports;
_results = [];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
r = _ref[_i];
if (r.path.match(re)) {
_results.push(r);
}
}
return _results;
})();
for(i in wprocess){
wprocess[i].path = wprocess[i].path.split('/').splice(0, 3).join('/');
}
console.log(wprocess);
tab = [];
$.each(wprocess, function(i, v) {
if ($.inArray(v.path, tab) == -1) {
tab.push(v.path);
}
});
tabs = [];
for(i in tab){
tabs.push({ 'path' : tab[i], 'memory' : 0 });
}
var total = 0;
for(i in wprocess){
for(j in tabs){
if(wprocess[i].path == tabs[j].path){
tabs[j]['memory'] += wprocess[i].amount;
total += wprocess[i].amount;
tabs[j]['color'] = color(tabs[j]['memory']);
break;
}
}
}
var g = gEnter.selectAll(".arc")
.data(pie(tabs))
.enter().append("g")
.attr("class", "arc");
g.append("path")
.transition()
.delay(500)
.attr("d", arc)
.style("fill", function(d) {
return color(d.data.memory); });
g.append("text")
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
.attr("dy", ".35em")
.style("text-anchor", "middle")
.text(function(d) { return d.data.memory + 'B'; });
svg.append("text")
.style('font-size','18px')
.attr("transform", "translate( 400,300 )")
.attr("dy", ".7em")
.style("text-anchor", "middle")
.text(function(d) { return total + 'B'; });
var legendContainer = svg.append('g')
.attr('transform', 'translate(600,200)');
var legend = legendContainer.selectAll('.legend')
.data(tabs)
.enter()
.append('g')
.attr('class','legend')
.attr('transform', function(d,i){ return "translate(20, "+i*20+")"; })
legend.append("rect")
.attr("x", 500 - 18)
.attr("width", 18)
.attr("height", 18)
.style("fill", function(d){ return d.color });
legend.append("text")
.attr("x", 500 - 24)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d.path.substring(d.path.indexOf('(') + 1,d.path.indexOf(',')); });
};
}).call(this);
<!doctype html>
<head>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.legend{
font: 12px arial;
}
.arc path {
stroke: #fff;
}
</style>
<title> Firefox Memory Utilization Graph </title>
</head>
<body>
</body>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="graph.js"></script>
{
"version": 1,
"hasMozMallocUsableSize": true,
"reports": [
{"process": "Main Process (pid 3603)", "path": "images-content-used-uncompressed", "kind": 2, "units": 0, "amount": 0, "description": "This is the sum of the 'explicit/images/content/used/uncompressed-heap' and 'explicit/images/content/used/uncompressed-nonheap' numbers. However, it is measured at a different time and so may give slightly different results."},
{"process": "Main Process (pid 3603)", "path": "resident-fast", "kind": 2, "units": 0, "amount": 139776000, "description": "This is the same measurement as 'resident', but it tries to be as fast as possible at the expense of accuracy. On most platforms this is identical to the 'resident' measurement, but on Mac it may over-count. You should use 'resident-fast' where you care about latency of collection (e.g. in telemetry). Otherwise you should use 'resident'."},
{"process": "Main Process (pid 3603)", "path": "explicit/startup-cache/data", "kind": 1, "units": 0, "amount": 3802256, "description": "Memory used by the startup cache for things other than the file mapping."},
{"process": "Main Process (pid 3603)", "path": "heap-unused", "kind": 2, "units": 0, "amount": 15809288, "description": "Memory mapped by the heap allocator that is not part of an active allocation. Much of this memory may be uncommitted -- that is, it does not take up space in physical memory or in the swap file."},
{"process": "Main Process (pid 3603)", "path": "explicit/telemetry", "kind": 1, "units": 0, "amount": 132896, "description": "Memory used by the telemetry system."},
{"process": "Main Process (pid 3603)", "path": "heap-committed", "kind": 2, "units": 0, "amount": 66887680, "description": "Memory mapped by the heap allocator that is committed, i.e. in physical memory or paged to disk. When 'heap-committed' is larger than 'heap-allocated', the difference between the two values is likely due to external fragmentation; that is, the allocator allocated a large block of memory and is unable to decommit it because a small part of that block is currently in use."},
{"process": "Main Process (pid 3603)", "path": "resident", "kind": 2, "units": 0, "amount": 139857920, "description": "Memory mapped by the process that is present in physical memory, also known as the resident set size (RSS). This is the best single figure to use when considering the memory resources used by the process, but it depends both on other processes being run and details of the OS kernel and so is best used for comparing the memory usage of a single process at different points in time."},
{"process": "Main Process (pid 3603)", "path": "gfx-textures", "kind": 2, "units": 0, "amount": 0, "description": "Memory used for storing GL textures."},
{"process": "Main Process (pid 3603)", "path": "explicit/xpcom/component-manager", "kind": 1, "units": 0, "amount": 223968, "description": "Memory used for the XPCOM component manager."},
{"process": "Main Process (pid 3603)", "path": "page-faults-soft", "kind": 2, "units": 2, "amount": 47466, "description": "The number of soft page faults (also known as 'minor page faults') that have occurred since the process started. A soft page fault occurs when the process tries to access a page which is present in physical memory but is not mapped into the process's address space. For instance, a process might observe soft page faults when it loads a shared library which is already present in physical memory. A process may experience many thousands of soft page faults even when the machine has plenty of available physical memory, and because the OS services a soft page fault without accessing the disk, they impact performance much less than hard page faults."},
{"process": "Main Process (pid 3603)", "path": "vsize", "kind": 2, "units": 0, "amount": 970452992, "description": "Memory mapped by the process, including code and data segments, the heap, thread stacks, memory explicitly mapped by the process via mmap and similar operations, and memory shared with other processes. This is the vsize figure as reported by 'top' and 'ps'. This figure is of limited use on Mac, where processes share huge amounts of memory with one another. But even on other operating systems, 'resident' is a much better measure of the memory resources used by the process."},
{"process": "Main Process (pid 3603)", "path": "page-faults-hard", "kind": 2, "units": 2, "amount": 8, "description": "The number of hard page faults (also known as 'major page faults') that have occurred since the process started. A hard page fault occurs when a process tries to access a page which is not present in physical memory. The operating system must access the disk in order to fulfill a hard page fault. When memory is plentiful, you should see very few hard page faults. But if the process tries to use more memory than your machine has available, you may see many thousands of hard page faults. Because accessing the disk is up to a million times slower than accessing RAM, the program may run very slowly when it is experiencing more than 100 or so hard page faults a second."},
{"process": "Main Process (pid 3603)", "path": "js-compartments/system", "kind": 2, "units": 1, "amount": 276, "description": "The number of JavaScript compartments for system code. The sum of this and 'js-compartments-user' might not match the number of compartments listed under 'js' if a garbage collection occurs at an inopportune time, but such cases should be rare."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-temporary-peak", "kind": 2, "units": 0, "amount": 1789952, "description": "The peak size of the transient storage in the main JSRuntime (the current size of which is reported as 'explicit/js-non-window/runtime/temporary')."},
{"process": "Main Process (pid 3603)", "path": "explicit/xpti-working-set", "kind": 1, "units": 0, "amount": 1163456, "description": "Memory used by the XPCOM typelib system."},
{"process": "Main Process (pid 3603)", "path": "heap-dirty", "kind": 2, "units": 0, "amount": 3801088, "description": "Memory which the allocator could return to the operating system, but hasn't. The allocator keeps this memory around as an optimization, so it doesn't have to ask the OS the next time it needs to fulfill a request. This value is typically not larger than a few megabytes."},
{"process": "Main Process (pid 3603)", "path": "explicit/script-namespace-manager", "kind": 1, "units": 0, "amount": 157984, "description": "Memory used for the script namespace manager."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/prefixset/goog-malware-shavar", "kind": 1, "units": 0, "amount": 806976, "description": "Memory used by a PrefixSet for UrlClassifier, in bytes."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/prefixset/goog-phish-shavar", "kind": 1, "units": 0, "amount": 618560, "description": "Memory used by a PrefixSet for UrlClassifier, in bytes."},
{"process": "Main Process (pid 3603)", "path": "ghost-windows", "kind": 2, "units": 1, "amount": 0, "description": "The number of ghost windows present (the number of nodes underneath explicit/window-objects/top(none)/ghost, modulo race conditions). A ghost window is not shown in any tab, does not share a domain with any non-detached windows, and has met these criteria for at least 60s (memory.ghost_window_timeout_seconds) or has survived a round of about:memory's minimize memory usage button.\n\nGhost windows can happen legitimately, but they are often indicative of leaks in the browser or add-ons."},
{"process": "Main Process (pid 3603)", "path": "heap-committed-unused-ratio", "kind": 2, "units": 3, "amount": 1614, "description": "Ratio of committed, unused bytes to allocated bytes; i.e., 'heap-committed-unused' / 'heap-allocated'. This measures the overhead of the heap allocator relative to amount of memory allocated."},
{"process": "Main Process (pid 3603)", "path": "resident-unique", "kind": 2, "units": 0, "amount": 127279104, "description": "Memory mapped by the process that is present in physical memory and not shared with any other processes. This is also known as the process's unique set size (USS). This is the amount of RAM we'd expect to be freed if we closed this process."},
{"process": "Main Process (pid 3603)", "path": "heap-committed-unused", "kind": 2, "units": 0, "amount": 9296648, "description": "Committed bytes which do not correspond to an active allocation; i.e., 'heap-committed' - 'heap-allocated'. Although the allocator will waste some space under any circumstances, a large value here may indicate that the heap is highly fragmented."},
{"process": "Main Process (pid 3603)", "path": "explicit/network/disk-cache", "kind": 1, "units": 0, "amount": 162304, "description": "Memory used by the network disk cache."},
{"process": "Main Process (pid 3603)", "path": "explicit/history-links-hashtable", "kind": 1, "units": 0, "amount": 9072, "description": "Memory used by the hashtable of observers Places uses to notify objects of changes to links' visited state."},
{"process": "Main Process (pid 3603)", "path": "explicit/network/memory-cache", "kind": 1, "units": 0, "amount": 130, "description": "Memory used by the network memory cache."},
{"process": "Main Process (pid 3603)", "path": "explicit/layout/style-sheet-cache", "kind": 1, "units": 0, "amount": 380704, "description": "Memory used for some built-in style sheets."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/prefixset/test-malware-simple", "kind": 1, "units": 0, "amount": 64, "description": "Memory used by a PrefixSet for UrlClassifier, in bytes."},
{"process": "Main Process (pid 3603)", "path": "explicit/xpcom/category-manager", "kind": 1, "units": 0, "amount": 52752, "description": "Memory used for the XPCOM category manager."},
{"process": "Main Process (pid 3603)", "path": "explicit/atom-tables", "kind": 1, "units": 0, "amount": 519440, "description": "Memory used by the dynamic and static atoms tables."},
{"process": "Main Process (pid 3603)", "path": "storage-sqlite", "kind": 2, "units": 0, "amount": 7091712, "description": "Memory used by SQLite."},
{"process": "Main Process (pid 3603)", "path": "js-compartments/user", "kind": 2, "units": 1, "amount": 11, "description": "The number of JavaScript compartments for user code. The sum of this and 'js-compartments-system' might not match the number of compartments listed under 'js' if a garbage collection occurs at an inopportune time, but such cases should be rare."},
{"process": "Main Process (pid 3603)", "path": "explicit/startup-cache/mapping", "kind": 0, "units": 0, "amount": 0, "description": "Memory used to hold the mapping of the startup cache from file. This memory is likely to be swapped out shortly after start-up."},
{"process": "Main Process (pid 3603)", "path": "explicit/dom/event-listener-managers-hash", "kind": 1, "units": 0, "amount": 24576, "description": "Memory used by the event listener manager's hash table."},
{"process": "Main Process (pid 3603)", "path": "explicit/preferences", "kind": 1, "units": 0, "amount": 289096, "description": "Memory used by the preferences system."},
{"process": "Main Process (pid 3603)", "path": "js-gc-heap", "kind": 2, "units": 0, "amount": 25165824, "description": "Memory used by the garbage-collected JavaScript heap."},
{"process": "Main Process (pid 3603)", "path": "explicit/spell-check", "kind": 1, "units": 0, "amount": 0, "description": "Memory used by the Hunspell spell checking engine. This number accounts for the memory in use by Hunspell's internal data structures."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/prefixset/test-phish-simple", "kind": 1, "units": 0, "amount": 64, "description": "Memory used by a PrefixSet for UrlClassifier, in bytes."},
{"process": "Main Process (pid 3603)", "path": "heap-allocated", "kind": 2, "units": 0, "amount": 57591736, "description": "Memory mapped by the heap allocator that is currently allocated to the application. This may exceed the amount of memory requested by the application because the allocator regularly rounds up request sizes. (The exact amount requested is not recorded.)"},
{"process": "Main Process (pid 3603)", "path": "explicit/layout/style-sheet-service", "kind": 1, "units": 0, "amount": 5648, "description": "Memory used for style sheets held by the style sheet service."},
{"process": "Main Process (pid 3603)", "path": "explicit/xpcom/effective-TLD-service", "kind": 1, "units": 0, "amount": 131152, "description": "Memory used by the effective TLD service."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/dom/element-nodes", "kind": 1, "units": 0, "amount": 512, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/dom/other", "kind": 1, "units": 0, "amount": 4480, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/style-sheets", "kind": 1, "units": 0, "amount": 304, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/element-nodes", "kind": 1, "units": 0, "amount": 124872, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/text-nodes", "kind": 1, "units": 0, "amount": 100784, "description": "Memory used by the text nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/comment-nodes", "kind": 1, "units": 0, "amount": 784, "description": "Memory used by the comment nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/other", "kind": 1, "units": 0, "amount": 11168, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/property-tables", "kind": 1, "units": 0, "amount": 960, "description": "Memory used for the property tables within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/style-sheets", "kind": 1, "units": 0, "amount": 481600, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/pres-shell", "kind": 1, "units": 0, "amount": 317592, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/line-boxes", "kind": 1, "units": 0, "amount": 4736, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 52632, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/style-contexts", "kind": 1, "units": 0, "amount": 35360, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/style-sets", "kind": 1, "units": 0, "amount": 263856, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 14480, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/frames/nsBlockFrame", "kind": 1, "units": 0, "amount": 10184, "description": "Memory used by frames of type nsBlockFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 22280, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/element-nodes", "kind": 1, "units": 0, "amount": 13296, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/text-nodes", "kind": 1, "units": 0, "amount": 3584, "description": "Memory used by the text nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/comment-nodes", "kind": 1, "units": 0, "amount": 720, "description": "Memory used by the comment nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/other", "kind": 1, "units": 0, "amount": 5456, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/style-sheets", "kind": 1, "units": 0, "amount": 18464, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/pres-shell", "kind": 1, "units": 0, "amount": 39824, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/line-boxes", "kind": 1, "units": 0, "amount": 1408, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 6480, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/style-contexts", "kind": 1, "units": 0, "amount": 6720, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/style-sets", "kind": 1, "units": 0, "amount": 162928, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/text-runs", "kind": 1, "units": 0, "amount": 2096, "description": "Memory used for text-runs (glyph layout) in the PresShell's frame tree, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 3312, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 8144, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/dom/element-nodes", "kind": 1, "units": 0, "amount": 1552, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/dom/comment-nodes", "kind": 1, "units": 0, "amount": 336, "description": "Memory used by the comment nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/dom/other", "kind": 1, "units": 0, "amount": 4768, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/style-sheets", "kind": 1, "units": 0, "amount": 304, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/pres-shell", "kind": 1, "units": 0, "amount": 49216, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/line-boxes", "kind": 1, "units": 0, "amount": 128, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 7992, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/style-contexts", "kind": 1, "units": 0, "amount": 4160, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/style-sets", "kind": 1, "units": 0, "amount": 154896, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 1696, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 2904, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/element-nodes", "kind": 1, "units": 0, "amount": 18112, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/text-nodes", "kind": 1, "units": 0, "amount": 8064, "description": "Memory used by the text nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/comment-nodes", "kind": 1, "units": 0, "amount": 576, "description": "Memory used by the comment nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/dom/other", "kind": 1, "units": 0, "amount": 7392, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/style-sheets", "kind": 1, "units": 0, "amount": 23016, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/pres-shell", "kind": 1, "units": 0, "amount": 62272, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/line-boxes", "kind": 1, "units": 0, "amount": 3328, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 9864, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/style-contexts", "kind": 1, "units": 0, "amount": 15360, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/style-sets", "kind": 1, "units": 0, "amount": 167488, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/text-runs", "kind": 1, "units": 0, "amount": 448, "description": "Memory used for text-runs (glyph layout) in the PresShell's frame tree, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 3872, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 17224, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/element-nodes", "kind": 1, "units": 0, "amount": 68608, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/text-nodes", "kind": 1, "units": 0, "amount": 18024, "description": "Memory used by the text nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/comment-nodes", "kind": 1, "units": 0, "amount": 904, "description": "Memory used by the comment nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/dom/other", "kind": 1, "units": 0, "amount": 9664, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/property-tables", "kind": 1, "units": 0, "amount": 1920, "description": "Memory used for the property tables within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/style-sheets", "kind": 1, "units": 0, "amount": 49680, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/pres-shell", "kind": 1, "units": 0, "amount": 68528, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/line-boxes", "kind": 1, "units": 0, "amount": 2496, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 12528, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/style-contexts", "kind": 1, "units": 0, "amount": 14240, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/style-sets", "kind": 1, "units": 0, "amount": 169360, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/text-runs", "kind": 1, "units": 0, "amount": 384, "description": "Memory used for text-runs (glyph layout) in the PresShell's frame tree, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 6528, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 14144, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/element-nodes", "kind": 1, "units": 0, "amount": 3952, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/text-nodes", "kind": 1, "units": 0, "amount": 4208, "description": "Memory used by the text nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/comment-nodes", "kind": 1, "units": 0, "amount": 336, "description": "Memory used by the comment nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/other", "kind": 1, "units": 0, "amount": 4960, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/style-sheets", "kind": 1, "units": 0, "amount": 4272, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/pres-shell", "kind": 1, "units": 0, "amount": 28768, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/line-boxes", "kind": 1, "units": 0, "amount": 1088, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 4536, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/style-contexts", "kind": 1, "units": 0, "amount": 5120, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/style-sets", "kind": 1, "units": 0, "amount": 150448, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 1776, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 6616, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/dom/element-nodes", "kind": 1, "units": 0, "amount": 512, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/dom/other", "kind": 1, "units": 0, "amount": 4592, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/style-sheets", "kind": 1, "units": 0, "amount": 304, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/element-nodes", "kind": 1, "units": 0, "amount": 410120, "description": "Memory used by the element nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/text-nodes", "kind": 1, "units": 0, "amount": 960, "description": "Memory used by the text nodes in a window's DOM."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/other", "kind": 1, "units": 0, "amount": 182832, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/property-tables", "kind": 1, "units": 0, "amount": 1440, "description": "Memory used for the property tables within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/style-sheets", "kind": 1, "units": 0, "amount": 526288, "description": "Memory used by style sheets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/pres-shell", "kind": 1, "units": 0, "amount": 331528, "description": "Memory used by layout's PresShell, along with any structures allocated in its arena and not measured elsewhere, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/line-boxes", "kind": 1, "units": 0, "amount": 9408, "description": "Memory used by line boxes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/rule-nodes", "kind": 1, "units": 0, "amount": 98856, "description": "Memory used by CSS rule nodes within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/style-contexts", "kind": 1, "units": 0, "amount": 62400, "description": "Memory used by style contexts within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/style-sets", "kind": 1, "units": 0, "amount": 545600, "description": "Memory used by style sets within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/text-runs", "kind": 1, "units": 0, "amount": 320, "description": "Memory used for text-runs (glyph layout) in the PresShell's frame tree, within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/pres-contexts", "kind": 1, "units": 0, "amount": 21376, "description": "Memory used for the PresContext in the PresShell's frame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/nsBoxFrame", "kind": 1, "units": 0, "amount": 23360, "description": "Memory used by frames of type nsBoxFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/nsContinuingTextFrame", "kind": 1, "units": 0, "amount": 14040, "description": "Memory used by frames of type nsContinuingTextFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/nsImageBoxFrame", "kind": 1, "units": 0, "amount": 9792, "description": "Memory used by frames of type nsImageBoxFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/nsMenuPopupFrame", "kind": 1, "units": 0, "amount": 8712, "description": "Memory used by frames of type nsMenuPopupFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/nsTextFrame", "kind": 1, "units": 0, "amount": 9184, "description": "Memory used by frames of type nsTextFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/nsXULScrollFrame", "kind": 1, "units": 0, "amount": 11424, "description": "Memory used by frames of type nsXULScrollFrame within a window."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/layout/frames/sundries", "kind": 1, "units": 0, "amount": 38016, "description": "The sum of all memory used by frames which were too small to be shown individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/dom/event-targets", "kind": 1, "units": 0, "amount": 256, "description": "Memory used by the event targets table in a window's DOM, and the objects it points to, which include XHRs."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/dom/other", "kind": 1, "units": 0, "amount": 1024, "description": "Memory used by a window's DOM that isn't measured by the other 'dom/' numbers."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 26464, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 11952, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/gc-heap/strings/normal", "kind": 0, "units": 0, "amount": 532224, "description": "Memory on the garbage-collected JavaScript heap that holds normal string headers. String headers contain various pieces of information about a string, but do not contain (except in the case of very short strings) the string characters; characters in longer strings are counted under 'gc-heap/string-chars' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/gc-heap/strings/short", "kind": 0, "units": 0, "amount": 1387904, "description": "Memory on the garbage-collected JavaScript heap that holds over-sized string headers, in which string characters are stored inline."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/string-chars/non-huge", "kind": 1, "units": 0, "amount": 710784, "description": "Memory allocated to hold characters of strings whose characters take up less than than 8192 bytes of memory.\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/string-chars/huge/string(length=9258, \"data:image\\/png;base64,iVBORw0KG...\")", "kind": 1, "units": 0, "amount": 20480, "description": "Memory allocated to hold characters of a length-9258 string which begins \"data:image/png;base64,iVBORw0KG\".\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d20ad000)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7536, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d3e1e800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 35120, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75d3e1e800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 5528, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 226312, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 2772032, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/gc-heap/strings/normal", "kind": 0, "units": 0, "amount": 87424, "description": "Memory on the garbage-collected JavaScript heap that holds normal string headers. String headers contain various pieces of information about a string, but do not contain (except in the case of very short strings) the string characters; characters in longer strings are counted under 'gc-heap/string-chars' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/gc-heap/strings/short", "kind": 0, "units": 0, "amount": 13312, "description": "Memory on the garbage-collected JavaScript heap that holds over-sized string headers, in which string characters are stored inline."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 345968, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/string-chars/non-huge", "kind": 1, "units": 0, "amount": 108832, "description": "Memory allocated to hold characters of strings whose characters take up less than than 8192 bytes of memory.\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75cefb5800)/string-chars/huge/string(length=4595, \"{\"windows\":[{\"tabs\":[{\"entries\"...\")", "kind": 1, "units": 0, "amount": 12288, "description": "Memory allocated to hold characters of a length-4595 string which begins \"{\"windows\":[{\"tabs\":[{\"entries\"\".\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/js-zone(0x7f75bfef2800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 63792, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/js-zone(0x7f75bfef2800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8624, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/js-zone(0x7f75bed94800)/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 36360, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/js-zone(0x7f75bed94800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 459216, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/js-zone(0x7f75bed94800)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 16464, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/js-zone(0x7f75bed94800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 832, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/js-zone(0x7f75bed94800)/other-sundries", "kind": 1, "units": 0, "amount": 528, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 20632, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 294776, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/gc-heap/strings/short", "kind": 0, "units": 0, "amount": 10624, "description": "Memory on the garbage-collected JavaScript heap that holds over-sized string headers, in which string characters are stored inline."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 40600, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/type-pool", "kind": 1, "units": 0, "amount": 32768, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/string-chars/huge/string(length=2627, \"<div id=\"tabzilla-panel\" class=...\")", "kind": 1, "units": 0, "amount": 8192, "description": "Memory allocated to hold characters of a length-2627 string which begins \"<div id=\"tabzilla-panel\" class=\".\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 2560, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/js-zone(0x7f75bc8b1800)/other-sundries", "kind": 1, "units": 0, "amount": 1072, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/js-zone(0x7f75bbcea800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 46760, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/js-zone(0x7f75bbcea800)/type-pool", "kind": 1, "units": 0, "amount": 8192, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/js-zone(0x7f75bbcea800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 4280, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/js-zone(0x7f75bc0bc800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 65360, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/js-zone(0x7f75bc0bc800)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 8568, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/js-zone(0x7f75bc0bc800)/type-pool", "kind": 1, "units": 0, "amount": 8192, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/js-zone(0x7f75bc0bc800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 6248, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 13424, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 149976, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/gc-heap/strings/short", "kind": 0, "units": 0, "amount": 10176, "description": "Memory on the garbage-collected JavaScript heap that holds over-sized string headers, in which string characters are stored inline."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 26096, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/type-pool", "kind": 1, "units": 0, "amount": 24576, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 2336, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/js-zone(0x7f75bfe58800)/other-sundries", "kind": 1, "units": 0, "amount": 736, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75bbb55000)/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 11576, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75bbb55000)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 53096, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75bbb55000)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 22400, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75bbb55000)/type-pool", "kind": 1, "units": 0, "amount": 40960, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75bbb55000)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 384, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(0x7f75bbb55000)/other-sundries", "kind": 1, "units": 0, "amount": 4368, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d20ad000)/compartment(atoms)/other-sundries", "kind": 1, "units": 0, "amount": 1440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 16704, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 41760, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 26400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 38800, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 10520, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 10432, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/objects-extra/slots", "kind": 1, "units": 0, "amount": 14016, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 13312, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/script-data", "kind": 1, "units": 0, "amount": 9000, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 3152, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75d3e1e800)/compartment(null-principal)/other-sundries", "kind": 1, "units": 0, "amount": 9584, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(moz-nullprincipal:{68c5ec68-e91c-45b7-983d-528ca55846e0})/gc-heap/sundries", "kind": 0, "units": 0, "amount": 6336, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(moz-nullprincipal:{68c5ec68-e91c-45b7-983d-528ca55846e0})/other-sundries", "kind": 1, "units": 0, "amount": 6440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\BrowserElementParent.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9056, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\BrowserElementParent.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15536, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\BrowserElementParent.js)/other-sundries", "kind": 1, "units": 0, "amount": 15056, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Services.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8320, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Services.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Services.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18432, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Services.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 10040, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 63360, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 38624, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/gc-heap/objects/dense-array", "kind": 0, "units": 0, "amount": 10112, "description": "Memory on the garbage-collected JavaScript heap that holds dense array objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/gc-heap/objects/cross-compartment-wrapper", "kind": 0, "units": 0, "amount": 12480, "description": "Memory on the garbage-collected JavaScript heap that holds cross-compartment wrapper objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 15080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 67680, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 20480, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15400, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12048, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementParent.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13760, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementParent.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 10600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementParent.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementParent.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16800, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementPromptService.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13760, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementPromptService.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 8600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementPromptService.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18776, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\BrowserElementPromptService.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 18152, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 34080, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 21800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 18320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 8320, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12176, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js)/other-sundries", "kind": 1, "units": 0, "amount": 22776, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Preferences.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21536, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Preferences.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Preferences.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Preferences.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19320, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Preferences.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12952, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\utils.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16512, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\utils.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\utils.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19448, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\utils.js)/other-sundries", "kind": 1, "units": 0, "amount": 19808, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 20736, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9960, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20704, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js)/other-sundries", "kind": 1, "units": 0, "amount": 19624, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\devtools\\Console.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 12096, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\devtools\\Console.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 23264, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\devtools\\Console.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15416, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17792, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 10856, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 24096, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12160, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17112, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16064, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14656, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 9600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm)/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 8192, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22160, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 24696, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 8848, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11904, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 8360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9088, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15096, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ctypes.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 5104, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_unix_allthreads.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11072, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_unix_allthreads.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18864, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\osfile_unix_allthreads.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 13616, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\ospath_unix_back.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13888, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\ospath_unix_back.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15904, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\ospath_unix_back.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12704, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 20192, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 13320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 9472, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10600, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11760, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\log4moz.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 20544, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\log4moz.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 11400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\log4moz.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11600, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\log4moz.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20448, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\log4moz.js)/other-sundries", "kind": 1, "units": 0, "amount": 29376, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NetUtil.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9568, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NetUtil.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18184, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NetUtil.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15544, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\FileUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8960, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\FileUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15504, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\FileUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14616, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsIDService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8352, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsIDService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13536, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsIDService.js)/other-sundries", "kind": 1, "units": 0, "amount": 14640, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\NavigatorPropertyHelper.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13952, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\NavigatorPropertyHelper.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 8280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\NavigatorPropertyHelper.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9552, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\NavigatorPropertyHelper.js)/other-sundries", "kind": 1, "units": 0, "amount": 15784, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\Weave.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9120, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\Weave.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16648, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\Weave.js)/other-sundries", "kind": 1, "units": 0, "amount": 15296, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14880, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 10600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12776, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js)/other-sundries", "kind": 1, "units": 0, "amount": 12656, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PrivateBrowsingUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8704, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PrivateBrowsingUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13968, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PrivateBrowsingUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11736, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 8560, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 20288, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 21000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16280, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js)/other-sundries", "kind": 1, "units": 0, "amount": 22856, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\SignInToWebsite.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9696, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\SignInToWebsite.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16288, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\SignInToWebsite.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12392, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStartup.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16192, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStartup.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 13400, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStartup.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStartup.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18240, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStartup.js)/other-sundries", "kind": 1, "units": 0, "amount": 12904, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\TelemetryStopwatch.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13312, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\TelemetryStopwatch.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19824, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\TelemetryStopwatch.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15512, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\addonManager.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9504, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\addonManager.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18392, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\addonManager.js)/other-sundries", "kind": 1, "units": 0, "amount": 16240, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 9200, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 34080, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 35400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 21240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 8192, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8216, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonManager.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 29840, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\TelemetryTimestamps.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 12064, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\TelemetryTimestamps.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14936, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\TelemetryTimestamps.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11808, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonLogging.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 17312, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonLogging.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9480, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonLogging.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14544, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonLogging.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 19240, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 27792, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 64960, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 76600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 39920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 11720, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 14208, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/objects-extra/slots", "kind": 1, "units": 0, "amount": 18944, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 10656, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/script-data", "kind": 1, "units": 0, "amount": 18728, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11608, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 23584, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 22496, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 15000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12200, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17640, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16928, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21312, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 10000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 13320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17320, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14464, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 65120, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 43584, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/objects/dense-array", "kind": 0, "units": 0, "amount": 34720, "description": "Memory on the garbage-collected JavaScript heap that holds dense array objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 9000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 28360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 19648, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/objects-extra/slots", "kind": 1, "units": 0, "amount": 19968, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8192, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js)/other-sundries", "kind": 1, "units": 0, "amount": 19600, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], XPConnect Junk Compartment)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 6992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], XPConnect Junk Compartment)/other-sundries", "kind": 1, "units": 0, "amount": 6440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ChromeManifestParser.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9280, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ChromeManifestParser.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18288, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ChromeManifestParser.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14664, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 57408, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 26600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 39080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 22144, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/objects-extra/slots", "kind": 1, "units": 0, "amount": 11008, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 8896, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 26624, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18480, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 17440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsURLFormatter.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 17408, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsURLFormatter.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsURLFormatter.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsURLFormatter.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17304, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsURLFormatter.js)/other-sundries", "kind": 1, "units": 0, "amount": 10872, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 39904, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 26240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 19136, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 8256, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 26624, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16048, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16064, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CertUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9152, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CertUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15608, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CertUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15112, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 23232, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 13080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15416, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js)/other-sundries", "kind": 1, "units": 0, "amount": 16040, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21984, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 15000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18256, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js)/other-sundries", "kind": 1, "units": 0, "amount": 17592, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720))/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 16320, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16256, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 28000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720))/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16368, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720))/other-sundries", "kind": 1, "units": 0, "amount": 26248, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9024, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11496, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/other-sundries", "kind": 1, "units": 0, "amount": 10680, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 30432, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 24128, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/objects/cross-compartment-wrapper", "kind": 0, "units": 0, "amount": 35456, "description": "Memory on the garbage-collected JavaScript heap that holds cross-compartment wrapper objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 34040, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/objects-extra/slots", "kind": 1, "units": 0, "amount": 32320, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 49152, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 40960, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18944, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202))/other-sundries", "kind": 1, "units": 0, "amount": 9552, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\addon\\runner.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16472, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\addon\\runner.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 13640, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8736, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15352, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 17344, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\platform\\xpcom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9696, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\platform\\xpcom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17936, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\platform\\xpcom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 17984, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\object.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18520, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\object.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11296, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 25408, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 17840, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 13568, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 14336, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 8192, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13896, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 19064, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\uuid.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11912, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\uuid.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10144, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\namespace.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16904, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\namespace.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 16256, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14592, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9816, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 15936, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\file.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 24656, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\file.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 14456, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\byte-streams.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13360, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\byte-streams.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9656, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\text-streams.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16744, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\text-streams.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 12296, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\runtime.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11936, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\runtime.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9944, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\environment.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17240, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\environment.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11128, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\unload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8416, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\unload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15584, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\unload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 15544, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\self.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9088, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\self.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10680, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\self.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9928, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12784, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10296, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14752, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18304, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11992, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\globals.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16656, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\globals.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11944, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\console\\plain-text.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17200, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\console\\plain-text.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 13432, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\console\\traceback.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12792, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\console\\traceback.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9928, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\DownloadsStartup.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9248, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\DownloadsStartup.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17496, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\DownloadsStartup.js)/other-sundries", "kind": 1, "units": 0, "amount": 16136, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\messageWakeupService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14496, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\messageWakeupService.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\messageWakeupService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10928, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\messageWakeupService.js)/other-sundries", "kind": 1, "units": 0, "amount": 15960, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateServiceStub.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8192, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateServiceStub.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13032, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateServiceStub.js)/other-sundries", "kind": 1, "units": 0, "amount": 14616, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateTimerManager.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 19904, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateTimerManager.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 14240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateTimerManager.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateTimerManager.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15184, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateTimerManager.js)/other-sundries", "kind": 1, "units": 0, "amount": 11024, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21120, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 9472, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/objects-extra/elements/non-asm.js", "kind": 1, "units": 0, "amount": 8192, "description": "Memory allocated for non-asm.js object element arrays, which are used to represent indexed object properties."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 14336, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14792, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 13192, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Task.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9216, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Task.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16768, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Task.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16080, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\distribution.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10592, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\distribution.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\distribution.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 23768, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\distribution.js)/other-sundries", "kind": 1, "units": 0, "amount": 8832, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\UserAgentOverrides.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9568, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\UserAgentOverrides.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16880, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\UserAgentOverrides.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15376, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\webappsUI.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8864, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\webappsUI.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15832, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\webappsUI.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15432, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 27168, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 39200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 13720, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/script-data", "kind": 1, "units": 0, "amount": 8864, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19512, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Webapps.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16832, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ActivitiesService.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11584, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ActivitiesService.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 23376, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ActivitiesService.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16776, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\IndexedDBHelper.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9248, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\IndexedDBHelper.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15488, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\IndexedDBHelper.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11592, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ActivitiesServiceFilter.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18944, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ActivitiesServiceFilter.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 10232, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppsUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13760, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppsUtils.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 9800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppsUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17784, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppsUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16824, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionsInstaller.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 23432, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionsInstaller.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 17056, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionSettings.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9088, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionSettings.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15944, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionSettings.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15912, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionsTable.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8416, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionsTable.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9880, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionsTable.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PermissionsTable.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15776, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\OfflineCacheInstaller.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9952, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\OfflineCacheInstaller.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22512, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\OfflineCacheInstaller.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15232, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SystemMessagePermissionsChecker.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8256, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SystemMessagePermissionsChecker.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19512, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SystemMessagePermissionsChecker.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14464, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppDownloadManager.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8608, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppDownloadManager.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13736, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\AppDownloadManager.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11640, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\FreeSpaceWatcher.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8416, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\FreeSpaceWatcher.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14016, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\FreeSpaceWatcher.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11848, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WebappsInstaller.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11392, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WebappsInstaller.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 24368, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WebappsInstaller.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16048, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WebappOSUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8256, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WebappOSUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12864, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WebappOSUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11720, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PageThumbs.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 22272, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PageThumbs.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PageThumbs.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PageThumbs.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13888, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PageThumbs.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 22728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 8208, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 34784, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 44200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11840, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 8704, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 14336, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12392, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 27640, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 10080, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 17632, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 14000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 14360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10248, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 17960, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\BrowserNewTabPreloader.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 12416, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\BrowserNewTabPreloader.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 23712, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\BrowserNewTabPreloader.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15840, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js\\PdfJs.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10720, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js\\PdfJs.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js\\PdfJs.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20856, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js\\PdfJs.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11192, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfStreamConverter.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15136, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfStreamConverter.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfStreamConverter.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18680, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfStreamConverter.js)/other-sundries", "kind": 1, "units": 0, "amount": 19088, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfRedirector.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9120, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfRedirector.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15552, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\pdf.js.components\\PdfRedirector.js)/other-sundries", "kind": 1, "units": 0, "amount": 14976, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\webrtcUI.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9568, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\webrtcUI.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17072, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\webrtcUI.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14928, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluralForm.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10912, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluralForm.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20296, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\PluralForm.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11480, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserContentHandler.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16704, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserContentHandler.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10400, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserContentHandler.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserContentHandler.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19176, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserContentHandler.js)/other-sundries", "kind": 1, "units": 0, "amount": 11504, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\jsconsole-clhandler.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20904, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\jsconsole-clhandler.js)/other-sundries", "kind": 1, "units": 0, "amount": 13872, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\recording-cmdline.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\recording-cmdline.js)/other-sundries", "kind": 1, "units": 0, "amount": 11888, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSetDefaultBrowser.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20904, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSetDefaultBrowser.js)/other-sundries", "kind": 1, "units": 0, "amount": 13856, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsDefaultCLH.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8288, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsDefaultCLH.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13608, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsDefaultCLH.js)/other-sundries", "kind": 1, "units": 0, "amount": 12008, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\scrollbar.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 416, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\scrollbar.xml)/other-sundries", "kind": 1, "units": 0, "amount": 3328, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 34000, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 94336, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 288000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/tree/non-global-parented", "kind": 0, "units": 0, "amount": 12440, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is not the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/script-data", "kind": 1, "units": 0, "amount": 62376, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 3400, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\browser.xul)/other-sundries", "kind": 1, "units": 0, "amount": 15232, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\RecentWindow.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19856, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\RecentWindow.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11712, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\InlineSpellChecker.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11616, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\InlineSpellChecker.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 8360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\InlineSpellChecker.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14200, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\InlineSpellChecker.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14616, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 37920, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 25160, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 13120, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9984, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19536, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/other-sundries", "kind": 1, "units": 0, "amount": 7512, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\editMenuOverlay.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7224, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\editMenuOverlay.xul)/other-sundries", "kind": 1, "units": 0, "amount": 5424, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\baseMenuOverlay.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20400, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\baseMenuOverlay.xul)/other-sundries", "kind": 1, "units": 0, "amount": 8584, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\placesOverlay.xul)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 12864, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\placesOverlay.xul)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 33200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\placesOverlay.xul)/script-data", "kind": 1, "units": 0, "amount": 9464, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\placesOverlay.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13760, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\placesOverlay.xul)/other-sundries", "kind": 1, "units": 0, "amount": 8352, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21632, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 17000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17216, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 17976, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ForgetAboutSite.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8416, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ForgetAboutSite.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15880, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ForgetAboutSite.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12736, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\general.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 8800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\general.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11736, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\general.xml)/other-sundries", "kind": 1, "units": 0, "amount": 9352, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\popup.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21544, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\popup.xml)/other-sundries", "kind": 1, "units": 0, "amount": 10920, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\stringbundle.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8304, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\stringbundle.xml)/other-sundries", "kind": 1, "units": 0, "amount": 5584, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\urlbarBindings.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 15800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\urlbarBindings.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20496, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\urlbarBindings.xml)/other-sundries", "kind": 1, "units": 0, "amount": 13624, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\autocomplete.xml)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10368, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\autocomplete.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 23400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\autocomplete.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11376, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\autocomplete.xml)/other-sundries", "kind": 1, "units": 0, "amount": 13560, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\notification.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15040, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\notification.xml)/other-sundries", "kind": 1, "units": 0, "amount": 8064, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\toolbar.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16888, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\toolbar.xml)/other-sundries", "kind": 1, "units": 0, "amount": 9448, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\menu.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10728, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\menu.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7512, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\text.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17344, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\text.xml)/other-sundries", "kind": 1, "units": 0, "amount": 9328, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\menu.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7384, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\menu.xml)/other-sundries", "kind": 1, "units": 0, "amount": 5536, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\toolbarbutton.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 6648, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\toolbarbutton.xml)/other-sundries", "kind": 1, "units": 0, "amount": 5360, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\button.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14112, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\button.xml)/other-sundries", "kind": 1, "units": 0, "amount": 6528, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\textbox.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\textbox.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14936, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\textbox.xml)/other-sundries", "kind": 1, "units": 0, "amount": 9576, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\platformHTMLBindings.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 416, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\platformHTMLBindings.xml)/other-sundries", "kind": 1, "units": 0, "amount": 3328, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\search\\search.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16336, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\search\\search.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7472, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\scrollbox.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15976, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\scrollbox.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7152, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\tabbrowser.xml)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15360, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\tabbrowser.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 40200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\tabbrowser.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12320, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\tabbrowser.xml)/other-sundries", "kind": 1, "units": 0, "amount": 16576, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\tabbox.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 10200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\tabbox.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11040, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\tabbox.xml)/other-sundries", "kind": 1, "units": 0, "amount": 8664, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\splitter.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 416, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\splitter.xml)/other-sundries", "kind": 1, "units": 0, "amount": 3328, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\socialchat.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16784, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\socialchat.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7344, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\browser.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 13400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\browser.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14776, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\browser.xml)/other-sundries", "kind": 1, "units": 0, "amount": 8336, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\resizer.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 6648, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\resizer.xml)/other-sundries", "kind": 1, "units": 0, "amount": 5360, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 37920, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 25200, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 12992, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9984, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18656, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/other-sundries", "kind": 1, "units": 0, "amount": 7224, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 26880, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 13600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 17000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 10240, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20736, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js)/other-sundries", "kind": 1, "units": 0, "amount": 22408, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 18272, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 76800, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 41200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 43040, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 31296, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/objects-extra/slots", "kind": 1, "units": 0, "amount": 15744, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 17600, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 32768, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/script-data", "kind": 1, "units": 0, "amount": 9320, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17376, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js)/other-sundries", "kind": 1, "units": 0, "amount": 13328, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WindowDraggingUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20488, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\WindowDraggingUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11648, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeConsumer.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15936, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeConsumer.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10720, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeConsumer.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11520, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeConsumer.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16648, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeImageOptimizer.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15296, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeImageOptimizer.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeImageOptimizer.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13000, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\LightweightThemeImageOptimizer.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16848, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormHistory.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13696, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormHistory.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 8600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormHistory.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22320, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormHistory.js)/other-sundries", "kind": 1, "units": 0, "amount": 20320, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 37920, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 25200, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 12992, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9984, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18656, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/other-sundries", "kind": 1, "units": 0, "amount": 7256, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\Social.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14432, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\Social.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 11600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\Social.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18000, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\Social.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 19440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SocialService.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21472, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SocialService.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 20600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SocialService.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9960, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SocialService.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SocialService.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16632, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SocialService.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14376, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsLoginManager.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15232, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsLoginManager.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 11800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsLoginManager.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsLoginManager.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11496, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsLoginManager.js)/other-sundries", "kind": 1, "units": 0, "amount": 21944, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 19456, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 18800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js)/other-sundries", "kind": 1, "units": 0, "amount": 18512, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefStore.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9504, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefStore.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16280, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefStore.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15104, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 22176, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 14800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 13720, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 10240, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14752, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 19280, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\NetworkPrioritizer.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10240, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\NetworkPrioritizer.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17904, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\NetworkPrioritizer.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14952, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStore.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 24992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStore.js)/other-sundries", "kind": 1, "units": 0, "amount": 18656, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 20784, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 66752, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 46600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 30320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 10200, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 23424, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/objects-extra/slots", "kind": 1, "units": 0, "amount": 13824, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/script-data", "kind": 1, "units": 0, "amount": 9592, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 12288, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18984, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 21520, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\debug.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18000, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\debug.js)/other-sundries", "kind": 1, "units": 0, "amount": 11080, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8288, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13048, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 12800, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\locale.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13376, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\locale.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9200, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\locale.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9544, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\locale.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 15136, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\preferences\\service.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18384, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\preferences\\service.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11344, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 24064, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 25400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11640, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18552, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 18784, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 22688, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 14080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 10240, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20296, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 20912, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10112, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17424, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js)/other-sundries", "kind": 1, "units": 0, "amount": 16552, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 19744, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 17360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js)/objects-extra/slots", "kind": 1, "units": 0, "amount": 8768, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 14336, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 26608, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js)/other-sundries", "kind": 1, "units": 0, "amount": 15592, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\main.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9952, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\main.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\main.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22520, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\main.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/other-sundries", "kind": 1, "units": 0, "amount": 14528, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\html.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9472, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\html.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11552, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\html.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11496, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10328, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8752, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resources:\\\\\\modules\\@l10n\\data.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resources:\\\\\\modules\\@l10n\\data.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\prefs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10560, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\prefs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9320, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\observer-service.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21952, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\observer-service.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 13696, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\main.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13952, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\main.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19088, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\main.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 18008, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tabs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tabs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\xul-app.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13728, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\xul-app.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10384, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tabs-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9912, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tabs-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8960, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9184, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17480, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 17672, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 18464, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/cross-compartment-wrapper", "kind": 0, "units": 0, "amount": 35040, "description": "Memory on the garbage-collected JavaScript heap that holds cross-compartment wrapper objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 21880, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 12280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 11968, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/objects-extra/slots", "kind": 1, "units": 0, "amount": 14464, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 13024, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/dict-tables", "kind": 1, "units": 0, "amount": 9504, "description": "Memory allocated for the property tables that belong to shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 40960, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8392, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 3296, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 10096, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10336, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/cross-compartment-wrapper", "kind": 0, "units": 0, "amount": 14464, "description": "Memory on the garbage-collected JavaScript heap that holds cross-compartment wrapper objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 19880, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/objects-extra/slots", "kind": 1, "units": 0, "amount": 18752, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 27712, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 20480, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12168, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8864, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\list.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9248, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\list.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15392, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\list.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 17664, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10528, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 8192, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 31168, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 23224, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\light-traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16224, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\light-traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11160, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\light-traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15872, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\light-traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 24832, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\tabs-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17824, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\tabs-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 17440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15136, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 8512, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/objects-extra/slots", "kind": 1, "units": 0, "amount": 8448, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/dict-tables", "kind": 1, "units": 0, "amount": 12576, "description": "Memory allocated for the property tables that belong to shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17896, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11912, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\lang\\functional.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17920, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\lang\\functional.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 12336, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\timers.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21440, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\timers.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 15600, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 12640, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13720, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10856, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\thumbnail.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12008, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\thumbnail.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9152, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\data.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13768, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\data.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11648, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\base64.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11248, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\base64.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9128, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\deprecate.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12000, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\deprecate.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10848, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15392, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19592, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 13936, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\window\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9760, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\window\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17104, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\window\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 14368, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\array.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11896, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\array.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9080, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\common.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9664, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\common.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8896, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\api-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21752, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\api-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 14312, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\memory.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11456, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\memory.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\memory.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 15184, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\observer.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20552, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\observer.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 12240, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events\\assembler.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10792, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events\\assembler.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9800, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\dom\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11832, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\dom\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9144, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\window-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9472, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\window-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19776, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\window-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 19328, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\errors.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12808, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\errors.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10136, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\observer.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18864, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\observer.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11936, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\dom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12064, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\dom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10424, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\private-browsing\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15336, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\private-browsing\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 12160, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\event\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14304, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\event\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11048, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12896, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10136, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10880, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 8192, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 25056, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 17648, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11872, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21576, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 21120, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11264, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20912, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10184, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\worker.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 18144, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\worker.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 9080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\worker.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19688, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\worker.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 23888, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\cortex.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13344, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\cortex.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15168, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\cortex.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11776, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9600, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13072, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 13896, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\helpers.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9800, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\helpers.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8904, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\registry.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 20328, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\registry.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 12776, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod\\match-pattern.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9472, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod\\match-pattern.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod\\match-pattern.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11544, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\ui.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 25464, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\ui.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 16624, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\panel.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11072, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\panel.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21920, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\panel.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 20232, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\content.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8992, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\content.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\symbiont.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13600, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\symbiont.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15920, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\symbiont.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 14264, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\frame\\hidden-frame.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9472, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\frame\\hidden-frame.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18408, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\frame\\hidden-frame.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 18040, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\simple-storage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 10432, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\simple-storage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21496, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\simple-storage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 18056, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\upload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9568, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\upload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 8904, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\request.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11168, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\request.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22224, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\request.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 14280, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\querystring.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9792, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\querystring.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14920, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\querystring.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11320, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\event\\target.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14568, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\event\\target.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11048, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\xhr.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9952, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\xhr.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18904, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\xhr.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11864, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\md5.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15560, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\md5.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 9792, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\notifications.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14272, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\notifications.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 11264, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\collection.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8224, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\collection.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13032, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\collection.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179))/other-sundries", "kind": 1, "units": 0, "amount": 10864, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPrompter.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15360, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPrompter.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 11200, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPrompter.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 8360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPrompter.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12456, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPrompter.js)/other-sundries", "kind": 1, "units": 0, "amount": 22976, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\history\\history-panel.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8744, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\history\\history-panel.xul)/other-sundries", "kind": 1, "units": 0, "amount": 5752, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\tree.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16472, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\browser\\content\\places\\tree.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7288, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\tree.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 11800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\tree.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11000, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\tree.xml)/other-sundries", "kind": 1, "units": 0, "amount": 8864, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 36960, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 24920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 12864, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9984, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16656, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml)/other-sundries", "kind": 1, "units": 0, "amount": 6968, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\commonDialog.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7760, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\commonDialog.xul)/other-sundries", "kind": 1, "units": 0, "amount": 5768, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CommonDialog.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16416, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CommonDialog.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10840, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CommonDialog.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14712, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\CommonDialog.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\dialog.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15288, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\dialog.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7064, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\checkbox.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7440, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\checkbox.xml)/other-sundries", "kind": 1, "units": 0, "amount": 5408, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\storage-mozStorage.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 16768, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\storage-mozStorage.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 12600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\storage-mozStorage.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\storage-mozStorage.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17144, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\storage-mozStorage.js)/other-sundries", "kind": 1, "units": 0, "amount": 24544, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\AboutHomeUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13504, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\AboutHomeUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15424, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\AboutHomeUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12384, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\UpdateChannel.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19736, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\UpdateChannel.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11680, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\SiteSpecificUserAgent.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8352, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\SiteSpecificUserAgent.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13848, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\SiteSpecificUserAgent.js)/other-sundries", "kind": 1, "units": 0, "amount": 14848, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 12000, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22512, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22))/other-sundries", "kind": 1, "units": 0, "amount": 18016, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21200, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22))/other-sundries", "kind": 1, "units": 0, "amount": 16160, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21376, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12880, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 12032, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/objects-extra/slots", "kind": 1, "units": 0, "amount": 8896, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 13312, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15520, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js)/other-sundries", "kind": 1, "units": 0, "amount": 15480, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ConsoleAPIStorage.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9632, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ConsoleAPIStorage.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15840, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\ConsoleAPIStorage.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 14616, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesExpiration.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13600, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesExpiration.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10520, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesExpiration.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21360, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesExpiration.js)/other-sundries", "kind": 1, "units": 0, "amount": 20216, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStorage.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11168, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStorage.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 21080, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\SessionStorage.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15816, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\DocumentUtils.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9856, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\DocumentUtils.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17872, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\DocumentUtils.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 17408, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\XPathGenerator.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8544, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\XPathGenerator.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15224, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\sessionstore\\XPathGenerator.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 11728, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\scratchpad-manager.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8928, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\scratchpad-manager.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14496, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\scratchpad-manager.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12032, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SafeBrowsing.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 14848, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SafeBrowsing.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 8960, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SafeBrowsing.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 10936, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\SafeBrowsing.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 15976, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierListManager.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13568, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierListManager.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 8920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierListManager.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17624, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierListManager.js)/other-sundries", "kind": 1, "units": 0, "amount": 21848, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 30080, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 17000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 19880, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9216, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 10240, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19336, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js)/other-sundries", "kind": 1, "units": 0, "amount": 16664, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierHashCompleter.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 18112, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierHashCompleter.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 11720, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierHashCompleter.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierHashCompleter.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19728, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierHashCompleter.js)/other-sundries", "kind": 1, "units": 0, "amount": 11032, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\videocontrols.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 15400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\videocontrols.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16120, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\videocontrols.xml)/other-sundries", "kind": 1, "units": 0, "amount": 11256, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\scale.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12384, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\scale.xml)/other-sundries", "kind": 1, "units": 0, "amount": 5632, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\progressmeter.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9768, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\progressmeter.xml)/other-sundries", "kind": 1, "units": 0, "amount": 6400, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\framework\\target.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13888, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\framework\\target.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/scripts", "kind": 0, "units": 0, "amount": 11000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\framework\\target.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15960, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\framework\\target.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/other-sundries", "kind": 1, "units": 0, "amount": 16240, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9120, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14888, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/other-sundries", "kind": 1, "units": 0, "amount": 11064, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13096, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180))/other-sundries", "kind": 1, "units": 0, "amount": 9320, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 19952, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 57152, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/objects/dense-array", "kind": 0, "units": 0, "amount": 12576, "description": "Memory on the garbage-collected JavaScript heap that holds dense array objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 68800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 42120, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 11008, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/objects-extra/slots", "kind": 1, "units": 0, "amount": 15872, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 9888, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/script-data", "kind": 1, "units": 0, "amount": 12112, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 8192, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 14240, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\HealthReport.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16928, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\rest.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11264, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\rest.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 22768, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\services-common\\rest.js)/other-sundries", "kind": 1, "units": 0, "amount": 16424, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Sqlite.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 19840, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Sqlite.jsm)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 12440, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Sqlite.jsm)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 10240, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Sqlite.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 23600, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\Sqlite.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 16520, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\DownloadTaskbarProgress.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 8480, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\DownloadTaskbarProgress.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12552, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\DownloadTaskbarProgress.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 10968, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormAutoComplete.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 21984, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormAutoComplete.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 16560, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormAutoComplete.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormAutoComplete.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 19976, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormAutoComplete.js)/other-sundries", "kind": 1, "units": 0, "amount": 13320, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsInputListAutoComplete.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 13696, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsInputListAutoComplete.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 17616, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsInputListAutoComplete.js)/other-sundries", "kind": 1, "units": 0, "amount": 15840, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\nsFormAutoCompleteResult.jsm)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 9600, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\nsFormAutoCompleteResult.jsm)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15768, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], resource:\\\\gre\\modules\\nsFormAutoCompleteResult.jsm)/other-sundries", "kind": 1, "units": 0, "amount": 12632, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 37984, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 25160, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 12928, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/objects-extra/slots", "kind": 1, "units": 0, "amount": 9984, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 18432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 18720, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul)/other-sundries", "kind": 1, "units": 0, "amount": 7256, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], about:newtab)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 11776, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], about:newtab)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 28000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], about:newtab)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9888, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], about:newtab)/other-sundries", "kind": 1, "units": 0, "amount": 12432, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\PageThumbsProtocol.js)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 15424, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\PageThumbsProtocol.js)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 10240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\PageThumbsProtocol.js)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 9216, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\PageThumbsProtocol.js)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 13120, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\PageThumbsProtocol.js)/other-sundries", "kind": 1, "units": 0, "amount": 10032, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\richlistbox.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 15176, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\richlistbox.xml)/other-sundries", "kind": 1, "units": 0, "amount": 7144, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\listbox.xml)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 13800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\listbox.xml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11688, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75cefb5800)/compartment([System Principal], chrome:\\\\global\\content\\bindings\\listbox.xml)/other-sundries", "kind": 1, "units": 0, "amount": 8456, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 41856, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 21080, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 23424, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 8608, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 22528, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 4856, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(resource:\\\\gre-resources\\hiddenWindow.html)/js-compartment(resource:\\\\gre-resources\\hiddenWindow.html)/other-sundries", "kind": 1, "units": 0, "amount": 7592, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 55008, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 30000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 31104, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 11040, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 26624, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 6976, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\gre-resources\\hiddenWindow.html, id=3)/active/window(chrome:\\\\global\\content\\mozilla.xhtml)/js-compartment([System Principal], chrome:\\\\global\\content\\mozilla.xhtml)/other-sundries", "kind": 1, "units": 0, "amount": 9424, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 115952, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 472064, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 513600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 192560, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/shapes/tree/non-global-parented", "kind": 0, "units": 0, "amount": 45280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is not the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 51520, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 173376, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/objects-extra/slots", "kind": 1, "units": 0, "amount": 57408, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/dom/orphan-nodes", "kind": 1, "units": 0, "amount": 10440, "description": "Memory used by orphan DOM nodes that are only reachable from JavaScript objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 109120, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/shapes-extra/dict-tables", "kind": 1, "units": 0, "amount": 25152, "description": "Memory allocated for the property tables that belong to shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/shapes-extra/tree-shape-kids", "kind": 1, "units": 0, "amount": 21504, "description": "Memory allocated for the kid hashes that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 188416, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/script-data", "kind": 1, "units": 0, "amount": 84992, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 12288, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/type-inference/type-scripts", "kind": 1, "units": 0, "amount": 19008, "description": "Memory used by type sets associated with scripts."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11040, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(chrome:\\\\browser\\content\\browser.xul)/js-compartment([System Principal], about:blank)/other-sundries", "kind": 1, "units": 0, "amount": 2448, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/js-compartment(about:blank)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12984, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(chrome:\\\\browser\\content\\browser.xul, id=5)/active/window(about:blank)/js-compartment(about:blank)/other-sundries", "kind": 1, "units": 0, "amount": 9928, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 81728, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 240448, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/objects/cross-compartment-wrapper", "kind": 0, "units": 0, "amount": 9632, "description": "Memory on the garbage-collected JavaScript heap that holds cross-compartment wrapper objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 171800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 141720, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/shapes/tree/non-global-parented", "kind": 0, "units": 0, "amount": 8240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is not the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 33920, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 101248, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/objects-extra/slots", "kind": 1, "units": 0, "amount": 35072, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 70432, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/shapes-extra/dict-tables", "kind": 1, "units": 0, "amount": 15936, "description": "Memory allocated for the property tables that belong to shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/shapes-extra/tree-shape-kids", "kind": 1, "units": 0, "amount": 10080, "description": "Memory allocated for the kid hashes that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 82432, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/script-data", "kind": 1, "units": 0, "amount": 51736, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 12288, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/regexp-compartment", "kind": 1, "units": 0, "amount": 8256, "description": "Memory used by the regexp compartment."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/type-inference/type-scripts", "kind": 1, "units": 0, "amount": 62816, "description": "Memory used by type sets associated with scripts."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/type-inference/allocation-site-tables", "kind": 1, "units": 0, "amount": 8224, "description": "Memory indexing type objects associated with allocation sites."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 5296, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2, id=10)/active/window(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/js-compartment(http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2)/other-sundries", "kind": 1, "units": 0, "amount": 3984, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 25984, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/gc-heap/scripts", "kind": 0, "units": 0, "amount": 26400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 17400, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 11072, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 10432, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 13056, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 8192, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/gc-heap/sundries", "kind": 0, "units": 0, "amount": 9296, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/zones/zone(7f75bc8b1800)/compartment([Expanded Principal])/other-sundries", "kind": 1, "units": 0, "amount": 21096, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/js-compartment(about:blank)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 40256, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/js-compartment(about:blank)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 23760, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/js-compartment(about:blank)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 22656, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/js-compartment(about:blank)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 21568, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/js-compartment(about:blank)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 5648, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:blank, id=9)/active/window(about:blank)/js-compartment(about:blank)/other-sundries", "kind": 1, "units": 0, "amount": 15624, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 141120, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 8800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 66280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 13280, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 75136, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/objects-extra/slots", "kind": 1, "units": 0, "amount": 14848, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 14432, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 47616, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/type-inference/type-scripts", "kind": 1, "units": 0, "amount": 12704, "description": "Memory used by type sets associated with scripts."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 12520, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:home, id=15)/active/window(about:home)/js-compartment(about:home)/other-sundries", "kind": 1, "units": 0, "amount": 15112, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 57904, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 187328, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 142000, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 118560, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 16400, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 70848, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/objects-extra/slots", "kind": 1, "units": 0, "amount": 27904, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 57408, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 47360, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/script-data", "kind": 1, "units": 0, "amount": 37880, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 11864, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, id=23)/active/window(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/js-compartment(resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html)/other-sundries", "kind": 1, "units": 0, "amount": 28960, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 10816, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 130816, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 42800, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 55680, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 17240, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 67328, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/objects-extra/slots", "kind": 1, "units": 0, "amount": 12416, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/dom/orphan-nodes", "kind": 1, "units": 0, "amount": 8688, "description": "Memory used by orphan DOM nodes that are only reachable from JavaScript objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 20384, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/shapes-extra/dict-tables", "kind": 1, "units": 0, "amount": 8896, "description": "Memory allocated for the property tables that belong to shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 48128, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/type-inference/type-scripts", "kind": 1, "units": 0, "amount": 12288, "description": "Memory used by type sets associated with scripts."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 5816, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(none)/detached/window([system])/js-compartment([System Principal], about:newtab)/other-sundries", "kind": 1, "units": 0, "amount": 13280, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 13216, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 119392, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 23400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 78320, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 9360, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 64192, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/objects-extra/slots", "kind": 1, "units": 0, "amount": 19264, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 14336, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 43264, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/type-inference/analysis-pool", "kind": 1, "units": 0, "amount": 32768, "description": "Memory holding transient analysis information used during type inference and compilation."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7352, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/window-objects/top(about:memory, id=28)/active/window(about:memory)/js-compartment([System Principal], about:memory)/other-sundries", "kind": 1, "units": 0, "amount": 28000, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/runtime-object", "kind": 1, "units": 0, "amount": 65536, "description": "Memory used by the JSRuntime object."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/atoms-table", "kind": 1, "units": 0, "amount": 1048576, "description": "Memory used by the atoms table."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/contexts", "kind": 1, "units": 0, "amount": 40768, "description": "Memory used by JSContext objects and certain structures hanging off them."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/dtoa", "kind": 1, "units": 0, "amount": 4096, "description": "Memory used by DtoaState, which is used for converting strings to numbers and vice versa."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/temporary", "kind": 1, "units": 0, "amount": 4096, "description": "Memory held transiently in JSRuntime and used during compilation. It mostly holds parse nodes."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/jaeger", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by the JaegerMonkey JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/ion", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by the IonMonkey JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/baseline", "kind": 0, "units": 0, "amount": 4024, "description": "Memory used by the Baseline JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/asm.js", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by AOT-compiled asm.js code."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/regexp", "kind": 0, "units": 0, "amount": 8744, "description": "Memory used by the regexp JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/other", "kind": 0, "units": 0, "amount": 43640, "description": "Memory used by the JITs to hold generated code for wrappers and trampolines."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/code/unused", "kind": 0, "units": 0, "amount": 74664, "description": "Memory allocated by one of the JITs to hold code, but which is currently unused."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/regexp-data", "kind": 0, "units": 0, "amount": 4096, "description": "Memory used by the regexp JIT to hold data."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/stack", "kind": 0, "units": 0, "amount": 16384, "description": "Memory used for the JS call stack. This is the committed portion of the stack on Windows; on *nix, it is the resident portion of the stack. Therefore, on *nix, if part of the stack is swapped out to disk, we do not count it here.\n\nNote that debug builds usually have stack poisoning enabled, which causes the whole stack to be committed (and likely resident)."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/gc-marker", "kind": 1, "units": 0, "amount": 262144, "description": "Memory used for the GC mark stack and gray roots."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/math-cache", "kind": 1, "units": 0, "amount": 0, "description": "Memory used for the math cache."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/script-data", "kind": 1, "units": 0, "amount": 3693536, "description": "Memory used for the table holding script data shared in the runtime."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/runtime/script-sources", "kind": 1, "units": 0, "amount": 1187568, "description": "Memory use for storing JavaScript source code and filenames."},
{"process": "Main Process (pid 3603)", "path": "decommitted/js-non-window/gc-heap/decommitted-arenas", "kind": 0, "units": 0, "amount": 2813952, "description": "Memory on the garbage-collected JavaScript heap, in arenas in non-empty chunks, that is returned to the OS. This means it takes up address space but no physical memory or swap space."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/gc-heap/unused-chunks", "kind": 0, "units": 0, "amount": 0, "description": "Memory on the garbage-collected JavaScript heap taken by empty chunks, which will soon be released unless claimed for new allocations."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/gc-heap/unused-arenas", "kind": 0, "units": 0, "amount": 0, "description": "Memory on the garbage-collected JavaScript heap taken by empty arenas within non-empty chunks."},
{"process": "Main Process (pid 3603)", "path": "explicit/js-non-window/gc-heap/chunk-admin", "kind": 0, "units": 0, "amount": 393216, "description": "Memory on the garbage-collected JavaScript heap, within chunks, that is used to hold internal bookkeeping information."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 1152224, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 4959200, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/objects/dense-array", "kind": 0, "units": 0, "amount": 134032, "description": "Memory on the garbage-collected JavaScript heap that holds dense array objects."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/objects/cross-compartment-wrapper", "kind": 0, "units": 0, "amount": 277472, "description": "Memory on the garbage-collected JavaScript heap that holds cross-compartment wrapper objects."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/scripts", "kind": 0, "units": 0, "amount": 2867600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 2867040, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/shapes/tree/non-global-parented", "kind": 0, "units": 0, "amount": 348800, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is not the global object."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 710760, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 1814592, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/objects-extra/slots", "kind": 1, "units": 0, "amount": 1461760, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/objects-extra/elements/non-asm.js", "kind": 1, "units": 0, "amount": 25984, "description": "Memory allocated for non-asm.js object element arrays, which are used to represent indexed object properties."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/objects-extra/regexp-statics", "kind": 1, "units": 0, "amount": 54912, "description": "Memory allocated for data belonging to the RegExpStatics object."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/objects-extra/property-iterator-data", "kind": 1, "units": 0, "amount": 11024, "description": "Memory allocated for data belonging to property iterator objects."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/orphan-nodes", "kind": 1, "units": 0, "amount": 19640, "description": "Memory used by orphan DOM nodes that are only reachable from JavaScript objects."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 689312, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/shapes-extra/dict-tables", "kind": 1, "units": 0, "amount": 368864, "description": "Memory allocated for the property tables that belong to shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/shapes-extra/tree-shape-kids", "kind": 1, "units": 0, "amount": 241504, "description": "Memory allocated for the kid hashes that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 2334496, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/script-data", "kind": 1, "units": 0, "amount": 554752, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/compartment-object", "kind": 1, "units": 0, "amount": 293888, "description": "Memory used for the JSCompartment object itself."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/cross-compartment-wrapper-table", "kind": 1, "units": 0, "amount": 487872, "description": "Memory used by the cross-compartment wrapper table."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/regexp-compartment", "kind": 1, "units": 0, "amount": 70208, "description": "Memory used by the regexp compartment."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/debuggees-set", "kind": 1, "units": 0, "amount": 18368, "description": "Memory used by the debuggees set."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/type-inference/type-scripts", "kind": 1, "units": 0, "amount": 183248, "description": "Memory used by type sets associated with scripts."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/type-inference/analysis-pool", "kind": 1, "units": 0, "amount": 32768, "description": "Memory holding transient analysis information used during type inference and compilation."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/type-inference/allocation-site-tables", "kind": 1, "units": 0, "amount": 13056, "description": "Memory indexing type objects associated with allocation sites."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/compartments/other-sundries", "kind": 1, "units": 0, "amount": 7448, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/gc-heap/arena-admin", "kind": 0, "units": 0, "amount": 350648, "description": "Memory on the garbage-collected JavaScript heap, within arenas, that is used (a) to hold internal bookkeeping information, and (b) to provide padding to align GC things."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 3952080, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/gc-heap/strings/normal", "kind": 0, "units": 0, "amount": 625504, "description": "Memory on the garbage-collected JavaScript heap that holds normal string headers. String headers contain various pieces of information about a string, but do not contain (except in the case of very short strings) the string characters; characters in longer strings are counted under 'gc-heap/string-chars' instead."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/gc-heap/strings/short", "kind": 0, "units": 0, "amount": 1422336, "description": "Memory on the garbage-collected JavaScript heap that holds over-sized string headers, in which string characters are stored inline."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 468832, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/type-pool", "kind": 1, "units": 0, "amount": 114688, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/string-chars/non-huge", "kind": 1, "units": 0, "amount": 825216, "description": "Memory allocated to hold characters of strings whose characters take up less than than 8192 bytes of memory.\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/string-chars/huge/string(length=9258, \"data:image\\/png;base64,iVBORw0KG...\")", "kind": 1, "units": 0, "amount": 20480, "description": "Memory allocated to hold characters of a length-9258 string which begins \"data:image/png;base64,iVBORw0KG\".\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/string-chars/huge/string(length=4595, \"{\"windows\":[{\"tabs\":[{\"entries\"...\")", "kind": 1, "units": 0, "amount": 12288, "description": "Memory allocated to hold characters of a length-4595 string which begins \"{\"windows\":[{\"tabs\":[{\"entries\"\".\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/string-chars/huge/string(length=2627, \"<div id=\"tabzilla-panel\" class=...\")", "kind": 1, "units": 0, "amount": 8192, "description": "Memory allocated to hold characters of a length-2627 string which begins \"<div id=\"tabzilla-panel\" class=\".\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/gc-heap/sundries", "kind": 0, "units": 0, "amount": 7536, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/zones/other-sundries", "kind": 1, "units": 0, "amount": 1104, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/runtime", "kind": 2, "units": 0, "amount": 6457872, "description": "The sum of all measurements under 'explicit/js-non-window/runtime/'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/gc-heap/unused-chunks", "kind": 2, "units": 0, "amount": 0, "description": "The same as 'explicit/js-non-window/gc-heap/unused-chunks'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/gc-heap/unused-arenas", "kind": 2, "units": 0, "amount": 0, "description": "The same as 'explicit/js-non-window/gc-heap/unused-arenas'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime/gc-heap/chunk-admin", "kind": 2, "units": 0, "amount": 393216, "description": "The same as 'explicit/js-non-window/gc-heap/chunk-admin'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-gc-heap-committed/unused/chunks", "kind": 2, "units": 0, "amount": 0, "description": "The same as 'explicit/js-non-window/gc-heap/unused-chunks'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-gc-heap-committed/unused/arenas", "kind": 2, "units": 0, "amount": 0, "description": "The same as 'explicit/js-non-window/gc-heap/unused-arenas'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-gc-heap-committed/unused/gc-things", "kind": 2, "units": 0, "amount": 3952080, "description": "The same as 'js-main-runtime/compartments/gc-heap/unused-gc-things'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-gc-heap-committed/used/chunk-admin", "kind": 2, "units": 0, "amount": 393216, "description": "The same as 'explicit/js-non-window/gc-heap/chunk-admin'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-gc-heap-committed/used/arena-admin", "kind": 2, "units": 0, "amount": 350648, "description": "The same as 'js-main-runtime/compartments/gc-heap/arena-admin'."},
{"process": "Main Process (pid 3603)", "path": "js-main-runtime-gc-heap-committed/used/gc-things", "kind": 2, "units": 0, "amount": 17655928, "description": "Memory on the garbage-collected JavaScript heap that holds GC things such as objects, strings, scripts, etc."},
{"process": "Main Process (pid 3603)", "path": "explicit/xpconnect", "kind": 1, "units": 0, "amount": 1174120, "description": "Memory used by XPConnect."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/element-nodes", "kind": 2, "units": 0, "amount": 641536, "description": "This is the sum of all windows' 'dom/element-nodes' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/text-nodes", "kind": 2, "units": 0, "amount": 135624, "description": "This is the sum of all windows' 'dom/text-nodes' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/cdata-nodes", "kind": 2, "units": 0, "amount": 0, "description": "This is the sum of all windows' 'dom/cdata-nodes' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/comment-nodes", "kind": 2, "units": 0, "amount": 3656, "description": "This is the sum of all windows' 'dom/comment-nodes' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/event-targets", "kind": 2, "units": 0, "amount": 4864, "description": "This is the sum of all windows' 'dom/event-targets' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/dom/other", "kind": 2, "units": 0, "amount": 245552, "description": "This is the sum of all windows' 'dom/other' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/property-tables", "kind": 2, "units": 0, "amount": 4320, "description": "This is the sum of all windows' 'property-tables' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/style-sheets", "kind": 2, "units": 0, "amount": 1104232, "description": "This is the sum of all windows' 'style-sheets' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/pres-shell", "kind": 2, "units": 0, "amount": 897728, "description": "This is the sum of all windows' 'layout/arenas' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/line-boxes", "kind": 2, "units": 0, "amount": 22592, "description": "This is the sum of all windows' 'layout/line-boxes' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/rule-nodes", "kind": 2, "units": 0, "amount": 192888, "description": "This is the sum of all windows' 'layout/rule-nodes' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/style-contexts", "kind": 2, "units": 0, "amount": 143360, "description": "This is the sum of all windows' 'layout/style-contexts' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/style-sets", "kind": 2, "units": 0, "amount": 1614576, "description": "This is the sum of all windows' 'layout/style-sets' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/text-runs", "kind": 2, "units": 0, "amount": 3248, "description": "This is the sum of all windows' 'layout/text-runs' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/pres-contexts", "kind": 2, "units": 0, "amount": 53040, "description": "This is the sum of all windows' 'layout/pres-contexts' numbers."},
{"process": "Main Process (pid 3603)", "path": "window-objects/layout/frames", "kind": 2, "units": 0, "amount": 196024, "description": "Memory used for layout frames within windows. This is the sum of all windows' 'layout/frames/' numbers."},
{"process": "Main Process (pid 3603)", "path": "gfx-surface-image", "kind": 2, "units": 0, "amount": 317840, "description": "Memory used by gfx surface of the given type."},
{"process": "Main Process (pid 3603)", "path": "gfx-surface-xlib", "kind": 2, "units": 0, "amount": 2398259, "description": "Memory used by xlib surfaces to store pixmaps. This memory lives in the X server's process rather than in this application, so the bytes accounted for here aren't counted in vsize, resident, explicit, or any of the other measurements on this page."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa37800)/gc-heap/strings/normal", "kind": 0, "units": 0, "amount": 181632, "description": "Memory on the garbage-collected JavaScript heap that holds normal string headers. String headers contain various pieces of information about a string, but do not contain (except in the case of very short strings) the string characters; characters in longer strings are counted under 'gc-heap/string-chars' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa37800)/gc-heap/strings/short", "kind": 0, "units": 0, "amount": 60224, "description": "Memory on the garbage-collected JavaScript heap that holds over-sized string headers, in which string characters are stored inline."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa37800)/string-chars/non-huge", "kind": 1, "units": 0, "amount": 13744, "description": "Memory allocated to hold characters of strings whose characters take up less than than 8192 bytes of memory.\n\nSometimes more memory is allocated than necessary, to simplify string concatenation. Each string also includes a header which is stored on the compartment's JavaScript heap; that header is not counted here, but in 'gc-heap/strings' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa37800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 16192, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 35120, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 5528, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/gc-heap/unused-gc-things", "kind": 0, "units": 0, "amount": 101672, "description": "Memory on the garbage-collected JavaScript heap taken by empty GC thing slots within non-empty arenas."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/gc-heap/type-objects", "kind": 0, "units": 0, "amount": 11760, "description": "Memory on the garbage-collected JavaScript heap that holds type inference information."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/type-pool", "kind": 1, "units": 0, "amount": 8192, "description": "Memory holding contents of type sets and related data."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 8704, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/other-sundries", "kind": 1, "units": 0, "amount": 2176, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa37800)/compartment(web-worker-atoms)/other-sundries", "kind": 1, "units": 0, "amount": 1440, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 16704, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 41760, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 26400, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 38800, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/shapes/dict", "kind": 0, "units": 0, "amount": 10520, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that are in dictionary mode."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 10432, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/objects-extra/slots", "kind": 1, "units": 0, "amount": 13824, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 13312, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/script-data", "kind": 1, "units": 0, "amount": 9000, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 3152, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75bfa38800)/compartment(web-worker)/other-sundries", "kind": 1, "units": 0, "amount": 9584, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/objects/ordinary", "kind": 0, "units": 0, "amount": 51760, "description": "Memory on the garbage-collected JavaScript heap that holds ordinary (i.e. not otherwise distinguished my memory reporters) objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/objects/function", "kind": 0, "units": 0, "amount": 49216, "description": "Memory on the garbage-collected JavaScript heap that holds function objects."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/scripts", "kind": 0, "units": 0, "amount": 38600, "description": "Memory on the garbage-collected JavaScript heap that holds JSScript instances. A JSScript is created for each user-defined function in a script. One is also created for the top-level code in a script."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/shapes/tree/global-parented", "kind": 0, "units": 0, "amount": 43000, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/shapes/tree/non-global-parented", "kind": 0, "units": 0, "amount": 15480, "description": "Memory on the garbage-collected JavaScript heap that holds shapes that (a) are in a property tree, and (b) represent an object whose parent is not the global object."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/shapes/base", "kind": 0, "units": 0, "amount": 22784, "description": "Memory on the garbage-collected JavaScript heap that collates data common to many shapes."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/objects-extra/slots", "kind": 1, "units": 0, "amount": 26880, "description": "Memory allocated for the non-fixed object slot arrays, which are used to represent object properties. Some objects also contain a fixed number of slots which are stored on the JavaScript heap; those slots are not counted here, but in 'gc-heap/objects' instead."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/shapes-extra/tree-tables", "kind": 1, "units": 0, "amount": 12768, "description": "Memory allocated for the property tables that belong to shapes that are in a property tree."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/shapes-extra/compartment-tables", "kind": 1, "units": 0, "amount": 26624, "description": "Memory used by compartment-wide tables storing shape information for use during object construction."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/script-data", "kind": 1, "units": 0, "amount": 8360, "description": "Memory allocated for various variable-length tables in JSScript."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/type-inference/type-scripts", "kind": 1, "units": 0, "amount": 84576, "description": "Memory used by type sets associated with scripts."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/type-inference/analysis-pool", "kind": 1, "units": 0, "amount": 32768, "description": "Memory holding transient analysis information used during type inference and compilation."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/gc-heap/sundries", "kind": 0, "units": 0, "amount": 5184, "description": "The sum of all the gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/zone(7f75c4872800)/compartment(web-worker)/other-sundries", "kind": 1, "units": 0, "amount": 16240, "description": "The sum of all the non-gc-heap measurements that are too small to be worth showing individually."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/runtime-object", "kind": 1, "units": 0, "amount": 65536, "description": "Memory used by the JSRuntime object."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/atoms-table", "kind": 1, "units": 0, "amount": 65536, "description": "Memory used by the atoms table."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/contexts", "kind": 1, "units": 0, "amount": 800, "description": "Memory used by JSContext objects and certain structures hanging off them."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/dtoa", "kind": 1, "units": 0, "amount": 4096, "description": "Memory used by DtoaState, which is used for converting strings to numbers and vice versa."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/temporary", "kind": 1, "units": 0, "amount": 4096, "description": "Memory held transiently in JSRuntime and used during compilation. It mostly holds parse nodes."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/jaeger", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by the JaegerMonkey JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/ion", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by the IonMonkey JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/baseline", "kind": 0, "units": 0, "amount": 21312, "description": "Memory used by the Baseline JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/asm.js", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by AOT-compiled asm.js code."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/regexp", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by the regexp JIT to hold generated code."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/other", "kind": 0, "units": 0, "amount": 43640, "description": "Memory used by the JITs to hold generated code for wrappers and trampolines."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/code/unused", "kind": 0, "units": 0, "amount": 584, "description": "Memory allocated by one of the JITs to hold code, but which is currently unused."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/regexp-data", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by the regexp JIT to hold data."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/stack", "kind": 0, "units": 0, "amount": 4096, "description": "Memory used for the JS call stack. This is the committed portion of the stack on Windows; on *nix, it is the resident portion of the stack. Therefore, on *nix, if part of the stack is swapped out to disk, we do not count it here.\n\nNote that debug builds usually have stack poisoning enabled, which causes the whole stack to be committed (and likely resident)."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/gc-marker", "kind": 1, "units": 0, "amount": 262144, "description": "Memory used for the GC mark stack and gray roots."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/math-cache", "kind": 1, "units": 0, "amount": 0, "description": "Memory used for the math cache."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/script-data", "kind": 1, "units": 0, "amount": 141376, "description": "Memory used for the table holding script data shared in the runtime."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/runtime/script-sources", "kind": 1, "units": 0, "amount": 267216, "description": "Memory use for storing JavaScript source code and filenames."},
{"process": "Main Process (pid 3603)", "path": "decommitted/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/gc-heap/decommitted-arenas", "kind": 0, "units": 0, "amount": 1269760, "description": "Memory on the garbage-collected JavaScript heap, in arenas in non-empty chunks, that is returned to the OS. This means it takes up address space but no physical memory or swap space."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/gc-heap/unused-chunks", "kind": 0, "units": 0, "amount": 0, "description": "Memory on the garbage-collected JavaScript heap taken by empty chunks, which will soon be released unless claimed for new allocations."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/gc-heap/unused-arenas", "kind": 0, "units": 0, "amount": 0, "description": "Memory on the garbage-collected JavaScript heap taken by empty arenas within non-empty chunks."},
{"process": "Main Process (pid 3603)", "path": "explicit/workers/workers()/worker(resource:\\\\gre\\modules\\osfile\\osfile_async_worker.js, 0x7f75bfa36000)/gc-heap/chunk-admin", "kind": 0, "units": 0, "amount": 32768, "description": "Memory on the garbage-collected JavaScript heap, within chunks, that is used to hold internal bookkeeping information."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/chrome/used/raw", "kind": 1, "units": 0, "amount": 0, "description": "Memory used by in-use chrome images (compressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/chrome/used/uncompressed-heap", "kind": 1, "units": 0, "amount": 323712, "description": "Memory used by in-use chrome images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/chrome/used/uncompressed-nonheap", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by in-use chrome images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/chrome/unused/raw", "kind": 1, "units": 0, "amount": 0, "description": "Memory used by not in-use chrome images (compressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/chrome/unused/uncompressed-heap", "kind": 1, "units": 0, "amount": 0, "description": "Memory used by not in-use chrome images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/chrome/unused/uncompressed-nonheap", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by not in-use chrome images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/content/used/raw", "kind": 1, "units": 0, "amount": 375616, "description": "Memory used by in-use content images (compressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/content/used/uncompressed-heap", "kind": 1, "units": 0, "amount": 0, "description": "Memory used by in-use content images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/content/used/uncompressed-nonheap", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by in-use content images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/content/unused/raw", "kind": 1, "units": 0, "amount": 121248, "description": "Memory used by not in-use content images (compressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/content/unused/uncompressed-heap", "kind": 1, "units": 0, "amount": 0, "description": "Memory used by not in-use content images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/images/content/unused/uncompressed-nonheap", "kind": 0, "units": 0, "amount": 0, "description": "Memory used by not in-use content images (uncompressed data)."},
{"process": "Main Process (pid 3603)", "path": "explicit/cycle-collector/collector-object", "kind": 1, "units": 0, "amount": 36864, "description": "Memory used for the cycle collector object itself."},
{"process": "Main Process (pid 3603)", "path": "explicit/gfx/font-cache", "kind": 1, "units": 0, "amount": 16208, "description": "Memory used for active font instances."},
{"process": "Main Process (pid 3603)", "path": "explicit/gfx/font-shaped-words", "kind": 1, "units": 0, "amount": 57840, "description": "Memory used to cache shaped glyph data."},
{"process": "Main Process (pid 3603)", "path": "compartments/system/atoms", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/null-principal", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/moz-nullprincipal:{68c5ec68-e91c-45b7-983d-528ca55846e0}", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\BrowserElementParent.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\Services.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\XPCOMUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\BrowserElementParent.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\BrowserElementPromptService.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\DataReportingService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\Preferences.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\services-common\\utils.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\devtools\\Console.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\osfile.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\osfile\\osfile_async_front.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\osfile\\osfile_shared_allthreads.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ctypes.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\osfile\\osfile_unix_allthreads.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\osfile\\ospath_unix_back.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\osfile\\_PromiseWorker.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\services-common\\log4moz.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\NetUtil.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\FileUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsIDService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\NavigatorPropertyHelper.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\Weave.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\WebContentConverter.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PrivateBrowsingUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserGlue.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\SignInToWebsite.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStartup.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\TelemetryStopwatch.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\addonManager.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\AddonManager.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\TelemetryTimestamps.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\AddonLogging.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\XPIProvider.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\LightweightThemeManager.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PluginProvider.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsBlocklistService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], XPConnect Junk Compartment", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ChromeManifestParser.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\AddonRepository.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsURLFormatter.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\AddonUpdateChecker.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\CertUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsHandlerService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\TelemetryPing.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm:3720)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js:202)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\addon\\runner.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\platform\\xpcom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\object.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\heritage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\uuid.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\namespace.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\file.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\byte-streams.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\text-streams.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\runtime.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\environment.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\unload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\self.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\globals.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\console\\plain-text.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\console\\traceback.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\DownloadsStartup.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\messageWakeupService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateServiceStub.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUpdateTimerManager.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\sessionstore\\_SessionFile.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\Task.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\distribution.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\UserAgentOverrides.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\webappsUI.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\Webapps.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ActivitiesService.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\IndexedDBHelper.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ActivitiesServiceFilter.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\AppsUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PermissionsInstaller.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PermissionSettings.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PermissionsTable.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\OfflineCacheInstaller.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\SystemMessagePermissionsChecker.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\AppDownloadManager.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\FreeSpaceWatcher.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\WebappsInstaller.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\WebappOSUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PageThumbs.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PlacesUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\NewTabUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\BrowserNewTabPreloader.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\pdf.js\\PdfJs.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\pdf.js.components\\PdfStreamConverter.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\pdf.js.components\\PdfRedirector.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\webrtcUI.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\PluralForm.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsBrowserContentHandler.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\jsconsole-clhandler.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\recording-cmdline.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSetDefaultBrowser.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsDefaultCLH.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\scrollbar.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\browser.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\RecentWindow.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\InlineSpellChecker.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\editMenuOverlay.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\baseMenuOverlay.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\places\\placesOverlay.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\PlacesUIUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ForgetAboutSite.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\general.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\popup.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\stringbundle.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\urlbarBindings.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\autocomplete.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\notification.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\toolbar.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\menu.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\text.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\places\\menu.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\toolbarbutton.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\button.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\textbox.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\platformHTMLBindings.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\search\\search.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\scrollbox.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\tabbrowser.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\tabbox.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\splitter.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\socialchat.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\browser.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\resizer.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesAutoComplete.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsSearchService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\WindowDraggingUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\LightweightThemeConsumer.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\LightweightThemeImageOptimizer.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormHistory.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\Social.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\SocialService.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsLoginManager.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsContentPrefService.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ContentPrefStore.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ContentPrefService2.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\NetworkPrioritizer.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\browser\\omni.ja!\\components\\nsSessionStore.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\sessionstore\\SessionStore.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\debug.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\locale.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\preferences\\service.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\DownloadsCommon.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\devtools\\gDevTools.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\devtools\\main.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\html.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resources:\\\\\\modules\\@l10n\\data.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\l10n\\prefs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\observer-service.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\main.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tabs.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\system\\xul-app.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tabs-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\traits\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\list.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\light-traits.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\tabs-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\tab-firefox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\lang\\functional.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\timers.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\thumbnail.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\io\\data.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\base64.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\deprecate.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\window\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\array.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\common.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\api-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\memory.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\observer.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\events\\assembler.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\dom\\events.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\window-utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\errors.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\observer.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\dom.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\private-browsing\\utils.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\event\\core.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\windows\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\loader.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\url.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\worker.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\deprecated\\cortex.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\tabs\\helpers.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\registry.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\page-mod\\match-pattern.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\ui.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\panel.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\content.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\content\\symbiont.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\frame\\hidden-frame.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\simple-storage.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\upload.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\request.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\querystring.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\event\\target.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\net\\xhr.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\lib\\md5.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\notifications.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\util\\collection.js (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js:179)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPrompter.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\history\\history-panel.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\browser\\content\\places\\tree.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\tree.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\global\\content\\mozilla.xhtml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\commonDialog.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\CommonDialog.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\dialog.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\checkbox.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\storage-mozStorage.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\AboutHomeUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\UpdateChannel.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\SiteSpecificUserAgent.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html, [anonymous sandbox] (from: resource:\\\\gre\\modules\\XPIProvider.jsm -> jar:file:\\\\\\home\\ashwini\\.mozilla\\firefox\\o4u6lbvs.default\\extensions\\jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack.xpi!\\bootstrap.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\toolkit\\loader.js -> resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\addon-sdk\\lib\\sdk\\loader\\sandbox.js:22)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\ConsoleAPI.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\ConsoleAPIStorage.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsPlacesExpiration.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\sessionstore\\SessionStorage.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\sessionstore\\DocumentUtils.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\sessionstore\\XPathGenerator.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\devtools\\scratchpad-manager.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\SafeBrowsing.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierListManager.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierLib.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsUrlClassifierHashCompleter.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\videocontrols.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\scale.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\progressmeter.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\devtools\\framework\\target.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\commonjs\\sdk\\core\\promise.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\\\modules\\devtools\\shared\\event-emitter.js (from: resource:\\\\gre\\modules\\commonjs\\toolkit\\loader.js:180)", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\HealthReport.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\services-common\\rest.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\Sqlite.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\DownloadTaskbarProgress.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsFormAutoComplete.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\nsInputListAutoComplete.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], resource:\\\\gre\\modules\\nsFormAutoCompleteResult.jsm", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], inProcessTabChildGlobal?ownedBy=chrome:\\\\browser\\content\\browser.xul", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], about:newtab", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], jar:file:\\\\\\opt\\firefox\\omni.ja!\\components\\PageThumbsProtocol.js", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\richlistbox.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\bindings\\listbox.xml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/resource:\\\\gre-resources\\hiddenWindow.html", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], chrome:\\\\global\\content\\mozilla.xhtml", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], about:blank", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/about:blank", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/http:\\\\www.mozilla.org\\en-US\\firefox\\23.0a1\\whatsnew\\?oldversion=22.0a2", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/[Expanded Principal]", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/about:blank", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/about:home", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/user/resource:\\\\jid0-gxjllfbcoax0lcltedfrekqdqpi-at-jetpack\\as-ff\\data\\options.html", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], about:newtab", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "compartments/system/[System Principal], about:memory", "kind": 2, "units": 1, "amount": 1, "description": ""},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/extensions.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 234344, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/extensions.sqlite/cache-used", "kind": 1, "units": 0, "amount": 429792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/extensions.sqlite/schema-used", "kind": 1, "units": 0, "amount": 12424, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/permissions.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 3216, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/permissions.sqlite/cache-used", "kind": 1, "units": 0, "amount": 99792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/permissions.sqlite/schema-used", "kind": 1, "units": 0, "amount": 2128, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/addons.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 62016, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/addons.sqlite/cache-used", "kind": 1, "units": 0, "amount": 528792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/addons.sqlite/schema-used", "kind": 1, "units": 0, "amount": 11424, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/cookies.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 18896, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/cookies.sqlite/cache-used", "kind": 1, "units": 0, "amount": 231792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/cookies.sqlite/schema-used", "kind": 1, "units": 0, "amount": 3392, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 196160, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/cache-used", "kind": 1, "units": 0, "amount": 1090584, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/schema-used", "kind": 1, "units": 0, "amount": 46608, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/content-prefs.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 10512, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/content-prefs.sqlite/cache-used", "kind": 1, "units": 0, "amount": 132792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/content-prefs.sqlite/schema-used", "kind": 1, "units": 0, "amount": 4040, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/webappsstore.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 9360, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/webappsstore.sqlite/cache-used", "kind": 1, "units": 0, "amount": 198792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/webappsstore.sqlite/schema-used", "kind": 1, "units": 0, "amount": 2224, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/webappsstore.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 0, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/webappsstore.sqlite/cache-used", "kind": 1, "units": 0, "amount": 66792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/webappsstore.sqlite/schema-used", "kind": 1, "units": 0, "amount": 2208, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 2064, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/cache-used", "kind": 1, "units": 0, "amount": 330792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/schema-used", "kind": 1, "units": 0, "amount": 18424, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/signons.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 4512, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/signons.sqlite/cache-used", "kind": 1, "units": 0, "amount": 99792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/signons.sqlite/schema-used", "kind": 1, "units": 0, "amount": 5376, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/healthreport.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 0, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/healthreport.sqlite/cache-used", "kind": 1, "units": 0, "amount": 33792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/healthreport.sqlite/schema-used", "kind": 1, "units": 0, "amount": 46824, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/:memory:/stmt-used", "kind": 1, "units": 0, "amount": 7696, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/:memory:/cache-used", "kind": 1, "units": 0, "amount": 132792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/:memory:/schema-used", "kind": 1, "units": 0, "amount": 4344, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/downloads.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 7696, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/downloads.sqlite/cache-used", "kind": 1, "units": 0, "amount": 99792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/downloads.sqlite/schema-used", "kind": 1, "units": 0, "amount": 4336, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/formhistory.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 11792, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/formhistory.sqlite/cache-used", "kind": 1, "units": 0, "amount": 132792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/formhistory.sqlite/schema-used", "kind": 1, "units": 0, "amount": 3280, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 6272, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/cache-used", "kind": 1, "units": 0, "amount": 165792, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/schema-used", "kind": 1, "units": 0, "amount": 18424, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/stmt-used", "kind": 1, "units": 0, "amount": 80208, "description": "Memory (approximate) used by all prepared statements used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/cache-used", "kind": 1, "units": 0, "amount": 694584, "description": "Memory (approximate) used by all pager caches used by connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/places.sqlite/schema-used", "kind": 1, "units": 0, "amount": 20024, "description": "Memory (approximate) used to store the schema for all databases associated with connections to this database."},
{"process": "Main Process (pid 3603)", "path": "explicit/storage/sqlite/other", "kind": 1, "units": 0, "amount": 1762232, "description": "All unclassified sqlite memory."},
{"process": "Main Process (pid 3603)", "path": "size/other-files/firefox/[r-xp]", "kind": 0, "units": 0, "amount": 131072, "description": "/opt/firefox/firefox (read-only, executable, private)"},
{"process": "Main Process (pid 3603)", "path": "rss/other-files/firefox/[r-xp]", "kind": 0, "units": 0, "amount": 90112, "description": "/opt/firefox/firefox (read-only, executable, private)"},
{"process": "Main Process (pid 3603)", "path": "pss/other-files/firefox/[r-xp]", "kind": 0, "units": 0, "amount": 90112, "description": "/opt/firefox/firefox (read-only, executable, private)"},
{"process": "Main Process (pid 3603)", "path": "swap/total", "kind": 0, "units": 0, "amount": 0, "description": "This process uses no swap space."}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment