haikuwebkit/PerformanceTests/JSBench/facebook-firefox/urem.js

10242 lines
3.9 MiB
JavaScript
Raw Permalink Normal View History

We should have JSBench in PerformanceTests https://bugs.webkit.org/show_bug.cgi?id=157952 Rubber-stamped by Saam Barati. PerformanceTests: There are some slight changes to the layout of the test directory to make it work nicely with run-jsc-benchmarks. Before JSBench had each of the browser specific sub-tests in a sub-directory. These have been flattened e.g. amazon/safari/ has become amazon-safari/. * JSBench/amazon-chrome-win/urem.html: Added. * JSBench/amazon-chrome-win/urem.js: Added. * JSBench/amazon-chrome/urem.html: Added. * JSBench/amazon-chrome/urem.js: Added. * JSBench/amazon-firefox-win/urm.html: Added. * JSBench/amazon-firefox-win/urm.js: Added. * JSBench/amazon-firefox/urm.html: Added. * JSBench/amazon-firefox/urm.js: Added. * JSBench/amazon-safari/urem.html: Added. * JSBench/amazon-safari/urem.js: Added. * JSBench/browsercheck.js: Added. * JSBench/facebook-chrome-win/urem.html: Added. * JSBench/facebook-chrome-win/urem.js: Added. * JSBench/facebook-chrome/urem.html: Added. * JSBench/facebook-chrome/urem.js: Added. * JSBench/facebook-firefox-win/urem.html: Added. * JSBench/facebook-firefox-win/urem.js: Added. * JSBench/facebook-firefox/urem.html: Added. * JSBench/facebook-firefox/urem.js: Added. * JSBench/facebook-safari/urem.html: Added. * JSBench/facebook-safari/urem.js: Added. * JSBench/google-chrome-win/urem.html: Added. * JSBench/google-chrome-win/urem.js: Added. * JSBench/google-chrome/urem.html: Added. * JSBench/google-chrome/urem.js: Added. * JSBench/google-firefox-win/urem.html: Added. * JSBench/google-firefox-win/urem.js: Added. * JSBench/google-firefox/uem.html: Added. * JSBench/google-firefox/uem.js: Added. * JSBench/google-safari/urem.html: Added. * JSBench/google-safari/urem.js: Added. * JSBench/harness.html: Added. * JSBench/harness.js: Added. * JSBench/harness.py: Added. * JSBench/index.html: Added. * JSBench/reload.html: Added. * JSBench/twitter-chrome-win/rem.html: Added. * JSBench/twitter-chrome-win/rem.js: Added. * JSBench/twitter-chrome/urem.html: Added. * JSBench/twitter-chrome/urem.js: Added. * JSBench/twitter-firefox-win/urem.html: Added. * JSBench/twitter-firefox-win/urem.js: Added. * JSBench/twitter-firefox/urem.html: Added. * JSBench/twitter-firefox/urem.js: Added. * JSBench/twitter-safari/urem.html: Added. * JSBench/twitter-safari/urem.js: Added. * JSBench/yahoo-chrome-win/urem.html: Added. * JSBench/yahoo-chrome-win/urem.js: Added. * JSBench/yahoo-chrome/urem.html: Added. * JSBench/yahoo-chrome/urem.js: Added. * JSBench/yahoo-firefox-win/urem.html: Added. * JSBench/yahoo-firefox-win/urem.js: Added. * JSBench/yahoo-firefox/urem.html: Added. * JSBench/yahoo-firefox/urem.js: Added. * JSBench/yahoo-safari/urem.html: Added. * JSBench/yahoo-safari/urem.js: Added. Tools: This changes the runner to use the layout of the newest version of JSBench. * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176149@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201339 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-24 19:00:51 +00:00
/* Replayable replacements for global functions */
/***************************************************************
* BEGIN STABLE.JS
**************************************************************/
//! stable.js 0.1.3, https://github.com/Two-Screen/stable
//! © 2012 Stéphan Kochen, Angry Bytes. MIT licensed.
(function() {
// A stable array sort, because `Array#sort()` is not guaranteed stable.
// This is an implementation of merge sort, without recursion.
var stable = function(arr, comp) {
if (typeof(comp) !== 'function') {
comp = function(a, b) {
a = String(a);
b = String(b);
if (a < b) return -1;
if (a > b) return 1;
return 0;
};
}
var len = arr.length;
if (len <= 1) return arr;
// Rather than dividing input, simply iterate chunks of 1, 2, 4, 8, etc.
// Chunks are the size of the left or right hand in merge sort.
// Stop when the left-hand covers all of the array.
var oarr = arr;
for (var chk = 1; chk < len; chk *= 2) {
arr = pass(arr, comp, chk);
}
for (var i = 0; i < len; i++) {
oarr[i] = arr[i];
}
return oarr;
};
// Run a single pass with the given chunk size. Returns a new array.
var pass = function(arr, comp, chk) {
var len = arr.length;
// Output, and position.
var result = new Array(len);
var i = 0;
// Step size / double chunk size.
var dbl = chk * 2;
// Bounds of the left and right chunks.
var l, r, e;
// Iterators over the left and right chunk.
var li, ri;
// Iterate over pairs of chunks.
for (l = 0; l < len; l += dbl) {
r = l + chk;
e = r + chk;
if (r > len) r = len;
if (e > len) e = len;
// Iterate both chunks in parallel.
li = l;
ri = r;
while (true) {
// Compare the chunks.
if (li < r && ri < e) {
// This works for a regular `sort()` compatible comparator,
// but also for a simple comparator like: `a > b`
if (comp(arr[li], arr[ri]) <= 0) {
result[i++] = arr[li++];
}
else {
result[i++] = arr[ri++];
}
}
// Nothing to compare, just flush what's left.
else if (li < r) {
result[i++] = arr[li++];
}
else if (ri < e) {
result[i++] = arr[ri++];
}
// Both iterators are at the chunk ends.
else {
break;
}
}
}
return result;
};
var arrsort = function(comp) {
return stable(this, comp);
};
if (Object.defineProperty) {
Object.defineProperty(Array.prototype, "sort", {
configurable: true, writable: true, enumerable: false,
value: arrsort
});
} else {
Array.prototype.sort = arrsort;
}
})();
/***************************************************************
* END STABLE.JS
**************************************************************/
/*
* In a generated replay, this file is partially common, boilerplate code
* included in every replay, and partially generated replay code. The following
* header applies to the boilerplate code. A comment indicating "Auto-generated
* below this comment" marks the separation between these two parts.
*
* Copyright (C) 2011, 2012 Purdue University
* Written by Gregor Richards
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
(function() {
// global eval alias
var geval = eval;
// detect if we're in a browser or not
var inbrowser = false;
var inharness = false;
var finished = false;
if (typeof window !== "undefined" && "document" in window) {
inbrowser = true;
if (window.parent && "JSBNG_handleResult" in window.parent) {
inharness = true;
}
} else if (typeof global !== "undefined") {
window = global;
window.top = window;
} else {
window = (function() { return this; })();
window.top = window;
}
if ("console" in window) {
window.JSBNG_Console = window.console;
}
var callpath = [];
// global state
var JSBNG_Replay = window.top.JSBNG_Replay = {
push: function(arr, fun) {
arr.push(fun);
return fun;
},
path: function(str) {
verifyPath(str);
},
forInKeys: function(of) {
var keys = [];
for (var k in of)
keys.push(k);
return keys.sort();
}
};
[JSC] Allow JSBench to use precise time https://bugs.webkit.org/show_bug.cgi?id=158050 Reviewed by Geoffrey Garen. PerformanceTests: * JSBench/amazon-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox-win/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox/uem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/harness.js: (runBenchmark.window.currentTimeInMS): (runBenchmark.else.window.currentTimeInMS): * JSBench/twitter-chrome-win/rem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): Tools: JSBench use `new Date().getTime()` without options and there is no way to use precise time. This patch modifies the JSBench code to inject the code taking the precise time. `currentTimeInMS` is given by the benchmerk harness and JSBench uses it. run-jsc-benchmark switches this function's implementation between `Date.now()` and testRunner's precise time one. While this patch modifies the code of JSBench, the last release of JSBench is Jan 2013 and the contents are not changed for a long time. As described in the original paper[1], the tests can be generated by using JSBench's record & replay system, but in that case, we can adopt this modification by changing the tool side. We also add currentTimeInMS implementation in harness.js and u?rem.js directly. u?rem.js implementation is required when it is executed in u?rem.html without harness. And harness.js implementation is required when it is executed in the JSBench's harness. In these implementation, we follow the JetStream's time measuring function: performance.now(), preciseTime(), or Date.now(). [1]: http://dl.acm.org/citation.cfm?id=2048119 * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176245@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201442 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-27 00:40:09 +00:00
var currentTimeInMS;
if (inharness) {
currentTimeInMS = window.parent.currentTimeInMS;
} else {
if (window.performance && window.performance.now)
currentTimeInMS = function() { return window.performance.now() };
else if (typeof preciseTime !== 'undefined')
currentTimeInMS = function() { return preciseTime() * 1000; };
else
currentTimeInMS = function() { return Date.now(); };
}
We should have JSBench in PerformanceTests https://bugs.webkit.org/show_bug.cgi?id=157952 Rubber-stamped by Saam Barati. PerformanceTests: There are some slight changes to the layout of the test directory to make it work nicely with run-jsc-benchmarks. Before JSBench had each of the browser specific sub-tests in a sub-directory. These have been flattened e.g. amazon/safari/ has become amazon-safari/. * JSBench/amazon-chrome-win/urem.html: Added. * JSBench/amazon-chrome-win/urem.js: Added. * JSBench/amazon-chrome/urem.html: Added. * JSBench/amazon-chrome/urem.js: Added. * JSBench/amazon-firefox-win/urm.html: Added. * JSBench/amazon-firefox-win/urm.js: Added. * JSBench/amazon-firefox/urm.html: Added. * JSBench/amazon-firefox/urm.js: Added. * JSBench/amazon-safari/urem.html: Added. * JSBench/amazon-safari/urem.js: Added. * JSBench/browsercheck.js: Added. * JSBench/facebook-chrome-win/urem.html: Added. * JSBench/facebook-chrome-win/urem.js: Added. * JSBench/facebook-chrome/urem.html: Added. * JSBench/facebook-chrome/urem.js: Added. * JSBench/facebook-firefox-win/urem.html: Added. * JSBench/facebook-firefox-win/urem.js: Added. * JSBench/facebook-firefox/urem.html: Added. * JSBench/facebook-firefox/urem.js: Added. * JSBench/facebook-safari/urem.html: Added. * JSBench/facebook-safari/urem.js: Added. * JSBench/google-chrome-win/urem.html: Added. * JSBench/google-chrome-win/urem.js: Added. * JSBench/google-chrome/urem.html: Added. * JSBench/google-chrome/urem.js: Added. * JSBench/google-firefox-win/urem.html: Added. * JSBench/google-firefox-win/urem.js: Added. * JSBench/google-firefox/uem.html: Added. * JSBench/google-firefox/uem.js: Added. * JSBench/google-safari/urem.html: Added. * JSBench/google-safari/urem.js: Added. * JSBench/harness.html: Added. * JSBench/harness.js: Added. * JSBench/harness.py: Added. * JSBench/index.html: Added. * JSBench/reload.html: Added. * JSBench/twitter-chrome-win/rem.html: Added. * JSBench/twitter-chrome-win/rem.js: Added. * JSBench/twitter-chrome/urem.html: Added. * JSBench/twitter-chrome/urem.js: Added. * JSBench/twitter-firefox-win/urem.html: Added. * JSBench/twitter-firefox-win/urem.js: Added. * JSBench/twitter-firefox/urem.html: Added. * JSBench/twitter-firefox/urem.js: Added. * JSBench/twitter-safari/urem.html: Added. * JSBench/twitter-safari/urem.js: Added. * JSBench/yahoo-chrome-win/urem.html: Added. * JSBench/yahoo-chrome-win/urem.js: Added. * JSBench/yahoo-chrome/urem.html: Added. * JSBench/yahoo-chrome/urem.js: Added. * JSBench/yahoo-firefox-win/urem.html: Added. * JSBench/yahoo-firefox-win/urem.js: Added. * JSBench/yahoo-firefox/urem.html: Added. * JSBench/yahoo-firefox/urem.js: Added. * JSBench/yahoo-safari/urem.html: Added. * JSBench/yahoo-safari/urem.js: Added. Tools: This changes the runner to use the layout of the newest version of JSBench. * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176149@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201339 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-24 19:00:51 +00:00
// the actual replay runner
function onload() {
try {
delete window.onload;
} catch (ex) {}
var jr = JSBNG_Replay$;
var cb = function() {
[JSC] Allow JSBench to use precise time https://bugs.webkit.org/show_bug.cgi?id=158050 Reviewed by Geoffrey Garen. PerformanceTests: * JSBench/amazon-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox-win/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox/uem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/harness.js: (runBenchmark.window.currentTimeInMS): (runBenchmark.else.window.currentTimeInMS): * JSBench/twitter-chrome-win/rem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): Tools: JSBench use `new Date().getTime()` without options and there is no way to use precise time. This patch modifies the JSBench code to inject the code taking the precise time. `currentTimeInMS` is given by the benchmerk harness and JSBench uses it. run-jsc-benchmark switches this function's implementation between `Date.now()` and testRunner's precise time one. While this patch modifies the code of JSBench, the last release of JSBench is Jan 2013 and the contents are not changed for a long time. As described in the original paper[1], the tests can be generated by using JSBench's record & replay system, but in that case, we can adopt this modification by changing the tool side. We also add currentTimeInMS implementation in harness.js and u?rem.js directly. u?rem.js implementation is required when it is executed in u?rem.html without harness. And harness.js implementation is required when it is executed in the JSBench's harness. In these implementation, we follow the JetStream's time measuring function: performance.now(), preciseTime(), or Date.now(). [1]: http://dl.acm.org/citation.cfm?id=2048119 * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176245@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201442 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-27 00:40:09 +00:00
var end = currentTimeInMS();
We should have JSBench in PerformanceTests https://bugs.webkit.org/show_bug.cgi?id=157952 Rubber-stamped by Saam Barati. PerformanceTests: There are some slight changes to the layout of the test directory to make it work nicely with run-jsc-benchmarks. Before JSBench had each of the browser specific sub-tests in a sub-directory. These have been flattened e.g. amazon/safari/ has become amazon-safari/. * JSBench/amazon-chrome-win/urem.html: Added. * JSBench/amazon-chrome-win/urem.js: Added. * JSBench/amazon-chrome/urem.html: Added. * JSBench/amazon-chrome/urem.js: Added. * JSBench/amazon-firefox-win/urm.html: Added. * JSBench/amazon-firefox-win/urm.js: Added. * JSBench/amazon-firefox/urm.html: Added. * JSBench/amazon-firefox/urm.js: Added. * JSBench/amazon-safari/urem.html: Added. * JSBench/amazon-safari/urem.js: Added. * JSBench/browsercheck.js: Added. * JSBench/facebook-chrome-win/urem.html: Added. * JSBench/facebook-chrome-win/urem.js: Added. * JSBench/facebook-chrome/urem.html: Added. * JSBench/facebook-chrome/urem.js: Added. * JSBench/facebook-firefox-win/urem.html: Added. * JSBench/facebook-firefox-win/urem.js: Added. * JSBench/facebook-firefox/urem.html: Added. * JSBench/facebook-firefox/urem.js: Added. * JSBench/facebook-safari/urem.html: Added. * JSBench/facebook-safari/urem.js: Added. * JSBench/google-chrome-win/urem.html: Added. * JSBench/google-chrome-win/urem.js: Added. * JSBench/google-chrome/urem.html: Added. * JSBench/google-chrome/urem.js: Added. * JSBench/google-firefox-win/urem.html: Added. * JSBench/google-firefox-win/urem.js: Added. * JSBench/google-firefox/uem.html: Added. * JSBench/google-firefox/uem.js: Added. * JSBench/google-safari/urem.html: Added. * JSBench/google-safari/urem.js: Added. * JSBench/harness.html: Added. * JSBench/harness.js: Added. * JSBench/harness.py: Added. * JSBench/index.html: Added. * JSBench/reload.html: Added. * JSBench/twitter-chrome-win/rem.html: Added. * JSBench/twitter-chrome-win/rem.js: Added. * JSBench/twitter-chrome/urem.html: Added. * JSBench/twitter-chrome/urem.js: Added. * JSBench/twitter-firefox-win/urem.html: Added. * JSBench/twitter-firefox-win/urem.js: Added. * JSBench/twitter-firefox/urem.html: Added. * JSBench/twitter-firefox/urem.js: Added. * JSBench/twitter-safari/urem.html: Added. * JSBench/twitter-safari/urem.js: Added. * JSBench/yahoo-chrome-win/urem.html: Added. * JSBench/yahoo-chrome-win/urem.js: Added. * JSBench/yahoo-chrome/urem.html: Added. * JSBench/yahoo-chrome/urem.js: Added. * JSBench/yahoo-firefox-win/urem.html: Added. * JSBench/yahoo-firefox-win/urem.js: Added. * JSBench/yahoo-firefox/urem.html: Added. * JSBench/yahoo-firefox/urem.js: Added. * JSBench/yahoo-safari/urem.html: Added. * JSBench/yahoo-safari/urem.js: Added. Tools: This changes the runner to use the layout of the newest version of JSBench. * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176149@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201339 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-24 19:00:51 +00:00
finished = true;
var msg = "Time: " + (end - st) + "ms";
if (inharness) {
window.parent.JSBNG_handleResult({error:false, time:(end - st)});
} else if (inbrowser) {
var res = document.createElement("div");
res.style.position = "fixed";
res.style.left = "1em";
res.style.top = "1em";
res.style.width = "35em";
res.style.height = "5em";
res.style.padding = "1em";
res.style.backgroundColor = "white";
res.style.color = "black";
res.appendChild(document.createTextNode(msg));
document.body.appendChild(res);
} else if (typeof console !== "undefined") {
console.log(msg);
} else if (typeof print !== "undefined") {
// hopefully not the browser print() function :)
print(msg);
}
};
// force it to JIT
jr(false);
// then time it
[JSC] Allow JSBench to use precise time https://bugs.webkit.org/show_bug.cgi?id=158050 Reviewed by Geoffrey Garen. PerformanceTests: * JSBench/amazon-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox-win/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox/uem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/harness.js: (runBenchmark.window.currentTimeInMS): (runBenchmark.else.window.currentTimeInMS): * JSBench/twitter-chrome-win/rem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): Tools: JSBench use `new Date().getTime()` without options and there is no way to use precise time. This patch modifies the JSBench code to inject the code taking the precise time. `currentTimeInMS` is given by the benchmerk harness and JSBench uses it. run-jsc-benchmark switches this function's implementation between `Date.now()` and testRunner's precise time one. While this patch modifies the code of JSBench, the last release of JSBench is Jan 2013 and the contents are not changed for a long time. As described in the original paper[1], the tests can be generated by using JSBench's record & replay system, but in that case, we can adopt this modification by changing the tool side. We also add currentTimeInMS implementation in harness.js and u?rem.js directly. u?rem.js implementation is required when it is executed in u?rem.html without harness. And harness.js implementation is required when it is executed in the JSBench's harness. In these implementation, we follow the JetStream's time measuring function: performance.now(), preciseTime(), or Date.now(). [1]: http://dl.acm.org/citation.cfm?id=2048119 * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176245@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201442 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-27 00:40:09 +00:00
var st = currentTimeInMS();
We should have JSBench in PerformanceTests https://bugs.webkit.org/show_bug.cgi?id=157952 Rubber-stamped by Saam Barati. PerformanceTests: There are some slight changes to the layout of the test directory to make it work nicely with run-jsc-benchmarks. Before JSBench had each of the browser specific sub-tests in a sub-directory. These have been flattened e.g. amazon/safari/ has become amazon-safari/. * JSBench/amazon-chrome-win/urem.html: Added. * JSBench/amazon-chrome-win/urem.js: Added. * JSBench/amazon-chrome/urem.html: Added. * JSBench/amazon-chrome/urem.js: Added. * JSBench/amazon-firefox-win/urm.html: Added. * JSBench/amazon-firefox-win/urm.js: Added. * JSBench/amazon-firefox/urm.html: Added. * JSBench/amazon-firefox/urm.js: Added. * JSBench/amazon-safari/urem.html: Added. * JSBench/amazon-safari/urem.js: Added. * JSBench/browsercheck.js: Added. * JSBench/facebook-chrome-win/urem.html: Added. * JSBench/facebook-chrome-win/urem.js: Added. * JSBench/facebook-chrome/urem.html: Added. * JSBench/facebook-chrome/urem.js: Added. * JSBench/facebook-firefox-win/urem.html: Added. * JSBench/facebook-firefox-win/urem.js: Added. * JSBench/facebook-firefox/urem.html: Added. * JSBench/facebook-firefox/urem.js: Added. * JSBench/facebook-safari/urem.html: Added. * JSBench/facebook-safari/urem.js: Added. * JSBench/google-chrome-win/urem.html: Added. * JSBench/google-chrome-win/urem.js: Added. * JSBench/google-chrome/urem.html: Added. * JSBench/google-chrome/urem.js: Added. * JSBench/google-firefox-win/urem.html: Added. * JSBench/google-firefox-win/urem.js: Added. * JSBench/google-firefox/uem.html: Added. * JSBench/google-firefox/uem.js: Added. * JSBench/google-safari/urem.html: Added. * JSBench/google-safari/urem.js: Added. * JSBench/harness.html: Added. * JSBench/harness.js: Added. * JSBench/harness.py: Added. * JSBench/index.html: Added. * JSBench/reload.html: Added. * JSBench/twitter-chrome-win/rem.html: Added. * JSBench/twitter-chrome-win/rem.js: Added. * JSBench/twitter-chrome/urem.html: Added. * JSBench/twitter-chrome/urem.js: Added. * JSBench/twitter-firefox-win/urem.html: Added. * JSBench/twitter-firefox-win/urem.js: Added. * JSBench/twitter-firefox/urem.html: Added. * JSBench/twitter-firefox/urem.js: Added. * JSBench/twitter-safari/urem.html: Added. * JSBench/twitter-safari/urem.js: Added. * JSBench/yahoo-chrome-win/urem.html: Added. * JSBench/yahoo-chrome-win/urem.js: Added. * JSBench/yahoo-chrome/urem.html: Added. * JSBench/yahoo-chrome/urem.js: Added. * JSBench/yahoo-firefox-win/urem.html: Added. * JSBench/yahoo-firefox-win/urem.js: Added. * JSBench/yahoo-firefox/urem.html: Added. * JSBench/yahoo-firefox/urem.js: Added. * JSBench/yahoo-safari/urem.html: Added. * JSBench/yahoo-safari/urem.js: Added. Tools: This changes the runner to use the layout of the newest version of JSBench. * Scripts/run-jsc-benchmarks: Canonical link: https://commits.webkit.org/176149@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@201339 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-24 19:00:51 +00:00
while (jr !== null) {
jr = jr(true, cb);
}
}
// add a frame at replay time
function iframe(pageid) {
var iw;
if (inbrowser) {
// represent the iframe as an iframe (of course)
var iframe = document.createElement("iframe");
iframe.style.display = "none";
document.body.appendChild(iframe);
iw = iframe.contentWindow;
iw.document.write("<script type=\"text/javascript\">var JSBNG_Replay_geval = eval;</script>");
iw.document.close();
} else {
// no general way, just lie and do horrible things
var topwin = window;
(function() {
var window = {};
window.window = window;
window.top = topwin;
window.JSBNG_Replay_geval = function(str) {
eval(str);
}
iw = window;
})();
}
return iw;
}
// called at the end of the replay stuff
function finalize() {
if (inbrowser) {
setTimeout(onload, 0);
} else {
onload();
}
}
// verify this recorded value and this replayed value are close enough
function verify(rep, rec) {
if (rec !== rep &&
(rep === rep || rec === rec) /* NaN test */) {
// FIXME?
if (typeof rec === "function" && typeof rep === "function") {
return true;
}
if (typeof rec !== "object" || rec === null ||
!(("__JSBNG_unknown_" + typeof(rep)) in rec)) {
return false;
}
}
return true;
}
// general message
var firstMessage = true;
function replayMessage(msg) {
if (inbrowser) {
if (firstMessage)
document.open();
firstMessage = false;
document.write(msg);
} else {
console.log(msg);
}
}
// complain when there's an error
function verificationError(msg) {
if (finished) return;
if (inharness) {
window.parent.JSBNG_handleResult({error:true, msg: msg});
} else replayMessage(msg);
throw new Error();
}
// to verify a set
function verifySet(objstr, obj, prop, gvalstr, gval) {
if (/^on/.test(prop)) {
// these aren't instrumented compatibly
return;
}
if (!verify(obj[prop], gval)) {
var bval = obj[prop];
var msg = "Verification failure! " + objstr + "." + prop + " is not " + gvalstr + ", it's " + bval + "!";
verificationError(msg);
}
}
// to verify a call or new
function verifyCall(iscall, func, cthis, cargs) {
var ok = true;
var callArgs = func.callArgs[func.inst];
iscall = iscall ? 1 : 0;
if (cargs.length !== callArgs.length - 1) {
ok = false;
} else {
if (iscall && !verify(cthis, callArgs[0])) ok = false;
for (var i = 0; i < cargs.length; i++) {
if (!verify(cargs[i], callArgs[i+1])) ok = false;
}
}
if (!ok) {
var msg = "Call verification failure!";
verificationError(msg);
}
return func.returns[func.inst++];
}
// to verify the callpath
function verifyPath(func) {
var real = callpath.shift();
if (real !== func) {
var msg = "Call path verification failure! Expected " + real + ", found " + func;
verificationError(msg);
}
}
// figure out how to define getters
var defineGetter;
if (Object.defineProperty) {
var odp = Object.defineProperty;
defineGetter = function(obj, prop, getter, setter) {
if (typeof setter === "undefined") setter = function(){};
odp(obj, prop, {"enumerable": true, "configurable": true, "get": getter, "set": setter});
};
} else if (Object.prototype.__defineGetter__) {
var opdg = Object.prototype.__defineGetter__;
var opds = Object.prototype.__defineSetter__;
defineGetter = function(obj, prop, getter, setter) {
if (typeof setter === "undefined") setter = function(){};
opdg.call(obj, prop, getter);
opds.call(obj, prop, setter);
};
} else {
defineGetter = function() {
verificationError("This replay requires getters for correct behavior, and your JS engine appears to be incapable of defining getters. Sorry!");
};
}
var defineRegetter = function(obj, prop, getter, setter) {
defineGetter(obj, prop, function() {
return getter.call(this, prop);
}, function(val) {
// once it's set by the client, it's claimed
setter.call(this, prop, val);
Object.defineProperty(obj, prop, {
"enumerable": true, "configurable": true, "writable": true,
"value": val
});
});
}
// for calling events
var fpc = Function.prototype.call;
// resist the urge, don't put a })(); here!
/******************************************************************************
* Auto-generated below this comment
*****************************************************************************/
var ow449694821 = window;
var f449694821_0;
var o0;
var o1;
var f449694821_4;
var f449694821_7;
var f449694821_16;
var f449694821_17;
var f449694821_18;
var o2;
var o3;
var o4;
var f449694821_57;
var o5;
var f449694821_64;
var f449694821_239;
var f449694821_386;
var f449694821_387;
var f449694821_388;
var f449694821_389;
var f449694821_391;
var o6;
var o7;
var f449694821_394;
var o8;
var f449694821_396;
var o9;
var f449694821_398;
var o10;
var f449694821_405;
var f449694821_406;
var o11;
var o12;
var o13;
var o14;
var o15;
var o16;
var o17;
var f449694821_419;
var o18;
var f449694821_422;
var f449694821_424;
var f449694821_427;
var f449694821_428;
var f449694821_402;
var o19;
var o20;
var o21;
var o22;
var o23;
var o24;
var o25;
var o26;
var o27;
var f449694821_443;
var f449694821_444;
var f449694821_445;
var f449694821_446;
var f449694821_450;
var o28;
var o29;
var o30;
var o31;
var o32;
var o33;
var o34;
var f449694821_466;
var o35;
var o36;
var o37;
var o38;
var o39;
var o40;
var f449694821_479;
var o41;
var o42;
var o43;
var f449694821_510;
var f449694821_511;
var f449694821_512;
var o44;
var f449694821_514;
var f449694821_516;
var f449694821_517;
var o45;
var f449694821_520;
var f449694821_521;
var f449694821_522;
var o46;
var o47;
var o48;
var o49;
var o50;
var o51;
var o52;
var o53;
var o54;
var o55;
var o56;
var o57;
var o58;
var o59;
var o60;
var o61;
var o62;
var o63;
var o64;
var f449694821_553;
var o65;
var f449694821_563;
var f449694821_566;
var f449694821_691;
var f449694821_748;
var f449694821_767;
var f449694821_770;
var f449694821_771;
var f449694821_795;
var f449694821_799;
var f449694821_800;
var f449694821_802;
var f449694821_812;
var f449694821_816;
var f449694821_818;
var f449694821_820;
var f449694821_822;
var f449694821_823;
var f449694821_824;
var f449694821_825;
var f449694821_826;
var fo449694821_803_readyState;
var f449694821_914;
var f449694821_915;
var f449694821_916;
var f449694821_917;
var f449694821_919;
var f449694821_920;
var f449694821_921;
var f449694821_922;
var o66;
var o67;
var o68;
var o69;
var o70;
var o71;
var o72;
var o73;
var o74;
var o75;
var o76;
var o77;
var o78;
var o79;
var o80;
var o81;
var o82;
var o83;
var o84;
var o85;
var o86;
var o87;
var o88;
var o89;
var o90;
var o91;
var o92;
var o93;
var o94;
var o95;
var o96;
var o97;
var o98;
var o99;
var o100;
var o101;
var o102;
var o103;
var o104;
var o105;
var o106;
var o107;
var o108;
var o109;
var o110;
var o111;
var o112;
var o113;
var o114;
var o115;
var o116;
var o117;
var o118;
var o119;
var o120;
var o121;
var o122;
var o123;
var o124;
var o125;
var o126;
var o127;
var o128;
var o129;
var o130;
var o131;
var o132;
var o133;
var o134;
var o135;
var o136;
var o137;
var o138;
var o139;
var o140;
var o141;
var o142;
var o143;
var o144;
var o145;
var o146;
var o147;
var o148;
var o149;
var o150;
var o151;
var o152;
var o153;
var o154;
var o155;
var o156;
var o157;
var o158;
var o159;
var o160;
var o161;
var o162;
var o163;
var o164;
var o165;
var o166;
var o167;
var o168;
var o169;
var o170;
var o171;
var o172;
var o173;
var o174;
var o175;
var o176;
var o177;
var o178;
var o179;
var o180;
var o181;
var o182;
var o183;
var o184;
var o185;
var o186;
var o187;
var o188;
var o189;
var o190;
var o191;
var o192;
var o193;
var o194;
var o195;
var o196;
var o197;
var o198;
var o199;
var o200;
var o201;
var o202;
var o203;
var o204;
var o205;
var o206;
var o207;
var o208;
var o209;
var o210;
var o211;
var o212;
var o213;
var o214;
var o215;
var o216;
var o217;
var o218;
var o219;
var o220;
var o221;
var o222;
var o223;
var o224;
var o225;
var o226;
var o227;
var o228;
var o229;
var o230;
var o231;
var o232;
var o233;
var o234;
var o235;
var o236;
var o237;
var o238;
var o239;
var o240;
var o241;
var o242;
var o243;
var o244;
var o245;
var o246;
var o247;
var o248;
var o249;
var o250;
var o251;
var o252;
var o253;
var o254;
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_222 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_190 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_278 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_376 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_378 = [];
JSBNG_Replay.s5e7dba3ea700a5261ca8857ec975a807389e8969_42 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_96 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_225 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39 = [];
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_226 = [];
// 1
// record generated by JSBench 8fa236f2f0ec at 2013-07-10T21:01:21.708Z
// 2
// 3
f449694821_0 = function() { return f449694821_0.returns[f449694821_0.inst++]; };
f449694821_0.returns = [];
f449694821_0.inst = 0;
// 4
ow449694821.JSBNG__Date = f449694821_0;
// 5
o0 = {};
// 6
ow449694821.JSBNG__document = o0;
// 7
o1 = {};
// 8
ow449694821.JSBNG__sessionStorage = o1;
// 11
f449694821_4 = function() { return f449694821_4.returns[f449694821_4.inst++]; };
f449694821_4.returns = [];
f449694821_4.inst = 0;
// 12
ow449694821.JSBNG__getComputedStyle = f449694821_4;
// 17
f449694821_7 = function() { return f449694821_7.returns[f449694821_7.inst++]; };
f449694821_7.returns = [];
f449694821_7.inst = 0;
// 18
ow449694821.JSBNG__addEventListener = f449694821_7;
// 19
ow449694821.JSBNG__top = ow449694821;
// 28
ow449694821.JSBNG__scrollX = 0;
// 29
ow449694821.JSBNG__scrollY = 0;
// 38
f449694821_16 = function() { return f449694821_16.returns[f449694821_16.inst++]; };
f449694821_16.returns = [];
f449694821_16.inst = 0;
// 39
ow449694821.JSBNG__setTimeout = f449694821_16;
// 40
f449694821_17 = function() { return f449694821_17.returns[f449694821_17.inst++]; };
f449694821_17.returns = [];
f449694821_17.inst = 0;
// 41
ow449694821.JSBNG__setInterval = f449694821_17;
// 42
f449694821_18 = function() { return f449694821_18.returns[f449694821_18.inst++]; };
f449694821_18.returns = [];
f449694821_18.inst = 0;
// 43
ow449694821.JSBNG__clearTimeout = f449694821_18;
// 60
ow449694821.JSBNG__frames = ow449694821;
// 63
ow449694821.JSBNG__self = ow449694821;
// 64
o2 = {};
// 65
ow449694821.JSBNG__navigator = o2;
// 68
o3 = {};
// 69
ow449694821.JSBNG__history = o3;
// 70
ow449694821.JSBNG__content = ow449694821;
// 81
ow449694821.JSBNG__closed = false;
// 84
ow449694821.JSBNG__pkcs11 = null;
// 87
ow449694821.JSBNG__opener = null;
// 88
ow449694821.JSBNG__defaultStatus = "";
// 89
o4 = {};
// 90
ow449694821.JSBNG__location = o4;
// 91
ow449694821.JSBNG__innerWidth = 994;
// 92
ow449694821.JSBNG__innerHeight = 603;
// 93
ow449694821.JSBNG__outerWidth = 994;
// 94
ow449694821.JSBNG__outerHeight = 690;
// 95
ow449694821.JSBNG__screenX = 9;
// 96
ow449694821.JSBNG__screenY = 31;
// 97
ow449694821.JSBNG__mozInnerScreenX = 0;
// 98
ow449694821.JSBNG__mozInnerScreenY = 0;
// 99
ow449694821.JSBNG__pageXOffset = 0;
// 100
ow449694821.JSBNG__pageYOffset = 0;
// 101
ow449694821.JSBNG__scrollMaxX = 0;
// 102
ow449694821.JSBNG__scrollMaxY = 0;
// 103
ow449694821.JSBNG__fullScreen = false;
// 136
ow449694821.JSBNG__frameElement = null;
// 141
ow449694821.JSBNG__mozPaintCount = 0;
// 142
f449694821_57 = function() { return f449694821_57.returns[f449694821_57.inst++]; };
f449694821_57.returns = [];
f449694821_57.inst = 0;
// 143
ow449694821.JSBNG__mozRequestAnimationFrame = f449694821_57;
// 144
ow449694821.JSBNG__mozAnimationStartTime = 1373490145767;
// 145
o5 = {};
// 146
ow449694821.JSBNG__mozIndexedDB = o5;
// 155
ow449694821.JSBNG__devicePixelRatio = 1;
// 158
f449694821_64 = function() { return f449694821_64.returns[f449694821_64.inst++]; };
f449694821_64.returns = [];
f449694821_64.inst = 0;
// 159
ow449694821.JSBNG__XMLHttpRequest = f449694821_64;
// 166
ow449694821.JSBNG__name = "";
// 173
ow449694821.JSBNG__status = "";
// 176
ow449694821.JSBNG__Components = undefined;
// 511
f449694821_239 = function() { return f449694821_239.returns[f449694821_239.inst++]; };
f449694821_239.returns = [];
f449694821_239.inst = 0;
// 512
ow449694821.JSBNG__Event = f449694821_239;
// 771
ow449694821.JSBNG__indexedDB = o5;
// undefined
o5 = null;
// 804
ow449694821.JSBNG__onerror = null;
// 807
f449694821_386 = function() { return f449694821_386.returns[f449694821_386.inst++]; };
f449694821_386.returns = [];
f449694821_386.inst = 0;
// 808
ow449694821.Math.JSBNG__random = f449694821_386;
// 809
// 813
f449694821_387 = function() { return f449694821_387.returns[f449694821_387.inst++]; };
f449694821_387.returns = [];
f449694821_387.inst = 0;
// 814
f449694821_0.now = f449694821_387;
// 815
f449694821_387.returns.push(1373490150930);
// 816
o4.search = "?sk=welcome";
// 832
// 833
// 835
f449694821_388 = function() { return f449694821_388.returns[f449694821_388.inst++]; };
f449694821_388.returns = [];
f449694821_388.inst = 0;
// 836
o0.JSBNG__addEventListener = f449694821_388;
// 837
o2.userAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0";
// 839
f449694821_388.returns.push(undefined);
// 840
f449694821_389 = function() { return f449694821_389.returns[f449694821_389.inst++]; };
f449694821_389.returns = [];
f449694821_389.inst = 0;
// 841
ow449694821.JSBNG__onload = f449694821_389;
// 849
o5 = {};
// 856
o0.documentMode = void 0;
// 858
f449694821_391 = function() { return f449694821_391.returns[f449694821_391.inst++]; };
f449694821_391.returns = [];
f449694821_391.inst = 0;
// 859
o0.getElementsByTagName = f449694821_391;
// 860
o6 = {};
// 861
f449694821_391.returns.push(o6);
// 862
o6.length = 1;
// 863
o7 = {};
// 864
o6["0"] = o7;
// 865
f449694821_394 = function() { return f449694821_394.returns[f449694821_394.inst++]; };
f449694821_394.returns = [];
f449694821_394.inst = 0;
// 866
o0.createDocumentFragment = f449694821_394;
// 867
o8 = {};
// 868
f449694821_394.returns.push(o8);
// 870
f449694821_387.returns.push(1373490151003);
// 871
f449694821_396 = function() { return f449694821_396.returns[f449694821_396.inst++]; };
f449694821_396.returns = [];
f449694821_396.inst = 0;
// 872
o0.createElement = f449694821_396;
// 873
o9 = {};
// 874
f449694821_396.returns.push(o9);
// 875
// 876
// 877
// 878
// 879
// 880
// 881
f449694821_398 = function() { return f449694821_398.returns[f449694821_398.inst++]; };
f449694821_398.returns = [];
f449694821_398.inst = 0;
// 882
o8.appendChild = f449694821_398;
// 883
f449694821_398.returns.push(o9);
// 885
f449694821_387.returns.push(1373490151006);
// 887
o10 = {};
// 888
f449694821_396.returns.push(o10);
// 889
// 890
// 891
// 892
// 893
// 894
// 896
f449694821_398.returns.push(o10);
// 897
o7.appendChild = f449694821_398;
// 898
f449694821_398.returns.push(o8);
// 903
f449694821_387 = function() { return f449694821_387.returns[f449694821_387.inst++]; };
f449694821_387.returns = [];
f449694821_387.inst = 0;
// 905
f449694821_387.returns.push(1373490150930);
// 922
// 923
// 925
f449694821_388 = function() { return f449694821_388.returns[f449694821_388.inst++]; };
f449694821_388.returns = [];
f449694821_388.inst = 0;
// 929
f449694821_388.returns.push(undefined);
// 930
f449694821_389 = function() { return f449694821_389.returns[f449694821_389.inst++]; };
f449694821_389.returns = [];
f449694821_389.inst = 0;
// 939
o5 = {};
// 948
f449694821_391 = function() { return f449694821_391.returns[f449694821_391.inst++]; };
f449694821_391.returns = [];
f449694821_391.inst = 0;
// 950
o6 = {};
// 951
f449694821_391.returns.push(o6);
// 952
o6.length = 1;
// 953
o7 = {};
// 954
o6["0"] = o7;
// undefined
o6 = null;
// 955
f449694821_394 = function() { return f449694821_394.returns[f449694821_394.inst++]; };
f449694821_394.returns = [];
f449694821_394.inst = 0;
// 957
o8 = {};
// 958
f449694821_394.returns.push(o8);
// 960
f449694821_387.returns.push(1373490151003);
// 961
f449694821_396 = function() { return f449694821_396.returns[f449694821_396.inst++]; };
f449694821_396.returns = [];
f449694821_396.inst = 0;
// 963
o9 = {};
// 964
f449694821_396.returns.push(o9);
// 965
// 966
// 967
// 968
// 969
// 970
// 971
f449694821_398 = function() { return f449694821_398.returns[f449694821_398.inst++]; };
f449694821_398.returns = [];
f449694821_398.inst = 0;
// 972
o8.appendChild = f449694821_398;
// 973
f449694821_398.returns.push(o9);
// 975
f449694821_387.returns.push(1373490151006);
// 977
o10 = {};
// 978
f449694821_396.returns.push(o10);
// 979
// 980
// 981
// 982
// 983
// 984
// 986
f449694821_398.returns.push(o10);
// 987
o7.appendChild = f449694821_398;
// 988
f449694821_398.returns.push(o8);
// undefined
o8 = null;
// 999
f449694821_386.returns.push(0.10655516814670318);
// 1000
f449694821_405 = function() { return f449694821_405.returns[f449694821_405.inst++]; };
f449694821_405.returns = [];
f449694821_405.inst = 0;
// 1001
ow449694821.JSBNG__onunload = f449694821_405;
// 1003
f449694821_387.returns.push(1373490154326);
// 1004
f449694821_406 = function() { return f449694821_406.returns[f449694821_406.inst++]; };
f449694821_406.returns = [];
f449694821_406.inst = 0;
// 1005
o1.getItem = f449694821_406;
// undefined
o1 = null;
// 1006
f449694821_406.returns.push(null);
// 1008
f449694821_387.returns.push(1373490154328);
// 1009
f449694821_18.returns.push(undefined);
// 1010
f449694821_16.returns.push(2);
// 1014
o1 = {};
// 1015
o0.documentElement = o1;
// 1016
o1.className = "no_js";
// 1017
// 1019
o0.domain = "jsbngssl.www.facebook.com";
// 1020
// 1022
o4.href = "https://www.facebook.com/?sk=welcome";
// 1066
o6 = {};
// 1067
f449694821_391.returns.push(o6);
// 1068
o6.length = 8;
// 1069
o8 = {};
// 1070
o6["0"] = o8;
// 1071
o8.rel = "alternate";
// 1073
o11 = {};
// 1074
o6["1"] = o11;
// 1075
o11.rel = "stylesheet";
// 1077
o11.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y0/r/RxMmKV8uOEh.css";
// 1080
o12 = {};
// 1081
o6["2"] = o12;
// 1082
o12.rel = "stylesheet";
// 1084
o12.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yj/r/KbSyGJkqroJ.css";
// 1093
o13 = {};
// 1094
o6["3"] = o13;
// 1095
o13.rel = "stylesheet";
// 1097
o13.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yS/r/AXbdtQOFsWr.css";
// 1102
o14 = {};
// 1103
o6["4"] = o14;
// 1104
o14.rel = "shortcut icon";
// 1106
o15 = {};
// 1107
o6["5"] = o15;
// 1108
o15.rel = "stylesheet";
// 1110
o15.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yD/r/OWwnO_yMqhK.css";
// 1113
o16 = {};
// 1114
o6["6"] = o16;
// 1115
o16.rel = "stylesheet";
// 1117
o16.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yb/r/tOU0wFcLVo_.css";
// 1120
o17 = {};
// 1121
o6["7"] = o17;
// undefined
o6 = null;
// 1122
o17.rel = "stylesheet";
// 1124
o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yw/r/JDr6pTZ60bK.css";
// 1153
o6 = {};
// 1154
f449694821_396.returns.push(o6);
// 1155
// 1156
// 1157
f449694821_419 = function() { return f449694821_419.returns[f449694821_419.inst++]; };
f449694821_419.returns = [];
f449694821_419.inst = 0;
// 1158
o6.getElementsByTagName = f449694821_419;
// 1159
o18 = {};
// 1160
f449694821_419.returns.push(o18);
// 1161
o18.length = 0;
// undefined
o18 = null;
// 1163
o18 = {};
// 1164
o6.childNodes = o18;
// undefined
o6 = null;
// 1165
f449694821_422 = function() { return f449694821_422.returns[f449694821_422.inst++]; };
f449694821_422.returns = [];
f449694821_422.inst = 0;
// 1166
o18.item = f449694821_422;
// 1167
o18.length = 1;
// 1168
o6 = {};
// 1169
o18["0"] = o6;
// undefined
o18 = null;
// 1170
f449694821_424 = function() { return f449694821_424.returns[f449694821_424.inst++]; };
f449694821_424.returns = [];
f449694821_424.inst = 0;
// 1171
o6.getAttributeNode = f449694821_424;
// undefined
o6 = null;
// 1173
o6 = {};
// 1174
f449694821_424.returns.push(o6);
// 1175
o6.value = "u_0_1";
// undefined
o6 = null;
// 1224
f449694821_387.returns.push(1373490160712);
// 1226
f449694821_387.returns.push(1373490160713);
// 1227
f449694821_18.returns.push(undefined);
// 1228
f449694821_16.returns.push(3);
// 1233
f449694821_387.returns.push(1373490160714);
// 1234
o6 = {};
// 1235
o0.body = o6;
// 1236
o6.getElementsByTagName = f449694821_419;
// 1237
f449694821_427 = function() { return f449694821_427.returns[f449694821_427.inst++]; };
f449694821_427.returns = [];
f449694821_427.inst = 0;
// 1238
o0.querySelectorAll = f449694821_427;
// 1239
f449694821_428 = function() { return f449694821_428.returns[f449694821_428.inst++]; };
f449694821_428.returns = [];
f449694821_428.inst = 0;
// 1240
o6.querySelectorAll = f449694821_428;
// 1241
o18 = {};
// 1242
f449694821_428.returns.push(o18);
// 1243
o18.length = 0;
// undefined
o18 = null;
// 1244
f449694821_18.returns.push(undefined);
// 1245
f449694821_16.returns.push(4);
// 1251
o1.clientWidth = 979;
// 1268
f449694821_402 = {};
// 1269
o1.JSBNG__addEventListener = f449694821_402;
// 1271
f449694821_402 = function() { return f449694821_402.returns[f449694821_402.inst++]; };
f449694821_402.returns = [];
f449694821_402.inst = 0;
// 1272
f449694821_402.returns.push(undefined);
// 1274
f449694821_402.returns.push(undefined);
// 1283
f449694821_402.returns.push(undefined);
// 1296
// 1297
// 1298
// 1305
// 1309
// 1313
// 1317
// 1321
// 1325
// 1329
// 1333
// 1337
// 1341
// 1345
// 1349
// 1350
o18 = {};
// 1354
f449694821_387.returns.push(1373490165428);
// 1359
o19 = {};
// 1360
f449694821_394.returns.push(o19);
// 1362
f449694821_387.returns.push(1373490165430);
// 1364
o20 = {};
// 1365
f449694821_396.returns.push(o20);
// 1366
// 1367
// 1368
// 1369
// 1370
// 1371
// 1372
o19.appendChild = f449694821_398;
// 1373
f449694821_398.returns.push(o20);
// 1375
f449694821_387.returns.push(1373490165431);
// 1377
o21 = {};
// 1378
f449694821_396.returns.push(o21);
// 1379
// 1380
// 1381
// 1382
// 1383
// 1384
// 1386
f449694821_398.returns.push(o21);
// 1388
f449694821_387.returns.push(1373490165431);
// 1390
o22 = {};
// 1391
f449694821_396.returns.push(o22);
// 1392
// 1393
// 1394
// 1395
// 1396
// 1397
// 1399
f449694821_398.returns.push(o22);
// 1401
f449694821_387.returns.push(1373490165432);
// 1403
o23 = {};
// 1404
f449694821_396.returns.push(o23);
// 1405
// 1406
// 1407
// 1408
// 1409
// 1410
// 1412
f449694821_398.returns.push(o23);
// 1414
f449694821_387.returns.push(1373490165433);
// 1416
o24 = {};
// 1417
f449694821_396.returns.push(o24);
// 1418
// 1419
// 1420
// 1421
// 1422
// 1423
// 1425
f449694821_398.returns.push(o24);
// 1427
f449694821_387.returns.push(1373490165438);
// 1429
o25 = {};
// 1430
f449694821_396.returns.push(o25);
// 1431
// 1432
// 1433
// 1434
// 1435
// 1436
// 1438
f449694821_398.returns.push(o25);
// 1440
f449694821_387.returns.push(1373490165439);
// 1442
o26 = {};
// 1443
f449694821_396.returns.push(o26);
// 1444
// 1445
// 1446
// 1447
// 1448
// 1449
// 1451
f449694821_398.returns.push(o26);
// 1453
f449694821_387.returns.push(1373490165439);
// 1455
o27 = {};
// 1456
f449694821_396.returns.push(o27);
// 1457
// 1458
// 1459
// 1460
// 1461
// 1462
// 1464
f449694821_398.returns.push(o27);
// 1466
f449694821_398.returns.push(o19);
// 1468
f449694821_398.returns.push(o24);
// 1470
f449694821_387.returns.push(1373490165438);
// 1472
o25 = {};
// 1473
f449694821_396.returns.push(o25);
// 1474
// 1475
// 1476
// 1477
// 1478
// 1479
// 1481
f449694821_398.returns.push(o25);
// 1483
f449694821_387.returns.push(1373490165439);
// 1485
o26 = {};
// 1486
f449694821_396.returns.push(o26);
// 1487
// 1488
// 1489
// 1490
// 1491
// 1492
// 1494
f449694821_398.returns.push(o26);
// 1496
f449694821_387.returns.push(1373490165439);
// 1498
o27 = {};
// 1499
f449694821_396.returns.push(o27);
// 1500
// 1501
// 1502
// 1503
// 1504
// 1505
// 1507
f449694821_398.returns.push(o27);
// 1509
f449694821_398.returns.push(o19);
// 1512
f449694821_398.returns.push(o24);
// 1514
f449694821_387.returns.push(1373490165438);
// 1516
o25 = {};
// 1517
f449694821_396.returns.push(o25);
// 1518
// 1519
// 1520
// 1521
// 1522
// 1523
// 1525
f449694821_398.returns.push(o25);
// 1527
f449694821_387.returns.push(1373490165439);
// 1529
o26 = {};
// 1530
f449694821_396.returns.push(o26);
// 1531
// 1532
// 1533
// 1534
// 1535
// 1536
// 1538
f449694821_398.returns.push(o26);
// 1540
f449694821_387.returns.push(1373490165439);
// 1542
o27 = {};
// 1543
f449694821_396.returns.push(o27);
// 1544
// 1545
// 1546
// 1547
// 1548
// 1549
// 1551
f449694821_398.returns.push(o27);
// 1553
f449694821_398.returns.push(o19);
// undefined
o19 = null;
// 1559
o4.protocol = "https:";
// 1560
o0.cookie = "c_user=100006118350059; csm=2";
// 1562
f449694821_387.returns.push(1373490165629);
// 1563
o19 = {};
// 1564
f449694821_0.returns.push(o19);
// 1565
f449694821_443 = function() { return f449694821_443.returns[f449694821_443.inst++]; };
f449694821_443.returns = [];
f449694821_443.inst = 0;
// 1566
o19.toGMTString = f449694821_443;
// undefined
o19 = null;
// 1567
f449694821_443.returns.push("Wed, 17 Jul 2013 21:02:45 GMT");
// 1568
o4.hostname = "jsbngssl.www.facebook.com";
// 1571
f449694821_387.returns.push(1373490165631);
// 1580
o1.nodeName = "HTML";
// 1581
o1.__FB_TOKEN = void 0;
// 1582
// 1583
f449694821_444 = function() { return f449694821_444.returns[f449694821_444.inst++]; };
f449694821_444.returns = [];
f449694821_444.inst = 0;
// 1584
o1.getAttribute = f449694821_444;
// 1585
f449694821_445 = function() { return f449694821_445.returns[f449694821_445.inst++]; };
f449694821_445.returns = [];
f449694821_445.inst = 0;
// 1586
o1.hasAttribute = f449694821_445;
// 1588
f449694821_445.returns.push(false);
// 1591
f449694821_402.returns.push(undefined);
// 1592
o1.JSBNG__oninput = null;
// 1597
f449694821_402.returns.push(undefined);
// 1598
o1.JSBNG__onkeyup = null;
// 1605
f449694821_402.returns.push(undefined);
// 1606
f449694821_446 = function() { return f449694821_446.returns[f449694821_446.inst++]; };
f449694821_446.returns = [];
f449694821_446.inst = 0;
// 1607
o1.JSBNG__onsubmit = f449694821_446;
// 1610
// 1616
o0.title = "Facebook";
// 1617
// 1620
// 1625
o19 = {};
// 1626
f449694821_396.returns.push(o19);
// undefined
o19 = null;
// 1628
o19 = {};
// 1629
f449694821_396.returns.push(o19);
// undefined
o19 = null;
// 1632
o19 = {};
// 1633
f449694821_396.returns.push(o19);
// 1634
f449694821_450 = function() { return f449694821_450.returns[f449694821_450.inst++]; };
f449694821_450.returns = [];
f449694821_450.inst = 0;
// 1635
o0.getElementById = f449694821_450;
// 1636
o28 = {};
// 1637
f449694821_450.returns.push(o28);
// 1638
o28.getElementsByTagName = f449694821_419;
// 1640
o28.querySelectorAll = f449694821_428;
// 1641
o29 = {};
// 1642
f449694821_428.returns.push(o29);
// 1643
o29.length = 1;
// 1644
o30 = {};
// 1645
o29["0"] = o30;
// undefined
o29 = null;
// 1646
o30.getElementsByTagName = f449694821_419;
// 1648
o30.querySelectorAll = f449694821_428;
// 1649
o29 = {};
// 1650
f449694821_428.returns.push(o29);
// 1651
o29.length = 1;
// 1652
o31 = {};
// 1653
o29["0"] = o31;
// undefined
o29 = null;
// 1654
o31.getElementsByTagName = f449694821_419;
// 1656
o31.querySelectorAll = f449694821_428;
// 1657
o29 = {};
// 1658
f449694821_428.returns.push(o29);
// 1659
o29.length = 1;
// 1660
o32 = {};
// 1661
o29["0"] = o32;
// undefined
o29 = null;
// 1665
o29 = {};
// 1666
f449694821_428.returns.push(o29);
// 1667
o29.length = 1;
// 1668
o33 = {};
// 1669
o29["0"] = o33;
// undefined
o29 = null;
// 1670
o33.getElementsByTagName = f449694821_419;
// 1672
o33.querySelectorAll = f449694821_428;
// 1673
o29 = {};
// 1674
f449694821_428.returns.push(o29);
// 1675
o29.length = 1;
// 1676
o34 = {};
// 1677
o29["0"] = o34;
// undefined
o29 = null;
// 1678
f449694821_16.returns.push(5);
// 1679
o30.nodeName = "DIV";
// 1680
o30.__FB_TOKEN = void 0;
// 1681
// 1682
o30.getAttribute = f449694821_444;
// 1683
o30.hasAttribute = f449694821_445;
// 1685
f449694821_445.returns.push(false);
// 1686
o30.JSBNG__addEventListener = f449694821_402;
// 1688
f449694821_402.returns.push(undefined);
// 1689
o30.JSBNG__onJSBNG__scroll = void 0;
// 1691
o28.nodeName = "DIV";
// 1692
o28.__FB_TOKEN = void 0;
// 1693
// 1694
o28.getAttribute = f449694821_444;
// 1695
o28.hasAttribute = f449694821_445;
// 1697
f449694821_445.returns.push(false);
// 1698
o28.JSBNG__addEventListener = f449694821_402;
// 1700
f449694821_402.returns.push(undefined);
// 1701
o28.JSBNG__onmousemove = null;
// 1703
o33.nodeName = "DIV";
// 1704
o33.__FB_TOKEN = void 0;
// 1705
// 1706
o33.getAttribute = f449694821_444;
// 1707
o33.hasAttribute = f449694821_445;
// 1709
f449694821_445.returns.push(false);
// 1710
o33.JSBNG__addEventListener = f449694821_402;
// 1712
f449694821_402.returns.push(undefined);
// 1713
o33.JSBNG__onclick = null;
// 1715
o29 = {};
// 1716
o19.style = o29;
// 1718
// 1720
// undefined
o29 = null;
// 1722
o19.__html = void 0;
// 1724
o29 = {};
// 1725
f449694821_394.returns.push(o29);
// 1727
o1.appendChild = f449694821_398;
// 1728
f449694821_398.returns.push(o29);
// undefined
o29 = null;
// 1729
o29 = {};
// 1730
f449694821_4.returns.push(o29);
// 1731
o29.pointerEvents = void 0;
// undefined
o29 = null;
// 1732
o19.parentNode = null;
// undefined
o19 = null;
// 1736
f449694821_402.returns.push(undefined);
// 1737
o28.JSBNG__onmouseover = null;
// 1742
f449694821_402.returns.push(undefined);
// 1743
o28.JSBNG__onmouseout = null;
// 1748
f449694821_402.returns.push(undefined);
// 1749
o28.JSBNG__onfocusin = void 0;
// 1754
f449694821_402.returns.push(undefined);
// 1755
o28.JSBNG__onfocusout = void 0;
// 1758
f449694821_402.returns.push(undefined);
// 1759
o34.nodeName = "DIV";
// 1760
o34.__FB_TOKEN = void 0;
// 1761
// 1762
o34.getAttribute = f449694821_444;
// 1763
o34.hasAttribute = f449694821_445;
// 1765
f449694821_445.returns.push(false);
// 1766
o34.JSBNG__addEventListener = f449694821_402;
// 1768
f449694821_402.returns.push(undefined);
// 1769
o34.JSBNG__onmousedown = null;
// 1771
o19 = {};
// 1772
o28.classList = o19;
// 1774
f449694821_466 = function() { return f449694821_466.returns[f449694821_466.inst++]; };
f449694821_466.returns = [];
f449694821_466.inst = 0;
// 1775
o19.add = f449694821_466;
// 1776
f449694821_466.returns.push(undefined);
// 1779
o29 = {};
// 1780
f449694821_450.returns.push(o29);
// 1781
o29.getElementsByTagName = f449694821_419;
// 1783
o29.querySelectorAll = f449694821_428;
// 1784
o35 = {};
// 1785
f449694821_428.returns.push(o35);
// 1786
o35.length = 1;
// 1787
o36 = {};
// 1788
o35["0"] = o36;
// undefined
o35 = null;
// 1789
o36.getElementsByTagName = f449694821_419;
// 1791
o36.querySelectorAll = f449694821_428;
// 1792
o35 = {};
// 1793
f449694821_428.returns.push(o35);
// 1794
o35.length = 1;
// 1795
o37 = {};
// 1796
o35["0"] = o37;
// undefined
o35 = null;
// 1797
o37.getElementsByTagName = f449694821_419;
// 1799
o37.querySelectorAll = f449694821_428;
// 1800
o35 = {};
// 1801
f449694821_428.returns.push(o35);
// 1802
o35.length = 1;
// 1803
o38 = {};
// 1804
o35["0"] = o38;
// undefined
o35 = null;
// 1808
o35 = {};
// 1809
f449694821_428.returns.push(o35);
// 1810
o35.length = 1;
// 1811
o39 = {};
// 1812
o35["0"] = o39;
// undefined
o35 = null;
// 1813
o39.getElementsByTagName = f449694821_419;
// 1815
o39.querySelectorAll = f449694821_428;
// 1816
o35 = {};
// 1817
f449694821_428.returns.push(o35);
// 1818
o35.length = 1;
// 1819
o40 = {};
// 1820
o35["0"] = o40;
// undefined
o35 = null;
// 1821
f449694821_16.returns.push(6);
// 1822
o36.nodeName = "DIV";
// 1823
o36.__FB_TOKEN = void 0;
// 1824
// 1825
o36.getAttribute = f449694821_444;
// 1826
o36.hasAttribute = f449694821_445;
// 1828
f449694821_445.returns.push(false);
// 1829
o36.JSBNG__addEventListener = f449694821_402;
// 1831
f449694821_402.returns.push(undefined);
// 1832
o36.JSBNG__onJSBNG__scroll = void 0;
// 1834
o29.nodeName = "DIV";
// 1835
o29.__FB_TOKEN = void 0;
// 1836
// 1837
o29.getAttribute = f449694821_444;
// 1838
o29.hasAttribute = f449694821_445;
// 1840
f449694821_445.returns.push(false);
// 1841
o29.JSBNG__addEventListener = f449694821_402;
// 1843
f449694821_402.returns.push(undefined);
// 1844
o29.JSBNG__onmousemove = null;
// 1846
o39.nodeName = "DIV";
// 1847
o39.__FB_TOKEN = void 0;
// 1848
// 1849
o39.getAttribute = f449694821_444;
// 1850
o39.hasAttribute = f449694821_445;
// 1852
f449694821_445.returns.push(false);
// 1853
o39.JSBNG__addEventListener = f449694821_402;
// 1855
f449694821_402.returns.push(undefined);
// 1856
o39.JSBNG__onclick = null;
// 1861
f449694821_402.returns.push(undefined);
// 1862
o29.JSBNG__onmouseover = null;
// 1867
f449694821_402.returns.push(undefined);
// 1868
o29.JSBNG__onmouseout = null;
// 1873
f449694821_402.returns.push(undefined);
// 1874
o29.JSBNG__onfocusin = void 0;
// 1879
f449694821_402.returns.push(undefined);
// 1880
o29.JSBNG__onfocusout = void 0;
// 1883
f449694821_402.returns.push(undefined);
// 1884
o40.nodeName = "DIV";
// 1885
o40.__FB_TOKEN = void 0;
// 1886
// 1887
o40.getAttribute = f449694821_444;
// 1888
o40.hasAttribute = f449694821_445;
// 1890
f449694821_445.returns.push(false);
// 1891
o40.JSBNG__addEventListener = f449694821_402;
// 1893
f449694821_402.returns.push(undefined);
// 1894
o40.JSBNG__onmousedown = null;
// 1896
o35 = {};
// 1897
o29.classList = o35;
// 1899
o35.add = f449694821_466;
// 1900
f449694821_466.returns.push(undefined);
// 1906
f449694821_402.returns.push(undefined);
// 1907
o1.JSBNG__onkeydown = null;
// 1917
f449694821_402.returns.push(undefined);
// 1918
f449694821_479 = function() { return f449694821_479.returns[f449694821_479.inst++]; };
f449694821_479.returns = [];
f449694821_479.inst = 0;
// 1919
o1.JSBNG__onclick = f449694821_479;
// 1922
// 1925
f449694821_386.returns.push(0.08142863190076899);
// 1930
f449694821_402.returns.push(undefined);
// 1931
o1.JSBNG__onmousedown = null;
// 1936
o41 = {};
// 1937
f449694821_396.returns.push(o41);
// 1938
// 1939
// 1940
o41.getElementsByTagName = f449694821_419;
// 1941
o42 = {};
// 1942
f449694821_419.returns.push(o42);
// 1943
o42.length = 0;
// undefined
o42 = null;
// 1945
o42 = {};
// 1946
o41.childNodes = o42;
// undefined
o41 = null;
// 1947
o42.item = f449694821_422;
// 1948
o42.length = 1;
// 1949
o41 = {};
// 1950
o42["0"] = o41;
// undefined
o42 = null;
// 1951
o41.getElementsByTagName = f449694821_419;
// 1953
o41.querySelectorAll = f449694821_428;
// 1954
o42 = {};
// 1955
f449694821_428.returns.push(o42);
// 1956
o42.length = 0;
// undefined
o42 = null;
// 1957
o41.__html = void 0;
// 1958
o41.mountComponentIntoNode = void 0;
// 1959
o42 = {};
// 1960
o41.classList = o42;
// undefined
o41 = null;
// 1962
o42.add = f449694821_466;
// undefined
o42 = null;
// 1963
f449694821_466.returns.push(undefined);
// 1965
o41 = {};
// 1966
f449694821_396.returns.push(o41);
// 1967
// 1968
o41.firstChild = null;
// 1971
o42 = {};
// 1972
f449694821_394.returns.push(o42);
// 1974
o41.appendChild = f449694821_398;
// 1975
f449694821_398.returns.push(o42);
// undefined
o42 = null;
// 1977
o42 = {};
// 1978
f449694821_396.returns.push(o42);
// 1979
// 1980
o42.firstChild = null;
// 1981
o41.__html = void 0;
// 1983
o43 = {};
// 1984
f449694821_394.returns.push(o43);
// 1986
o42.appendChild = f449694821_398;
// 1987
f449694821_398.returns.push(o43);
// undefined
o43 = null;
// 1988
o43 = {};
// 1989
o42.classList = o43;
// 1991
o43.add = f449694821_466;
// undefined
o43 = null;
// 1992
f449694821_466.returns.push(undefined);
// 1993
o43 = {};
// 1994
o41.style = o43;
// undefined
o41 = null;
// 1995
// undefined
o43 = null;
// 1999
f449694821_466.returns.push(undefined);
// 2000
o42.__FB_TOKEN = void 0;
// 2001
// 2002
o42.nodeName = "DIV";
// 2003
o42.getAttribute = f449694821_444;
// 2004
o42.hasAttribute = f449694821_445;
// 2006
f449694821_445.returns.push(false);
// 2007
o42.JSBNG__addEventListener = f449694821_402;
// 2009
f449694821_402.returns.push(undefined);
// 2010
o42.JSBNG__onclick = null;
// 2015
f449694821_402.returns.push(undefined);
// 2016
o42.JSBNG__onsubmit = null;
// 2021
f449694821_402.returns.push(undefined);
// 2022
o42.JSBNG__onsuccess = void 0;
// 2027
f449694821_402.returns.push(undefined);
// 2028
o42.JSBNG__onerror = null;
// undefined
o42 = null;
// 2030
f449694821_16.returns.push(7);
// 2033
o41 = {};
// 2034
f449694821_396.returns.push(o41);
// 2035
// 2036
// 2037
o41.getElementsByTagName = f449694821_419;
// 2038
o42 = {};
// 2039
f449694821_419.returns.push(o42);
// 2040
o42.length = 0;
// undefined
o42 = null;
// 2042
o42 = {};
// 2043
o41.childNodes = o42;
// undefined
o41 = null;
// 2044
o42.item = f449694821_422;
// 2045
o42.length = 1;
// 2046
o41 = {};
// 2047
o42["0"] = o41;
// undefined
o42 = null;
// 2048
o41.getElementsByTagName = f449694821_419;
// 2050
o41.querySelectorAll = f449694821_428;
// undefined
o41 = null;
// 2051
o41 = {};
// 2052
f449694821_428.returns.push(o41);
// 2053
o41.length = 1;
// 2054
o42 = {};
// 2055
o41["0"] = o42;
// undefined
o41 = null;
// undefined
o42 = null;
// 2064
// 2065
o41 = {};
// 2066
o42 = {};
// 2068
o41.length = 1;
// 2069
o41["0"] = "63VzN";
// 2071
o43 = {};
// 2072
f449694821_510 = function() { return f449694821_510.returns[f449694821_510.inst++]; };
f449694821_510.returns = [];
f449694821_510.inst = 0;
// 2073
o43._needsGripper = f449694821_510;
// 2074
f449694821_511 = function() { return f449694821_511.returns[f449694821_511.inst++]; };
f449694821_511.returns = [];
f449694821_511.inst = 0;
// 2075
o43._throttledComputeHeights = f449694821_511;
// 2077
f449694821_387.returns.push(1373490165887);
// 2078
o28.clientHeight = 0;
// 2079
o32.offsetHeight = 0;
// 2080
o33.offsetHeight = 0;
// 2081
f449694821_16.returns.push(9);
// 2082
f449694821_511.returns.push(undefined);
// 2083
o43._gripperHeight = NaN;
// 2084
o43._trackHeight = 0;
// 2085
f449694821_510.returns.push(false);
// 2086
f449694821_512 = function() { return f449694821_512.returns[f449694821_512.inst++]; };
f449694821_512.returns = [];
f449694821_512.inst = 0;
// 2087
o43._throttledShowGripperAndShadows = f449694821_512;
// 2089
f449694821_387.returns.push(1373490165889);
// 2091
f449694821_387.returns.push(1373490165890);
// 2092
o44 = {};
// 2093
o34.classList = o44;
// 2095
o44.add = f449694821_466;
// 2096
f449694821_466.returns.push(undefined);
// 2097
o30.scrollTop = 0;
// 2100
f449694821_514 = function() { return f449694821_514.returns[f449694821_514.inst++]; };
f449694821_514.returns = [];
f449694821_514.inst = 0;
// 2101
o19.remove = f449694821_514;
// undefined
o19 = null;
// 2102
f449694821_514.returns.push(undefined);
// 2107
f449694821_514.returns.push(undefined);
// 2108
f449694821_16.returns.push(10);
// 2109
f449694821_512.returns.push(undefined);
// 2110
o19 = {};
// 2111
o19._needsGripper = f449694821_510;
// 2112
f449694821_516 = function() { return f449694821_516.returns[f449694821_516.inst++]; };
f449694821_516.returns = [];
f449694821_516.inst = 0;
// 2113
o19._throttledComputeHeights = f449694821_516;
// 2115
f449694821_387.returns.push(1373490165892);
// 2116
o29.clientHeight = 0;
// 2117
o38.offsetHeight = 0;
// 2118
o39.offsetHeight = 0;
// 2119
f449694821_16.returns.push(11);
// 2120
f449694821_516.returns.push(undefined);
// 2121
o19._gripperHeight = NaN;
// 2122
o19._trackHeight = 0;
// 2123
f449694821_510.returns.push(false);
// 2124
f449694821_517 = function() { return f449694821_517.returns[f449694821_517.inst++]; };
f449694821_517.returns = [];
f449694821_517.inst = 0;
// 2125
o19._throttledShowGripperAndShadows = f449694821_517;
// 2127
f449694821_387.returns.push(1373490165896);
// 2129
f449694821_387.returns.push(1373490165897);
// 2130
o45 = {};
// 2131
o40.classList = o45;
// 2133
o45.add = f449694821_466;
// 2134
f449694821_466.returns.push(undefined);
// 2135
o36.scrollTop = 0;
// 2138
o35.remove = f449694821_514;
// undefined
o35 = null;
// 2139
f449694821_514.returns.push(undefined);
// 2144
f449694821_514.returns.push(undefined);
// 2145
f449694821_16.returns.push(12);
// 2146
f449694821_517.returns.push(undefined);
// 2147
o35 = {};
// 2152
f449694821_387.returns.push(1373490165906);
// 2153
f449694821_520 = function() { return f449694821_520.returns[f449694821_520.inst++]; };
f449694821_520.returns = [];
f449694821_520.inst = 0;
// 2154
o3.pushState = f449694821_520;
// 2155
o0.JSBNG__URL = "http://jsbngssl.www.facebook.com/?sk=welcome";
// 2156
f449694821_521 = function() { return f449694821_521.returns[f449694821_521.inst++]; };
f449694821_521.returns = [];
f449694821_521.inst = 0;
// 2157
o3.replaceState = f449694821_521;
// undefined
o3 = null;
// 2158
f449694821_521.returns.push(undefined);
// 2159
f449694821_7.returns.push(undefined);
// 2160
f449694821_522 = function() { return f449694821_522.returns[f449694821_522.inst++]; };
f449694821_522.returns = [];
f449694821_522.inst = 0;
// 2166
// 2167
o41 = {};
// 2168
o42 = {};
// 2170
o41.length = 1;
// 2171
o41["0"] = "63VzN";
// 2173
o43 = {};
// 2174
f449694821_510 = function() { return f449694821_510.returns[f449694821_510.inst++]; };
f449694821_510.returns = [];
f449694821_510.inst = 0;
// 2175
o43._needsGripper = f449694821_510;
// 2176
f449694821_511 = function() { return f449694821_511.returns[f449694821_511.inst++]; };
f449694821_511.returns = [];
f449694821_511.inst = 0;
// 2177
o43._throttledComputeHeights = f449694821_511;
// 2179
f449694821_387.returns.push(1373490165887);
// 2183
f449694821_16.returns.push(9);
// 2184
f449694821_511.returns.push(undefined);
// 2185
o43._gripperHeight = NaN;
// 2186
o43._trackHeight = 0;
// 2187
f449694821_510.returns.push(false);
// 2188
f449694821_512 = function() { return f449694821_512.returns[f449694821_512.inst++]; };
f449694821_512.returns = [];
f449694821_512.inst = 0;
// 2189
o43._throttledShowGripperAndShadows = f449694821_512;
// 2191
f449694821_387.returns.push(1373490165889);
// 2193
f449694821_387.returns.push(1373490165890);
// 2194
o44 = {};
// 2197
o44.add = f449694821_466;
// 2198
f449694821_466.returns.push(undefined);
// 2202
f449694821_514 = function() { return f449694821_514.returns[f449694821_514.inst++]; };
f449694821_514.returns = [];
f449694821_514.inst = 0;
// 2204
f449694821_514.returns.push(undefined);
// 2209
f449694821_514.returns.push(undefined);
// 2210
f449694821_16.returns.push(10);
// 2211
f449694821_512.returns.push(undefined);
// 2212
o19 = {};
// 2213
o19._needsGripper = f449694821_510;
// 2214
f449694821_516 = function() { return f449694821_516.returns[f449694821_516.inst++]; };
f449694821_516.returns = [];
f449694821_516.inst = 0;
// 2215
o19._throttledComputeHeights = f449694821_516;
// 2217
f449694821_387.returns.push(1373490165892);
// 2221
f449694821_16.returns.push(11);
// 2222
f449694821_516.returns.push(undefined);
// 2223
o19._gripperHeight = NaN;
// 2224
o19._trackHeight = 0;
// 2225
f449694821_510.returns.push(false);
// 2226
f449694821_517 = function() { return f449694821_517.returns[f449694821_517.inst++]; };
f449694821_517.returns = [];
f449694821_517.inst = 0;
// 2227
o19._throttledShowGripperAndShadows = f449694821_517;
// 2229
f449694821_387.returns.push(1373490165896);
// 2231
f449694821_387.returns.push(1373490165897);
// 2232
o45 = {};
// 2235
o45.add = f449694821_466;
// 2236
f449694821_466.returns.push(undefined);
// 2241
f449694821_514.returns.push(undefined);
// 2246
f449694821_514.returns.push(undefined);
// 2247
f449694821_16.returns.push(12);
// 2248
f449694821_517.returns.push(undefined);
// 2249
o35 = {};
// 2254
f449694821_387.returns.push(1373490165906);
// 2255
f449694821_520 = function() { return f449694821_520.returns[f449694821_520.inst++]; };
f449694821_520.returns = [];
f449694821_520.inst = 0;
// 2258
f449694821_521 = function() { return f449694821_521.returns[f449694821_521.inst++]; };
f449694821_521.returns = [];
f449694821_521.inst = 0;
// 2260
f449694821_521.returns.push(undefined);
// 2261
f449694821_7.returns.push(undefined);
// 2262
f449694821_522 = function() { return f449694821_522.returns[f449694821_522.inst++]; };
f449694821_522.returns = [];
f449694821_522.inst = 0;
// 2269
// 2270
o41 = {};
// 2271
o42 = {};
// 2273
o41.length = 1;
// 2274
o41["0"] = "63VzN";
// 2276
o43 = {};
// 2277
f449694821_510 = function() { return f449694821_510.returns[f449694821_510.inst++]; };
f449694821_510.returns = [];
f449694821_510.inst = 0;
// 2278
o43._needsGripper = f449694821_510;
// 2279
f449694821_511 = function() { return f449694821_511.returns[f449694821_511.inst++]; };
f449694821_511.returns = [];
f449694821_511.inst = 0;
// 2280
o43._throttledComputeHeights = f449694821_511;
// 2282
f449694821_387.returns.push(1373490165887);
// 2286
f449694821_16.returns.push(9);
// 2287
f449694821_511.returns.push(undefined);
// 2288
o43._gripperHeight = NaN;
// 2289
o43._trackHeight = 0;
// 2290
f449694821_510.returns.push(false);
// 2291
f449694821_512 = function() { return f449694821_512.returns[f449694821_512.inst++]; };
f449694821_512.returns = [];
f449694821_512.inst = 0;
// 2292
o43._throttledShowGripperAndShadows = f449694821_512;
// undefined
o43 = null;
// 2294
f449694821_387.returns.push(1373490165889);
// 2296
f449694821_387.returns.push(1373490165890);
// 2297
o44 = {};
// 2300
o44.add = f449694821_466;
// undefined
o44 = null;
// 2301
f449694821_466.returns.push(undefined);
// 2305
f449694821_514 = function() { return f449694821_514.returns[f449694821_514.inst++]; };
f449694821_514.returns = [];
f449694821_514.inst = 0;
// 2307
f449694821_514.returns.push(undefined);
// 2312
f449694821_514.returns.push(undefined);
// 2313
f449694821_16.returns.push(10);
// 2314
f449694821_512.returns.push(undefined);
// 2315
o19 = {};
// 2316
o19._needsGripper = f449694821_510;
// 2317
f449694821_516 = function() { return f449694821_516.returns[f449694821_516.inst++]; };
f449694821_516.returns = [];
f449694821_516.inst = 0;
// 2318
o19._throttledComputeHeights = f449694821_516;
// 2320
f449694821_387.returns.push(1373490165892);
// 2324
f449694821_16.returns.push(11);
// 2325
f449694821_516.returns.push(undefined);
// 2326
o19._gripperHeight = NaN;
// 2327
o19._trackHeight = 0;
// 2328
f449694821_510.returns.push(false);
// 2329
f449694821_517 = function() { return f449694821_517.returns[f449694821_517.inst++]; };
f449694821_517.returns = [];
f449694821_517.inst = 0;
// 2330
o19._throttledShowGripperAndShadows = f449694821_517;
// undefined
o19 = null;
// 2332
f449694821_387.returns.push(1373490165896);
// 2334
f449694821_387.returns.push(1373490165897);
// 2335
o45 = {};
// 2338
o45.add = f449694821_466;
// undefined
o45 = null;
// 2339
f449694821_466.returns.push(undefined);
// 2344
f449694821_514.returns.push(undefined);
// 2349
f449694821_514.returns.push(undefined);
// 2350
f449694821_16.returns.push(12);
// 2351
f449694821_517.returns.push(undefined);
// 2352
o35 = {};
// undefined
o35 = null;
// 2357
f449694821_387.returns.push(1373490165906);
// 2358
f449694821_520 = function() { return f449694821_520.returns[f449694821_520.inst++]; };
f449694821_520.returns = [];
f449694821_520.inst = 0;
// 2361
f449694821_521 = function() { return f449694821_521.returns[f449694821_521.inst++]; };
f449694821_521.returns = [];
f449694821_521.inst = 0;
// 2363
f449694821_521.returns.push(undefined);
// 2364
f449694821_7.returns.push(undefined);
// 2365
f449694821_522 = function() { return f449694821_522.returns[f449694821_522.inst++]; };
f449694821_522.returns = [];
f449694821_522.inst = 0;
// 2370
o2.platform = "MacIntel";
// 2375
o3 = {};
// 2376
f449694821_391.returns.push(o3);
// 2377
o3.length = 44;
// 2378
o19 = {};
// 2379
o3["0"] = o19;
// 2380
o19.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD_OBJECTS.js";
// 2382
o35 = {};
// 2383
o3["1"] = o35;
// 2384
o35.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD.js";
// 2386
o43 = {};
// 2387
o3["2"] = o43;
// 2388
o43.src = "";
// 2390
o44 = {};
// 2391
o3["3"] = o44;
// 2392
o44.src = "";
// 2394
o45 = {};
// 2395
o3["4"] = o45;
// 2396
o45.src = "";
// 2398
o46 = {};
// 2399
o3["5"] = o46;
// 2400
o46.src = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yu/r/PHN_xWtDFVJ.js";
// 2402
o47 = {};
// 2403
o3["6"] = o47;
// 2404
o47.src = "";
// 2406
o48 = {};
// 2407
o3["7"] = o48;
// 2408
o48.src = "";
// 2410
o3["8"] = o9;
// 2412
o3["9"] = o10;
// 2414
o49 = {};
// 2415
o3["10"] = o49;
// 2416
o49.src = "";
// 2418
o50 = {};
// 2419
o3["11"] = o50;
// 2420
o50.src = "";
// 2422
o3["12"] = o20;
// 2424
o3["13"] = o21;
// 2426
o3["14"] = o22;
// 2428
o3["15"] = o23;
// 2430
o3["16"] = o24;
// 2432
o3["17"] = o25;
// 2434
o3["18"] = o26;
// 2436
o3["19"] = o27;
// 2438
o51 = {};
// 2439
o3["20"] = o51;
// 2440
o51.src = "";
// 2442
o52 = {};
// 2443
o3["21"] = o52;
// 2444
o52.src = "";
// 2446
o53 = {};
// 2447
o3["22"] = o53;
// 2448
o53.src = "";
// 2450
o54 = {};
// 2451
o3["23"] = o54;
// 2452
o54.src = "";
// 2454
o55 = {};
// 2455
o3["24"] = o55;
// 2456
o55.src = "";
// 2458
o56 = {};
// 2459
o3["25"] = o56;
// 2460
o56.src = "";
// 2462
o57 = {};
// 2463
o3["26"] = o57;
// 2464
o57.src = "";
// 2466
o58 = {};
// 2467
o3["27"] = o58;
// 2468
o58.src = "";
// 2470
o59 = {};
// 2471
o3["28"] = o59;
// 2472
o59.src = "";
// 2474
o60 = {};
// 2475
o3["29"] = o60;
// 2476
o60.src = "";
// 2478
o61 = {};
// 2479
o3["30"] = o61;
// 2480
o61.src = "";
// 2482
o62 = {};
// 2483
o3["31"] = o62;
// 2484
o62.src = "";
// 2486
o63 = {};
// 2487
o3["32"] = o63;
// 2488
o63.src = "";
// 2490
o64 = {};
// 2499
o3 = {};
// 2500
f449694821_391.returns.push(o3);
// 2501
o3.length = 44;
// 2502
o19 = {};
// 2503
o3["0"] = o19;
// 2504
o19.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD_OBJECTS.js";
// 2506
o35 = {};
// 2507
o3["1"] = o35;
// 2508
o35.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD.js";
// 2510
o43 = {};
// 2511
o3["2"] = o43;
// 2512
o43.src = "";
// 2514
o44 = {};
// 2515
o3["3"] = o44;
// 2516
o44.src = "";
// 2518
o45 = {};
// 2519
o3["4"] = o45;
// 2520
o45.src = "";
// 2522
o46 = {};
// 2523
o3["5"] = o46;
// 2524
o46.src = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yu/r/PHN_xWtDFVJ.js";
// 2526
o47 = {};
// 2527
o3["6"] = o47;
// 2528
o47.src = "";
// 2530
o48 = {};
// 2531
o3["7"] = o48;
// 2532
o48.src = "";
// 2534
o3["8"] = o9;
// 2536
o3["9"] = o10;
// 2538
o49 = {};
// 2539
o3["10"] = o49;
// 2540
o49.src = "";
// 2542
o50 = {};
// 2543
o3["11"] = o50;
// 2544
o50.src = "";
// 2546
o3["12"] = o20;
// 2548
o3["13"] = o21;
// 2550
o3["14"] = o22;
// 2552
o3["15"] = o23;
// 2554
o3["16"] = o24;
// 2556
o3["17"] = o25;
// 2558
o3["18"] = o26;
// 2560
o3["19"] = o27;
// 2562
o51 = {};
// 2563
o3["20"] = o51;
// 2564
o51.src = "";
// 2566
o52 = {};
// 2567
o3["21"] = o52;
// 2568
o52.src = "";
// 2570
o53 = {};
// 2571
o3["22"] = o53;
// 2572
o53.src = "";
// 2574
o54 = {};
// 2575
o3["23"] = o54;
// 2576
o54.src = "";
// 2578
o55 = {};
// 2579
o3["24"] = o55;
// 2580
o55.src = "";
// 2582
o56 = {};
// 2583
o3["25"] = o56;
// 2584
o56.src = "";
// 2586
o57 = {};
// 2587
o3["26"] = o57;
// 2588
o57.src = "";
// 2590
o58 = {};
// 2591
o3["27"] = o58;
// 2592
o58.src = "";
// 2594
o59 = {};
// 2595
o3["28"] = o59;
// 2596
o59.src = "";
// 2598
o60 = {};
// 2599
o3["29"] = o60;
// 2600
o60.src = "";
// 2602
o61 = {};
// 2603
o3["30"] = o61;
// 2604
o61.src = "";
// 2606
o62 = {};
// 2607
o3["31"] = o62;
// 2608
o62.src = "";
// 2610
o63 = {};
// 2611
o3["32"] = o63;
// 2612
o63.src = "";
// 2614
o64 = {};
// 2622
o3 = {};
// 2623
f449694821_391.returns.push(o3);
// 2624
o3.length = 44;
// 2625
o19 = {};
// 2626
o3["0"] = o19;
// 2627
o19.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD_OBJECTS.js";
// 2629
o35 = {};
// 2630
o3["1"] = o35;
// 2631
o35.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD.js";
// 2633
o43 = {};
// 2634
o3["2"] = o43;
// 2635
o43.src = "";
// 2637
o44 = {};
// 2638
o3["3"] = o44;
// 2639
o44.src = "";
// 2641
o45 = {};
// 2642
o3["4"] = o45;
// 2643
o45.src = "";
// 2645
o46 = {};
// 2646
o3["5"] = o46;
// 2647
o46.src = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yu/r/PHN_xWtDFVJ.js";
// 2649
o47 = {};
// 2650
o3["6"] = o47;
// 2651
o47.src = "";
// 2653
o48 = {};
// 2654
o3["7"] = o48;
// 2655
o48.src = "";
// 2657
o3["8"] = o9;
// 2659
o3["9"] = o10;
// 2661
o49 = {};
// 2662
o3["10"] = o49;
// 2663
o49.src = "";
// 2665
o50 = {};
// 2666
o3["11"] = o50;
// 2667
o50.src = "";
// 2669
o3["12"] = o20;
// 2671
o3["13"] = o21;
// 2673
o3["14"] = o22;
// 2675
o3["15"] = o23;
// 2677
o3["16"] = o24;
// 2679
o3["17"] = o25;
// 2681
o3["18"] = o26;
// 2683
o3["19"] = o27;
// 2685
o51 = {};
// 2686
o3["20"] = o51;
// 2687
o51.src = "";
// 2689
o52 = {};
// 2690
o3["21"] = o52;
// 2691
o52.src = "";
// 2693
o53 = {};
// 2694
o3["22"] = o53;
// 2695
o53.src = "";
// 2697
o54 = {};
// 2698
o3["23"] = o54;
// 2699
o54.src = "";
// 2701
o55 = {};
// 2702
o3["24"] = o55;
// 2703
o55.src = "";
// 2705
o56 = {};
// 2706
o3["25"] = o56;
// 2707
o56.src = "";
// 2709
o57 = {};
// 2710
o3["26"] = o57;
// 2711
o57.src = "";
// 2713
o58 = {};
// 2714
o3["27"] = o58;
// 2715
o58.src = "";
// 2717
o59 = {};
// 2718
o3["28"] = o59;
// 2719
o59.src = "";
// 2721
o60 = {};
// 2722
o3["29"] = o60;
// 2723
o60.src = "";
// 2725
o61 = {};
// 2726
o3["30"] = o61;
// 2727
o61.src = "";
// 2729
o62 = {};
// 2730
o3["31"] = o62;
// 2731
o62.src = "";
// 2733
o63 = {};
// 2734
o3["32"] = o63;
// 2735
o63.src = "";
// 2737
o64 = {};
// 2747
o3 = {};
// 2748
f449694821_391.returns.push(o3);
// 2749
o3.length = 44;
// 2750
o19 = {};
// 2751
o3["0"] = o19;
// 2752
o19.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD_OBJECTS.js";
// 2754
o35 = {};
// 2755
o3["1"] = o35;
// 2756
o35.src = "http://jsbngssl.www.facebook.com/JSBENCH_NG_RECORD.js";
// 2758
o43 = {};
// 2759
o3["2"] = o43;
// 2760
o43.src = "";
// 2762
o44 = {};
// 2763
o3["3"] = o44;
// 2764
o44.src = "";
// 2766
o45 = {};
// 2767
o3["4"] = o45;
// 2768
o45.src = "";
// 2770
o46 = {};
// 2771
o3["5"] = o46;
// 2772
o46.src = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yu/r/PHN_xWtDFVJ.js";
// 2774
o47 = {};
// 2775
o3["6"] = o47;
// 2776
o47.src = "";
// 2778
o48 = {};
// 2779
o3["7"] = o48;
// 2780
o48.src = "";
// 2782
o3["8"] = o9;
// 2784
o3["9"] = o10;
// 2786
o49 = {};
// 2787
o3["10"] = o49;
// 2788
o49.src = "";
// 2790
o50 = {};
// 2791
o3["11"] = o50;
// 2792
o50.src = "";
// 2794
o3["12"] = o20;
// 2796
o3["13"] = o21;
// 2798
o3["14"] = o22;
// 2800
o3["15"] = o23;
// 2802
o3["16"] = o24;
// 2804
o3["17"] = o25;
// 2806
o3["18"] = o26;
// 2808
o3["19"] = o27;
// 2810
o51 = {};
// 2811
o3["20"] = o51;
// 2812
o51.src = "";
// 2814
o52 = {};
// 2815
o3["21"] = o52;
// 2816
o52.src = "";
// 2818
o53 = {};
// 2819
o3["22"] = o53;
// 2820
o53.src = "";
// 2822
o54 = {};
// 2823
o3["23"] = o54;
// 2824
o54.src = "";
// 2826
o55 = {};
// 2827
o3["24"] = o55;
// 2828
o55.src = "";
// 2830
o56 = {};
// 2831
o3["25"] = o56;
// 2832
o56.src = "";
// 2834
o57 = {};
// 2835
o3["26"] = o57;
// 2836
o57.src = "";
// 2838
o58 = {};
// 2839
o3["27"] = o58;
// 2840
o58.src = "";
// undefined
o58 = null;
// 2842
o59 = {};
// 2843
o3["28"] = o59;
// 2844
o59.src = "";
// undefined
o59 = null;
// 2846
o60 = {};
// 2847
o3["29"] = o60;
// 2848
o60.src = "";
// undefined
o60 = null;
// 2850
o61 = {};
// 2851
o3["30"] = o61;
// 2852
o61.src = "";
// undefined
o61 = null;
// 2854
o62 = {};
// 2855
o3["31"] = o62;
// 2856
o62.src = "";
// undefined
o62 = null;
// 2858
o63 = {};
// 2859
o3["32"] = o63;
// 2860
o63.src = "";
// undefined
o63 = null;
// 2862
o64 = {};
// 2866
ow449694821.JSBNG__requestAnimationFrame = undefined;
// 2867
ow449694821.JSBNG__webkitRequestAnimationFrame = undefined;
// 2868
f449694821_57.returns.push(1);
// 2870
o58 = {};
// 2871
f449694821_450.returns.push(o58);
// 2872
o58.getElementsByTagName = f449694821_419;
// 2874
o58.querySelectorAll = f449694821_428;
// 2875
o59 = {};
// 2876
f449694821_428.returns.push(o59);
// 2877
o59.length = 1;
// 2878
o60 = {};
// 2879
o59["0"] = o60;
// undefined
o59 = null;
// 2880
f449694821_7.returns.push(undefined);
// 2881
f449694821_553 = function() { return f449694821_553.returns[f449694821_553.inst++]; };
f449694821_553.returns = [];
f449694821_553.inst = 0;
// 2882
ow449694821.JSBNG__onresize = f449694821_553;
// 2886
o59 = {};
// 2887
f449694821_450.returns.push(o59);
// 2888
o59.getElementsByTagName = f449694821_419;
// 2890
o59.querySelectorAll = f449694821_428;
// 2891
o61 = {};
// 2892
f449694821_428.returns.push(o61);
// 2893
o61.length = 1;
// 2894
o62 = {};
// 2895
o61["0"] = o62;
// undefined
o61 = null;
// 2897
o61 = {};
// 2898
f449694821_450.returns.push(o61);
// 2899
o61.getElementsByTagName = f449694821_419;
// 2901
o61.querySelectorAll = f449694821_428;
// 2902
o63 = {};
// 2903
f449694821_428.returns.push(o63);
// 2904
o63.length = 1;
// 2905
o65 = {};
// 2906
o63["0"] = o65;
// undefined
o63 = null;
// 2908
o63 = {};
// 2909
f449694821_450.returns.push(o63);
// undefined
o63 = null;
// 2911
o63 = {};
// 2912
f449694821_450.returns.push(o63);
// undefined
o63 = null;
// 2914
o63 = {};
// 2915
o6.classList = o63;
// 2917
f449694821_563 = function() { return f449694821_563.returns[f449694821_563.inst++]; };
f449694821_563.returns = [];
f449694821_563.inst = 0;
// 2918
o63.contains = f449694821_563;
// undefined
o63 = null;
// 2919
f449694821_563.returns.push(false);
// 2920
o4.pathname = "/";
// undefined
o4 = null;
// 2921
o4 = {};
// 2922
o4.getElementsByTagName = f449694821_419;
// 2924
o4.querySelectorAll = f449694821_428;
// undefined
o4 = null;
// 2925
o4 = {};
// 2926
f449694821_428.returns.push(o4);
// 2927
o4.length = 0;
// undefined
o4 = null;
// 2929
o0.getAttributeNode = void 0;
// 2932
o4 = {};
// 2933
f449694821_391.returns.push(o4);
// 2934
o4.length = 314;
// 2935
o4["0"] = o1;
// 2936
f449694821_566 = function() { return f449694821_566.returns[f449694821_566.inst++]; };
f449694821_566.returns = [];
f449694821_566.inst = 0;
// 2937
o1.getAttributeNode = f449694821_566;
// 2939
o63 = {};
// 2940
f449694821_566.returns.push(o63);
// 2941
o63.value = "facebook";
// undefined
o63 = null;
// 2943
o4["1"] = o7;
// 2944
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 2946
f449694821_566.returns.push(null);
// 2948
o7 = {};
// 2949
o4["2"] = o7;
// 2950
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 2952
f449694821_566.returns.push(null);
// 2954
o4["3"] = o19;
// 2955
o19.getAttributeNode = f449694821_566;
// undefined
o19 = null;
// 2957
f449694821_566.returns.push(null);
// 2959
o4["4"] = o35;
// 2960
o35.getAttributeNode = f449694821_566;
// undefined
o35 = null;
// 2962
f449694821_566.returns.push(null);
// 2964
o4["5"] = o43;
// 2965
o43.getAttributeNode = f449694821_566;
// undefined
o43 = null;
// 2967
f449694821_566.returns.push(null);
// 2969
o7 = {};
// 2970
o4["6"] = o7;
// 2971
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 2973
f449694821_566.returns.push(null);
// 2975
o4["7"] = o44;
// 2976
o44.getAttributeNode = f449694821_566;
// undefined
o44 = null;
// 2978
f449694821_566.returns.push(null);
// 2980
o4["8"] = o45;
// 2981
o45.getAttributeNode = f449694821_566;
// undefined
o45 = null;
// 2983
f449694821_566.returns.push(null);
// 2985
o7 = {};
// 2986
o4["9"] = o7;
// 2987
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 2989
f449694821_566.returns.push(null);
// 2991
o7 = {};
// 2992
o4["10"] = o7;
// 2993
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 2995
f449694821_566.returns.push(null);
// 2997
o7 = {};
// 2998
o4["11"] = o7;
// 2999
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 3001
o7 = {};
// 3002
f449694821_566.returns.push(o7);
// 3003
o7.value = "meta_referrer";
// undefined
o7 = null;
// 3005
o4["12"] = o8;
// 3006
o8.getAttributeNode = f449694821_566;
// undefined
o8 = null;
// 3008
f449694821_566.returns.push(null);
// 3010
o4["13"] = o11;
// 3011
o11.getAttributeNode = f449694821_566;
// undefined
o11 = null;
// 3013
f449694821_566.returns.push(null);
// 3015
o4["14"] = o12;
// 3016
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3018
f449694821_566.returns.push(null);
// 3020
o4["15"] = o13;
// 3021
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3023
f449694821_566.returns.push(null);
// 3025
o4["16"] = o46;
// 3026
o46.getAttributeNode = f449694821_566;
// undefined
o46 = null;
// 3028
f449694821_566.returns.push(null);
// 3030
o4["17"] = o47;
// 3031
o47.getAttributeNode = f449694821_566;
// undefined
o47 = null;
// 3033
f449694821_566.returns.push(null);
// 3035
o4["18"] = o48;
// 3036
o48.getAttributeNode = f449694821_566;
// undefined
o48 = null;
// 3038
f449694821_566.returns.push(null);
// 3040
o4["19"] = o9;
// 3041
o9.getAttributeNode = f449694821_566;
// undefined
o9 = null;
// 3043
f449694821_566.returns.push(null);
// 3045
o4["20"] = o10;
// 3046
o10.getAttributeNode = f449694821_566;
// undefined
o10 = null;
// 3048
f449694821_566.returns.push(null);
// 3050
o4["21"] = o49;
// 3051
o49.getAttributeNode = f449694821_566;
// undefined
o49 = null;
// 3053
f449694821_566.returns.push(null);
// 3055
o7 = {};
// 3056
o4["22"] = o7;
// 3057
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 3059
o7 = {};
// 3060
f449694821_566.returns.push(o7);
// 3061
o7.value = "pageTitle";
// undefined
o7 = null;
// 3063
o4["23"] = o14;
// 3064
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3066
f449694821_566.returns.push(null);
// 3068
o7 = {};
// 3069
o4["24"] = o7;
// 3070
o7.getAttributeNode = f449694821_566;
// undefined
o7 = null;
// 3072
f449694821_566.returns.push(null);
// 3074
o4["25"] = o15;
// 3075
o15.getAttributeNode = f449694821_566;
// undefined
o15 = null;
// 3077
f449694821_566.returns.push(null);
// 3079
o4["26"] = o16;
// 3080
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3082
f449694821_566.returns.push(null);
// 3084
o4["27"] = o17;
// 3085
o17.getAttributeNode = f449694821_566;
// undefined
o17 = null;
// 3087
f449694821_566.returns.push(null);
// 3089
o4["28"] = o50;
// 3090
o50.getAttributeNode = f449694821_566;
// undefined
o50 = null;
// 3092
f449694821_566.returns.push(null);
// 3094
o4["29"] = o20;
// 3095
o20.getAttributeNode = f449694821_566;
// undefined
o20 = null;
// 3097
f449694821_566.returns.push(null);
// 3099
o4["30"] = o21;
// 3100
o21.getAttributeNode = f449694821_566;
// undefined
o21 = null;
// 3102
f449694821_566.returns.push(null);
// 3104
o4["31"] = o22;
// 3105
o22.getAttributeNode = f449694821_566;
// undefined
o22 = null;
// 3107
f449694821_566.returns.push(null);
// 3109
o4["32"] = o23;
// 3110
o23.getAttributeNode = f449694821_566;
// undefined
o23 = null;
// 3112
f449694821_566.returns.push(null);
// 3114
o4["33"] = o24;
// 3115
o24.getAttributeNode = f449694821_566;
// undefined
o24 = null;
// 3117
f449694821_566.returns.push(null);
// 3119
o4["34"] = o25;
// 3120
o25.getAttributeNode = f449694821_566;
// undefined
o25 = null;
// 3122
f449694821_566.returns.push(null);
// 3124
o4["35"] = o26;
// 3125
o26.getAttributeNode = f449694821_566;
// undefined
o26 = null;
// 3127
f449694821_566.returns.push(null);
// 3129
o4["36"] = o27;
// 3130
o27.getAttributeNode = f449694821_566;
// undefined
o27 = null;
// 3132
f449694821_566.returns.push(null);
// 3134
o4["37"] = o6;
// 3135
o6.getAttributeNode = f449694821_566;
// 3137
f449694821_566.returns.push(null);
// 3139
o7 = {};
// 3140
o4["38"] = o7;
// 3141
o7.getAttributeNode = f449694821_566;
// 3143
f449694821_566.returns.push(null);
// 3145
o8 = {};
// 3146
o4["39"] = o8;
// 3147
o8.getAttributeNode = f449694821_566;
// 3149
o9 = {};
// 3150
f449694821_566.returns.push(o9);
// 3151
o9.value = "pagelet_bluebar";
// undefined
o9 = null;
// 3153
o9 = {};
// 3154
o4["40"] = o9;
// 3155
o9.getAttributeNode = f449694821_566;
// 3157
o10 = {};
// 3158
f449694821_566.returns.push(o10);
// 3159
o10.value = "blueBarHolder";
// undefined
o10 = null;
// 3161
o10 = {};
// 3162
o4["41"] = o10;
// 3163
o10.getAttributeNode = f449694821_566;
// 3165
o11 = {};
// 3166
f449694821_566.returns.push(o11);
// 3167
o11.value = "blueBar";
// undefined
o11 = null;
// 3169
o11 = {};
// 3170
o4["42"] = o11;
// 3171
o11.getAttributeNode = f449694821_566;
// 3173
o12 = {};
// 3174
f449694821_566.returns.push(o12);
// 3175
o12.value = "pageHead";
// undefined
o12 = null;
// 3177
o12 = {};
// 3178
o4["43"] = o12;
// 3179
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3181
o12 = {};
// 3182
f449694821_566.returns.push(o12);
// 3183
o12.value = "pageLogo";
// undefined
o12 = null;
// 3185
o12 = {};
// 3186
o4["44"] = o12;
// 3187
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3189
f449694821_566.returns.push(null);
// 3191
o12 = {};
// 3192
o4["45"] = o12;
// 3193
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3195
o12 = {};
// 3196
f449694821_566.returns.push(o12);
// 3197
o12.value = "jewelContainer";
// undefined
o12 = null;
// 3199
o4["46"] = o59;
// 3200
o59.getAttributeNode = f449694821_566;
// undefined
o59 = null;
// 3202
o12 = {};
// 3203
f449694821_566.returns.push(o12);
// 3204
o12.value = "fbRequestsJewel";
// undefined
o12 = null;
// 3206
o12 = {};
// 3207
o4["47"] = o12;
// 3208
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3210
f449694821_566.returns.push(null);
// 3212
o12 = {};
// 3213
o4["48"] = o12;
// 3214
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3216
o12 = {};
// 3217
f449694821_566.returns.push(o12);
// 3218
o12.value = "requestsCountWrapper";
// undefined
o12 = null;
// 3220
o12 = {};
// 3221
o4["49"] = o12;
// 3222
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3224
o12 = {};
// 3225
f449694821_566.returns.push(o12);
// 3226
o12.value = "requestsCountValue";
// undefined
o12 = null;
// 3228
o12 = {};
// 3229
o4["50"] = o12;
// 3230
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3232
f449694821_566.returns.push(null);
// 3234
o4["51"] = o62;
// 3235
o62.getAttributeNode = f449694821_566;
// undefined
o62 = null;
// 3237
o12 = {};
// 3238
f449694821_566.returns.push(o12);
// 3239
o12.value = "fbRequestsFlyout";
// undefined
o12 = null;
// 3241
o12 = {};
// 3242
o4["52"] = o12;
// 3243
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3245
f449694821_566.returns.push(null);
// 3247
o12 = {};
// 3248
o4["53"] = o12;
// 3249
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3251
f449694821_566.returns.push(null);
// 3253
o12 = {};
// 3254
o4["54"] = o12;
// 3255
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3257
f449694821_566.returns.push(null);
// 3259
o12 = {};
// 3260
o4["55"] = o12;
// 3261
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3263
o12 = {};
// 3264
f449694821_566.returns.push(o12);
// 3265
o12.value = "fbRequestsList";
// undefined
o12 = null;
// 3267
o12 = {};
// 3268
o4["56"] = o12;
// 3269
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3271
o12 = {};
// 3272
f449694821_566.returns.push(o12);
// 3273
o12.value = "fbRequestsList_loading_indicator";
// undefined
o12 = null;
// 3275
o12 = {};
// 3276
o4["57"] = o12;
// 3277
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3279
f449694821_566.returns.push(null);
// 3281
o4["58"] = o58;
// 3282
o58.getAttributeNode = f449694821_566;
// undefined
o58 = null;
// 3284
o12 = {};
// 3285
f449694821_566.returns.push(o12);
// 3286
o12.value = "fbMessagesJewel";
// undefined
o12 = null;
// 3288
o12 = {};
// 3289
o4["59"] = o12;
// 3290
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3292
f449694821_566.returns.push(null);
// 3294
o12 = {};
// 3295
o4["60"] = o12;
// 3296
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3298
o12 = {};
// 3299
f449694821_566.returns.push(o12);
// 3300
o12.value = "mercurymessagesCountWrapper";
// undefined
o12 = null;
// 3302
o12 = {};
// 3303
o4["61"] = o12;
// 3304
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3306
o12 = {};
// 3307
f449694821_566.returns.push(o12);
// 3308
o12.value = "mercurymessagesCountValue";
// undefined
o12 = null;
// 3310
o12 = {};
// 3311
o4["62"] = o12;
// 3312
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3314
f449694821_566.returns.push(null);
// 3316
o4["63"] = o60;
// 3317
o60.getAttributeNode = f449694821_566;
// undefined
o60 = null;
// 3319
o12 = {};
// 3320
f449694821_566.returns.push(o12);
// 3321
o12.value = "fbMessagesFlyout";
// undefined
o12 = null;
// 3323
o12 = {};
// 3324
o4["64"] = o12;
// 3325
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3327
f449694821_566.returns.push(null);
// 3329
o12 = {};
// 3330
o4["65"] = o12;
// 3331
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3333
f449694821_566.returns.push(null);
// 3335
o12 = {};
// 3336
o4["66"] = o12;
// 3337
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3339
f449694821_566.returns.push(null);
// 3341
o12 = {};
// 3342
o4["67"] = o12;
// 3343
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3345
f449694821_566.returns.push(null);
// 3347
o12 = {};
// 3348
o4["68"] = o12;
// 3349
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3351
f449694821_566.returns.push(null);
// 3353
o12 = {};
// 3354
o4["69"] = o12;
// 3355
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3357
f449694821_566.returns.push(null);
// 3359
o12 = {};
// 3360
o4["70"] = o12;
// 3361
o12.getAttributeNode = f449694821_566;
// undefined
o12 = null;
// 3363
f449694821_566.returns.push(null);
// 3365
o4["71"] = o51;
// 3366
o51.getAttributeNode = f449694821_566;
// undefined
o51 = null;
// 3368
f449694821_566.returns.push(null);
// 3370
o12 = {};
// 3371
o4["72"] = o12;
// 3372
o12.getAttributeNode = f449694821_566;
// 3374
o13 = {};
// 3375
f449694821_566.returns.push(o13);
// 3376
o13.value = "u_0_4";
// undefined
o13 = null;
// 3378
o13 = {};
// 3379
o4["73"] = o13;
// 3380
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3382
f449694821_566.returns.push(null);
// 3384
o13 = {};
// 3385
o4["74"] = o13;
// 3386
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3388
f449694821_566.returns.push(null);
// 3390
o13 = {};
// 3391
o4["75"] = o13;
// 3392
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3394
f449694821_566.returns.push(null);
// 3396
o13 = {};
// 3397
o4["76"] = o13;
// 3398
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3400
f449694821_566.returns.push(null);
// 3402
o13 = {};
// 3403
o4["77"] = o13;
// 3404
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3406
f449694821_566.returns.push(null);
// 3408
o13 = {};
// 3409
o4["78"] = o13;
// 3410
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3412
f449694821_566.returns.push(null);
// 3414
o13 = {};
// 3415
o4["79"] = o13;
// 3416
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3418
f449694821_566.returns.push(null);
// 3420
o4["80"] = o28;
// 3421
o28.getAttributeNode = f449694821_566;
// undefined
o28 = null;
// 3423
o13 = {};
// 3424
f449694821_566.returns.push(o13);
// 3425
o13.value = "MercuryJewelThreadList";
// undefined
o13 = null;
// 3427
o4["81"] = o30;
// 3428
o30.getAttributeNode = f449694821_566;
// undefined
o30 = null;
// 3430
f449694821_566.returns.push(null);
// 3432
o4["82"] = o31;
// 3433
o31.getAttributeNode = f449694821_566;
// undefined
o31 = null;
// 3435
f449694821_566.returns.push(null);
// 3437
o4["83"] = o32;
// 3438
o32.getAttributeNode = f449694821_566;
// undefined
o32 = null;
// 3440
f449694821_566.returns.push(null);
// 3442
o13 = {};
// 3443
o4["84"] = o13;
// 3444
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3446
f449694821_566.returns.push(null);
// 3448
o13 = {};
// 3449
o4["85"] = o13;
// 3450
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3452
f449694821_566.returns.push(null);
// 3454
o13 = {};
// 3455
o4["86"] = o13;
// 3456
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3458
f449694821_566.returns.push(null);
// 3460
o13 = {};
// 3461
o4["87"] = o13;
// 3462
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3464
f449694821_566.returns.push(null);
// 3466
o13 = {};
// 3467
o4["88"] = o13;
// 3468
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3470
f449694821_566.returns.push(null);
// 3472
o13 = {};
// 3473
o4["89"] = o13;
// 3474
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3476
f449694821_566.returns.push(null);
// 3478
o13 = {};
// 3479
o4["90"] = o13;
// 3480
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3482
f449694821_566.returns.push(null);
// 3484
o13 = {};
// 3485
o4["91"] = o13;
// 3486
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3488
f449694821_566.returns.push(null);
// 3490
o13 = {};
// 3491
o4["92"] = o13;
// 3492
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3494
f449694821_566.returns.push(null);
// 3496
o13 = {};
// 3497
o4["93"] = o13;
// 3498
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3500
f449694821_566.returns.push(null);
// 3502
o4["94"] = o33;
// 3503
o33.getAttributeNode = f449694821_566;
// undefined
o33 = null;
// 3505
f449694821_566.returns.push(null);
// 3507
o4["95"] = o34;
// 3508
o34.getAttributeNode = f449694821_566;
// undefined
o34 = null;
// 3510
f449694821_566.returns.push(null);
// 3512
o13 = {};
// 3513
o4["96"] = o13;
// 3514
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3516
o13 = {};
// 3517
f449694821_566.returns.push(o13);
// 3518
o13.value = "MercuryJewelFooter";
// undefined
o13 = null;
// 3520
o13 = {};
// 3521
o4["97"] = o13;
// 3522
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3524
f449694821_566.returns.push(null);
// 3526
o13 = {};
// 3527
o4["98"] = o13;
// 3528
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3530
f449694821_566.returns.push(null);
// 3532
o13 = {};
// 3533
o4["99"] = o13;
// 3534
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3536
f449694821_566.returns.push(null);
// 3538
o4["100"] = o61;
// 3539
o61.getAttributeNode = f449694821_566;
// undefined
o61 = null;
// 3541
o13 = {};
// 3542
f449694821_566.returns.push(o13);
// 3543
o13.value = "fbNotificationsJewel";
// undefined
o13 = null;
// 3545
o4["101"] = o52;
// 3546
o52.getAttributeNode = f449694821_566;
// undefined
o52 = null;
// 3548
f449694821_566.returns.push(null);
// 3550
o13 = {};
// 3551
o4["102"] = o13;
// 3552
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3554
f449694821_566.returns.push(null);
// 3556
o13 = {};
// 3557
o4["103"] = o13;
// 3558
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3560
o13 = {};
// 3561
f449694821_566.returns.push(o13);
// 3562
o13.value = "notificationsCountWrapper";
// undefined
o13 = null;
// 3564
o13 = {};
// 3565
o4["104"] = o13;
// 3566
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3568
o13 = {};
// 3569
f449694821_566.returns.push(o13);
// 3570
o13.value = "notificationsCountValue";
// undefined
o13 = null;
// 3572
o13 = {};
// 3573
o4["105"] = o13;
// 3574
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3576
f449694821_566.returns.push(null);
// 3578
o4["106"] = o65;
// 3579
o65.getAttributeNode = f449694821_566;
// undefined
o65 = null;
// 3581
o13 = {};
// 3582
f449694821_566.returns.push(o13);
// 3583
o13.value = "fbNotificationsFlyout";
// undefined
o13 = null;
// 3585
o13 = {};
// 3586
o4["107"] = o13;
// 3587
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3589
f449694821_566.returns.push(null);
// 3591
o13 = {};
// 3592
o4["108"] = o13;
// 3593
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3595
f449694821_566.returns.push(null);
// 3597
o13 = {};
// 3598
o4["109"] = o13;
// 3599
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3601
f449694821_566.returns.push(null);
// 3603
o13 = {};
// 3604
o4["110"] = o13;
// 3605
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3607
f449694821_566.returns.push(null);
// 3609
o13 = {};
// 3610
o4["111"] = o13;
// 3611
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3613
f449694821_566.returns.push(null);
// 3615
o13 = {};
// 3616
o4["112"] = o13;
// 3617
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3619
f449694821_566.returns.push(null);
// 3621
o13 = {};
// 3622
o4["113"] = o13;
// 3623
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3625
f449694821_566.returns.push(null);
// 3627
o13 = {};
// 3628
o4["114"] = o13;
// 3629
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3631
f449694821_566.returns.push(null);
// 3633
o13 = {};
// 3634
o4["115"] = o13;
// 3635
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3637
f449694821_566.returns.push(null);
// 3639
o13 = {};
// 3640
o4["116"] = o13;
// 3641
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3643
f449694821_566.returns.push(null);
// 3645
o13 = {};
// 3646
o4["117"] = o13;
// 3647
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3649
f449694821_566.returns.push(null);
// 3651
o4["118"] = o29;
// 3652
o29.getAttributeNode = f449694821_566;
// undefined
o29 = null;
// 3654
o13 = {};
// 3655
f449694821_566.returns.push(o13);
// 3656
o13.value = "u_0_5";
// undefined
o13 = null;
// 3658
o4["119"] = o36;
// 3659
o36.getAttributeNode = f449694821_566;
// undefined
o36 = null;
// 3661
f449694821_566.returns.push(null);
// 3663
o4["120"] = o37;
// 3664
o37.getAttributeNode = f449694821_566;
// undefined
o37 = null;
// 3666
f449694821_566.returns.push(null);
// 3668
o4["121"] = o38;
// 3669
o38.getAttributeNode = f449694821_566;
// undefined
o38 = null;
// 3671
f449694821_566.returns.push(null);
// 3673
o13 = {};
// 3674
o4["122"] = o13;
// 3675
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3677
o13 = {};
// 3678
f449694821_566.returns.push(o13);
// 3679
o13.value = "fbNotificationsList";
// undefined
o13 = null;
// 3681
o13 = {};
// 3682
o4["123"] = o13;
// 3683
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3685
o13 = {};
// 3686
f449694821_566.returns.push(o13);
// 3687
o13.value = "fbNotificationsList_loading_indicator";
// undefined
o13 = null;
// 3689
o13 = {};
// 3690
o4["124"] = o13;
// 3691
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3693
f449694821_566.returns.push(null);
// 3695
o13 = {};
// 3696
o4["125"] = o13;
// 3697
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3699
f449694821_566.returns.push(null);
// 3701
o13 = {};
// 3702
o4["126"] = o13;
// 3703
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3705
f449694821_566.returns.push(null);
// 3707
o13 = {};
// 3708
o4["127"] = o13;
// 3709
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3711
f449694821_566.returns.push(null);
// 3713
o13 = {};
// 3714
o4["128"] = o13;
// 3715
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3717
f449694821_566.returns.push(null);
// 3719
o13 = {};
// 3720
o4["129"] = o13;
// 3721
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3723
f449694821_566.returns.push(null);
// 3725
o13 = {};
// 3726
o4["130"] = o13;
// 3727
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3729
f449694821_566.returns.push(null);
// 3731
o4["131"] = o39;
// 3732
o39.getAttributeNode = f449694821_566;
// undefined
o39 = null;
// 3734
f449694821_566.returns.push(null);
// 3736
o4["132"] = o40;
// 3737
o40.getAttributeNode = f449694821_566;
// undefined
o40 = null;
// 3739
f449694821_566.returns.push(null);
// 3741
o13 = {};
// 3742
o4["133"] = o13;
// 3743
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3745
o13 = {};
// 3746
f449694821_566.returns.push(o13);
// 3747
o13.value = "jewelNotice";
// undefined
o13 = null;
// 3749
o13 = {};
// 3750
o4["134"] = o13;
// 3751
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3753
f449694821_566.returns.push(null);
// 3755
o13 = {};
// 3756
o4["135"] = o13;
// 3757
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3759
f449694821_566.returns.push(null);
// 3761
o13 = {};
// 3762
o4["136"] = o13;
// 3763
o13.getAttributeNode = f449694821_566;
// undefined
o13 = null;
// 3765
f449694821_566.returns.push(null);
// 3767
o13 = {};
// 3768
o4["137"] = o13;
// 3769
o13.getAttributeNode = f449694821_566;
// 3771
o14 = {};
// 3772
f449694821_566.returns.push(o14);
// 3773
o14.value = "headNav";
// undefined
o14 = null;
// 3775
o4["138"] = o53;
// 3776
o53.getAttributeNode = f449694821_566;
// undefined
o53 = null;
// 3778
f449694821_566.returns.push(null);
// 3780
o14 = {};
// 3781
o4["139"] = o14;
// 3782
o14.getAttributeNode = f449694821_424;
// undefined
o14 = null;
// 3784
o14 = {};
// 3785
f449694821_424.returns.push(o14);
// 3786
o14.value = "navSearch";
// undefined
o14 = null;
// 3788
o14 = {};
// 3789
o4["140"] = o14;
// 3790
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3792
o14 = {};
// 3793
f449694821_566.returns.push(o14);
// 3794
o14.value = "u_0_2";
// undefined
o14 = null;
// 3796
o14 = {};
// 3797
o4["141"] = o14;
// 3798
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3800
f449694821_566.returns.push(null);
// 3802
o14 = {};
// 3803
o4["142"] = o14;
// 3804
f449694821_691 = function() { return f449694821_691.returns[f449694821_691.inst++]; };
f449694821_691.returns = [];
f449694821_691.inst = 0;
// 3805
o14.getAttributeNode = f449694821_691;
// undefined
o14 = null;
// 3807
f449694821_691.returns.push(null);
// 3809
o14 = {};
// 3810
o4["143"] = o14;
// 3811
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3813
f449694821_566.returns.push(null);
// 3815
o14 = {};
// 3816
o4["144"] = o14;
// 3817
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3819
o14 = {};
// 3820
f449694821_566.returns.push(o14);
// 3821
o14.value = "u_0_3";
// undefined
o14 = null;
// 3823
o14 = {};
// 3824
o4["145"] = o14;
// 3825
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3827
f449694821_566.returns.push(null);
// 3829
o4["146"] = o54;
// 3830
o54.getAttributeNode = f449694821_566;
// undefined
o54 = null;
// 3832
f449694821_566.returns.push(null);
// 3834
o4["147"] = o55;
// 3835
o55.getAttributeNode = f449694821_566;
// undefined
o55 = null;
// 3837
f449694821_566.returns.push(null);
// 3839
o14 = {};
// 3840
o4["148"] = o14;
// 3841
o14.getAttributeNode = f449694821_691;
// undefined
o14 = null;
// 3843
o14 = {};
// 3844
f449694821_691.returns.push(o14);
// 3845
o14.value = "q";
// undefined
o14 = null;
// 3847
o4["149"] = o56;
// 3848
o56.getAttributeNode = f449694821_566;
// undefined
o56 = null;
// 3850
f449694821_566.returns.push(null);
// 3852
o14 = {};
// 3853
o4["150"] = o14;
// 3854
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3856
f449694821_566.returns.push(null);
// 3858
o14 = {};
// 3859
o4["151"] = o14;
// 3860
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3862
f449694821_566.returns.push(null);
// 3864
o14 = {};
// 3865
o4["152"] = o14;
// 3866
o14.getAttributeNode = f449694821_566;
// undefined
o14 = null;
// 3868
o14 = {};
// 3869
f449694821_566.returns.push(o14);
// 3870
o14.value = "u_0_0";
// undefined
o14 = null;
// 3872
o14 = {};
// 3873
o4["153"] = o14;
// 3874
o14.getAttributeNode = f449694821_691;
// undefined
o14 = null;
// 3876
o14 = {};
// 3877
f449694821_691.returns.push(o14);
// 3878
o14.value = "init";
// undefined
o14 = null;
// 3880
o14 = {};
// 3881
o4["154"] = o14;
// 3882
o14.getAttributeNode = f449694821_691;
// undefined
o14 = null;
// 3884
f449694821_691.returns.push(null);
// 3886
o14 = {};
// 3887
o4["155"] = o14;
// 3888
o14.getAttributeNode = f449694821_691;
// undefined
o14 = null;
// 3890
o14 = {};
// 3891
f449694821_691.returns.push(o14);
// 3892
o14.value = "search_first_focus";
// undefined
o14 = null;
// 3894
o14 = {};
// 3895
o4["156"] = o14;
// 3896
o14.getAttributeNode = f449694821_566;
// 3898
f449694821_566.returns.push(null);
// 3900
o15 = {};
// 3901
o4["157"] = o15;
// 3902
o15.getAttributeNode = f449694821_566;
// 3904
o16 = {};
// 3905
f449694821_566.returns.push(o16);
// 3906
o16.value = "pageNav";
// undefined
o16 = null;
// 3908
o16 = {};
// 3909
o4["158"] = o16;
// 3910
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3912
f449694821_566.returns.push(null);
// 3914
o16 = {};
// 3915
o4["159"] = o16;
// 3916
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3918
f449694821_566.returns.push(null);
// 3920
o16 = {};
// 3921
o4["160"] = o16;
// 3922
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3924
o16 = {};
// 3925
f449694821_566.returns.push(o16);
// 3926
o16.value = "profile_pic_header_100006118350059";
// undefined
o16 = null;
// 3928
o16 = {};
// 3929
o4["161"] = o16;
// 3930
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3932
f449694821_566.returns.push(null);
// 3934
o16 = {};
// 3935
o4["162"] = o16;
// 3936
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3938
f449694821_566.returns.push(null);
// 3940
o4["163"] = o57;
// 3941
o57.getAttributeNode = f449694821_566;
// undefined
o57 = null;
// 3943
f449694821_566.returns.push(null);
// 3945
o16 = {};
// 3946
o4["164"] = o16;
// 3947
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3949
f449694821_566.returns.push(null);
// 3951
o16 = {};
// 3952
o4["165"] = o16;
// 3953
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3955
f449694821_566.returns.push(null);
// 3957
o16 = {};
// 3958
o4["166"] = o16;
// 3959
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3961
o16 = {};
// 3962
f449694821_566.returns.push(o16);
// 3963
o16.value = "navFindFriends";
// undefined
o16 = null;
// 3965
o16 = {};
// 3966
o4["167"] = o16;
// 3967
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3969
o16 = {};
// 3970
f449694821_566.returns.push(o16);
// 3971
o16.value = "findFriendsNav";
// undefined
o16 = null;
// 3973
o16 = {};
// 3974
o4["168"] = o16;
// 3975
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3977
o16 = {};
// 3978
f449694821_566.returns.push(o16);
// 3979
o16.value = "navHome";
// undefined
o16 = null;
// 3981
o16 = {};
// 3982
o4["169"] = o16;
// 3983
o16.getAttributeNode = f449694821_566;
// undefined
o16 = null;
// 3985
f449694821_566.returns.push(null);
// 3987
o16 = {};
// 3988
o4["170"] = o16;
// 3989
o16.getAttributeNode = f449694821_566;
// 3991
o17 = {};
// 3992
f449694821_566.returns.push(o17);
// 3993
o17.value = "navPrivacy";
// undefined
o17 = null;
// 3995
o17 = {};
// 3996
o4["171"] = o17;
// 3997
o17.getAttributeNode = f449694821_566;
// 3999
o19 = {};
// 4000
f449694821_566.returns.push(o19);
// 4001
o19.value = "u_0_8";
// undefined
o19 = null;
// 4003
o19 = {};
// 4004
o4["172"] = o19;
// undefined
o4 = null;
// 4005
o19.getAttributeNode = f449694821_566;
// 4007
o4 = {};
// 4008
f449694821_566.returns.push(o4);
// 4009
o4.value = "u_0_6";
// undefined
o4 = null;
// 4011
o4 = {};
// 4012
o19.classList = o4;
// 4014
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4015
f449694821_563.returns.push(false);
// 4016
o19.parentNode = o17;
// undefined
o19 = null;
// 4017
o4 = {};
// 4018
o17.classList = o4;
// 4020
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4021
f449694821_563.returns.push(false);
// 4022
o17.parentNode = o16;
// undefined
o17 = null;
// 4023
o4 = {};
// 4024
o16.classList = o4;
// 4026
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4027
f449694821_563.returns.push(false);
// 4028
o16.parentNode = o15;
// undefined
o16 = null;
// 4029
o4 = {};
// 4030
o15.classList = o4;
// 4032
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4033
f449694821_563.returns.push(false);
// 4034
o15.parentNode = o14;
// undefined
o15 = null;
// 4035
o4 = {};
// 4036
o14.classList = o4;
// 4038
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4039
f449694821_563.returns.push(false);
// 4040
o14.parentNode = o13;
// undefined
o14 = null;
// 4041
o4 = {};
// 4042
o13.classList = o4;
// 4044
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4045
f449694821_563.returns.push(false);
// 4046
o13.parentNode = o11;
// undefined
o13 = null;
// 4047
o4 = {};
// 4048
o11.classList = o4;
// 4050
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4051
f449694821_563.returns.push(false);
// 4052
o11.parentNode = o10;
// undefined
o11 = null;
// 4053
o4 = {};
// 4054
o10.classList = o4;
// 4056
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4057
f449694821_563.returns.push(false);
// 4058
o10.parentNode = o9;
// undefined
o10 = null;
// 4059
o4 = {};
// 4060
o9.classList = o4;
// 4062
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4063
f449694821_563.returns.push(false);
// 4064
o9.parentNode = o8;
// undefined
o9 = null;
// 4065
o4 = {};
// 4066
o8.classList = o4;
// 4068
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4069
f449694821_563.returns.push(false);
// 4070
o8.parentNode = o7;
// undefined
o8 = null;
// 4071
o4 = {};
// 4072
o7.classList = o4;
// 4074
o4.contains = f449694821_563;
// undefined
o4 = null;
// 4075
f449694821_563.returns.push(false);
// 4076
o7.parentNode = o6;
// undefined
o7 = null;
// 4080
ow449694821.JSBNG__random = undefined;
// 4081
f449694821_386.returns.push(0.3433784359517864);
// 4084
f449694821_387.returns.push(1373490177325);
// 4085
o4 = {};
// 4086
f449694821_64.returns.push(o4);
// undefined
o4 = null;
// 4087
f449694821_7.returns.push(undefined);
// 4088
ow449694821.JSBNG__attachEvent = undefined;
// 4089
f449694821_16.returns.push(13);
// 4092
f449694821_450.returns.push(o12);
// 4093
o12.nodeName = "A";
// 4094
o12.__FB_TOKEN = void 0;
// 4095
// 4096
o12.getAttribute = f449694821_444;
// 4097
o12.hasAttribute = f449694821_445;
// 4099
f449694821_445.returns.push(false);
// 4100
o12.JSBNG__addEventListener = f449694821_402;
// 4102
f449694821_402.returns.push(undefined);
// 4103
f449694821_748 = function() { return f449694821_748.returns[f449694821_748.inst++]; };
f449694821_748.returns = [];
f449694821_748.inst = 0;
// 4104
o12.JSBNG__onclick = f449694821_748;
// 4107
// undefined
o12 = null;
// 4111
o4 = {};
// 4112
f449694821_396.returns.push(o4);
// 4113
// 4114
// 4115
o4.getElementsByTagName = f449694821_419;
// 4116
o7 = {};
// 4117
f449694821_419.returns.push(o7);
// 4118
o7.length = 0;
// undefined
o7 = null;
// 4120
o7 = {};
// 4121
o4.childNodes = o7;
// undefined
o4 = null;
// 4122
o7.item = f449694821_422;
// 4123
o7.length = 1;
// 4124
o4 = {};
// 4125
o7["0"] = o4;
// undefined
o7 = null;
// undefined
o4 = null;
// 4127
o4 = {};
// 4128
f449694821_396.returns.push(o4);
// 4129
// 4130
// 4131
o4.getElementsByTagName = f449694821_419;
// 4132
o7 = {};
// 4133
f449694821_419.returns.push(o7);
// 4134
o7.length = 0;
// undefined
o7 = null;
// 4136
o7 = {};
// 4137
o4.childNodes = o7;
// undefined
o4 = null;
// 4138
o7.item = f449694821_422;
// 4139
o7.length = 1;
// 4140
o4 = {};
// 4141
o7["0"] = o4;
// undefined
o7 = null;
// undefined
o4 = null;
// 4143
o4 = {};
// 4144
f449694821_396.returns.push(o4);
// 4145
// 4146
// 4147
o4.getElementsByTagName = f449694821_419;
// 4148
o7 = {};
// 4149
f449694821_419.returns.push(o7);
// 4150
o7.length = 0;
// undefined
o7 = null;
// 4152
o7 = {};
// 4153
o4.childNodes = o7;
// undefined
o4 = null;
// 4154
o7.item = f449694821_422;
// 4155
o7.length = 1;
// 4156
o4 = {};
// 4157
o7["0"] = o4;
// undefined
o7 = null;
// undefined
o4 = null;
// 4159
o4 = {};
// 4160
f449694821_396.returns.push(o4);
// 4161
// 4162
// 4163
o4.getElementsByTagName = f449694821_419;
// 4164
o7 = {};
// 4165
f449694821_419.returns.push(o7);
// 4166
o7.length = 0;
// undefined
o7 = null;
// 4168
o7 = {};
// 4169
o4.childNodes = o7;
// undefined
o4 = null;
// 4170
o7.item = f449694821_422;
// 4171
o7.length = 1;
// 4172
o4 = {};
// 4173
o7["0"] = o4;
// undefined
o7 = null;
// undefined
o4 = null;
// 4175
o4 = {};
// 4176
f449694821_396.returns.push(o4);
// undefined
o4 = null;
// 4177
o4 = {};
// 4178
o0.implementation = o4;
// 4180
f449694821_767 = function() { return f449694821_767.returns[f449694821_767.inst++]; };
f449694821_767.returns = [];
f449694821_767.inst = 0;
// 4181
o4.hasFeature = f449694821_767;
// undefined
o4 = null;
// 4184
f449694821_767.returns.push(true);
// 4186
o4 = {};
// 4187
f449694821_396.returns.push(o4);
// undefined
o4 = null;
// 4189
o4 = {};
// 4190
f449694821_396.returns.push(o4);
// 4191
f449694821_770 = function() { return f449694821_770.returns[f449694821_770.inst++]; };
f449694821_770.returns = [];
f449694821_770.inst = 0;
// 4192
o4.setAttribute = f449694821_770;
// 4193
f449694821_770.returns.push(undefined);
// 4194
o4.JSBNG__onchange = null;
// 4196
// 4197
f449694821_771 = function() { return f449694821_771.returns[f449694821_771.inst++]; };
f449694821_771.returns = [];
f449694821_771.inst = 0;
// 4198
o4.removeAttribute = f449694821_771;
// undefined
o4 = null;
// 4199
f449694821_771.returns.push(undefined);
// 4201
o4 = {};
// 4202
f449694821_396.returns.push(o4);
// 4203
o4.setAttribute = f449694821_770;
// 4204
f449694821_770.returns.push(undefined);
// 4205
o4.JSBNG__oninput = null;
// 4207
// 4208
o4.removeAttribute = f449694821_771;
// undefined
o4 = null;
// 4209
f449694821_771.returns.push(undefined);
// 4211
o4 = {};
// 4212
f449694821_396.returns.push(o4);
// 4213
// 4214
// 4215
o4.getElementsByTagName = f449694821_419;
// 4216
o7 = {};
// 4217
f449694821_419.returns.push(o7);
// 4218
o7.length = 0;
// undefined
o7 = null;
// 4220
o7 = {};
// 4221
o4.childNodes = o7;
// undefined
o4 = null;
// 4222
o7.item = f449694821_422;
// 4223
o7.length = 1;
// 4224
o4 = {};
// 4225
o7["0"] = o4;
// undefined
o7 = null;
// undefined
o4 = null;
// 4227
o4 = {};
// 4228
f449694821_396.returns.push(o4);
// 4229
// 4230
// 4231
o4.getElementsByTagName = f449694821_419;
// 4232
o7 = {};
// 4233
f449694821_419.returns.push(o7);
// 4234
o7.length = 0;
// undefined
o7 = null;
// 4236
o7 = {};
// 4237
o4.childNodes = o7;
// undefined
o4 = null;
// 4238
o7.item = f449694821_422;
// 4239
o7.length = 1;
// 4240
o4 = {};
// 4241
o7["0"] = o4;
// undefined
o7 = null;
// undefined
o4 = null;
// 4242
f449694821_17.returns.push(14);
// 4243
o2.onLine = true;
// 4244
f449694821_7.returns.push(undefined);
// 4245
f449694821_7.returns.push(undefined);
// 4247
f449694821_387.returns.push(1373490177501);
// 4249
f449694821_387.returns.push(1373490177501);
// 4250
o0.compatMode = "CSS1Compat";
// 4253
f449694821_7.returns.push(undefined);
// 4254
ow449694821.JSBNG__onJSBNG__focus = undefined;
// 4259
f449694821_402.returns.push(undefined);
// 4260
o1.JSBNG__onDOMMouseScroll = void 0;
// 4267
f449694821_402.returns.push(undefined);
// 4268
o1.JSBNG__onmousemove = null;
// 4273
f449694821_402.returns.push(undefined);
// 4274
o1.JSBNG__onmouseover = null;
// 4277
o3["33"] = o64;
// 4282
o64.src = "";
// undefined
o64 = null;
// 4288
o4 = {};
// 4291
o3["34"] = o4;
// 4296
o4.src = "";
// undefined
o4 = null;
// 4302
o4 = {};
// 4305
o3["35"] = o4;
// 4310
o4.src = "";
// undefined
o4 = null;
// 4316
o4 = {};
// 4319
o3["36"] = o4;
// 4324
o4.src = "";
// undefined
o4 = null;
// 4330
o4 = {};
// 4333
o3["37"] = o4;
// 4338
o4.src = "";
// undefined
o4 = null;
// 4344
o4 = {};
// 4347
o3["38"] = o4;
// 4352
o4.src = "";
// undefined
o4 = null;
// 4358
o4 = {};
// 4361
o3["39"] = o4;
// 4366
o4.src = "";
// undefined
o4 = null;
// 4372
o4 = {};
// 4375
o3["40"] = o4;
// 4380
o4.src = "";
// undefined
o4 = null;
// 4386
o4 = {};
// 4389
o3["41"] = o4;
// 4394
o4.src = "";
// undefined
o4 = null;
// 4400
o4 = {};
// 4403
o3["42"] = o4;
// 4408
o4.src = "";
// undefined
o4 = null;
// 4414
o4 = {};
// 4417
o3["43"] = o4;
// undefined
o3 = null;
// 4422
o4.src = "";
// undefined
o4 = null;
// 4427
f449694821_795 = function() { return f449694821_795.returns[f449694821_795.inst++]; };
f449694821_795.returns = [];
f449694821_795.inst = 0;
// 4428
o2.javaEnabled = f449694821_795;
// 4429
f449694821_795.returns.push(true);
// 4430
o3 = {};
// 4431
o4 = {};
// 4433
o7 = {};
// 4434
o3._moduleIDsToCleanup = o7;
// 4435
// undefined
o7 = null;
// 4436
f449694821_799 = function() { return f449694821_799.returns[f449694821_799.inst++]; };
f449694821_799.returns = [];
f449694821_799.inst = 0;
// 4437
o3._replaceTransportMarkers = f449694821_799;
// 4438
f449694821_799.returns.push(undefined);
// 4439
f449694821_800 = function() { return f449694821_800.returns[f449694821_800.inst++]; };
f449694821_800.returns = [];
f449694821_800.inst = 0;
// 4440
o4.logUnityVersion = f449694821_800;
// 4442
o7 = {};
// 4443
o2.plugins = o7;
// undefined
o2 = null;
// 4444
f449694821_802 = function() { return f449694821_802.returns[f449694821_802.inst++]; };
f449694821_802.returns = [];
f449694821_802.inst = 0;
// 4445
o7.refresh = f449694821_802;
// undefined
o7 = null;
// 4446
f449694821_802.returns.push(undefined);
// 4452
ow449694821.JSBNG__onpopstate = f449694821_522;
// 4461
o2 = {};
// 4462
f449694821_812 = function() { return f449694821_812.returns[f449694821_812.inst++]; };
f449694821_812.returns = [];
f449694821_812.inst = 0;
// 4463
o7 = {};
// 4464
// 4465
// undefined
o7 = null;
// 4466
// undefined
o2 = null;
// 4467
o2 = {};
// 4470
o7 = {};
// 4472
f449694821_816 = function() { return f449694821_816.returns[f449694821_816.inst++]; };
f449694821_816.returns = [];
f449694821_816.inst = 0;
// 4474
o7.$URIBase0 = null;
// 4475
o7.$URIBase1 = null;
// 4476
o7.$URIBase2 = null;
// 4477
o7.$URIBase3 = "/";
// 4479
o8 = {};
// 4480
o7.$URIBase5 = o8;
// 4481
f449694821_818 = function() { return f449694821_818.returns[f449694821_818.inst++]; };
f449694821_818.returns = [];
f449694821_818.inst = 0;
// 4483
f449694821_818.returns.push(true);
// 4484
o8.sk = "welcome";
// 4486
o7.$URIBase4 = "";
// 4487
f449694821_816.returns.push("/?sk=welcome");
// 4488
o9 = {};
// undefined
o9 = null;
// 4489
f449694821_820 = function() { return f449694821_820.returns[f449694821_820.inst++]; };
f449694821_820.returns = [];
f449694821_820.inst = 0;
// 4490
o9 = {};
// undefined
o9 = null;
// 4491
f449694821_822 = function() { return f449694821_822.returns[f449694821_822.inst++]; };
f449694821_822.returns = [];
f449694821_822.inst = 0;
// 4492
f449694821_823 = function() { return f449694821_823.returns[f449694821_823.inst++]; };
f449694821_823.returns = [];
f449694821_823.inst = 0;
// 4493
o0.nodeName = "#document";
// 4494
o0.__FB_TOKEN = void 0;
// 4495
// 4496
o0.getAttribute = void 0;
// 4499
f449694821_388.returns.push(undefined);
// 4500
o0.JSBNG__onclick = null;
// 4502
f449694821_824 = function() { return f449694821_824.returns[f449694821_824.inst++]; };
f449694821_824.returns = [];
f449694821_824.inst = 0;
// 4506
f449694821_388.returns.push(undefined);
// 4507
o0.JSBNG__onsubmit = null;
// 4509
f449694821_825 = function() { return f449694821_825.returns[f449694821_825.inst++]; };
f449694821_825.returns = [];
f449694821_825.inst = 0;
// 4513
f449694821_826 = function() { return f449694821_826.returns[f449694821_826.inst++]; };
f449694821_826.returns = [];
f449694821_826.inst = 0;
// 4515
o9 = {};
// undefined
o9 = null;
// 4517
f449694821_387.returns.push(1373490177797);
// 4521
f449694821_16.returns.push(15);
// 4523
f449694821_387.returns.push(1373490177800);
// 4525
f449694821_387.returns.push(1373490177803);
// 4529
f449694821_16.returns.push(16);
// 4531
f449694821_387.returns.push(1373490177808);
// 4532
o9 = {};
// 4534
f449694821_389.returns.push(undefined);
// 4539
f449694821_16.returns.push(17);
// 4543
o10 = {};
// 4544
f449694821_394.returns.push(o10);
// 4546
f449694821_398.returns.push(o10);
// undefined
o10 = null;
// 4550
o10 = {};
// 4551
f449694821_396.returns.push(o10);
// 4553
o10.__html = void 0;
// 4555
o11 = {};
// 4556
f449694821_394.returns.push(o11);
// 4558
o6.appendChild = f449694821_398;
// undefined
o6 = null;
// 4559
f449694821_398.returns.push(o11);
// undefined
o11 = null;
// 4560
o6 = {};
// 4561
o10.style = o6;
// undefined
o10 = null;
// 4562
// undefined
o6 = null;
// 4563
o6 = {};
// 4564
f449694821_4.returns.push(o6);
// 4565
o6.getPropertyValue = void 0;
// undefined
o6 = null;
// 4567
f449694821_387.returns.push(1373490179937);
// 4569
f449694821_387.returns.push(1373490179937);
// 4573
// 4576
f449694821_387.returns.push(1373490179939);
// 4580
o6 = {};
// 4581
f449694821_394.returns.push(o6);
// 4583
f449694821_398.returns.push(o6);
// undefined
o6 = null;
// 4584
o6 = {};
// 4589
f449694821_387.returns.push(1373490179951);
// 4590
o6.cancelBubble = false;
// 4591
o6.returnValue = void 0;
// 4592
o10 = {};
// 4597
f449694821_387.returns.push(1373490180360);
// 4598
o10.cancelBubble = false;
// 4599
o10.returnValue = void 0;
// 4600
o11 = {};
// 4605
f449694821_387.returns.push(1373490180386);
// 4606
o11.cancelBubble = false;
// 4607
o11.returnValue = void 0;
// 4608
o12 = {};
// 4613
f449694821_387.returns.push(1373490180410);
// 4614
o12.cancelBubble = false;
// 4615
o12.returnValue = void 0;
// 4616
o13 = {};
// 4621
f449694821_387.returns.push(1373490180423);
// 4622
o13.cancelBubble = false;
// 4623
o13.returnValue = void 0;
// 4624
o14 = {};
// 4629
f449694821_387.returns.push(1373490180433);
// 4630
o14.cancelBubble = false;
// 4631
o14.returnValue = void 0;
// 4632
o15 = {};
// 4637
f449694821_387.returns.push(1373490180483);
// 4638
o15.cancelBubble = false;
// 4639
o15.returnValue = void 0;
// 4640
o16 = {};
// 4645
f449694821_387.returns.push(1373490180491);
// 4646
o16.cancelBubble = false;
// 4647
o16.returnValue = void 0;
// 4648
o17 = {};
// 4653
f449694821_387.returns.push(1373490180500);
// 4654
o17.cancelBubble = false;
// 4655
o17.returnValue = void 0;
// 4656
o19 = {};
// 4661
f449694821_387.returns.push(1373490180509);
// 4662
o19.cancelBubble = false;
// 4663
o19.returnValue = void 0;
// 4664
o20 = {};
// 4669
f449694821_387.returns.push(1373490180520);
// 4670
o20.cancelBubble = false;
// 4671
o20.returnValue = void 0;
// 4672
o21 = {};
// 4677
f449694821_387.returns.push(1373490180530);
// 4678
o21.cancelBubble = false;
// 4679
o21.returnValue = void 0;
// 4680
o22 = {};
// 4685
f449694821_387.returns.push(1373490180539);
// 4686
o22.cancelBubble = false;
// 4687
o22.returnValue = void 0;
// 4688
o23 = {};
// 4693
f449694821_387.returns.push(1373490180550);
// 4694
o23.cancelBubble = false;
// 4695
o23.returnValue = void 0;
// 4696
o24 = {};
// 4701
f449694821_387.returns.push(1373490180560);
// 4702
o24.cancelBubble = false;
// 4703
o24.returnValue = void 0;
// 4704
o25 = {};
// 4709
f449694821_387.returns.push(1373490180570);
// 4710
o25.cancelBubble = false;
// 4711
o25.returnValue = void 0;
// 4712
o26 = {};
// 4717
f449694821_387.returns.push(1373490180581);
// 4718
o26.cancelBubble = false;
// 4719
o26.returnValue = void 0;
// 4722
f449694821_387.returns.push(1373490180979);
// 4723
o27 = {};
// 4728
f449694821_387.returns.push(1373490181509);
// 4729
o27.cancelBubble = false;
// 4730
o27.returnValue = void 0;
// 4731
o28 = {};
// 4736
f449694821_387.returns.push(1373490181511);
// 4737
o28.cancelBubble = false;
// 4738
o28.returnValue = void 0;
// 4739
o29 = {};
// 4744
f449694821_387.returns.push(1373490181517);
// 4745
o29.cancelBubble = false;
// 4746
o29.returnValue = void 0;
// 4747
o30 = {};
// 4752
f449694821_387.returns.push(1373490181521);
// 4753
o30.cancelBubble = false;
// 4754
o30.returnValue = void 0;
// 4755
o31 = {};
// 4760
f449694821_387.returns.push(1373490181523);
// 4761
o31.cancelBubble = false;
// 4762
o31.returnValue = void 0;
// 4763
o32 = {};
// 4768
f449694821_387.returns.push(1373490181525);
// 4769
o32.cancelBubble = false;
// 4770
o32.returnValue = void 0;
// 4771
o33 = {};
// undefined
o33 = null;
// 4772
o33 = {};
// 4777
f449694821_387.returns.push(1373490181609);
// 4778
o33.cancelBubble = false;
// 4779
o33.returnValue = void 0;
// 4780
o34 = {};
// undefined
o34 = null;
// 4781
o34 = {};
// 4786
f449694821_387.returns.push(1373490181627);
// 4787
o34.cancelBubble = false;
// 4788
o34.returnValue = void 0;
// 4789
o35 = {};
// undefined
o35 = null;
// 4790
o35 = {};
// 4795
f449694821_387.returns.push(1373490181643);
// 4796
o35.cancelBubble = false;
// 4797
o35.returnValue = void 0;
// 4798
o36 = {};
// undefined
o36 = null;
// 4799
o36 = {};
// 4804
f449694821_387.returns.push(1373490181660);
// 4805
o36.cancelBubble = false;
// 4806
o36.returnValue = void 0;
// 4807
o37 = {};
// undefined
o37 = null;
// 4808
o37 = {};
// 4813
f449694821_387.returns.push(1373490181679);
// 4814
o37.cancelBubble = false;
// 4815
o37.returnValue = void 0;
// 4816
o38 = {};
// undefined
o38 = null;
// 4817
o38 = {};
// 4822
f449694821_387.returns.push(1373490181709);
// 4823
o38.cancelBubble = false;
// 4824
o38.returnValue = void 0;
// 4825
o39 = {};
// undefined
o39 = null;
// 4826
o39 = {};
// 4831
f449694821_387.returns.push(1373490181974);
// 4832
o39.cancelBubble = false;
// 4833
o39.returnValue = void 0;
// 4836
f449694821_387.returns.push(1373490181987);
// 4837
o40 = {};
// undefined
o40 = null;
// 4838
o40 = {};
// 4843
f449694821_387.returns.push(1373490182020);
// 4844
o40.cancelBubble = false;
// 4845
o40.returnValue = void 0;
// 4846
o43 = {};
// undefined
o43 = null;
// 4847
o43 = {};
// 4852
f449694821_387.returns.push(1373490182038);
// 4853
o43.cancelBubble = false;
// 4854
o43.returnValue = void 0;
// 4855
o44 = {};
// undefined
o44 = null;
// 4856
o44 = {};
// 4861
f449694821_387.returns.push(1373490182040);
// 4862
o44.cancelBubble = false;
// 4863
o44.returnValue = void 0;
// 4864
o45 = {};
// undefined
o45 = null;
// 4865
o45 = {};
// 4870
f449694821_387.returns.push(1373490182054);
// 4871
o45.cancelBubble = false;
// 4872
o45.returnValue = void 0;
// 4873
o46 = {};
// undefined
o46 = null;
// 4874
o46 = {};
// 4879
f449694821_387.returns.push(1373490182103);
// 4880
o46.cancelBubble = false;
// 4881
o46.returnValue = void 0;
// 4882
o47 = {};
// undefined
o47 = null;
// 4883
o47 = {};
// 4888
f449694821_387.returns.push(1373490182424);
// 4889
o47.cancelBubble = false;
// 4890
o47.returnValue = void 0;
// 4891
o48 = {};
// undefined
o48 = null;
// 4892
o48 = {};
// 4897
f449694821_387.returns.push(1373490182432);
// 4898
o48.cancelBubble = false;
// 4899
o48.returnValue = void 0;
// 4900
o49 = {};
// undefined
o49 = null;
// 4901
o49 = {};
// 4906
f449694821_387.returns.push(1373490182437);
// 4907
o49.cancelBubble = false;
// 4908
o49.returnValue = void 0;
// 4909
o50 = {};
// undefined
o50 = null;
// 4910
o50 = {};
// 4915
f449694821_387.returns.push(1373490182444);
// 4916
o50.cancelBubble = false;
// 4917
o50.returnValue = void 0;
// 4918
o51 = {};
// undefined
o51 = null;
// 4919
o51 = {};
// 4924
f449694821_387.returns.push(1373490182447);
// 4925
o51.cancelBubble = false;
// 4926
o51.returnValue = void 0;
// 4927
o52 = {};
// undefined
o52 = null;
// 4928
o52 = {};
// 4933
f449694821_387.returns.push(1373490182472);
// 4934
o52.cancelBubble = false;
// 4935
o52.returnValue = void 0;
// 4936
o53 = {};
// undefined
o53 = null;
// 4937
o53 = {};
// 4942
f449694821_387.returns.push(1373490182505);
// 4943
o53.cancelBubble = false;
// 4944
o53.returnValue = void 0;
// 4945
o54 = {};
// undefined
o54 = null;
// 4946
o54 = {};
// 4951
f449694821_387.returns.push(1373490182692);
// 4952
o54.cancelBubble = false;
// 4953
o54.returnValue = void 0;
// 4954
o55 = {};
// undefined
o55 = null;
// 4955
o55 = {};
// 4960
f449694821_387.returns.push(1373490182709);
// 4961
o55.cancelBubble = false;
// 4962
o55.returnValue = void 0;
// 4963
o56 = {};
// undefined
o56 = null;
// 4964
o56 = {};
// 4969
f449694821_387.returns.push(1373490182720);
// 4970
o56.cancelBubble = false;
// 4971
o56.returnValue = void 0;
// 4972
o57 = {};
// undefined
o57 = null;
// 4973
o57 = {};
// 4978
f449694821_387.returns.push(1373490182736);
// 4979
o57.cancelBubble = false;
// 4980
o57.returnValue = void 0;
// 4981
o58 = {};
// undefined
o58 = null;
// 4982
o58 = {};
// 4987
f449694821_387.returns.push(1373490182749);
// 4988
o58.cancelBubble = false;
// 4989
o58.returnValue = void 0;
// 4990
o59 = {};
// undefined
o59 = null;
// 4991
o59 = {};
// 4996
f449694821_387.returns.push(1373490182753);
// 4997
o59.cancelBubble = false;
// 4998
o59.returnValue = void 0;
// 4999
o60 = {};
// undefined
o60 = null;
// 5000
o60 = {};
// 5005
f449694821_387.returns.push(1373490182766);
// 5006
o60.cancelBubble = false;
// 5007
o60.returnValue = void 0;
// 5008
o61 = {};
// undefined
o61 = null;
// 5009
o61 = {};
// 5014
f449694821_387.returns.push(1373490182837);
// 5015
o61.cancelBubble = false;
// 5016
o61.returnValue = void 0;
// 5017
o62 = {};
// undefined
o62 = null;
// 5018
o62 = {};
// 5019
o63 = {};
// 5020
o62.transport = o63;
// undefined
fo449694821_803_readyState = function() { return fo449694821_803_readyState.returns[fo449694821_803_readyState.inst++]; };
fo449694821_803_readyState.returns = [];
fo449694821_803_readyState.inst = 0;
defineGetter(o63, "readyState", fo449694821_803_readyState, undefined);
// undefined
fo449694821_803_readyState.returns.push(2);
// 5022
o64 = {};
// undefined
o64 = null;
// undefined
fo449694821_803_readyState.returns.push(4);
// 5026
f449694821_914 = function() { return f449694821_914.returns[f449694821_914.inst++]; };
f449694821_914.returns = [];
f449694821_914.inst = 0;
// 5027
o63.getResponseHeader = f449694821_914;
// 5030
f449694821_914.returns.push("03r2+ESLZ7hHWaWOgh6vzkMHWrWL2bMcYoHgcrzN/RI=");
// 5033
f449694821_914.returns.push("03r2+ESLZ7hHWaWOgh6vzkMHWrWL2bMcYoHgcrzN/RI=");
// 5034
// 5036
o63.JSBNG__status = 500;
// 5041
f449694821_915 = function() { return f449694821_915.returns[f449694821_915.inst++]; };
f449694821_915.returns = [];
f449694821_915.inst = 0;
// 5042
o62._invokeErrorHandler = f449694821_915;
// 5043
o62.responseText = void 0;
// 5044
o62._requestAborted = void 0;
// 5048
f449694821_16.returns.push(18);
// 5049
f449694821_916 = function() { return f449694821_916.returns[f449694821_916.inst++]; };
f449694821_916.returns = [];
f449694821_916.inst = 0;
// 5050
o62.transportErrorHandler = f449694821_916;
// 5052
f449694821_917 = function() { return f449694821_917.returns[f449694821_917.inst++]; };
f449694821_917.returns = [];
f449694821_917.inst = 0;
// 5053
o62.getOption = f449694821_917;
// 5054
o64 = {};
// 5055
o62.option = o64;
// 5056
o64.suppressErrorAlerts = false;
// 5059
f449694821_917.returns.push(false);
// 5060
f449694821_919 = function() { return f449694821_919.returns[f449694821_919.inst++]; };
f449694821_919.returns = [];
f449694821_919.inst = 0;
// 5061
o62._dispatchErrorResponse = f449694821_919;
// 5063
f449694821_920 = function() { return f449694821_920.returns[f449694821_920.inst++]; };
f449694821_920.returns = [];
f449694821_920.inst = 0;
// 5064
o62.clearStatusIndicator = f449694821_920;
// 5065
f449694821_921 = function() { return f449694821_921.returns[f449694821_921.inst++]; };
f449694821_921.returns = [];
f449694821_921.inst = 0;
// 5066
o62.getStatusElement = f449694821_921;
// 5067
o62.statusElement = null;
// 5068
f449694821_921.returns.push(null);
// 5069
f449694821_920.returns.push(undefined);
// 5070
o62._sendTimeStamp = void 0;
// 5071
f449694821_922 = function() { return f449694821_922.returns[f449694821_922.inst++]; };
f449694821_922.returns = [];
f449694821_922.inst = 0;
// 5072
o62._isRelevant = f449694821_922;
// 5073
o62._allowCrossPageTransition = void 0;
// 5074
o62.id = 3;
// 5076
f449694821_922.returns.push(true);
// 5077
o62.initialHandler = f449694821_826;
// 5078
f449694821_826.returns.push(undefined);
// 5079
o62.timer = null;
// 5080
f449694821_18.returns.push(undefined);
// 5081
f449694821_386.returns.push(0.2663981191512802);
// 5082
f449694821_916.returns.push(undefined);
// 5083
o62.finallyHandler = f449694821_826;
// 5084
f449694821_826.returns.push(undefined);
// 5085
f449694821_919.returns.push(undefined);
// 5086
f449694821_915.returns.push(undefined);
// 5089
o64.asynchronous = true;
// 5092
f449694821_917.returns.push(true);
// 5093
// 5096
f449694821_387.returns.push(1373490183003);
// 5097
o65 = {};
// 5102
f449694821_387.returns.push(1373490183040);
// 5103
o65.cancelBubble = false;
// 5104
o65.returnValue = void 0;
// 5105
o66 = {};
// 5106
o67 = {};
// 5111
f449694821_387.returns.push(1373490183056);
// 5112
o67.cancelBubble = false;
// 5113
o67.returnValue = void 0;
// 5114
o68 = {};
// 5115
o69 = {};
// 5120
f449694821_387.returns.push(1373490183077);
// 5121
o69.cancelBubble = false;
// undefined
fo449694821_803_readyState.returns.push(4);
// 5125
f449694821_914 = function() { return f449694821_914.returns[f449694821_914.inst++]; };
f449694821_914.returns = [];
f449694821_914.inst = 0;
// 5129
f449694821_914.returns.push("03r2+ESLZ7hHWaWOgh6vzkMHWrWL2bMcYoHgcrzN/RI=");
// 5132
f449694821_914.returns.push("03r2+ESLZ7hHWaWOgh6vzkMHWrWL2bMcYoHgcrzN/RI=");
// 5133
// 5140
f449694821_915 = function() { return f449694821_915.returns[f449694821_915.inst++]; };
f449694821_915.returns = [];
f449694821_915.inst = 0;
// 5147
f449694821_16.returns.push(18);
// 5148
f449694821_916 = function() { return f449694821_916.returns[f449694821_916.inst++]; };
f449694821_916.returns = [];
f449694821_916.inst = 0;
// 5151
f449694821_917 = function() { return f449694821_917.returns[f449694821_917.inst++]; };
f449694821_917.returns = [];
f449694821_917.inst = 0;
// 5153
o64 = {};
// 5155
o64.suppressErrorAlerts = false;
// 5158
f449694821_917.returns.push(false);
// 5159
f449694821_919 = function() { return f449694821_919.returns[f449694821_919.inst++]; };
f449694821_919.returns = [];
f449694821_919.inst = 0;
// 5162
f449694821_920 = function() { return f449694821_920.returns[f449694821_920.inst++]; };
f449694821_920.returns = [];
f449694821_920.inst = 0;
// 5164
f449694821_921 = function() { return f449694821_921.returns[f449694821_921.inst++]; };
f449694821_921.returns = [];
f449694821_921.inst = 0;
// 5167
f449694821_921.returns.push(null);
// 5168
f449694821_920.returns.push(undefined);
// 5170
f449694821_922 = function() { return f449694821_922.returns[f449694821_922.inst++]; };
f449694821_922.returns = [];
f449694821_922.inst = 0;
// 5175
f449694821_922.returns.push(true);
// 5177
f449694821_826.returns.push(undefined);
// 5179
f449694821_18.returns.push(undefined);
// 5180
f449694821_386.returns.push(0.2663981191512802);
// 5181
f449694821_916.returns.push(undefined);
// 5183
f449694821_826.returns.push(undefined);
// 5184
f449694821_919.returns.push(undefined);
// 5185
f449694821_915.returns.push(undefined);
// 5188
o64.asynchronous = true;
// undefined
o64 = null;
// 5191
f449694821_917.returns.push(true);
// 5192
// 5195
f449694821_387.returns.push(1373490183003);
// 5196
o65 = {};
// 5201
f449694821_387.returns.push(1373490183040);
// 5202
o65.cancelBubble = false;
// 5203
o65.returnValue = void 0;
// 5204
o66 = {};
// undefined
o66 = null;
// 5205
o67 = {};
// 5210
f449694821_387.returns.push(1373490183056);
// 5211
o67.cancelBubble = false;
// 5212
o67.returnValue = void 0;
// 5213
o68 = {};
// undefined
o68 = null;
// 5214
o69 = {};
// 5219
f449694821_387.returns.push(1373490183077);
// 5220
o69.cancelBubble = false;
// 5222
o69.returnValue = void 0;
// 5223
o64 = {};
// undefined
o64 = null;
// 5224
o64 = {};
// 5229
f449694821_387.returns.push(1373490183089);
// 5230
o64.cancelBubble = false;
// 5231
o64.returnValue = void 0;
// 5232
o66 = {};
// undefined
o66 = null;
// 5233
o66 = {};
// 5238
f449694821_387.returns.push(1373490183091);
// 5239
o66.cancelBubble = false;
// 5240
o66.returnValue = void 0;
// 5241
o68 = {};
// undefined
o68 = null;
// 5242
o68 = {};
// 5247
f449694821_387.returns.push(1373490183119);
// 5248
o68.cancelBubble = false;
// 5249
o68.returnValue = void 0;
// 5250
o70 = {};
// undefined
o70 = null;
// 5251
o70 = {};
// 5256
f449694821_387.returns.push(1373490183138);
// 5257
o70.cancelBubble = false;
// 5258
o70.returnValue = void 0;
// 5259
o71 = {};
// undefined
o71 = null;
// 5260
o71 = {};
// 5265
f449694821_387.returns.push(1373490183380);
// 5266
o71.cancelBubble = false;
// 5267
o71.returnValue = void 0;
// 5268
o72 = {};
// undefined
o72 = null;
// 5269
o72 = {};
// 5274
f449694821_387.returns.push(1373490183389);
// 5275
o72.cancelBubble = false;
// 5276
o72.returnValue = void 0;
// 5277
o73 = {};
// undefined
o73 = null;
// 5278
o73 = {};
// 5283
f449694821_387.returns.push(1373490183398);
// 5284
o73.cancelBubble = false;
// 5285
o73.returnValue = void 0;
// 5286
o74 = {};
// undefined
o74 = null;
// 5287
o74 = {};
// 5292
f449694821_387.returns.push(1373490183419);
// 5293
o74.cancelBubble = false;
// 5294
o74.returnValue = void 0;
// 5295
o75 = {};
// undefined
o75 = null;
// 5296
o75 = {};
// 5301
f449694821_387.returns.push(1373490183439);
// 5302
o75.cancelBubble = false;
// 5303
o75.returnValue = void 0;
// 5304
o76 = {};
// undefined
o76 = null;
// 5305
o76 = {};
// 5310
f449694821_387.returns.push(1373490183446);
// 5311
o76.cancelBubble = false;
// 5312
o76.returnValue = void 0;
// 5313
o77 = {};
// undefined
o77 = null;
// 5314
o77 = {};
// 5319
f449694821_387.returns.push(1373490183453);
// 5320
o77.cancelBubble = false;
// 5321
o77.returnValue = void 0;
// 5322
o78 = {};
// undefined
o78 = null;
// 5323
o78 = {};
// 5328
f449694821_387.returns.push(1373490183497);
// 5329
o78.cancelBubble = false;
// 5330
o78.returnValue = void 0;
// 5331
o79 = {};
// undefined
o79 = null;
// 5332
o79 = {};
// 5337
f449694821_387.returns.push(1373490183705);
// 5338
o79.cancelBubble = false;
// 5339
o79.returnValue = void 0;
// 5340
o80 = {};
// undefined
o80 = null;
// 5341
o80 = {};
// 5346
f449694821_387.returns.push(1373490183717);
// 5347
o80.cancelBubble = false;
// 5348
o80.returnValue = void 0;
// 5349
o81 = {};
// undefined
o81 = null;
// 5350
o81 = {};
// 5355
f449694821_387.returns.push(1373490183729);
// 5356
o81.cancelBubble = false;
// 5357
o81.returnValue = void 0;
// 5358
o82 = {};
// 5363
f449694821_387.returns.push(1373490183738);
// 5364
o82.cancelBubble = false;
// 5365
o82.returnValue = void 0;
// 5366
o83 = {};
// undefined
o83 = null;
// 5367
o83 = {};
// 5372
f449694821_387.returns.push(1373490183739);
// 5373
o83.cancelBubble = false;
// 5374
o83.returnValue = void 0;
// 5375
o84 = {};
// undefined
o84 = null;
// 5376
o84 = {};
// 5381
f449694821_387.returns.push(1373490183756);
// 5382
o84.cancelBubble = false;
// 5383
o84.returnValue = void 0;
// 5384
o85 = {};
// undefined
o85 = null;
// 5385
o85 = {};
// 5390
f449694821_387.returns.push(1373490183778);
// 5391
o85.cancelBubble = false;
// 5392
o85.returnValue = void 0;
// 5395
f449694821_387.returns.push(1373490184012);
// 5396
o86 = {};
// undefined
o86 = null;
// 5397
o86 = {};
// 5402
f449694821_387.returns.push(1373490184025);
// 5403
o86.cancelBubble = false;
// 5404
o86.returnValue = void 0;
// 5405
o87 = {};
// undefined
o87 = null;
// 5406
o87 = {};
// 5411
f449694821_387.returns.push(1373490184044);
// 5412
o87.cancelBubble = false;
// 5413
o87.returnValue = void 0;
// 5414
o88 = {};
// undefined
o88 = null;
// 5415
o88 = {};
// 5420
f449694821_387.returns.push(1373490184055);
// 5421
o88.cancelBubble = false;
// 5422
o88.returnValue = void 0;
// 5423
o89 = {};
// undefined
o89 = null;
// 5424
o89 = {};
// 5429
f449694821_387.returns.push(1373490184064);
// 5430
o89.cancelBubble = false;
// 5431
o89.returnValue = void 0;
// 5432
o90 = {};
// undefined
o90 = null;
// 5433
o90 = {};
// 5438
f449694821_387.returns.push(1373490184082);
// 5439
o90.cancelBubble = false;
// 5440
o90.returnValue = void 0;
// 5441
o91 = {};
// undefined
o91 = null;
// 5442
o91 = {};
// 5447
f449694821_387.returns.push(1373490184095);
// 5448
o91.cancelBubble = false;
// 5449
o91.returnValue = void 0;
// 5450
o92 = {};
// undefined
o92 = null;
// 5451
o92 = {};
// 5456
f449694821_387.returns.push(1373490184142);
// 5457
o92.cancelBubble = false;
// 5458
o92.returnValue = void 0;
// 5459
o93 = {};
// 5464
f449694821_387.returns.push(1373490184338);
// 5465
o93.cancelBubble = false;
// 5466
o93.returnValue = void 0;
// 5467
o94 = {};
// undefined
o94 = null;
// 5468
o94 = {};
// 5473
f449694821_387.returns.push(1373490184426);
// 5474
o94.cancelBubble = false;
// 5475
o94.returnValue = void 0;
// 5476
o95 = {};
// undefined
o95 = null;
// 5477
o95 = {};
// 5482
f449694821_387.returns.push(1373490184442);
// 5483
o95.cancelBubble = false;
// 5484
o95.returnValue = void 0;
// 5485
o96 = {};
// undefined
o96 = null;
// 5486
o96 = {};
// 5491
f449694821_387.returns.push(1373490184457);
// 5492
o96.cancelBubble = false;
// 5493
o96.returnValue = void 0;
// 5494
o97 = {};
// undefined
o97 = null;
// 5495
o97 = {};
// 5500
f449694821_387.returns.push(1373490184484);
// 5501
o97.cancelBubble = false;
// 5502
o97.returnValue = void 0;
// 5503
o98 = {};
// 5508
f449694821_387.returns.push(1373490184506);
// 5509
o98.cancelBubble = false;
// 5510
o98.returnValue = void 0;
// 5511
o99 = {};
// undefined
o99 = null;
// 5512
o99 = {};
// 5517
f449694821_387.returns.push(1373490184507);
// 5518
o99.cancelBubble = false;
// 5519
o99.returnValue = void 0;
// 5520
o100 = {};
// 5525
f449694821_387.returns.push(1373490184576);
// 5526
o100.cancelBubble = false;
// 5527
o100.returnValue = void 0;
// 5528
o101 = {};
// 5533
f449694821_387.returns.push(1373490184617);
// 5534
o101.cancelBubble = false;
// 5535
o101.returnValue = void 0;
// 5536
o102 = {};
// 5541
f449694821_387.returns.push(1373490184636);
// 5542
o102.cancelBubble = false;
// 5543
o102.returnValue = void 0;
// 5544
o103 = {};
// 5549
f449694821_387.returns.push(1373490184675);
// 5550
o103.cancelBubble = false;
// 5551
o103.returnValue = void 0;
// 5552
o104 = {};
// 5557
f449694821_387.returns.push(1373490184680);
// 5558
o104.cancelBubble = false;
// 5559
o104.returnValue = void 0;
// 5560
o105 = {};
// 5565
f449694821_387.returns.push(1373490184693);
// 5566
o105.cancelBubble = false;
// 5567
o105.returnValue = void 0;
// 5568
o106 = {};
// 5573
f449694821_387.returns.push(1373490184704);
// 5574
o106.cancelBubble = false;
// 5575
o106.returnValue = void 0;
// 5576
o107 = {};
// 5581
f449694821_387.returns.push(1373490184710);
// 5582
o107.cancelBubble = false;
// 5583
o107.returnValue = void 0;
// 5584
o108 = {};
// 5589
f449694821_387.returns.push(1373490184722);
// 5590
o108.cancelBubble = false;
// 5591
o108.returnValue = void 0;
// 5592
o109 = {};
// 5597
f449694821_387.returns.push(1373490184730);
// 5598
o109.cancelBubble = false;
// 5599
o109.returnValue = void 0;
// 5600
o110 = {};
// 5605
f449694821_387.returns.push(1373490184740);
// 5606
o110.cancelBubble = false;
// 5607
o110.returnValue = void 0;
// 5608
o111 = {};
// 5613
f449694821_387.returns.push(1373490184748);
// 5614
o111.cancelBubble = false;
// 5615
o111.returnValue = void 0;
// 5616
o112 = {};
// 5621
f449694821_387.returns.push(1373490184758);
// 5622
o112.cancelBubble = false;
// 5623
o112.returnValue = void 0;
// 5624
o113 = {};
// 5629
f449694821_387.returns.push(1373490184769);
// 5630
o113.cancelBubble = false;
// 5631
o113.returnValue = void 0;
// 5632
o114 = {};
// 5637
f449694821_387.returns.push(1373490184777);
// 5638
o114.cancelBubble = false;
// 5639
o114.returnValue = void 0;
// 5640
o115 = {};
// 5645
f449694821_387.returns.push(1373490184788);
// 5646
o115.cancelBubble = false;
// 5647
o115.returnValue = void 0;
// 5648
o116 = {};
// 5653
f449694821_387.returns.push(1373490184789);
// 5654
o116.cancelBubble = false;
// 5655
o116.returnValue = void 0;
// 5658
f449694821_387.returns.push(1373490185022);
// 5659
o117 = {};
// 5664
f449694821_387.returns.push(1373490185517);
// 5665
o117.cancelBubble = false;
// 5666
o117.returnValue = void 0;
// 5667
o118 = {};
// 5672
f449694821_387.returns.push(1373490185518);
// 5673
o118.cancelBubble = false;
// 5674
o118.returnValue = void 0;
// 5675
o119 = {};
// 5680
f449694821_387.returns.push(1373490185533);
// 5681
o119.cancelBubble = false;
// 5682
o119.returnValue = void 0;
// 5683
o120 = {};
// 5688
f449694821_387.returns.push(1373490185540);
// 5689
o120.cancelBubble = false;
// 5690
o120.returnValue = void 0;
// 5691
o121 = {};
// 5696
f449694821_387.returns.push(1373490185547);
// 5697
o121.cancelBubble = false;
// 5698
o121.returnValue = void 0;
// 5699
o122 = {};
// 5704
f449694821_387.returns.push(1373490185558);
// 5705
o122.cancelBubble = false;
// 5706
o122.returnValue = void 0;
// 5707
o123 = {};
// 5712
f449694821_387.returns.push(1373490185577);
// 5713
o123.cancelBubble = false;
// 5714
o123.returnValue = void 0;
// 5715
o124 = {};
// 5720
f449694821_387.returns.push(1373490185645);
// 5721
o124.cancelBubble = false;
// 5722
o124.returnValue = void 0;
// 5723
o125 = {};
// 5728
f449694821_387.returns.push(1373490185648);
// 5729
o125.cancelBubble = false;
// 5730
o125.returnValue = void 0;
// 5731
o126 = {};
// 5736
f449694821_387.returns.push(1373490185651);
// 5737
o126.cancelBubble = false;
// 5738
o126.returnValue = void 0;
// 5739
o127 = {};
// 5744
f449694821_387.returns.push(1373490185653);
// 5745
o127.cancelBubble = false;
// 5746
o127.returnValue = void 0;
// 5747
o128 = {};
// 5752
f449694821_387.returns.push(1373490185654);
// 5753
o128.cancelBubble = false;
// 5754
o128.returnValue = void 0;
// 5755
o129 = {};
// 5760
f449694821_387.returns.push(1373490185656);
// 5761
o129.cancelBubble = false;
// 5762
o129.returnValue = void 0;
// 5763
o130 = {};
// 5768
f449694821_387.returns.push(1373490185658);
// 5769
o130.cancelBubble = false;
// 5770
o130.returnValue = void 0;
// 5771
o131 = {};
// 5776
f449694821_387.returns.push(1373490185666);
// 5777
o131.cancelBubble = false;
// 5778
o131.returnValue = void 0;
// 5779
o132 = {};
// 5784
f449694821_387.returns.push(1373490185692);
// 5785
o132.cancelBubble = false;
// 5786
o132.returnValue = void 0;
// 5787
o133 = {};
// 5792
f449694821_387.returns.push(1373490185694);
// 5793
o133.cancelBubble = false;
// 5794
o133.returnValue = void 0;
// 5795
o134 = {};
// 5800
f449694821_387.returns.push(1373490185705);
// 5801
o134.cancelBubble = false;
// 5802
o134.returnValue = void 0;
// 5803
o135 = {};
// 5808
f449694821_387.returns.push(1373490185719);
// 5809
o135.cancelBubble = false;
// 5810
o135.returnValue = void 0;
// 5811
o136 = {};
// 5816
f449694821_387.returns.push(1373490185727);
// 5817
o136.cancelBubble = false;
// 5818
o136.returnValue = void 0;
// 5819
o137 = {};
// 5824
f449694821_387.returns.push(1373490185735);
// 5825
o137.cancelBubble = false;
// 5826
o137.returnValue = void 0;
// 5827
o138 = {};
// 5832
f449694821_387.returns.push(1373490185743);
// 5833
o138.cancelBubble = false;
// 5834
o138.returnValue = void 0;
// 5835
o139 = {};
// 5840
f449694821_387.returns.push(1373490185750);
// 5841
o139.cancelBubble = false;
// 5842
o139.returnValue = void 0;
// 5843
o140 = {};
// 5848
f449694821_387.returns.push(1373490185759);
// 5849
o140.cancelBubble = false;
// 5850
o140.returnValue = void 0;
// 5851
o141 = {};
// 5856
f449694821_387.returns.push(1373490185768);
// 5857
o141.cancelBubble = false;
// 5858
o141.returnValue = void 0;
// 5859
o142 = {};
// 5864
f449694821_387.returns.push(1373490185782);
// 5865
o142.cancelBubble = false;
// 5866
o142.returnValue = void 0;
// 5867
o143 = {};
// 5872
f449694821_387.returns.push(1373490185787);
// 5873
o143.cancelBubble = false;
// 5874
o143.returnValue = void 0;
// 5875
o144 = {};
// 5880
f449694821_387.returns.push(1373490185797);
// 5881
o144.cancelBubble = false;
// 5882
o144.returnValue = void 0;
// 5883
o145 = {};
// 5888
f449694821_387.returns.push(1373490185809);
// 5889
o145.cancelBubble = false;
// 5890
o145.returnValue = void 0;
// 5891
o146 = {};
// 5896
f449694821_387.returns.push(1373490185818);
// 5897
o146.cancelBubble = false;
// 5898
o146.returnValue = void 0;
// 5899
o147 = {};
// 5904
f449694821_387.returns.push(1373490185830);
// 5905
o147.cancelBubble = false;
// 5906
o147.returnValue = void 0;
// 5907
o148 = {};
// 5912
f449694821_387.returns.push(1373490185838);
// 5913
o148.cancelBubble = false;
// 5914
o148.returnValue = void 0;
// 5915
o149 = {};
// 5920
f449694821_387.returns.push(1373490185851);
// 5921
o149.cancelBubble = false;
// 5922
o149.returnValue = void 0;
// 5923
o150 = {};
// 5928
f449694821_387.returns.push(1373490185865);
// 5929
o150.cancelBubble = false;
// 5930
o150.returnValue = void 0;
// 5931
o151 = {};
// 5936
f449694821_387.returns.push(1373490185877);
// 5937
o151.cancelBubble = false;
// 5938
o151.returnValue = void 0;
// 5939
o152 = {};
// 5944
f449694821_387.returns.push(1373490185892);
// 5945
o152.cancelBubble = false;
// 5946
o152.returnValue = void 0;
// 5947
o153 = {};
// 5952
f449694821_387.returns.push(1373490185903);
// 5953
o153.cancelBubble = false;
// 5954
o153.returnValue = void 0;
// 5955
o154 = {};
// 5960
f449694821_387.returns.push(1373490185927);
// 5961
o154.cancelBubble = false;
// 5962
o154.returnValue = void 0;
// 5963
o155 = {};
// 5968
f449694821_387.returns.push(1373490185939);
// 5969
o155.cancelBubble = false;
// 5970
o155.returnValue = void 0;
// 5971
o156 = {};
// 5976
f449694821_387.returns.push(1373490185957);
// 5977
o156.cancelBubble = false;
// 5978
o156.returnValue = void 0;
// 5979
o157 = {};
// 5984
f449694821_387.returns.push(1373490185969);
// 5985
o157.cancelBubble = false;
// 5986
o157.returnValue = void 0;
// 5987
o158 = {};
// 5992
f449694821_387.returns.push(1373490185989);
// 5993
o158.cancelBubble = false;
// 5994
o158.returnValue = void 0;
// 5995
o159 = {};
// 6000
f449694821_387.returns.push(1373490186001);
// 6001
o159.cancelBubble = false;
// 6002
o159.returnValue = void 0;
// 6003
o160 = {};
// 6008
f449694821_387.returns.push(1373490186014);
// 6009
o160.cancelBubble = false;
// 6010
o160.returnValue = void 0;
// 6011
o161 = {};
// 6016
f449694821_387.returns.push(1373490186024);
// 6017
o161.cancelBubble = false;
// 6018
o161.returnValue = void 0;
// 6021
f449694821_387.returns.push(1373490186037);
// 6022
o162 = {};
// 6027
f449694821_387.returns.push(1373490186038);
// 6028
o162.cancelBubble = false;
// 6029
o162.returnValue = void 0;
// 6030
o163 = {};
// 6035
f449694821_387.returns.push(1373490186050);
// 6036
o163.cancelBubble = false;
// 6037
o163.returnValue = void 0;
// 6038
o164 = {};
// 6043
f449694821_387.returns.push(1373490186060);
// 6044
o164.cancelBubble = false;
// 6045
o164.returnValue = void 0;
// 6046
o165 = {};
// 6051
f449694821_387.returns.push(1373490186081);
// 6052
o165.cancelBubble = false;
// 6053
o165.returnValue = void 0;
// 6054
o166 = {};
// 6059
f449694821_387.returns.push(1373490186092);
// 6060
o166.cancelBubble = false;
// 6061
o166.returnValue = void 0;
// 6062
o167 = {};
// 6067
f449694821_387.returns.push(1373490186094);
// 6068
o167.cancelBubble = false;
// 6069
o167.returnValue = void 0;
// 6070
o168 = {};
// 6075
f449694821_387.returns.push(1373490186107);
// 6076
o168.cancelBubble = false;
// 6077
o168.returnValue = void 0;
// 6078
o169 = {};
// 6083
f449694821_387.returns.push(1373490186113);
// 6084
o169.cancelBubble = false;
// 6085
o169.returnValue = void 0;
// 6086
o170 = {};
// 6091
f449694821_387.returns.push(1373490186121);
// 6092
o170.cancelBubble = false;
// 6093
o170.returnValue = void 0;
// 6094
o171 = {};
// 6099
f449694821_387.returns.push(1373490186132);
// 6100
o171.cancelBubble = false;
// 6101
o171.returnValue = void 0;
// 6102
o172 = {};
// 6107
f449694821_387.returns.push(1373490186142);
// 6108
o172.cancelBubble = false;
// 6109
o172.returnValue = void 0;
// 6110
o173 = {};
// 6115
f449694821_387.returns.push(1373490186150);
// 6116
o173.cancelBubble = false;
// 6117
o173.returnValue = void 0;
// 6118
o174 = {};
// 6123
f449694821_387.returns.push(1373490186160);
// 6124
o174.cancelBubble = false;
// 6125
o174.returnValue = void 0;
// 6126
o175 = {};
// 6131
f449694821_387.returns.push(1373490186171);
// 6132
o175.cancelBubble = false;
// 6133
o175.returnValue = void 0;
// 6134
o176 = {};
// 6139
f449694821_387.returns.push(1373490186181);
// 6140
o176.cancelBubble = false;
// 6141
o176.returnValue = void 0;
// 6142
o177 = {};
// 6147
f449694821_387.returns.push(1373490186195);
// 6148
o177.cancelBubble = false;
// 6149
o177.returnValue = void 0;
// 6150
o178 = {};
// 6155
f449694821_387.returns.push(1373490186213);
// 6156
o178.cancelBubble = false;
// 6157
o178.returnValue = void 0;
// 6158
o179 = {};
// 6163
f449694821_387.returns.push(1373490186213);
// 6164
o179.cancelBubble = false;
// 6165
o179.returnValue = void 0;
// 6166
o180 = {};
// 6171
f449694821_387.returns.push(1373490186222);
// 6172
o180.cancelBubble = false;
// 6173
o180.returnValue = void 0;
// 6174
o181 = {};
// 6179
f449694821_387.returns.push(1373490186230);
// 6180
o181.cancelBubble = false;
// 6181
o181.returnValue = void 0;
// 6182
o182 = {};
// 6187
f449694821_387.returns.push(1373490186239);
// 6188
o182.cancelBubble = false;
// 6189
o182.returnValue = void 0;
// 6190
o183 = {};
// 6195
f449694821_387.returns.push(1373490186251);
// 6196
o183.cancelBubble = false;
// 6197
o183.returnValue = void 0;
// 6198
o184 = {};
// 6203
f449694821_387.returns.push(1373490186257);
// 6204
o184.cancelBubble = false;
// 6205
o184.returnValue = void 0;
// 6206
o185 = {};
// 6211
f449694821_387.returns.push(1373490186267);
// 6212
o185.cancelBubble = false;
// 6213
o185.returnValue = void 0;
// 6214
o186 = {};
// 6219
f449694821_387.returns.push(1373490186275);
// 6220
o186.cancelBubble = false;
// 6221
o186.returnValue = void 0;
// 6222
o187 = {};
// 6227
f449694821_387.returns.push(1373490186276);
// 6228
o187.cancelBubble = false;
// 6229
o187.returnValue = void 0;
// 6230
o188 = {};
// 6235
f449694821_387.returns.push(1373490186286);
// 6236
o188.cancelBubble = false;
// 6237
o188.returnValue = void 0;
// 6238
o189 = {};
// 6243
f449694821_387.returns.push(1373490186295);
// 6244
o189.cancelBubble = false;
// 6245
o189.returnValue = void 0;
// 6246
o190 = {};
// 6251
f449694821_387.returns.push(1373490186303);
// 6252
o190.cancelBubble = false;
// 6253
o190.returnValue = void 0;
// 6254
o191 = {};
// 6259
f449694821_387.returns.push(1373490186313);
// 6260
o191.cancelBubble = false;
// 6261
o191.returnValue = void 0;
// 6262
o192 = {};
// 6267
f449694821_387.returns.push(1373490186326);
// 6268
o192.cancelBubble = false;
// 6269
o192.returnValue = void 0;
// 6270
o193 = {};
// 6275
f449694821_387.returns.push(1373490186332);
// 6276
o193.cancelBubble = false;
// 6277
o193.returnValue = void 0;
// 6278
o194 = {};
// 6283
f449694821_387.returns.push(1373490186339);
// 6284
o194.cancelBubble = false;
// 6285
o194.returnValue = void 0;
// 6286
o195 = {};
// 6291
f449694821_387.returns.push(1373490186348);
// 6292
o195.cancelBubble = false;
// 6293
o195.returnValue = void 0;
// 6296
f449694821_387.returns.push(1373490187039);
// 6299
f449694821_387.returns.push(1373490188040);
// 6302
f449694821_387.returns.push(1373490189038);
// 6305
f449694821_387.returns.push(1373490190038);
// 6308
f449694821_387.returns.push(1373490191039);
// 6311
f449694821_387.returns.push(1373490192038);
// 6314
f449694821_387.returns.push(1373490193039);
// 6316
f449694821_387.returns.push(1373490193050);
// 6319
f449694821_387.returns.push(1373490194081);
// 6322
f449694821_387.returns.push(1373490195042);
// 6325
f449694821_387.returns.push(1373490196041);
// 6328
f449694821_387.returns.push(1373490197042);
// 6331
f449694821_387.returns.push(1373490198040);
// 6334
f449694821_387.returns.push(1373490199038);
// 6335
o196 = {};
// 6340
f449694821_387.returns.push(1373490199404);
// 6341
o196.cancelBubble = false;
// 6342
o196.returnValue = void 0;
// 6343
o197 = {};
// 6348
f449694821_387.returns.push(1373490199406);
// 6349
o197.cancelBubble = false;
// 6350
o197.returnValue = void 0;
// 6351
o198 = {};
// 6356
f449694821_387.returns.push(1373490199421);
// 6357
o198.cancelBubble = false;
// 6358
o198.returnValue = void 0;
// 6359
o199 = {};
// 6364
f449694821_387.returns.push(1373490199422);
// 6365
o199.cancelBubble = false;
// 6366
o199.returnValue = void 0;
// 6367
o200 = {};
// 6372
f449694821_387.returns.push(1373490199440);
// 6373
o200.cancelBubble = false;
// 6374
o200.returnValue = void 0;
// 6375
o201 = {};
// 6380
f449694821_387.returns.push(1373490199442);
// 6381
o201.cancelBubble = false;
// 6382
o201.returnValue = void 0;
// 6383
o202 = {};
// 6388
f449694821_387.returns.push(1373490199464);
// 6389
o202.cancelBubble = false;
// 6390
o202.returnValue = void 0;
// 6391
o203 = {};
// 6396
f449694821_387.returns.push(1373490199470);
// 6397
o203.cancelBubble = false;
// 6398
o203.returnValue = void 0;
// 6399
o204 = {};
// 6404
f449694821_387.returns.push(1373490199473);
// 6405
o204.cancelBubble = false;
// 6406
o204.returnValue = void 0;
// 6407
o205 = {};
// 6412
f449694821_387.returns.push(1373490199477);
// 6413
o205.cancelBubble = false;
// 6414
o205.returnValue = void 0;
// 6415
o206 = {};
// 6420
f449694821_387.returns.push(1373490199522);
// 6421
o206.cancelBubble = false;
// 6422
o206.returnValue = void 0;
// 6423
o207 = {};
// 6428
f449694821_387.returns.push(1373490199523);
// 6429
o207.cancelBubble = false;
// 6430
o207.returnValue = void 0;
// 6431
o208 = {};
// 6436
f449694821_387.returns.push(1373490199533);
// 6437
o208.cancelBubble = false;
// 6438
o208.returnValue = void 0;
// 6439
o209 = {};
// 6444
f449694821_387.returns.push(1373490199534);
// 6445
o209.cancelBubble = false;
// 6446
o209.returnValue = void 0;
// 6447
o210 = {};
// 6452
f449694821_387.returns.push(1373490199556);
// 6453
o210.cancelBubble = false;
// 6454
o210.returnValue = void 0;
// 6455
o211 = {};
// 6460
f449694821_387.returns.push(1373490199557);
// 6461
o211.cancelBubble = false;
// 6462
o211.returnValue = void 0;
// 6463
o212 = {};
// 6468
f449694821_387.returns.push(1373490199566);
// 6469
o212.cancelBubble = false;
// 6470
o212.returnValue = void 0;
// 6471
o213 = {};
// 6476
f449694821_387.returns.push(1373490199567);
// 6477
o213.cancelBubble = false;
// 6478
o213.returnValue = void 0;
// 6481
f449694821_387.returns.push(1373490200081);
// 6484
f449694821_387.returns.push(1373490201082);
// 6487
f449694821_387.returns.push(1373490202081);
// 6488
o214 = {};
// 6493
f449694821_387.returns.push(1373490202289);
// 6494
o214.cancelBubble = false;
// 6495
o214.returnValue = void 0;
// 6498
f449694821_387.returns.push(1373490203083);
// 6501
f449694821_387.returns.push(1373490204083);
// 6502
o215 = {};
// 6508
// 6511
f449694821_387.returns.push(1373490205127);
// 6512
o216 = {};
// 6517
f449694821_387.returns.push(1373490205307);
// 6518
o216.cancelBubble = false;
// 6519
o216.returnValue = void 0;
// 6520
o217 = {};
// 6525
f449694821_387.returns.push(1373490205330);
// 6526
o217.cancelBubble = false;
// 6527
o217.returnValue = void 0;
// 6528
o218 = {};
// 6533
f449694821_387.returns.push(1373490205332);
// 6534
o218.cancelBubble = false;
// 6535
o218.returnValue = void 0;
// 6536
o219 = {};
// 6541
f449694821_387.returns.push(1373490205381);
// 6542
o219.cancelBubble = false;
// 6543
o219.returnValue = void 0;
// 6544
o220 = {};
// 6549
f449694821_387.returns.push(1373490205382);
// 6550
o220.cancelBubble = false;
// 6551
o220.returnValue = void 0;
// 6552
o221 = {};
// 6557
f449694821_387.returns.push(1373490205398);
// 6558
o221.cancelBubble = false;
// 6559
o221.returnValue = void 0;
// 6560
o222 = {};
// 6565
f449694821_387.returns.push(1373490205411);
// 6566
o222.cancelBubble = false;
// 6567
o222.returnValue = void 0;
// 6568
o223 = {};
// 6573
f449694821_387.returns.push(1373490205412);
// 6574
o223.cancelBubble = false;
// 6575
o223.returnValue = void 0;
// 6576
o224 = {};
// 6581
f449694821_387.returns.push(1373490205416);
// 6582
o224.cancelBubble = false;
// 6583
o224.returnValue = void 0;
// 6584
o225 = {};
// 6589
f449694821_387.returns.push(1373490205416);
// 6590
o225.cancelBubble = false;
// 6591
o225.returnValue = void 0;
// 6592
o226 = {};
// 6597
f449694821_387.returns.push(1373490205426);
// 6598
o226.cancelBubble = false;
// 6599
o226.returnValue = void 0;
// 6600
o227 = {};
// 6605
f449694821_387.returns.push(1373490205435);
// 6606
o227.cancelBubble = false;
// 6607
o227.returnValue = void 0;
// 6608
o228 = {};
// 6613
f449694821_387.returns.push(1373490205448);
// 6614
o228.cancelBubble = false;
// 6615
o228.returnValue = void 0;
// 6616
o229 = {};
// 6621
f449694821_387.returns.push(1373490205452);
// 6622
o229.cancelBubble = false;
// 6623
o229.returnValue = void 0;
// 6624
o230 = {};
// 6629
f449694821_387.returns.push(1373490205461);
// 6630
o230.cancelBubble = false;
// 6631
o230.returnValue = void 0;
// 6632
o231 = {};
// 6637
f449694821_387.returns.push(1373490205475);
// 6638
o231.cancelBubble = false;
// 6639
o231.returnValue = void 0;
// 6640
o232 = {};
// 6645
f449694821_387.returns.push(1373490205498);
// 6646
o232.cancelBubble = false;
// 6647
o232.returnValue = void 0;
// 6648
o233 = {};
// 6653
f449694821_387.returns.push(1373490205520);
// 6654
o233.cancelBubble = false;
// 6655
o233.returnValue = void 0;
// 6656
o234 = {};
// 6661
f449694821_387.returns.push(1373490205521);
// 6662
o234.cancelBubble = false;
// 6663
o234.returnValue = void 0;
// 6664
o235 = {};
// 6669
f449694821_387.returns.push(1373490205579);
// 6670
o235.cancelBubble = false;
// 6671
o235.returnValue = void 0;
// 6672
o236 = {};
// 6677
f449694821_387.returns.push(1373490205581);
// 6678
o236.cancelBubble = false;
// 6679
o236.returnValue = void 0;
// 6680
o237 = {};
// 6685
f449694821_387.returns.push(1373490205799);
// 6686
o237.cancelBubble = false;
// 6687
o237.returnValue = void 0;
// 6688
o238 = {};
// 6693
f449694821_387.returns.push(1373490205805);
// 6694
o238.cancelBubble = false;
// 6695
o238.returnValue = void 0;
// 6696
o239 = {};
// 6701
f449694821_387.returns.push(1373490205817);
// 6702
o239.cancelBubble = false;
// 6703
o239.returnValue = void 0;
// 6704
o240 = {};
// 6709
f449694821_387.returns.push(1373490205826);
// 6710
o240.cancelBubble = false;
// 6711
o240.returnValue = void 0;
// 6712
o241 = {};
// 6717
f449694821_387.returns.push(1373490205842);
// 6718
o241.cancelBubble = false;
// 6719
o241.returnValue = void 0;
// 6720
o242 = {};
// 6725
f449694821_387.returns.push(1373490205849);
// 6726
o242.cancelBubble = false;
// 6727
o242.returnValue = void 0;
// 6728
o243 = {};
// 6733
f449694821_387.returns.push(1373490205966);
// 6734
o243.cancelBubble = false;
// 6735
o243.returnValue = void 0;
// 6736
o244 = {};
// 6741
f449694821_387.returns.push(1373490205967);
// 6742
o244.cancelBubble = false;
// 6743
o244.returnValue = void 0;
// 6744
o245 = {};
// 6749
f449694821_387.returns.push(1373490205982);
// 6750
o245.cancelBubble = false;
// 6751
o245.returnValue = void 0;
// 6752
o246 = {};
// 6757
f449694821_387.returns.push(1373490205984);
// 6758
o246.cancelBubble = false;
// 6759
o246.returnValue = void 0;
// 6760
o247 = {};
// 6765
f449694821_387.returns.push(1373490206000);
// 6766
o247.cancelBubble = false;
// 6767
o247.returnValue = void 0;
// 6768
o248 = {};
// 6773
f449694821_387.returns.push(1373490206000);
// 6774
o248.cancelBubble = false;
// 6775
o248.returnValue = void 0;
// 6778
f449694821_387.returns.push(1373490206092);
// 6779
o249 = {};
// 6784
f449694821_387.returns.push(1373490206319);
// 6785
o249.cancelBubble = false;
// 6786
o249.returnValue = void 0;
// 6787
o250 = {};
// 6792
f449694821_387.returns.push(1373490206320);
// 6793
o250.cancelBubble = false;
// 6794
o250.returnValue = void 0;
// 6795
o251 = {};
// 6800
f449694821_387.returns.push(1373490206327);
// 6801
o251.cancelBubble = false;
// 6802
o251.returnValue = void 0;
// 6803
o252 = {};
// 6808
f449694821_387.returns.push(1373490206337);
// 6809
o252.cancelBubble = false;
// 6810
o252.returnValue = void 0;
// 6811
o253 = {};
// 6816
f449694821_387.returns.push(1373490206352);
// 6817
o253.cancelBubble = false;
// 6818
o253.returnValue = void 0;
// 6819
o254 = {};
// 6820
f449694821_387.returns.push(1373490205842);
// 6823
o242 = {};
// 6828
f449694821_387.returns.push(1373490205849);
// 6829
o242.cancelBubble = false;
// 6830
o242.returnValue = void 0;
// 6831
o243 = {};
// 6836
f449694821_387.returns.push(1373490205966);
// 6837
o243.cancelBubble = false;
// 6838
o243.returnValue = void 0;
// 6839
o244 = {};
// 6844
f449694821_387.returns.push(1373490205967);
// 6845
o244.cancelBubble = false;
// 6846
o244.returnValue = void 0;
// 6847
o245 = {};
// 6852
f449694821_387.returns.push(1373490205982);
// 6853
o245.cancelBubble = false;
// 6854
o245.returnValue = void 0;
// 6855
o246 = {};
// 6860
f449694821_387.returns.push(1373490205984);
// 6861
o246.cancelBubble = false;
// 6862
o246.returnValue = void 0;
// 6863
o247 = {};
// 6868
f449694821_387.returns.push(1373490206000);
// 6869
o247.cancelBubble = false;
// 6870
o247.returnValue = void 0;
// 6871
o248 = {};
// 6876
f449694821_387.returns.push(1373490206000);
// 6877
o248.cancelBubble = false;
// 6878
o248.returnValue = void 0;
// 6881
f449694821_387.returns.push(1373490206092);
// 6882
o249 = {};
// 6887
f449694821_387.returns.push(1373490206319);
// 6888
o249.cancelBubble = false;
// 6889
o249.returnValue = void 0;
// 6890
o250 = {};
// 6895
f449694821_387.returns.push(1373490206320);
// 6896
o250.cancelBubble = false;
// 6897
o250.returnValue = void 0;
// 6898
o251 = {};
// 6903
f449694821_387.returns.push(1373490206327);
// 6904
o251.cancelBubble = false;
// 6905
o251.returnValue = void 0;
// 6906
o252 = {};
// 6911
f449694821_387.returns.push(1373490206337);
// 6912
o252.cancelBubble = false;
// 6913
o252.returnValue = void 0;
// 6914
o253 = {};
// 6919
f449694821_387.returns.push(1373490206352);
// 6920
o253.cancelBubble = false;
// 6921
o253.returnValue = void 0;
// 6922
o254 = {};
// undefined
o254 = null;
// 6923
// 0
JSBNG_Replay$ = function(real, cb) { if (!real) return;
// 810
geval("function envFlush(a) {\n function b(c) {\n {\n var fin0keys = ((window.top.JSBNG_Replay.forInKeys)((a))), fin0i = (0);\n var d;\n for (; (fin0i < fin0keys.length); (fin0i++)) {\n ((d) = (fin0keys[fin0i]));\n {\n c[d] = a[d];\n ;\n };\n };\n };\n ;\n };\n;\n if (window.requireLazy) {\n requireLazy([\"Env\",], b);\n }\n else {\n Env = ((window.Env || {\n }));\n b(Env);\n }\n;\n;\n};\n;\nenvFlush({\n user: \"100006118350059\",\n locale: \"en_US\",\n method: \"GET\",\n svn_rev: 871405,\n tier: \"\",\n push_phase: \"V3\",\n pkg_cohort: \"EXP1:DEFAULT\",\n vip: \"173.252.112.23\",\n www_base: \"http://jsbngssl.www.facebook.com/\",\n fb_dtsg: \"AQCttlPQ\",\n ajaxpipe_token: \"AXg1MJsj67jxFeGx\",\n lhsh: \"5AQFHNAuS\",\n tracking_domain: \"http://jsbngssl.pixel.facebook.com\",\n retry_ajax_on_network_error: \"1\",\n fbid_emoticons: \"1\"\n});");
// 811
geval("envFlush({\n eagleEyeConfig: {\n seed: \"0gpU\"\n }\n});\nCavalryLogger = false;");
// 812
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"FHcQn\",]);\n}\n;\n;\nJSBNG__self.__DEV__ = ((JSBNG__self.__DEV__ || 0));\nif (((JSON.stringify([\"\\u2028\\u2029\",]) === \"[\\\"\\u2028\\u2029\\\"]\"))) {\n JSON.stringify = function(a) {\n var b = /\\u2028/g, c = /\\u2029/g;\n return ((window.top.JSBNG_Replay.push)((window.top.JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1), function(d, e, f) {\n var g = a.call(this, d, e, f);\n if (g) {\n if (((-1 < g.indexOf(\"\\u2028\")))) {\n g = g.replace(b, \"\\\\u2028\");\n }\n ;\n ;\n if (((-1 < g.indexOf(\"\\u2029\")))) {\n g = g.replace(c, \"\\\\u2029\");\n }\n ;\n ;\n }\n ;\n ;\n return g;\n }));\n }(JSON.stringify);\n}\n;\n;\nvar __t = function(a) {\n return a[0];\n}, __w = function(a) {\n return a;\n};\n(function(a) {\n if (a.require) {\n return;\n }\n;\n;\n var b = Object.prototype.toString, c = {\n }, d = {\n }, e = {\n }, f = 0, g = 1, h = 2, i = Object.prototype.hasOwnProperty;\n function j(s) {\n if (((a.ErrorUtils && !a.ErrorUtils.inGuard()))) {\n return ErrorUtils.applyWithGuard(j, this, arguments);\n }\n ;\n ;\n var t = c[s], u, v, w;\n if (!c[s]) {\n w = ((((\"Requiring unknown module \\\"\" + s)) + \"\\\"\"));\n throw new Error(w);\n }\n ;\n ;\n if (t.hasError) {\n throw new Error(((((\"Requiring module \\\"\" + s)) + \"\\\" which threw an exception\")));\n }\n ;\n ;\n if (t.waiting) {\n w = ((((\"Requiring module \\\"\" + s)) + \"\\\" with unresolved dependencies\"));\n throw new Error(w);\n }\n ;\n ;\n if (!t.exports) {\n var x = t.exports = {\n }, y = t.factory;\n if (((b.call(y) === \"[object Function]\"))) {\n var z = [], aa = t.dependencies, ba = aa.length, ca;\n if (((t.special & h))) {\n ba = Math.min(ba, y.length);\n }\n ;\n ;\n try {\n for (v = 0; ((v < ba)); v++) {\n u = aa[v];\n z.push(((((u === \"module\")) ? t : ((((u === \"exports\")) ? x : j(u))))));\n };\n ;\n ca = y.apply(((t.context || a)), z);\n } catch (da) {\n t.hasError = true;\n throw da;\n };\n ;\n if (ca) {\n t.exports = ca;\n }\n ;\n ;\n }\n else t.exports = y;\n ;\n ;\n }\n ;\n ;\n if (((t.refcount-- === 1))) {\n delete c[s];\n }\n ;\n ;\n return t.exports;\n };\n;\n function k(s, t, u, v, w, x) {\n if (((t === undefined))) {\n t = [];\n u = s;\n s = n();\n }\n else if (((u === undefined))) {\n u = t;\n if (((b.call(s) === \"[object Array]\"))) {\n t = s;\n s = n();\n }\n else t = [];\n ;\n ;\n }\n \n ;\n ;\n var y = {\n cancel: l.bind(this, s)\n }, z = c[s];\n if (z) {\n if (x) {\n z.refcount += x;\n }\n ;\n ;\n return y;\n }\n else if (((((!t && !u)) && x))) {\n e[s] = ((((e[s] || 0)) + x));\n return y;\n }\n else {\n z = {\n id: s\n };\n z.refcount = ((((e[s] || 0)) + ((x || 0))));\n delete e[s];\n }\n \n ;\n ;\n z.factory = u;\n z.dependencies = t;\n
// 850
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"(window.Bootloader && Bootloader.done([\"FHcQn\",]));");
// 851
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s1ec9de22962c463704debb06fba6d985fa278804");
// 852
geval("((window.Bootloader && Bootloader.done([\"FHcQn\",])));");
// 853
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"Bootloader.loadEarlyResources({\n OJTM4: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yd/r/-z4vUS8jrpA.js\"\n },\n AyUu6: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/pmYy9aLa5q_.js\"\n }\n});");
// 854
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s43794b4efa32e54c72f64603cd840e51369fb0ed");
// 855
geval("Bootloader.loadEarlyResources({\n OJTM4: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yd/r/-z4vUS8jrpA.js\"\n },\n AyUu6: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/pmYy9aLa5q_.js\"\n }\n});");
// 899
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 900
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sda39a3ee5e6b4b0d3255bfef95601890afd80709");
// 901
geval("");
// 902
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"new (require(\"ServerJS\"))().handle({\n require: [[\"removeArrayReduce\",],[\"markJSEnabled\",],[\"lowerDomain\",],[\"URLFragmentPrelude\",],],\n define: [[\"BanzaiConfig\",[],{\n MAX_WAIT: 150000,\n MAX_SIZE: 10000,\n COMPRESSION_THRESHOLD: 800,\n gks: {\n jslogger: true,\n miny_compression: true,\n boosted_posts: true,\n time_spent: true,\n time_spent_bit_array: true,\n time_spent_debug: true,\n useraction: true,\n videos: true\n }\n },7,],[\"URLFragmentPreludeConfig\",[],{\n hashtagRedirect: true,\n incorporateQuicklingFragment: true\n },137,],]\n});");
// 940
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"(window.Bootloader && Bootloader.done([\"FHcQn\",]));");
// 941
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s1ec9de22962c463704debb06fba6d985fa278804");
// 942
geval("((window.Bootloader && Bootloader.done([\"FHcQn\",])));");
// 943
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"Bootloader.loadEarlyResources({\n OJTM4: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yd/r/-z4vUS8jrpA.js\"\n },\n AyUu6: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/pmYy9aLa5q_.js\"\n }\n});");
// 944
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s43794b4efa32e54c72f64603cd840e51369fb0ed");
// 945
geval("Bootloader.loadEarlyResources({\n OJTM4: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yd/r/-z4vUS8jrpA.js\"\n },\n AyUu6: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/pmYy9aLa5q_.js\"\n }\n});");
// 989
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 990
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sda39a3ee5e6b4b0d3255bfef95601890afd80709");
// 991
geval("");
// 992
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"new (require(\"ServerJS\"))().handle({\n require: [[\"removeArrayReduce\",],[\"markJSEnabled\",],[\"lowerDomain\",],[\"URLFragmentPrelude\",],],\n define: [[\"BanzaiConfig\",[],{\n MAX_WAIT: 150000,\n MAX_SIZE: 10000,\n COMPRESSION_THRESHOLD: 800,\n gks: {\n jslogger: true,\n miny_compression: true,\n boosted_posts: true,\n time_spent: true,\n time_spent_bit_array: true,\n time_spent_debug: true,\n useraction: true,\n videos: true\n }\n },7,],[\"URLFragmentPreludeConfig\",[],{\n hashtagRedirect: true,\n incorporateQuicklingFragment: true\n },137,],]\n});");
// 993
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"AyUu6\",]);\n}\n;\n;\n__d(\"XdArbiterBuffer\", [], function(a, b, c, d, e, f) {\n if (!a.XdArbiter) {\n a.XdArbiter = {\n _m: [],\n _p: [],\n register: function(g, h, i) {\n h = ((h || (((/^apps\\./).test(JSBNG__location.hostname) ? \"canvas\" : \"tab\"))));\n this._p.push([g,h,i,]);\n return h;\n },\n handleMessage: function(g, h) {\n this._m.push([g,h,]);\n }\n };\n }\n;\n;\n});\n__d(\"CanvasIFrameLoader\", [\"XdArbiterBuffer\",\"$\",], function(a, b, c, d, e, f) {\n b(\"XdArbiterBuffer\");\n var g = b(\"$\"), h = {\n loadFromForm: function(i) {\n i.submit();\n }\n };\n e.exports = h;\n});\n__d(\"PHPQuerySerializer\", [], function(a, b, c, d, e, f) {\n function g(n) {\n return h(n, null);\n };\n;\n function h(n, o) {\n o = ((o || \"\"));\n var p = [];\n if (((((n === null)) || ((n === undefined))))) {\n p.push(i(o));\n }\n else if (((typeof (n) == \"object\"))) {\n {\n var fin27keys = ((window.top.JSBNG_Replay.forInKeys)((n))), fin27i = (0);\n var q;\n for (; (fin27i < fin27keys.length); (fin27i++)) {\n ((q) = (fin27keys[fin27i]));\n {\n if (((n.hasOwnProperty(q) && ((n[q] !== undefined))))) {\n p.push(h(n[q], ((o ? ((((((o + \"[\")) + q)) + \"]\")) : q))));\n }\n ;\n ;\n };\n };\n };\n ;\n }\n else p.push(((((i(o) + \"=\")) + i(n))));\n \n ;\n ;\n return p.join(\"&\");\n };\n;\n function i(n) {\n return encodeURIComponent(n).replace(/%5D/g, \"]\").replace(/%5B/g, \"[\");\n };\n;\n var j = /^(\\w+)((?:\\[\\w*\\])+)=?(.*)/;\n function k(n) {\n if (!n) {\n return {\n };\n }\n ;\n ;\n var o = {\n };\n n = n.replace(/%5B/gi, \"[\").replace(/%5D/gi, \"]\");\n n = n.split(\"&\");\n var p = Object.prototype.hasOwnProperty;\n for (var q = 0, r = n.length; ((q < r)); q++) {\n var s = n[q].match(j);\n if (!s) {\n var t = n[q].split(\"=\");\n o[l(t[0])] = ((((t[1] === undefined)) ? null : l(t[1])));\n }\n else {\n var u = s[2].split(/\\]\\[|\\[|\\]/).slice(0, -1), v = s[1], w = l(((s[3] || \"\")));\n u[0] = v;\n var x = o;\n for (var y = 0; ((y < ((u.length - 1)))); y++) {\n if (u[y]) {\n if (!p.call(x, u[y])) {\n var z = ((((u[((y + 1))] && !u[((y + 1))].match(/^\\d{1,3}$/))) ? {\n } : []));\n x[u[y]] = z;\n if (((x[u[y]] !== z))) {\n return o;\n }\n ;\n ;\n }\n ;\n ;\n x = x[u[y]];\n }\n else {\n if (((u[((y + 1))] && !u[((y + 1))].match(/^\\d{1,3}$/)))) {\n x.push({\n });\n }\n else x.push([]);\n ;\n ;\n x = x[((x.length - 1))];\n }\n ;\n ;\n };\n ;\n if (((((x instanceof Array)) && ((u[((u.length - 1))] === \"\"))))) {\n x.push(w);\n }\n else x[u[((u.length - 1))]] = w;\n ;\n ;\n
// 994
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"new (require(\"ServerJS\"))().handle({\n require: [[\"removeArrayReduce\",],[\"markJSEnabled\",],[\"lowerDomain\",],[\"URLFragmentPrelude\",],],\n define: [[\"BanzaiConfig\",[],{\n MAX_WAIT: 150000,\n MAX_SIZE: 10000,\n COMPRESSION_THRESHOLD: 800,\n gks: {\n jslogger: true,\n miny_compression: true,\n boosted_posts: true,\n time_spent: true,\n time_spent_bit_array: true,\n time_spent_debug: true,\n useraction: true,\n videos: true\n }\n },7,],[\"URLFragmentPreludeConfig\",[],{\n hashtagRedirect: true,\n incorporateQuicklingFragment: true\n },137,],]\n});");
// 995
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sbc7df7f6bb75d7e29414a7bf76d7afea4393a8e7");
// 996
geval("new (require(\"ServerJS\"))().handle({\n require: [[\"removeArrayReduce\",],[\"markJSEnabled\",],[\"lowerDomain\",],[\"URLFragmentPrelude\",],],\n define: [[\"BanzaiConfig\",[],{\n MAX_WAIT: 150000,\n MAX_SIZE: 10000,\n COMPRESSION_THRESHOLD: 800,\n gks: {\n jslogger: true,\n miny_compression: true,\n boosted_posts: true,\n time_spent: true,\n time_spent_bit_array: true,\n time_spent_debug: true,\n useraction: true,\n videos: true\n }\n },7,],[\"URLFragmentPreludeConfig\",[],{\n hashtagRedirect: true,\n incorporateQuicklingFragment: true\n },137,],]\n});");
// 1023
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function e7838c840e018d6d5d0870c8a3c3cef5ceacd537d(event) {\n (window.Toggler && Toggler.hide());\n};");
// 1024
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s1bc020b23c1b7acf1a158f38463f085640438838");
// 1025
geval("function e7838c840e018d6d5d0870c8a3c3cef5ceacd537d(JSBNG__event) {\n ((window.Toggler && Toggler.hide()));\n};\n;");
// 1026
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function ec0804b7f3ae255200c43d00c014bb94f344d06fe(event) {\n return run_with(this, [\"min-notifications-jewel\",], function() {\n MinNotifications.bootstrap(this);\n });\n};");
// 1027
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s1809336c878b583a8c25754764340693ab124489");
// 1028
geval("function ec0804b7f3ae255200c43d00c014bb94f344d06fe(JSBNG__event) {\n return run_with(this, [\"min-notifications-jewel\",], function() {\n MinNotifications.bootstrap(this);\n });\n};\n;");
// 1029
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function e6560603264ef5f7501e684e8b01c646c45b86b81(event) {\n return ((window.Event && Event.__inlineSubmit) && Event.__inlineSubmit(this, event));\n};");
// 1030
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s988454fbbebb4f5c39047686ab0f805cb3d35ac8");
// 1031
geval("function e6560603264ef5f7501e684e8b01c646c45b86b81(JSBNG__event) {\n return ((((window.JSBNG__Event && JSBNG__Event.__inlineSubmit)) && JSBNG__Event.__inlineSubmit(this, JSBNG__event)));\n};\n;");
// 1032
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function ee033beee9f71f1d153c463cc75dee372f3a3da79(event) {\n var q = $(\"q\");\n if ((q.value == q.getAttribute(\"placeholder\"))) {\n q.focus();\n return false;\n }\n;\n};");
// 1033
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s239bb89ed65f190b08d1208ef21dad35f6f20ab6");
// 1034
geval("function ee033beee9f71f1d153c463cc75dee372f3a3da79(JSBNG__event) {\n var q = $(\"q\");\n if (((q.value == q.getAttribute(\"placeholder\")))) {\n q.JSBNG__focus();\n return false;\n }\n;\n;\n};\n;");
// 1035
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function e16dd16226f2f839519b14343b6f79699ae341c78(event) {\n $(\"search_first_focus\").value = ($(\"search_first_focus\").value || +new Date());\n;\n Bootloader.loadComponents(\"SearchBootloader\", emptyFunction);\n};");
// 1036
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s83cdd098baa8b8fc7670e9e599802f7562d1ef57");
// 1037
geval("function e16dd16226f2f839519b14343b6f79699ae341c78(JSBNG__event) {\n $(\"search_first_focus\").value = (($(\"search_first_focus\").value || +new JSBNG__Date()));\n;\n Bootloader.loadComponents(\"SearchBootloader\", emptyFunction);\n};\n;");
// 1038
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function ecd0969c627f884b0fe8383ca5dc6c38a1102c7c7(event) {\n var q = $(\"q\");\n if ((q.value == q.getAttribute(\"placeholder\"))) {\n q.focus();\n return false;\n }\n;\n};");
// 1039
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sa76cfe207e27b0c3cfc65c72854b0c60d158f298");
// 1040
geval("function ecd0969c627f884b0fe8383ca5dc6c38a1102c7c7(JSBNG__event) {\n var q = $(\"q\");\n if (((q.value == q.getAttribute(\"placeholder\")))) {\n q.JSBNG__focus();\n return false;\n }\n;\n;\n};\n;");
// 1041
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function e92e53530d37ff46fa3100cf588fe77bbd832310b(event) {\n Arbiter.inform(\"PagesVoiceBar/toggle\");\n};");
// 1042
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sf777aa9a026c7df2982a326f292ed315c4c3f095");
// 1043
geval("function e92e53530d37ff46fa3100cf588fe77bbd832310b(JSBNG__event) {\n Arbiter.inform(\"PagesVoiceBar/toggle\");\n};\n;");
// 1044
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function e842a4cf819e0ef651842e8b08f46fb0e6d79ceb5(event) {\n return ((window.Event && Event.__inlineSubmit) && Event.__inlineSubmit(this, event));\n};");
// 1045
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s03e241bc8c6c7f05e2d20517a7be89baaefad2df");
// 1046
geval("function e842a4cf819e0ef651842e8b08f46fb0e6d79ceb5(JSBNG__event) {\n return ((((window.JSBNG__Event && JSBNG__Event.__inlineSubmit)) && JSBNG__Event.__inlineSubmit(this, JSBNG__event)));\n};\n;");
// 1047
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"function si_cj(m) {\n setTimeout(function() {\n new Image().src = ((\"http://jsbngssl.error.facebook.com/common/scribe_endpoint.php?c=si_clickjacking&t=3095\" + \"&m=\") + m);\n }, 5000);\n};\nif (((top != self) && !false)) {\n try {\n if ((parent != top)) {\n throw 1;\n }\n ;\n var si_cj_d = [\"apps.facebook.com\",\"/pages/\",\"apps.beta.facebook.com\",];\n var href = top.location.href.toLowerCase();\n for (var i = 0; (i < si_cj_d.length); i++) {\n if ((href.indexOf(si_cj_d[i]) >= 0)) {\n throw 1;\n }\n ;\n };\n si_cj(\"3 http://jsbngssl.www.facebook.com/\");\n } catch (e) {\n si_cj(\"1 \\u0009http://jsbngssl.www.facebook.com/\");\n window.document.write(\"\\u003Cstyle\\u003Ebody * {display:none !important;}\\u003C/style\\u003E\\u003Ca href=\\\"#\\\" onclick=\\\"top.location.href=window.location.href\\\" style=\\\"display:block !important;padding:10px\\\"\\u003E\\u003Ci class=\\\"img sp_4p6kmz sx_aac1e3\\\" style=\\\"display:block !important\\\"\\u003E\\u003C/i\\u003EGo to Facebook.com\\u003C/a\\u003E\");\n };\n}\n;");
// 1048
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s55cde185bfc8d1d54c4ed4c94d147ba99e53a6b0");
// 1049
geval("function si_cj(m) {\n JSBNG__setTimeout(function() {\n new JSBNG__Image().src = ((((\"http://jsbngssl.error.facebook.com/common/scribe_endpoint.php?c=si_clickjacking&t=3095\" + \"&m=\")) + m));\n }, 5000);\n};\n;\nif (((((JSBNG__top != JSBNG__self)) && !false))) {\n try {\n if (((parent != JSBNG__top))) {\n throw 1;\n }\n ;\n ;\n var si_cj_d = [\"apps.facebook.com\",\"/pages/\",\"apps.beta.facebook.com\",];\n var href = JSBNG__top.JSBNG__location.href.toLowerCase();\n for (var i = 0; ((i < si_cj_d.length)); i++) {\n if (((href.indexOf(si_cj_d[i]) >= 0))) {\n throw 1;\n }\n ;\n ;\n };\n ;\n si_cj(\"3 http://jsbngssl.www.facebook.com/\");\n } catch (e) {\n si_cj(\"1 \\u0009http://jsbngssl.www.facebook.com/\");\n window.JSBNG__document.write(\"\\u003Cstyle\\u003Ebody * {display:none !important;}\\u003C/style\\u003E\\u003Ca href=\\\"#\\\" onclick=\\\"top.JSBNG__location.href=window.JSBNG__location.href\\\" style=\\\"display:block !important;padding:10px\\\"\\u003E\\u003Ci class=\\\"img sp_4p6kmz sx_aac1e3\\\" style=\\\"display:block !important\\\"\\u003E\\u003C/i\\u003EGo to Facebook.com\\u003C/a\\u003E\");\n };\n;\n}\n;\n;");
// 1050
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"Bootloader.setResourceMap({\n yagwf: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yw/r/JDr6pTZ60bK.css\"\n },\n VDymv: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yZ/r/2OiKY3nDQvQ.css\"\n },\n \"X/Fq6\": {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y6/r/YlbIHaln_Rk.css\"\n },\n \"0duP3\": {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yj/r/KbSyGJkqroJ.css\"\n },\n ynBUm: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yD/r/OWwnO_yMqhK.css\"\n },\n vFtag: {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yS/r/AXbdtQOFsWr.css\"\n },\n cy4a0: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yC/r/Ef0wezTRsTI.css\"\n },\n xqZGj: {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yb/r/tOU0wFcLVo_.css\"\n },\n W3Ky6: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y0/r/RxMmKV8uOEh.css\"\n }\n});\nBootloader.setResourceMap({\n oE4Do: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yq/r/MDwOqV08JHh.js\"\n },\n C3MER: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yP/r/hnJRUTuHHeP.js\"\n },\n AyUu6: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/pmYy9aLa5q_.js\"\n },\n \"+h1d2\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yo/r/0gMMCDzw75A.js\"\n },\n h9fqQ: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/FmIXX_SfTzh.js\"\n },\n \"63VzN\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ye/r/v9y92rsUvEH.js\"\n },\n \"wxq+C\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y7/r/HXOT2PHhPzY.js\"\n },\n MqSmz: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yH/r/ghlEJgSKAee.js\"\n },\n tIw4R: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yq/r/ztXltT1LKGv.js\"\n },\n pR9EP: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yE/r/jKneATMaMne.js\"\n },\n AtxWD: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yU/r/RXieOTwv9ZN.js\"\n },\n \"1XxM1\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yK/r/WyMulbsltUU.js\"\n },\n qu1rX: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ym/r/5vdmAFTChHH.js\"\n },\n \"4vv8/\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/VctjjLR0rnO.js\"\n },\n \"5dFET\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yg/r/ojsbRUPU0Sl.js\"\n },\n C6rJk: {\n type:
// 1051
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s6483de5fe55246b950f8bbeb8dd035ac37f6c8b7");
// 1052
geval("Bootloader.setResourceMap({\n yagwf: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yw/r/JDr6pTZ60bK.css\"\n },\n VDymv: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yZ/r/2OiKY3nDQvQ.css\"\n },\n \"X/Fq6\": {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y6/r/YlbIHaln_Rk.css\"\n },\n \"0duP3\": {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yj/r/KbSyGJkqroJ.css\"\n },\n ynBUm: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yD/r/OWwnO_yMqhK.css\"\n },\n vFtag: {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yS/r/AXbdtQOFsWr.css\"\n },\n cy4a0: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yC/r/Ef0wezTRsTI.css\"\n },\n xqZGj: {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yb/r/tOU0wFcLVo_.css\"\n },\n W3Ky6: {\n type: \"css\",\n permanent: 1,\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y0/r/RxMmKV8uOEh.css\"\n }\n});\nBootloader.setResourceMap({\n oE4Do: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yq/r/MDwOqV08JHh.js\"\n },\n C3MER: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yP/r/hnJRUTuHHeP.js\"\n },\n AyUu6: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/pmYy9aLa5q_.js\"\n },\n \"+h1d2\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yo/r/0gMMCDzw75A.js\"\n },\n h9fqQ: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yF/r/FmIXX_SfTzh.js\"\n },\n \"63VzN\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ye/r/v9y92rsUvEH.js\"\n },\n \"wxq+C\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y7/r/HXOT2PHhPzY.js\"\n },\n MqSmz: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yH/r/ghlEJgSKAee.js\"\n },\n tIw4R: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yq/r/ztXltT1LKGv.js\"\n },\n pR9EP: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yE/r/jKneATMaMne.js\"\n },\n AtxWD: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yU/r/RXieOTwv9ZN.js\"\n },\n \"1XxM1\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yK/r/WyMulbsltUU.js\"\n },\n qu1rX: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ym/r/5vdmAFTChHH.js\"\n },\n \"4vv8/\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/VctjjLR0rnO.js\"\n },\n \"5dFET\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yg/r/ojsbRUPU0Sl.js\"\n },\n C6rJk: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.s
// 1053
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"require(\"InitialJSLoader\").loadOnDOMContentReady([\"AyUu6\",\"OJTM4\",\"AsDOA\",\"63VzN\",\"4vv8/\",\"u//Ut\",\"1XxM1\",\"5dFET\",\"hfrQl\",\"C6rJk\",]);");
// 1054
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s155ee47747f88107b39149bfb79eabbf2eb896fa");
// 1055
geval("require(\"InitialJSLoader\").loadOnDOMContentReady([\"AyUu6\",\"OJTM4\",\"AsDOA\",\"63VzN\",\"4vv8/\",\"u//Ut\",\"1XxM1\",\"5dFET\",\"hfrQl\",\"C6rJk\",]);");
// 1057
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"Bootloader.configurePage([\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",]);\nBootloader.done([\"jDr+c\",]);\nJSCC.init(({\n j1O7KQQXRw2M7DXJek0: function() {\n return new RequestsJewel();\n }\n}));\nrequire(\"InitialJSLoader\").handleServerJS({\n require: [[\"Intl\",\"setPhonologicalRules\",[],[{\n meta: {\n \"/_B/\": \"([.,!?\\\\s]|^)\",\n \"/_E/\": \"([.,!?\\\\s]|$)\"\n },\n patterns: {\n \"/\\u0001(.*)('|&#039;)s\\u0001(?:'|&#039;)s(.*)/\": \"\\u0001$1$2s\\u0001$3\",\n \"/_\\u0001([^\\u0001]*)\\u0001/e\": \"mb_strtolower(\\\"\\u0001$1\\u0001\\\")\",\n \"/\\\\^\\\\x01([^\\\\x01])(?=[^\\\\x01]*\\\\x01)/e\": \"mb_strtoupper(\\\"\\u0001$1\\\")\",\n \"/_\\u0001([^\\u0001]*)\\u0001/\": \"javascript\"\n }\n },],],[\"PostLoadJS\",\"loadAndRequire\",[],[\"DimensionTracking\",],],[\"PostLoadJS\",\"loadAndCall\",[],[\"HighContrastMode\",\"init\",[{\n currentState: null,\n spacerImage: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/-PAXP-deijE.gif\"\n },],],],[\"ScriptPath\",\"set\",[],[\"/home.php\",\"6bc96d96\",],],[\"ClickRefLogger\",],[\"userAction\",\"setUATypeConfig\",[],[{\n \"ua:n\": false,\n \"ua:i\": false,\n \"ua:d\": false,\n \"ua:e\": false\n },],],[\"ScriptPathState\",\"setUserURISampleRate\",[],[1050,],],[\"userAction\",\"setCustomSampleConfig\",[],[{\n \"ua:n\": {\n test: {\n ua_id: {\n test: true\n }\n }\n },\n \"ua:i\": {\n snowlift: {\n action: {\n open: true,\n close: true\n }\n },\n canvas: {\n action: {\n mouseover: true,\n mouseout: true\n }\n }\n }\n },],],[\"UserActionHistory\",],[\"ScriptPath\",\"startLogging\",[],[],],[\"TimeSpentBitArrayLogger\",\"init\",[],[],],[\"PixelRatio\",\"startDetecting\",[],[1,],],[\"LiveTimer\",\"restart\",[],[1373490143,],],[\"MessagingReliabilityLogger\",],[\"UnityLogging\",\"logUnityVersion\",[],[],],[\"DocumentTitle\",\"set\",[],[\"Facebook\",],],[\"SidebarPrelude\",\"addSidebarMode\",[],[1225,],],[\"m_0_0\",],[\"Quickling\",],[\"TinyViewport\",],[\"WebStorageMonster\",\"schedule\",[],[false,],],[\"AsyncRequestNectarLogging\",],[\"ViewasChromeBar\",\"initChromeBar\",[\"m_0_1\",],[{\n __m: \"m_0_1\"\n },],],[\"PagesVoiceBar\",\"initVoiceBar\",[],[],],[\"TypeaheadSearchBrowseUpsell\",\"registerForm\",[\"m_0_2\",],[{\n __m: \"m_0_2\"\n },],],[\"TypeaheadSearchSponsored\",\"setAuctionOptions\",[],[{\n maxNumberAds: 3,\n maxNumberRemovedResults: 2,\n maxNumberResultsAndAds: 8,\n v1: 1000000,\n v2: 0,\n v0: 100000,\n v3: 1000000,\n v4: 1000000,\n bootstrap: false,\n rerankingStrategy: 5\n },],],[\"AccessibleMenu\",\"init\",[\"m_0_4\",],[{\n __m: \"m_0_4\"\n },],],[\"MercuryJewel\",],[\"TitanLeftNav\",\"initialize\",[],[],],[\"m_0_7\",],[\"Typeahead\",\"init\",[\"m_0_8\",\"m_0_7\",\"TypeaheadExcludeBootstrapFromQueryCache\",\"TypeaheadSearchBrowseUpsell\",\"TypeaheadDetectQueryLocale\",],[{\n __m: \"m_0_8\"\n },{\n __m: \"m_0_7\"\n },[{\n __m: \"TypeaheadExcludeBootstrapFromQueryCache\"\n },{\n __m: \"TypeaheadSearchBrowseUpsell\"\n },{\n __m: \"TypeaheadDetectQueryLocale\"\n },\"searchSponsored\",\"searchRecorderBasic\",\"regulateMemorializedUsers\",\"showLoadingIndicator\",\"initFilters\",],null,],],[\"PlaceholderListener\",],[\"PlaceholderOnsubmitFormListener\",],[\"FlipDirectionOnKeypress\",],[\"enforceMaxLength\",],[\"m_0_5\",],[\"ChatOpenTab\",\"listenOpenEmptyTab\",[\"m_0_d\",],[{\n __m: \"m_0_d\"\n },],],[\"Scrollable\",],[\"m_0_f\",],[\"m_0_c\",],[\"WebStorageMonster\",\"registerL
// 1058
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s1781b0f90407e4130b9cb2d35dc8345bef88e4c3");
// 1059
geval("Bootloader.configurePage([\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",]);\nBootloader.done([\"jDr+c\",]);\nJSCC.init(({\n j1O7KQQXRw2M7DXJek0: function() {\n return new RequestsJewel();\n }\n}));\nrequire(\"InitialJSLoader\").handleServerJS({\n require: [[\"JSBNG__Intl\",\"setPhonologicalRules\",[],[{\n meta: {\n \"/_B/\": \"([.,!?\\\\s]|^)\",\n \"/_E/\": \"([.,!?\\\\s]|$)\"\n },\n patterns: {\n \"/\\u0001(.*)('|&#039;)s\\u0001(?:'|&#039;)s(.*)/\": \"\\u0001$1$2s\\u0001$3\",\n \"/_\\u0001([^\\u0001]*)\\u0001/e\": \"mb_strtolower(\\\"\\u0001$1\\u0001\\\")\",\n \"/\\\\^\\\\x01([^\\\\x01])(?=[^\\\\x01]*\\\\x01)/e\": \"mb_strtoupper(\\\"\\u0001$1\\\")\",\n \"/_\\u0001([^\\u0001]*)\\u0001/\": \"javascript\"\n }\n },],],[\"PostLoadJS\",\"loadAndRequire\",[],[\"DimensionTracking\",],],[\"PostLoadJS\",\"loadAndCall\",[],[\"HighContrastMode\",\"init\",[{\n currentState: null,\n spacerImage: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/-PAXP-deijE.gif\"\n },],],],[\"ScriptPath\",\"set\",[],[\"/home.php\",\"6bc96d96\",],],[\"ClickRefLogger\",],[\"userAction\",\"setUATypeConfig\",[],[{\n \"ua:n\": false,\n \"ua:i\": false,\n \"ua:d\": false,\n \"ua:e\": false\n },],],[\"ScriptPathState\",\"setUserURISampleRate\",[],[1050,],],[\"userAction\",\"setCustomSampleConfig\",[],[{\n \"ua:n\": {\n test: {\n ua_id: {\n test: true\n }\n }\n },\n \"ua:i\": {\n snowlift: {\n action: {\n open: true,\n close: true\n }\n },\n canvas: {\n action: {\n mouseover: true,\n mouseout: true\n }\n }\n }\n },],],[\"UserActionHistory\",],[\"ScriptPath\",\"startLogging\",[],[],],[\"TimeSpentBitArrayLogger\",\"init\",[],[],],[\"PixelRatio\",\"startDetecting\",[],[1,],],[\"LiveTimer\",\"restart\",[],[1373490143,],],[\"MessagingReliabilityLogger\",],[\"UnityLogging\",\"logUnityVersion\",[],[],],[\"DocumentTitle\",\"set\",[],[\"Facebook\",],],[\"SidebarPrelude\",\"addSidebarMode\",[],[1225,],],[\"m_0_0\",],[\"Quickling\",],[\"TinyViewport\",],[\"WebStorageMonster\",\"schedule\",[],[false,],],[\"AsyncRequestNectarLogging\",],[\"ViewasChromeBar\",\"initChromeBar\",[\"m_0_1\",],[{\n __m: \"m_0_1\"\n },],],[\"PagesVoiceBar\",\"initVoiceBar\",[],[],],[\"TypeaheadSearchBrowseUpsell\",\"registerForm\",[\"m_0_2\",],[{\n __m: \"m_0_2\"\n },],],[\"TypeaheadSearchSponsored\",\"setAuctionOptions\",[],[{\n maxNumberAds: 3,\n maxNumberRemovedResults: 2,\n maxNumberResultsAndAds: 8,\n v1: 1000000,\n v2: 0,\n v0: 100000,\n v3: 1000000,\n v4: 1000000,\n bootstrap: false,\n rerankingStrategy: 5\n },],],[\"AccessibleMenu\",\"init\",[\"m_0_4\",],[{\n __m: \"m_0_4\"\n },],],[\"MercuryJewel\",],[\"TitanLeftNav\",\"initialize\",[],[],],[\"m_0_7\",],[\"Typeahead\",\"init\",[\"m_0_8\",\"m_0_7\",\"TypeaheadExcludeBootstrapFromQueryCache\",\"TypeaheadSearchBrowseUpsell\",\"TypeaheadDetectQueryLocale\",],[{\n __m: \"m_0_8\"\n },{\n __m: \"m_0_7\"\n },[{\n __m: \"TypeaheadExcludeBootstrapFromQueryCache\"\n },{\n __m: \"TypeaheadSearchBrowseUpsell\"\n },{\n __m: \"TypeaheadDetectQueryLocale\"\n },\"searchSponsored\",\"searchRecorderBasic\",\"regulateMemorializedUsers\",\"showLoadingIndicator\",\"initFilters\",],null,],],[\"PlaceholderListener\",],[\"PlaceholderOnsubmitFormListener\",],[\"FlipDirectionOnKeypress\",],[\"enforceMaxLength\",],[\"m_0_5\",],[\"ChatOpenTab\",\"listenOpenEmptyTab\",[\"m_0_d\",],[{\n __m: \"m_0_d\"\n },],],[\"Scrollable\",],[\"m_0_f\",],[\"m_0_c\",],[\"WebStorageMonster\",\"registerLogoutForm\",[\"m_0_h\",],[{\n __m: \"m_0_h\"\n },[
// 1060
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s1781b0f90407e4130b9cb2d35dc8345bef88e4c3");
// 1061
geval("try {\n Bootloader.configurePage([\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",]);\n Bootloader.done([\"jDr+c\",]);\n JSCC.init(({\n j1O7KQQXRw2M7DXJek0: function() {\n return new RequestsJewel();\n }\n }));\n require(\"InitialJSLoader\").handleServerJS({\n require: [[\"JSBNG__Intl\",\"setPhonologicalRules\",[],[{\n meta: {\n \"/_B/\": \"([.,!?\\\\s]|^)\",\n \"/_E/\": \"([.,!?\\\\s]|$)\"\n },\n patterns: {\n \"/\\u0001(.*)('|&#039;)s\\u0001(?:'|&#039;)s(.*)/\": \"\\u0001$1$2s\\u0001$3\",\n \"/_\\u0001([^\\u0001]*)\\u0001/e\": \"mb_strtolower(\\\"\\u0001$1\\u0001\\\")\",\n \"/\\\\^\\\\x01([^\\\\x01])(?=[^\\\\x01]*\\\\x01)/e\": \"mb_strtoupper(\\\"\\u0001$1\\\")\",\n \"/_\\u0001([^\\u0001]*)\\u0001/\": \"javascript\"\n }\n },],],[\"PostLoadJS\",\"loadAndRequire\",[],[\"DimensionTracking\",],],[\"PostLoadJS\",\"loadAndCall\",[],[\"HighContrastMode\",\"init\",[{\n currentState: null,\n spacerImage: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/-PAXP-deijE.gif\"\n },],],],[\"ScriptPath\",\"set\",[],[\"/home.php\",\"6bc96d96\",],],[\"ClickRefLogger\",],[\"userAction\",\"setUATypeConfig\",[],[{\n \"ua:n\": false,\n \"ua:i\": false,\n \"ua:d\": false,\n \"ua:e\": false\n },],],[\"ScriptPathState\",\"setUserURISampleRate\",[],[1050,],],[\"userAction\",\"setCustomSampleConfig\",[],[{\n \"ua:n\": {\n test: {\n ua_id: {\n test: true\n }\n }\n },\n \"ua:i\": {\n snowlift: {\n action: {\n open: true,\n close: true\n }\n },\n canvas: {\n action: {\n mouseover: true,\n mouseout: true\n }\n }\n }\n },],],[\"UserActionHistory\",],[\"ScriptPath\",\"startLogging\",[],[],],[\"TimeSpentBitArrayLogger\",\"init\",[],[],],[\"PixelRatio\",\"startDetecting\",[],[1,],],[\"LiveTimer\",\"restart\",[],[1373490143,],],[\"MessagingReliabilityLogger\",],[\"UnityLogging\",\"logUnityVersion\",[],[],],[\"DocumentTitle\",\"set\",[],[\"Facebook\",],],[\"SidebarPrelude\",\"addSidebarMode\",[],[1225,],],[\"m_0_0\",],[\"Quickling\",],[\"TinyViewport\",],[\"WebStorageMonster\",\"schedule\",[],[false,],],[\"AsyncRequestNectarLogging\",],[\"ViewasChromeBar\",\"initChromeBar\",[\"m_0_1\",],[{\n __m: \"m_0_1\"\n },],],[\"PagesVoiceBar\",\"initVoiceBar\",[],[],],[\"TypeaheadSearchBrowseUpsell\",\"registerForm\",[\"m_0_2\",],[{\n __m: \"m_0_2\"\n },],],[\"TypeaheadSearchSponsored\",\"setAuctionOptions\",[],[{\n maxNumberAds: 3,\n maxNumberRemovedResults: 2,\n maxNumberResultsAndAds: 8,\n v1: 1000000,\n v2: 0,\n v0: 100000,\n v3: 1000000,\n v4: 1000000,\n bootstrap: false,\n rerankingStrategy: 5\n },],],[\"AccessibleMenu\",\"init\",[\"m_0_4\",],[{\n __m: \"m_0_4\"\n },],],[\"MercuryJewel\",],[\"TitanLeftNav\",\"initialize\",[],[],],[\"m_0_7\",],[\"Typeahead\",\"init\",[\"m_0_8\",\"m_0_7\",\"TypeaheadExcludeBootstrapFromQueryCache\",\"TypeaheadSearchBrowseUpsell\",\"TypeaheadDetectQueryLocale\",],[{\n __m: \"m_0_8\"\n },{\n __m: \"m_0_7\"\n },[{\n __m: \"TypeaheadExcludeBootstrapFromQueryCache\"\n },{\n __m: \"TypeaheadSearchBrowseUpsell\"\n },{\n __m: \"TypeaheadDetectQueryLocale\"\n },\"searchSponsored\",\"searchRecorderBasic\",\"regulateMemorializedUsers\",\"showLoadingIndicator\",\"initFilters\",],null,],],[\"PlaceholderListener\",],[\"PlaceholderOnsubmi
// 1062
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"if (self.CavalryLogger) {\n CavalryLogger.start_js([\"OJTM4\",]);\n}\n;\n__d(\"AjaxRequest\", [\"ErrorUtils\",\"Keys\",\"URI\",\"UserAgent\",\"XHR\",\"copyProperties\",], function(a, b, c, d, e, f) {\n var g = b(\"ErrorUtils\"), h = b(\"Keys\"), i = b(\"URI\"), j = b(\"UserAgent\"), k = b(\"XHR\"), l = b(\"copyProperties\");\n function m(q, r, s) {\n this.xhr = k.create();\n if (!((r instanceof i))) {\n r = new i(r);\n };\n if ((s && (q == \"GET\"))) {\n r.setQueryData(s);\n }\n else this._params = s;\n ;\n this.method = q;\n this.uri = r;\n this.xhr.open(q, r);\n };\n var n = (window.XMLHttpRequest && ((\"withCredentials\" in new XMLHttpRequest())));\n m.supportsCORS = function() {\n return n;\n };\n m.ERROR = \"ar:error\";\n m.TIMEOUT = \"ar:timeout\";\n m.PROXY_ERROR = \"ar:proxy error\";\n m.TRANSPORT_ERROR = \"ar:transport error\";\n m.SERVER_ERROR = \"ar:http error\";\n m.PARSE_ERROR = \"ar:parse error\";\n m._inflight = [];\n function o() {\n var q = m._inflight;\n m._inflight = [];\n q.forEach(function(r) {\n r.abort();\n });\n };\n function p(q) {\n q.onJSON = q.onError = q.onSuccess = null;\n clearTimeout(q._timer);\n if ((q.xhr && (q.xhr.readyState < 4))) {\n q.xhr.abort();\n q.xhr = null;\n }\n ;\n m._inflight = m._inflight.filter(function(r) {\n return (((r && (r != q)) && r.xhr) && (r.xhr.readyState < 4));\n });\n };\n l(m.prototype, {\n timeout: 60000,\n streamMode: true,\n prelude: /^for \\(;;\\);/,\n status: null,\n _eol: -1,\n _call: function(q) {\n if (this[q]) {\n this[q](this);\n };\n },\n _parseStatus: function() {\n var q;\n try {\n this.status = this.xhr.status;\n q = this.xhr.statusText;\n } catch (r) {\n if ((this.xhr.readyState >= 4)) {\n this.errorType = m.TRANSPORT_ERROR;\n this.errorText = r.message;\n }\n ;\n return;\n };\n if (((this.status === 0) && !(/^(file|ftp)/.test(this.uri)))) {\n this.errorType = m.TRANSPORT_ERROR;\n }\n else if (((this.status >= 100) && (this.status < 200))) {\n this.errorType = m.PROXY_ERROR;\n }\n else if (((this.status >= 200) && (this.status < 300))) {\n return;\n }\n else if (((this.status >= 300) && (this.status < 400))) {\n this.errorType = m.PROXY_ERROR;\n }\n else if (((this.status >= 400) && (this.status < 500))) {\n this.errorType = m.SERVER_ERROR;\n }\n else if (((this.status >= 500) && (this.status < 600))) {\n this.errorType = m.PROXY_ERROR;\n }\n else if ((this.status == 1223)) {\n return;\n }\n else if (((this.status >= 12001) && (this.status <= 12156))) {\n this.errorType = m.TRANSPORT_ERROR;\n }\n else {\n q = (\"unrecognized status code: \" + this.status);\n this.errorType = m.ERROR;\n }\n \n \n \n \n \n \n \n ;\n if (!this.errorText) {\n this.errorText = q;\n };\n },\n _parseResponse: function() {\n var q, r = this.xhr.readyState;\n try {\n q = (this.xhr.responseText || \"\");\n } catch (s) {\n if ((r >= 4)) {\n this.errorType = m.ERROR;\n this.errorText = (\"responseTe
// 1063
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s93c2e40407555ddbaca9d11f5326c966155ad343");
// 1064
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"OJTM4\",]);\n}\n;\n;\n__d(\"AjaxRequest\", [\"ErrorUtils\",\"Keys\",\"URI\",\"UserAgent\",\"XHR\",\"copyProperties\",], function(a, b, c, d, e, f) {\n var g = b(\"ErrorUtils\"), h = b(\"Keys\"), i = b(\"URI\"), j = b(\"UserAgent\"), k = b(\"XHR\"), l = b(\"copyProperties\");\n function m(q, r, s) {\n this.xhr = k.create();\n if (!((r instanceof i))) {\n r = new i(r);\n }\n ;\n ;\n if (((s && ((q == \"GET\"))))) {\n r.setQueryData(s);\n }\n else this._params = s;\n ;\n ;\n this.method = q;\n this.uri = r;\n this.xhr.open(q, r);\n };\n;\n var n = ((window.JSBNG__XMLHttpRequest && ((\"withCredentials\" in new JSBNG__XMLHttpRequest()))));\n m.supportsCORS = function() {\n return n;\n };\n m.ERROR = \"ar:error\";\n m.TIMEOUT = \"ar:timeout\";\n m.PROXY_ERROR = \"ar:proxy error\";\n m.TRANSPORT_ERROR = \"ar:transport error\";\n m.SERVER_ERROR = \"ar:http error\";\n m.PARSE_ERROR = \"ar:parse error\";\n m._inflight = [];\n function o() {\n var q = m._inflight;\n m._inflight = [];\n q.forEach(function(r) {\n r.abort();\n });\n };\n;\n function p(q) {\n q.onJSON = q.onError = q.onSuccess = null;\n JSBNG__clearTimeout(q._timer);\n if (((q.xhr && ((q.xhr.readyState < 4))))) {\n q.xhr.abort();\n q.xhr = null;\n }\n ;\n ;\n m._inflight = m._inflight.filter(function(r) {\n return ((((((r && ((r != q)))) && r.xhr)) && ((r.xhr.readyState < 4))));\n });\n };\n;\n l(m.prototype, {\n timeout: 60000,\n streamMode: true,\n prelude: /^for \\(;;\\);/,\n JSBNG__status: null,\n _eol: -1,\n _call: function(q) {\n if (this[q]) {\n this[q](this);\n }\n ;\n ;\n },\n _parseStatus: function() {\n var q;\n try {\n this.JSBNG__status = this.xhr.JSBNG__status;\n q = this.xhr.statusText;\n } catch (r) {\n if (((this.xhr.readyState >= 4))) {\n this.errorType = m.TRANSPORT_ERROR;\n this.errorText = r.message;\n }\n ;\n ;\n return;\n };\n ;\n if (((((this.JSBNG__status === 0)) && !(/^(file|ftp)/.test(this.uri))))) {\n this.errorType = m.TRANSPORT_ERROR;\n }\n else if (((((this.JSBNG__status >= 100)) && ((this.JSBNG__status < 200))))) {\n this.errorType = m.PROXY_ERROR;\n }\n else if (((((this.JSBNG__status >= 200)) && ((this.JSBNG__status < 300))))) {\n return;\n }\n else if (((((this.JSBNG__status >= 300)) && ((this.JSBNG__status < 400))))) {\n this.errorType = m.PROXY_ERROR;\n }\n else if (((((this.JSBNG__status >= 400)) && ((this.JSBNG__status < 500))))) {\n this.errorType = m.SERVER_ERROR;\n }\n else if (((((this.JSBNG__status >= 500)) && ((this.JSBNG__status < 600))))) {\n this.errorType = m.PROXY_ERROR;\n }\n else if (((this.JSBNG__status == 1223))) {\n return;\n }\n else if (((((this.JSBNG__status >= 12001)) && ((this.JSBNG__status <= 12156))))) {\n this.errorType = m.TRANSPORT_ERROR;\n }\n else {\n q = ((\"unrecognized status code: \" + this.JSBNG__status));\n this.errorType = m.ERROR;\n }\n \n \n \n \n \n \n \n ;\n ;\n if (!this.errorText) {\n this.errorText = q;\n }\n ;\n ;\n },\n _parseResponse: function() {\n
// 1299
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"var bigPipe = new (require(\"BigPipe\"))({\n lid: 0,\n forceFinish: true\n});");
// 1300
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"se151abf45cd37f530e5c8a27b753d912bd1be56a");
// 1301
geval("var bigPipe = new (require(\"BigPipe\"))({\n lid: 0,\n forceFinish: true\n});");
// 1306
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n id: \"first_response\",\n phase: 0,\n jsmods: {\n },\n is_last: true,\n css: [\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AyUu6\",\"OJTM4\",\"AsDOA\",\"63VzN\",\"4vv8/\",\"u//Ut\",\"1XxM1\",\"5dFET\",\"hfrQl\",\"C6rJk\",]\n});");
// 1307
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s2cd3254f0c5abebdb9368c757b9aac0b68651aec");
// 1308
geval("bigPipe.onPageletArrive({\n id: \"first_response\",\n phase: 0,\n jsmods: {\n },\n is_last: true,\n css: [\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AyUu6\",\"OJTM4\",\"AsDOA\",\"63VzN\",\"4vv8/\",\"u//Ut\",\"1XxM1\",\"5dFET\",\"hfrQl\",\"C6rJk\",]\n});");
// 1310
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n pagelet_welcome_box: {\n container_id: \"u_0_g\"\n }\n },\n css: [\"0duP3\",\"W3Ky6\",],\n bootloadable: {\n },\n resource_map: {\n },\n id: \"pagelet_welcome_box\",\n phase: 1\n});");
// 1311
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s54eafbda3546281aead0f8229f13dfd09bff1667");
// 1312
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n pagelet_welcome_box: {\n container_id: \"u_0_g\"\n }\n },\n css: [\"0duP3\",\"W3Ky6\",],\n bootloadable: {\n },\n resource_map: {\n },\n id: \"pagelet_welcome_box\",\n phase: 1\n});");
// 1314
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n pagelet_navigation: {\n container_id: \"u_0_h\"\n }\n },\n css: [\"0duP3\",\"W3Ky6\",],\n bootloadable: {\n ExplicitHover: {\n resources: [\"AyUu6\",\"aOO05\",],\n \"module\": true\n },\n SortableSideNav: {\n resources: [\"AyUu6\",\"AsDOA\",\"6tAwh\",\"C03uu\",],\n \"module\": true\n }\n },\n resource_map: {\n \"6tAwh\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yV/r/OktjXMyrl5l.js\"\n },\n C03uu: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yC/r/3fdQLPa9g1g.js\"\n },\n aOO05: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yW/r/zpbGrZRQcFa.js\"\n },\n \"25/dt\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yA/r/SIc-uOFF4WA.js\"\n }\n },\n js: [\"AsDOA\",\"AyUu6\",\"25/dt\",\"bUzfU\",\"OJTM4\",],\n provides: [\"pagelet_controller::home_side_future_nav\",],\n jscc_map: \"({\\\"j2L3vxmkOLJgIjBIGm0\\\":function(){return new FutureHomeSideNav();}})\",\n onload: [\"JSCC.get(\\\"j2L3vxmkOLJgIjBIGm0\\\").init($(\\\"sideNav\\\"), \\\"nf\\\", false);\",],\n id: \"pagelet_navigation\",\n phase: 1\n});");
// 1315
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s201631d8707391161a96b96e28e62848597fad5b");
// 1316
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n pagelet_navigation: {\n container_id: \"u_0_h\"\n }\n },\n css: [\"0duP3\",\"W3Ky6\",],\n bootloadable: {\n ExplicitHover: {\n resources: [\"AyUu6\",\"aOO05\",],\n \"module\": true\n },\n SortableSideNav: {\n resources: [\"AyUu6\",\"AsDOA\",\"6tAwh\",\"C03uu\",],\n \"module\": true\n }\n },\n resource_map: {\n \"6tAwh\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yV/r/OktjXMyrl5l.js\"\n },\n C03uu: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yC/r/3fdQLPa9g1g.js\"\n },\n aOO05: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yW/r/zpbGrZRQcFa.js\"\n },\n \"25/dt\": {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yA/r/SIc-uOFF4WA.js\"\n }\n },\n js: [\"AsDOA\",\"AyUu6\",\"25/dt\",\"bUzfU\",\"OJTM4\",],\n provides: [\"pagelet_controller::home_side_future_nav\",],\n jscc_map: \"({\\\"j2L3vxmkOLJgIjBIGm0\\\":function(){return new FutureHomeSideNav();}})\",\n JSBNG__onload: [\"JSCC.get(\\\"j2L3vxmkOLJgIjBIGm0\\\").init($(\\\"sideNav\\\"), \\\"nf\\\", false);\",],\n id: \"pagelet_navigation\",\n phase: 1\n});");
// 1318
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n pagelet_welcome: {\n container_id: \"u_0_i\"\n }\n },\n jsmods: {\n require: [[\"RequiredFormListener\",],]\n },\n css: [\"MJfap\",\"W3Ky6\",],\n bootloadable: {\n },\n resource_map: {\n fvNhh: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y7/r/sghigcwX_l-.js\"\n },\n MJfap: {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yf/r/XZQMfQsFeGz.css\"\n }\n },\n js: [\"AyUu6\",\"fvNhh\",\"AsDOA\",],\n id: \"pagelet_welcome\",\n phase: 1\n});");
// 1319
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s0c3636cdc8c3db982e465ab8779db6628513e061");
// 1320
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n pagelet_welcome: {\n container_id: \"u_0_i\"\n }\n },\n jsmods: {\n require: [[\"RequiredFormListener\",],]\n },\n css: [\"MJfap\",\"W3Ky6\",],\n bootloadable: {\n },\n resource_map: {\n fvNhh: {\n type: \"js\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y7/r/sghigcwX_l-.js\"\n },\n MJfap: {\n type: \"css\",\n crossOrigin: 1,\n src: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yf/r/XZQMfQsFeGz.css\"\n }\n },\n js: [\"AyUu6\",\"fvNhh\",\"AsDOA\",],\n id: \"pagelet_welcome\",\n phase: 1\n});");
// 1322
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n append: \"pagelet_pinned_nav\",\n display_dependency: [\"pagelet_navigation\",],\n is_last: true,\n content: {\n pagelet_pinned_nav_lite: {\n container_id: \"u_0_j\"\n }\n },\n css: [\"W3Ky6\",\"0duP3\",],\n bootloadable: {\n },\n resource_map: {\n },\n id: \"pagelet_pinned_nav_lite\",\n phase: 1,\n tti_phase: 1\n});");
// 1323
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s20152e61529a72f6f352b12a997eadc605fa25b1");
// 1324
geval("bigPipe.onPageletArrive({\n append: \"pagelet_pinned_nav\",\n display_dependency: [\"pagelet_navigation\",],\n is_last: true,\n JSBNG__content: {\n pagelet_pinned_nav_lite: {\n container_id: \"u_0_j\"\n }\n },\n css: [\"W3Ky6\",\"0duP3\",],\n bootloadable: {\n },\n resource_map: {\n },\n id: \"pagelet_pinned_nav_lite\",\n phase: 1,\n tti_phase: 1\n});");
// 1326
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n pagelet_sidebar: {\n container_id: \"u_0_x\"\n }\n },\n jsmods: {\n require: [[\"ChatSidebar\",\"init\",[\"m_0_1d\",\"m_0_1e\",\"m_0_1f\",],[{\n __m: \"m_0_1d\"\n },{\n __m: \"m_0_1e\"\n },{\n __m: \"m_0_1f\"\n },[],],],[\"ChatSidebarLog\",\"start\",[],[],],[\"m_0_1g\",],[\"m_0_1i\",],[\"m_0_1f\",],[\"Typeahead\",\"init\",[\"m_0_1j\",\"m_0_1f\",],[{\n __m: \"m_0_1j\"\n },{\n __m: \"m_0_1f\"\n },[\"chatTypeahead\",\"buildBestAvailableNames\",\"showLoadingIndicator\",],null,],],[\"ClearableTypeahead\",\"resetOnCloseButtonClick\",[\"m_0_1f\",\"m_0_1l\",],[{\n __m: \"m_0_1f\"\n },{\n __m: \"m_0_1l\"\n },],],[\"m_0_1o\",],[\"SelectorDeprecated\",],[\"m_0_1p\",],[\"Layer\",\"init\",[\"m_0_1p\",\"m_0_1q\",],[{\n __m: \"m_0_1p\"\n },{\n __m: \"m_0_1q\"\n },],],[\"m_0_1e\",],[\"PresencePrivacy\",],],\n instances: [[\"m_0_1i\",[\"ScrollableArea\",\"m_0_1h\",],[{\n __m: \"m_0_1h\"\n },{\n persistent: true\n },],1,],[\"m_0_1f\",[\"Typeahead\",\"m_0_1m\",\"ChatTypeaheadView\",\"ChatTypeaheadRenderer\",\"m_0_1j\",\"ChatTypeaheadCore\",\"m_0_1k\",],[{\n __m: \"m_0_1m\"\n },{\n node_id: \"u_0_k\",\n node: null,\n ctor: {\n __m: \"ChatTypeaheadView\"\n },\n options: {\n autoSelect: true,\n renderer: {\n __m: \"ChatTypeaheadRenderer\"\n },\n causalElement: {\n __m: \"m_0_1j\"\n },\n minWidth: 0,\n alignment: \"left\",\n showBadges: 1\n }\n },{\n ctor: {\n __m: \"ChatTypeaheadCore\"\n },\n options: {\n keepFocused: false,\n resetOnSelect: true,\n setValueOnSelect: false\n }\n },{\n __m: \"m_0_1k\"\n },],7,],[\"m_0_1o\",[\"ChatSidebarDropdown\",\"m_0_1n\",],[{\n __m: \"m_0_1n\"\n },null,],1,],[\"m_0_1p\",[\"LegacyContextualDialog\",\"AccessibleLayer\",],[{\n buildWrapper: false,\n causalElement: null,\n addedBehaviors: [{\n __m: \"AccessibleLayer\"\n },]\n },],5,],[\"m_0_1e\",[\"ChatOrderedList\",\"m_0_1r\",\"m_0_1s\",\"m_0_1t\",\"m_0_1p\",],[true,{\n __m: \"m_0_1r\"\n },{\n __m: \"m_0_1s\"\n },{\n __m: \"m_0_1t\"\n },{\n __m: \"m_0_1p\"\n },null,],5,],[\"m_0_1g\",[\"LiveBarDark\",\"m_0_1e\",],[{\n __m: \"m_0_1e\"\n },[],[\"music\",\"canvas\",\"checkin\",\"travelling\",],],1,],[\"m_0_1m\",[\"ChatTypeaheadDataSource\",],[{\n alwaysPrefixMatch: true,\n showOfflineUsers: true\n },],2,],[\"m_0_1s\",[\"XHPTemplate\",\"m_0_1u\",],[{\n __m: \"m_0_1u\"\n },],2,],[\"m_0_1t\",[\"XHPTemplate\",\"m_0_1v\",],[{\n __m: \"m_0_1v\"\n },],2,],[\"m_0_1w\",[\"XHPTemplate\",\"m_0_20\",],[{\n __m: \"m_0_20\"\n },],2,],[\"m_0_1x\",[\"XHPTemplate\",\"m_0_21\",],[{\n __m: \"m_0_21\"\n },],2,],[\"m_0_1y\",[\"XHPTemplate\",\"m_0_23\",],[{\n __m: \"m_0_23\"\n },],2,],[\"m_0_1z\",[\"XHPTemplate\",\"m_0_25\",],[{\n __m: \"m_0_25\"\n },],2,],],\n define: [[\"ChatOptionsInitialData\",[],{\n sound: 1,\n browser_notif: 0,\n sidebar_mode: true\n },13,],[\"ChatSidebarCalloutData\",[],{\n isShown: false\n },14,],[\"ChannelImplementation\",[\"ChannelConnection\",],{\n instance: {\n __m: \"ChannelConnection\"\n }\n },150,],[\
// 1327
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s47467a92b28545709cf1d06718377123def554be");
// 1328
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n pagelet_sidebar: {\n container_id: \"u_0_x\"\n }\n },\n jsmods: {\n require: [[\"ChatSidebar\",\"init\",[\"m_0_1d\",\"m_0_1e\",\"m_0_1f\",],[{\n __m: \"m_0_1d\"\n },{\n __m: \"m_0_1e\"\n },{\n __m: \"m_0_1f\"\n },[],],],[\"ChatSidebarLog\",\"start\",[],[],],[\"m_0_1g\",],[\"m_0_1i\",],[\"m_0_1f\",],[\"Typeahead\",\"init\",[\"m_0_1j\",\"m_0_1f\",],[{\n __m: \"m_0_1j\"\n },{\n __m: \"m_0_1f\"\n },[\"chatTypeahead\",\"buildBestAvailableNames\",\"showLoadingIndicator\",],null,],],[\"ClearableTypeahead\",\"resetOnCloseButtonClick\",[\"m_0_1f\",\"m_0_1l\",],[{\n __m: \"m_0_1f\"\n },{\n __m: \"m_0_1l\"\n },],],[\"m_0_1o\",],[\"SelectorDeprecated\",],[\"m_0_1p\",],[\"Layer\",\"init\",[\"m_0_1p\",\"m_0_1q\",],[{\n __m: \"m_0_1p\"\n },{\n __m: \"m_0_1q\"\n },],],[\"m_0_1e\",],[\"PresencePrivacy\",],],\n instances: [[\"m_0_1i\",[\"ScrollableArea\",\"m_0_1h\",],[{\n __m: \"m_0_1h\"\n },{\n persistent: true\n },],1,],[\"m_0_1f\",[\"Typeahead\",\"m_0_1m\",\"ChatTypeaheadView\",\"ChatTypeaheadRenderer\",\"m_0_1j\",\"ChatTypeaheadCore\",\"m_0_1k\",],[{\n __m: \"m_0_1m\"\n },{\n node_id: \"u_0_k\",\n node: null,\n ctor: {\n __m: \"ChatTypeaheadView\"\n },\n options: {\n autoSelect: true,\n renderer: {\n __m: \"ChatTypeaheadRenderer\"\n },\n causalElement: {\n __m: \"m_0_1j\"\n },\n minWidth: 0,\n alignment: \"left\",\n showBadges: 1\n }\n },{\n ctor: {\n __m: \"ChatTypeaheadCore\"\n },\n options: {\n keepFocused: false,\n resetOnSelect: true,\n setValueOnSelect: false\n }\n },{\n __m: \"m_0_1k\"\n },],7,],[\"m_0_1o\",[\"ChatSidebarDropdown\",\"m_0_1n\",],[{\n __m: \"m_0_1n\"\n },null,],1,],[\"m_0_1p\",[\"LegacyContextualDialog\",\"AccessibleLayer\",],[{\n buildWrapper: false,\n causalElement: null,\n addedBehaviors: [{\n __m: \"AccessibleLayer\"\n },]\n },],5,],[\"m_0_1e\",[\"ChatOrderedList\",\"m_0_1r\",\"m_0_1s\",\"m_0_1t\",\"m_0_1p\",],[true,{\n __m: \"m_0_1r\"\n },{\n __m: \"m_0_1s\"\n },{\n __m: \"m_0_1t\"\n },{\n __m: \"m_0_1p\"\n },null,],5,],[\"m_0_1g\",[\"LiveBarDark\",\"m_0_1e\",],[{\n __m: \"m_0_1e\"\n },[],[\"music\",\"canvas\",\"checkin\",\"travelling\",],],1,],[\"m_0_1m\",[\"ChatTypeaheadDataSource\",],[{\n alwaysPrefixMatch: true,\n showOfflineUsers: true\n },],2,],[\"m_0_1s\",[\"XHPTemplate\",\"m_0_1u\",],[{\n __m: \"m_0_1u\"\n },],2,],[\"m_0_1t\",[\"XHPTemplate\",\"m_0_1v\",],[{\n __m: \"m_0_1v\"\n },],2,],[\"m_0_1w\",[\"XHPTemplate\",\"m_0_20\",],[{\n __m: \"m_0_20\"\n },],2,],[\"m_0_1x\",[\"XHPTemplate\",\"m_0_21\",],[{\n __m: \"m_0_21\"\n },],2,],[\"m_0_1y\",[\"XHPTemplate\",\"m_0_23\",],[{\n __m: \"m_0_23\"\n },],2,],[\"m_0_1z\",[\"XHPTemplate\",\"m_0_25\",],[{\n __m: \"m_0_25\"\n },],2,],],\n define: [[\"ChatOptionsInitialData\",[],{\n sound: 1,\n browser_notif: 0,\n sidebar_mode: true\n },13,],[\"ChatSidebarCalloutData\",[],{\n isShown: false\n },14,],[\"ChannelImplementation\",[\"ChannelConnection\",],{\n instance: {\n __m: \"ChannelConnection\"\n }\n },150,],[\"ChannelInitialData\",[],{\n channelConfig: {\n
// 1330
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n pagelet_pinned_nav: {\n container_id: \"u_0_y\"\n }\n },\n css: [\"W3Ky6\",\"0duP3\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AsDOA\",\"AyUu6\",\"25/dt\",\"bUzfU\",\"OJTM4\",],\n requires: [\"pagelet_controller::home_side_future_nav\",],\n onload: [\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"pinnedNav\\\",\\\"editEndpoint\\\":\\\"\\\\/ajax\\\\/bookmark\\\\/edit\\\\/\\\"}, [{\\\"id\\\":\\\"navItem_app_156203961126022\\\",\\\"key\\\":[\\\"app_156203961126022\\\",\\\"welcome\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":true,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_4748854339\\\",\\\"key\\\":[\\\"app_4748854339\\\",\\\"nf\\\",\\\"lf\\\",\\\"h\\\",\\\"h_chr\\\",\\\"h_nor\\\",\\\"h\\\",\\\"lf\\\",\\\"app_2915120374\\\",\\\"pp\\\",\\\"app_10150110253435258\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_217974574879787\\\",\\\"key\\\":[\\\"app_217974574879787\\\",\\\"inbox\\\"],\\\"path\\\":[\\\"\\\\/messages\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[{\\\"id\\\":\\\"navItem_other\\\",\\\"key\\\":[\\\"other\\\"],\\\"path\\\":[\\\"\\\\/messages\\\\/other\\\\/\\\"],\\\"type\\\":null,\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]},{\\\"id\\\":\\\"navItem_app_2344061033\\\",\\\"key\\\":[\\\"app_2344061033\\\"],\\\"path\\\":[\\\"\\\\/events\\\\/list\\\",\\\"\\\\/events\\\\/\\\",{\\\"regex\\\":\\\"\\\\\\\\\\\\/events\\\\\\\\\\\\/!(friends|create)\\\\\\\\\\\\/\\\"}],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2305272732\\\",\\\"key\\\":[\\\"app_2305272732\\\"],\\\"path\\\":[\\\"\\\\/javasee.cript\\\\/photos\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2356318349\\\",\\\"key\\\":[\\\"app_2356318349\\\",\\\"ff\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",],\n id: \"pagelet_pinned_nav\",\n phase: 2\n});");
// 1331
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sd045c3849f9355f31b0293e50d6587f93aee68a8");
// 1332
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n pagelet_pinned_nav: {\n container_id: \"u_0_y\"\n }\n },\n css: [\"W3Ky6\",\"0duP3\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AsDOA\",\"AyUu6\",\"25/dt\",\"bUzfU\",\"OJTM4\",],\n requires: [\"pagelet_controller::home_side_future_nav\",],\n JSBNG__onload: [\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"pinnedNav\\\",\\\"editEndpoint\\\":\\\"\\\\/ajax\\\\/bookmark\\\\/edit\\\\/\\\"}, [{\\\"id\\\":\\\"navItem_app_156203961126022\\\",\\\"key\\\":[\\\"app_156203961126022\\\",\\\"welcome\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":true,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_4748854339\\\",\\\"key\\\":[\\\"app_4748854339\\\",\\\"nf\\\",\\\"lf\\\",\\\"h\\\",\\\"h_chr\\\",\\\"h_nor\\\",\\\"h\\\",\\\"lf\\\",\\\"app_2915120374\\\",\\\"pp\\\",\\\"app_10150110253435258\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_217974574879787\\\",\\\"key\\\":[\\\"app_217974574879787\\\",\\\"inbox\\\"],\\\"path\\\":[\\\"\\\\/messages\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[{\\\"id\\\":\\\"navItem_other\\\",\\\"key\\\":[\\\"other\\\"],\\\"path\\\":[\\\"\\\\/messages\\\\/other\\\\/\\\"],\\\"type\\\":null,\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]},{\\\"id\\\":\\\"navItem_app_2344061033\\\",\\\"key\\\":[\\\"app_2344061033\\\"],\\\"path\\\":[\\\"\\\\/events\\\\/list\\\",\\\"\\\\/events\\\\/\\\",{\\\"regex\\\":\\\"\\\\\\\\\\\\/events\\\\\\\\\\\\/!(friends|create)\\\\\\\\\\\\/\\\"}],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2305272732\\\",\\\"key\\\":[\\\"app_2305272732\\\"],\\\"path\\\":[\\\"\\\\/javasee.cript\\\\/photos\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2356318349\\\",\\\"key\\\":[\\\"app_2356318349\\\",\\\"ff\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",],\n id: \"pagelet_pinned_nav\",\n phase: 2\n});");
// 1334
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n is_last: true,\n is_second_to_last_phase: true,\n content: {\n pagelet_bookmark_nav: {\n container_id: \"u_0_z\"\n }\n },\n css: [\"W3Ky6\",\"0duP3\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AsDOA\",\"AyUu6\",\"25/dt\",\"bUzfU\",\"OJTM4\",],\n requires: [\"pagelet_controller::home_side_future_nav\",],\n onload: [\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"appsNav\\\",\\\"editEndpoint\\\":null}, [{\\\"id\\\":\\\"navItem_app_140332009231\\\",\\\"key\\\":[\\\"app_140332009231\\\",\\\"games\\\"],\\\"path\\\":[\\\"\\\\/appcenter\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_261369767293002\\\",\\\"key\\\":[\\\"app_261369767293002\\\",\\\"appsandgames\\\"],\\\"path\\\":[\\\"\\\\/apps\\\\/feed\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_119960514742544\\\",\\\"key\\\":[\\\"app_119960514742544\\\",\\\"music\\\"],\\\"path\\\":[\\\"\\\\/music\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2347471856\\\",\\\"key\\\":[\\\"app_2347471856\\\",\\\"notes\\\"],\\\"path\\\":[\\\"\\\\/notes\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2309869772\\\",\\\"key\\\":[\\\"app_2309869772\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_183217215062060\\\",\\\"key\\\":[\\\"app_183217215062060\\\",\\\"poke\\\"],\\\"path\\\":[\\\"\\\\/pokes\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"groupsNav\\\",\\\"editEndpoint\\\":null}, []);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"pagesNav\\\",\\\"editEndpoint\\\":null}, [{\\\"id\\\":\\\"navItem_app_140472815972081\\\",\\\"key\\\":[\\\"app_140472815972081\\\",\\\"pages\\\"],\\\"path\\\":[\\\"\\\\/pages\\\\/feed\\\"],\\\"type\\\":\\\"pages\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_357937250942127\\\",\\\"key\\\":[\\\"app_357937250942127\\\",\\\"addpage\\\"],\\\"path\\\":[\\\"\\\\/addpage\\\"],\\\"type\\\":\\\"pages\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"listsNav\\\",\\\"editEndpoint\\\":null}, [{\\\"id\\\":\\\"navItem_fl_1374283956118870\\\",\\\"key\\\":[\\\"fl_1374283956118870\\\"],\\\"path\\\":[\\\"\\\\/lists\\\\/1374283956118870\\\"],\\\"type\\\":\\\"lists\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_fl_1389747037905895\\\",\\\"key\\\":[\\\"fl_1389747037905895\\\"],\\\"path\\\":[\\\"\\\\/lists\\\\/1389747037905895\\\"],\\\"type\\\":\\\"lists\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_fl_1389747041239228\\\",\\\"key\\\":[\\\"fl_1389747041239228\\\"],\\\"path\\\":[\\\"\\\\/lists\\\\/1389747041239228\\\"],\\\"type\\\":\\\"lists\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",\"FutureSideNav.getInstance().initSect
// 1335
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s0304d00fe4437d067a621543ea4d1d14447910fd");
// 1336
geval("bigPipe.onPageletArrive({\n is_last: true,\n is_second_to_last_phase: true,\n JSBNG__content: {\n pagelet_bookmark_nav: {\n container_id: \"u_0_z\"\n }\n },\n css: [\"W3Ky6\",\"0duP3\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AsDOA\",\"AyUu6\",\"25/dt\",\"bUzfU\",\"OJTM4\",],\n requires: [\"pagelet_controller::home_side_future_nav\",],\n JSBNG__onload: [\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"appsNav\\\",\\\"editEndpoint\\\":null}, [{\\\"id\\\":\\\"navItem_app_140332009231\\\",\\\"key\\\":[\\\"app_140332009231\\\",\\\"games\\\"],\\\"path\\\":[\\\"\\\\/appcenter\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_261369767293002\\\",\\\"key\\\":[\\\"app_261369767293002\\\",\\\"appsandgames\\\"],\\\"path\\\":[\\\"\\\\/apps\\\\/feed\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_119960514742544\\\",\\\"key\\\":[\\\"app_119960514742544\\\",\\\"music\\\"],\\\"path\\\":[\\\"\\\\/music\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2347471856\\\",\\\"key\\\":[\\\"app_2347471856\\\",\\\"notes\\\"],\\\"path\\\":[\\\"\\\\/notes\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_2309869772\\\",\\\"key\\\":[\\\"app_2309869772\\\"],\\\"path\\\":[\\\"\\\\/\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_183217215062060\\\",\\\"key\\\":[\\\"app_183217215062060\\\",\\\"poke\\\"],\\\"path\\\":[\\\"\\\\/pokes\\\"],\\\"type\\\":\\\"apps\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"groupsNav\\\",\\\"editEndpoint\\\":null}, []);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"pagesNav\\\",\\\"editEndpoint\\\":null}, [{\\\"id\\\":\\\"navItem_app_140472815972081\\\",\\\"key\\\":[\\\"app_140472815972081\\\",\\\"pages\\\"],\\\"path\\\":[\\\"\\\\/pages\\\\/feed\\\"],\\\"type\\\":\\\"pages\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_app_357937250942127\\\",\\\"key\\\":[\\\"app_357937250942127\\\",\\\"addpage\\\"],\\\"path\\\":[\\\"\\\\/addpage\\\"],\\\"type\\\":\\\"pages\\\",\\\"endpoint\\\":null,\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"listsNav\\\",\\\"editEndpoint\\\":null}, [{\\\"id\\\":\\\"navItem_fl_1374283956118870\\\",\\\"key\\\":[\\\"fl_1374283956118870\\\"],\\\"path\\\":[\\\"\\\\/lists\\\\/1374283956118870\\\"],\\\"type\\\":\\\"lists\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_fl_1389747037905895\\\",\\\"key\\\":[\\\"fl_1389747037905895\\\"],\\\"path\\\":[\\\"\\\\/lists\\\\/1389747037905895\\\"],\\\"type\\\":\\\"lists\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]},{\\\"id\\\":\\\"navItem_fl_1389747041239228\\\",\\\"key\\\":[\\\"fl_1389747041239228\\\"],\\\"path\\\":[\\\"\\\\/lists\\\\/1389747041239228\\\"],\\\"type\\\":\\\"lists\\\",\\\"endpoint\\\":\\\"\\\\/ajax\\\\/home\\\\/generic.php\\\",\\\"selected\\\":false,\\\"highlighted\\\":false,\\\"children\\\":[]}]);\",\"FutureSideNav.getInstance().initSection({\\\"id\\\":\\\"interestsNav\\\",\\\"editEndpoint
// 1338
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n pagelet_dock: {\n container_id: \"u_0_1o\"\n }\n },\n jsmods: {\n require: [[\"MusicButtonManager\",\"init\",[],[[\"music.song\",],],],[\"initLiveMessageReceiver\",],[\"Dock\",\"init\",[\"m_0_27\",],[{\n __m: \"m_0_27\"\n },],],[\"React\",\"constructAndRenderComponent\",[\"NotificationBeeper.react\",\"m_0_28\",],[{\n __m: \"NotificationBeeper.react\"\n },{\n unseenVsUnread: false,\n canPause: false,\n shouldLogImpressions: false,\n soundPath: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/yy/r/odIeERVR1c5.mp3\",\n soundEnabled: true,\n tracking: \"{\\\"ref\\\":\\\"beeper\\\",\\\"jewel\\\":\\\"notifications\\\",\\\"type\\\":\\\"click2canvas\\\"}\"\n },{\n __m: \"m_0_28\"\n },],],[\"ChatApp\",\"init\",[\"m_0_29\",\"m_0_2a\",],[{\n __m: \"m_0_29\"\n },{\n __m: \"m_0_2a\"\n },{\n payload_source: \"server_initial_data\"\n },],],[\"ChatOptions\",],[\"ShortProfiles\",\"setMulti\",[],[{\n 100006118350059: {\n id: \"100006118350059\",\n name: \"Javasee Cript\",\n firstName: \"Javasee\",\n vanity: \"javasee.cript\",\n thumbSrc: \"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/s32x32/275646_100006118350059_324335073_q.jpg\",\n uri: \"http://jsbngssl.www.facebook.com/javasee.cript\",\n gender: 2,\n type: \"user\",\n is_friend: false,\n social_snippets: null,\n showVideoPromo: false,\n searchTokens: [\"Cript\",\"Javasee\",]\n }\n },],],[\"m_0_2c\",],[\"m_0_2e\",],[\"Typeahead\",\"init\",[\"m_0_2f\",\"m_0_2e\",],[{\n __m: \"m_0_2f\"\n },{\n __m: \"m_0_2e\"\n },[\"chatTypeahead\",\"buildBestAvailableNames\",\"showLoadingIndicator\",],null,],],[\"ClearableTypeahead\",\"resetOnCloseButtonClick\",[\"m_0_2e\",\"m_0_2h\",],[{\n __m: \"m_0_2e\"\n },{\n __m: \"m_0_2h\"\n },],],[\"m_0_2k\",],[\"m_0_2l\",],[\"Layer\",\"init\",[\"m_0_2l\",\"m_0_2m\",],[{\n __m: \"m_0_2l\"\n },{\n __m: \"m_0_2m\"\n },],],[\"m_0_2d\",],[\"m_0_4s\",],[\"Typeahead\",\"init\",[\"m_0_4q\",\"m_0_4s\",],[{\n __m: \"m_0_4q\"\n },{\n __m: \"m_0_4s\"\n },[],null,],],],\n instances: [[\"m_0_2c\",[\"BuddyListNub\",\"m_0_2b\",\"m_0_2d\",\"m_0_2e\",],[{\n __m: \"m_0_2b\"\n },{\n __m: \"m_0_2d\"\n },{\n __m: \"m_0_2e\"\n },],1,],[\"m_0_2e\",[\"Typeahead\",\"m_0_2i\",\"ChatTypeaheadView\",\"ChatTypeaheadRenderer\",\"m_0_2f\",\"ChatTypeaheadCore\",\"m_0_2g\",],[{\n __m: \"m_0_2i\"\n },{\n node_id: \"u_0_13\",\n node: null,\n ctor: {\n __m: \"ChatTypeaheadView\"\n },\n options: {\n autoSelect: true,\n renderer: {\n __m: \"ChatTypeaheadRenderer\"\n },\n causalElement: {\n __m: \"m_0_2f\"\n },\n minWidth: 0,\n alignment: \"left\",\n showBadges: 1\n }\n },{\n ctor: {\n __m: \"ChatTypeaheadCore\"\n },\n options: {\n keepFocused: false,\n resetOnSelect: true,\n setValueOnSelect: false\n }\n },{\n __m: \"m_0_2g\"\n },],7,],[\"m_0_2k\",[\"ChatSidebarDropdown\",\"m_0_2j\",],[{\n __m: \"m_0_2j\"\n },null,],1,],[\"m_0_2l\",[\"LegacyContextualDialog\",\"AccessibleLayer\",],[{\n buildWrapper: false,\n causalElement:
// 1339
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"sbef7b505199b5c5088f13e778f4a6e67f70c6c49");
// 1340
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n pagelet_dock: {\n container_id: \"u_0_1o\"\n }\n },\n jsmods: {\n require: [[\"MusicButtonManager\",\"init\",[],[[\"music.song\",],],],[\"initLiveMessageReceiver\",],[\"Dock\",\"init\",[\"m_0_27\",],[{\n __m: \"m_0_27\"\n },],],[\"React\",\"constructAndRenderComponent\",[\"NotificationBeeper.react\",\"m_0_28\",],[{\n __m: \"NotificationBeeper.react\"\n },{\n unseenVsUnread: false,\n canPause: false,\n shouldLogImpressions: false,\n soundPath: \"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/yy/r/odIeERVR1c5.mp3\",\n soundEnabled: true,\n tracking: \"{\\\"ref\\\":\\\"beeper\\\",\\\"jewel\\\":\\\"notifications\\\",\\\"type\\\":\\\"click2canvas\\\"}\"\n },{\n __m: \"m_0_28\"\n },],],[\"ChatApp\",\"init\",[\"m_0_29\",\"m_0_2a\",],[{\n __m: \"m_0_29\"\n },{\n __m: \"m_0_2a\"\n },{\n payload_source: \"server_initial_data\"\n },],],[\"ChatOptions\",],[\"ShortProfiles\",\"setMulti\",[],[{\n 100006118350059: {\n id: \"100006118350059\",\n JSBNG__name: \"Javasee Cript\",\n firstName: \"Javasee\",\n vanity: \"javasee.cript\",\n thumbSrc: \"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/s32x32/275646_100006118350059_324335073_q.jpg\",\n uri: \"http://jsbngssl.www.facebook.com/javasee.cript\",\n gender: 2,\n type: \"user\",\n is_friend: false,\n social_snippets: null,\n showVideoPromo: false,\n searchTokens: [\"Cript\",\"Javasee\",]\n }\n },],],[\"m_0_2c\",],[\"m_0_2e\",],[\"Typeahead\",\"init\",[\"m_0_2f\",\"m_0_2e\",],[{\n __m: \"m_0_2f\"\n },{\n __m: \"m_0_2e\"\n },[\"chatTypeahead\",\"buildBestAvailableNames\",\"showLoadingIndicator\",],null,],],[\"ClearableTypeahead\",\"resetOnCloseButtonClick\",[\"m_0_2e\",\"m_0_2h\",],[{\n __m: \"m_0_2e\"\n },{\n __m: \"m_0_2h\"\n },],],[\"m_0_2k\",],[\"m_0_2l\",],[\"Layer\",\"init\",[\"m_0_2l\",\"m_0_2m\",],[{\n __m: \"m_0_2l\"\n },{\n __m: \"m_0_2m\"\n },],],[\"m_0_2d\",],[\"m_0_4s\",],[\"Typeahead\",\"init\",[\"m_0_4q\",\"m_0_4s\",],[{\n __m: \"m_0_4q\"\n },{\n __m: \"m_0_4s\"\n },[],null,],],],\n instances: [[\"m_0_2c\",[\"BuddyListNub\",\"m_0_2b\",\"m_0_2d\",\"m_0_2e\",],[{\n __m: \"m_0_2b\"\n },{\n __m: \"m_0_2d\"\n },{\n __m: \"m_0_2e\"\n },],1,],[\"m_0_2e\",[\"Typeahead\",\"m_0_2i\",\"ChatTypeaheadView\",\"ChatTypeaheadRenderer\",\"m_0_2f\",\"ChatTypeaheadCore\",\"m_0_2g\",],[{\n __m: \"m_0_2i\"\n },{\n node_id: \"u_0_13\",\n node: null,\n ctor: {\n __m: \"ChatTypeaheadView\"\n },\n options: {\n autoSelect: true,\n renderer: {\n __m: \"ChatTypeaheadRenderer\"\n },\n causalElement: {\n __m: \"m_0_2f\"\n },\n minWidth: 0,\n alignment: \"left\",\n showBadges: 1\n }\n },{\n ctor: {\n __m: \"ChatTypeaheadCore\"\n },\n options: {\n keepFocused: false,\n resetOnSelect: true,\n setValueOnSelect: false\n }\n },{\n __m: \"m_0_2g\"\n },],7,],[\"m_0_2k\",[\"ChatSidebarDropdown\",\"m_0_2j\",],[{\n __m: \"m_0_2j\"\n },null,],1,],[\"m_0_2l\",[\"LegacyContextualDialog\",\"AccessibleLayer\",],[{\n buildWrapper: false,\n causalElement: null,\n addedBehaviors: [{\n
// 1342
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n content: {\n fbRequestsList: {\n container_id: \"u_0_1p\"\n }\n },\n css: [\"W3Ky6\",],\n bootloadable: {\n },\n resource_map: {\n },\n id: \"fbRequestsList\",\n phase: 3\n});");
// 1343
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s36ac659c411571829b74b36874dd86d2abc554af");
// 1344
geval("bigPipe.onPageletArrive({\n JSBNG__content: {\n fbRequestsList: {\n container_id: \"u_0_1p\"\n }\n },\n css: [\"W3Ky6\",],\n bootloadable: {\n },\n resource_map: {\n },\n id: \"fbRequestsList\",\n phase: 3\n});");
// 1346
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"bigPipe.onPageletArrive({\n id: \"\",\n phase: 3,\n jsmods: {\n },\n is_last: true,\n css: [\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AyUu6\",\"OJTM4\",\"AsDOA\",\"63VzN\",\"4vv8/\",\"u//Ut\",\"1XxM1\",\"5dFET\",\"hfrQl\",\"C6rJk\",],\n the_end: true\n});");
// 1347
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s0143c850f445614ea7a441221381555af42f3c7e");
// 1348
geval("bigPipe.onPageletArrive({\n id: \"\",\n phase: 3,\n jsmods: {\n },\n is_last: true,\n css: [\"W3Ky6\",\"0duP3\",\"vFtag\",\"ynBUm\",\"xqZGj\",\"yagwf\",],\n bootloadable: {\n },\n resource_map: {\n },\n js: [\"AyUu6\",\"OJTM4\",\"AsDOA\",\"63VzN\",\"4vv8/\",\"u//Ut\",\"1XxM1\",\"5dFET\",\"hfrQl\",\"C6rJk\",],\n the_end: true\n});");
// 1351
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_222[0], o0,o18);
// undefined
o18 = null;
// 1467
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"if (self.CavalryLogger) {\n CavalryLogger.start_js([\"63VzN\",]);\n}\n;\n__d(\"NotificationURI\", [\"URI\",], function(a, b, c, d, e, f) {\n var g = b(\"URI\"), h = {\n localize: function(i) {\n i = g(i);\n if (!i.isFacebookURI()) {\n return i.toString()\n };\n var j = i.getSubdomain();\n return i.getUnqualifiedURI().getQualifiedURI().setSubdomain(j).toString();\n },\n snowliftable: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && i.getQueryData().hasOwnProperty(\"fbid\"));\n },\n isVaultSetURI: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && (i.getPath() == \"/ajax/vault/sharer_preview.php\"));\n }\n };\n e.exports = h;\n});\n__d(\"legacy:fbdesktop-detect\", [\"FBDesktopDetect\",], function(a, b, c, d) {\n a.FbDesktopDetect = b(\"FBDesktopDetect\");\n}, 3);\n__d(\"IntlUtils\", [\"AsyncRequest\",\"Cookie\",\"goURI\",], function(a, b, c, d, e, f) {\n var g = b(\"AsyncRequest\"), h = b(\"Cookie\"), i = b(\"goURI\"), j = {\n setXmode: function(k) {\n (new g()).setURI(\"/ajax/intl/save_xmode.php\").setData({\n xmode: k\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setAmode: function(k) {\n new g().setURI(\"/ajax/intl/save_xmode.php\").setData({\n amode: k,\n app: false\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setLocale: function(k, l, m, n) {\n if (!m) {\n m = k.options[k.selectedIndex].value;\n };\n j.saveLocale(m, true, null, l, n);\n },\n saveLocale: function(k, l, m, n, o) {\n new g().setURI(\"/ajax/intl/save_locale.php\").setData({\n aloc: k,\n source: n,\n app_only: o\n }).setHandler(function(p) {\n if (l) {\n document.location.reload();\n }\n else i(m);\n ;\n }).send();\n },\n setLocaleCookie: function(k, l) {\n h.set(\"locale\", k, ((7 * 24) * 3600000));\n i(l);\n }\n };\n e.exports = j;\n});\n__d(\"legacy:intl-base\", [\"IntlUtils\",], function(a, b, c, d) {\n var e = b(\"IntlUtils\");\n a.intl_set_xmode = e.setXmode;\n a.intl_set_amode = e.setAmode;\n a.intl_set_locale = e.setLocale;\n a.intl_save_locale = e.saveLocale;\n a.intl_set_cookie_locale = e.setLocaleCookie;\n}, 3);\n__d(\"legacy:onload-action\", [\"OnloadHooks\",], function(a, b, c, d) {\n var e = b(\"OnloadHooks\");\n a._onloadHook = e._onloadHook;\n a._onafterloadHook = e._onafterloadHook;\n a.runHook = e.runHook;\n a.runHooks = e.runHooks;\n a.keep_window_set_as_loaded = e.keepWindowSetAsLoaded;\n}, 3);\n__d(\"LoginFormController\", [\"Event\",\"ge\",\"Button\",], function(a, b, c, d, e, f) {\n var g = b(\"Event\"), h = b(\"ge\"), i = b(\"Button\");\n f.init = function(j, k) {\n g.listen(j, \"submit\", function() {\n i.setEnabled(k, false);\n i.setEnabled.curry(k, true).defer(15000);\n });\n var l = h(\"lgnjs\");\n if (l) {\n l.value = parseInt((Date.now() / 1000), 10);\n };\n };\n});\n__d(\"ClickRefUtils\", [], function(a, b, c, d, e, f) {\n var g = {\n get_intern_ref: function(h) {\n if (!!h) {\n var i = {\n profile_minifeed: 1,\n gb_content_and_toolbar: 1,\n gb_muffin_area: 1,\n ego: 1,\n bookmarks_menu: 1,\n
// 1510
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"if (self.CavalryLogger) {\n CavalryLogger.start_js([\"63VzN\",]);\n}\n;\n__d(\"NotificationURI\", [\"URI\",], function(a, b, c, d, e, f) {\n var g = b(\"URI\"), h = {\n localize: function(i) {\n i = g(i);\n if (!i.isFacebookURI()) {\n return i.toString()\n };\n var j = i.getSubdomain();\n return i.getUnqualifiedURI().getQualifiedURI().setSubdomain(j).toString();\n },\n snowliftable: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && i.getQueryData().hasOwnProperty(\"fbid\"));\n },\n isVaultSetURI: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && (i.getPath() == \"/ajax/vault/sharer_preview.php\"));\n }\n };\n e.exports = h;\n});\n__d(\"legacy:fbdesktop-detect\", [\"FBDesktopDetect\",], function(a, b, c, d) {\n a.FbDesktopDetect = b(\"FBDesktopDetect\");\n}, 3);\n__d(\"IntlUtils\", [\"AsyncRequest\",\"Cookie\",\"goURI\",], function(a, b, c, d, e, f) {\n var g = b(\"AsyncRequest\"), h = b(\"Cookie\"), i = b(\"goURI\"), j = {\n setXmode: function(k) {\n (new g()).setURI(\"/ajax/intl/save_xmode.php\").setData({\n xmode: k\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setAmode: function(k) {\n new g().setURI(\"/ajax/intl/save_xmode.php\").setData({\n amode: k,\n app: false\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setLocale: function(k, l, m, n) {\n if (!m) {\n m = k.options[k.selectedIndex].value;\n };\n j.saveLocale(m, true, null, l, n);\n },\n saveLocale: function(k, l, m, n, o) {\n new g().setURI(\"/ajax/intl/save_locale.php\").setData({\n aloc: k,\n source: n,\n app_only: o\n }).setHandler(function(p) {\n if (l) {\n document.location.reload();\n }\n else i(m);\n ;\n }).send();\n },\n setLocaleCookie: function(k, l) {\n h.set(\"locale\", k, ((7 * 24) * 3600000));\n i(l);\n }\n };\n e.exports = j;\n});\n__d(\"legacy:intl-base\", [\"IntlUtils\",], function(a, b, c, d) {\n var e = b(\"IntlUtils\");\n a.intl_set_xmode = e.setXmode;\n a.intl_set_amode = e.setAmode;\n a.intl_set_locale = e.setLocale;\n a.intl_save_locale = e.saveLocale;\n a.intl_set_cookie_locale = e.setLocaleCookie;\n}, 3);\n__d(\"legacy:onload-action\", [\"OnloadHooks\",], function(a, b, c, d) {\n var e = b(\"OnloadHooks\");\n a._onloadHook = e._onloadHook;\n a._onafterloadHook = e._onafterloadHook;\n a.runHook = e.runHook;\n a.runHooks = e.runHooks;\n a.keep_window_set_as_loaded = e.keepWindowSetAsLoaded;\n}, 3);\n__d(\"LoginFormController\", [\"Event\",\"ge\",\"Button\",], function(a, b, c, d, e, f) {\n var g = b(\"Event\"), h = b(\"ge\"), i = b(\"Button\");\n f.init = function(j, k) {\n g.listen(j, \"submit\", function() {\n i.setEnabled(k, false);\n i.setEnabled.curry(k, true).defer(15000);\n });\n var l = h(\"lgnjs\");\n if (l) {\n l.value = parseInt((Date.now() / 1000), 10);\n };\n };\n});\n__d(\"ClickRefUtils\", [], function(a, b, c, d, e, f) {\n var g = {\n get_intern_ref: function(h) {\n if (!!h) {\n var i = {\n profile_minifeed: 1,\n gb_content_and_toolbar: 1,\n gb_muffin_area: 1,\n ego: 1,\n bookmarks_menu: 1,\n
// 1511
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"AsDOA\",]);\n}\n;\n;\n__d(\"AdblockDetector\", [], function(a, b, c, d, e, f) {\n var g = \"data-adblock-hash\", h = {\n }, i = 0;\n function j(k, l) {\n var m = k.getAttribute(g);\n if (!m) {\n m = ++i;\n k.setAttribute(g, m);\n }\n else if (h[m]) {\n JSBNG__clearTimeout(h[m]);\n h[m] = null;\n }\n \n ;\n ;\n h[m] = JSBNG__setTimeout(function() {\n h[m] = null;\n if (!k.offsetHeight) {\n var n = k, o = JSBNG__document.getElementsByTagName(\"body\")[0];\n while (((n && ((n !== o))))) {\n if (((((((((((n.style.display === \"none\")) || ((n.style.height === \"0px\")))) || ((n.style.height === 0)))) || ((n.style.height === \"0\")))) || ((n.childNodes.length === 0))))) {\n return;\n }\n ;\n ;\n n = n.parentNode;\n };\n ;\n if (((n === o))) {\n ((l && l(k)));\n }\n ;\n ;\n }\n ;\n ;\n }, 3000);\n };\n;\n f.assertUnblocked = j;\n});\n__d(\"EagleEye\", [\"Arbiter\",\"Env\",\"OnloadEvent\",\"isInIframe\",], function(a, b, c, d, e, f) {\n var g = b(\"Arbiter\"), h = b(\"Env\"), i = b(\"OnloadEvent\"), j = b(\"isInIframe\"), k = ((h.eagleEyeConfig || {\n })), l = \"_e_\", m = ((window.JSBNG__name || \"\")).toString();\n if (((((m.length == 7)) && ((m.substr(0, 3) == l))))) {\n m = m.substr(3);\n }\n else {\n m = k.seed;\n if (!j()) {\n window.JSBNG__name = ((l + m));\n }\n ;\n ;\n }\n;\n;\n var n = ((((((window.JSBNG__location.protocol == \"https:\")) && JSBNG__document.cookie.match(/\\bcsm=1/))) ? \"; secure\" : \"\")), o = ((((l + m)) + \"_\")), p = new JSBNG__Date(((JSBNG__Date.now() + 604800000))).toGMTString(), q = window.JSBNG__location.hostname.replace(/^.*(facebook\\..*)$/i, \"$1\"), r = ((((((((\"; expires=\" + p)) + \";path=/; domain=\")) + q)) + n)), s = 0, t, u = ((k.JSBNG__sessionStorage && a.JSBNG__sessionStorage)), v = JSBNG__document.cookie.length, w = false, x = JSBNG__Date.now();\n function y(ca) {\n return ((((((((o + (s++))) + \"=\")) + encodeURIComponent(ca))) + r));\n };\n;\n function z() {\n var ca = [], da = false, ea = 0, fa = 0;\n this.isEmpty = function() {\n return !ca.length;\n };\n this.enqueue = function(ga, ha) {\n if (ha) {\n ca.unshift(ga);\n }\n else ca.push(ga);\n ;\n ;\n };\n this.dequeue = function() {\n ca.shift();\n };\n this.peek = function() {\n return ca[0];\n };\n this.clear = function(ga) {\n v = Math.min(v, JSBNG__document.cookie.length);\n if (((!w && ((((new JSBNG__Date() - x)) > 60000))))) {\n w = true;\n }\n ;\n ;\n var ha = ((!ga && ((JSBNG__document.cookie.search(l) >= 0)))), ia = !!h.cookie_header_limit, ja = ((h.cookie_count_limit || 19)), ka = ((h.cookie_header_limit || 3950)), la = ((ja - 5)), ma = ((ka - 1000));\n while (!this.isEmpty()) {\n var na = y(this.peek());\n if (((ia && ((((na.length > ka)) || ((w && ((((na.length + v)) > ka))))))))) {\n this.dequeue();\n continue;\n }\n ;\n ;\n if (((((ha || ia)) && ((((((JSBNG__document.cookie.length + na.length)) > ka)) || ((JSBNG__document.cookie.split(\";\").length > ja))))))) {\n break;\n }\n ;\n ;\n JSBNG__document.cookie = na;\n ha = true;\n this.dequeue();\n };\n ;\n var oa = JSBNG_
// 1554
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"if (self.CavalryLogger) {\n CavalryLogger.start_js([\"63VzN\",]);\n}\n;\n__d(\"NotificationURI\", [\"URI\",], function(a, b, c, d, e, f) {\n var g = b(\"URI\"), h = {\n localize: function(i) {\n i = g(i);\n if (!i.isFacebookURI()) {\n return i.toString()\n };\n var j = i.getSubdomain();\n return i.getUnqualifiedURI().getQualifiedURI().setSubdomain(j).toString();\n },\n snowliftable: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && i.getQueryData().hasOwnProperty(\"fbid\"));\n },\n isVaultSetURI: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && (i.getPath() == \"/ajax/vault/sharer_preview.php\"));\n }\n };\n e.exports = h;\n});\n__d(\"legacy:fbdesktop-detect\", [\"FBDesktopDetect\",], function(a, b, c, d) {\n a.FbDesktopDetect = b(\"FBDesktopDetect\");\n}, 3);\n__d(\"IntlUtils\", [\"AsyncRequest\",\"Cookie\",\"goURI\",], function(a, b, c, d, e, f) {\n var g = b(\"AsyncRequest\"), h = b(\"Cookie\"), i = b(\"goURI\"), j = {\n setXmode: function(k) {\n (new g()).setURI(\"/ajax/intl/save_xmode.php\").setData({\n xmode: k\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setAmode: function(k) {\n new g().setURI(\"/ajax/intl/save_xmode.php\").setData({\n amode: k,\n app: false\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setLocale: function(k, l, m, n) {\n if (!m) {\n m = k.options[k.selectedIndex].value;\n };\n j.saveLocale(m, true, null, l, n);\n },\n saveLocale: function(k, l, m, n, o) {\n new g().setURI(\"/ajax/intl/save_locale.php\").setData({\n aloc: k,\n source: n,\n app_only: o\n }).setHandler(function(p) {\n if (l) {\n document.location.reload();\n }\n else i(m);\n ;\n }).send();\n },\n setLocaleCookie: function(k, l) {\n h.set(\"locale\", k, ((7 * 24) * 3600000));\n i(l);\n }\n };\n e.exports = j;\n});\n__d(\"legacy:intl-base\", [\"IntlUtils\",], function(a, b, c, d) {\n var e = b(\"IntlUtils\");\n a.intl_set_xmode = e.setXmode;\n a.intl_set_amode = e.setAmode;\n a.intl_set_locale = e.setLocale;\n a.intl_save_locale = e.saveLocale;\n a.intl_set_cookie_locale = e.setLocaleCookie;\n}, 3);\n__d(\"legacy:onload-action\", [\"OnloadHooks\",], function(a, b, c, d) {\n var e = b(\"OnloadHooks\");\n a._onloadHook = e._onloadHook;\n a._onafterloadHook = e._onafterloadHook;\n a.runHook = e.runHook;\n a.runHooks = e.runHooks;\n a.keep_window_set_as_loaded = e.keepWindowSetAsLoaded;\n}, 3);\n__d(\"LoginFormController\", [\"Event\",\"ge\",\"Button\",], function(a, b, c, d, e, f) {\n var g = b(\"Event\"), h = b(\"ge\"), i = b(\"Button\");\n f.init = function(j, k) {\n g.listen(j, \"submit\", function() {\n i.setEnabled(k, false);\n i.setEnabled.curry(k, true).defer(15000);\n });\n var l = h(\"lgnjs\");\n if (l) {\n l.value = parseInt((Date.now() / 1000), 10);\n };\n };\n});\n__d(\"ClickRefUtils\", [], function(a, b, c, d, e, f) {\n var g = {\n get_intern_ref: function(h) {\n if (!!h) {\n var i = {\n profile_minifeed: 1,\n gb_content_and_toolbar: 1,\n gb_muffin_area: 1,\n ego: 1,\n bookmarks_menu: 1,\n
// 1555
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"AsDOA\",]);\n}\n;\n;\n__d(\"AdblockDetector\", [], function(a, b, c, d, e, f) {\n var g = \"data-adblock-hash\", h = {\n }, i = 0;\n function j(k, l) {\n var m = k.getAttribute(g);\n if (!m) {\n m = ++i;\n k.setAttribute(g, m);\n }\n else if (h[m]) {\n JSBNG__clearTimeout(h[m]);\n h[m] = null;\n }\n \n ;\n ;\n h[m] = JSBNG__setTimeout(function() {\n h[m] = null;\n if (!k.offsetHeight) {\n var n = k, o = JSBNG__document.getElementsByTagName(\"body\")[0];\n while (((n && ((n !== o))))) {\n if (((((((((((n.style.display === \"none\")) || ((n.style.height === \"0px\")))) || ((n.style.height === 0)))) || ((n.style.height === \"0\")))) || ((n.childNodes.length === 0))))) {\n return;\n }\n ;\n ;\n n = n.parentNode;\n };\n ;\n if (((n === o))) {\n ((l && l(k)));\n }\n ;\n ;\n }\n ;\n ;\n }, 3000);\n };\n;\n f.assertUnblocked = j;\n});\n__d(\"EagleEye\", [\"Arbiter\",\"Env\",\"OnloadEvent\",\"isInIframe\",], function(a, b, c, d, e, f) {\n var g = b(\"Arbiter\"), h = b(\"Env\"), i = b(\"OnloadEvent\"), j = b(\"isInIframe\"), k = ((h.eagleEyeConfig || {\n })), l = \"_e_\", m = ((window.JSBNG__name || \"\")).toString();\n if (((((m.length == 7)) && ((m.substr(0, 3) == l))))) {\n m = m.substr(3);\n }\n else {\n m = k.seed;\n if (!j()) {\n window.JSBNG__name = ((l + m));\n }\n ;\n ;\n }\n;\n;\n var n = ((((((window.JSBNG__location.protocol == \"https:\")) && JSBNG__document.cookie.match(/\\bcsm=1/))) ? \"; secure\" : \"\")), o = ((((l + m)) + \"_\")), p = new JSBNG__Date(((JSBNG__Date.now() + 604800000))).toGMTString(), q = window.JSBNG__location.hostname.replace(/^.*(facebook\\..*)$/i, \"$1\"), r = ((((((((\"; expires=\" + p)) + \";path=/; domain=\")) + q)) + n)), s = 0, t, u = ((k.JSBNG__sessionStorage && a.JSBNG__sessionStorage)), v = JSBNG__document.cookie.length, w = false, x = JSBNG__Date.now();\n function y(ca) {\n return ((((((((o + (s++))) + \"=\")) + encodeURIComponent(ca))) + r));\n };\n;\n function z() {\n var ca = [], da = false, ea = 0, fa = 0;\n this.isEmpty = function() {\n return !ca.length;\n };\n this.enqueue = function(ga, ha) {\n if (ha) {\n ca.unshift(ga);\n }\n else ca.push(ga);\n ;\n ;\n };\n this.dequeue = function() {\n ca.shift();\n };\n this.peek = function() {\n return ca[0];\n };\n this.clear = function(ga) {\n v = Math.min(v, JSBNG__document.cookie.length);\n if (((!w && ((((new JSBNG__Date() - x)) > 60000))))) {\n w = true;\n }\n ;\n ;\n var ha = ((!ga && ((JSBNG__document.cookie.search(l) >= 0)))), ia = !!h.cookie_header_limit, ja = ((h.cookie_count_limit || 19)), ka = ((h.cookie_header_limit || 3950)), la = ((ja - 5)), ma = ((ka - 1000));\n while (!this.isEmpty()) {\n var na = y(this.peek());\n if (((ia && ((((na.length > ka)) || ((w && ((((na.length + v)) > ka))))))))) {\n this.dequeue();\n continue;\n }\n ;\n ;\n if (((((ha || ia)) && ((((((JSBNG__document.cookie.length + na.length)) > ka)) || ((JSBNG__document.cookie.split(\";\").length > ja))))))) {\n break;\n }\n ;\n ;\n JSBNG__document.cookie = na;\n ha = true;\n this.dequeue();\n };\n ;\n var oa = JSBNG_
// 1556
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"4vv8/\",]);\n}\n;\n;\n__d(\"TimeSpentBitArrayLogger\", [\"UserActivity\",\"copyProperties\",\"Banzai\",\"BanzaiODS\",\"TimeSpentArray\",\"Arbiter\",\"TimeSpentConfig\",], function(a, b, c, d, e, f) {\n var g = b(\"UserActivity\"), h = b(\"copyProperties\"), i = b(\"Banzai\"), j = b(\"BanzaiODS\"), k = b(\"TimeSpentArray\"), l = b(\"Arbiter\"), m = b(\"TimeSpentConfig\"), n = {\n store: true,\n delay: m.initial_delay,\n retry: true\n };\n function o(p) {\n if (i.isEnabled(\"time_spent_bit_array\")) {\n l.inform(\"timespent/tosbitdataposted\", h({\n }, p));\n i.post(\"time_spent_bit_array\", h({\n }, p), n);\n n.delay = m.delay;\n }\n ;\n ;\n };\n;\n e.exports = {\n init: function(p) {\n if (((window.JSBNG__top == window.JSBNG__self))) {\n g.subscribe(function(q, r) {\n k.update(r.last_inform);\n });\n k.init(o, m.initial_timeout);\n j.bumpEntityKey(\"ms.time_spent.qa.www\", \"time_spent.bits.js_initialized\");\n }\n ;\n ;\n }\n };\n});");
// 2056
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"if (self.CavalryLogger) {\n CavalryLogger.start_js([\"63VzN\",]);\n}\n;\n__d(\"NotificationURI\", [\"URI\",], function(a, b, c, d, e, f) {\n var g = b(\"URI\"), h = {\n localize: function(i) {\n i = g(i);\n if (!i.isFacebookURI()) {\n return i.toString()\n };\n var j = i.getSubdomain();\n return i.getUnqualifiedURI().getQualifiedURI().setSubdomain(j).toString();\n },\n snowliftable: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && i.getQueryData().hasOwnProperty(\"fbid\"));\n },\n isVaultSetURI: function(i) {\n if (!i) {\n return false\n };\n i = g(i);\n return (i.isFacebookURI() && (i.getPath() == \"/ajax/vault/sharer_preview.php\"));\n }\n };\n e.exports = h;\n});\n__d(\"legacy:fbdesktop-detect\", [\"FBDesktopDetect\",], function(a, b, c, d) {\n a.FbDesktopDetect = b(\"FBDesktopDetect\");\n}, 3);\n__d(\"IntlUtils\", [\"AsyncRequest\",\"Cookie\",\"goURI\",], function(a, b, c, d, e, f) {\n var g = b(\"AsyncRequest\"), h = b(\"Cookie\"), i = b(\"goURI\"), j = {\n setXmode: function(k) {\n (new g()).setURI(\"/ajax/intl/save_xmode.php\").setData({\n xmode: k\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setAmode: function(k) {\n new g().setURI(\"/ajax/intl/save_xmode.php\").setData({\n amode: k,\n app: false\n }).setHandler(function() {\n document.location.reload();\n }).send();\n },\n setLocale: function(k, l, m, n) {\n if (!m) {\n m = k.options[k.selectedIndex].value;\n };\n j.saveLocale(m, true, null, l, n);\n },\n saveLocale: function(k, l, m, n, o) {\n new g().setURI(\"/ajax/intl/save_locale.php\").setData({\n aloc: k,\n source: n,\n app_only: o\n }).setHandler(function(p) {\n if (l) {\n document.location.reload();\n }\n else i(m);\n ;\n }).send();\n },\n setLocaleCookie: function(k, l) {\n h.set(\"locale\", k, ((7 * 24) * 3600000));\n i(l);\n }\n };\n e.exports = j;\n});\n__d(\"legacy:intl-base\", [\"IntlUtils\",], function(a, b, c, d) {\n var e = b(\"IntlUtils\");\n a.intl_set_xmode = e.setXmode;\n a.intl_set_amode = e.setAmode;\n a.intl_set_locale = e.setLocale;\n a.intl_save_locale = e.saveLocale;\n a.intl_set_cookie_locale = e.setLocaleCookie;\n}, 3);\n__d(\"legacy:onload-action\", [\"OnloadHooks\",], function(a, b, c, d) {\n var e = b(\"OnloadHooks\");\n a._onloadHook = e._onloadHook;\n a._onafterloadHook = e._onafterloadHook;\n a.runHook = e.runHook;\n a.runHooks = e.runHooks;\n a.keep_window_set_as_loaded = e.keepWindowSetAsLoaded;\n}, 3);\n__d(\"LoginFormController\", [\"Event\",\"ge\",\"Button\",], function(a, b, c, d, e, f) {\n var g = b(\"Event\"), h = b(\"ge\"), i = b(\"Button\");\n f.init = function(j, k) {\n g.listen(j, \"submit\", function() {\n i.setEnabled(k, false);\n i.setEnabled.curry(k, true).defer(15000);\n });\n var l = h(\"lgnjs\");\n if (l) {\n l.value = parseInt((Date.now() / 1000), 10);\n };\n };\n});\n__d(\"ClickRefUtils\", [], function(a, b, c, d, e, f) {\n var g = {\n get_intern_ref: function(h) {\n if (!!h) {\n var i = {\n profile_minifeed: 1,\n gb_content_and_toolbar: 1,\n gb_muffin_area: 1,\n ego: 1,\n bookmarks_menu: 1,\n
// 2057
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"s6de57b149b09c494ec606f82771caf93a5a215db");
// 2058
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"63VzN\",]);\n}\n;\n;\n__d(\"NotificationURI\", [\"URI\",], function(a, b, c, d, e, f) {\n var g = b(\"URI\"), h = {\n localize: function(i) {\n i = g(i);\n if (!i.isFacebookURI()) {\n return i.toString();\n }\n ;\n ;\n var j = i.getSubdomain();\n return i.getUnqualifiedURI().getQualifiedURI().setSubdomain(j).toString();\n },\n snowliftable: function(i) {\n if (!i) {\n return false;\n }\n ;\n ;\n i = g(i);\n return ((i.isFacebookURI() && i.getQueryData().hasOwnProperty(\"fbid\")));\n },\n isVaultSetURI: function(i) {\n if (!i) {\n return false;\n }\n ;\n ;\n i = g(i);\n return ((i.isFacebookURI() && ((i.getPath() == \"/ajax/vault/sharer_preview.php\"))));\n }\n };\n e.exports = h;\n});\n__d(\"legacy:fbdesktop-detect\", [\"FBDesktopDetect\",], function(a, b, c, d) {\n a.FbDesktopDetect = b(\"FBDesktopDetect\");\n}, 3);\n__d(\"IntlUtils\", [\"AsyncRequest\",\"Cookie\",\"goURI\",], function(a, b, c, d, e, f) {\n var g = b(\"AsyncRequest\"), h = b(\"Cookie\"), i = b(\"goURI\"), j = {\n setXmode: function(k) {\n (new g()).setURI(\"/ajax/intl/save_xmode.php\").setData({\n xmode: k\n }).setHandler(function() {\n JSBNG__document.JSBNG__location.reload();\n }).send();\n },\n setAmode: function(k) {\n new g().setURI(\"/ajax/intl/save_xmode.php\").setData({\n amode: k,\n app: false\n }).setHandler(function() {\n JSBNG__document.JSBNG__location.reload();\n }).send();\n },\n setLocale: function(k, l, m, n) {\n if (!m) {\n m = k.options[k.selectedIndex].value;\n }\n ;\n ;\n j.saveLocale(m, true, null, l, n);\n },\n saveLocale: function(k, l, m, n, o) {\n new g().setURI(\"/ajax/intl/save_locale.php\").setData({\n aloc: k,\n source: n,\n app_only: o\n }).setHandler(function(p) {\n if (l) {\n JSBNG__document.JSBNG__location.reload();\n }\n else i(m);\n ;\n ;\n }).send();\n },\n setLocaleCookie: function(k, l) {\n h.set(\"locale\", k, ((((7 * 24)) * 3600000)));\n i(l);\n }\n };\n e.exports = j;\n});\n__d(\"legacy:intl-base\", [\"IntlUtils\",], function(a, b, c, d) {\n var e = b(\"IntlUtils\");\n a.intl_set_xmode = e.setXmode;\n a.intl_set_amode = e.setAmode;\n a.intl_set_locale = e.setLocale;\n a.intl_save_locale = e.saveLocale;\n a.intl_set_cookie_locale = e.setLocaleCookie;\n}, 3);\n__d(\"legacy:onload-action\", [\"OnloadHooks\",], function(a, b, c, d) {\n var e = b(\"OnloadHooks\");\n a._onloadHook = e._onloadHook;\n a._onafterloadHook = e._onafterloadHook;\n a.runHook = e.runHook;\n a.runHooks = e.runHooks;\n a.keep_window_set_as_loaded = e.keepWindowSetAsLoaded;\n}, 3);\n__d(\"LoginFormController\", [\"JSBNG__Event\",\"ge\",\"Button\",], function(a, b, c, d, e, f) {\n var g = b(\"JSBNG__Event\"), h = b(\"ge\"), i = b(\"Button\");\n f.init = function(j, k) {\n g.listen(j, \"submit\", function() {\n i.setEnabled(k, false);\n i.setEnabled.curry(k, true).defer(15000);\n });\n var l = h(\"lgnjs\");\n if (l) {\n l.value = parseInt(((JSBNG__Date.now() / 1000)), 10);\n }\n ;\n ;\n };\n});\n__d(\"ClickRefUtils\", [], function(a, b, c, d, e, f) {\n var g = {\n get_intern_ref: function(h) {\n if (!!h) {\n var i = {\n profile_minifeed: 1,\n gb_cont
// 2067
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_190[0](o41,false,"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ye/r/v9y92rsUvEH.js",o42);
// 2169
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_190[0](o41,false,"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ye/r/v9y92rsUvEH.js",o42);
// 2263
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"1XxM1\",]);\n}\n;\n;\n__d(\"UnityObject\", [], function(a, b, c, d, e, f) {\n var g = function() {\n var h = \"Unity Player\", i = \"application/vnd.unity\", j = window, k = JSBNG__document, l = JSBNG__navigator, m = \"https://ssl-webplayer.unity3d.com/download_webplayer-3.x/\", n = \"_unity_triedjava\", o = \"undefined\", p = \"installed\", q = \"missing\", r = \"broken\", s = \"unsupported\", t = \"standard\", u = \"java\", v = \"clickonce\", w = function() {\n var fa = l.userAgent, ga = l.platform, ha = {\n w3: ((((((typeof k.getElementById != o)) && ((typeof k.getElementsByTagName != o)))) && ((typeof k.createElement != o)))),\n win: ((ga ? /win/i.test(ga) : /win/i.test(fa))),\n mac: ((ga ? /mac/i.test(ga) : /mac/i.test(fa))),\n ie: ((/msie/i.test(fa) ? parseFloat(fa.replace(/^.*msie ([0-9]+(\\.[0-9]+)?).*$/i, \"$1\")) : false)),\n ff: /firefox/i.test(fa),\n ch: /chrome/i.test(fa),\n sf: /safari/i.test(fa),\n wk: ((/webkit/i.test(fa) ? parseFloat(fa.replace(/^.*webkit\\/(\\d+(\\.\\d+)?).*$/i, \"$1\")) : false)),\n x64: ((/win64/i.test(fa) && /x64/i.test(fa))),\n moz: ((/mozilla/i.test(fa) ? parseFloat(fa.replace(/^.*mozilla\\/([0-9]+(\\.[0-9]+)?).*$/i, \"$1\")) : 0))\n }, ia = k.getElementsByTagName(\"script\");\n for (var ja = 0; ((ja < ia.length)); ++ja) {\n var ka = ia[ja].src.match(/^(.*)3\\.0\\/uo\\/UnityObject\\.js$/i);\n if (ka) {\n m = ka[1];\n break;\n }\n ;\n ;\n };\n ;\n function la(oa, pa) {\n for (var qa = 0; ((qa < Math.max(oa.length, pa.length))); ++qa) {\n var ra = ((((((qa < oa.length)) && oa[qa])) ? Number(oa[qa]) : 0)), sa = ((((((qa < pa.length)) && pa[qa])) ? Number(pa[qa]) : 0));\n if (((ra < sa))) {\n return -1;\n }\n ;\n ;\n if (((ra > sa))) {\n return 1;\n }\n ;\n ;\n };\n ;\n return 0;\n };\n ;\n function ma(oa) {\n try {\n return ((new ActiveXObject(((((\"JavaWebStart.isInstalled.\" + oa)) + \".0\"))) != null));\n } catch (pa) {\n return false;\n };\n ;\n };\n ;\n function na(oa) {\n try {\n return ((new ActiveXObject(((\"JavaPlugin.160_\" + oa))) != null));\n } catch (pa) {\n return false;\n };\n ;\n };\n ;\n ha.java = function() {\n if (l.javaEnabled()) {\n var oa = ((ha.win && ha.ff)), pa = false;\n if (((oa || pa))) {\n if (((typeof l.mimeTypes != o))) {\n var qa = ((oa ? [1,6,0,12,] : [1,4,2,0,]));\n for (var ra = 0; ((ra < l.mimeTypes.length)); ++ra) {\n if (l.mimeTypes[ra].enabledPlugin) {\n var sa = l.mimeTypes[ra].type.match(/^application\\/x-java-applet;(?:jpi-)?version=(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(?:_(\\d+))?)?)?$/);\n if (((sa != null))) {\n if (((la(qa, sa.slice(1)) <= 0))) {\n return true;\n }\n ;\n }\n ;\n ;\n }\n ;\n
// 2272
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_190[0](o41,false,"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ye/r/v9y92rsUvEH.js",o42);
// undefined
o41 = null;
// undefined
o42 = null;
// 2366
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"1XxM1\",]);\n}\n;\n;\n__d(\"UnityObject\", [], function(a, b, c, d, e, f) {\n var g = function() {\n var h = \"Unity Player\", i = \"application/vnd.unity\", j = window, k = JSBNG__document, l = JSBNG__navigator, m = \"https://ssl-webplayer.unity3d.com/download_webplayer-3.x/\", n = \"_unity_triedjava\", o = \"undefined\", p = \"installed\", q = \"missing\", r = \"broken\", s = \"unsupported\", t = \"standard\", u = \"java\", v = \"clickonce\", w = function() {\n var fa = l.userAgent, ga = l.platform, ha = {\n w3: ((((((typeof k.getElementById != o)) && ((typeof k.getElementsByTagName != o)))) && ((typeof k.createElement != o)))),\n win: ((ga ? /win/i.test(ga) : /win/i.test(fa))),\n mac: ((ga ? /mac/i.test(ga) : /mac/i.test(fa))),\n ie: ((/msie/i.test(fa) ? parseFloat(fa.replace(/^.*msie ([0-9]+(\\.[0-9]+)?).*$/i, \"$1\")) : false)),\n ff: /firefox/i.test(fa),\n ch: /chrome/i.test(fa),\n sf: /safari/i.test(fa),\n wk: ((/webkit/i.test(fa) ? parseFloat(fa.replace(/^.*webkit\\/(\\d+(\\.\\d+)?).*$/i, \"$1\")) : false)),\n x64: ((/win64/i.test(fa) && /x64/i.test(fa))),\n moz: ((/mozilla/i.test(fa) ? parseFloat(fa.replace(/^.*mozilla\\/([0-9]+(\\.[0-9]+)?).*$/i, \"$1\")) : 0))\n }, ia = k.getElementsByTagName(\"script\");\n for (var ja = 0; ((ja < ia.length)); ++ja) {\n var ka = ia[ja].src.match(/^(.*)3\\.0\\/uo\\/UnityObject\\.js$/i);\n if (ka) {\n m = ka[1];\n break;\n }\n ;\n ;\n };\n ;\n function la(oa, pa) {\n for (var qa = 0; ((qa < Math.max(oa.length, pa.length))); ++qa) {\n var ra = ((((((qa < oa.length)) && oa[qa])) ? Number(oa[qa]) : 0)), sa = ((((((qa < pa.length)) && pa[qa])) ? Number(pa[qa]) : 0));\n if (((ra < sa))) {\n return -1;\n }\n ;\n ;\n if (((ra > sa))) {\n return 1;\n }\n ;\n ;\n };\n ;\n return 0;\n };\n ;\n function ma(oa) {\n try {\n return ((new ActiveXObject(((((\"JavaWebStart.isInstalled.\" + oa)) + \".0\"))) != null));\n } catch (pa) {\n return false;\n };\n ;\n };\n ;\n function na(oa) {\n try {\n return ((new ActiveXObject(((\"JavaPlugin.160_\" + oa))) != null));\n } catch (pa) {\n return false;\n };\n ;\n };\n ;\n ha.java = function() {\n if (l.javaEnabled()) {\n var oa = ((ha.win && ha.ff)), pa = false;\n if (((oa || pa))) {\n if (((typeof l.mimeTypes != o))) {\n var qa = ((oa ? [1,6,0,12,] : [1,4,2,0,]));\n for (var ra = 0; ((ra < l.mimeTypes.length)); ++ra) {\n if (l.mimeTypes[ra].enabledPlugin) {\n var sa = l.mimeTypes[ra].type.match(/^application\\/x-java-applet;(?:jpi-)?version=(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(?:_(\\d+))?)?)?$/);\n if (((sa != null))) {\n if (((la(qa, sa.slice(1)) <= 0))) {\n return true;\n }\n ;\n }\n ;\n ;\n }\n ;\n
// 2367
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"C6rJk\",]);\n}\n;\n;\n__d(\"NotifXList\", [], function(a, b, c, d, e, f) {\n var g = {\n }, h = null;\n function i(p) {\n if (!p) {\n throw new Error(\"You have to init NotifXList with a non-null owner\");\n }\n ;\n ;\n h = p;\n };\n;\n function j(p) {\n g[p] = null;\n };\n;\n function k(p, q) {\n if (!q) {\n throw new Error(\"You have to add a non-null data to xList\");\n }\n ;\n ;\n g[p] = q;\n };\n;\n function l(p) {\n var q = ((undefined !== g[p.notif_id])), r = ((p.notif_alt_id && ((undefined !== g[p.notif_alt_id]))));\n if (((q || r))) {\n k(((q ? p.notif_id : p.notif_alt_id)), p);\n return true;\n }\n ;\n ;\n return false;\n };\n;\n function m(p) {\n return ((null != g[p]));\n };\n;\n function n(p) {\n if (m(p)) {\n var q = g[p];\n o(p);\n h.alertList.insert(q.notif_id, q.notif_time, q.notif_markup, q.replace, q.ignoreUnread, q.notif_alt_id);\n }\n ;\n ;\n };\n;\n function o(p) {\n delete g[p];\n };\n;\n e.exports = {\n init: i,\n userXClick: j,\n filterStoreClicked: l,\n newNotifExist: m,\n resumeInsert: n,\n removeNotif: o\n };\n});");
// 2491
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"5dFET\",]);\n}\n;\n;\n__d(\"TickerReadStateTracking\", [\"Style\",\"clickRefAction\",], function(a, b, c, d, e, f) {\n var g = b(\"Style\"), h = b(\"clickRefAction\"), i = 73, j = \"ticker_hover\", k = [];\n function l(n) {\n var o = JSON.parse(n.getAttribute(\"data-ft\"));\n if (!o) {\n return null;\n }\n ;\n ;\n if (o.mf_story_key) {\n return o.mf_story_key;\n }\n ;\n ;\n if (o.fbid) {\n return o.fbid;\n }\n ;\n ;\n return null;\n };\n;\n function m(n) {\n var o = l(n);\n if (((!o || ((o in k))))) {\n return;\n }\n ;\n ;\n k[o] = true;\n var p = {\n evt: i\n };\n h(j, n, null, \"FORCE\", {\n ft: p\n });\n };\n;\n e.exports.log = m;\n});\n__d(\"TickerRightHideController\", [\"CSS\",\"DOM\",\"ge\",], function(a, b, c, d, e, f) {\n var g = b(\"CSS\"), h = b(\"DOM\"), i = b(\"ge\");\n function j() {\n \n };\n;\n j._markAsClosedHelper = function(k) {\n var l = i(\"pagelet_reminders\");\n if (l) {\n var m = h.scry(l, \"div.tickerToggleWrapper\")[0];\n if (m) {\n g.conditionClass(m, \"displayedTickerToggleWrapper\", k);\n }\n ;\n ;\n }\n ;\n ;\n var n = i(\"pagelet_moments\");\n if (n) {\n var o = h.scry(n, \"div.tickerToggleWrapper\")[0];\n if (o) {\n g.conditionClass(o, \"displayedTickerToggleWrapper\", k);\n }\n ;\n ;\n }\n ;\n ;\n var p = i(\"pagelet_rhc_ticker\");\n if (p) {\n var q = h.scry(p, \"div.tickerToggleWrapper\")[0];\n if (q) {\n g.conditionClass(q, \"displayedTickerToggleWrapper\", !k);\n }\n ;\n ;\n g.conditionClass(p, \"hidden_rhc_ticker\", k);\n }\n ;\n ;\n };\n j.markAsClosed = function() {\n j._markAsClosedHelper(true);\n };\n j.markAsUnclosed = function() {\n j._markAsClosedHelper(false);\n };\n e.exports = j;\n});\n__d(\"legacy:TickerRightHideController\", [\"TickerRightHideController\",], function(a, b, c, d) {\n a.TickerRightHideController = b(\"TickerRightHideController\");\n}, 3);\n__d(\"TickerController\", [\"JSBNG__Event\",\"Animation\",\"Arbiter\",\"AsyncRequest\",\"AsyncSignal\",\"Bootloader\",\"ChannelConstants\",\"LegacyContextualDialog\",\"CSS\",\"DOM\",\"HTML\",\"JSLogger\",\"Keys\",\"LayerFadeOnHide\",\"LiveTimer\",\"NavigationMessage\",\"Parent\",\"Run\",\"ScrollableArea\",\"SelectorDeprecated\",\"Style\",\"TickerReadStateTracking\",\"Toggler\",\"UIPagelet\",\"URI\",\"UserActivity\",\"UserAgent\",\"Vector\",\"$\",\"clickRefAction\",\"collectDataAttributes\",\"copyProperties\",\"cx\",\"emptyFunction\",\"ge\",\"goURI\",\"throttle\",\"userAction\",\"TickerRHCPageletByGK\",], function(a, b, c, d, e, f) {\n var g = b(\"JSBNG__Event\"), h = b(\"Animation\"), i = b(\"Arbiter\"), j = b(\"AsyncRequest\"), k = b(\"AsyncSignal\"), l = b(\"Bootloader\"), m = b(\"ChannelConstants\"), n = b(\"LegacyContextualDialog\"), o = b(\"CSS\"), p = b(\"DOM\"), q = b(\"HTML\"), r = b(\"JSLogger\"), s = b(\"Keys\"), t = b(\"LayerFadeOnHide\"), u = b(\"LiveTimer\"), v = b(\"NavigationMessage\"), w = b(\"Parent\"), x = b(\"Run\"), y = b(\"ScrollableArea\"), z = b(\"SelectorDeprecated\"), aa = b(\"Style\"), ba = b(\"TickerReadStateTracking\"), ca = b(\"Toggler\"), da = b(\"UIPagelet\"), ea = b(\"URI\"), fa = b(\"UserActivity\"), ga = b(\"UserAgent\"), ha = b(\"Vector\"), ia = b(\"$\"), ja = b(\"clickRefAction\"), ka = b(\"collectDataAttributes\"), la = b(\"copyProperties\"), ma = b(\"cx\"), na = b(\"emptyFunction\"), oa = b(\"ge\"), pa = b(\"goURI\"), qa = b(\"throttle\"), ra = b(\"userAction\"), sa = 1, ta = 2, ua = 3, va = 4, wa = r.create(\"ticker_controller\");\n function xa() {\n \n };\n;\n
// 2738
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"5dFET\",]);\n}\n;\n;\n__d(\"TickerReadStateTracking\", [\"Style\",\"clickRefAction\",], function(a, b, c, d, e, f) {\n var g = b(\"Style\"), h = b(\"clickRefAction\"), i = 73, j = \"ticker_hover\", k = [];\n function l(n) {\n var o = JSON.parse(n.getAttribute(\"data-ft\"));\n if (!o) {\n return null;\n }\n ;\n ;\n if (o.mf_story_key) {\n return o.mf_story_key;\n }\n ;\n ;\n if (o.fbid) {\n return o.fbid;\n }\n ;\n ;\n return null;\n };\n;\n function m(n) {\n var o = l(n);\n if (((!o || ((o in k))))) {\n return;\n }\n ;\n ;\n k[o] = true;\n var p = {\n evt: i\n };\n h(j, n, null, \"FORCE\", {\n ft: p\n });\n };\n;\n e.exports.log = m;\n});\n__d(\"TickerRightHideController\", [\"CSS\",\"DOM\",\"ge\",], function(a, b, c, d, e, f) {\n var g = b(\"CSS\"), h = b(\"DOM\"), i = b(\"ge\");\n function j() {\n \n };\n;\n j._markAsClosedHelper = function(k) {\n var l = i(\"pagelet_reminders\");\n if (l) {\n var m = h.scry(l, \"div.tickerToggleWrapper\")[0];\n if (m) {\n g.conditionClass(m, \"displayedTickerToggleWrapper\", k);\n }\n ;\n ;\n }\n ;\n ;\n var n = i(\"pagelet_moments\");\n if (n) {\n var o = h.scry(n, \"div.tickerToggleWrapper\")[0];\n if (o) {\n g.conditionClass(o, \"displayedTickerToggleWrapper\", k);\n }\n ;\n ;\n }\n ;\n ;\n var p = i(\"pagelet_rhc_ticker\");\n if (p) {\n var q = h.scry(p, \"div.tickerToggleWrapper\")[0];\n if (q) {\n g.conditionClass(q, \"displayedTickerToggleWrapper\", !k);\n }\n ;\n ;\n g.conditionClass(p, \"hidden_rhc_ticker\", k);\n }\n ;\n ;\n };\n j.markAsClosed = function() {\n j._markAsClosedHelper(true);\n };\n j.markAsUnclosed = function() {\n j._markAsClosedHelper(false);\n };\n e.exports = j;\n});\n__d(\"legacy:TickerRightHideController\", [\"TickerRightHideController\",], function(a, b, c, d) {\n a.TickerRightHideController = b(\"TickerRightHideController\");\n}, 3);\n__d(\"TickerController\", [\"JSBNG__Event\",\"Animation\",\"Arbiter\",\"AsyncRequest\",\"AsyncSignal\",\"Bootloader\",\"ChannelConstants\",\"LegacyContextualDialog\",\"CSS\",\"DOM\",\"HTML\",\"JSLogger\",\"Keys\",\"LayerFadeOnHide\",\"LiveTimer\",\"NavigationMessage\",\"Parent\",\"Run\",\"ScrollableArea\",\"SelectorDeprecated\",\"Style\",\"TickerReadStateTracking\",\"Toggler\",\"UIPagelet\",\"URI\",\"UserActivity\",\"UserAgent\",\"Vector\",\"$\",\"clickRefAction\",\"collectDataAttributes\",\"copyProperties\",\"cx\",\"emptyFunction\",\"ge\",\"goURI\",\"throttle\",\"userAction\",\"TickerRHCPageletByGK\",], function(a, b, c, d, e, f) {\n var g = b(\"JSBNG__Event\"), h = b(\"Animation\"), i = b(\"Arbiter\"), j = b(\"AsyncRequest\"), k = b(\"AsyncSignal\"), l = b(\"Bootloader\"), m = b(\"ChannelConstants\"), n = b(\"LegacyContextualDialog\"), o = b(\"CSS\"), p = b(\"DOM\"), q = b(\"HTML\"), r = b(\"JSLogger\"), s = b(\"Keys\"), t = b(\"LayerFadeOnHide\"), u = b(\"LiveTimer\"), v = b(\"NavigationMessage\"), w = b(\"Parent\"), x = b(\"Run\"), y = b(\"ScrollableArea\"), z = b(\"SelectorDeprecated\"), aa = b(\"Style\"), ba = b(\"TickerReadStateTracking\"), ca = b(\"Toggler\"), da = b(\"UIPagelet\"), ea = b(\"URI\"), fa = b(\"UserActivity\"), ga = b(\"UserAgent\"), ha = b(\"Vector\"), ia = b(\"$\"), ja = b(\"clickRefAction\"), ka = b(\"collectDataAttributes\"), la = b(\"copyProperties\"), ma = b(\"cx\"), na = b(\"emptyFunction\"), oa = b(\"ge\"), pa = b(\"goURI\"), qa = b(\"throttle\"), ra = b(\"userAction\"), sa = 1, ta = 2, ua = 3, va = 4, wa = r.create(\"ticker_controller\");\n function xa() {\n \n };\n;\n
// 2739
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"u//Ut\",]);\n}\n;\n;\n__d(\"MercuryAPIArgsSource\", [], function(a, b, c, d, e, f) {\n e.exports = {\n JEWEL: \"jewel\",\n CHAT: \"chat\",\n MERCURY: \"mercury\",\n WEBMESSENGER: \"web_messenger\"\n };\n});\n__d(\"MercuryActionStatus\", [], function(a, b, c, d, e, f) {\n e.exports = {\n UNCONFIRMED: 3,\n UNSENT: 0,\n RESENDING: 7,\n RESENT: 6,\n UNABLE_TO_CONFIRM: 5,\n FAILED_UNKNOWN_REASON: 4,\n SUCCESS: 1,\n ERROR: 10\n };\n});\n__d(\"MercuryActionTypeConstants\", [], function(a, b, c, d, e, f) {\n e.exports = {\n LOG_MESSAGE: \"ma-type:log-message\",\n CLEAR_CHAT: \"ma-type:clear_chat\",\n UPDATE_ACTION_ID: \"ma-type:update-action-id\",\n DELETE_MESSAGES: \"ma-type:delete-messages\",\n CHANGE_FOLDER: \"ma-type:change-folder\",\n SEND_MESSAGE: \"ma-type:send-message\",\n CHANGE_ARCHIVED_STATUS: \"ma-type:change-archived-status\",\n DELETE_THREAD: \"ma-type:delete-thread\",\n USER_GENERATED_MESSAGE: \"ma-type:user-generated-message\",\n CHANGE_READ_STATUS: \"ma-type:change_read_status\",\n CHANGE_MUTE_SETTINGS: \"ma-type:change-mute-settings\"\n };\n});\n__d(\"MercuryAttachmentContentType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n UNKNOWN: \"attach:unknown\",\n PHOTO: \"attach:image\",\n VIDEO: \"attach:video\",\n MSWORD: \"attach:ms:word\",\n VOICE: \"attach:voice\",\n MSPPT: \"attach:ms:ppt\",\n TEXT: \"attach:text\",\n MUSIC: \"attach:music\",\n MSXLS: \"attach:ms:xls\"\n };\n});\n__d(\"MercuryAttachmentType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n STICKER: \"sticker\",\n PHOTO: \"photo\",\n FILE: \"file\",\n SHARE: \"share\",\n ERROR: \"error\"\n };\n});\n__d(\"MercuryErrorType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n SERVER: 1,\n TRANSPORT: 2,\n TIMEOUT: 3\n };\n});\n__d(\"MercuryGenericConstants\", [], function(a, b, c, d, e, f) {\n e.exports = {\n PENDING_THREAD_ID: \"pending:pending\"\n };\n});\n__d(\"MercuryGlobalActionType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n MARK_ALL_READ: \"mga-type:mark-all-read\"\n };\n});\n__d(\"MercuryLogMessageType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n SERVER_ERROR: \"log:error-msg\",\n UNSUBSCRIBE: \"log:unsubscribe\",\n JOINABLE_JOINED: \"log:joinable-joined\",\n JOINABLE_CREATED: \"log:joinable-created\",\n LIVE_LISTEN: \"log:live-listen\",\n PHONE_CALL: \"log:phone-call\",\n THREAD_IMAGE: \"log:thread-image\",\n THREAD_NAME: \"log:thread-name\",\n VIDEO_CALL: \"log:video-call\",\n SUBSCRIBE: \"log:subscribe\"\n };\n});\n__d(\"MercuryMessageSourceTags\", [], function(a, b, c, d, e, f) {\n e.exports = {\n CHAT: \"source:chat\",\n MOBILE: \"source:mobile\",\n MESSENGER: \"source:messenger\",\n EMAIL: \"source:email\"\n };\n});\n__d(\"MercuryParticipantTypes\", [], function(a, b, c, d, e, f) {\n e.exports = {\n FRIEND: \"friend\",\n USER: \"user\",\n THREAD: \"thread\",\n EVENT: \"JSBNG__event\",\n PAGE: \"page\"\n };\n});\n__d(\"MercuryPayloadSource\", [], function(a, b, c, d, e, f) {\n e.exports = {\n SERVER_INITIAL_DATA: \"server_initial_data\",\n CLIENT_DELETE_THREAD: \"client_delete_thread\",\n SERVER_ZAP: \"server_zap\",\n SERVER_SAVE_DRAFT: \"server_save_draft\",\n SERVER_CHANGE_ARCHIVED_STATUS: \"server_change_archived_status\",\n SERVER_SEARCH: \"server_search\",\n CLIENT_CHANGE_MUTE_SETTINGS: \"client_change_mute_settings\",\n SERVER_UNREAD_THREADS: \"server_unread_threads\",\n SERVER_MARK_SEEN: \"server_mark_seen\",\n SERVER_THREAD_SYNC: \"server_thread_sync\",\n CLIENT_DELE
// 2863
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"5dFET\",]);\n}\n;\n;\n__d(\"TickerReadStateTracking\", [\"Style\",\"clickRefAction\",], function(a, b, c, d, e, f) {\n var g = b(\"Style\"), h = b(\"clickRefAction\"), i = 73, j = \"ticker_hover\", k = [];\n function l(n) {\n var o = JSON.parse(n.getAttribute(\"data-ft\"));\n if (!o) {\n return null;\n }\n ;\n ;\n if (o.mf_story_key) {\n return o.mf_story_key;\n }\n ;\n ;\n if (o.fbid) {\n return o.fbid;\n }\n ;\n ;\n return null;\n };\n;\n function m(n) {\n var o = l(n);\n if (((!o || ((o in k))))) {\n return;\n }\n ;\n ;\n k[o] = true;\n var p = {\n evt: i\n };\n h(j, n, null, \"FORCE\", {\n ft: p\n });\n };\n;\n e.exports.log = m;\n});\n__d(\"TickerRightHideController\", [\"CSS\",\"DOM\",\"ge\",], function(a, b, c, d, e, f) {\n var g = b(\"CSS\"), h = b(\"DOM\"), i = b(\"ge\");\n function j() {\n \n };\n;\n j._markAsClosedHelper = function(k) {\n var l = i(\"pagelet_reminders\");\n if (l) {\n var m = h.scry(l, \"div.tickerToggleWrapper\")[0];\n if (m) {\n g.conditionClass(m, \"displayedTickerToggleWrapper\", k);\n }\n ;\n ;\n }\n ;\n ;\n var n = i(\"pagelet_moments\");\n if (n) {\n var o = h.scry(n, \"div.tickerToggleWrapper\")[0];\n if (o) {\n g.conditionClass(o, \"displayedTickerToggleWrapper\", k);\n }\n ;\n ;\n }\n ;\n ;\n var p = i(\"pagelet_rhc_ticker\");\n if (p) {\n var q = h.scry(p, \"div.tickerToggleWrapper\")[0];\n if (q) {\n g.conditionClass(q, \"displayedTickerToggleWrapper\", !k);\n }\n ;\n ;\n g.conditionClass(p, \"hidden_rhc_ticker\", k);\n }\n ;\n ;\n };\n j.markAsClosed = function() {\n j._markAsClosedHelper(true);\n };\n j.markAsUnclosed = function() {\n j._markAsClosedHelper(false);\n };\n e.exports = j;\n});\n__d(\"legacy:TickerRightHideController\", [\"TickerRightHideController\",], function(a, b, c, d) {\n a.TickerRightHideController = b(\"TickerRightHideController\");\n}, 3);\n__d(\"TickerController\", [\"JSBNG__Event\",\"Animation\",\"Arbiter\",\"AsyncRequest\",\"AsyncSignal\",\"Bootloader\",\"ChannelConstants\",\"LegacyContextualDialog\",\"CSS\",\"DOM\",\"HTML\",\"JSLogger\",\"Keys\",\"LayerFadeOnHide\",\"LiveTimer\",\"NavigationMessage\",\"Parent\",\"Run\",\"ScrollableArea\",\"SelectorDeprecated\",\"Style\",\"TickerReadStateTracking\",\"Toggler\",\"UIPagelet\",\"URI\",\"UserActivity\",\"UserAgent\",\"Vector\",\"$\",\"clickRefAction\",\"collectDataAttributes\",\"copyProperties\",\"cx\",\"emptyFunction\",\"ge\",\"goURI\",\"throttle\",\"userAction\",\"TickerRHCPageletByGK\",], function(a, b, c, d, e, f) {\n var g = b(\"JSBNG__Event\"), h = b(\"Animation\"), i = b(\"Arbiter\"), j = b(\"AsyncRequest\"), k = b(\"AsyncSignal\"), l = b(\"Bootloader\"), m = b(\"ChannelConstants\"), n = b(\"LegacyContextualDialog\"), o = b(\"CSS\"), p = b(\"DOM\"), q = b(\"HTML\"), r = b(\"JSLogger\"), s = b(\"Keys\"), t = b(\"LayerFadeOnHide\"), u = b(\"LiveTimer\"), v = b(\"NavigationMessage\"), w = b(\"Parent\"), x = b(\"Run\"), y = b(\"ScrollableArea\"), z = b(\"SelectorDeprecated\"), aa = b(\"Style\"), ba = b(\"TickerReadStateTracking\"), ca = b(\"Toggler\"), da = b(\"UIPagelet\"), ea = b(\"URI\"), fa = b(\"UserActivity\"), ga = b(\"UserAgent\"), ha = b(\"Vector\"), ia = b(\"$\"), ja = b(\"clickRefAction\"), ka = b(\"collectDataAttributes\"), la = b(\"copyProperties\"), ma = b(\"cx\"), na = b(\"emptyFunction\"), oa = b(\"ge\"), pa = b(\"goURI\"), qa = b(\"throttle\"), ra = b(\"userAction\"), sa = 1, ta = 2, ua = 3, va = 4, wa = r.create(\"ticker_controller\");\n function xa() {\n \n };\n;\n
// 2864
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"u//Ut\",]);\n}\n;\n;\n__d(\"MercuryAPIArgsSource\", [], function(a, b, c, d, e, f) {\n e.exports = {\n JEWEL: \"jewel\",\n CHAT: \"chat\",\n MERCURY: \"mercury\",\n WEBMESSENGER: \"web_messenger\"\n };\n});\n__d(\"MercuryActionStatus\", [], function(a, b, c, d, e, f) {\n e.exports = {\n UNCONFIRMED: 3,\n UNSENT: 0,\n RESENDING: 7,\n RESENT: 6,\n UNABLE_TO_CONFIRM: 5,\n FAILED_UNKNOWN_REASON: 4,\n SUCCESS: 1,\n ERROR: 10\n };\n});\n__d(\"MercuryActionTypeConstants\", [], function(a, b, c, d, e, f) {\n e.exports = {\n LOG_MESSAGE: \"ma-type:log-message\",\n CLEAR_CHAT: \"ma-type:clear_chat\",\n UPDATE_ACTION_ID: \"ma-type:update-action-id\",\n DELETE_MESSAGES: \"ma-type:delete-messages\",\n CHANGE_FOLDER: \"ma-type:change-folder\",\n SEND_MESSAGE: \"ma-type:send-message\",\n CHANGE_ARCHIVED_STATUS: \"ma-type:change-archived-status\",\n DELETE_THREAD: \"ma-type:delete-thread\",\n USER_GENERATED_MESSAGE: \"ma-type:user-generated-message\",\n CHANGE_READ_STATUS: \"ma-type:change_read_status\",\n CHANGE_MUTE_SETTINGS: \"ma-type:change-mute-settings\"\n };\n});\n__d(\"MercuryAttachmentContentType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n UNKNOWN: \"attach:unknown\",\n PHOTO: \"attach:image\",\n VIDEO: \"attach:video\",\n MSWORD: \"attach:ms:word\",\n VOICE: \"attach:voice\",\n MSPPT: \"attach:ms:ppt\",\n TEXT: \"attach:text\",\n MUSIC: \"attach:music\",\n MSXLS: \"attach:ms:xls\"\n };\n});\n__d(\"MercuryAttachmentType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n STICKER: \"sticker\",\n PHOTO: \"photo\",\n FILE: \"file\",\n SHARE: \"share\",\n ERROR: \"error\"\n };\n});\n__d(\"MercuryErrorType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n SERVER: 1,\n TRANSPORT: 2,\n TIMEOUT: 3\n };\n});\n__d(\"MercuryGenericConstants\", [], function(a, b, c, d, e, f) {\n e.exports = {\n PENDING_THREAD_ID: \"pending:pending\"\n };\n});\n__d(\"MercuryGlobalActionType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n MARK_ALL_READ: \"mga-type:mark-all-read\"\n };\n});\n__d(\"MercuryLogMessageType\", [], function(a, b, c, d, e, f) {\n e.exports = {\n SERVER_ERROR: \"log:error-msg\",\n UNSUBSCRIBE: \"log:unsubscribe\",\n JOINABLE_JOINED: \"log:joinable-joined\",\n JOINABLE_CREATED: \"log:joinable-created\",\n LIVE_LISTEN: \"log:live-listen\",\n PHONE_CALL: \"log:phone-call\",\n THREAD_IMAGE: \"log:thread-image\",\n THREAD_NAME: \"log:thread-name\",\n VIDEO_CALL: \"log:video-call\",\n SUBSCRIBE: \"log:subscribe\"\n };\n});\n__d(\"MercuryMessageSourceTags\", [], function(a, b, c, d, e, f) {\n e.exports = {\n CHAT: \"source:chat\",\n MOBILE: \"source:mobile\",\n MESSENGER: \"source:messenger\",\n EMAIL: \"source:email\"\n };\n});\n__d(\"MercuryParticipantTypes\", [], function(a, b, c, d, e, f) {\n e.exports = {\n FRIEND: \"friend\",\n USER: \"user\",\n THREAD: \"thread\",\n EVENT: \"JSBNG__event\",\n PAGE: \"page\"\n };\n});\n__d(\"MercuryPayloadSource\", [], function(a, b, c, d, e, f) {\n e.exports = {\n SERVER_INITIAL_DATA: \"server_initial_data\",\n CLIENT_DELETE_THREAD: \"client_delete_thread\",\n SERVER_ZAP: \"server_zap\",\n SERVER_SAVE_DRAFT: \"server_save_draft\",\n SERVER_CHANGE_ARCHIVED_STATUS: \"server_change_archived_status\",\n SERVER_SEARCH: \"server_search\",\n CLIENT_CHANGE_MUTE_SETTINGS: \"client_change_mute_settings\",\n SERVER_UNREAD_THREADS: \"server_unread_threads\",\n SERVER_MARK_SEEN: \"server_mark_seen\",\n SERVER_THREAD_SYNC: \"server_thread_sync\",\n CLIENT_DELE
// 2865
geval("if (JSBNG__self.CavalryLogger) {\n CavalryLogger.start_js([\"hfrQl\",]);\n}\n;\n;\n__d(\"FriendBrowserCheckboxController\", [\"AsyncRequest\",\"CSS\",\"DOM\",\"JSBNG__Event\",\"Form\",\"OnVisible\",\"$\",\"bind\",\"copyProperties\",\"ge\",], function(a, b, c, d, e, f) {\n var g = b(\"AsyncRequest\"), h = b(\"CSS\"), i = b(\"DOM\"), j = b(\"JSBNG__Event\"), k = b(\"Form\"), l = b(\"OnVisible\"), m = b(\"$\"), n = b(\"bind\"), o = b(\"copyProperties\"), p = b(\"ge\");\n function q() {\n \n };\n;\n o(q, {\n instances: {\n },\n getInstance: function(r) {\n return this.instances[r];\n }\n });\n o(q.prototype, {\n init: function(r, s, t, u) {\n q.instances[r] = this;\n this._id = r;\n this._simplified = t;\n this._infiniteScroll = u;\n this._form = s;\n this._contentGrid = i.JSBNG__find(s, \".friendBrowserCheckboxContentGrid\");\n this._loadingIndicator = i.JSBNG__find(s, \".friendBrowsingCheckboxContentLoadingIndicator\");\n this._checkboxResults = i.JSBNG__find(s, \".friendBrowserCheckboxResults\");\n this._contentPager = i.JSBNG__find(s, \".friendBrowserCheckboxContentPager\");\n this.numGetNewRequests = 0;\n this.queuedRequests = {\n };\n j.listen(this._form, \"submit\", this.onFormSubmit.bind(this));\n },\n addTypeahead: function(r, s) {\n r.subscribe(\"select\", this.onHubSelect.bind(this, r, s));\n if (this._simplified) {\n r.subscribe(\"unselect\", this.onHubSelect.bind(this, r, s));\n }\n ;\n ;\n },\n onFormSubmit: function() {\n this.getNew(true);\n return false;\n },\n addSelector: function(r) {\n r.subscribe(\"change\", this.getNew.bind(this, false));\n },\n onHubSelect: function(r, s, JSBNG__event, t) {\n if (this._simplified) {\n this.getNew(true);\n return;\n }\n ;\n ;\n if (!((((JSBNG__event == \"select\")) && t.selected))) {\n return;\n }\n ;\n ;\n var u = this.buildNewCheckbox(s, t.selected.text, t.selected.uid), v = i.JSBNG__find(this._form, ((\".checkboxes_\" + s)));\n i.appendContent(v.firstChild, u);\n var w = i.scry(r.getElement(), \"input[type=\\\"button\\\"]\");\n if (((w && w[0]))) {\n w[0].click();\n }\n ;\n ;\n this.getNew(true);\n },\n buildNewCheckbox: function(r, s, t) {\n var u = ((((r + \"_ids_\")) + t)), v = ((r + \"_ids[]\")), w = i.create(\"input\", {\n id: u,\n type: \"checkbox\",\n value: t,\n JSBNG__name: v,\n checked: true\n });\n j.listen(w, \"click\", n(this, \"getNew\", false));\n var x = i.create(\"td\", null, w);\n h.addClass(x, \"vTop\");\n h.addClass(x, \"hLeft\");\n var y = i.create(\"label\", null, s), z = i.create(\"td\", null, y);\n h.addClass(z, \"vMid\");\n h.addClass(z, \"hLeft\");\n var aa = i.create(\"tr\");\n aa.appendChild(x);\n aa.appendChild(z);\n return aa;\n },\n showMore: function() {\n var r = i.scry(this._contentPager, \".friendBrowserMorePager\")[0];\n if (!r) {\n return false;\n }\n ;\n ;\n if (h.hasClass(r, \"async_saving\")) {\n return false;\n }\n ;\n ;\n var s = this.numGetNewRequests, t = k.serialize(this._form);\n t.show_more = true;\n var u = new g().setURI(\"/ajax/growth/friend_browser/checkbox.php\").setData(t).setHandler(n(this, function(v) {\n this.showMoreHandler(v, s);\n
// 4275
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4276
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_549");
// 4278
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4279
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_549");
// 4280
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4281
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4283
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4284
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4285
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4287
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_785");
// 4289
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4290
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_785");
// 4292
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4293
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_785");
// 4294
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4295
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4297
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4298
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4299
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4301
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_786");
// 4303
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4304
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_786");
// 4306
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4307
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_786");
// 4308
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4309
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4311
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4312
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4313
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4315
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_787");
// 4317
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4318
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_787");
// 4320
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4321
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_787");
// 4322
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4323
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4325
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4326
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4327
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4329
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_788");
// 4331
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4332
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_788");
// 4334
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4335
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_788");
// 4336
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4337
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4339
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4340
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4341
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4343
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_789");
// 4345
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4346
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_789");
// 4348
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4349
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_789");
// 4350
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4351
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4353
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4354
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4355
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4357
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_790");
// 4359
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4360
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_790");
// 4362
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4363
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_790");
// 4364
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4365
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4367
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4368
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4369
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4371
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_791");
// 4373
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4374
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_791");
// 4376
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4377
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_791");
// 4378
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4379
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4381
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4382
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4383
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4385
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_792");
// 4387
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4388
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_792");
// 4390
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4391
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_792");
// 4392
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4393
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4395
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4396
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4397
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4399
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_793");
// 4401
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4402
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_793");
// 4404
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4405
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_793");
// 4406
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4407
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4409
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4410
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4411
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4413
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_794");
// 4415
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4416
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_794");
// 4418
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"");
// 4419
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_794");
// 4420
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"src");
// 4421
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"\"\"");
// 4423
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_525");
// 4424
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"length");
// 4425
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"44");
// 4432
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_278[18], o3,o4);
// undefined
o3 = null;
// undefined
o4 = null;
// 4449
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"ow449694821");
// 4450
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"JSBNG__onpopstate");
// 4451
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"f449694821_522");
// 4453
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_1");
// 4454
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"documentElement");
// 4455
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"o449694821_401");
// 4457
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"ow449694821");
// 4458
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"JSBNG__onpopstate");
// 4459
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_1[0], o5,"f449694821_522");
// undefined
o5 = null;
// 4468
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_376[0], o2);
// 4469
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_378[0], o2);
// undefined
o2 = null;
// 4473
o7.toString = f449694821_816;
// 4482
o8.hasOwnProperty = f449694821_818;
// undefined
o8 = null;
// 4471
fpc.call(JSBNG_Replay.s5e7dba3ea700a5261ca8857ec975a807389e8969_42[0], o7);
// undefined
o7 = null;
// 4514
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_96[0], f449694821_826,1373490177573);
// 4574
o0.cookie = "c_user=100006118350059; csm=2; wd=994x603";
// 4533
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_225[0](o9);
// undefined
o9 = null;
// 4585
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o6);
// undefined
o6 = null;
// 4593
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o10);
// undefined
o10 = null;
// 4601
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o11);
// undefined
o11 = null;
// 4609
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o12);
// undefined
o12 = null;
// 4617
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o13);
// undefined
o13 = null;
// 4625
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o14);
// undefined
o14 = null;
// 4633
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o15);
// undefined
o15 = null;
// 4641
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o16);
// undefined
o16 = null;
// 4649
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o17);
// undefined
o17 = null;
// 4657
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o19);
// undefined
o19 = null;
// 4665
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o20);
// undefined
o20 = null;
// 4673
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o21);
// undefined
o21 = null;
// 4681
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o22);
// undefined
o22 = null;
// 4689
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o23);
// undefined
o23 = null;
// 4697
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o24);
// undefined
o24 = null;
// 4705
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o25);
// undefined
o25 = null;
// 4713
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o26);
// undefined
o26 = null;
// 4724
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o27);
// undefined
o27 = null;
// 4732
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o28);
// undefined
o28 = null;
// 4740
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o29);
// undefined
o29 = null;
// 4748
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o30);
// undefined
o30 = null;
// 4756
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o31);
// undefined
o31 = null;
// 4764
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o32);
// undefined
o32 = null;
// 4773
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o33);
// undefined
o33 = null;
// 4782
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o34);
// undefined
o34 = null;
// 4791
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o35);
// undefined
o35 = null;
// 4800
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o36);
// undefined
o36 = null;
// 4809
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o37);
// undefined
o37 = null;
// 4818
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o38);
// undefined
o38 = null;
// 4827
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o39);
// undefined
o39 = null;
// 4839
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o40);
// undefined
o40 = null;
// 4848
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o43);
// undefined
o43 = null;
// 4857
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o44);
// undefined
o44 = null;
// 4866
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o45);
// undefined
o45 = null;
// 4875
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o46);
// undefined
o46 = null;
// 4884
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o47);
// undefined
o47 = null;
// 4893
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o48);
// undefined
o48 = null;
// 4902
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o49);
// undefined
o49 = null;
// 4911
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o50);
// undefined
o50 = null;
// 4920
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o51);
// undefined
o51 = null;
// 4929
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o52);
// undefined
o52 = null;
// 4938
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o53);
// undefined
o53 = null;
// 4947
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o54);
// undefined
o54 = null;
// 4956
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o55);
// undefined
o55 = null;
// 4965
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o56);
// undefined
o56 = null;
// 4974
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o57);
// undefined
o57 = null;
// 4983
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o58);
// undefined
o58 = null;
// 4992
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o59);
// undefined
o59 = null;
// 5001
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o60);
// undefined
o60 = null;
// 5010
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o61);
// undefined
o61 = null;
// 5098
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o65);
// 5107
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o67);
// 5122
o62.transport = o63;
// undefined
o62 = null;
// undefined
o63 = null;
// 5116
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o69);
// 5197
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o65);
// undefined
o65 = null;
// 5206
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o67);
// undefined
o67 = null;
// 5215
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o69);
// undefined
o69 = null;
// 5225
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o64);
// undefined
o64 = null;
// 5234
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o66);
// undefined
o66 = null;
// 5243
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o68);
// undefined
o68 = null;
// 5252
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o70);
// undefined
o70 = null;
// 5261
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o71);
// undefined
o71 = null;
// 5270
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o72);
// undefined
o72 = null;
// 5279
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o73);
// undefined
o73 = null;
// 5288
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o74);
// undefined
o74 = null;
// 5297
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o75);
// undefined
o75 = null;
// 5306
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o76);
// undefined
o76 = null;
// 5315
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o77);
// undefined
o77 = null;
// 5324
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o78);
// undefined
o78 = null;
// 5333
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o79);
// undefined
o79 = null;
// 5342
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o80);
// undefined
o80 = null;
// 5351
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o81);
// undefined
o81 = null;
// 5359
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o82);
// undefined
o82 = null;
// 5368
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o83);
// undefined
o83 = null;
// 5377
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o84);
// undefined
o84 = null;
// 5386
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o85);
// undefined
o85 = null;
// 5398
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o86);
// undefined
o86 = null;
// 5407
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o87);
// undefined
o87 = null;
// 5416
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o88);
// undefined
o88 = null;
// 5425
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o89);
// undefined
o89 = null;
// 5434
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o90);
// undefined
o90 = null;
// 5443
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o91);
// undefined
o91 = null;
// 5452
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o92);
// undefined
o92 = null;
// 5460
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o93);
// undefined
o93 = null;
// 5469
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o94);
// undefined
o94 = null;
// 5478
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o95);
// undefined
o95 = null;
// 5487
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o96);
// undefined
o96 = null;
// 5496
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o97);
// undefined
o97 = null;
// 5504
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o98);
// undefined
o98 = null;
// 5513
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"DOMMouseScroll",o99);
// undefined
o99 = null;
// 5521
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o100);
// undefined
o100 = null;
// 5529
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o101);
// undefined
o101 = null;
// 5537
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o102);
// undefined
o102 = null;
// 5545
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o103);
// undefined
o103 = null;
// 5553
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o104);
// undefined
o104 = null;
// 5561
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o105);
// undefined
o105 = null;
// 5569
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o106);
// undefined
o106 = null;
// 5577
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o107);
// undefined
o107 = null;
// 5585
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o108);
// undefined
o108 = null;
// 5593
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o109);
// undefined
o109 = null;
// 5601
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o110);
// undefined
o110 = null;
// 5609
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o111);
// undefined
o111 = null;
// 5617
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o112);
// undefined
o112 = null;
// 5625
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o113);
// undefined
o113 = null;
// 5633
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o114);
// undefined
o114 = null;
// 5641
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o115);
// undefined
o115 = null;
// 5649
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o116);
// undefined
o116 = null;
// 5660
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o117);
// undefined
o117 = null;
// 5668
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o118);
// undefined
o118 = null;
// 5676
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o119);
// undefined
o119 = null;
// 5684
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o120);
// undefined
o120 = null;
// 5692
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o121);
// undefined
o121 = null;
// 5700
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o122);
// undefined
o122 = null;
// 5708
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o123);
// undefined
o123 = null;
// 5716
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o124);
// undefined
o124 = null;
// 5724
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o125);
// undefined
o125 = null;
// 5732
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o126);
// undefined
o126 = null;
// 5740
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o127);
// undefined
o127 = null;
// 5748
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o128);
// undefined
o128 = null;
// 5756
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o129);
// undefined
o129 = null;
// 5764
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o130);
// undefined
o130 = null;
// 5772
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o131);
// undefined
o131 = null;
// 5780
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o132);
// undefined
o132 = null;
// 5788
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o133);
// undefined
o133 = null;
// 5796
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o134);
// undefined
o134 = null;
// 5804
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o135);
// undefined
o135 = null;
// 5812
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o136);
// undefined
o136 = null;
// 5820
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o137);
// undefined
o137 = null;
// 5828
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o138);
// undefined
o138 = null;
// 5836
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o139);
// undefined
o139 = null;
// 5844
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o140);
// undefined
o140 = null;
// 5852
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o141);
// undefined
o141 = null;
// 5860
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o142);
// undefined
o142 = null;
// 5868
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o143);
// undefined
o143 = null;
// 5876
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o144);
// undefined
o144 = null;
// 5884
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o145);
// undefined
o145 = null;
// 5892
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o146);
// undefined
o146 = null;
// 5900
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o147);
// undefined
o147 = null;
// 5908
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o148);
// undefined
o148 = null;
// 5916
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o149);
// undefined
o149 = null;
// 5924
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o150);
// undefined
o150 = null;
// 5932
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o151);
// undefined
o151 = null;
// 5940
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o152);
// undefined
o152 = null;
// 5948
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o153);
// undefined
o153 = null;
// 5956
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o154);
// undefined
o154 = null;
// 5964
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o155);
// undefined
o155 = null;
// 5972
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o156);
// undefined
o156 = null;
// 5980
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o157);
// undefined
o157 = null;
// 5988
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o158);
// undefined
o158 = null;
// 5996
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o159);
// undefined
o159 = null;
// 6004
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o160);
// undefined
o160 = null;
// 6012
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o161);
// undefined
o161 = null;
// 6023
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o162);
// undefined
o162 = null;
// 6031
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o163);
// undefined
o163 = null;
// 6039
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o164);
// undefined
o164 = null;
// 6047
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o165);
// undefined
o165 = null;
// 6055
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o166);
// undefined
o166 = null;
// 6063
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o167);
// undefined
o167 = null;
// 6071
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o168);
// undefined
o168 = null;
// 6079
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o169);
// undefined
o169 = null;
// 6087
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o170);
// undefined
o170 = null;
// 6095
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o171);
// undefined
o171 = null;
// 6103
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o172);
// undefined
o172 = null;
// 6111
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o173);
// undefined
o173 = null;
// 6119
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o174);
// undefined
o174 = null;
// 6127
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o175);
// undefined
o175 = null;
// 6135
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o176);
// undefined
o176 = null;
// 6143
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o177);
// undefined
o177 = null;
// 6151
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o178);
// undefined
o178 = null;
// 6159
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o179);
// undefined
o179 = null;
// 6167
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o180);
// undefined
o180 = null;
// 6175
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o181);
// undefined
o181 = null;
// 6183
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o182);
// undefined
o182 = null;
// 6191
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o183);
// undefined
o183 = null;
// 6199
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o184);
// undefined
o184 = null;
// 6207
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o185);
// undefined
o185 = null;
// 6215
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o186);
// undefined
o186 = null;
// 6223
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o187);
// undefined
o187 = null;
// 6231
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o188);
// undefined
o188 = null;
// 6239
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o189);
// undefined
o189 = null;
// 6247
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o190);
// undefined
o190 = null;
// 6255
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o191);
// undefined
o191 = null;
// 6263
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o192);
// undefined
o192 = null;
// 6271
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o193);
// undefined
o193 = null;
// 6279
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o194);
// undefined
o194 = null;
// 6287
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o195);
// undefined
o195 = null;
// 6336
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o196);
// undefined
o196 = null;
// 6344
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o197);
// undefined
o197 = null;
// 6352
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o198);
// undefined
o198 = null;
// 6360
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o199);
// undefined
o199 = null;
// 6368
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o200);
// undefined
o200 = null;
// 6376
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o201);
// undefined
o201 = null;
// 6384
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o202);
// undefined
o202 = null;
// 6392
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o203);
// undefined
o203 = null;
// 6400
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o204);
// undefined
o204 = null;
// 6408
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o205);
// undefined
o205 = null;
// 6416
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o206);
// undefined
o206 = null;
// 6424
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o207);
// undefined
o207 = null;
// 6432
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o208);
// undefined
o208 = null;
// 6440
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o209);
// undefined
o209 = null;
// 6448
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o210);
// undefined
o210 = null;
// 6456
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o211);
// undefined
o211 = null;
// 6464
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o212);
// undefined
o212 = null;
// 6472
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o213);
// undefined
o213 = null;
// 6489
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o214);
// undefined
o214 = null;
// 6509
o0.cookie = "c_user=100006118350059; csm=2";
// undefined
o0 = null;
// 6503
JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_226[0](o215);
// undefined
o215 = null;
// 6513
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o216);
// undefined
o216 = null;
// 6521
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o217);
// undefined
o217 = null;
// 6529
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o218);
// undefined
o218 = null;
// 6537
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o219);
// undefined
o219 = null;
// 6545
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o220);
// undefined
o220 = null;
// 6553
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o221);
// undefined
o221 = null;
// 6561
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o222);
// undefined
o222 = null;
// 6569
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o223);
// undefined
o223 = null;
// 6577
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o224);
// undefined
o224 = null;
// 6585
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o225);
// undefined
o225 = null;
// 6593
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o226);
// undefined
o226 = null;
// 6601
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o227);
// undefined
o227 = null;
// 6609
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o228);
// undefined
o228 = null;
// 6617
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o229);
// undefined
o229 = null;
// 6625
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o230);
// undefined
o230 = null;
// 6633
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o231);
// undefined
o231 = null;
// 6641
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o232);
// undefined
o232 = null;
// 6649
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o233);
// undefined
o233 = null;
// 6657
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o234);
// undefined
o234 = null;
// 6665
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o235);
// undefined
o235 = null;
// 6673
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o236);
// undefined
o236 = null;
// 6681
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o237);
// undefined
o237 = null;
// 6689
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o238);
// undefined
o238 = null;
// 6697
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o239);
// undefined
o239 = null;
// 6705
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o240);
// undefined
o240 = null;
// 6713
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o241);
// undefined
o241 = null;
// 6721
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o242);
// 6729
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o243);
// 6737
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o244);
// 6745
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o245);
// 6753
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o246);
// 6761
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o247);
// 6769
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o248);
// 6780
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o249);
// 6788
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o250);
// 6796
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o251);
// 6804
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o252);
// 6812
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o253);
// 6824
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o242);
// undefined
o242 = null;
// 6832
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o243);
// undefined
o243 = null;
// 6840
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o244);
// undefined
o244 = null;
// 6848
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o245);
// undefined
o245 = null;
// 6856
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o246);
// undefined
o246 = null;
// 6864
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o247);
// undefined
o247 = null;
// 6872
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o248);
// undefined
o248 = null;
// 6883
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mouseover",o249);
// undefined
o249 = null;
// 6891
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o250);
// undefined
o250 = null;
// 6899
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o251);
// undefined
o251 = null;
// 6907
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o252);
// undefined
o252 = null;
// 6915
fpc.call(JSBNG_Replay.sf5cf39f60525a87dacca08ba47304e00dca09e9c_39[0], o1,"mousemove",o253);
// undefined
o1 = null;
// undefined
o253 = null;
// 6924
cb(); return null; }
finalize(); })();