Merge branch 'master' of /home/git/concurrency-benchmarks
[c11concurrency-benchmarks.git] / jsbench-2013.1 / google / firefox / uem.js
1 /* Replayable replacements for global functions */
2
3 /***************************************************************
4  * BEGIN STABLE.JS
5  **************************************************************/
6 //! stable.js 0.1.3, https://github.com/Two-Screen/stable
7 //! © 2012 Stéphan Kochen, Angry Bytes. MIT licensed.
8 (function() {
9
10 // A stable array sort, because `Array#sort()` is not guaranteed stable.
11 // This is an implementation of merge sort, without recursion.
12
13 var stable = function(arr, comp) {
14     if (typeof(comp) !== 'function') {
15         comp = function(a, b) {
16             a = String(a);
17             b = String(b);
18             if (a < b) return -1;
19             if (a > b) return 1;
20             return 0;
21         };
22     }
23
24     var len = arr.length;
25
26     if (len <= 1) return arr;
27
28     // Rather than dividing input, simply iterate chunks of 1, 2, 4, 8, etc.
29     // Chunks are the size of the left or right hand in merge sort.
30     // Stop when the left-hand covers all of the array.
31     var oarr = arr;
32     for (var chk = 1; chk < len; chk *= 2) {
33         arr = pass(arr, comp, chk);
34     }
35     for (var i = 0; i < len; i++) {
36         oarr[i] = arr[i];
37     }
38     return oarr;
39 };
40
41 // Run a single pass with the given chunk size. Returns a new array.
42 var pass = function(arr, comp, chk) {
43     var len = arr.length;
44     // Output, and position.
45     var result = new Array(len);
46     var i = 0;
47     // Step size / double chunk size.
48     var dbl = chk * 2;
49     // Bounds of the left and right chunks.
50     var l, r, e;
51     // Iterators over the left and right chunk.
52     var li, ri;
53
54     // Iterate over pairs of chunks.
55     for (l = 0; l < len; l += dbl) {
56         r = l + chk;
57         e = r + chk;
58         if (r > len) r = len;
59         if (e > len) e = len;
60
61         // Iterate both chunks in parallel.
62         li = l;
63         ri = r;
64         while (true) {
65             // Compare the chunks.
66             if (li < r && ri < e) {
67                 // This works for a regular `sort()` compatible comparator,
68                 // but also for a simple comparator like: `a > b`
69                 if (comp(arr[li], arr[ri]) <= 0) {
70                     result[i++] = arr[li++];
71                 }
72                 else {
73                     result[i++] = arr[ri++];
74                 }
75             }
76             // Nothing to compare, just flush what's left.
77             else if (li < r) {
78                 result[i++] = arr[li++];
79             }
80             else if (ri < e) {
81                 result[i++] = arr[ri++];
82             }
83             // Both iterators are at the chunk ends.
84             else {
85                 break;
86             }
87         }
88     }
89
90     return result;
91 };
92
93 var arrsort = function(comp) {
94     return stable(this, comp);
95 };
96
97 if (Object.defineProperty) {
98     Object.defineProperty(Array.prototype, "sort", {
99         configurable: true, writable: true, enumerable: false,
100         value: arrsort
101     });
102 } else {
103     Array.prototype.sort = arrsort;
104 }
105
106 })();
107 /***************************************************************
108  * END STABLE.JS
109  **************************************************************/
110
111 /*
112  * In a generated replay, this file is partially common, boilerplate code
113  * included in every replay, and partially generated replay code. The following
114  * header applies to the boilerplate code. A comment indicating "Auto-generated
115  * below this comment" marks the separation between these two parts.
116  *
117  * Copyright (C) 2011, 2012 Purdue University
118  * Written by Gregor Richards
119  * All rights reserved.
120  * 
121  * Redistribution and use in source and binary forms, with or without
122  * modification, are permitted provided that the following conditions are met:
123  * 
124  * 1. Redistributions of source code must retain the above copyright notice,
125  *    this list of conditions and the following disclaimer.
126  * 2. Redistributions in binary form must reproduce the above copyright notice,
127  *    this list of conditions and the following disclaimer in the documentation
128  *    and/or other materials provided with the distribution.
129  * 
130  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
131  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
132  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
133  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
134  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
135  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
136  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
137  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
138  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
139  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
140  * POSSIBILITY OF SUCH DAMAGE.
141  */
142
143 (function() {
144     // global eval alias
145     var geval = eval;
146
147     // detect if we're in a browser or not
148     var inbrowser = false;
149     var inharness = false;
150     var finished = false;
151     if (typeof window !== "undefined" && "document" in window) {
152         inbrowser = true;
153         if (window.parent && "JSBNG_handleResult" in window.parent) {
154             inharness = true;
155         }
156     } else if (typeof global !== "undefined") {
157         window = global;
158         window.top = window;
159     } else {
160         window = (function() { return this; })();
161         window.top = window;
162     }
163
164     if ("console" in window) {
165         window.JSBNG_Console = window.console;
166     }
167
168     var callpath = [];
169
170     // Workaround for bound functions as events
171     delete Function.prototype.bind;
172
173     // global state
174     var JSBNG_Replay = window.top.JSBNG_Replay = {
175         push: function(arr, fun) {
176             arr.push(fun);
177             return fun;
178         },
179
180         path: function(str) {
181             verifyPath(str);
182         },
183
184         forInKeys: function(of) {
185             var keys = [];
186             for (var k in of)
187                 keys.push(k);
188             return keys.sort();
189         }
190     };
191
192     // the actual replay runner
193     function onload() {
194         try {
195             delete window.onload;
196         } catch (ex) {}
197
198         var jr = JSBNG_Replay$;
199         var cb = function() {
200             var end = new Date().getTime();
201             finished = true;
202
203             var msg = "Time: " + (end - st) + "ms";
204     
205             if (inharness) {
206                 window.parent.JSBNG_handleResult({error:false, time:(end - st)});
207             } else if (inbrowser) {
208                 var res = document.createElement("div");
209     
210                 res.style.position = "fixed";
211                 res.style.left = "1em";
212                 res.style.top = "1em";
213                 res.style.width = "35em";
214                 res.style.height = "5em";
215                 res.style.padding = "1em";
216                 res.style.backgroundColor = "white";
217                 res.style.color = "black";
218                 res.appendChild(document.createTextNode(msg));
219     
220                 document.body.appendChild(res);
221             } else if (typeof console !== "undefined") {
222                 console.log(msg);
223             } else if (typeof print !== "undefined") {
224                 // hopefully not the browser print() function :)
225                 print(msg);
226             }
227         };
228
229         // force it to JIT
230         jr(false);
231
232         // then time it
233         var st = new Date().getTime();
234         while (jr !== null) {
235             jr = jr(true, cb);
236         }
237     }
238
239     // add a frame at replay time
240     function iframe(pageid) {
241         var iw;
242         if (inbrowser) {
243             // represent the iframe as an iframe (of course)
244             var iframe = document.createElement("iframe");
245             iframe.style.display = "none";
246             document.body.appendChild(iframe);
247             iw = iframe.contentWindow;
248             iw.document.write("<script type=\"text/javascript\">var JSBNG_Replay_geval = eval;</script>");
249             iw.document.close();
250         } else {
251             // no general way, just lie and do horrible things
252             var topwin = window;
253             (function() {
254                 var window = {};
255                 window.window = window;
256                 window.top = topwin;
257                 window.JSBNG_Replay_geval = function(str) {
258                     eval(str);
259                 }
260                 iw = window;
261             })();
262         }
263         return iw;
264     }
265
266     // called at the end of the replay stuff
267     function finalize() {
268         if (inbrowser) {
269             setTimeout(onload, 0);
270         } else {
271             onload();
272         }
273     }
274
275     // verify this recorded value and this replayed value are close enough
276     function verify(rep, rec) {
277         if (rec !== rep &&
278             (rep === rep || rec === rec) /* NaN test */) {
279             // FIXME?
280             if (typeof rec === "function" && typeof rep === "function") {
281                 return true;
282             }
283             if (typeof rec !== "object" || rec === null ||
284                 !(("__JSBNG_unknown_" + typeof(rep)) in rec)) {
285                 return false;
286             }
287         }
288         return true;
289     }
290
291     // general message
292     var firstMessage = true;
293     function replayMessage(msg) {
294         if (inbrowser) {
295             if (firstMessage)
296                 document.open();
297             firstMessage = false;
298             document.write(msg);
299         } else {
300             console.log(msg);
301         }
302     }
303
304     // complain when there's an error
305     function verificationError(msg) {
306         if (finished) return;
307         if (inharness) {
308             window.parent.JSBNG_handleResult({error:true, msg: msg});
309         } else replayMessage(msg);
310         throw new Error();
311     }
312
313     // to verify a set
314     function verifySet(objstr, obj, prop, gvalstr, gval) {
315         if (/^on/.test(prop)) {
316             // these aren't instrumented compatibly
317             return;
318         }
319
320         if (!verify(obj[prop], gval)) {
321             var bval = obj[prop];
322             var msg = "Verification failure! " + objstr + "." + prop + " is not " + gvalstr + ", it's " + bval + "!";
323             verificationError(msg);
324         }
325     }
326
327     // to verify a call or new
328     function verifyCall(iscall, func, cthis, cargs) {
329         var ok = true;
330         var callArgs = func.callArgs[func.inst];
331         iscall = iscall ? 1 : 0;
332         if (cargs.length !== callArgs.length - 1) {
333             ok = false;
334         } else {
335             if (iscall && !verify(cthis, callArgs[0])) ok = false;
336             for (var i = 0; i < cargs.length; i++) {
337                 if (!verify(cargs[i], callArgs[i+1])) ok = false;
338             }
339         }
340         if (!ok) {
341             var msg = "Call verification failure!";
342             verificationError(msg);
343         }
344
345         return func.returns[func.inst++];
346     }
347
348     // to verify the callpath
349     function verifyPath(func) {
350         var real = callpath.shift();
351         if (real !== func) {
352             var msg = "Call path verification failure! Expected " + real + ", found " + func;
353             verificationError(msg);
354         }
355     }
356
357     // figure out how to define getters
358     var defineGetter;
359     if (Object.defineProperty) {
360         var odp = Object.defineProperty;
361         defineGetter = function(obj, prop, getter, setter) {
362             if (typeof setter === "undefined") setter = function(){};
363             odp(obj, prop, {"enumerable": true, "configurable": true, "get": getter, "set": setter});
364         };
365     } else if (Object.prototype.__defineGetter__) {
366         var opdg = Object.prototype.__defineGetter__;
367         var opds = Object.prototype.__defineSetter__;
368         defineGetter = function(obj, prop, getter, setter) {
369             if (typeof setter === "undefined") setter = function(){};
370             opdg.call(obj, prop, getter);
371             opds.call(obj, prop, setter);
372         };
373     } else {
374         defineGetter = function() {
375             verificationError("This replay requires getters for correct behavior, and your JS engine appears to be incapable of defining getters. Sorry!");
376         };
377     }
378
379     var defineRegetter = function(obj, prop, getter, setter) {
380         defineGetter(obj, prop, function() {
381             return getter.call(this, prop);
382         }, function(val) {
383             // once it's set by the client, it's claimed
384             setter.call(this, prop, val);
385             Object.defineProperty(obj, prop, {
386                 "enumerable": true, "configurable": true, "writable": true,
387                 "value": val
388             });
389         });
390     }
391
392     // for calling events
393     var fpc = Function.prototype.call;
394
395 // resist the urge, don't put a })(); here!
396 /******************************************************************************
397  * Auto-generated below this comment
398  *****************************************************************************/
399 var ow895948954 = window;
400 var f895948954_0;
401 var o0;
402 var o1;
403 var o2;
404 var f895948954_4;
405 var f895948954_6;
406 var f895948954_7;
407 var f895948954_16;
408 var f895948954_17;
409 var f895948954_18;
410 var o3;
411 var o4;
412 var o5;
413 var o6;
414 var o7;
415 var o8;
416 var f895948954_64;
417 var f895948954_65;
418 var f895948954_386;
419 var f895948954_388;
420 var f895948954_389;
421 var f895948954_391;
422 var o9;
423 var f895948954_393;
424 var o10;
425 var o11;
426 var o12;
427 var o13;
428 var o14;
429 var o15;
430 var f895948954_406;
431 var f895948954_407;
432 var o16;
433 var o17;
434 var o18;
435 var f895948954_417;
436 var o19;
437 var o20;
438 var f895948954_424;
439 var o21;
440 var f895948954_428;
441 var o22;
442 var f895948954_431;
443 var f895948954_435;
444 var o23;
445 var o24;
446 var o25;
447 var o26;
448 var o27;
449 var o28;
450 var o29;
451 var o30;
452 var o31;
453 var o32;
454 var o33;
455 var o34;
456 var o35;
457 var f895948954_449;
458 var f895948954_450;
459 var o36;
460 var o37;
461 var o38;
462 var o39;
463 var o40;
464 var o41;
465 var o42;
466 var o43;
467 var o44;
468 var o45;
469 var o46;
470 var o47;
471 var o48;
472 var o49;
473 var o50;
474 var o51;
475 var o52;
476 var o53;
477 var o54;
478 var o55;
479 var o56;
480 var o57;
481 var o58;
482 var o59;
483 var o60;
484 var o61;
485 var o62;
486 var o63;
487 var o64;
488 var o65;
489 var o66;
490 var o67;
491 var o68;
492 var f895948954_487;
493 var f895948954_488;
494 var o69;
495 var o70;
496 var o71;
497 var f895948954_496;
498 var o72;
499 var o73;
500 var o74;
501 var o75;
502 var o76;
503 var o77;
504 var o78;
505 var o79;
506 var o80;
507 var o81;
508 var o82;
509 var o83;
510 var o84;
511 var o85;
512 var o86;
513 var o87;
514 var o88;
515 var o89;
516 var f895948954_516;
517 var o90;
518 var o91;
519 var o92;
520 var o93;
521 var o94;
522 var o95;
523 var f895948954_525;
524 var f895948954_527;
525 var o96;
526 var o97;
527 var f895948954_532;
528 var fo895948954_534_dataset;
529 var f895948954_539;
530 var f895948954_544;
531 var f895948954_545;
532 var f895948954_556;
533 var f895948954_557;
534 var o98;
535 var o99;
536 var o100;
537 var o101;
538 var o102;
539 var o103;
540 var o104;
541 var f895948954_580;
542 var o105;
543 var f895948954_583;
544 var o106;
545 var o107;
546 var o108;
547 var o109;
548 var o110;
549 var o111;
550 var o112;
551 var o113;
552 var o114;
553 var o115;
554 var o116;
555 var o117;
556 var o118;
557 var o119;
558 var o120;
559 var o121;
560 var o122;
561 var o123;
562 var o124;
563 var o125;
564 var o126;
565 var o127;
566 var o128;
567 var o129;
568 var o130;
569 var o131;
570 var o132;
571 var o133;
572 var o134;
573 var o135;
574 var o136;
575 var o137;
576 var o138;
577 var o139;
578 var o140;
579 var o141;
580 var o142;
581 var o143;
582 var o144;
583 var o145;
584 var o146;
585 var o147;
586 var o148;
587 var o149;
588 var o150;
589 var o151;
590 var o152;
591 var o153;
592 var o154;
593 var o155;
594 var o156;
595 var o157;
596 var o158;
597 var o159;
598 var o160;
599 var o161;
600 var o162;
601 var o163;
602 var o164;
603 var o165;
604 var o166;
605 var o167;
606 var o168;
607 var o169;
608 var o170;
609 var o171;
610 var o172;
611 var o173;
612 var o174;
613 var o175;
614 var o176;
615 var o177;
616 var o178;
617 var o179;
618 var o180;
619 var o181;
620 var o182;
621 var o183;
622 var o184;
623 var o185;
624 var o186;
625 var o187;
626 var o188;
627 var o189;
628 var o190;
629 var o191;
630 var o192;
631 var o193;
632 var o194;
633 var o195;
634 var o196;
635 var o197;
636 var o198;
637 var o199;
638 var o200;
639 var o201;
640 var o202;
641 var o203;
642 var o204;
643 var o205;
644 var o206;
645 var o207;
646 var o208;
647 var o209;
648 var o210;
649 var o211;
650 var o212;
651 var o213;
652 var o214;
653 var o215;
654 var o216;
655 var o217;
656 JSBNG_Replay.sbcd2c599c3a3e31210e95c8713224c80f8baadbe_0 = [];
657 JSBNG_Replay.s2afb35f1712c138a3da2176b6be804eeb2d614f5_3 = [];
658 JSBNG_Replay.sffd704e1601e1b9a8fa55951b1471268b42138a2_127 = [];
659 JSBNG_Replay.scee579e12329888b8b29697b3debcf1653f58642_22 = [];
660 JSBNG_Replay.sce6f2b5aebe4993acb0d77ef2a0d42de42949a2e_2409 = [];
661 JSBNG_Replay.sce6f2b5aebe4993acb0d77ef2a0d42de42949a2e_2192 = [];
662 // 1
663 // record generated by JSBench  at 2013-07-10T17:15:45.070Z
664 // 2
665 // 3
666 f895948954_0 = function() { return f895948954_0.returns[f895948954_0.inst++]; };
667 f895948954_0.returns = [];
668 f895948954_0.inst = 0;
669 // 4
670 ow895948954.JSBNG__Date = f895948954_0;
671 // 5
672 o0 = {};
673 // 6
674 ow895948954.JSBNG__document = o0;
675 // 7
676 o1 = {};
677 // 8
678 ow895948954.JSBNG__sessionStorage = o1;
679 // 9
680 o2 = {};
681 // 10
682 ow895948954.JSBNG__localStorage = o2;
683 // 11
684 f895948954_4 = function() { return f895948954_4.returns[f895948954_4.inst++]; };
685 f895948954_4.returns = [];
686 f895948954_4.inst = 0;
687 // 12
688 ow895948954.JSBNG__getComputedStyle = f895948954_4;
689 // 15
690 f895948954_6 = function() { return f895948954_6.returns[f895948954_6.inst++]; };
691 f895948954_6.returns = [];
692 f895948954_6.inst = 0;
693 // 16
694 ow895948954.JSBNG__removeEventListener = f895948954_6;
695 // 17
696 f895948954_7 = function() { return f895948954_7.returns[f895948954_7.inst++]; };
697 f895948954_7.returns = [];
698 f895948954_7.inst = 0;
699 // 18
700 ow895948954.JSBNG__addEventListener = f895948954_7;
701 // 19
702 ow895948954.JSBNG__top = ow895948954;
703 // 28
704 ow895948954.JSBNG__scrollX = 0;
705 // 29
706 ow895948954.JSBNG__scrollY = 0;
707 // 38
708 f895948954_16 = function() { return f895948954_16.returns[f895948954_16.inst++]; };
709 f895948954_16.returns = [];
710 f895948954_16.inst = 0;
711 // 39
712 ow895948954.JSBNG__setTimeout = f895948954_16;
713 // 40
714 f895948954_17 = function() { return f895948954_17.returns[f895948954_17.inst++]; };
715 f895948954_17.returns = [];
716 f895948954_17.inst = 0;
717 // 41
718 ow895948954.JSBNG__setInterval = f895948954_17;
719 // 42
720 f895948954_18 = function() { return f895948954_18.returns[f895948954_18.inst++]; };
721 f895948954_18.returns = [];
722 f895948954_18.inst = 0;
723 // 43
724 ow895948954.JSBNG__clearTimeout = f895948954_18;
725 // 60
726 ow895948954.JSBNG__frames = ow895948954;
727 // 63
728 ow895948954.JSBNG__self = ow895948954;
729 // 64
730 o3 = {};
731 // 65
732 ow895948954.JSBNG__navigator = o3;
733 // 68
734 o4 = {};
735 // 69
736 ow895948954.JSBNG__history = o4;
737 // 70
738 ow895948954.JSBNG__content = ow895948954;
739 // 81
740 ow895948954.JSBNG__closed = false;
741 // 84
742 ow895948954.JSBNG__pkcs11 = null;
743 // 87
744 ow895948954.JSBNG__opener = null;
745 // 88
746 ow895948954.JSBNG__defaultStatus = "";
747 // 89
748 o5 = {};
749 // 90
750 ow895948954.JSBNG__location = o5;
751 // 91
752 ow895948954.JSBNG__innerWidth = 994;
753 // 92
754 ow895948954.JSBNG__innerHeight = 603;
755 // 93
756 ow895948954.JSBNG__outerWidth = 994;
757 // 94
758 ow895948954.JSBNG__outerHeight = 690;
759 // 95
760 ow895948954.JSBNG__screenX = 123;
761 // 96
762 ow895948954.JSBNG__screenY = 46;
763 // 97
764 ow895948954.JSBNG__mozInnerScreenX = 0;
765 // 98
766 ow895948954.JSBNG__mozInnerScreenY = 0;
767 // 99
768 ow895948954.JSBNG__pageXOffset = 0;
769 // 100
770 ow895948954.JSBNG__pageYOffset = 0;
771 // 101
772 ow895948954.JSBNG__scrollMaxX = 0;
773 // 102
774 ow895948954.JSBNG__scrollMaxY = 0;
775 // 103
776 ow895948954.JSBNG__fullScreen = false;
777 // 136
778 ow895948954.JSBNG__frameElement = null;
779 // 141
780 ow895948954.JSBNG__mozPaintCount = 0;
781 // 144
782 ow895948954.JSBNG__mozAnimationStartTime = 1373476538942;
783 // 145
784 o6 = {};
785 // 146
786 ow895948954.JSBNG__mozIndexedDB = o6;
787 // 149
788 o7 = {};
789 // 150
790 ow895948954.JSBNG__external = o7;
791 // 151
792 o8 = {};
793 // 152
794 ow895948954.JSBNG__performance = o8;
795 // 155
796 ow895948954.JSBNG__devicePixelRatio = 1;
797 // 158
798 f895948954_64 = function() { return f895948954_64.returns[f895948954_64.inst++]; };
799 f895948954_64.returns = [];
800 f895948954_64.inst = 0;
801 // 159
802 ow895948954.JSBNG__XMLHttpRequest = f895948954_64;
803 // 160
804 f895948954_65 = function() { return f895948954_65.returns[f895948954_65.inst++]; };
805 f895948954_65.returns = [];
806 f895948954_65.inst = 0;
807 // 161
808 ow895948954.JSBNG__Image = f895948954_65;
809 // 166
810 ow895948954.JSBNG__name = "";
811 // 173
812 ow895948954.JSBNG__status = "";
813 // 176
814 ow895948954.JSBNG__Components = undefined;
815 // 771
816 ow895948954.JSBNG__indexedDB = o6;
817 // undefined
818 o6 = null;
819 // 804
820 ow895948954.JSBNG__onerror = null;
821 // 807
822 f895948954_386 = function() { return f895948954_386.returns[f895948954_386.inst++]; };
823 f895948954_386.returns = [];
824 f895948954_386.inst = 0;
825 // 808
826 ow895948954.Math.JSBNG__random = f895948954_386;
827 // 809
828 // 811
829 o5.hash = "";
830 // 812
831 o6 = {};
832 // 813
833 f895948954_0.returns.push(o6);
834 // 814
835 f895948954_388 = function() { return f895948954_388.returns[f895948954_388.inst++]; };
836 f895948954_388.returns = [];
837 f895948954_388.inst = 0;
838 // 815
839 o6.getTime = f895948954_388;
840 // undefined
841 o6 = null;
842 // 816
843 f895948954_388.returns.push(1373476539020);
844 // 817
845 f895948954_389 = function() { return f895948954_389.returns[f895948954_389.inst++]; };
846 f895948954_389.returns = [];
847 f895948954_389.inst = 0;
848 // 818
849 f895948954_0.now = f895948954_389;
850 // 819
851 o3.userAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0";
852 // 823
853 o3.product = "Gecko";
854 // 825
855 o6 = {};
856 // 826
857 o0.documentElement = o6;
858 // 827
859 f895948954_391 = function() { return f895948954_391.returns[f895948954_391.inst++]; };
860 f895948954_391.returns = [];
861 f895948954_391.inst = 0;
862 // 828
863 o6.JSBNG__addEventListener = f895948954_391;
864 // 830
865 f895948954_391.returns.push(undefined);
866 // 833
867 f895948954_391.returns.push(undefined);
868 // 836
869 f895948954_391.returns.push(undefined);
870 // 839
871 f895948954_391.returns.push(undefined);
872 // 842
873 f895948954_391.returns.push(undefined);
874 // 845
875 f895948954_391.returns.push(undefined);
876 // 848
877 f895948954_391.returns.push(undefined);
878 // 851
879 f895948954_391.returns.push(undefined);
880 // 854
881 f895948954_391.returns.push(undefined);
882 // 857
883 f895948954_391.returns.push(undefined);
884 // 860
885 f895948954_391.returns.push(undefined);
886 // 863
887 f895948954_391.returns.push(undefined);
888 // 866
889 f895948954_391.returns.push(undefined);
890 // 869
891 f895948954_391.returns.push(undefined);
892 // 872
893 f895948954_391.returns.push(undefined);
894 // 874
895 f895948954_386.returns.push(0.41893095659943025);
896 // 875
897 o9 = {};
898 // 876
899 f895948954_0.returns.push(o9);
900 // 877
901 o9.getTime = f895948954_388;
902 // undefined
903 o9 = null;
904 // 878
905 f895948954_388.returns.push(1373476539063);
906 // 879
907 f895948954_386.returns.push(0.8995961889016815);
908 // 884
909 f895948954_393 = function() { return f895948954_393.returns[f895948954_393.inst++]; };
910 f895948954_393.returns = [];
911 f895948954_393.inst = 0;
912 // 885
913 o0.getElementById = f895948954_393;
914 // 886
915 f895948954_393.returns.push(null);
916 // 888
917 f895948954_393.returns.push(null);
918 // 894
919 f895948954_393.returns.push(null);
920 // 896
921 f895948954_393.returns.push(null);
922 // 898
923 f895948954_393.returns.push(null);
924 // 900
925 f895948954_393.returns.push(null);
926 // 902
927 f895948954_393.returns.push(null);
928 // 904
929 f895948954_393.returns.push(null);
930 // 906
931 f895948954_393.returns.push(null);
932 // 908
933 f895948954_393.returns.push(null);
934 // 910
935 f895948954_393.returns.push(null);
936 // 912
937 f895948954_393.returns.push(null);
938 // 914
939 f895948954_393.returns.push(null);
940 // 916
941 f895948954_393.returns.push(null);
942 // 918
943 f895948954_393.returns.push(null);
944 // 920
945 f895948954_393.returns.push(null);
946 // 922
947 f895948954_393.returns.push(null);
948 // 924
949 f895948954_393.returns.push(null);
950 // 926
951 f895948954_393.returns.push(null);
952 // 928
953 f895948954_393.returns.push(null);
954 // 930
955 f895948954_393.returns.push(null);
956 // 932
957 f895948954_393.returns.push(null);
958 // 934
959 f895948954_393.returns.push(null);
960 // 936
961 f895948954_393.returns.push(null);
962 // 938
963 f895948954_393.returns.push(null);
964 // 940
965 f895948954_393.returns.push(null);
966 // 942
967 f895948954_393.returns.push(null);
968 // 944
969 f895948954_393.returns.push(null);
970 // 946
971 f895948954_393.returns.push(null);
972 // 947
973 ow895948954.JSBNG__opera = undefined;
974 // 949
975 f895948954_393.returns.push(null);
976 // 951
977 f895948954_393.returns.push(null);
978 // 952
979 f895948954_7.returns.push(undefined);
980 // 961
981 o9 = {};
982 // 962
983 f895948954_393.returns.push(o9);
984 // 963
985 o9.className = "";
986 // 966
987 // 968
988 f895948954_393.returns.push(null);
989 // 997
990 o10 = {};
991 // 998
992 f895948954_393.returns.push(o10);
993 // 1000
994 f895948954_393.returns.push(o9);
995 // 1001
996 o0.defaultView = ow895948954;
997 // 1002
998 o11 = {};
999 // 1003
1000 f895948954_4.returns.push(o11);
1001 // 1004
1002 o11.direction = void 0;
1003 // undefined
1004 o11 = null;
1005 // 1005
1006 o10.clientWidth = 994;
1007 // undefined
1008 o10 = null;
1009 // 1007
1010 o10 = {};
1011 // 1008
1012 f895948954_393.returns.push(o10);
1013 // 1010
1014 f895948954_393.returns.push(null);
1015 // 1012
1016 f895948954_393.returns.push(null);
1017 // 1013
1018 o10.clientWidth = 73;
1019 // 1015
1020 f895948954_393.returns.push(null);
1021 // 1017
1022 f895948954_393.returns.push(null);
1023 // 1019
1024 f895948954_393.returns.push(null);
1025 // 1021
1026 f895948954_393.returns.push(null);
1027 // 1023
1028 f895948954_393.returns.push(null);
1029 // 1025
1030 f895948954_393.returns.push(null);
1031 // 1027
1032 o11 = {};
1033 // 1028
1034 f895948954_393.returns.push(o11);
1035 // 1030
1036 f895948954_393.returns.push(null);
1037 // 1031
1038 o12 = {};
1039 // 1032
1040 o11.style = o12;
1041 // 1033
1042 // undefined
1043 o12 = null;
1044 // 1034
1045 o11.clientWidth = 0;
1046 // undefined
1047 o11 = null;
1048 // 1036
1049 o11 = {};
1050 // 1037
1051 f895948954_393.returns.push(o11);
1052 // undefined
1053 o11 = null;
1054 // 1039
1055 o11 = {};
1056 // 1040
1057 f895948954_393.returns.push(o11);
1058 // 1042
1059 o12 = {};
1060 // 1043
1061 f895948954_393.returns.push(o12);
1062 // 1044
1063 o12.className = "gbt gbqfh";
1064 // 1046
1065 f895948954_393.returns.push(null);
1066 // 1048
1067 f895948954_393.returns.push(null);
1068 // 1051
1069 o13 = {};
1070 // 1052
1071 f895948954_393.returns.push(o13);
1072 // 1053
1073 o14 = {};
1074 // 1054
1075 o13.style = o14;
1076 // 1055
1077 o14.left = "";
1078 // 1057
1079 // 1059
1080 // 1064
1081 o15 = {};
1082 // 1065
1083 f895948954_393.returns.push(o15);
1084 // 1069
1085 f895948954_7.returns.push(undefined);
1086 // 1070
1087 o0.cookie = "PREF=ID=1027cc612e36f2f9:FF=0:TM=1373476536:LM=1373476536:S=0SCCQkPlw7pcnOlV";
1088 // 1071
1089 f895948954_406 = function() { return f895948954_406.returns[f895948954_406.inst++]; };
1090 f895948954_406.returns = [];
1091 f895948954_406.inst = 0;
1092 // 1072
1093 o2.getItem = f895948954_406;
1094 // 1073
1095 f895948954_406.returns.push(null);
1096 // 1076
1097 f895948954_406.returns.push(null);
1098 // 1077
1099 o15.currentStyle = void 0;
1100 // 1079
1101 f895948954_407 = function() { return f895948954_407.returns[f895948954_407.inst++]; };
1102 f895948954_407.returns = [];
1103 f895948954_407.inst = 0;
1104 // 1080
1105 o2.setItem = f895948954_407;
1106 // 1081
1107 f895948954_407.returns.push(undefined);
1108 // 1082
1109 o16 = {};
1110 // 1083
1111 o0.body = o16;
1112 // 1085
1113 o17 = {};
1114 // 1086
1115 f895948954_4.returns.push(o17);
1116 // 1087
1117 o17.direction = void 0;
1118 // 1088
1119 o18 = {};
1120 // 1089
1121 o15.style = o18;
1122 // 1090
1123 // 1092
1124 // 1095
1125 o11 = {};
1126 // 1096
1127 f895948954_393.returns.push(o11);
1128 // 1098
1129 o12 = {};
1130 // 1099
1131 f895948954_393.returns.push(o12);
1132 // 1100
1133 o12.className = "gbt gbqfh";
1134 // undefined
1135 o12 = null;
1136 // 1102
1137 f895948954_393.returns.push(null);
1138 // 1104
1139 f895948954_393.returns.push(null);
1140 // 1107
1141 o13 = {};
1142 // 1108
1143 f895948954_393.returns.push(o13);
1144 // 1109
1145 o14 = {};
1146 // 1110
1147 o13.style = o14;
1148 // 1111
1149 o14.left = "";
1150 // 1113
1151 // 1115
1152 // 1120
1153 o15 = {};
1154 // 1121
1155 f895948954_393.returns.push(o15);
1156 // 1125
1157 f895948954_7.returns.push(undefined);
1158 // 1127
1159 f895948954_406 = function() { return f895948954_406.returns[f895948954_406.inst++]; };
1160 f895948954_406.returns = [];
1161 f895948954_406.inst = 0;
1162 // 1129
1163 f895948954_406.returns.push(null);
1164 // 1132
1165 f895948954_406.returns.push(null);
1166 // 1133
1167 o15.currentStyle = void 0;
1168 // 1135
1169 f895948954_407 = function() { return f895948954_407.returns[f895948954_407.inst++]; };
1170 f895948954_407.returns = [];
1171 f895948954_407.inst = 0;
1172 // 1137
1173 f895948954_407.returns.push(undefined);
1174 // 1138
1175 o16 = {};
1176 // 1141
1177 o17 = {};
1178 // 1142
1179 f895948954_4.returns.push(o17);
1180 // 1143
1181 o17.direction = void 0;
1182 // undefined
1183 o17 = null;
1184 // 1144
1185 o18 = {};
1186 // 1145
1187 o15.style = o18;
1188 // 1146
1189 // 1148
1190 // 1151
1191 // 1152
1192 o12 = {};
1193 // 1153
1194 o15.parentNode = o12;
1195 // 1155
1196 o17 = {};
1197 // 1156
1198 o12.style = o17;
1199 // 1157
1200 // undefined
1201 o17 = null;
1202 // 1160
1203 o17 = {};
1204 // 1161
1205 f895948954_393.returns.push(o17);
1206 // 1162
1207 o17.innerHTML = "body{margin:0;}.hp{height:100%;min-height:500px;overflow-y:auto;position:absolute;width:100%}#gog{padding:3px 8px 0}.gac_m td{line-height:17px}body,td,a,p,.h{font-family:arial,sans-serif}.h{color:#12c;font-size:20px}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}em{font-weight:bold;font-style:normal}.lst{height:20px;width:496px}.ds{display:inline-block}span.ds{margin:3px 0 4px;margin-left:4px}.ctr-p{margin:0 auto;min-width:980px}.jhp input[type=\"submit\"]{background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);-moz-border-radius:2px;-moz-user-select:none;background-color:#f5f5f5;background-image:linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0, 0, 0, 0.1);border-radius:2px;color:#666;cursor:default;font-family:arial,sans-serif;font-size:11px;font-weight:bold;height:29px;line-height:27px;margin:11px 6px;min-width:54px;padding:0 8px;text-align:center}.jhp input[type=\"submit\"]:hover{background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;box-shadow:0 1px 1px rgba(0,0,0,0.1);color:#333}.jhp input[type=\"submit\"]:focus{border:1px solid #4d90fe;outline:none}a.gb1,a.gb2,a.gb3,a.gb4{color:#11c !important}body{background:#fff;color:#222}a{color:#12c;text-decoration:none}a:hover,a:active{text-decoration:underline}.fl a{color:#12c}a:visited{color:#609}a.gb1,a.gb4{text-decoration:underline}a.gb3:hover{text-decoration:none}#ghead a.gb2:hover{color:#fff!important}.sblc{padding-top:5px}.sblc a{display:block;margin:2px 0;margin-left:13px;font-size:11px;}.lsbb{height:30px;display:block}.ftl,#footer a{color:#666;margin:2px 10px 0}#footer a:active{color:#dd4b39}.lsb{border:none;color:#000;cursor:pointer;height:30px;margin:0;outline:0;font:15px arial,sans-serif;vertical-align:top}.lst:focus{outline:none}#addlang a{padding:0 3px}body,html{font-size:small}h1,ol,ul,li{margin:0;padding:0}.nojsb{display:none}.nojsv{visibility:hidden}#body,#footer{display:block}#footer{font-size:10pt;min-height:49px;position:absolute;bottom:0;width:100%}#footer>div{border-top:1px solid #ebebeb;bottom:0;padding:3px 0 10px;position:absolute;width:100%}#flci{float:left;margin-left:-260px;text-align:left;width:260px}#fll{float:right;text-align:right;width:100%}#ftby{padding-left:260px}#ftby>div,#fll>div,#footer a{display:inline-block}@media only screen and (min-width:1222px){#ftby{margin: 0 44px}}.nojsb{display:none}.nojsv{visibility:hidden}.nbcl{background:url(/images/nav_logo129.png) no-repeat -140px -230px;height:11px;width:11px}";
1208 // undefined
1209 o17 = null;
1210 // 1164
1211 o17 = {};
1212 // 1165
1213 f895948954_393.returns.push(o17);
1214 // 1166
1215 o17.innerHTML = "<div style=\"display:none\">&nbsp;</div>";
1216 // undefined
1217 o17 = null;
1218 // 1169
1219 o17 = {};
1220 // 1170
1221 f895948954_0.returns.push(o17);
1222 // 1171
1223 o17.getTime = f895948954_388;
1224 // undefined
1225 o17 = null;
1226 // 1172
1227 f895948954_388.returns.push(1373476539179);
1228 // 1173
1229 f895948954_16.returns.push(2);
1230 // 1175
1231 f895948954_417 = function() { return f895948954_417.returns[f895948954_417.inst++]; };
1232 f895948954_417.returns = [];
1233 f895948954_417.inst = 0;
1234 // 1176
1235 o0.getElementsByTagName = f895948954_417;
1236 // 1177
1237 o17 = {};
1238 // 1178
1239 f895948954_417.returns.push(o17);
1240 // 1179
1241 o17.length = 2;
1242 // 1180
1243 o19 = {};
1244 // 1181
1245 o17["0"] = o19;
1246 // 1182
1247 o19.complete = true;
1248 // undefined
1249 o19 = null;
1250 // 1183
1251 o19 = {};
1252 // 1184
1253 o17["1"] = o19;
1254 // undefined
1255 o17 = null;
1256 // 1185
1257 o19.complete = true;
1258 // undefined
1259 o19 = null;
1260 // 1186
1261 f895948954_7.returns.push(undefined);
1262 // 1187
1263 o17 = {};
1264 // 1188
1265 f895948954_0.returns.push(o17);
1266 // 1189
1267 o17.getTime = f895948954_388;
1268 // undefined
1269 o17 = null;
1270 // 1190
1271 f895948954_388.returns.push(1373476539183);
1272 // 1191
1273 o17 = {};
1274 // 1193
1275 o0.f = void 0;
1276 // 1194
1277 o19 = {};
1278 // 1195
1279 o0.gbqf = o19;
1280 // 1197
1281 o20 = {};
1282 // 1198
1283 o19.q = o20;
1284 // 1199
1285 f895948954_424 = function() { return f895948954_424.returns[f895948954_424.inst++]; };
1286 f895948954_424.returns = [];
1287 f895948954_424.inst = 0;
1288 // 1200
1289 o20.JSBNG__focus = f895948954_424;
1290 // 1201
1291 f895948954_424.returns.push(undefined);
1292 // 1202
1293 o21 = {};
1294 // 1203
1295 o0.images = o21;
1296 // undefined
1297 o21 = null;
1298 // 1204
1299 o21 = {};
1300 // 1205
1301 f895948954_65.returns.push(o21);
1302 // 1206
1303 // undefined
1304 o21 = null;
1305 // 1207
1306 f895948954_16.returns.push(3);
1307 // 1209
1308 o21 = {};
1309 // 1210
1310 f895948954_0.returns.push(o21);
1311 // 1211
1312 o21.getTime = f895948954_388;
1313 // undefined
1314 o21 = null;
1315 // 1212
1316 f895948954_388.returns.push(1373476539190);
1317 // 1213
1318 f895948954_428 = function() { return f895948954_428.returns[f895948954_428.inst++]; };
1319 f895948954_428.returns = [];
1320 f895948954_428.inst = 0;
1321 // 1214
1322 o0.createElement = f895948954_428;
1323 // 1215
1324 o21 = {};
1325 // 1216
1326 f895948954_428.returns.push(o21);
1327 // 1217
1328 // 1219
1329 o22 = {};
1330 // 1220
1331 f895948954_393.returns.push(o22);
1332 // 1221
1333 f895948954_431 = function() { return f895948954_431.returns[f895948954_431.inst++]; };
1334 f895948954_431.returns = [];
1335 f895948954_431.inst = 0;
1336 // 1222
1337 o22.appendChild = f895948954_431;
1338 // undefined
1339 o22 = null;
1340 // 1223
1341 f895948954_431.returns.push(o21);
1342 // undefined
1343 o21 = null;
1344 // 1224
1345 f895948954_16.returns.push(4);
1346 // 1225
1347 f895948954_16.returns.push(5);
1348 // 1227
1349 o21 = {};
1350 // 1228
1351 f895948954_428.returns.push(o21);
1352 // 1229
1353 // 1230
1354 // 1231
1355 f895948954_386.returns.push(0.8713209232627044);
1356 // 1233
1357 f895948954_393.returns.push(null);
1358 // 1235
1359 o16.appendChild = f895948954_431;
1360 // 1236
1361 f895948954_431.returns.push(o21);
1362 // undefined
1363 o21 = null;
1364 // 1237
1365 f895948954_16.returns.push(6);
1366 // 1239
1367 o21 = {};
1368 // 1241
1369 o21.which = 1;
1370 // 1242
1371 o21.type = "mouseover";
1372 // 1243
1373 o21.srcElement = void 0;
1374 // 1244
1375 o22 = {};
1376 // 1245
1377 o21.target = o22;
1378 // 1246
1379 o22.__jsaction = void 0;
1380 // 1247
1381 // 1248
1382 f895948954_435 = function() { return f895948954_435.returns[f895948954_435.inst++]; };
1383 f895948954_435.returns = [];
1384 f895948954_435.inst = 0;
1385 // 1249
1386 o22.getAttribute = f895948954_435;
1387 // 1250
1388 f895948954_435.returns.push(null);
1389 // 1251
1390 o23 = {};
1391 // 1252
1392 o22.parentNode = o23;
1393 // 1253
1394 o23.__jsaction = void 0;
1395 // 1254
1396 // 1255
1397 o23.getAttribute = f895948954_435;
1398 // 1256
1399 f895948954_435.returns.push(null);
1400 // 1257
1401 o24 = {};
1402 // 1258
1403 o23.parentNode = o24;
1404 // 1259
1405 o24.__jsaction = void 0;
1406 // 1260
1407 // 1261
1408 o24.getAttribute = f895948954_435;
1409 // 1262
1410 f895948954_435.returns.push(null);
1411 // 1263
1412 o25 = {};
1413 // 1264
1414 o24.parentNode = o25;
1415 // 1265
1416 o25.__jsaction = void 0;
1417 // 1266
1418 // 1267
1419 o25.getAttribute = f895948954_435;
1420 // 1268
1421 f895948954_435.returns.push(null);
1422 // 1269
1423 o26 = {};
1424 // 1270
1425 o25.parentNode = o26;
1426 // 1271
1427 o26.__jsaction = void 0;
1428 // 1272
1429 // 1273
1430 o26.getAttribute = f895948954_435;
1431 // 1274
1432 f895948954_435.returns.push(null);
1433 // 1275
1434 o27 = {};
1435 // 1276
1436 o26.parentNode = o27;
1437 // 1277
1438 o27.__jsaction = void 0;
1439 // 1278
1440 // 1279
1441 o27.getAttribute = f895948954_435;
1442 // 1280
1443 f895948954_435.returns.push(null);
1444 // 1281
1445 o28 = {};
1446 // 1282
1447 o27.parentNode = o28;
1448 // 1283
1449 o28.__jsaction = void 0;
1450 // 1284
1451 // 1285
1452 o28.getAttribute = f895948954_435;
1453 // 1286
1454 f895948954_435.returns.push(null);
1455 // 1287
1456 o28.parentNode = o9;
1457 // 1288
1458 o9.__jsaction = void 0;
1459 // 1289
1460 // 1290
1461 o9.getAttribute = f895948954_435;
1462 // 1291
1463 f895948954_435.returns.push(null);
1464 // 1292
1465 o29 = {};
1466 // 1293
1467 o9.parentNode = o29;
1468 // 1294
1469 o29.__jsaction = void 0;
1470 // 1295
1471 // 1296
1472 o29.getAttribute = f895948954_435;
1473 // 1297
1474 f895948954_435.returns.push(null);
1475 // 1298
1476 o29.parentNode = o16;
1477 // 1299
1478 o16.__jsaction = void 0;
1479 // 1300
1480 // 1301
1481 o16.getAttribute = f895948954_435;
1482 // 1302
1483 f895948954_435.returns.push(null);
1484 // 1303
1485 o16.parentNode = o6;
1486 // 1304
1487 o30 = {};
1488 // 1306
1489 o30.which = 1;
1490 // 1307
1491 o30.type = "mouseout";
1492 // 1308
1493 o30.srcElement = void 0;
1494 // 1309
1495 o30.target = o22;
1496 // 1320
1497 o31 = {};
1498 // 1322
1499 o31.which = 1;
1500 // 1323
1501 o31.type = "mouseover";
1502 // 1324
1503 o31.srcElement = void 0;
1504 // 1325
1505 o32 = {};
1506 // 1326
1507 o31.target = o32;
1508 // 1327
1509 o32.__jsaction = void 0;
1510 // 1328
1511 // 1329
1512 o32.getAttribute = f895948954_435;
1513 // 1330
1514 f895948954_435.returns.push(null);
1515 // 1331
1516 o33 = {};
1517 // 1332
1518 o32.parentNode = o33;
1519 // 1333
1520 o33.__jsaction = void 0;
1521 // 1334
1522 // 1335
1523 o33.getAttribute = f895948954_435;
1524 // 1336
1525 f895948954_435.returns.push(null);
1526 // 1337
1527 o34 = {};
1528 // 1338
1529 o33.parentNode = o34;
1530 // 1339
1531 o34.__jsaction = void 0;
1532 // 1340
1533 // 1341
1534 o34.getAttribute = f895948954_435;
1535 // 1342
1536 f895948954_435.returns.push(null);
1537 // 1343
1538 o35 = {};
1539 // 1344
1540 o34.parentNode = o35;
1541 // 1345
1542 o35.__jsaction = void 0;
1543 // 1346
1544 // 1347
1545 o35.getAttribute = f895948954_435;
1546 // 1348
1547 f895948954_435.returns.push(null);
1548 // 1349
1549 o35.parentNode = o16;
1550 // 1356
1551 f895948954_449 = function() { return f895948954_449.returns[f895948954_449.inst++]; };
1552 f895948954_449.returns = [];
1553 f895948954_449.inst = 0;
1554 // 1357
1555 o0.JSBNG__addEventListener = f895948954_449;
1556 // 1359
1557 f895948954_393.returns.push(o9);
1558 // 1360
1559 f895948954_450 = function() { return f895948954_450.returns[f895948954_450.inst++]; };
1560 f895948954_450.returns = [];
1561 f895948954_450.inst = 0;
1562 // 1361
1563 o9.getElementsByTagName = f895948954_450;
1564 // 1362
1565 o36 = {};
1566 // 1363
1567 f895948954_450.returns.push(o36);
1568 // 1365
1569 o37 = {};
1570 // 1366
1571 f895948954_393.returns.push(o37);
1572 // 1367
1573 o38 = {};
1574 // 1368
1575 o36["0"] = o38;
1576 // 1369
1577 o39 = {};
1578 // 1370
1579 o36["1"] = o39;
1580 // 1371
1581 o40 = {};
1582 // 1372
1583 o36["2"] = o40;
1584 // 1373
1585 o41 = {};
1586 // 1374
1587 o36["3"] = o41;
1588 // 1375
1589 o42 = {};
1590 // 1376
1591 o36["4"] = o42;
1592 // 1377
1593 o36["5"] = o23;
1594 // 1378
1595 o43 = {};
1596 // 1379
1597 o36["6"] = o43;
1598 // 1380
1599 o44 = {};
1600 // 1381
1601 o36["7"] = o44;
1602 // 1382
1603 o45 = {};
1604 // 1383
1605 o36["8"] = o45;
1606 // 1384
1607 o46 = {};
1608 // 1385
1609 o36["9"] = o46;
1610 // 1386
1611 o47 = {};
1612 // 1387
1613 o36["10"] = o47;
1614 // 1388
1615 o48 = {};
1616 // 1389
1617 o36["11"] = o48;
1618 // 1390
1619 o49 = {};
1620 // 1391
1621 o36["12"] = o49;
1622 // 1392
1623 o50 = {};
1624 // 1393
1625 o36["13"] = o50;
1626 // 1394
1627 o51 = {};
1628 // 1395
1629 o36["14"] = o51;
1630 // 1396
1631 o52 = {};
1632 // 1397
1633 o36["15"] = o52;
1634 // 1398
1635 o53 = {};
1636 // 1399
1637 o36["16"] = o53;
1638 // 1400
1639 o54 = {};
1640 // 1401
1641 o36["17"] = o54;
1642 // 1402
1643 o55 = {};
1644 // 1403
1645 o36["18"] = o55;
1646 // 1404
1647 o56 = {};
1648 // 1405
1649 o36["19"] = o56;
1650 // 1406
1651 o57 = {};
1652 // 1407
1653 o36["20"] = o57;
1654 // 1408
1655 o58 = {};
1656 // 1409
1657 o36["21"] = o58;
1658 // 1410
1659 o59 = {};
1660 // 1411
1661 o36["22"] = o59;
1662 // 1412
1663 o36["23"] = o10;
1664 // 1413
1665 o60 = {};
1666 // 1414
1667 o36["24"] = o60;
1668 // 1415
1669 o61 = {};
1670 // 1416
1671 o36["25"] = o61;
1672 // 1417
1673 o62 = {};
1674 // 1418
1675 o36["26"] = o62;
1676 // 1419
1677 o63 = {};
1678 // 1420
1679 o36["27"] = o63;
1680 // 1421
1681 o36["28"] = void 0;
1682 // undefined
1683 o36 = null;
1684 // 1423
1685 o36 = {};
1686 // 1424
1687 f895948954_393.returns.push(o36);
1688 // 1426
1689 f895948954_393.returns.push(null);
1690 // 1428
1691 f895948954_393.returns.push(null);
1692 // 1429
1693 o37.getElementsByTagName = f895948954_450;
1694 // 1430
1695 o64 = {};
1696 // 1431
1697 f895948954_450.returns.push(o64);
1698 // 1432
1699 o64.length = 3;
1700 // 1433
1701 o65 = {};
1702 // 1434
1703 o64["0"] = o65;
1704 // 1435
1705 o66 = {};
1706 // 1436
1707 o64["1"] = o66;
1708 // 1437
1709 o67 = {};
1710 // 1438
1711 o64["2"] = o67;
1712 // 1439
1713 o64["3"] = void 0;
1714 // undefined
1715 o64 = null;
1716 // 1440
1717 o38.className = "gbzt";
1718 // 1448
1719 o39.className = "gbzt gbz0l gbp1";
1720 // 1456
1721 o40.className = "gbzt";
1722 // 1464
1723 o41.className = "gbzt";
1724 // 1472
1725 o42.className = "gbzt";
1726 // 1480
1727 o23.className = "gbzt";
1728 // 1488
1729 o43.className = "gbzt";
1730 // 1496
1731 o44.className = "gbzt";
1732 // 1504
1733 o45.className = "gbzt";
1734 // 1512
1735 o46.className = "gbzt";
1736 // 1520
1737 o47.className = "gbgt";
1738 // 1521
1739 o47.JSBNG__addEventListener = f895948954_391;
1740 // 1522
1741 f895948954_391.returns.push(undefined);
1742 // 1524
1743 f895948954_391.returns.push(undefined);
1744 // 1525
1745 o48.className = "gbmt";
1746 // 1533
1747 o49.className = "gbmt";
1748 // 1541
1749 o50.className = "gbmt";
1750 // 1549
1751 o51.className = "gbmt";
1752 // 1557
1753 o52.className = "gbmt";
1754 // 1565
1755 o53.className = "gbmt";
1756 // 1573
1757 o54.className = "gbmt";
1758 // 1581
1759 o55.className = "gbmt";
1760 // 1589
1761 o56.className = "gbmt";
1762 // 1597
1763 o57.className = "gbmt";
1764 // 1605
1765 o58.className = "gbmt";
1766 // 1613
1767 o59.className = "gbqla";
1768 // 1621
1769 o10.className = "gbgt";
1770 // 1622
1771 o10.JSBNG__addEventListener = f895948954_391;
1772 // 1623
1773 f895948954_391.returns.push(undefined);
1774 // 1625
1775 f895948954_391.returns.push(undefined);
1776 // 1626
1777 o60.className = "gbmt";
1778 // 1634
1779 o61.className = "gbmt";
1780 // 1642
1781 o62.className = "gbmt";
1782 // 1650
1783 o63.className = "gbmt";
1784 // 1658
1785 o65.className = "gbqfb";
1786 // 1663
1787 o65.JSBNG__addEventListener = f895948954_391;
1788 // 1664
1789 f895948954_391.returns.push(undefined);
1790 // 1666
1791 f895948954_391.returns.push(undefined);
1792 // 1667
1793 o66.className = "gbqfba";
1794 // 1673
1795 o66.JSBNG__addEventListener = f895948954_391;
1796 // 1674
1797 f895948954_391.returns.push(undefined);
1798 // 1676
1799 f895948954_391.returns.push(undefined);
1800 // 1677
1801 o67.className = "gbqfba";
1802 // 1683
1803 o67.JSBNG__addEventListener = f895948954_391;
1804 // 1684
1805 f895948954_391.returns.push(undefined);
1806 // 1686
1807 f895948954_391.returns.push(undefined);
1808 // 1688
1809 f895948954_393.returns.push(null);
1810 // 1690
1811 f895948954_393.returns.push(null);
1812 // 1691
1813 f895948954_7.returns.push(undefined);
1814 // 1693
1815 o64 = {};
1816 // 1694
1817 f895948954_393.returns.push(o64);
1818 // undefined
1819 o64 = null;
1820 // 1696
1821 o64 = {};
1822 // 1697
1823 f895948954_393.returns.push(o64);
1824 // 1699
1825 o68 = {};
1826 // 1700
1827 f895948954_393.returns.push(o68);
1828 // 1701
1829 f895948954_487 = function() { return f895948954_487.returns[f895948954_487.inst++]; };
1830 f895948954_487.returns = [];
1831 f895948954_487.inst = 0;
1832 // 1702
1833 o64.querySelectorAll = f895948954_487;
1834 // 1703
1835 f895948954_488 = function() { return f895948954_488.returns[f895948954_488.inst++]; };
1836 f895948954_488.returns = [];
1837 f895948954_488.inst = 0;
1838 // 1704
1839 o64.querySelector = f895948954_488;
1840 // 1706
1841 o69 = {};
1842 // 1707
1843 f895948954_488.returns.push(o69);
1844 // 1711
1845 o70 = {};
1846 // 1712
1847 f895948954_488.returns.push(o70);
1848 // 1713
1849 o68.scrollTop = 0;
1850 // 1714
1851 o68.scrollHeight = 318;
1852 // 1715
1853 o68.clientHeight = 318;
1854 // 1716
1855 o71 = {};
1856 // 1717
1857 o69.style = o71;
1858 // undefined
1859 o69 = null;
1860 // 1718
1861 // undefined
1862 o71 = null;
1863 // 1719
1864 o69 = {};
1865 // 1720
1866 o70.style = o69;
1867 // undefined
1868 o70 = null;
1869 // 1721
1870 // undefined
1871 o69 = null;
1872 // 1722
1873 o68.JSBNG__addEventListener = f895948954_391;
1874 // undefined
1875 o68 = null;
1876 // 1723
1877 f895948954_391.returns.push(undefined);
1878 // 1724
1879 o5.href = "http://www.google.com/";
1880 // 1725
1881 f895948954_18.returns.push(undefined);
1882 // 1726
1883 f895948954_386.returns.push(0.6669860659232372);
1884 // 1727
1885 o68 = {};
1886 // 1729
1887 o68.which = 1;
1888 // 1730
1889 o68.type = "mouseout";
1890 // 1731
1891 o68.srcElement = void 0;
1892 // 1732
1893 o68.target = o32;
1894 // 1738
1895 o69 = {};
1896 // 1740
1897 o69.which = 1;
1898 // 1741
1899 o69.type = "mouseover";
1900 // 1742
1901 o69.srcElement = void 0;
1902 // 1743
1903 o69.target = o36;
1904 // 1744
1905 o36.__jsaction = void 0;
1906 // 1745
1907 // 1746
1908 o36.getAttribute = f895948954_435;
1909 // 1747
1910 f895948954_435.returns.push(null);
1911 // 1748
1912 o70 = {};
1913 // 1749
1914 o36.parentNode = o70;
1915 // 1750
1916 o70.__jsaction = void 0;
1917 // 1751
1918 // 1752
1919 o70.getAttribute = f895948954_435;
1920 // 1753
1921 f895948954_435.returns.push(null);
1922 // 1754
1923 o70.parentNode = o11;
1924 // 1755
1925 o11.__jsaction = void 0;
1926 // 1756
1927 // 1757
1928 o11.getAttribute = f895948954_435;
1929 // 1758
1930 f895948954_435.returns.push(null);
1931 // 1759
1932 o11.parentNode = o19;
1933 // 1760
1934 o19.__jsaction = void 0;
1935 // 1761
1936 // 1762
1937 f895948954_496 = function() { return f895948954_496.returns[f895948954_496.inst++]; };
1938 f895948954_496.returns = [];
1939 f895948954_496.inst = 0;
1940 // 1763
1941 o19.getAttribute = f895948954_496;
1942 // 1764
1943 f895948954_496.returns.push(null);
1944 // 1765
1945 o19.parentNode = o37;
1946 // 1766
1947 o37.__jsaction = void 0;
1948 // 1767
1949 // 1768
1950 o37.getAttribute = f895948954_435;
1951 // 1769
1952 f895948954_435.returns.push(null);
1953 // 1770
1954 o71 = {};
1955 // 1771
1956 o37.parentNode = o71;
1957 // 1772
1958 o71.__jsaction = void 0;
1959 // 1773
1960 // 1774
1961 o71.getAttribute = f895948954_435;
1962 // 1775
1963 f895948954_435.returns.push(null);
1964 // 1776
1965 o72 = {};
1966 // 1777
1967 o71.parentNode = o72;
1968 // 1778
1969 o72.__jsaction = void 0;
1970 // 1779
1971 // 1780
1972 o72.getAttribute = f895948954_435;
1973 // 1781
1974 f895948954_435.returns.push(null);
1975 // 1782
1976 o72.parentNode = o28;
1977 // 1787
1978 o73 = {};
1979 // 1789
1980 o73.which = 1;
1981 // 1790
1982 o73.type = "mouseout";
1983 // 1791
1984 o73.srcElement = void 0;
1985 // 1792
1986 o73.target = o36;
1987 // 1804
1988 o74 = {};
1989 // 1806
1990 o74.which = 1;
1991 // 1807
1992 o74.type = "mouseover";
1993 // 1808
1994 o74.srcElement = void 0;
1995 // 1809
1996 o75 = {};
1997 // 1810
1998 o74.target = o75;
1999 // 1811
2000 o75.__jsaction = void 0;
2001 // 1812
2002 // 1813
2003 o75.getAttribute = f895948954_435;
2004 // 1814
2005 f895948954_435.returns.push(null);
2006 // 1815
2007 o75.parentNode = o33;
2008 // 1820
2009 o76 = {};
2010 // 1822
2011 o76.which = 1;
2012 // 1823
2013 o76.type = "mouseout";
2014 // 1824
2015 o76.srcElement = void 0;
2016 // 1825
2017 o76.target = o75;
2018 // 1831
2019 o77 = {};
2020 // 1833
2021 o77.which = 1;
2022 // 1834
2023 o77.type = "mouseover";
2024 // 1835
2025 o77.srcElement = void 0;
2026 // 1836
2027 o78 = {};
2028 // 1837
2029 o77.target = o78;
2030 // 1838
2031 o78.__jsaction = void 0;
2032 // 1839
2033 // 1840
2034 o78.getAttribute = f895948954_435;
2035 // 1841
2036 f895948954_435.returns.push(null);
2037 // 1842
2038 o78.parentNode = o33;
2039 // 1847
2040 o79 = {};
2041 // 1849
2042 o79.which = 1;
2043 // 1850
2044 o79.type = "mouseout";
2045 // 1851
2046 o79.srcElement = void 0;
2047 // 1852
2048 o79.target = o78;
2049 // 1858
2050 o80 = {};
2051 // 1860
2052 o80.which = 1;
2053 // 1861
2054 o80.type = "mouseover";
2055 // 1862
2056 o80.srcElement = void 0;
2057 // 1863
2058 o80.target = o16;
2059 // 1865
2060 o81 = {};
2061 // 1867
2062 o81.which = 1;
2063 // 1868
2064 o81.type = "mouseout";
2065 // 1869
2066 o81.srcElement = void 0;
2067 // 1870
2068 o81.target = o16;
2069 // 1872
2070 o82 = {};
2071 // 1874
2072 o82.which = 1;
2073 // 1875
2074 o82.type = "mouseover";
2075 // 1876
2076 o82.srcElement = void 0;
2077 // 1877
2078 o82.target = o78;
2079 // 1883
2080 o83 = {};
2081 // 1885
2082 o83.which = 1;
2083 // 1886
2084 o83.type = "mouseout";
2085 // 1887
2086 o83.srcElement = void 0;
2087 // 1888
2088 o83.target = o78;
2089 // 1894
2090 o84 = {};
2091 // 1896
2092 o84.which = 1;
2093 // 1897
2094 o84.type = "mouseover";
2095 // 1898
2096 o84.srcElement = void 0;
2097 // 1899
2098 o84.target = o75;
2099 // 1905
2100 o85 = {};
2101 // 1907
2102 o85.which = 1;
2103 // 1908
2104 o85.type = "mouseout";
2105 // 1909
2106 o85.srcElement = void 0;
2107 // 1910
2108 o85.target = o75;
2109 // 1916
2110 o86 = {};
2111 // 1918
2112 o86.which = 1;
2113 // 1919
2114 o86.type = "mouseover";
2115 // 1920
2116 o86.srcElement = void 0;
2117 // 1921
2118 o87 = {};
2119 // 1922
2120 o86.target = o87;
2121 // 1923
2122 o87.__jsaction = void 0;
2123 // 1924
2124 // 1925
2125 o87.getAttribute = f895948954_435;
2126 // 1926
2127 f895948954_435.returns.push(null);
2128 // 1927
2129 o87.parentNode = o36;
2130 // 1939
2131 o88 = {};
2132 // 1941
2133 o88.which = 1;
2134 // 1942
2135 o88.type = "mouseout";
2136 // 1943
2137 o88.srcElement = void 0;
2138 // 1944
2139 o88.target = o87;
2140 // 1957
2141 o89 = {};
2142 // 1959
2143 o89.which = 1;
2144 // 1960
2145 o89.type = "mouseover";
2146 // 1961
2147 o89.srcElement = void 0;
2148 // 1962
2149 o89.target = o20;
2150 // 1963
2151 o20.__jsaction = void 0;
2152 // 1964
2153 // 1965
2154 f895948954_516 = function() { return f895948954_516.returns[f895948954_516.inst++]; };
2155 f895948954_516.returns = [];
2156 f895948954_516.inst = 0;
2157 // 1966
2158 o20.getAttribute = f895948954_516;
2159 // 1967
2160 f895948954_516.returns.push(null);
2161 // 1968
2162 o20.parentNode = o87;
2163 // 1981
2164 o90 = {};
2165 // 1983
2166 o90.which = 1;
2167 // 1984
2168 o90.type = "mouseout";
2169 // 1985
2170 o90.srcElement = void 0;
2171 // 1986
2172 o90.target = o20;
2173 // 2000
2174 o91 = {};
2175 // 2002
2176 o91.which = 1;
2177 // 2003
2178 o91.type = "mouseover";
2179 // 2004
2180 o91.srcElement = void 0;
2181 // 2005
2182 o91.target = o87;
2183 // 2018
2184 o92 = {};
2185 // 2020
2186 o92.which = 1;
2187 // 2021
2188 o92.type = "mouseout";
2189 // 2022
2190 o92.srcElement = void 0;
2191 // 2023
2192 o92.target = o87;
2193 // 2036
2194 o93 = {};
2195 // 2038
2196 o93.which = 1;
2197 // 2039
2198 o93.type = "mouseover";
2199 // 2040
2200 o93.srcElement = void 0;
2201 // 2041
2202 o93.target = o75;
2203 // 2048
2204 f895948954_386.returns.push(0.2676769923608018);
2205 // 2050
2206 f895948954_386.returns.push(0.7605350764662566);
2207 // 2055
2208 o3.platform = "MacIntel";
2209 // 2056
2210 o3.appVersion = "5.0 (Macintosh)";
2211 // 2059
2212 o5.protocol = "http:";
2213 // 2060
2214 o5.host = "www.google.com";
2215 // 2061
2216 f895948954_386.returns.push(0.4998516345041988);
2217 // 2062
2218 f895948954_386.returns.push(0.12536944653545645);
2219 // 2064
2220 o94 = {};
2221 // 2065
2222 f895948954_0.returns.push(o94);
2223 // 2066
2224 o94.getTime = f895948954_388;
2225 // undefined
2226 o94 = null;
2227 // 2067
2228 f895948954_388.returns.push(1373476565325);
2229 // 2068
2230 f895948954_17.returns.push(7);
2231 // 2070
2232 o94 = {};
2233 // 2071
2234 f895948954_417.returns.push(o94);
2235 // 2072
2236 o95 = {};
2237 // 2073
2238 o94["0"] = o95;
2239 // undefined
2240 o94 = null;
2241 // 2075
2242 o94 = {};
2243 // 2076
2244 o6.style = o94;
2245 // 2077
2246 o94.opacity = "";
2247 // undefined
2248 o94 = null;
2249 // 2079
2250 f895948954_525 = function() { return f895948954_525.returns[f895948954_525.inst++]; };
2251 f895948954_525.returns = [];
2252 f895948954_525.inst = 0;
2253 // 2080
2254 o8.now = f895948954_525;
2255 // 2083
2256 f895948954_449.returns.push(undefined);
2257 // 2087
2258 o3.msPointerEnabled = void 0;
2259 // 2089
2260 o94 = {};
2261 // 2090
2262 f895948954_428.returns.push(o94);
2263 // undefined
2264 o94 = null;
2265 // 2091
2266 o1.setItem = f895948954_407;
2267 // 2092
2268 f895948954_407.returns.push(undefined);
2269 // 2093
2270 f895948954_527 = function() { return f895948954_527.returns[f895948954_527.inst++]; };
2271 f895948954_527.returns = [];
2272 f895948954_527.inst = 0;
2273 // 2094
2274 o1.removeItem = f895948954_527;
2275 // 2095
2276 f895948954_527.returns.push(undefined);
2277 // 2096
2278 o5.pathname = "/";
2279 // 2097
2280 f895948954_389.returns.push(1373476565406);
2281 // 2098
2282 o94 = {};
2283 // 2099
2284 f895948954_64.returns.push(o94);
2285 // undefined
2286 o94 = null;
2287 // 2102
2288 f895948954_393.returns.push(o34);
2289 // 2104
2290 o94 = {};
2291 // 2105
2292 f895948954_393.returns.push(o94);
2293 // 2107
2294 o96 = {};
2295 // 2108
2296 f895948954_393.returns.push(o96);
2297 // 2112
2298 f895948954_389.returns.push(1373476565410);
2299 // 2116
2300 o5.hostname = "www.google.com";
2301 // 2118
2302 o97 = {};
2303 // 2119
2304 f895948954_417.returns.push(o97);
2305 // 2120
2306 o97["0"] = o19;
2307 // 2121
2308 o19.action = "http://www.google.com/search";
2309 // 2122
2310 o19.className = "";
2311 // 2123
2312 f895948954_532 = function() { return f895948954_532.returns[f895948954_532.inst++]; };
2313 f895948954_532.returns = [];
2314 f895948954_532.inst = 0;
2315 // 2124
2316 o19.JSBNG__onsubmit = f895948954_532;
2317 // 2125
2318 o19.__handler = void 0;
2319 // 2127
2320 // 2128
2321 // 2129
2322 o97["1"] = void 0;
2323 // undefined
2324 o97 = null;
2325 // 2132
2326 f895948954_449.returns.push(undefined);
2327 // 2135
2328 o1.getItem = f895948954_406;
2329 // 2136
2330 f895948954_406.returns.push(null);
2331 // 2138
2332 f895948954_406.returns.push(null);
2333 // 2140
2334 f895948954_407.returns.push(undefined);
2335 // 2142
2336 f895948954_406.returns.push(null);
2337 // 2144
2338 f895948954_407.returns.push(undefined);
2339 // 2146
2340 f895948954_406.returns.push(null);
2341 // 2148
2342 f895948954_407.returns.push(undefined);
2343 // 2150
2344 f895948954_407.returns.push(undefined);
2345 // 2152
2346 f895948954_406.returns.push(null);
2347 // 2154
2348 f895948954_406.returns.push("[]");
2349 // 2156
2350 f895948954_407.returns.push(undefined);
2351 // 2158
2352 f895948954_406.returns.push("[]");
2353 // 2160
2354 f895948954_407.returns.push(undefined);
2355 // 2162
2356 f895948954_406.returns.push("[]");
2357 // 2164
2358 f895948954_407.returns.push(undefined);
2359 // 2166
2360 f895948954_407.returns.push(undefined);
2361 // 2168
2362 f895948954_407.returns.push(undefined);
2363 // 2170
2364 f895948954_406.returns.push("\"uJbdUZ3TOOKQyAHtz4D4Cg\"");
2365 // 2172
2366 f895948954_406.returns.push("[]");
2367 // 2174
2368 f895948954_406.returns.push("[]");
2369 // 2176
2370 f895948954_406.returns.push("[]");
2371 // 2177
2372 o0.title = "Google";
2373 // 2179
2374 o16.className = "hp";
2375 // 2181
2376 f895948954_393.returns.push(o34);
2377 // 2182
2378 o34.innerHTML = "<center><span id=\"prt\" style=\"display:block\"><div style=\"position: relative;\"><style>.pmoabs{background-color:#fff;border:1px solid #E5E5E5;color:#666;font-size:13px;padding-bottom:20px;position:absolute;right:2px;top:3px;z-index:986}.kd-button-submit{border:1px solid #3079ed;background-color:#4d90fe;background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);background-image: -o-linear-gradient(top,#4d90fe,#4787ed);background-image: linear-gradient(top,#4d90fe,#4787ed);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',EndColorStr='#4787ed')}.kd-button-submit:hover{border:1px solid #2f5bb7;background-color:#357ae8;background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8);background-image: -moz-linear-gradient(top,#4d90fe,#357ae8);background-image: -ms-linear-gradient(top,#4d90fe,#357ae8);background-image: -o-linear-gradient(top,#4d90fe,#357ae8);background-image: linear-gradient(top,#4d90fe,#357ae8);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',EndColorStr='#357ae8')}.kd-button-submit:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.xbtn{color:#999;cursor:pointer;font-size:23px;line-height:5px;padding-top:5px}.padi{padding:0 8px 0 10px}.padt{padding:5px 20px 0 0;color:#444}.pads{text-align:left}#pmolnk{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}#pmolnk a{color:#fff;display:inline-block;font-weight:bold;padding:5px 20px;text-decoration:none;white-space:nowrap}</style> <div class=\"pmoabs\" id=\"pmocntr2\" style=\"right: 2px; top: 20px;\"> <table border=\"0\"> <tbody><tr> <td colspan=\"2\"> <script type=\"text/javascript\">try {\n    ((JSBNG_Record.scriptLoad)((\"function eb9de603517591e48f057c7e6086bbd305cb1ab63(event) {\\u000a    ((google.promos && google.promos.toast) && google.promos.toast.cpc());\\u000a};\"), (\"s8a306005c8afd0845b57355205e4d809c13bbef8\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    function eb9de603517591e48f057c7e6086bbd305cb1ab63(JSBNG__event) {\n        if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n            return ((JSBNG_Record.eventCall)((arguments.callee), (\"s8a306005c8afd0845b57355205e4d809c13bbef8_0\"), (s8a306005c8afd0845b57355205e4d809c13bbef8_0_instance), (this), (arguments)))\n        };\n        (null);\n        (((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"cpc\")))[(\"cpc\")])());\n    };\n    var s8a306005c8afd0845b57355205e4d809c13bbef8_0_instance;\n    ((s8a306005c8afd0845b57355205e4d809c13bbef8_0_instance) = ((JSBNG_Record.eventInstance)((\"s8a306005c8afd0845b57355205e4d809c13bbef8_0\"))));\n    ((JSBNG_Record.markFunction)((eb9de603517591e48f057c7e6086bbd305cb1ab63)));\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><div class=\"xbtn\" onclick=\"return eb9de603517591e48f057c7e6086bbd305cb1ab63.call(this, event);\" style=\"float:right\">×</div> </td> </tr> <tr> <td class=\"padi\" rowspan=\"2\"> <img src=\"/images/icons/product/chrome-48.png\"> </td> <td class=\"pads\">A faster way to browse the web</td> </tr> <tr> <td class=\"padt\"> <div class=\"kd-button-submit\" id=\"pmolnk\"> <script type=\"text/javascript\">try {\n    ((JSBNG_Record.scriptLoad)((\"function ecb5dd2f554ffdaa5dbca76b6834768842fd1de9a(event) {\\u000a    ((google.promos && google.promos.toast) && google.promos.toast.cl());\\u000a};\"), (\"s79d6c8ae337e260bda4e0343b5581cbae53a6f79\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    function ecb5dd2f554ffdaa5dbca76b6834768842fd1de9a(JSBNG__event) {\n        if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n            return ((JSBNG_Record.eventCall)((arguments.callee), (\"s79d6c8ae337e260bda4e0343b5581cbae53a6f79_0\"), (s79d6c8ae337e260bda4e0343b5581cbae53a6f79_0_instance), (this), (arguments)))\n        };\n        (null);\n        (((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"cl\")))[(\"cl\")])());\n    };\n    var s79d6c8ae337e260bda4e0343b5581cbae53a6f79_0_instance;\n    ((s79d6c8ae337e260bda4e0343b5581cbae53a6f79_0_instance) = ((JSBNG_Record.eventInstance)((\"s79d6c8ae337e260bda4e0343b5581cbae53a6f79_0\"))));\n    ((JSBNG_Record.markFunction)((ecb5dd2f554ffdaa5dbca76b6834768842fd1de9a)));\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a href=\"/chrome/index.html?hl=en&amp;brand=CHNG&amp;utm_source=en-hpp&amp;utm_medium=hpp&amp;utm_campaign=en\" onclick=\"return ecb5dd2f554ffdaa5dbca76b6834768842fd1de9a.call(this, event);\">Install Google Chrome</a> </div> </td> </tr> </tbody></table> </div> <script type=\"text/javascript\">try {\n    ((JSBNG_Record.scriptLoad)((\"(function() {\\u000a    var a = {\\u000a        v: \\\"a\\\",\\u000a        w: \\\"c\\\",\\u000a        i: \\\"d\\\",\\u000a        k: \\\"h\\\",\\u000a        g: \\\"i\\\",\\u000a        K: \\\"n\\\",\\u000a        Q: \\\"x\\\",\\u000a        H: \\\"ma\\\",\\u000a        I: \\\"mc\\\",\\u000a        J: \\\"mi\\\",\\u000a        A: \\\"pa\\\",\\u000a        B: \\\"pc\\\",\\u000a        D: \\\"pi\\\",\\u000a        G: \\\"pn\\\",\\u000a        F: \\\"px\\\",\\u000a        C: \\\"pd\\\",\\u000a        L: \\\"gpa\\\",\\u000a        N: \\\"gpi\\\",\\u000a        O: \\\"gpn\\\",\\u000a        P: \\\"gpx\\\",\\u000a        M: \\\"gpd\\\"\\u000a    };\\u000a    var c = {\\u000a        o: \\\"hplogo\\\",\\u000a        s: \\\"pmocntr2\\\"\\u000a    }, e, g, k = document.getElementById(c.s);\\u000a    google.promos = (google.promos || {\\u000a    });\\u000a    google.promos.toast = (google.promos.toast || {\\u000a    });\\u000a    function l(b) {\\u000a        (k && (k.style.display = (b ? \\\"\\\" : \\\"none\\\"), (k.parentNode && (k.parentNode.style.position = (b ? \\\"relative\\\" : \\\"\\\")))));\\u000a    };\\u000a    function m(b) {\\u000a        try {\\u000a            if ((((k && b) && b.es) && b.es.m)) {\\u000a                var d = (window.gbar.rtl(document.body) ? \\\"left\\\" : \\\"right\\\");\\u000a                k.style[d] = (((b.es.m - 16) + 2) + \\\"px\\\");\\u000a                k.style.top = \\\"20px\\\";\\u000a            }\\u000a        ;\\u000a        } catch (f) {\\u000a            google.ml(f, !1, {\\u000a                cause: (e + \\\"_PT\\\")\\u000a            });\\u000a        };\\u000a    };\\u000a    google.promos.toast.cl = function() {\\u000a        try {\\u000a            window.gbar.up.sl(g, e, a.k, void 0, 1);\\u000a        } catch (b) {\\u000a            google.ml(b, !1, {\\u000a                cause: (e + \\\"_CL\\\")\\u000a            });\\u000a        };\\u000a    };\\u000a    google.promos.toast.cpc = function() {\\u000a        try {\\u000a            (k && (l(!1), window.gbar.up.spd(k, c.a, 1, !0), window.gbar.up.sl(g, e, a.i, void 0, 1)));\\u000a        } catch (b) {\\u000a            google.ml(b, !1, {\\u000a                cause: (e + \\\"_CPC\\\")\\u000a            });\\u000a        };\\u000a    };\\u000a    google.promos.toast.hideOnSmallWindow_ = function() {\\u000a        try {\\u000a            if (k) {\\u000a                var b = 276, d = document.getElementById(c.o);\\u000a                (d && (b = Math.max(b, d.offsetWidth)));\\u000a                var f = (parseInt(k.style.right, 10) || 0);\\u000a                k.style.visibility = ((((2 * ((k.offsetWidth + f))) + b) \\u003E document.body.clientWidth) ? \\\"hidden\\\" : \\\"\\\");\\u000a            }\\u000a        ;\\u000a        } catch (h) {\\u000a            google.ml(h, !1, {\\u000a                cause: (e + \\\"_HOSW\\\")\\u000a            });\\u000a        };\\u000a    };\\u000a    function q() {\\u000a        var b = [\\\"gpd\\\",\\\"spd\\\",\\\"aeh\\\",\\\"sl\\\",];\\u000a        if ((!window.gbar || !window.gbar.up)) {\\u000a            return !1\\u000a        };\\u000a        for (var d = 0, f; f = b[d]; d++) {\\u000a            if (!((f in window.gbar.up))) {\\u000a                return !1\\u000a            };\\u000a        };\\u000a        return !0;\\u000a    };\\u000a    google.promos.toast.init = function(b, d, f, h, n) {\\u000a        try {\\u000a            if (!q()) {\\u000a                google.ml(Error(\\\"apa\\\"), !1, {\\u000a                    cause: (e + \\\"_INIT\\\")\\u000a                });\\u000a            } else {\\u000a                if (k) {\\u000a                    window.gbar.up.aeh(window, \\\"resize\\\", google.promos.toast.hideOnSmallWindow_);\\u000a                    window.lol = google.promos.toast.hideOnSmallWindow_;\\u000a                    c.d = ((\\\"toast_count_\\\" + d) + ((h ? (\\\"_\\\" + h) : \\\"\\\")));\\u000a                    c.a = ((\\\"toast_dp_\\\" + d) + ((n ? (\\\"_\\\" + n) : \\\"\\\")));\\u000a                    e = f;\\u000a                    g = b;\\u000a                    var p = (window.gbar.up.gpd(k, c.d, !0) || 0);\\u000a                    (((window.gbar.up.gpd(k, c.a, !0) || (25 \\u003C p)) || (k.currentStyle && (\\\"absolute\\\" != k.currentStyle.position))) ? l(!1) : (window.gbar.up.spd(k, c.d, ++p, !0), (window.gbar.elr && m(window.gbar.elr())), (window.gbar.elc && window.gbar.elc(m)), l(!0), window.gbar.up.sl(g, e, a.g)));\\u000a                }\\u000a            \\u000a            };\\u000a        } catch (r) {\\u000a            google.ml(r, !1, {\\u000a                cause: (e + \\\"_INIT\\\")\\u000a            });\\u000a        };\\u000a    };\\u000a})();\"), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    ((function() {\n        var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_0_instance;\n        ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_0_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_0\"))));\n        return ((JSBNG_Record.markFunction)((function() {\n            if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_0\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_0_instance), (this), (arguments)))\n            };\n            (null);\n            var a = {\n                v: \"a\",\n                w: \"c\",\n                i: \"d\",\n                k: \"h\",\n                g: \"i\",\n                K: \"n\",\n                Q: \"x\",\n                H: \"ma\",\n                I: \"mc\",\n                J: \"mi\",\n                A: \"pa\",\n                B: \"pc\",\n                D: \"pi\",\n                G: \"pn\",\n                F: \"px\",\n                C: \"pd\",\n                L: \"gpa\",\n                N: \"gpi\",\n                O: \"gpn\",\n                P: \"gpx\",\n                M: \"gpd\"\n            };\n            var c = {\n                o: \"hplogo\",\n                s: \"pmocntr2\"\n            }, e, g, k = (((JSBNG_Record.get)(JSBNG__document, (\"getElementById\")))[(\"getElementById\")])((((JSBNG_Record.get)(c, (\"s\")))[(\"s\")]));\n            ((JSBNG_Record.set)(google, (\"promos\"), ((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]) || {\n            })));\n            ((JSBNG_Record.set)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\"), ((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]) || {\n            })));\n            function l(b) {\n                if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                    return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_1\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_1_instance), (this), (arguments)))\n                };\n                (null);\n                (k && (((JSBNG_Record.set)((((JSBNG_Record.get)(k, (\"style\")))[(\"style\")]), (\"display\"), (b ? \"\" : \"none\"))), ((((JSBNG_Record.get)(k, (\"parentNode\")))[(\"parentNode\")]) && ((JSBNG_Record.set)((((JSBNG_Record.get)((((JSBNG_Record.get)(k, (\"parentNode\")))[(\"parentNode\")]), (\"style\")))[(\"style\")]), (\"position\"), (b ? \"relative\" : \"\"))))));\n            };\n            var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_1_instance;\n            ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_1_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_1\"))));\n            ((JSBNG_Record.markFunction)((l)));\n            function m(b) {\n                if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                    return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_2\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_2_instance), (this), (arguments)))\n                };\n                (null);\n                try {\n                    if ((((k && b) && (((JSBNG_Record.get)(b, (\"es\")))[(\"es\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(b, (\"es\")))[(\"es\")]), (\"m\")))[(\"m\")]))) {\n                        var d = ((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"rtl\")))[(\"rtl\")])((((JSBNG_Record.get)(JSBNG__document, (\"body\")))[(\"body\")])) ? \"left\" : \"right\");\n                        ((JSBNG_Record.set)((((JSBNG_Record.get)(k, (\"style\")))[(\"style\")]), d, ((((((JSBNG_Record.get)((((JSBNG_Record.get)(b, (\"es\")))[(\"es\")]), (\"m\")))[(\"m\")]) - 16) + 2) + \"px\")));\n                        ((JSBNG_Record.set)((((JSBNG_Record.get)(k, (\"style\")))[(\"style\")]), (\"JSBNG__top\"), \"20px\"));\n                    }\n                ;\n                } catch (f) {\n                    (((JSBNG_Record.get)(google, (\"ml\")))[(\"ml\")])(f, !1, {\n                        cause: (e + \"_PT\")\n                    });\n                };\n            };\n            var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_2_instance;\n            ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_2_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_2\"))));\n            ((JSBNG_Record.markFunction)((m)));\n            ((JSBNG_Record.set)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"cl\"), ((function() {\n                var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_3_instance;\n                ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_3_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_3\"))));\n                return ((JSBNG_Record.markFunction)((function() {\n                    if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                        return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_3\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_3_instance), (this), (arguments)))\n                    };\n                    (null);\n                    try {\n                        (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"sl\")))[(\"sl\")])(g, e, (((JSBNG_Record.get)(a, (\"k\")))[(\"k\")]), void 0, 1);\n                    } catch (b) {\n                        (((JSBNG_Record.get)(google, (\"ml\")))[(\"ml\")])(b, !1, {\n                            cause: (e + \"_CL\")\n                        });\n                    };\n                })));\n            })())));\n            ((JSBNG_Record.set)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"cpc\"), ((function() {\n                var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_4_instance;\n                ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_4_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_4\"))));\n                return ((JSBNG_Record.markFunction)((function() {\n                    if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                        return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_4\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_4_instance), (this), (arguments)))\n                    };\n                    (null);\n                    try {\n                        (k && (l(!1), (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"spd\")))[(\"spd\")])(k, (((JSBNG_Record.get)(c, (\"a\")))[(\"a\")]), 1, !0), (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"sl\")))[(\"sl\")])(g, e, (((JSBNG_Record.get)(a, (\"i\")))[(\"i\")]), void 0, 1)));\n                    } catch (b) {\n                        (((JSBNG_Record.get)(google, (\"ml\")))[(\"ml\")])(b, !1, {\n                            cause: (e + \"_CPC\")\n                        });\n                    };\n                })));\n            })())));\n            ((JSBNG_Record.set)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"hideOnSmallWindow_\"), ((function() {\n                var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_5_instance;\n                ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_5_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_5\"))));\n                return ((JSBNG_Record.markFunction)((function() {\n                    if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                        return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_5\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_5_instance), (this), (arguments)))\n                    };\n                    (null);\n                    try {\n                        if (k) {\n                            var b = 276, d = (((JSBNG_Record.get)(JSBNG__document, (\"getElementById\")))[(\"getElementById\")])((((JSBNG_Record.get)(c, (\"o\")))[(\"o\")]));\n                            (d && (b = (((JSBNG_Record.get)(Math, (\"max\")))[(\"max\")])(b, (((JSBNG_Record.get)(d, (\"offsetWidth\")))[(\"offsetWidth\")]))));\n                            var f = (parseInt((((JSBNG_Record.get)((((JSBNG_Record.get)(k, (\"style\")))[(\"style\")]), (\"right\")))[(\"right\")]), 10) || 0);\n                            ((JSBNG_Record.set)((((JSBNG_Record.get)(k, (\"style\")))[(\"style\")]), (\"visibility\"), ((((2 * (((((JSBNG_Record.get)(k, (\"offsetWidth\")))[(\"offsetWidth\")]) + f))) + b) > (((JSBNG_Record.get)((((JSBNG_Record.get)(JSBNG__document, (\"body\")))[(\"body\")]), (\"clientWidth\")))[(\"clientWidth\")])) ? \"hidden\" : \"\")));\n                        }\n                    ;\n                    } catch (h) {\n                        (((JSBNG_Record.get)(google, (\"ml\")))[(\"ml\")])(h, !1, {\n                            cause: (e + \"_HOSW\")\n                        });\n                    };\n                })));\n            })())));\n            function q() {\n                if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                    return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_6\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_6_instance), (this), (arguments)))\n                };\n                (null);\n                var b = [\"gpd\",\"spd\",\"aeh\",\"sl\",];\n                if ((!(((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]) || !(((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]))) {\n                    return !1\n                };\n                for (var d = 0, f; f = (((JSBNG_Record.get)(b, d))[d]); d++) {\n                    if (!((f in ((JSBNG_Record.getUnwrapped)(((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]))))))) {\n                        return !1\n                    };\n                };\n                return !0;\n            };\n            var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_6_instance;\n            ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_6_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_6\"))));\n            ((JSBNG_Record.markFunction)((q)));\n            ((JSBNG_Record.set)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"init\"), ((function() {\n                var s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_7_instance;\n                ((s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_7_instance) = ((JSBNG_Record.eventInstance)((\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_7\"))));\n                return ((JSBNG_Record.markFunction)((function(b, d, f, h, n) {\n                    if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                        return ((JSBNG_Record.eventCall)((arguments.callee), (\"s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_7\"), (s92b498f8a609c7ed181fae42a6a1eaa8de9f2f02_7_instance), (this), (arguments)))\n                    };\n                    (null);\n                    try {\n                        if (!q()) {\n                            (((JSBNG_Record.get)(google, (\"ml\")))[(\"ml\")])(Error(\"apa\"), !1, {\n                                cause: (e + \"_INIT\")\n                            });\n                        } else {\n                            if (k) {\n                                (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"aeh\")))[(\"aeh\")])(window, \"resize\", (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"hideOnSmallWindow_\")))[(\"hideOnSmallWindow_\")]));\n                                ((JSBNG_Record.set)(window, (\"lol\"), (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"hideOnSmallWindow_\")))[(\"hideOnSmallWindow_\")])));\n                                ((JSBNG_Record.set)(c, (\"d\"), ((\"toast_count_\" + d) + ((h ? (\"_\" + h) : \"\")))));\n                                ((JSBNG_Record.set)(c, (\"a\"), ((\"toast_dp_\" + d) + ((n ? (\"_\" + n) : \"\")))));\n                                e = f;\n                                g = b;\n                                var p = ((((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"gpd\")))[(\"gpd\")])(k, (((JSBNG_Record.get)(c, (\"d\")))[(\"d\")]), !0) || 0);\n                                ((((((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"gpd\")))[(\"gpd\")])(k, (((JSBNG_Record.get)(c, (\"a\")))[(\"a\")]), !0) || (25 < p)) || ((((JSBNG_Record.get)(k, (\"currentStyle\")))[(\"currentStyle\")]) && (\"absolute\" != (((JSBNG_Record.get)((((JSBNG_Record.get)(k, (\"currentStyle\")))[(\"currentStyle\")]), (\"position\")))[(\"position\")])))) ? l(!1) : ((((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"spd\")))[(\"spd\")])(k, (((JSBNG_Record.get)(c, (\"d\")))[(\"d\")]), ++p, !0), ((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"elr\")))[(\"elr\")]) && m((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"elr\")))[(\"elr\")])())), ((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"elc\")))[(\"elc\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"elc\")))[(\"elc\")])(m)), l(!0), (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]), (\"up\")))[(\"up\")]), (\"sl\")))[(\"sl\")])(g, e, (((JSBNG_Record.get)(a, (\"g\")))[(\"g\")]))));\n                            }\n                        \n                        };\n                    } catch (r) {\n                        (((JSBNG_Record.get)(google, (\"ml\")))[(\"ml\")])(r, !1, {\n                            cause: (e + \"_INIT\")\n                        });\n                    };\n                })));\n            })())));\n        })));\n    })())();\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script> <script type=\"text/javascript\">try {\n    ((JSBNG_Record.scriptLoad)((\"(function() {\\u000a    var sourceWebappPromoID = 144002;\\u000a    var sourceWebappGroupID = 5;\\u000a    var payloadType = 5;\\u000a    (((window.gbar && gbar.up) && gbar.up.r) && gbar.up.r(payloadType, function(show) {\\u000a        if (show) {\\u000a            google.promos.toast.init(sourceWebappPromoID, sourceWebappGroupID, payloadType, \\\"0612\\\");\\u000a        }\\u000a    ;\\u000a    }));\\u000a})();\"), (\"s0790de9086ee4514eb01e2ecc0cc84a03180aae0\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    ((function() {\n        var s0790de9086ee4514eb01e2ecc0cc84a03180aae0_0_instance;\n        ((s0790de9086ee4514eb01e2ecc0cc84a03180aae0_0_instance) = ((JSBNG_Record.eventInstance)((\"s0790de9086ee4514eb01e2ecc0cc84a03180aae0_0\"))));\n        return ((JSBNG_Record.markFunction)((function() {\n            if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                return ((JSBNG_Record.eventCall)((arguments.callee), (\"s0790de9086ee4514eb01e2ecc0cc84a03180aae0_0\"), (s0790de9086ee4514eb01e2ecc0cc84a03180aae0_0_instance), (this), (arguments)))\n            };\n            (null);\n            var sourceWebappPromoID = 144002;\n            var sourceWebappGroupID = 5;\n            var payloadType = 5;\n            ((((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]) && (((JSBNG_Record.get)(gbar, (\"up\")))[(\"up\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(gbar, (\"up\")))[(\"up\")]), (\"r\")))[(\"r\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(gbar, (\"up\")))[(\"up\")]), (\"r\")))[(\"r\")])(payloadType, ((function() {\n                var s0790de9086ee4514eb01e2ecc0cc84a03180aae0_1_instance;\n                ((s0790de9086ee4514eb01e2ecc0cc84a03180aae0_1_instance) = ((JSBNG_Record.eventInstance)((\"s0790de9086ee4514eb01e2ecc0cc84a03180aae0_1\"))));\n                return ((JSBNG_Record.markFunction)((function(show) {\n                    if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                        return ((JSBNG_Record.eventCall)((arguments.callee), (\"s0790de9086ee4514eb01e2ecc0cc84a03180aae0_1\"), (s0790de9086ee4514eb01e2ecc0cc84a03180aae0_1_instance), (this), (arguments)))\n                    };\n                    (null);\n                    if (show) {\n                        (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"promos\")))[(\"promos\")]), (\"toast\")))[(\"toast\")]), (\"init\")))[(\"init\")])(sourceWebappPromoID, sourceWebappGroupID, payloadType, \"0612\");\n                    }\n                    ;\n                })));\n            })())));\n        })));\n    })())();\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script> </div></span><div id=\"lga\" style=\"height:231px;margin-top:-22px\"><script type=\"text/javascript\">try {\n    ((JSBNG_Record.scriptLoad)((\"function eef50192d0e0654bc148db359edb6aaecd1ea3ba9(event) {\\u000a    (window.lol && lol());\\u000a};\"), (\"s05f10c3c91831d535c6322def5159ad3793811b2\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    function eef50192d0e0654bc148db359edb6aaecd1ea3ba9(JSBNG__event) {\n        if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n            return ((JSBNG_Record.eventCall)((arguments.callee), (\"s05f10c3c91831d535c6322def5159ad3793811b2_0\"), (s05f10c3c91831d535c6322def5159ad3793811b2_0_instance), (this), (arguments)))\n        };\n        (null);\n        ((((JSBNG_Record.get)(window, (\"lol\")))[(\"lol\")]) && lol());\n    };\n    var s05f10c3c91831d535c6322def5159ad3793811b2_0_instance;\n    ((s05f10c3c91831d535c6322def5159ad3793811b2_0_instance) = ((JSBNG_Record.eventInstance)((\"s05f10c3c91831d535c6322def5159ad3793811b2_0\"))));\n    ((JSBNG_Record.markFunction)((eef50192d0e0654bc148db359edb6aaecd1ea3ba9)));\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><img alt=\"Google\" src=\"/images/srpr/logo4w.png\" id=\"hplogo\" onload=\"return eef50192d0e0654bc148db359edb6aaecd1ea3ba9.call(this, event);\" style=\"padding-top:112px\" height=\"95\" width=\"275\"></div><div style=\"height:102px\"></div><div id=\"prm-pt\" style=\"font-size:83%;min-height:3.5em\"><br><script>try {\n    ((JSBNG_Record.scriptLoad)((\"(((window.gbar && gbar.up) && gbar.up.tp) && gbar.up.tp());\"), (\"s36fb77466464abfc801f386ef29c518bdb3e4b10\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    ((((((JSBNG_Record.get)(window, (\"gbar\")))[(\"gbar\")]) && (((JSBNG_Record.get)(gbar, (\"up\")))[(\"up\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(gbar, (\"up\")))[(\"up\")]), (\"tp\")))[(\"tp\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(gbar, (\"up\")))[(\"up\")]), (\"tp\")))[(\"tp\")])());\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script></div></center>";
2379 // 2184
2380 f895948954_393.returns.push(o94);
2381 // 2185
2382 o94.innerHTML = "<div><div id=\"ftby\"><div id=\"fll\"><div id=\"flls\"><a href=\"/intl/en/ads/\">Advertising&nbsp;Programs</a>‎<a href=\"/services/\">Business Solutions</a>‎<a href=\"/intl/en/policies/\">Privacy &amp; Terms</a>‎</div><div id=\"flrs\"><a href=\"http://jsbngssl.plus.google.com/116899029375914044550\" rel=\"publisher\">+Google</a>‎<a href=\"/intl/en/about.html\">About Google</a>‎</div></div><div id=\"flci\"></div></div></div>";
2383 // undefined
2384 o94 = null;
2385 // 2187
2386 f895948954_393.returns.push(o96);
2387 // 2188
2388 o96.innerHTML = "<script>try {\n    ((JSBNG_Record.scriptLoad)((\"if (google.y) {\\u000a    google.y.first = [];\\u000a};\\u000a(function() {\\u000a    function b(a) {\\u000a        window.setTimeout(function() {\\u000a            var c = document.createElement(\\\"script\\\");\\u000a            c.src = a;\\u000a            document.getElementById(\\\"xjsd\\\").appendChild(c);\\u000a        }, 0);\\u000a    };\\u000a    google.dljp = function(a) {\\u000a        (google.xjsi || (google.xjsu = a, b(a)));\\u000a    };\\u000a    google.dlj = b;\\u000a})();\\u000aif (!google.xjs) {\\u000a    window._ = (window._ || {\\u000a    });\\u000a    window._._DumpException = function(e) {\\u000a        throw e;\\u000a    };\\u000a    if ((google.timers && google.timers.load.t)) {\\u000a        google.timers.load.t.xjsls = new Date().getTime();\\u000a    }\\u000a;\\u000a    google.dljp(\\\"/xjs/_/js/k=xjs.s.en_US.l3EGKs4A4V8.O/m=c,sb,cr,cdos,jp,vm,tbui,mb,wobnm,cfm,abd,bihu,kp,lu,imap,m,tnv,erh,hv,lc,ob,r,sf,sfa,tbpr,hsm,j,p,pcc,csi/am=yA/rt=j/d=1/sv=1/rs=AItRSTMbb91OwALJtHUarrkHc6mnQdhy-A\\\");\\u000a    google.xjs = 1;\\u000a}\\u000a;\\u000agoogle.pmc = {\\u000a    c: {\\u000a    },\\u000a    sb: {\\u000a        agen: false,\\u000a        cgen: true,\\u000a        client: \\\"hp\\\",\\u000a        dh: true,\\u000a        ds: \\\"\\\",\\u000a        eqch: true,\\u000a        fl: true,\\u000a        host: \\\"google.com\\\",\\u000a        jsonp: true,\\u000a        lyrs: 29,\\u000a        msgs: {\\u000a            lcky: \\\"I&#39;m Feeling Lucky\\\",\\u000a            lml: \\\"Learn more\\\",\\u000a            oskt: \\\"Input tools\\\",\\u000a            psrc: \\\"This search was removed from your \\\\u003Ca href=\\\\\\\"/history\\\\\\\"\\\\u003EWeb History\\\\u003C/a\\\\u003E\\\",\\u000a            psrl: \\\"Remove\\\",\\u000a            sbit: \\\"Search by image\\\",\\u000a            srch: \\\"Google Search\\\"\\u000a        },\\u000a        ovr: {\\u000a            ent: 1,\\u000a            l: 1,\\u000a            ms: 1\\u000a        },\\u000a        pq: \\\"\\\",\\u000a        psy: \\\"p\\\",\\u000a        qcpw: false,\\u000a        scd: 10,\\u000a        sce: 4,\\u000a        stok: \\\"umXjRAuqAKZoHP5587xA30Rb4f0\\\"\\u000a    },\\u000a    cr: {\\u000a        eup: false,\\u000a        qir: true,\\u000a        rctj: true,\\u000a        ref: false,\\u000a        uff: false\\u000a    },\\u000a    cdos: {\\u000a        dima: \\\"b\\\"\\u000a    },\\u000a    gf: {\\u000a        pid: 196\\u000a    },\\u000a    jp: {\\u000a        mcr: 5\\u000a    },\\u000a    vm: {\\u000a        bv: 48705608,\\u000a        d: \\\"aWc\\\",\\u000a        tc: true,\\u000a        te: true,\\u000a        tk: true,\\u000a        ts: true\\u000a    },\\u000a    tbui: {\\u000a        dfi: {\\u000a            am: [\\\"Jan\\\",\\\"Feb\\\",\\\"Mar\\\",\\\"Apr\\\",\\\"May\\\",\\\"Jun\\\",\\\"Jul\\\",\\\"Aug\\\",\\\"Sep\\\",\\\"Oct\\\",\\\"Nov\\\",\\\"Dec\\\",],\\u000a            df: [\\\"EEEE, MMMM d, y\\\",\\\"MMMM d, y\\\",\\\"MMM d, y\\\",\\\"M/d/yyyy\\\",],\\u000a            fdow: 6,\\u000a            nw: [\\\"S\\\",\\\"M\\\",\\\"T\\\",\\\"W\\\",\\\"T\\\",\\\"F\\\",\\\"S\\\",],\\u000a            wm: [\\\"January\\\",\\\"February\\\",\\\"March\\\",\\\"April\\\",\\\"May\\\",\\\"June\\\",\\\"July\\\",\\\"August\\\",\\\"September\\\",\\\"October\\\",\\\"November\\\",\\\"December\\\",]\\u000a        },\\u000a        g: 28,\\u000a        k: true,\\u000a        m: {\\u000a            app: true,\\u000a            bks: true,\\u000a            blg: true,\\u000a            dsc: true,\\u000a            fin: true,\\u000a            flm: true,\\u000a            frm: true,\\u000a            isch: true,\\u000a            klg: true,\\u000a            map: true,\\u000a            mobile: true,\\u000a            nws: true,\\u000a            plcs: true,\\u000a            ppl: true,\\u000a            prc: true,\\u000a            pts: true,\\u000a            rcp: true,\\u000a            shop: true,\\u000a            vid: true\\u000a        },\\u000a        t: null\\u000a    },\\u000a    mb: {\\u000a        db: false,\\u000a        m_errors: {\\u000a            \\\"default\\\": \\\"\\\\u003Cfont color=red\\\\u003EError:\\\\u003C/font\\\\u003E The server could not complete your request.  Try again in 30 seconds.\\\"\\u000a        },\\u000a        m_tip: \\\"Click for more information\\\",\\u000a        nlpm: \\\"-153px -84px\\\",\\u000a        nlpp: \\\"-153px -70px\\\",\\u000a        utp: true\\u000a    },\\u000a    wobnm: {\\u000a    },\\u000a    cfm: {\\u000a        data_url: \\\"/m/financedata?output=search&source=mus\\\"\\u000a    },\\u000a    abd: {\\u000a        abd: false,\\u000a        dabp: false,\\u000a        deb: false,\\u000a        der: false,\\u000a        det: false,\\u000a        psa: false,\\u000a        sup: false\\u000a    },\\u000a    adp: {\\u000a    },\\u000a    adp: {\\u000a    },\\u000a    llc: {\\u000a        carmode: \\\"list\\\",\\u000a        cns: false,\\u000a        dst: 3185505,\\u000a        fling_time: 300,\\u000a        float: true,\\u000a        hot: false,\\u000a        ime: true,\\u000a        mpi: 0,\\u000a        oq: \\\"\\\",\\u000a        p: false,\\u000a        sticky: true,\\u000a        t: false,\\u000a        udp: 600,\\u000a        uds: 600,\\u000a        udt: 600,\\u000a        urs: false,\\u000a        usr: true\\u000a    },\\u000a    rkab: {\\u000a        bl: \\\"Feedback / More info\\\",\\u000a        db: \\\"Reported\\\",\\u000a        di: \\\"Thank you.\\\",\\u000a        dl: \\\"Report another problem\\\",\\u000a        rb: \\\"Wrong?\\\",\\u000a        ri: \\\"Please report the problem.\\\",\\u000a        rl: \\\"Cancel\\\"\\u000a    },\\u000a    bihu: {\\u000a        MESSAGES: {\\u000a            msg_img_from: \\\"Image from %1$s\\\",\\u000a            msg_ms: \\\"More sizes\\\",\\u000a            msg_si: \\\"Similar\\\"\\u000a        }\\u000a    },\\u000a    riu: {\\u000a        cnfrm: \\\"Reported\\\",\\u000a        prmpt: \\\"Report\\\"\\u000a    },\\u000a    ifl: {\\u000a        opts: [{\\u000a            href: \\\"/url?url=/doodles/martha-grahams-117th-birthday\\\",\\u000a            id: \\\"doodley\\\",\\u000a            msg: \\\"I'm Feeling Doodley\\\"\\u000a        },{\\u000a            href: \\\"/url?url=http://www.googleartproject.com/collection/musee-dorsay-paris/artwork/dancers-edgar-degas/484111/&sa=t&usg=AFQjCNFvuPd-FAaZasCyDYcccCCOr4NcPw\\\",\\u000a            id: \\\"artistic\\\",\\u000a            msg: \\\"I'm Feeling Artistic\\\"\\u000a        },{\\u000a            href: \\\"/url?url=/search?q%3Drestaurants%26tbm%3Dplcs\\\",\\u000a            id: \\\"hungry\\\",\\u000a            msg: \\\"I'm Feeling Hungry\\\"\\u000a        },{\\u000a            href: \\\"/url?url=http://agoogleaday.com/%23date%3D2012-07-17&sa=t&usg=AFQjCNH4uOAvdBFnSR2cdquCknLiNgI-lg\\\",\\u000a            id: \\\"puzzled\\\",\\u000a            msg: \\\"I'm Feeling Puzzled\\\"\\u000a        },{\\u000a            href: \\\"/url?url=/trends/hottrends\\\",\\u000a            id: \\\"trendy\\\",\\u000a            msg: \\\"I'm Feeling Trendy\\\"\\u000a        },{\\u000a            href: \\\"/url?url=/earth/explore/showcase/hubble20th.html%23tab%3Dcrab-nebula\\\",\\u000a            id: \\\"stellar\\\",\\u000a            msg: \\\"I'm Feeling Stellar\\\"\\u000a        },{\\u000a            href: \\\"/url?url=/doodles/les-pauls-96th-birthday\\\",\\u000a            id: \\\"playful\\\",\\u000a            msg: \\\"I'm Feeling Playful\\\"\\u000a        },{\\u000a            href: \\\"/url?url=/intl/en/culturalinstitute/worldwonders/cornwall-west-devon/\\\",\\u000a            id: \\\"wonderful\\\",\\u000a            msg: \\\"I'm Feeling Wonderful\\\"\\u000a        },]\\u000a    },\\u000a    rmcl: {\\u000a        bl: \\\"Feedback / More info\\\",\\u000a        db: \\\"Reported\\\",\\u000a        di: \\\"Thank you.\\\",\\u000a        dl: \\\"Report another problem\\\",\\u000a        rb: \\\"Wrong?\\\",\\u000a        ri: \\\"Please report the problem.\\\",\\u000a        rl: \\\"Cancel\\\"\\u000a    },\\u000a    an: {\\u000a    },\\u000a    kp: {\\u000a        use_top_media_styles: true\\u000a    },\\u000a    rk: {\\u000a        bl: \\\"Feedback / More info\\\",\\u000a        db: \\\"Reported\\\",\\u000a        di: \\\"Thank you.\\\",\\u000a        dl: \\\"Report another problem\\\",\\u000a        efe: false,\\u000a        rb: \\\"Wrong?\\\",\\u000a        ri: \\\"Please report the problem.\\\",\\u000a        rl: \\\"Cancel\\\"\\u000a    },\\u000a    lu: {\\u000a        cm_hov: true,\\u000a        tt_kft: true,\\u000a        uab: true\\u000a    },\\u000a    imap: {\\u000a    },\\u000a    m: {\\u000a        ab: {\\u000a            on: true\\u000a        },\\u000a        ajax: {\\u000a            gl: \\\"us\\\",\\u000a            hl: \\\"en\\\",\\u000a            q: \\\"\\\"\\u000a        },\\u000a        css: {\\u000a            adpbc: \\\"#fec\\\",\\u000a            adpc: \\\"#fffbf2\\\",\\u000a            def: false,\\u000a            showTopNav: true\\u000a        },\\u000a        elastic: {\\u000a            js: true,\\u000a            rhs4Col: 1072,\\u000a            rhs5Col: 1160,\\u000a            rhsOn: true,\\u000a            tiny: false\\u000a        },\\u000a        exp: {\\u000a            lru: true,\\u000a            tnav: true\\u000a        },\\u000a        kfe: {\\u000a            adsClientId: 33,\\u000a            clientId: 29,\\u000a            kfeHost: \\\"clients1.google.com\\\",\\u000a            kfeUrlPrefix: \\\"/webpagethumbnail?r=4&f=3&s=400:585&query=&hl=en&gl=us\\\",\\u000a            vsH: 585,\\u000a            vsW: 400\\u000a        },\\u000a        msgs: {\\u000a            details: \\\"Result details\\\",\\u000a            hPers: \\\"Hide private results\\\",\\u000a            hPersD: \\\"Currently hiding private results\\\",\\u000a            loading: \\\"Still loading...\\\",\\u000a            mute: \\\"Mute\\\",\\u000a            noPreview: \\\"Preview not available\\\",\\u000a            sPers: \\\"Show all results\\\",\\u000a            sPersD: \\\"Currently showing private results\\\",\\u000a            unmute: \\\"Unmute\\\"\\u000a        },\\u000a        nokjs: {\\u000a            on: true\\u000a        },\\u000a        time: {\\u000a            hUnit: 1500\\u000a        }\\u000a    },\\u000a    tnv: {\\u000a        t: false\\u000a    },\\u000a    adsm: {\\u000a    },\\u000a    async: {\\u000a    },\\u000a    bds: {\\u000a    },\\u000a    ca: {\\u000a    },\\u000a    erh: {\\u000a    },\\u000a    hp: {\\u000a    },\\u000a    hv: {\\u000a    },\\u000a    lc: {\\u000a    },\\u000a    lor: {\\u000a    },\\u000a    ob: {\\u000a    },\\u000a    r: {\\u000a    },\\u000a    sf: {\\u000a    },\\u000a    sfa: {\\u000a    },\\u000a    shlb: {\\u000a    },\\u000a    st: {\\u000a    },\\u000a    tbpr: {\\u000a    },\\u000a    vs: {\\u000a    },\\u000a    hsm: {\\u000a    },\\u000a    j: {\\u000a        ahipiou: true,\\u000a        cspd: 0,\\u000a        hme: true,\\u000a        icmt: false,\\u000a        mcr: 5,\\u000a        tct: \\\" \\\\\\\\u3000?\\\"\\u000a    },\\u000a    p: {\\u000a        ae: true,\\u000a        avgTtfc: 2000,\\u000a        brba: false,\\u000a        dlen: 24,\\u000a        dper: 3,\\u000a        eae: true,\\u000a        fbdc: 500,\\u000a        fbdu: -1,\\u000a        fbh: true,\\u000a        fd: 1000000,\\u000a        focus: true,\\u000a        ftwd: 200,\\u000a        gpsj: true,\\u000a        hiue: true,\\u000a        hpt: 310,\\u000a        iavgTtfc: 2000,\\u000a        kn: true,\\u000a        knrt: true,\\u000a        maxCbt: 1500,\\u000a        mds: \\\"dfn,klg,prc,sp,mbl_he,mbl_hs,mbl_re,mbl_rs,mbl_sv\\\",\\u000a        msg: {\\u000a            dym: \\\"Did you mean:\\\",\\u000a            gs: \\\"Google Search\\\",\\u000a            kntt: \\\"Use the up and down arrow keys to select each result. Press Enter to go to the selection.\\\",\\u000a            pcnt: \\\"New Tab\\\",\\u000a            sif: \\\"Search instead for\\\",\\u000a            srf: \\\"Showing results for\\\"\\u000a        },\\u000a        nprr: 1,\\u000a        ophe: true,\\u000a        pmt: 250,\\u000a        pq: true,\\u000a        rpt: 50,\\u000a        sc: \\\"psy-ab\\\",\\u000a        tdur: 50,\\u000a        ufl: true\\u000a    },\\u000a    pcc: {\\u000a    },\\u000a    csi: {\\u000a        acsi: true,\\u000a        cbu: \\\"/gen_204\\\",\\u000a        csbu: \\\"/gen_204\\\"\\u000a    }\\u000a};\\u000agoogle.y.first.push(function() {\\u000a    google.loadAll([\\\"gf\\\",\\\"adp\\\",\\\"adp\\\",\\\"llc\\\",\\\"ifl\\\",\\\"an\\\",\\\"async\\\",\\\"vs\\\",]);\\u000a    if (google.med) {\\u000a        google.med(\\\"init\\\");\\u000a        google.initHistory();\\u000a        google.med(\\\"history\\\");\\u000a    }\\u000a;\\u000a    (google.History && google.History.initialize(\\\"/\\\"));\\u000a    ((google.hs && google.hs.init) && google.hs.init());\\u000a});\\u000aif (((google.j && google.j.en) && google.j.xi)) {\\u000a    window.setTimeout(google.j.xi, 0);\\u000a}\\u000a;\"), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf\")));\n    ((window.top.JSBNG_Record.callerJS) = (true));\n    if ((((JSBNG_Record.get)(google, (\"y\")))[(\"y\")])) {\n        ((JSBNG_Record.set)((((JSBNG_Record.get)(google, (\"y\")))[(\"y\")]), (\"first\"), []));\n    };\n    ((function() {\n        var s32d099e459d0acd3e74933c12a38935e62cf1cbf_0_instance;\n        ((s32d099e459d0acd3e74933c12a38935e62cf1cbf_0_instance) = ((JSBNG_Record.eventInstance)((\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_0\"))));\n        return ((JSBNG_Record.markFunction)((function() {\n            if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                return ((JSBNG_Record.eventCall)((arguments.callee), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_0\"), (s32d099e459d0acd3e74933c12a38935e62cf1cbf_0_instance), (this), (arguments)))\n            };\n            (null);\n            function b(a) {\n                if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                    return ((JSBNG_Record.eventCall)((arguments.callee), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_1\"), (s32d099e459d0acd3e74933c12a38935e62cf1cbf_1_instance), (this), (arguments)))\n                };\n                (null);\n                (((JSBNG_Record.get)(window, (\"JSBNG__setTimeout\")))[(\"JSBNG__setTimeout\")])(((function() {\n                    var s32d099e459d0acd3e74933c12a38935e62cf1cbf_2_instance;\n                    ((s32d099e459d0acd3e74933c12a38935e62cf1cbf_2_instance) = ((JSBNG_Record.eventInstance)((\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_2\"))));\n                    return ((JSBNG_Record.markFunction)((function() {\n                        if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                            return ((JSBNG_Record.eventCall)((arguments.callee), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_2\"), (s32d099e459d0acd3e74933c12a38935e62cf1cbf_2_instance), (this), (arguments)))\n                        };\n                        (null);\n                        var c = (((JSBNG_Record.get)(JSBNG__document, (\"createElement\")))[(\"createElement\")])(\"script\");\n                        ((JSBNG_Record.set)(c, (\"src\"), a));\n                        (((JSBNG_Record.get)((((JSBNG_Record.get)(JSBNG__document, (\"getElementById\")))[(\"getElementById\")])(\"xjsd\"), (\"appendChild\")))[(\"appendChild\")])(c);\n                    })));\n                })()), 0);\n            };\n            var s32d099e459d0acd3e74933c12a38935e62cf1cbf_1_instance;\n            ((s32d099e459d0acd3e74933c12a38935e62cf1cbf_1_instance) = ((JSBNG_Record.eventInstance)((\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_1\"))));\n            ((JSBNG_Record.markFunction)((b)));\n            ((JSBNG_Record.set)(google, (\"dljp\"), ((function() {\n                var s32d099e459d0acd3e74933c12a38935e62cf1cbf_3_instance;\n                ((s32d099e459d0acd3e74933c12a38935e62cf1cbf_3_instance) = ((JSBNG_Record.eventInstance)((\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_3\"))));\n                return ((JSBNG_Record.markFunction)((function(a) {\n                    if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                        return ((JSBNG_Record.eventCall)((arguments.callee), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_3\"), (s32d099e459d0acd3e74933c12a38935e62cf1cbf_3_instance), (this), (arguments)))\n                    };\n                    (null);\n                    ((((JSBNG_Record.get)(google, (\"xjsi\")))[(\"xjsi\")]) || (((JSBNG_Record.set)(google, (\"xjsu\"), a)), b(a)));\n                })));\n            })())));\n            ((JSBNG_Record.set)(google, (\"dlj\"), b));\n        })));\n    })())();\n    if (!(((JSBNG_Record.get)(google, (\"xjs\")))[(\"xjs\")])) {\n        ((JSBNG_Record.set)(window, (\"_\"), ((((JSBNG_Record.get)(window, (\"_\")))[(\"_\")]) || {\n        })));\n        ((JSBNG_Record.set)((((JSBNG_Record.get)(window, (\"_\")))[(\"_\")]), (\"_DumpException\"), ((function() {\n            var s32d099e459d0acd3e74933c12a38935e62cf1cbf_4_instance;\n            ((s32d099e459d0acd3e74933c12a38935e62cf1cbf_4_instance) = ((JSBNG_Record.eventInstance)((\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_4\"))));\n            return ((JSBNG_Record.markFunction)((function(e) {\n                if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                    return ((JSBNG_Record.eventCall)((arguments.callee), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_4\"), (s32d099e459d0acd3e74933c12a38935e62cf1cbf_4_instance), (this), (arguments)))\n                };\n                (null);\n                throw e;\n            })));\n        })())));\n        if (((((JSBNG_Record.get)(google, (\"timers\")))[(\"timers\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"timers\")))[(\"timers\")]), (\"load\")))[(\"load\")]), (\"t\")))[(\"t\")]))) {\n            ((JSBNG_Record.set)((((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"timers\")))[(\"timers\")]), (\"load\")))[(\"load\")]), (\"t\")))[(\"t\")]), (\"xjsls\"), (((JSBNG_Record.get)(new JSBNG__Date(), (\"getTime\")))[(\"getTime\")])()));\n        }\n    ;\n        (((JSBNG_Record.get)(google, (\"dljp\")))[(\"dljp\")])(\"/xjs/_/js/k=xjs.s.en_US.l3EGKs4A4V8.O/m=c,sb,cr,cdos,jp,vm,tbui,mb,wobnm,cfm,abd,bihu,kp,lu,imap,m,tnv,erh,hv,lc,ob,r,sf,sfa,tbpr,hsm,j,p,pcc,csi/am=yA/rt=j/d=1/sv=1/rs=AItRSTMbb91OwALJtHUarrkHc6mnQdhy-A\");\n        ((JSBNG_Record.set)(google, (\"xjs\"), 1));\n    }\n;\n    ((JSBNG_Record.set)(google, (\"pmc\"), {\n        c: {\n        },\n        sb: {\n            agen: false,\n            cgen: true,\n            client: \"hp\",\n            dh: true,\n            ds: \"\",\n            eqch: true,\n            fl: true,\n            host: \"google.com\",\n            jsonp: true,\n            lyrs: 29,\n            msgs: {\n                lcky: \"I&#39;m Feeling Lucky\",\n                lml: \"Learn more\",\n                oskt: \"Input tools\",\n                psrc: \"This search was removed from your \\u003Ca href=\\\"/history\\\"\\u003EWeb History\\u003C/a\\u003E\",\n                psrl: \"Remove\",\n                sbit: \"Search by image\",\n                srch: \"Google Search\"\n            },\n            ovr: {\n                ent: 1,\n                l: 1,\n                ms: 1\n            },\n            pq: \"\",\n            psy: \"p\",\n            qcpw: false,\n            scd: 10,\n            sce: 4,\n            stok: \"umXjRAuqAKZoHP5587xA30Rb4f0\"\n        },\n        cr: {\n            eup: false,\n            qir: true,\n            rctj: true,\n            ref: false,\n            uff: false\n        },\n        cdos: {\n            dima: \"b\"\n        },\n        gf: {\n            pid: 196\n        },\n        jp: {\n            mcr: 5\n        },\n        vm: {\n            bv: 48705608,\n            d: \"aWc\",\n            tc: true,\n            te: true,\n            tk: true,\n            ts: true\n        },\n        tbui: {\n            dfi: {\n                am: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\",],\n                df: [\"EEEE, MMMM d, y\",\"MMMM d, y\",\"MMM d, y\",\"M/d/yyyy\",],\n                fdow: 6,\n                nw: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\",],\n                wm: [\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\",]\n            },\n            g: 28,\n            k: true,\n            m: {\n                app: true,\n                bks: true,\n                blg: true,\n                dsc: true,\n                fin: true,\n                flm: true,\n                frm: true,\n                isch: true,\n                klg: true,\n                map: true,\n                mobile: true,\n                nws: true,\n                plcs: true,\n                ppl: true,\n                prc: true,\n                pts: true,\n                rcp: true,\n                shop: true,\n                vid: true\n            },\n            t: null\n        },\n        mb: {\n            db: false,\n            m_errors: {\n                \"default\": \"\\u003Cfont color=red\\u003EError:\\u003C/font\\u003E The server could not complete your request.  Try again in 30 seconds.\"\n            },\n            m_tip: \"Click for more information\",\n            nlpm: \"-153px -84px\",\n            nlpp: \"-153px -70px\",\n            utp: true\n        },\n        wobnm: {\n        },\n        cfm: {\n            data_url: \"/m/financedata?output=search&source=mus\"\n        },\n        abd: {\n            abd: false,\n            dabp: false,\n            deb: false,\n            der: false,\n            det: false,\n            psa: false,\n            sup: false\n        },\n        adp: {\n        },\n        adp: {\n        },\n        llc: {\n            carmode: \"list\",\n            cns: false,\n            dst: 3185505,\n            fling_time: 300,\n            float: true,\n            hot: false,\n            ime: true,\n            mpi: 0,\n            oq: \"\",\n            p: false,\n            sticky: true,\n            t: false,\n            udp: 600,\n            uds: 600,\n            udt: 600,\n            urs: false,\n            usr: true\n        },\n        rkab: {\n            bl: \"Feedback / More info\",\n            db: \"Reported\",\n            di: \"Thank you.\",\n            dl: \"Report another problem\",\n            rb: \"Wrong?\",\n            ri: \"Please report the problem.\",\n            rl: \"Cancel\"\n        },\n        bihu: {\n            MESSAGES: {\n                msg_img_from: \"Image from %1$s\",\n                msg_ms: \"More sizes\",\n                msg_si: \"Similar\"\n            }\n        },\n        riu: {\n            cnfrm: \"Reported\",\n            prmpt: \"Report\"\n        },\n        ifl: {\n            opts: [{\n                href: \"/url?url=/doodles/martha-grahams-117th-birthday\",\n                id: \"doodley\",\n                msg: \"I'm Feeling Doodley\"\n            },{\n                href: \"/url?url=http://www.googleartproject.com/collection/musee-dorsay-paris/artwork/dancers-edgar-degas/484111/&sa=t&usg=AFQjCNFvuPd-FAaZasCyDYcccCCOr4NcPw\",\n                id: \"artistic\",\n                msg: \"I'm Feeling Artistic\"\n            },{\n                href: \"/url?url=/search?q%3Drestaurants%26tbm%3Dplcs\",\n                id: \"hungry\",\n                msg: \"I'm Feeling Hungry\"\n            },{\n                href: \"/url?url=http://agoogleaday.com/%23date%3D2012-07-17&sa=t&usg=AFQjCNH4uOAvdBFnSR2cdquCknLiNgI-lg\",\n                id: \"puzzled\",\n                msg: \"I'm Feeling Puzzled\"\n            },{\n                href: \"/url?url=/trends/hottrends\",\n                id: \"trendy\",\n                msg: \"I'm Feeling Trendy\"\n            },{\n                href: \"/url?url=/earth/explore/showcase/hubble20th.html%23tab%3Dcrab-nebula\",\n                id: \"stellar\",\n                msg: \"I'm Feeling Stellar\"\n            },{\n                href: \"/url?url=/doodles/les-pauls-96th-birthday\",\n                id: \"playful\",\n                msg: \"I'm Feeling Playful\"\n            },{\n                href: \"/url?url=/intl/en/culturalinstitute/worldwonders/cornwall-west-devon/\",\n                id: \"wonderful\",\n                msg: \"I'm Feeling Wonderful\"\n            },]\n        },\n        rmcl: {\n            bl: \"Feedback / More info\",\n            db: \"Reported\",\n            di: \"Thank you.\",\n            dl: \"Report another problem\",\n            rb: \"Wrong?\",\n            ri: \"Please report the problem.\",\n            rl: \"Cancel\"\n        },\n        an: {\n        },\n        kp: {\n            use_top_media_styles: true\n        },\n        rk: {\n            bl: \"Feedback / More info\",\n            db: \"Reported\",\n            di: \"Thank you.\",\n            dl: \"Report another problem\",\n            efe: false,\n            rb: \"Wrong?\",\n            ri: \"Please report the problem.\",\n            rl: \"Cancel\"\n        },\n        lu: {\n            cm_hov: true,\n            tt_kft: true,\n            uab: true\n        },\n        imap: {\n        },\n        m: {\n            ab: {\n                JSBNG__on: true\n            },\n            ajax: {\n                gl: \"us\",\n                hl: \"en\",\n                q: \"\"\n            },\n            css: {\n                adpbc: \"#fec\",\n                adpc: \"#fffbf2\",\n                def: false,\n                showTopNav: true\n            },\n            elastic: {\n                js: true,\n                rhs4Col: 1072,\n                rhs5Col: 1160,\n                rhsOn: true,\n                tiny: false\n            },\n            exp: {\n                lru: true,\n                tnav: true\n            },\n            kfe: {\n                adsClientId: 33,\n                clientId: 29,\n                kfeHost: \"clients1.google.com\",\n                kfeUrlPrefix: \"/webpagethumbnail?r=4&f=3&s=400:585&query=&hl=en&gl=us\",\n                vsH: 585,\n                vsW: 400\n            },\n            msgs: {\n                details: \"Result details\",\n                hPers: \"Hide private results\",\n                hPersD: \"Currently hiding private results\",\n                loading: \"Still loading...\",\n                mute: \"Mute\",\n                noPreview: \"Preview not available\",\n                sPers: \"Show all results\",\n                sPersD: \"Currently showing private results\",\n                unmute: \"Unmute\"\n            },\n            nokjs: {\n                JSBNG__on: true\n            },\n            time: {\n                hUnit: 1500\n            }\n        },\n        tnv: {\n            t: false\n        },\n        adsm: {\n        },\n        async: {\n        },\n        bds: {\n        },\n        ca: {\n        },\n        erh: {\n        },\n        hp: {\n        },\n        hv: {\n        },\n        lc: {\n        },\n        lor: {\n        },\n        ob: {\n        },\n        r: {\n        },\n        sf: {\n        },\n        sfa: {\n        },\n        shlb: {\n        },\n        st: {\n        },\n        tbpr: {\n        },\n        vs: {\n        },\n        hsm: {\n        },\n        j: {\n            ahipiou: true,\n            cspd: 0,\n            hme: true,\n            icmt: false,\n            mcr: 5,\n            tct: \" \\\\u3000?\"\n        },\n        p: {\n            ae: true,\n            avgTtfc: 2000,\n            brba: false,\n            dlen: 24,\n            dper: 3,\n            eae: true,\n            fbdc: 500,\n            fbdu: -1,\n            fbh: true,\n            fd: 1000000,\n            JSBNG__focus: true,\n            ftwd: 200,\n            gpsj: true,\n            hiue: true,\n            hpt: 310,\n            iavgTtfc: 2000,\n            kn: true,\n            knrt: true,\n            maxCbt: 1500,\n            mds: \"dfn,klg,prc,sp,mbl_he,mbl_hs,mbl_re,mbl_rs,mbl_sv\",\n            msg: {\n                dym: \"Did you mean:\",\n                gs: \"Google Search\",\n                kntt: \"Use the up and down arrow keys to select each result. Press Enter to go to the selection.\",\n                pcnt: \"New Tab\",\n                sif: \"Search instead for\",\n                srf: \"Showing results for\"\n            },\n            nprr: 1,\n            ophe: true,\n            pmt: 250,\n            pq: true,\n            rpt: 50,\n            sc: \"psy-ab\",\n            tdur: 50,\n            ufl: true\n        },\n        pcc: {\n        },\n        csi: {\n            acsi: true,\n            cbu: \"/gen_204\",\n            csbu: \"/gen_204\"\n        }\n    }));\n    (((JSBNG_Record.get)((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"y\")))[(\"y\")]), (\"first\")))[(\"first\")]), (\"push\")))[(\"push\")])(((function() {\n        var s32d099e459d0acd3e74933c12a38935e62cf1cbf_5_instance;\n        ((s32d099e459d0acd3e74933c12a38935e62cf1cbf_5_instance) = ((JSBNG_Record.eventInstance)((\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_5\"))));\n        return ((JSBNG_Record.markFunction)((function() {\n            if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n                return ((JSBNG_Record.eventCall)((arguments.callee), (\"s32d099e459d0acd3e74933c12a38935e62cf1cbf_5\"), (s32d099e459d0acd3e74933c12a38935e62cf1cbf_5_instance), (this), (arguments)))\n            };\n            (null);\n            (((JSBNG_Record.get)(google, (\"loadAll\")))[(\"loadAll\")])([\"gf\",\"adp\",\"adp\",\"llc\",\"ifl\",\"an\",\"async\",\"vs\",]);\n            if ((((JSBNG_Record.get)(google, (\"med\")))[(\"med\")])) {\n                (((JSBNG_Record.get)(google, (\"med\")))[(\"med\")])(\"init\");\n                (((JSBNG_Record.get)(google, (\"initHistory\")))[(\"initHistory\")])();\n                (((JSBNG_Record.get)(google, (\"med\")))[(\"med\")])(\"JSBNG__history\");\n            }\n            ;\n            ((((JSBNG_Record.get)(google, (\"History\")))[(\"History\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"History\")))[(\"History\")]), (\"initialize\")))[(\"initialize\")])(\"/\"));\n            (((((JSBNG_Record.get)(google, (\"hs\")))[(\"hs\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"hs\")))[(\"hs\")]), (\"init\")))[(\"init\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"hs\")))[(\"hs\")]), (\"init\")))[(\"init\")])());\n        })));\n    })()));\n    if ((((((JSBNG_Record.get)(google, (\"j\")))[(\"j\")]) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"j\")))[(\"j\")]), (\"en\")))[(\"en\")])) && (((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"j\")))[(\"j\")]), (\"xi\")))[(\"xi\")]))) {\n        (((JSBNG_Record.get)(window, (\"JSBNG__setTimeout\")))[(\"JSBNG__setTimeout\")])((((JSBNG_Record.get)((((JSBNG_Record.get)(google, (\"j\")))[(\"j\")]), (\"xi\")))[(\"xi\")]), 0);\n    }\n;\n} finally {\n    ((window.top.JSBNG_Record.callerJS) = (false));\n    ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script>";
2389 // undefined
2390 o96 = null;
2391 // 2190
2392 f895948954_393.returns.push(o29);
2393 // 2191
2394 o29.getElementsByTagName = f895948954_450;
2395 // 2192
2396 o94 = {};
2397 // 2193
2398 f895948954_450.returns.push(o94);
2399 // 2194
2400 o94["0"] = o38;
2401 // 2195
2402 o38.id = "gb_119";
2403 // 2197
2404 o38.href = "http://jsbngssl.plus.google.com/?gpsrc=ogpy0&tab=wX";
2405 // 2198
2406 o94["1"] = o39;
2407 // 2199
2408 o39.id = "gb_1";
2409 // 2201
2410 o39.href = "http://www.google.com/webhp?hl=en&tab=ww";
2411 // 2202
2412 o94["2"] = o40;
2413 // 2203
2414 o40.id = "gb_2";
2415 // 2205
2416 o40.href = "http://www.google.com/imghp?hl=en&tab=wi";
2417 // 2206
2418 o94["3"] = o41;
2419 // 2207
2420 o41.id = "gb_8";
2421 // 2209
2422 o41.href = "http://maps.google.com/maps?hl=en&tab=wl";
2423 // 2210
2424 o94["4"] = o42;
2425 // 2211
2426 o42.id = "gb_78";
2427 // 2213
2428 o42.href = "http://jsbngssl.play.google.com/?hl=en&tab=w8";
2429 // 2214
2430 o94["5"] = o23;
2431 // 2215
2432 o23.id = "gb_36";
2433 // 2217
2434 o23.href = "http://www.youtube.com/?tab=w1";
2435 // 2218
2436 o94["6"] = o43;
2437 // 2219
2438 o43.id = "gb_5";
2439 // 2221
2440 o43.href = "http://news.google.com/nwshp?hl=en&tab=wn";
2441 // 2222
2442 o94["7"] = o44;
2443 // 2223
2444 o44.id = "gb_23";
2445 // 2225
2446 o44.href = "http://jsbngssl.mail.google.com/mail/?tab=wm";
2447 // 2226
2448 o94["8"] = o45;
2449 // 2227
2450 o45.id = "gb_25";
2451 // 2229
2452 o45.href = "http://jsbngssl.drive.google.com/?tab=wo";
2453 // 2230
2454 o94["9"] = o46;
2455 // 2231
2456 o46.id = "gb_24";
2457 // 2233
2458 o46.href = "http://jsbngssl.www.google.com/calendar?tab=wc";
2459 // 2234
2460 o94["10"] = o47;
2461 // 2235
2462 o47.id = "gbztm";
2463 // 2236
2464 o94["11"] = o48;
2465 // 2237
2466 o48.id = "gb_51";
2467 // 2239
2468 o48.href = "http://translate.google.com/?hl=en&tab=wT";
2469 // 2240
2470 o94["12"] = o49;
2471 // 2241
2472 o49.id = "gb_17";
2473 // 2243
2474 o49.href = "http://www.google.com/mobile/?hl=en&tab=wD";
2475 // 2244
2476 o94["13"] = o50;
2477 // 2245
2478 o50.id = "gb_10";
2479 // 2247
2480 o50.href = "http://books.google.com/bkshp?hl=en&tab=wp";
2481 // 2248
2482 o94["14"] = o51;
2483 // 2249
2484 o51.id = "gb_172";
2485 // 2251
2486 o51.href = "http://jsbngssl.www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=wG";
2487 // 2252
2488 o94["15"] = o52;
2489 // 2253
2490 o52.id = "gb_212";
2491 // 2255
2492 o52.href = "http://jsbngssl.wallet.google.com/manage/?tab=wa";
2493 // 2256
2494 o94["16"] = o53;
2495 // 2257
2496 o53.id = "gb_6";
2497 // 2259
2498 o53.href = "http://www.google.com/shopping?hl=en&tab=wf";
2499 // 2260
2500 o94["17"] = o54;
2501 // 2261
2502 o54.id = "gb_30";
2503 // 2263
2504 o54.href = "http://www.blogger.com/?tab=wj";
2505 // 2264
2506 o94["18"] = o55;
2507 // 2265
2508 o55.id = "gb_27";
2509 // 2267
2510 o55.href = "http://www.google.com/finance?tab=we";
2511 // 2268
2512 o94["19"] = o56;
2513 // 2269
2514 o56.id = "gb_31";
2515 // 2271
2516 o56.href = "http://jsbngssl.plus.google.com/photos?tab=wq";
2517 // 2272
2518 o94["20"] = o57;
2519 // 2273
2520 o57.id = "gb_12";
2521 // 2275
2522 o57.href = "http://video.google.com/?hl=en&tab=wv";
2523 // 2276
2524 o94["21"] = o58;
2525 // 2277
2526 o58.id = "";
2527 // 2278
2528 o94["22"] = o59;
2529 // 2279
2530 o59.id = "";
2531 // 2280
2532 o94["23"] = o10;
2533 // 2281
2534 o10.id = "gb_70";
2535 // 2283
2536 o10.href = "http://jsbngssl.accounts.google.com/ServiceLogin?hl=en&continue=http://www.google.com/";
2537 // 2284
2538 o94["24"] = o60;
2539 // 2285
2540 o60.id = "";
2541 // 2286
2542 o94["25"] = o61;
2543 // 2287
2544 o61.id = "gmlas";
2545 // 2288
2546 o94["26"] = o62;
2547 // 2289
2548 o62.id = "";
2549 // 2290
2550 o94["27"] = o63;
2551 // 2291
2552 o63.id = "";
2553 // 2292
2554 o94["28"] = void 0;
2555 // undefined
2556 o94 = null;
2557 // 2293
2558 f895948954_7.returns.push(undefined);
2559 // 2295
2560 o94 = {};
2561 // 2296
2562 f895948954_393.returns.push(o94);
2563 // 2297
2564 o96 = {};
2565 // undefined
2566 fo895948954_534_dataset = function() { return fo895948954_534_dataset.returns[fo895948954_534_dataset.inst++]; };
2567 fo895948954_534_dataset.returns = [];
2568 fo895948954_534_dataset.inst = 0;
2569 defineGetter(o94, "dataset", fo895948954_534_dataset, undefined);
2570 // undefined
2571 o94 = null;
2572 // undefined
2573 fo895948954_534_dataset.returns.push(o96);
2574 // undefined
2575 o96 = null;
2576 // undefined
2577 fo895948954_534_dataset.returns.push(null);
2578 // 2305
2579 o94 = {};
2580 // 2306
2581 o16.style = o94;
2582 // 2307
2583 // 2310
2584 // 2312
2585 o96 = {};
2586 // 2313
2587 f895948954_428.returns.push(o96);
2588 // 2314
2589 // 2316
2590 f895948954_393.returns.push(null);
2591 // 2319
2592 f895948954_431.returns.push(o96);
2593 // undefined
2594 o96 = null;
2595 // 2321
2596 o96 = {};
2597 // 2322
2598 f895948954_393.returns.push(o96);
2599 // 2323
2600 o96.tagName = void 0;
2601 // undefined
2602 o96 = null;
2603 // 2324
2604 f895948954_539 = function() { return f895948954_539.returns[f895948954_539.inst++]; };
2605 f895948954_539.returns = [];
2606 f895948954_539.inst = 0;
2607 // 2325
2608 o0.getElementsByName = f895948954_539;
2609 // 2326
2610 o96 = {};
2611 // 2327
2612 f895948954_539.returns.push(o96);
2613 // 2328
2614 o96["0"] = void 0;
2615 // undefined
2616 o96 = null;
2617 // 2330
2618 o96 = {};
2619 // 2331
2620 f895948954_539.returns.push(o96);
2621 // 2332
2622 o96["0"] = void 0;
2623 // undefined
2624 o96 = null;
2625 // 2336
2626 o96 = {};
2627 // 2337
2628 f895948954_539.returns.push(o96);
2629 // 2338
2630 o96["0"] = void 0;
2631 // undefined
2632 o96 = null;
2633 // 2342
2634 o96 = {};
2635 // 2343
2636 f895948954_539.returns.push(o96);
2637 // 2344
2638 o96["0"] = void 0;
2639 // undefined
2640 o96 = null;
2641 // 2345
2642 f895948954_7.returns.push(undefined);
2643 // 2348
2644 f895948954_449.returns.push(undefined);
2645 // 2349
2646 f895948954_544 = function() { return f895948954_544.returns[f895948954_544.inst++]; };
2647 f895948954_544.returns = [];
2648 f895948954_544.inst = 0;
2649 // 2350
2650 o4.pushState = f895948954_544;
2651 // undefined
2652 o4 = null;
2653 // 2351
2654 f895948954_6.returns.push(undefined);
2655 // 2352
2656 f895948954_6.returns.push(undefined);
2657 // 2353
2658 f895948954_545 = function() { return f895948954_545.returns[f895948954_545.inst++]; };
2659 f895948954_545.returns = [];
2660 f895948954_545.inst = 0;
2661 // 2354
2662 ow895948954.JSBNG__onhashchange = f895948954_545;
2663 // 2355
2664 f895948954_7.returns.push(undefined);
2665 // 2357
2666 f895948954_393.returns.push(null);
2667 // 2359
2668 o4 = {};
2669 // 2360
2670 f895948954_417.returns.push(o4);
2671 // 2361
2672 o4["0"] = void 0;
2673 // undefined
2674 o4 = null;
2675 // 2363
2676 o4 = {};
2677 // 2364
2678 f895948954_417.returns.push(o4);
2679 // 2365
2680 o96 = {};
2681 // 2366
2682 o4["0"] = o96;
2683 // 2367
2684 o96.className = "";
2685 // undefined
2686 o96 = null;
2687 // 2368
2688 o96 = {};
2689 // 2369
2690 o4["1"] = o96;
2691 // 2370
2692 o96.className = "";
2693 // undefined
2694 o96 = null;
2695 // 2371
2696 o4["2"] = o38;
2697 // 2373
2698 o4["3"] = o39;
2699 // 2375
2700 o4["4"] = o40;
2701 // 2377
2702 o4["5"] = o41;
2703 // 2379
2704 o4["6"] = o42;
2705 // 2381
2706 o4["7"] = o23;
2707 // 2383
2708 o4["8"] = o43;
2709 // 2385
2710 o4["9"] = o44;
2711 // 2387
2712 o4["10"] = o45;
2713 // 2389
2714 o4["11"] = o46;
2715 // 2391
2716 o4["12"] = o47;
2717 // 2393
2718 o4["13"] = o48;
2719 // 2395
2720 o4["14"] = o49;
2721 // 2397
2722 o4["15"] = o50;
2723 // 2399
2724 o4["16"] = o51;
2725 // 2401
2726 o4["17"] = o52;
2727 // 2403
2728 o4["18"] = o53;
2729 // 2405
2730 o4["19"] = o54;
2731 // 2407
2732 o4["20"] = o55;
2733 // 2409
2734 o4["21"] = o56;
2735 // 2411
2736 o4["22"] = o57;
2737 // 2413
2738 o4["23"] = o58;
2739 // 2415
2740 o4["24"] = o59;
2741 // 2417
2742 o4["25"] = o10;
2743 // 2419
2744 o4["26"] = o60;
2745 // 2421
2746 o4["27"] = o61;
2747 // 2423
2748 o4["28"] = o62;
2749 // 2425
2750 o4["29"] = o63;
2751 // 2427
2752 o96 = {};
2753 // 2428
2754 o4["30"] = o96;
2755 // 2429
2756 o96.className = "";
2757 // undefined
2758 o96 = null;
2759 // 2430
2760 o96 = {};
2761 // 2431
2762 o4["31"] = o96;
2763 // 2432
2764 o96.className = "";
2765 // undefined
2766 o96 = null;
2767 // 2433
2768 o96 = {};
2769 // 2434
2770 o4["32"] = o96;
2771 // 2435
2772 o96.className = "";
2773 // undefined
2774 o96 = null;
2775 // 2436
2776 o96 = {};
2777 // 2437
2778 o4["33"] = o96;
2779 // 2438
2780 o96.className = "";
2781 // undefined
2782 o96 = null;
2783 // 2439
2784 o96 = {};
2785 // 2440
2786 o4["34"] = o96;
2787 // 2441
2788 o96.className = "";
2789 // undefined
2790 o96 = null;
2791 // 2442
2792 o96 = {};
2793 // 2443
2794 o4["35"] = o96;
2795 // 2444
2796 o96.className = "";
2797 // undefined
2798 o96 = null;
2799 // 2445
2800 o4["36"] = void 0;
2801 // undefined
2802 o4 = null;
2803 // 2447
2804 f895948954_393.returns.push(null);
2805 // 2448
2806 f895948954_556 = function() { return f895948954_556.returns[f895948954_556.inst++]; };
2807 f895948954_556.returns = [];
2808 f895948954_556.inst = 0;
2809 // 2449
2810 o0.querySelectorAll = f895948954_556;
2811 // 2450
2812 f895948954_557 = function() { return f895948954_557.returns[f895948954_557.inst++]; };
2813 f895948954_557.returns = [];
2814 f895948954_557.inst = 0;
2815 // 2451
2816 o0.querySelector = f895948954_557;
2817 // 2453
2818 f895948954_557.returns.push(null);
2819 // 2455
2820 f895948954_393.returns.push(null);
2821 // 2459
2822 f895948954_557.returns.push(null);
2823 // 2461
2824 f895948954_393.returns.push(null);
2825 // 2463
2826 f895948954_393.returns.push(null);
2827 // 2465
2828 f895948954_393.returns.push(null);
2829 // 2467
2830 o4 = {};
2831 // 2468
2832 f895948954_556.returns.push(o4);
2833 // 2469
2834 o4.length = 0;
2835 // 2472
2836 o96 = {};
2837 // 2473
2838 f895948954_556.returns.push(o96);
2839 // 2474
2840 o96["0"] = void 0;
2841 // undefined
2842 o96 = null;
2843 // 2478
2844 o96 = {};
2845 // 2479
2846 f895948954_556.returns.push(o96);
2847 // 2480
2848 o96["0"] = o95;
2849 // undefined
2850 o96 = null;
2851 // 2482
2852 o96 = {};
2853 // 2483
2854 f895948954_428.returns.push(o96);
2855 // 2484
2856 // 2485
2857 o95.appendChild = f895948954_431;
2858 // undefined
2859 o95 = null;
2860 // 2486
2861 f895948954_431.returns.push(o96);
2862 // undefined
2863 o96 = null;
2864 // 2488
2865 f895948954_393.returns.push(null);
2866 // 2490
2867 f895948954_393.returns.push(null);
2868 // 2492
2869 f895948954_393.returns.push(null);
2870 // 2494
2871 f895948954_393.returns.push(null);
2872 // 2496
2873 f895948954_557.returns.push(null);
2874 // 2498
2875 o16.nodeType = 1;
2876 // 2499
2877 o16.ownerDocument = o0;
2878 // 2503
2879 o95 = {};
2880 // 2504
2881 f895948954_4.returns.push(o95);
2882 // 2505
2883 o95.direction = void 0;
2884 // 2506
2885 o95.getPropertyValue = void 0;
2886 // undefined
2887 o95 = null;
2888 // 2508
2889 f895948954_393.returns.push(null);
2890 // 2510
2891 f895948954_393.returns.push(null);
2892 // 2512
2893 f895948954_393.returns.push(null);
2894 // 2514
2895 f895948954_393.returns.push(null);
2896 // 2516
2897 f895948954_393.returns.push(null);
2898 // 2518
2899 f895948954_393.returns.push(null);
2900 // 2520
2901 f895948954_406.returns.push(null);
2902 // 2522
2903 f895948954_407.returns.push(undefined);
2904 // 2523
2905 f895948954_7.returns.push(undefined);
2906 // 2525
2907 o95 = {};
2908 // 2526
2909 f895948954_393.returns.push(o95);
2910 // 2527
2911 o95.value = "";
2912 // undefined
2913 o95 = null;
2914 // 2530
2915 f895948954_389.returns.push(1373476565573);
2916 // 2533
2917 o5.search = "";
2918 // 2534
2919 f895948954_16.returns.push(8);
2920 // 2535
2921 f895948954_389.returns.push(1373476565577);
2922 // 2536
2923 o7.ist_rc = void 0;
2924 // undefined
2925 o7 = null;
2926 // 2538
2927 f895948954_393.returns.push(null);
2928 // 2540
2929 f895948954_393.returns.push(null);
2930 // 2542
2931 f895948954_393.returns.push(null);
2932 // 2544
2933 f895948954_393.returns.push(null);
2934 // 2545
2935 o0.webkitVisibilityState = void 0;
2936 // 2547
2937 o7 = {};
2938 // 2548
2939 f895948954_393.returns.push(o7);
2940 // undefined
2941 o7 = null;
2942 // 2549
2943 o3.connection = void 0;
2944 // 2550
2945 o7 = {};
2946 // 2551
2947 o8.timing = o7;
2948 // undefined
2949 o8 = null;
2950 // 2552
2951 o7.navigationStart = 1373476536814;
2952 // 2553
2953 o7.connectEnd = 1373476536820;
2954 // 2554
2955 o7.connectStart = 1373476536820;
2956 // 2557
2957 o7.domainLookupEnd = 1373476536820;
2958 // 2558
2959 o7.domainLookupStart = 1373476536820;
2960 // 2561
2961 o7.redirectEnd = 0;
2962 // 2562
2963 o7.responseEnd = 1373476538870;
2964 // 2563
2965 o7.requestStart = 1373476536822;
2966 // 2567
2967 o7.responseStart = 1373476538856;
2968 // 2570
2969 o0.JSBNG__location = o5;
2970 // 2572
2971 o8 = {};
2972 // 2573
2973 f895948954_65.returns.push(o8);
2974 // 2574
2975 // 2575
2976 // 2576
2977 // undefined
2978 o8 = null;
2979 // 2577
2980 o8 = {};
2981 // undefined
2982 o8 = null;
2983 // 2578
2984 o8 = {};
2985 // 2580
2986 o8.which = 1;
2987 // 2581
2988 o8.type = "mouseout";
2989 // 2582
2990 o8.srcElement = void 0;
2991 // 2583
2992 o8.target = o75;
2993 // 2589
2994 o95 = {};
2995 // 2591
2996 o95.which = 1;
2997 // 2592
2998 o95.type = "mouseover";
2999 // 2593
3000 o95.srcElement = void 0;
3001 // 2594
3002 o95.target = o36;
3003 // 2606
3004 o96 = {};
3005 // 2608
3006 o96.which = 1;
3007 // 2609
3008 o96.type = "mouseout";
3009 // 2610
3010 o96.srcElement = void 0;
3011 // 2611
3012 o96.target = o36;
3013 // 2623
3014 o97 = {};
3015 // 2625
3016 o97.which = 1;
3017 // 2626
3018 o97.type = "mouseover";
3019 // 2627
3020 o97.srcElement = void 0;
3021 // 2628
3022 o97.target = o87;
3023 // 2641
3024 o98 = {};
3025 // 2643
3026 o98.which = 1;
3027 // 2644
3028 o98.type = "mouseout";
3029 // 2645
3030 o98.srcElement = void 0;
3031 // 2646
3032 o98.target = o87;
3033 // 2659
3034 o99 = {};
3035 // 2661
3036 o99.which = 1;
3037 // 2662
3038 o99.type = "mouseover";
3039 // 2663
3040 o99.srcElement = void 0;
3041 // 2664
3042 o99.target = o20;
3043 // 2678
3044 o100 = {};
3045 // 2680
3046 o100.which = 1;
3047 // 2681
3048 o100.type = "mouseout";
3049 // 2682
3050 o100.srcElement = void 0;
3051 // 2683
3052 o100.target = o20;
3053 // 2697
3054 o101 = {};
3055 // 2699
3056 o101.which = 1;
3057 // 2700
3058 o101.type = "mouseover";
3059 // 2701
3060 o101.srcElement = void 0;
3061 // 2702
3062 o101.target = o87;
3063 // 2715
3064 o102 = {};
3065 // 2717
3066 o102.which = 1;
3067 // 2718
3068 o102.type = "mouseout";
3069 // 2719
3070 o102.srcElement = void 0;
3071 // 2720
3072 o102.target = o87;
3073 // 2733
3074 o103 = {};
3075 // 2735
3076 o103.which = 1;
3077 // 2736
3078 o103.type = "mouseover";
3079 // 2737
3080 o103.srcElement = void 0;
3081 // 2738
3082 o103.target = o75;
3083 // 2745
3084 f895948954_16.returns.push(9);
3085 // 2747
3086 f895948954_393.returns.push(o67);
3087 // 2749
3088 o104 = {};
3089 // 2750
3090 f895948954_393.returns.push(o104);
3091 // 2751
3092 o104.getAttribute = f895948954_435;
3093 // undefined
3094 o104 = null;
3095 // 2752
3096 f895948954_435.returns.push("0CAMQnRs");
3097 // 2754
3098 o104 = {};
3099 // 2755
3100 f895948954_428.returns.push(o104);
3101 // 2756
3102 // 2757
3103 // 2758
3104 f895948954_580 = function() { return f895948954_580.returns[f895948954_580.inst++]; };
3105 f895948954_580.returns = [];
3106 f895948954_580.inst = 0;
3107 // 2759
3108 o104.setAttribute = f895948954_580;
3109 // 2760
3110 f895948954_580.returns.push(undefined);
3111 // 2761
3112 o105 = {};
3113 // 2762
3114 o104.firstChild = o105;
3115 // undefined
3116 o105 = null;
3117 // 2763
3118 o105 = {};
3119 // 2764
3120 o67.parentNode = o105;
3121 // 2766
3122 f895948954_583 = function() { return f895948954_583.returns[f895948954_583.inst++]; };
3123 f895948954_583.returns = [];
3124 f895948954_583.inst = 0;
3125 // 2767
3126 o105.insertBefore = f895948954_583;
3127 // 2768
3128 o67.nextSibling = null;
3129 // 2769
3130 f895948954_583.returns.push(o104);
3131 // undefined
3132 o104 = null;
3133 // 2770
3134 o104 = {};
3135 // 2771
3136 o67.firstChild = o104;
3137 // undefined
3138 o104 = null;
3139 // 2774
3140 o104 = {};
3141 // 2775
3142 f895948954_4.returns.push(o104);
3143 // 2776
3144 o104.getPropertyValue = void 0;
3145 // undefined
3146 o104 = null;
3147 // 2780
3148 o104 = {};
3149 // 2781
3150 f895948954_556.returns.push(o104);
3151 // 2782
3152 o104.length = 0;
3153 // undefined
3154 o104 = null;
3155 // 2784
3156 f895948954_557.returns.push(null);
3157 // 2786
3158 f895948954_557.returns.push(null);
3159 // 2788
3160 f895948954_393.returns.push(null);
3161 // 2790
3162 f895948954_557.returns.push(null);
3163 // 2792
3164 f895948954_393.returns.push(null);
3165 // 2794
3166 f895948954_393.returns.push(null);
3167 // 2796
3168 f895948954_393.returns.push(null);
3169 // 2798
3170 f895948954_393.returns.push(null);
3171 // 2800
3172 f895948954_393.returns.push(null);
3173 // 2804
3174 o104 = {};
3175 // 2806
3176 o104.which = 1;
3177 // 2807
3178 o104.type = "mouseout";
3179 // 2808
3180 o104.srcElement = void 0;
3181 // 2809
3182 o104.target = o75;
3183 // 2815
3184 o106 = {};
3185 // 2817
3186 o106.which = 1;
3187 // 2818
3188 o106.type = "mouseover";
3189 // 2819
3190 o106.srcElement = void 0;
3191 // 2820
3192 o106.target = o36;
3193 // 2832
3194 o107 = {};
3195 // 2834
3196 o107.which = 1;
3197 // 2835
3198 o107.type = "mouseout";
3199 // 2836
3200 o107.srcElement = void 0;
3201 // 2837
3202 o107.target = o36;
3203 // 2849
3204 o108 = {};
3205 // 2851
3206 o108.which = 1;
3207 // 2852
3208 o108.type = "mouseover";
3209 // 2853
3210 o108.srcElement = void 0;
3211 // 2854
3212 o108.target = o87;
3213 // 2867
3214 o109 = {};
3215 // 2869
3216 o109.which = 1;
3217 // 2870
3218 o109.type = "mouseout";
3219 // 2871
3220 o109.srcElement = void 0;
3221 // 2872
3222 o109.target = o87;
3223 // 2885
3224 o110 = {};
3225 // 2887
3226 o110.which = 1;
3227 // 2888
3228 o110.type = "mouseover";
3229 // 2889
3230 o110.srcElement = void 0;
3231 // 2890
3232 o110.target = o20;
3233 // 2904
3234 o111 = {};
3235 // 2906
3236 o111.which = 1;
3237 // 2907
3238 o111.type = "mousedown";
3239 // 2908
3240 o111.srcElement = void 0;
3241 // 2909
3242 o111.target = o20;
3243 // 2923
3244 o112 = {};
3245 // 2925
3246 o112.which = 1;
3247 // 2926
3248 o112.type = "mouseup";
3249 // 2927
3250 o112.srcElement = void 0;
3251 // 2928
3252 o112.target = o20;
3253 // 2942
3254 o113 = {};
3255 // 2944
3256 o113.metaKey = false;
3257 // 2945
3258 o113.which = 1;
3259 // 2947
3260 o113.shiftKey = false;
3261 // 2949
3262 o113.type = "click";
3263 // 2950
3264 o113.srcElement = void 0;
3265 // 2951
3266 o113.target = o20;
3267 // 2968
3268 o20.tagName = "INPUT";
3269 // 2969
3270 o20.JSBNG__onclick = null;
3271 // 2972
3272 o87.tagName = "DIV";
3273 // 2973
3274 o87.JSBNG__onclick = null;
3275 // 2976
3276 o36.tagName = "DIV";
3277 // 2977
3278 o36.JSBNG__onclick = null;
3279 // 2980
3280 o70.tagName = "DIV";
3281 // 2981
3282 o70.JSBNG__onclick = null;
3283 // 2984
3284 o11.tagName = "FIELDSET";
3285 // 2985
3286 o11.JSBNG__onclick = null;
3287 // 2988
3288 o19.tagName = "FORM";
3289 // 2989
3290 o19.JSBNG__onclick = null;
3291 // 2992
3292 o37.tagName = "DIV";
3293 // 2993
3294 o37.JSBNG__onclick = null;
3295 // 2996
3296 o71.tagName = "DIV";
3297 // 2997
3298 o71.JSBNG__onclick = null;
3299 // 3000
3300 o72.tagName = "DIV";
3301 // 3001
3302 o72.JSBNG__onclick = null;
3303 // 3004
3304 o28.tagName = "DIV";
3305 // 3005
3306 o28.JSBNG__onclick = null;
3307 // 3008
3308 o9.tagName = "DIV";
3309 // 3009
3310 o9.JSBNG__onclick = null;
3311 // 3012
3312 o29.tagName = "DIV";
3313 // 3013
3314 o29.JSBNG__onclick = null;
3315 // 3016
3316 o16.tagName = "BODY";
3317 // 3017
3318 o16.JSBNG__onclick = null;
3319 // 3019
3320 o6.parentNode = o0;
3321 // 3020
3322 o6.tagName = "HTML";
3323 // 3021
3324 o6.JSBNG__onclick = null;
3325 // 3023
3326 o0.parentNode = null;
3327 // 3024
3328 o113.clientX = 277;
3329 // 3026
3330 o16.scrollLeft = 0;
3331 // 3028
3332 o6.scrollLeft = 0;
3333 // 3029
3334 o113.clientY = 326;
3335 // 3031
3336 o16.scrollTop = 0;
3337 // 3033
3338 o6.scrollTop = 0;
3339 // 3035
3340 o20.nodeName = "INPUT";
3341 // 3037
3342 o87.nodeName = "DIV";
3343 // 3039
3344 o36.nodeName = "DIV";
3345 // 3041
3346 o70.nodeName = "DIV";
3347 // 3043
3348 o11.nodeName = "FIELDSET";
3349 // 3045
3350 o19.nodeName = "FORM";
3351 // 3047
3352 o37.nodeName = "DIV";
3353 // 3049
3354 o71.nodeName = "DIV";
3355 // 3051
3356 o72.nodeName = "DIV";
3357 // 3053
3358 o28.nodeName = "DIV";
3359 // 3055
3360 o9.nodeName = "DIV";
3361 // 3057
3362 o29.nodeName = "DIV";
3363 // 3059
3364 o16.nodeName = "BODY";
3365 // 3061
3366 o6.nodeName = "HTML";
3367 // 3063
3368 o0.nodeName = "#document";
3369 // 3095
3370 o0.tagName = void 0;
3371 // 3097
3372 o114 = {};
3373 // 3099
3374 o114.which = 1;
3375 // 3100
3376 o114.type = "mousedown";
3377 // 3101
3378 o114.srcElement = void 0;
3379 // 3102
3380 o114.target = o20;
3381 // 3116
3382 o115 = {};
3383 // 3118
3384 o115.which = 1;
3385 // 3119
3386 o115.type = "mouseup";
3387 // 3120
3388 o115.srcElement = void 0;
3389 // 3121
3390 o115.target = o20;
3391 // 3135
3392 o116 = {};
3393 // 3137
3394 o116.metaKey = false;
3395 // 3138
3396 o116.which = 1;
3397 // 3140
3398 o116.shiftKey = false;
3399 // 3142
3400 o116.type = "click";
3401 // 3143
3402 o116.srcElement = void 0;
3403 // 3144
3404 o116.target = o20;
3405 // 3217
3406 o116.clientX = 277;
3407 // 3222
3408 o116.clientY = 320;
3409 // 3290
3410 o117 = {};
3411 // 3292
3412 o117.which = 1;
3413 // 3293
3414 o117.type = "mouseout";
3415 // 3294
3416 o117.srcElement = void 0;
3417 // 3295
3418 o117.target = o20;
3419 // 3309
3420 o118 = {};
3421 // 3311
3422 o118.which = 1;
3423 // 3312
3424 o118.type = "mouseover";
3425 // 3313
3426 o118.srcElement = void 0;
3427 // 3314
3428 o118.target = o75;
3429 // 3320
3430 o119 = {};
3431 // 3322
3432 o119.which = 1;
3433 // 3323
3434 o119.type = "mouseout";
3435 // 3324
3436 o119.srcElement = void 0;
3437 // 3325
3438 o119.target = o75;
3439 // 3331
3440 o120 = {};
3441 // 3333
3442 o120.which = 1;
3443 // 3334
3444 o120.type = "mouseover";
3445 // 3335
3446 o120.srcElement = void 0;
3447 // 3336
3448 o120.target = o78;
3449 // 3342
3450 o121 = {};
3451 // 3344
3452 o121.which = 1;
3453 // 3345
3454 o121.type = "mouseout";
3455 // 3346
3456 o121.srcElement = void 0;
3457 // 3347
3458 o121.target = o78;
3459 // 3353
3460 o122 = {};
3461 // 3355
3462 o122.which = 1;
3463 // 3356
3464 o122.type = "mouseover";
3465 // 3357
3466 o122.srcElement = void 0;
3467 // 3358
3468 o122.target = o75;
3469 // 3364
3470 o123 = {};
3471 // 3366
3472 o123.which = 1;
3473 // 3367
3474 o123.type = "mouseout";
3475 // 3368
3476 o123.srcElement = void 0;
3477 // 3369
3478 o123.target = o75;
3479 // 3375
3480 o124 = {};
3481 // 3377
3482 o124.which = 1;
3483 // 3378
3484 o124.type = "mouseover";
3485 // 3379
3486 o124.srcElement = void 0;
3487 // 3380
3488 o124.target = o87;
3489 // 3393
3490 o125 = {};
3491 // 3395
3492 o125.which = 1;
3493 // 3396
3494 o125.type = "mouseout";
3495 // 3397
3496 o125.srcElement = void 0;
3497 // 3398
3498 o125.target = o87;
3499 // 3411
3500 o126 = {};
3501 // 3413
3502 o126.which = 1;
3503 // 3414
3504 o126.type = "mouseover";
3505 // 3415
3506 o126.srcElement = void 0;
3507 // 3416
3508 o126.target = o20;
3509 // 3430
3510 o127 = {};
3511 // 3432
3512 o127.which = 1;
3513 // 3433
3514 o127.type = "mousedown";
3515 // 3434
3516 o127.srcElement = void 0;
3517 // 3435
3518 o127.target = o20;
3519 // 3449
3520 o128 = {};
3521 // 3451
3522 o128.which = 1;
3523 // 3452
3524 o128.type = "mouseup";
3525 // 3453
3526 o128.srcElement = void 0;
3527 // 3454
3528 o128.target = o20;
3529 // 3468
3530 o129 = {};
3531 // 3470
3532 o129.metaKey = false;
3533 // 3471
3534 o129.which = 1;
3535 // 3473
3536 o129.shiftKey = false;
3537 // 3475
3538 o129.type = "click";
3539 // 3476
3540 o129.srcElement = void 0;
3541 // 3477
3542 o129.target = o20;
3543 // 3550
3544 o129.clientX = 261;
3545 // 3555
3546 o129.clientY = 320;
3547 // 3623
3548 o130 = {};
3549 // 3625
3550 o130.which = 84;
3551 // 3626
3552 o130.type = "keydown";
3553 // 3627
3554 o130.srcElement = void 0;
3555 // 3628
3556 o130.target = o20;
3557 // 3642
3558 o131 = {};
3559 // 3644
3560 o131.which = 116;
3561 // 3645
3562 o131.type = "keypress";
3563 // 3646
3564 o131.srcElement = void 0;
3565 // 3647
3566 o131.target = o20;
3567 // 3664
3568 o132 = {};
3569 // 3666
3570 o132.which = 72;
3571 // 3667
3572 o132.type = "keydown";
3573 // 3668
3574 o132.srcElement = void 0;
3575 // 3669
3576 o132.target = o20;
3577 // 3683
3578 o133 = {};
3579 // 3685
3580 o133.which = 104;
3581 // 3686
3582 o133.type = "keypress";
3583 // 3687
3584 o133.srcElement = void 0;
3585 // 3688
3586 o133.target = o20;
3587 // 3705
3588 o134 = {};
3589 // 3707
3590 o134.which = 73;
3591 // 3708
3592 o134.type = "keydown";
3593 // 3709
3594 o134.srcElement = void 0;
3595 // 3710
3596 o134.target = o20;
3597 // 3724
3598 o135 = {};
3599 // 3726
3600 o135.which = 105;
3601 // 3727
3602 o135.type = "keypress";
3603 // 3728
3604 o135.srcElement = void 0;
3605 // 3729
3606 o135.target = o20;
3607 // 3746
3608 o136 = {};
3609 // 3748
3610 o136.which = 83;
3611 // 3749
3612 o136.type = "keydown";
3613 // 3750
3614 o136.srcElement = void 0;
3615 // 3751
3616 o136.target = o20;
3617 // 3765
3618 o137 = {};
3619 // 3767
3620 o137.which = 115;
3621 // 3768
3622 o137.type = "keypress";
3623 // 3769
3624 o137.srcElement = void 0;
3625 // 3770
3626 o137.target = o20;
3627 // 3787
3628 o138 = {};
3629 // 3789
3630 o138.which = 32;
3631 // 3790
3632 o138.type = "keydown";
3633 // 3791
3634 o138.srcElement = void 0;
3635 // 3792
3636 o138.target = o20;
3637 // 3806
3638 o139 = {};
3639 // 3808
3640 o139.which = 32;
3641 // 3809
3642 o139.type = "keypress";
3643 // 3810
3644 o139.srcElement = void 0;
3645 // 3811
3646 o139.target = o20;
3647 // 3828
3648 o140 = {};
3649 // 3830
3650 o140.which = 73;
3651 // 3831
3652 o140.type = "keydown";
3653 // 3832
3654 o140.srcElement = void 0;
3655 // 3833
3656 o140.target = o20;
3657 // 3847
3658 o141 = {};
3659 // 3849
3660 o141.which = 105;
3661 // 3850
3662 o141.type = "keypress";
3663 // 3851
3664 o141.srcElement = void 0;
3665 // 3852
3666 o141.target = o20;
3667 // 3869
3668 o142 = {};
3669 // 3871
3670 o142.which = 83;
3671 // 3872
3672 o142.type = "keydown";
3673 // 3873
3674 o142.srcElement = void 0;
3675 // 3874
3676 o142.target = o20;
3677 // 3888
3678 o143 = {};
3679 // 3890
3680 o143.which = 115;
3681 // 3891
3682 o143.type = "keypress";
3683 // 3892
3684 o143.srcElement = void 0;
3685 // 3893
3686 o143.target = o20;
3687 // 3910
3688 o144 = {};
3689 // 3912
3690 o144.which = 32;
3691 // 3913
3692 o144.type = "keydown";
3693 // 3914
3694 o144.srcElement = void 0;
3695 // 3915
3696 o144.target = o20;
3697 // 3929
3698 o145 = {};
3699 // 3931
3700 o145.which = 32;
3701 // 3932
3702 o145.type = "keypress";
3703 // 3933
3704 o145.srcElement = void 0;
3705 // 3934
3706 o145.target = o20;
3707 // 3951
3708 o146 = {};
3709 // 3953
3710 o146.which = 65;
3711 // 3954
3712 o146.type = "keydown";
3713 // 3955
3714 o146.srcElement = void 0;
3715 // 3956
3716 o146.target = o20;
3717 // 3970
3718 o147 = {};
3719 // 3972
3720 o147.which = 97;
3721 // 3973
3722 o147.type = "keypress";
3723 // 3974
3724 o147.srcElement = void 0;
3725 // 3975
3726 o147.target = o20;
3727 // 3992
3728 o148 = {};
3729 // 3994
3730 o148.which = 32;
3731 // 3995
3732 o148.type = "keydown";
3733 // 3996
3734 o148.srcElement = void 0;
3735 // 3997
3736 o148.target = o20;
3737 // 4011
3738 o149 = {};
3739 // 4013
3740 o149.which = 32;
3741 // 4014
3742 o149.type = "keypress";
3743 // 4015
3744 o149.srcElement = void 0;
3745 // 4016
3746 o149.target = o20;
3747 // 4033
3748 o150 = {};
3749 // 4035
3750 o150.which = 84;
3751 // 4036
3752 o150.type = "keydown";
3753 // 4037
3754 o150.srcElement = void 0;
3755 // 4038
3756 o150.target = o20;
3757 // 4052
3758 o151 = {};
3759 // 4054
3760 o151.which = 116;
3761 // 4055
3762 o151.type = "keypress";
3763 // 4056
3764 o151.srcElement = void 0;
3765 // 4057
3766 o151.target = o20;
3767 // 4074
3768 o152 = {};
3769 // 4076
3770 o152.which = 69;
3771 // 4077
3772 o152.type = "keydown";
3773 // 4078
3774 o152.srcElement = void 0;
3775 // 4079
3776 o152.target = o20;
3777 // 4093
3778 o153 = {};
3779 // 4095
3780 o153.which = 101;
3781 // 4096
3782 o153.type = "keypress";
3783 // 4097
3784 o153.srcElement = void 0;
3785 // 4098
3786 o153.target = o20;
3787 // 4115
3788 o154 = {};
3789 // 4117
3790 o154.which = 83;
3791 // 4118
3792 o154.type = "keydown";
3793 // 4119
3794 o154.srcElement = void 0;
3795 // 4120
3796 o154.target = o20;
3797 // 4134
3798 o155 = {};
3799 // 4136
3800 o155.which = 115;
3801 // 4137
3802 o155.type = "keypress";
3803 // 4138
3804 o155.srcElement = void 0;
3805 // 4139
3806 o155.target = o20;
3807 // 4156
3808 o156 = {};
3809 // 4158
3810 o156.which = 84;
3811 // 4159
3812 o156.type = "keydown";
3813 // 4160
3814 o156.srcElement = void 0;
3815 // 4161
3816 o156.target = o20;
3817 // 4175
3818 o157 = {};
3819 // 4177
3820 o157.which = 116;
3821 // 4178