/*
 * Poshy Tip jQuery plugin v1.0
 * http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/
 * Copyright 2010, Vasil Dinkov, http://vadikom.com/
 */

(function(e){var a=[],d=/^url\(["']?([^"'\)]*)["']?\);?$/i,c=/\.png$/i,b=e.browser.msie&&e.browser.version==6;function f(){e.each(a,function(){this.refresh(true)})}e(window).resize(f);e.Poshytip=function(h,g){this.$elm=e(h);this.opts=e.extend({},e.fn.poshytip.defaults,g);this.$tip=e(['<div class="',this.opts.className,'">','<div class="tip-inner tip-bg-image"></div>','<div class="tip-arrow tip-arrow-top tip-arrow-right tip-arrow-bottom tip-arrow-left"></div>',"</div>"].join(""));this.$arrow=this.$tip.find("div.tip-arrow");this.$inner=this.$tip.find("div.tip-inner");this.disabled=false;this.init()};e.Poshytip.prototype={init:function(){a.push(this);this.$elm.data("title.poshytip",this.$elm.attr("title")).data("poshytip",this);switch(this.opts.showOn){case"hover":this.$elm.bind({"mouseenter.poshytip":e.proxy(this.mouseenter,this),"mouseleave.poshytip":e.proxy(this.mouseleave,this)});if(this.opts.alignTo=="cursor"){this.$elm.bind("mousemove.poshytip",e.proxy(this.mousemove,this))}if(this.opts.allowTipHover){this.$tip.hover(e.proxy(this.clearTimeouts,this),e.proxy(this.hide,this))}break;case"focus":this.$elm.bind({"focus.poshytip":e.proxy(this.show,this),"blur.poshytip":e.proxy(this.hide,this)});break}},mouseenter:function(g){if(this.disabled){return true}this.clearTimeouts();this.$elm.attr("title","");this.showTimeout=setTimeout(e.proxy(this.show,this),this.opts.showTimeout)},mouseleave:function(){if(this.disabled){return true}this.clearTimeouts();this.$elm.attr("title",this.$elm.data("title.poshytip"));this.hideTimeout=setTimeout(e.proxy(this.hide,this),this.opts.hideTimeout)},mousemove:function(g){if(this.disabled){return true}this.eventX=g.pageX;this.eventY=g.pageY;if(this.opts.followCursor&&this.$tip.data("active")){this.calcPos();this.$tip.css({left:this.pos.l,top:this.pos.t});if(this.pos.arrow){this.$arrow[0].className="tip-arrow tip-arrow-"+this.pos.arrow}}},show:function(){if(this.disabled||this.$tip.data("active")){return}this.reset();this.update();this.display()},hide:function(){if(this.disabled||!this.$tip.data("active")){return}this.display(true)},reset:function(){this.$tip.queue([]).detach().css("visibility","hidden").data("active",false);this.$inner.find("*").poshytip("hide");if(this.opts.fade){this.$tip.css("opacity",this.opacity)}this.$arrow[0].className="tip-arrow tip-arrow-top tip-arrow-right tip-arrow-bottom tip-arrow-left"},update:function(i){if(this.disabled){return}var h=i!==undefined;if(h){if(!this.$tip.data("active")){return}}else{i=this.opts.content}this.$inner.contents().detach();var g=this;this.$inner.append(typeof i=="function"?i.call(this.$elm[0],function(j){g.update(j)}):i=="[title]"?this.$elm.data("title.poshytip"):i);this.refresh(h)},refresh:function(h){if(this.disabled){return}if(h){if(!this.$tip.data("active")){return}var k={left:this.$tip.css("left"),top:this.$tip.css("top")}}this.$tip.css({left:0,top:0}).appendTo(document.body);if(this.opacity===undefined){this.opacity=this.$tip.css("opacity")}var l=this.$tip.css("background-image").match(d),m=this.$arrow.css("background-image").match(d);if(l){var i=c.test(l[1]);if(b&&i){this.$tip.css("background-image","none");this.$inner.css({margin:0,border:0,padding:0});l=i=false}else{this.$tip.prepend('<table border="0" cellpadding="0" cellspacing="0"><tr><td class="tip-top tip-bg-image" colspan="2"><span></span></td><td class="tip-right tip-bg-image" rowspan="2"><span></span></td></tr><tr><td class="tip-left tip-bg-image" rowspan="2"><span></span></td><td></td></tr><tr><td class="tip-bottom tip-bg-image" colspan="2"><span></span></td></tr></table>').css({border:0,padding:0,"background-image":"none","background-color":"transparent"}).find(".tip-bg-image").css("background-image",'url("'+l[1]+'")').end().find("td").eq(3).append(this.$inner)}if(i&&!e.support.opacity){this.opts.fade=false}}if(m&&!e.support.opacity){if(b&&c.test(m[1])){m=false;this.$arrow.css("background-image","none")}this.opts.fade=false}var o=this.$tip.find("table");if(b){this.$tip[0].style.width="";o.width("auto").find("td").eq(3).width("auto");var n=this.$tip.width(),j=parseInt(this.$tip.css("min-width")),g=parseInt(this.$tip.css("max-width"));if(!isNaN(j)&&n<j){n=j}else{if(!isNaN(g)&&n>g){n=g}}this.$tip.add(o).width(n).eq(0).find("td").eq(3).width("100%")}else{if(o[0]){o.width("auto").find("td").eq(3).width("auto").end().end().width(this.$tip.width()).find("td").eq(3).width("100%")}}this.tipOuterW=this.$tip.outerWidth();this.tipOuterH=this.$tip.outerHeight();this.calcPos();if(m&&this.pos.arrow){this.$arrow[0].className="tip-arrow tip-arrow-"+this.pos.arrow;this.$arrow.css("visibility","inherit")}if(h){this.$tip.css(k).animate({left:this.pos.l,top:this.pos.t},200)}else{this.$tip.css({left:this.pos.l,top:this.pos.t})}},display:function(h){var i=this.$tip.data("active");if(i&&!h||!i&&h){return}this.$tip.stop();if((this.opts.slide&&this.pos.arrow||this.opts.fade)&&(h&&this.opts.hideAniDuration||!h&&this.opts.showAniDuration)){var m={},l={};if(this.opts.slide&&this.pos.arrow){var k,g;if(this.pos.arrow=="bottom"||this.pos.arrow=="top"){k="top";g="bottom"}else{k="left";g="right"}var j=parseInt(this.$tip.css(k));m[k]=j+(h?0:this.opts.slideOffset*(this.pos.arrow==g?-1:1));l[k]=j+(h?this.opts.slideOffset*(this.pos.arrow==g?1:-1):0)}if(this.opts.fade){m.opacity=h?this.$tip.css("opacity"):0;l.opacity=h?0:this.opacity}this.$tip.css(m).animate(l,this.opts[h?"hideAniDuration":"showAniDuration"])}h?this.$tip.queue(e.proxy(this.reset,this)):this.$tip.css("visibility","inherit");this.$tip.data("active",!i)},disable:function(){this.reset();this.disabled=true},enable:function(){this.disabled=false},destroy:function(){this.reset();this.$tip.remove();this.$elm.unbind("poshytip").removeData("title.poshytip").removeData("poshytip");a.splice(e.inArray(this,a),1)},clearTimeouts:function(){if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}},calcPos:function(){var n={l:0,t:0,arrow:""},h=e(window),k={l:h.scrollLeft(),t:h.scrollTop(),w:h.width(),h:h.height()},p,j,m,i,q,g;if(this.opts.alignTo=="cursor"){p=j=m=this.eventX;i=q=g=this.eventY}else{var o=this.$elm.offset(),l={l:o.left,t:o.top,w:this.$elm.outerWidth(),h:this.$elm.outerHeight()};p=l.l+(this.opts.alignX!="inner-right"?0:l.w);j=p+Math.floor(l.w/2);m=p+(this.opts.alignX!="inner-left"?l.w:0);i=l.t+(this.opts.alignY!="inner-bottom"?0:l.h);q=i+Math.floor(l.h/2);g=i+(this.opts.alignY!="inner-top"?l.h:0)}switch(this.opts.alignX){case"right":case"inner-left":n.l=m+this.opts.offsetX;if(n.l+this.tipOuterW>k.l+k.w){n.l=k.l+k.w-this.tipOuterW}if(this.opts.alignX=="right"||this.opts.alignY=="center"){n.arrow="left"}break;case"center":n.l=j-Math.floor(this.tipOuterW/2);if(n.l+this.tipOuterW>k.l+k.w){n.l=k.l+k.w-this.tipOuterW}else{if(n.l<k.l){n.l=k.l}}break;default:n.l=p-this.tipOuterW-this.opts.offsetX;if(n.l<k.l){n.l=k.l}if(this.opts.alignX=="left"||this.opts.alignY=="center"){n.arrow="right"}}switch(this.opts.alignY){case"bottom":case"inner-top":n.t=g+this.opts.offsetY;if(!n.arrow||this.opts.alignTo=="cursor"){n.arrow="top"}if(n.t+this.tipOuterH>k.t+k.h){n.t=i-this.tipOuterH-this.opts.offsetY;if(n.arrow=="top"){n.arrow="bottom"}}break;case"center":n.t=q-Math.floor(this.tipOuterH/2);if(n.t+this.tipOuterH>k.t+k.h){n.t=k.t+k.h-this.tipOuterH}else{if(n.t<k.t){n.t=k.t}}break;default:n.t=i-this.tipOuterH-this.opts.offsetY;if(!n.arrow||this.opts.alignTo=="cursor"){n.arrow="bottom"}if(n.t<k.t){n.t=g+this.opts.offsetY;if(n.arrow=="bottom"){n.arrow="top"}}}this.pos=n}};e.fn.poshytip=function(g){if(typeof g=="string"){return this.each(function(){var i=e(this).data("poshytip");if(i&&i[g]){i[g]()}})}var h=e.extend({},e.fn.poshytip.defaults,g);if(!e("#poshytip-css-"+h.className)[0]){e(['<style id="poshytip-css-',h.className,'" type="text/css">',"div.",h.className,"{visibility:hidden;position:absolute;top:0;left:0;}","div.",h.className," table, div.",h.className," td{margin:0;font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;font-variant:inherit;}","div.",h.className," td.tip-bg-image span{display:block;font:1px/1px sans-serif;height:",h.bgImageFrameSize,"px;width:",h.bgImageFrameSize,"px;overflow:hidden;}","div.",h.className," td.tip-right{background-position:100% 0;}","div.",h.className," td.tip-bottom{background-position:100% 100%;}","div.",h.className," td.tip-left{background-position:0 100%;}","div.",h.className," div.tip-inner{background-position:-",h.bgImageFrameSize,"px -",h.bgImageFrameSize,"px;}","div.",h.className," div.tip-arrow{visibility:hidden;position:absolute;overflow:hidden;font:1px/1px sans-serif;}","</style>"].join("")).appendTo("head")}return this.each(function(){new e.Poshytip(this,h)})};e.fn.poshytip.defaults={content:"[title]",className:"tip-yellow",bgImageFrameSize:10,showTimeout:500,hideTimeout:100,showOn:"hover",alignTo:"cursor",alignX:"right",alignY:"top",offsetX:-22,offsetY:18,allowTipHover:true,followCursor:false,fade:true,slide:true,slideOffset:8,showAniDuration:300,hideAniDuration:300}})(jQuery);

/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.86 (05-APR-2010)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 */
;(function($) {

var ver = '2.86';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	if ($.fn.cycle.debug)
		log(s);
}		
function log() {
	if (window.console && window.console.log)
		window.console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
};

// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'pause', 'resume', 'toggle', 'next', 'prev', 'stop', 'destroy' or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in first arg == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	if (this.length === 0 && options != 'stop') {
		if (!$.isReady && o.s) {
			log('DOM not ready, queuing slideshow');
			$(function() {
				$(o.s,o.c).cycle(options,arg2);
			});
			return this;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		opts.updateActivePagerLink = opts.updateActivePagerLink || $.fn.cycle.updateActivePagerLink;
		
		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

		var $cont = $(this);
		var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children();
		var els = $slides.get();
		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var opts2 = buildOptions($cont, $slides, els, opts, o);
		if (opts2 === false)
			return;

		var startTime = opts2.continuous ? 10 : getTimeout(opts2.currSlide, opts2.nextSlide, opts2, !opts2.rev);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts2.rev)}, startTime);
		}
	});
};

// process the args that were passed to the plugin fn
function handleArguments(cont, options, arg2) {
	if (cont.cycleStop == undefined)
		cont.cycleStop = 0;
	if (options === undefined || options === null)
		options = {};
	if (options.constructor == String) {
		switch(options) {
		case 'destroy':
		case 'stop':
			var opts = $(cont).data('cycle.opts');
			if (!opts)
				return false;
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			$(cont).removeData('cycle.opts');
			if (options == 'destroy')
				destroy(opts);
			return false;
		case 'toggle':
			cont.cyclePause = (cont.cyclePause === 1) ? 0 : 1;
			checkInstantResume(cont.cyclePause, arg2, cont);
			return false;
		case 'pause':
			cont.cyclePause = 1;
			return false;
		case 'resume':
			cont.cyclePause = 0;
			checkInstantResume(false, arg2, cont);
			return false;
		case 'prev':
		case 'next':
			var opts = $(cont).data('cycle.opts');
			if (!opts) {
				log('options not found, "prev/next" ignored');
				return false;
			}
			$.fn.cycle[options](opts);
			return false;
		default:
			options = { fx: options };
		};
		return options;
	}
	else if (options.constructor == Number) {
		// go to the requested slide
		var num = options;
		options = $(cont).data('cycle.opts');
		if (!options) {
			log('options not found, can not advance slide');
			return false;
		}
		if (num < 0 || num >= options.elements.length) {
			log('invalid slide index: ' + num);
			return false;
		}
		options.nextSlide = num;
		if (cont.cycleTimeout) {
			clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
		}
		if (typeof arg2 == 'string')
			options.oneTimeFx = arg2;
		go(options.elements, options, 1, num >= options.currSlide);
		return false;
	}
	return options;
	
	function checkInstantResume(isPaused, arg2, cont) {
		if (!isPaused && arg2 === true) { // resume now!
			var options = $(cont).data('cycle.opts');
			if (!options) {
				log('options not found, can not resume');
				return false;
			}
			if (cont.cycleTimeout) {
				clearTimeout(cont.cycleTimeout);
				cont.cycleTimeout = 0;
			}
			go(options.elements, options, 1, 1);
		}
	}
};

function removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// unbind event handlers
function destroy(opts) {
	if (opts.next)
		$(opts.next).unbind(opts.prevNextEvent);
	if (opts.prev)
		$(opts.prev).unbind(opts.prevNextEvent);
	
	if (opts.pager || opts.pagerAnchorBuilder)
		$.each(opts.pagerAnchors || [], function() {
			this.unbind().remove();
		});
	opts.pagerAnchors = null;
	if (opts.destroy) // callback
		opts.destroy(opts);
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	// support metadata plugin (v1.0 and v2.0)
	var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
	if (opts.autostop)
		opts.countdown = opts.autostopCount || els.length;

	var cont = $cont[0];
	$cont.data('cycle.opts', opts);
	opts.$cont = $cont;
	opts.stopCount = cont.cycleStop;
	opts.elements = els;
	opts.before = opts.before ? [opts.before] : [];
	opts.after = opts.after ? [opts.after] : [];
	opts.after.unshift(function(){ opts.busy=0; });

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.rev); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	if ($cont.css('position') == 'static')
		$cont.css('position', 'relative');
	if (opts.width)
		$cont.width(opts.width);
	if (opts.height && opts.height != 'auto')
		$cont.height(opts.height);

	if (opts.startingSlide)
		opts.startingSlide = parseInt(opts.startingSlide);

	// if random, mix up the slide array
	if (opts.random) {
		opts.randomMap = [];
		for (var i = 0; i < els.length; i++)
			opts.randomMap.push(i);
		opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
		opts.randomIndex = 1;
		opts.startingSlide = opts.randomMap[1];
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit && opts.width)
		$slides.width(opts.width);
	if (opts.fit && opts.height && opts.height != 'auto')
		$slides.height(opts.height);

	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		var maxw = 0, maxh = 0;
		for(var j=0; j < els.length; j++) {
			var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight();
			if (!w) w = e.offsetWidth || e.width || $e.attr('width')
			if (!h) h = e.offsetHeight || e.height || $e.attr('height');
			maxw = w > maxw ? w : maxw;
			maxh = h > maxh ? h : maxh;
		}
		if (maxw > 0 && maxh > 0)
			$cont.css({width:maxw+'px',height:maxh+'px'});
	}

	if (opts.pause)
		$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});

	if (supportMultiTransitions(opts) === false)
		return false;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : ($el.height() || this.offsetHeight || this.height || $el.attr('height') || 0);
		this.cycleW = (opts.fit && opts.width) ? opts.width : ($el.width() || this.offsetWidth || this.width || $el.attr('width') || 0);

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			var loadingIE	= ($.browser.msie  && this.cycleW == 28 && this.cycleH == 30 && !this.complete);
			var loadingFF	= ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete);
			var loadingOp	= ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete);
			var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ', this.src, this.cycleW, this.cycleH);
					setTimeout(function() {$(o.s,o.c).cycle(options)}, opts.requeueTimeout);
					requeue = true;
					return false; // break each loop
				}
				else {
					log('could not determine size of image: '+this.src, this.cycleW, this.cycleH);
				}
			}
		}
		return true;
	});

	if (requeue)
		return false;

	opts.cssBefore = opts.cssBefore || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	if (opts.cssFirst)
		$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		
		var buffer = opts.fx == 'shuffle' ? 500 : 250;
		while((opts.timeout - opts.speed) < buffer) // sanitize timeout
			opts.timeout += opts.speed;
	}
	if (opts.easing)
		opts.easeIn = opts.easeOut = opts.easing;
	if (!opts.speedIn)
		opts.speedIn = opts.speed;
	if (!opts.speedOut)
		opts.speedOut = opts.speed;

	opts.slideCount = els.length;
	opts.currSlide = opts.lastSlide = first;
	if (opts.random) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	if (!opts.multiFx) {
		var init = $.fn.cycle.transitions[opts.fx];
		if ($.isFunction(init))
			init($cont, $slides, opts);
		else if (opts.fx != 'custom' && !opts.multiFx) {
			log('unknown transition: ' + opts.fx,'; slideshow terminating');
			return false;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (opts.before.length)
		opts.before[0].apply(e0, [e0, e0, opts, true]);
	if (opts.after.length > 1)
		opts.after[1].apply(e0, [e0, e0, opts, true]);

	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1)});
	if (opts.pager || opts.pagerAnchorBuilder)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
function saveOriginalOpts(opts) {
	opts.original = { before: [], after: [] };
	opts.original.cssBefore = $.extend({}, opts.cssBefore);
	opts.original.cssAfter  = $.extend({}, opts.cssAfter);
	opts.original.animIn	= $.extend({}, opts.animIn);
	opts.original.animOut   = $.extend({}, opts.animOut);
	$.each(opts.before, function() { opts.original.before.push(this); });
	$.each(opts.after,  function() { opts.original.after.push(this); });
};

function supportMultiTransitions(opts) {
	var i, tx, txs = $.fn.cycle.transitions;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		for (i=0; i < opts.fxs.length; i++) {
			var fx = opts.fxs[i];
			tx = txs[fx];
			if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) {
				log('discarding unknown transition: ',fx);
				opts.fxs.splice(i,1);
				i--;
			}
		}
		// if we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		opts.multiFx = true;
		opts.fxs = [];
		for (p in txs) {
			tx = txs[p];
			if (txs.hasOwnProperty(p) && $.isFunction(tx))
				opts.fxs.push(p);
		}
	}
	if (opts.multiFx && opts.randomizeEffects) {
		// munge the fxs array to make effect selection random
		var r1 = Math.floor(Math.random() * 20) + 30;
		for (i = 0; i < r1; i++) {
			var r2 = Math.floor(Math.random() * opts.fxs.length);
			opts.fxs.push(opts.fxs.splice(r2,1)[0]);
		}
		debug('randomized fx sequence: ',opts.fxs);
	}
	return true;
};

// provide a mechanism for adding slides after the slideshow has started
function exposeAddSlide(opts, els) {
	opts.addSlide = function(newSlide, prepend) {
		var $s = $(newSlide), s = $s[0];
		if (!opts.autostopCount)
			opts.countdown++;
		els[prepend?'unshift':'push'](s);
		if (opts.els)
			opts.els[prepend?'unshift':'push'](s); // shuffle needs this
		opts.slideCount = els.length;

		$s.css('position','absolute');
		$s[prepend?'prependTo':'appendTo'](opts.$cont);

		if (prepend) {
			opts.currSlide++;
			opts.nextSlide++;
		}

		if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
			clearTypeFix($s);

		if (opts.fit && opts.width)
			$s.width(opts.width);
		if (opts.fit && opts.height && opts.height != 'auto')
			$slides.height(opts.height);
		s.cycleH = (opts.fit && opts.height) ? opts.height : $s.height();
		s.cycleW = (opts.fit && opts.width) ? opts.width : $s.width();

		$s.css(opts.cssBefore);

		if (opts.pager || opts.pagerAnchorBuilder)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.fn.cycle.resetState = function(opts, fx) {
	fx = fx || opts.fx;

	opts.before = []; opts.after = [];
	opts.cssBefore = $.extend({}, opts.original.cssBefore);
	opts.cssAfter  = $.extend({}, opts.original.cssAfter);
	opts.animIn	= $.extend({}, opts.original.animIn);
	opts.animOut   = $.extend({}, opts.original.animOut);
	opts.fxFn = null;
	$.each(opts.original.before, function() { opts.before.push(this); });
	$.each(opts.original.after,  function() { opts.after.push(this); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		debug('manualTrump in go(), stopping active transition');
		$(els).stop(true,true);
		opts.busy = false;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy) {
		debug('transition active, ignoring new tx request');
		return;
	}

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	var changed = false;
	if ((manual || !p.cyclePause) && (opts.nextSlide != opts.currSlide)) {
		changed = true;
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length)
				opts.lastFx = 0;
			fx = opts.fxs[opts.lastFx];
			opts.currFx = fx;
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		debug('tx firing; currSlide: ' + opts.currSlide + '; nextSlide: ' + opts.nextSlide);
		
		// get ready to perform the transition
		opts.busy = 1;
		if (opts.fxFn) // fx function provided?
			opts.fxFn(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
			$.fn.cycle[opts.fx](curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else
			$.fn.cycle.custom(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
	}

	if (changed || opts.nextSlide == opts.currSlide) {
		// calculate the next slide
		opts.lastSlide = opts.currSlide;
		if (opts.random) {
			opts.currSlide = opts.nextSlide;
			if (++opts.randomIndex == els.length)
				opts.randomIndex = 0;
			opts.nextSlide = opts.randomMap[opts.randomIndex];
			if (opts.nextSlide == opts.currSlide)
				opts.nextSlide = (opts.currSlide == opts.slideCount - 1) ? 0 : opts.currSlide + 1;
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			opts.nextSlide = roll ? 0 : opts.nextSlide+1;
			opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
		}
	}
	if (changed && opts.pager)
		opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
	
	// stage the next transition
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(curr, next, opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.rev) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide, clsName) {
   $(pager).each(function() {
       $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
   });
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn(curr,next,opts,fwd);
		while ((t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts, opts.rev?-1:1); };
$.fn.cycle.prev = function(opts) { advance(opts, opts.rev?1:-1);};

// advance slide forward or back
function advance(opts, val) {
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		opts.randomIndex--;
		if (--opts.randomIndex == -2)
			opts.randomIndex = els.length-2;
		else if (opts.randomIndex == -1)
			opts.randomIndex = els.length-1;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.random) {
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else {
		opts.nextSlide = opts.currSlide + val;
		if (opts.nextSlide < 0) {
			if (opts.nowrap) return false;
			opts.nextSlide = els.length - 1;
		}
		else if (opts.nextSlide >= els.length) {
			if (opts.nowrap) return false;
			opts.nextSlide = 0;
		}
	}

	var cb = opts.onPrevNextEvent || opts.prevNextClick; // prevNextClick is deprecated
	if ($.isFunction(cb))
		cb(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, val>=0);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
	opts.updateActivePagerLink(opts.pager, opts.startingSlide, opts.activePagerClass);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder)) {
		a = opts.pagerAnchorBuilder(i,el);
		debug('pagerAnchorBuilder('+i+', el) returned: ' + a);
	}
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	if ($a.parents('body').length === 0) {
		var arr = [];
		if ($p.length > 1) {
			$p.each(function() {
				var $clone = $a.clone(true);
				$(this).append($clone);
				arr.push($clone[0]);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	opts.pagerAnchors =  opts.pagerAnchors || [];
	opts.pagerAnchors.push($a);
	$a.bind(opts.pagerEvent, function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		var cb = opts.onPagerEvent || opts.pagerClick; // pagerClick is deprecated
		if ($.isFunction(cb))
			cb(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
//		return false; // <== allow bubble
	});
	
	if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble)
		$a.bind('click.cycle', function(){return false;}); // suppress click
	
	if (opts.pauseOnPagerHover)
		$a.hover(function() { opts.$cont[0].cyclePause++; }, function() { opts.$cont[0].cyclePause--; } );
};

// helper fn to calculate the number of slides between the current and the next
$.fn.cycle.hopsFromLast = function(opts, fwd) {
	var hops, l = opts.lastSlide, c = opts.currSlide;
	if (fwd)
		hops = c > l ? c - l : opts.slideCount - l;
	else
		hops = c < l ? l - c : l + opts.slideCount - c;
	return hops;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	debug('applying clearType background-color hack');
	function hex(s) {
		s = parseInt(s).toString(16);
		return s.length < 2 ? '0'+s : s;
	};
	function getBg(e) {
		for ( ; e && e.nodeName.toLowerCase() != 'html'; e = e.parentNode) {
			var v = $.css(e,'background-color');
			if (v.indexOf('rgb') >= 0 ) {
				var rgb = v.match(/\d+/g);
				return '#'+ hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]);
			}
			if (v && v != 'transparent')
				return v;
		}
		return '#ffffff';
	};
	$slides.each(function() { $(this).css('background-color', getBg(this)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (h !== false && next.cycleH > 0)
		opts.cssBefore.height = next.cycleH;
	opts.cssAfter = opts.cssAfter || {};
	opts.cssAfter.display = 'none';
	$(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0));
	$(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, fwd, speedOverride) {
	var $l = $(curr), $n = $(next);
	var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut;
	$n.css(opts.cssBefore);
	if (speedOverride) {
		if (typeof speedOverride == 'number')
			speedIn = speedOut = speedOverride;
		else
			speedIn = speedOut = 1;
		easeIn = easeOut = null;
	}
	var fn = function() {$n.animate(opts.animIn, speedIn, easeIn, cb)};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		if (opts.cssAfter) $l.css(opts.cssAfter);
		if (!opts.sync) fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.fn.cycle.transitions = {
	fade: function($cont, $slides, opts) {
		$slides.not(':eq('+opts.currSlide+')').css('opacity',0);
		opts.before.push(function(curr,next,opts) {
			$.fn.cycle.commonReset(curr,next,opts);
			opts.cssBefore.opacity = 0;
		});
		opts.animIn	   = { opacity: 1 };
		opts.animOut   = { opacity: 0 };
		opts.cssBefore = { top: 0, left: 0 };
	}
};

$.fn.cycle.ver = function() { return ver; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	fx:			  'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle')
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:     null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	continuous:	   0,	  // true to start next transition immediately after current one completes
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	next:		   null,  // selector for element to use as event trigger for next slide
	prev:		   null,  // selector for element to use as event trigger for previous slide
//	prevNextClick: null,  // @deprecated; please use onPrevNextEvent instead
	onPrevNextEvent: null,  // callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement)
	prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
	pager:		   null,  // selector for element to use as pager container
	//pagerClick   null,  // @deprecated; please use onPagerEvent instead
	onPagerEvent:  null,  // callback fn for pager events: function(zeroBasedSlideIndex, slideElement)
	pagerEvent:	  'click.cycle', // name of event which drives the pager navigation
	allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	easing:		   null,  // easing method for both in and out transitions
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	fit:		   0,	  // force slides to fit container
	containerResize: 1,	  // resize container to fit largest slide
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	rev:		   0,	 // causes animations to transition in reverse
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250,  // ms delay for requeue
	activePagerClass: 'activeSlide', // class name used for the active pager link
	updateActivePagerLink: null // callback fn invoked to update the active pager link (adds/removes activePagerClass style)
};

})(jQuery);


/*!
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define one-time slide initialization for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
}

// scrollUp/Down/Left/Right
$.fn.cycle.transitions.scrollUp = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssBefore ={ top: h, left: 0 };
	opts.cssFirst = { top: 0 };
	opts.animIn	  = { top: 0 };
	opts.animOut  = { top: -h };
};
$.fn.cycle.transitions.scrollDown = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssFirst = { top: 0 };
	opts.cssBefore= { top: -h, left: 0 };
	opts.animIn	  = { top: 0 };
	opts.animOut  = { top: h };
};
$.fn.cycle.transitions.scrollLeft = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { left: w, top: 0 };
	opts.animIn	  = { left: 0 };
	opts.animOut  = { left: 0-w };
};
$.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { left: -w, top: 0 };
	opts.animIn	  = { left: 0 };
	opts.animOut  = { left: w };
};
$.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) {
	$cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts, fwd) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.left = fwd ? (next.cycleW-1) : (1-next.cycleW);
		opts.animOut.left = fwd ? -curr.cycleW : curr.cycleW;
	});
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { top: 0 };
	opts.animIn   = { left: 0 };
	opts.animOut  = { top: 0 };
};
$.fn.cycle.transitions.scrollVert = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push(function(curr, next, opts, fwd) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.top = fwd ? (1-next.cycleH) : (next.cycleH-1);
		opts.animOut.top = fwd ? curr.cycleH : -curr.cycleH;
	});
	opts.cssFirst = { top: 0 };
	opts.cssBefore= { left: 0 };
	opts.animIn   = { top: 0 };
	opts.animOut  = { left: 0 };
};

// slideX/slideY
$.fn.cycle.transitions.slideX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore = { left: 0, top: 0, width: 0 };
	opts.animIn	 = { width: 'show' };
	opts.animOut = { width: 0 };
};
$.fn.cycle.transitions.slideY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
	});
	opts.cssBefore = { left: 0, top: 0, height: 0 };
	opts.animIn	 = { height: 'show' };
	opts.animOut = { height: 0 };
};

// shuffle
$.fn.cycle.transitions.shuffle = function($cont, $slides, opts) {
	var i, w = $cont.css('overflow', 'visible').width();
	$slides.css({left: 0, top: 0});
	opts.before.push(function(curr,next,opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		opts.speedAdjusted = true;
	}
	opts.random = 0;
	opts.shuffle = opts.shuffle || {left:-w, top:15};
	opts.els = [];
	for (i=0; i < $slides.length; i++)
		opts.els.push($slides[i]);

	for (i=0; i < opts.currSlide; i++)
		opts.els.push(opts.els.shift());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, fwd) {
		var $el = fwd ? $(curr) : $(next);
		$(next).css(opts.cssBefore);
		var count = opts.slideCount;
		$el.animate(opts.shuffle, opts.speedIn, opts.easeIn, function() {
			var hops = $.fn.cycle.hopsFromLast(opts, fwd);
			for (var k=0; k < hops; k++)
				fwd ? opts.els.push(opts.els.shift()) : opts.els.unshift(opts.els.pop());
			if (fwd) {
				for (var i=0, len=opts.els.length; i < len; i++)
					$(opts.els[i]).css('z-index', len-i+count);
			}
			else {
				var z = $(curr).css('z-index');
				$el.css('z-index', parseInt(z)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
};

// turnUp/Down/Left/Right
$.fn.cycle.transitions.turnUp = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = next.cycleH;
		opts.animIn.height = next.cycleH;
	});
	opts.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, height: 0 };
	opts.animIn	   = { top: 0 };
	opts.animOut   = { height: 0 };
};
$.fn.cycle.transitions.turnDown = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, top: 0, height: 0 };
	opts.animOut   = { height: 0 };
};
$.fn.cycle.transitions.turnLeft = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = next.cycleW;
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore = { top: 0, width: 0  };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};
$.fn.cycle.transitions.turnRight = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
		opts.animOut.left = curr.cycleW;
	});
	opts.cssBefore = { top: 0, left: 0, width: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};

// zoom
$.fn.cycle.transitions.zoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn	   = { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
		opts.animOut   = { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 };
	});
	opts.cssFirst = { top:0, left: 0 };
	opts.cssBefore = { width: 0, height: 0 };
};

// fadeZoom
$.fn.cycle.transitions.fadeZoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false);
		opts.cssBefore.left = next.cycleW/2;
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn	= { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
	});
	opts.cssBefore = { width: 0, height: 0 };
	opts.animOut  = { opacity: 0 };
};

// blindX
$.fn.cycle.transitions.blindX = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.width = next.cycleW;
		opts.animOut.left   = curr.cycleW;
	});
	opts.cssBefore = { left: w, top: 0 };
	opts.animIn = { left: 0 };
	opts.animOut  = { left: w };
};
// blindY
$.fn.cycle.transitions.blindY = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore = { top: h, left: 0 };
	opts.animIn = { top: 0 };
	opts.animOut  = { top: h };
};
// blindZ
$.fn.cycle.transitions.blindZ = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	var w = $cont.width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore = { top: h, left: w };
	opts.animIn = { top: 0, left: 0 };
	opts.animOut  = { top: h, left: w };
};

// growX - grow horizontally from centered 0 width
$.fn.cycle.transitions.growX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = this.cycleW/2;
		opts.animIn = { left: 0, width: this.cycleW };
		opts.animOut = { left: 0 };
	});
	opts.cssBefore = { width: 0, top: 0 };
};
// growY - grow vertically from centered 0 height
$.fn.cycle.transitions.growY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = this.cycleH/2;
		opts.animIn = { top: 0, height: this.cycleH };
		opts.animOut = { top: 0 };
	});
	opts.cssBefore = { height: 0, left: 0 };
};

// curtainX - squeeze in both edges horizontally
$.fn.cycle.transitions.curtainX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true,true);
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn = { left: 0, width: this.cycleW };
		opts.animOut = { left: curr.cycleW/2, width: 0 };
	});
	opts.cssBefore = { top: 0, width: 0 };
};
// curtainY - squeeze in both edges vertically
$.fn.cycle.transitions.curtainY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn = { top: 0, height: next.cycleH };
		opts.animOut = { top: curr.cycleH/2, height: 0 };
	});
	opts.cssBefore = { left: 0, height: 0 };
};

// cover - curr slide covered by next slide
$.fn.cycle.transitions.cover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		if (d == 'right')
			opts.cssBefore.left = -w;
		else if (d == 'up')
			opts.cssBefore.top = h;
		else if (d == 'down')
			opts.cssBefore.top = -h;
		else
			opts.cssBefore.left = w;
	});
	opts.animIn = { left: 0, top: 0};
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// uncover - curr slide moves off next slide
$.fn.cycle.transitions.uncover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		if (d == 'right')
			opts.animOut.left = w;
		else if (d == 'up')
			opts.animOut.top = -h;
		else if (d == 'down')
			opts.animOut.top = h;
		else
			opts.animOut.left = -w;
	});
	opts.animIn = { left: 0, top: 0 };
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// toss - move top slide and fade away
$.fn.cycle.transitions.toss = function($cont, $slides, opts) {
	var w = $cont.css('overflow','visible').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			opts.animOut = { left: w*2, top: -h/2, opacity: 0 };
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore = { left: 0, top: 0 };
	opts.animIn = { left: 0 };
};

// wipe - clip animation
$.fn.cycle.transitions.wipe = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.cssBefore = opts.cssBefore || {};
	var clip;
	if (opts.clip) {
		if (/l2r/.test(opts.clip))
			clip = 'rect(0px 0px '+h+'px 0px)';
		else if (/r2l/.test(opts.clip))
			clip = 'rect(0px '+w+'px '+h+'px '+w+'px)';
		else if (/t2b/.test(opts.clip))
			clip = 'rect(0px '+w+'px 0px 0px)';
		else if (/b2t/.test(opts.clip))
			clip = 'rect('+h+'px '+w+'px '+h+'px 0px)';
		else if (/zoom/.test(opts.clip)) {
			var top = parseInt(h/2);
			var left = parseInt(w/2);
			clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'px)';
		}
	}

	opts.cssBefore.clip = opts.cssBefore.clip || clip || 'rect(0px 0px 0px 0px)';

	var d = opts.cssBefore.clip.match(/(\d+)/g);
	var t = parseInt(d[0]), r = parseInt(d[1]), b = parseInt(d[2]), l = parseInt(d[3]);

	opts.before.push(function(curr, next, opts) {
		if (curr == next) return;
		var $curr = $(curr), $next = $(next);
		$.fn.cycle.commonReset(curr,next,opts,true,true,false);
		opts.cssAfter.display = 'block';

		var step = 1, count = parseInt((opts.speedIn / 13)) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count)) : 0;
			var ll = l ? l - parseInt(step * (l/count)) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1)) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1)) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

/*!
 * jQuery UI 1.8.5
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI
 */
(function(c,j){function k(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.5",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,
NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this,
"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position");
if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"));if(!isNaN(b)&&b!=0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind("mousedown.ui-disableSelection selectstart.ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,l,m){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=parseFloat(c.curCSS(f,
"border"+this+"Width",true))||0;if(m)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c.style(this,h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c.style(this,
h,d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");if("area"===b){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&k(a)}return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}});
c(function(){var a=document.createElement("div"),b=document.body;c.extend(a.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.appendChild(a).offsetHeight===100;b.removeChild(a).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,
d)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")==="hidden")return false;b=b&&b==="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a<b+d},isOver:function(a,b,d,e,h,i){return c.ui.isOverAxis(a,d,h)&&c.ui.isOverAxis(b,e,i)}})}})(jQuery);
(function(b,j){if(b.cleanData){var k=b.cleanData;b.cleanData=function(a){for(var c=0,d;(d=a[c])!=null;c++)b(d).triggerHandler("remove");k(a)}}else{var l=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){b(this).triggerHandler("remove")});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,
a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{},c.options);b[e][a].prototype=b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.substring(0,1)===
"_")return h;e?this.each(function(){var g=b.data(this,a);if(!g)throw"cannot call methods on "+a+" prior to initialization; attempted to call method '"+d+"'";if(!b.isFunction(g[d]))throw"no such method '"+d+"' for "+a+" widget instance";var i=g[d].apply(g,f);if(i!==g&&i!==j){h=i;return false}}):this.each(function(){var g=b.data(this,a);g?g.option(d||{})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",
widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);this.element=b(c);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(c)[this.widgetName],a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+
"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(a,c){var d=a,e=this;if(arguments.length===0)return b.extend({},e.options);if(typeof a==="string"){if(c===j)return this.options[a];d={};d[a]=c}b.each(d,function(f,h){e._setOption(f,h)});return e},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},enable:function(){return this._setOption("disabled",
false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a=b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery);
(function(c){c.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(b){return a._mouseDown(b)}).bind("click."+this.widgetName,function(b){if(a._preventClickEvent){a._preventClickEvent=false;b.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(a){a.originalEvent=a.originalEvent||{};if(!a.originalEvent.mouseHandled){this._mouseStarted&&
this._mouseUp(a);this._mouseDownEvent=a;var b=this,e=a.which==1,f=typeof this.options.cancel=="string"?c(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!e||f||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){b.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault();
return true}}this._mouseMoveDelegate=function(d){return b._mouseMove(d)};this._mouseUpDelegate=function(d){return b._mouseUp(d)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);c.browser.safari||a.preventDefault();return a.originalEvent.mouseHandled=true}},_mouseMove:function(a){if(c.browser.msie&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&
this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=a.target==this._mouseDownEvent.target;this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-
a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery);
(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){if(this.options.helper==
"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){if(this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){var b=
this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;return true},_mouseStart:function(a){var b=this.options;this.helper=this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={top:this.offset.top-
this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){this._clear();return false}this._cacheHelperProportions();
d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!b){b=this._uiHash();if(this._trigger("drag",a,b)===false){this._mouseUp({});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||
this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=d.ui.ddmanager.drop(this,a);if(this.dropped){b=this.dropped;this.dropped=false}if(!this.element[0]||!this.element[0].parentNode)return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&&this.options.revert.call(this.element,
b)){var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",a)!==false&&this._clear();return false},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(a){var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==
a.target)b=true});return b},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone():this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]||
0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],
this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-
(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment==
"parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&&
a.containment.constructor!=Array){var b=d(a.containment)[0];if(b){a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),
10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}}else if(a.containment.constructor==Array)this.containment=a.containment},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],
this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():
f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,g=a.pageY;if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.left<this.containment[0])e=this.containment[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[1])g=this.containment[1]+
this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[2])e=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;e=this.originalPageX+
Math.round((e-this.originalPageX)/b.grid[0])*b.grid[0];e=this.containment?!(e-this.offset.click.left<this.containment[0]||e-this.offset.click.left>this.containment[2])?e:!(e-this.offset.click.left<this.containment[0])?e-b.grid[0]:e+b.grid[0]:e}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop()),left:e-this.offset.click.left-
this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging");this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove();this.helper=null;this.cancelHelperRemoval=false},_trigger:function(a,b,c){c=c||this._uiHash();d.ui.plugin.call(this,a,[b,c]);if(a=="drag")this.positionAbs=
this._convertPositionTo("absolute");return d.Widget.prototype._trigger.call(this,a,b,c)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}});d.extend(d.ui.draggable,{version:"1.8.5"});d.ui.plugin.add("draggable","connectToSortable",{start:function(a,b){var c=d(this).data("draggable"),f=c.options,e=d.extend({},b,{item:c.element});c.sortables=[];d(f.connectToSortable).each(function(){var g=d.data(this,"sortable");
if(g&&!g.options.disabled){c.sortables.push({instance:g,shouldRevert:g.options.revert});g._refreshItems();g._trigger("activate",a,e)}})},stop:function(a,b){var c=d(this).data("draggable"),f=d.extend({},b,{item:c.element});d.each(c.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;c.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert)this.instance.options.revert=true;this.instance._mouseStop(a);this.instance.options.helper=this.instance.options._helper;
c.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",a,f)}})},drag:function(a,b){var c=d(this).data("draggable"),f=this;d.each(c.sortables,function(){this.instance.positionAbs=c.positionAbs;this.instance.helperProportions=c.helperProportions;this.instance.offset.click=c.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=
1;this.instance.currentItem=d(f).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return b.helper[0]};a.target=this.instance.currentItem[0];this.instance._mouseCapture(a,true);this.instance._mouseStart(a,true,true);this.instance.offset.click.top=c.offset.click.top;this.instance.offset.click.left=c.offset.click.left;this.instance.offset.parent.left-=c.offset.parent.left-this.instance.offset.parent.left;
this.instance.offset.parent.top-=c.offset.parent.top-this.instance.offset.parent.top;c._trigger("toSortable",a);c.dropped=this.instance.element;c.currentItem=c.element;this.instance.fromOutside=c}this.instance.currentItem&&this.instance._mouseDrag(a)}else if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",a,this.instance._uiHash(this.instance));this.instance._mouseStop(a,true);this.instance.options.helper=
this.instance.options._helper;this.instance.currentItem.remove();this.instance.placeholder&&this.instance.placeholder.remove();c._trigger("fromSortable",a);c.dropped=false}})}});d.ui.plugin.add("draggable","cursor",{start:function(){var a=d("body"),b=d(this).data("draggable").options;if(a.css("cursor"))b._cursor=a.css("cursor");a.css("cursor",b.cursor)},stop:function(){var a=d(this).data("draggable").options;a._cursor&&d("body").css("cursor",a._cursor)}});d.ui.plugin.add("draggable","iframeFix",{start:function(){var a=
d(this).data("draggable").options;d(a.iframeFix===true?"iframe":a.iframeFix).each(function(){d('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")})},stop:function(){d("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});d.ui.plugin.add("draggable","opacity",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;
if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","scroll",{start:function(){var a=d(this).data("draggable");if(a.scrollParent[0]!=document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!=
"HTML"){if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY<c.scrollSensitivity)b.scrollParent[0].scrollTop=f=b.scrollParent[0].scrollTop+c.scrollSpeed;else if(a.pageY-b.overflowOffset.top<c.scrollSensitivity)b.scrollParent[0].scrollTop=f=b.scrollParent[0].scrollTop-c.scrollSpeed;if(!c.axis||c.axis!="y")if(b.overflowOffset.left+b.scrollParent[0].offsetWidth-a.pageX<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft+c.scrollSpeed;else if(a.pageX-
b.overflowOffset.left<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft-c.scrollSpeed}else{if(!c.axis||c.axis!="x")if(a.pageY-d(document).scrollTop()<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()-c.scrollSpeed);else if(d(window).height()-(a.pageY-d(document).scrollTop())<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()+c.scrollSpeed);if(!c.axis||c.axis!="y")if(a.pageX-d(document).scrollLeft()<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()-
c.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()+c.scrollSpeed)}f!==false&&d.ui.ddmanager&&!c.dropBehaviour&&d.ui.ddmanager.prepareOffsets(b,a)}});d.ui.plugin.add("draggable","snap",{start:function(){var a=d(this).data("draggable"),b=a.options;a.snapElements=[];d(b.snap.constructor!=String?b.snap.items||":data(draggable)":b.snap).each(function(){var c=d(this),f=c.offset();this!=a.element[0]&&a.snapElements.push({item:this,
width:c.outerWidth(),height:c.outerHeight(),top:f.top,left:f.left})})},drag:function(a,b){for(var c=d(this).data("draggable"),f=c.options,e=f.snapTolerance,g=b.offset.left,n=g+c.helperProportions.width,m=b.offset.top,o=m+c.helperProportions.height,h=c.snapElements.length-1;h>=0;h--){var i=c.snapElements[h].left,k=i+c.snapElements[h].width,j=c.snapElements[h].top,l=j+c.snapElements[h].height;if(i-e<g&&g<k+e&&j-e<m&&m<l+e||i-e<g&&g<k+e&&j-e<o&&o<l+e||i-e<n&&n<k+e&&j-e<m&&m<l+e||i-e<n&&n<k+e&&j-e<o&&
o<l+e){if(f.snapMode!="inner"){var p=Math.abs(j-o)<=e,q=Math.abs(l-m)<=e,r=Math.abs(i-n)<=e,s=Math.abs(k-g)<=e;if(p)b.position.top=c._convertPositionTo("relative",{top:j-c.helperProportions.height,left:0}).top-c.margins.top;if(q)b.position.top=c._convertPositionTo("relative",{top:l,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{top:0,left:i-c.helperProportions.width}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{top:0,left:k}).left-c.margins.left}var t=
p||q||r||s;if(f.snapMode!="outer"){p=Math.abs(j-m)<=e;q=Math.abs(l-o)<=e;r=Math.abs(i-g)<=e;s=Math.abs(k-n)<=e;if(p)b.position.top=c._convertPositionTo("relative",{top:j,left:0}).top-c.margins.top;if(q)b.position.top=c._convertPositionTo("relative",{top:l-c.helperProportions.height,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{top:0,left:i}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{top:0,left:k-c.helperProportions.width}).left-c.margins.left}if(!c.snapElements[h].snapping&&
(p||q||r||s||t))c.options.snap.snap&&c.options.snap.snap.call(c.element,a,d.extend(c._uiHash(),{snapItem:c.snapElements[h].item}));c.snapElements[h].snapping=p||q||r||s||t}else{c.snapElements[h].snapping&&c.options.snap.release&&c.options.snap.release.call(c.element,a,d.extend(c._uiHash(),{snapItem:c.snapElements[h].item}));c.snapElements[h].snapping=false}}}});d.ui.plugin.add("draggable","stack",{start:function(){var a=d(this).data("draggable").options;a=d.makeArray(d(a.stack)).sort(function(c,f){return(parseInt(d(c).css("zIndex"),
10)||0)-(parseInt(d(f).css("zIndex"),10)||0)});if(a.length){var b=parseInt(a[0].style.zIndex)||0;d(a).each(function(c){this.style.zIndex=b+c});this[0].style.zIndex=b+a.length}}});d.ui.plugin.add("draggable","zIndex",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("zIndex"))b._zIndex=a.css("zIndex");a.css("zIndex",b.zIndex)},stop:function(a,b){a=d(this).data("draggable").options;a._zIndex&&d(b.helper).css("zIndex",a._zIndex)}})})(jQuery);
(function(d){d.widget("ui.droppable",{widgetEventPrefix:"drop",options:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"},_create:function(){var a=this.options,b=a.accept;this.isover=0;this.isout=1;this.accept=d.isFunction(b)?b:function(c){return c.is(b)};this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};d.ui.ddmanager.droppables[a.scope]=d.ui.ddmanager.droppables[a.scope]||[];d.ui.ddmanager.droppables[a.scope].push(this);
a.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){for(var a=d.ui.ddmanager.droppables[this.options.scope],b=0;b<a.length;b++)a[b]==this&&a.splice(b,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");return this},_setOption:function(a,b){if(a=="accept")this.accept=d.isFunction(b)?b:function(c){return c.is(b)};d.Widget.prototype._setOption.apply(this,arguments)},_activate:function(a){var b=d.ui.ddmanager.current;this.options.activeClass&&
this.element.addClass(this.options.activeClass);b&&this._trigger("activate",a,this.ui(b))},_deactivate:function(a){var b=d.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass);b&&this._trigger("deactivate",a,this.ui(b))},_over:function(a){var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){this.options.hoverClass&&this.element.addClass(this.options.hoverClass);
this._trigger("over",a,this.ui(b))}},_out:function(a){var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("out",a,this.ui(b))}},_drop:function(a,b){var c=b||d.ui.ddmanager.current;if(!c||(c.currentItem||c.element)[0]==this.element[0])return false;var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var g=
d.data(this,"droppable");if(g.options.greedy&&!g.options.disabled&&g.options.scope==c.options.scope&&g.accept.call(g.element[0],c.currentItem||c.element)&&d.ui.intersect(c,d.extend(g,{offset:g.element.offset()}),g.options.tolerance)){e=true;return false}});if(e)return false;if(this.accept.call(this.element[0],c.currentItem||c.element)){this.options.activeClass&&this.element.removeClass(this.options.activeClass);this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("drop",
a,this.ui(c));return this.element}return false},ui:function(a){return{draggable:a.currentItem||a.element,helper:a.helper,position:a.position,offset:a.positionAbs}}});d.extend(d.ui.droppable,{version:"1.8.5"});d.ui.intersect=function(a,b,c){if(!b.offset)return false;var e=(a.positionAbs||a.position.absolute).left,g=e+a.helperProportions.width,f=(a.positionAbs||a.position.absolute).top,h=f+a.helperProportions.height,i=b.offset.left,k=i+b.proportions.width,j=b.offset.top,l=j+b.proportions.height;
switch(c){case "fit":return i<=e&&g<=k&&j<=f&&h<=l;case "intersect":return i<e+a.helperProportions.width/2&&g-a.helperProportions.width/2<k&&j<f+a.helperProportions.height/2&&h-a.helperProportions.height/2<l;case "pointer":return d.ui.isOver((a.positionAbs||a.position.absolute).top+(a.clickOffset||a.offset.click).top,(a.positionAbs||a.position.absolute).left+(a.clickOffset||a.offset.click).left,j,i,b.proportions.height,b.proportions.width);case "touch":return(f>=j&&f<=l||h>=j&&h<=l||f<j&&h>l)&&(e>=
i&&e<=k||g>=i&&g<=k||e<i&&g>k);default:return false}};d.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(a,b){var c=d.ui.ddmanager.droppables[a.options.scope]||[],e=b?b.type:null,g=(a.currentItem||a.element).find(":data(droppable)").andSelf(),f=0;a:for(;f<c.length;f++)if(!(c[f].options.disabled||a&&!c[f].accept.call(c[f].element[0],a.currentItem||a.element))){for(var h=0;h<g.length;h++)if(g[h]==c[f].element[0]){c[f].proportions.height=0;continue a}c[f].visible=c[f].element.css("display")!=
"none";if(c[f].visible){c[f].offset=c[f].element.offset();c[f].proportions={width:c[f].element[0].offsetWidth,height:c[f].element[0].offsetHeight};e=="mousedown"&&c[f]._activate.call(c[f],b)}}},drop:function(a,b){var c=false;d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){if(this.options){if(!this.options.disabled&&this.visible&&d.ui.intersect(a,this,this.options.tolerance))c=c||this._drop.call(this,b);if(!this.options.disabled&&this.visible&&this.accept.call(this.element[0],a.currentItem||
a.element)){this.isout=1;this.isover=0;this._deactivate.call(this,b)}}});return c},drag:function(a,b){a.options.refreshPositions&&d.ui.ddmanager.prepareOffsets(a,b);d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var c=d.ui.intersect(a,this,this.options.tolerance);if(c=!c&&this.isover==1?"isout":c&&this.isover==0?"isover":null){var e;if(this.options.greedy){var g=this.element.parents(":data(droppable):eq(0)");if(g.length){e=
d.data(g[0],"droppable");e.greedyChild=c=="isover"?1:0}}if(e&&c=="isover"){e.isover=0;e.isout=1;e._out.call(e,b)}this[c]=1;this[c=="isout"?"isover":"isout"]=0;this[c=="isover"?"_over":"_out"].call(this,b);if(e&&c=="isout"){e.isout=0;e.isover=1;e._over.call(e,b)}}}})}}})(jQuery);
(function(e){e.widget("ui.resizable",e.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){var b=this,a=this.options;this.element.addClass("ui-resizable");e.extend(this,{_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElement:this.element,
_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){/relative/.test(this.element.css("position"))&&e.browser.opera&&this.element.css({position:"relative",top:"auto",left:"auto"});this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),
top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=
this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",
nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var d=0;d<c.length;d++){var f=e.trim(c[d]),g=e('<div class="ui-resizable-handle '+("ui-resizable-"+f)+'"></div>');/sw|se|ne|nw/.test(f)&&g.css({zIndex:++a.zIndex});"se"==f&&g.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[f]=".ui-resizable-"+f;this.element.append(g)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor==
String)this.handles[i]=e(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=e(this.handles[i],this.element),k=0;k=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.element);this._handles=e(".ui-resizable-handle",this.element).disableSelection();
this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();e(this.element).addClass("ui-resizable-autohide").hover(function(){e(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){e(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){e(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};
if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(e(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(),
d=this.element;this.resizing=true;this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||/absolute/.test(d.css("position")))d.css({position:"absolute",top:c.top,left:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var f=m(this.helper.css("top"));if(a.containment){c+=e(a.containment).scrollLeft()||0;f+=e(a.containment).scrollTop()||0}this.offset=
this.helper.offset();this.position={left:c,top:f};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:c,top:f};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio:
this.originalSize.width/this.originalSize.height||1;a=e(".ui-resizable-"+this.axis).css("cursor");e("body").css("cursor",a=="auto"?this.axis+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,d=this._change[this.axis];if(!d)return false;c=d.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize",
b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var d=this._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName);d=f&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height;
f={width:c.size.width-(f?0:c.sizeDiff.width),height:c.size.height-d};d=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var g=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(e.extend(f,{top:g,left:d}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}e("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",
b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(l(b.left))this.position.left=b.left;if(l(b.top))this.position.top=b.top;if(l(b.height))this.size.height=b.height;if(l(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,d=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(d=="sw"){b.left=a.left+(c.width-b.width);b.top=null}if(d=="nw"){b.top=
a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,d=l(b.width)&&a.maxWidth&&a.maxWidth<b.width,f=l(b.height)&&a.maxHeight&&a.maxHeight<b.height,g=l(b.width)&&a.minWidth&&a.minWidth>b.width,h=l(b.height)&&a.minHeight&&a.minHeight>b.height;if(g)b.width=a.minWidth;if(h)b.height=a.minHeight;if(d)b.width=a.maxWidth;if(f)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+this.size.height,
k=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(g&&k)b.left=i-a.minWidth;if(d&&k)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(f&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a<this._proportionallyResizeElements.length;a++){var c=this._proportionallyResizeElements[a];if(!this.borderDif){var d=[c.css("borderTopWidth"),
c.css("borderRightWidth"),c.css("borderBottomWidth"),c.css("borderLeftWidth")],f=[c.css("paddingTop"),c.css("paddingRight"),c.css("paddingBottom"),c.css("paddingLeft")];this.borderDif=e.map(d,function(g,h){g=parseInt(g,10)||0;h=parseInt(f[h],10)||0;return g+h})}e.browser.msie&&(e(b).is(":hidden")||e(b).parents(":hidden").length)||c.css({height:b.height()-this.borderDif[0]-this.borderDif[2]||0,width:b.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){var b=this.options;this.elementOffset=
this.element.offset();if(this._helper){this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var a=e.browser.msie&&e.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b,a){return{width:this.originalSize.width+
a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,c]))},ne:function(b,a,c){return e.extend(this._change.n.apply(this,
arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){e.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,
{version:"1.8.5"});e.ui.plugin.add("resizable","alsoResize",{start:function(){var b=e(this).data("resizable").options,a=function(c){e(c).each(function(){var d=e(this);d.data("resizable-alsoresize",{width:parseInt(d.width(),10),height:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseInt(d.css("top"),10),position:d.css("position")})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize=b.alsoResize[0];a(b.alsoResize)}else e.each(b.alsoResize,
function(c){a(c)});else a(b.alsoResize)},resize:function(b,a){var c=e(this).data("resizable");b=c.options;var d=c.originalSize,f=c.originalPosition,g={height:c.size.height-d.height||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.position.left-f.left||0},h=function(i,j){e(i).each(function(){var k=e(this),q=e(this).data("resizable-alsoresize"),p={},r=j&&j.length?j:k.parents(a.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(r,function(n,o){if((n=
(q[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(e.browser.opera&&/relative/.test(k.css("position"))){c._revertToRelativePosition=true;k.css({position:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof b.alsoResize=="object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,function(i,j){h(i,j)}):h(b.alsoResize)},stop:function(){var b=e(this).data("resizable"),a=b.options,c=function(d){e(d).each(function(){var f=e(this);f.css({position:f.data("resizable-alsoresize").position})})};if(b._revertToRelativePosition){b._revertToRelativePosition=
false;typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,function(d){c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize")}});e.ui.plugin.add("resizable","animate",{stop:function(b){var a=e(this).data("resizable"),c=a.options,d=a._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName),g=f&&e.ui.hasScroll(d[0],"left")?0:a.sizeDiff.height;f={width:a.size.width-(f?0:a.sizeDiff.width),height:a.size.height-g};g=parseInt(a.element.css("left"),10)+(a.position.left-
a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(e.extend(f,h&&g?{top:h,left:g}:{}),{duration:c.animateDuration,easing:c.animateEasing,step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};d&&d.length&&e(d[0]).css({width:i.width,height:i.height});a._updateCache(i);a._propagate("resize",
b)}})}});e.ui.plugin.add("resizable","containment",{start:function(){var b=e(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof e?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement=e(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}}else{var d=e(a),f=[];e(["Top",
"Right","Left","Bottom"]).each(function(i,j){f[i]=m(d.css("padding"+j))});b.containerOffset=d.offset();b.containerPosition=d.position();b.containerSize={height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=b.containerOffset;var g=b.containerSize.height,h=b.containerSize.width;h=e.ui.hasScroll(a,"left")?a.scrollWidth:h;g=e.ui.hasScroll(a)?a.scrollHeight:g;b.parentData={element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:function(b){var a=e(this).data("resizable"),c=a.options,d=a.containerOffset,
f=a.position;b=a._aspectRatio||b.shiftKey;var g={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))g=d;if(f.left<(a._helper?d.left:0)){a.size.width+=a._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?d.left:0}if(f.top<(a._helper?d.top:0)){a.size.height+=a._helper?a.position.top-d.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?d.top:0}a.offset.left=
a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left)+a.sizeDiff.width);d=Math.abs((a._helper?a.offset.top-g.top:a.offset.top-d.top)+a.sizeDiff.height);f=a.containerElement.get(0)==a.element.parent().get(0);g=/relative|absolute/.test(a.containerElement.css("position"));if(f&&g)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height=a.size.width/a.aspectRatio}if(d+
a.size.height>=a.parentData.height){a.size.height=a.parentData.height-d;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=e(this).data("resizable"),a=b.options,c=b.containerOffset,d=b.containerPosition,f=b.containerElement,g=e(b.helper),h=g.offset(),i=g.outerWidth()-b.sizeDiff.width;g=g.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&&/static/.test(f.css("position"))&&
e(this).css({left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.add("resizable","ghost",{start:function(){var b=e(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25,display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=e(this).data("resizable");b.ghost&&b.ghost.css({position:"relative",
height:b.size.height,width:b.size.width})},stop:function(){var b=e(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{resize:function(){var b=e(this).data("resizable"),a=b.options,c=b.size,d=b.originalSize,f=b.originalPosition,g=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-d.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(g)){b.size.width=
d.width+h;b.size.height=d.height+a}else if(/^(ne)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}else{if(/^(sw)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else{b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}b.position.left=f.left-h}}});var m=function(b){return parseInt(b,10)||0},l=function(b){return!isNaN(parseInt(b,10))}})(jQuery);
(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){f=e(c.options.filter,c.element[0]);f.each(function(){var d=e(this),b=d.offset();e.data(this,"selectable-item",{element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),
selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("<div class='ui-selectable-helper'></div>")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX,
c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting");b.unselecting=true;f._trigger("unselecting",
c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f=this;this.dragged=true;if(!this.options.disabled){var d=
this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.right<b||a.top>i||a.bottom<g);else if(d.tolerance=="fit")k=a.left>b&&a.right<h&&a.top>g&&a.bottom<i;if(k){if(a.selected){a.$element.removeClass("ui-selected");a.selected=false}if(a.unselecting){a.$element.removeClass("ui-unselecting");
a.unselecting=false}if(!a.selecting){a.$element.addClass("ui-selecting");a.selecting=true;f._trigger("selecting",c,{selecting:a.element})}}else{if(a.selecting)if(c.metaKey&&a.startselected){a.$element.removeClass("ui-selecting");a.selecting=false;a.$element.addClass("ui-selected");a.selected=true}else{a.$element.removeClass("ui-selecting");a.selecting=false;if(a.startselected){a.$element.addClass("ui-unselecting");a.unselecting=true}f._trigger("unselecting",c,{unselecting:a.element})}if(a.selected)if(!c.metaKey&&
!a.startselected){a.$element.removeClass("ui-selected");a.selected=false;a.$element.addClass("ui-unselecting");a.unselecting=true;f._trigger("unselecting",c,{unselecting:a.element})}}}});return false}},_mouseStop:function(c){var f=this;this.dragged=false;e(".ui-unselecting",this.element[0]).each(function(){var d=e.data(this,"selectable-item");d.$element.removeClass("ui-unselecting");d.unselecting=false;d.startselected=false;f._trigger("unselected",c,{unselected:d.element})});e(".ui-selecting",this.element[0]).each(function(){var d=
e.data(this,"selectable-item");d.$element.removeClass("ui-selecting").addClass("ui-selected");d.selecting=false;d.selected=true;d.startselected=true;f._trigger("selected",c,{selected:d.element})});this._trigger("stop",c);this.helper.remove();return false}});e.extend(e.ui.selectable,{version:"1.8.5"})})(jQuery);
(function(d){d.widget("ui.sortable",d.ui.mouse,{widgetEventPrefix:"sort",options:{appendTo:"parent",axis:false,connectWith:false,containment:false,cursor:"auto",cursorAt:false,dropOnEmpty:true,forcePlaceholderSize:false,forceHelperSize:false,grid:false,handle:false,helper:"original",items:"> *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1E3},_create:function(){this.containerCache={};this.element.addClass("ui-sortable");
this.refresh();this.floating=this.items.length?/left|right/.test(this.items[0].item.css("float")):false;this.offset=this.element.offset();this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var a=this.items.length-1;a>=0;a--)this.items[a].item.removeData("sortable-item");return this},_setOption:function(a,b){if(a==="disabled"){this.options[a]=b;this.widget()[b?"addClass":"removeClass"]("ui-sortable-disabled")}else d.Widget.prototype._setOption.apply(this,
arguments)},_mouseCapture:function(a,b){if(this.reverting)return false;if(this.options.disabled||this.options.type=="static")return false;this._refreshItems(a);var c=null,e=this;d(a.target).parents().each(function(){if(d.data(this,"sortable-item")==e){c=d(this);return false}});if(d.data(a.target,"sortable-item")==e)c=d(a.target);if(!c)return false;if(this.options.handle&&!b){var f=false;d(this.options.handle,c).find("*").andSelf().each(function(){if(this==a.target)f=true});if(!f)return false}this.currentItem=
c;this._removeCurrentsFromItems();return true},_mouseStart:function(a,b,c){b=this.options;var e=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(a);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");d.extend(this.offset,
{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};this.helper[0]!=this.currentItem[0]&&this.currentItem.hide();this._createPlaceholder();b.containment&&this._setContainment();
if(b.cursor){if(d("body").css("cursor"))this._storedCursor=d("body").css("cursor");d("body").css("cursor",b.cursor)}if(b.opacity){if(this.helper.css("opacity"))this._storedOpacity=this.helper.css("opacity");this.helper.css("opacity",b.opacity)}if(b.zIndex){if(this.helper.css("zIndex"))this._storedZIndex=this.helper.css("zIndex");this.helper.css("zIndex",b.zIndex)}if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML")this.overflowOffset=this.scrollParent.offset();this._trigger("start",
a,this._uiHash());this._preserveHelperProportions||this._cacheHelperProportions();if(!c)for(c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("activate",a,e._uiHash(this));if(d.ui.ddmanager)d.ui.ddmanager.current=this;d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(a);return true},_mouseDrag:function(a){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");
if(!this.lastPositionAbs)this.lastPositionAbs=this.positionAbs;if(this.options.scroll){var b=this.options,c=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if(this.overflowOffset.top+this.scrollParent[0].offsetHeight-a.pageY<b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop+b.scrollSpeed;else if(a.pageY-this.overflowOffset.top<b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop-b.scrollSpeed;if(this.overflowOffset.left+
this.scrollParent[0].offsetWidth-a.pageX<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft+b.scrollSpeed;else if(a.pageX-this.overflowOffset.left<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft-b.scrollSpeed}else{if(a.pageY-d(document).scrollTop()<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()-b.scrollSpeed);else if(d(window).height()-(a.pageY-d(document).scrollTop())<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()+
b.scrollSpeed);if(a.pageX-d(document).scrollLeft()<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()-b.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()+b.scrollSpeed)}c!==false&&d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+
"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(b=this.items.length-1;b>=0;b--){c=this.items[b];var e=c.item[0],f=this._intersectsWithPointer(c);if(f)if(e!=this.currentItem[0]&&this.placeholder[f==1?"next":"prev"]()[0]!=e&&!d.ui.contains(this.placeholder[0],e)&&(this.options.type=="semi-dynamic"?!d.ui.contains(this.element[0],e):true)){this.direction=f==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(c))this._rearrange(a,
c);else break;this._trigger("change",a,this._uiHash());break}}this._contactContainers(a);d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);this._trigger("sort",a,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(a,b){if(a){d.ui.ddmanager&&!this.options.dropBehaviour&&d.ui.ddmanager.drop(this,a);if(this.options.revert){var c=this;b=c.placeholder.offset();c.reverting=true;d(this.helper).animate({left:b.left-this.offset.parent.left-c.margins.left+(this.offsetParent[0]==
document.body?0:this.offsetParent[0].scrollLeft),top:b.top-this.offset.parent.top-c.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){c._clear(a)})}else this._clear(a,b);return false}},cancel:function(){var a=this;if(this.dragging){this._mouseUp();this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var b=this.containers.length-1;b>=0;b--){this.containers[b]._trigger("deactivate",
null,a._uiHash(this));if(this.containers[b].containerCache.over){this.containers[b]._trigger("out",null,a._uiHash(this));this.containers[b].containerCache.over=0}}}this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove();d.extend(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});this.domPosition.prev?d(this.domPosition.prev).after(this.currentItem):
d(this.domPosition.parent).prepend(this.currentItem);return this},serialize:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};d(b).each(function(){var e=(d(a.item||this).attr(a.attribute||"id")||"").match(a.expression||/(.+)[-=_](.+)/);if(e)c.push((a.key||e[1]+"[]")+"="+(a.key&&a.expression?e[1]:e[2]))});!c.length&&a.key&&c.push(a.key+"=");return c.join("&")},toArray:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};b.each(function(){c.push(d(a.item||this).attr(a.attribute||
"id")||"")});return c},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,e=this.positionAbs.top,f=e+this.helperProportions.height,g=a.left,h=g+a.width,i=a.top,k=i+a.height,j=this.offset.click.top,l=this.offset.click.left;j=e+j>i&&e+j<k&&b+l>g&&b+l<h;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>a[this.floating?"width":"height"]?j:g<b+
this.helperProportions.width/2&&c-this.helperProportions.width/2<h&&i<e+this.helperProportions.height/2&&f-this.helperProportions.height/2<k},_intersectsWithPointer:function(a){var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left,a.width);b=b&&a;a=this._getDragVerticalDirection();var c=this._getDragHorizontalDirection();if(!b)return false;return this.floating?c&&c=="right"||a=="down"?2:1:a&&(a=="down"?
2:1)},_intersectsWithSides:function(a){var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top+a.height/2,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left+a.width/2,a.width);var c=this._getDragVerticalDirection(),e=this._getDragHorizontalDirection();return this.floating&&e?e=="right"&&a||e=="left"&&!a:c&&(c=="down"&&b||c=="up"&&!b)},_getDragVerticalDirection:function(){var a=this.positionAbs.top-this.lastPositionAbs.top;return a!=0&&(a>0?"down":"up")},
_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a);this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(a){var b=[],c=[],e=this._connectWith();if(e&&a)for(a=e.length-1;a>=0;a--)for(var f=d(e[a]),g=f.length-1;g>=0;g--){var h=d.data(f[g],"sortable");if(h&&h!=
this&&!h.options.disabled)c.push([d.isFunction(h.options.items)?h.options.items.call(h.element):d(h.options.items,h.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),h])}c.push([d.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):d(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(a=c.length-1;a>=0;a--)c[a][0].each(function(){b.push(this)});return d(b)},_removeCurrentsFromItems:function(){for(var a=
this.currentItem.find(":data(sortable-item)"),b=0;b<this.items.length;b++)for(var c=0;c<a.length;c++)a[c]==this.items[b].item[0]&&this.items.splice(b,1)},_refreshItems:function(a){this.items=[];this.containers=[this];var b=this.items,c=[[d.isFunction(this.options.items)?this.options.items.call(this.element[0],a,{item:this.currentItem}):d(this.options.items,this.element),this]],e=this._connectWith();if(e)for(var f=e.length-1;f>=0;f--)for(var g=d(e[f]),h=g.length-1;h>=0;h--){var i=d.data(g[h],"sortable");
if(i&&i!=this&&!i.options.disabled){c.push([d.isFunction(i.options.items)?i.options.items.call(i.element[0],a,{item:this.currentItem}):d(i.options.items,i.element),i]);this.containers.push(i)}}for(f=c.length-1;f>=0;f--){a=c[f][1];e=c[f][0];h=0;for(g=e.length;h<g;h++){i=d(e[h]);i.data("sortable-item",a);b.push({item:i,instance:a,width:0,height:0,left:0,top:0})}}},refreshPositions:function(a){if(this.offsetParent&&this.helper)this.offset.parent=this._getParentOffset();for(var b=this.items.length-1;b>=
0;b--){var c=this.items[b],e=this.options.toleranceElement?d(this.options.toleranceElement,c.item):c.item;if(!a){c.width=e.outerWidth();c.height=e.outerHeight()}e=e.offset();c.left=e.left;c.top=e.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(b=this.containers.length-1;b>=0;b--){e=this.containers[b].element.offset();this.containers[b].containerCache.left=e.left;this.containers[b].containerCache.top=e.top;this.containers[b].containerCache.width=
this.containers[b].element.outerWidth();this.containers[b].containerCache.height=this.containers[b].element.outerHeight()}return this},_createPlaceholder:function(a){var b=a||this,c=b.options;if(!c.placeholder||c.placeholder.constructor==String){var e=c.placeholder;c.placeholder={element:function(){var f=d(document.createElement(b.currentItem[0].nodeName)).addClass(e||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!e)f.style.visibility="hidden";return f},
update:function(f,g){if(!(e&&!c.forcePlaceholderSize)){g.height()||g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10));g.width()||g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholder=d(c.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);c.placeholder.update(b,b.placeholder)},_contactContainers:function(a){for(var b=
null,c=null,e=this.containers.length-1;e>=0;e--)if(!d.ui.contains(this.currentItem[0],this.containers[e].element[0]))if(this._intersectsWith(this.containers[e].containerCache)){if(!(b&&d.ui.contains(this.containers[e].element[0],b.element[0]))){b=this.containers[e];c=e}}else if(this.containers[e].containerCache.over){this.containers[e]._trigger("out",a,this._uiHash(this));this.containers[e].containerCache.over=0}if(b)if(this.containers.length===1){this.containers[c]._trigger("over",a,this._uiHash(this));
this.containers[c].containerCache.over=1}else if(this.currentContainer!=this.containers[c]){b=1E4;e=null;for(var f=this.positionAbs[this.containers[c].floating?"left":"top"],g=this.items.length-1;g>=0;g--)if(d.ui.contains(this.containers[c].element[0],this.items[g].item[0])){var h=this.items[g][this.containers[c].floating?"left":"top"];if(Math.abs(h-f)<b){b=Math.abs(h-f);e=this.items[g]}}if(e||this.options.dropOnEmpty){this.currentContainer=this.containers[c];e?this._rearrange(a,e,null,true):this._rearrange(a,
null,this.containers[c].element,true);this._trigger("change",a,this._uiHash());this.containers[c]._trigger("change",a,this._uiHash(this));this.options.placeholder.update(this.currentContainer,this.placeholder);this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}}},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a,this.currentItem])):b.helper=="clone"?this.currentItem.clone():this.currentItem;a.parents("body").length||
d(b.appendTo!="parent"?b.appendTo:this.currentItem[0].parentNode)[0].appendChild(a[0]);if(a[0]==this.currentItem[0])this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")};if(a[0].style.width==""||b.forceHelperSize)a.width(this.currentItem.width());if(a[0].style.height==""||b.forceHelperSize)a.height(this.currentItem.height());return a},_adjustOffsetFromHelper:function(a){if(typeof a==
"string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]||0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition==
"absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition==
"relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},
_setContainment:function(){var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-
this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)){var b=d(a.containment)[0];a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),
10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?
this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=
this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0]))this.offset.relative=this._getRelativeOffset();var f=a.pageX,g=a.pageY;if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.left<this.containment[0])f=this.containment[0]+
this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[1])g=this.containment[1]+this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[2])f=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?
g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;f=this.originalPageX+Math.round((f-this.originalPageX)/b.grid[0])*b.grid[0];f=this.containment?!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:!(f-this.offset.click.left<this.containment[0])?f-b.grid[0]:f+b.grid[0]:f}}return{top:g-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():
e?0:c.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())}},_rearrange:function(a,b,c,e){c?c[0].appendChild(this.placeholder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],this.direction=="down"?b.item[0]:b.item[0].nextSibling);this.counter=this.counter?++this.counter:1;var f=this,g=this.counter;window.setTimeout(function(){g==
f.counter&&f.refreshPositions(!e)},0)},_clear:function(a,b){this.reverting=false;var c=[];!this._noFinalSort&&this.currentItem[0].parentNode&&this.placeholder.before(this.currentItem);this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var e in this._storedCSS)if(this._storedCSS[e]=="auto"||this._storedCSS[e]=="static")this._storedCSS[e]="";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!b&&c.push(function(f){this._trigger("receive",
f,this._uiHash(this.fromOutside))});if((this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!b)c.push(function(f){this._trigger("update",f,this._uiHash())});if(!d.ui.contains(this.element[0],this.currentItem[0])){b||c.push(function(f){this._trigger("remove",f,this._uiHash())});for(e=this.containers.length-1;e>=0;e--)if(d.ui.contains(this.containers[e].element[0],this.currentItem[0])&&!b){c.push(function(f){return function(g){f._trigger("receive",
g,this._uiHash(this))}}.call(this,this.containers[e]));c.push(function(f){return function(g){f._trigger("update",g,this._uiHash(this))}}.call(this,this.containers[e]))}}for(e=this.containers.length-1;e>=0;e--){b||c.push(function(f){return function(g){f._trigger("deactivate",g,this._uiHash(this))}}.call(this,this.containers[e]));if(this.containers[e].containerCache.over){c.push(function(f){return function(g){f._trigger("out",g,this._uiHash(this))}}.call(this,this.containers[e]));this.containers[e].containerCache.over=
0}}this._storedCursor&&d("body").css("cursor",this._storedCursor);this._storedOpacity&&this.helper.css("opacity",this._storedOpacity);if(this._storedZIndex)this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex);this.dragging=false;if(this.cancelHelperRemoval){if(!b){this._trigger("beforeStop",a,this._uiHash());for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}return false}b||this._trigger("beforeStop",a,this._uiHash());this.placeholder[0].parentNode.removeChild(this.placeholder[0]);
this.helper[0]!=this.currentItem[0]&&this.helper.remove();this.helper=null;if(!b){for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}this.fromOutside=false;return true},_trigger:function(){d.Widget.prototype._trigger.apply(this,arguments)===false&&this.cancel()},_uiHash:function(a){var b=a||this;return{helper:b.helper,placeholder:b.placeholder||d([]),position:b.position,originalPosition:b.originalPosition,offset:b.positionAbs,item:b.currentItem,sender:a?a.element:null}}});
d.extend(d.ui.sortable,{version:"1.8.5"})})(jQuery);
jQuery.effects||function(f,j){function l(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],
16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return m.transparent;return m[f.trim(c).toLowerCase()]}function r(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return l(b)}function n(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,
a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function o(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in s||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function t(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){if(typeof c=="object"){d=
a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}if(f.isFunction(b)){d=b;b=null}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:f.fx.speeds[b]||f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=r(b.elem,a);b.end=l(b.end);b.colorInit=
true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var m={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,
183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,
165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},p=["add","remove","toggle"],s={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,d){if(f.isFunction(b)){d=b;b=null}return this.each(function(){var e=f(this),g=e.attr("style")||" ",h=o(n.call(this)),q,u=e.attr("className");f.each(p,function(v,
i){c[i]&&e[i+"Class"](c[i])});q=o(n.call(this));e.attr("className",u);e.animate(t(h,q),a,b,function(){f.each(p,function(v,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments)})})};f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?
f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this,[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.5",save:function(c,a){for(var b=0;b<a.length;b++)a[b]!==
null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,a){var b;switch(c[0]){case "top":b=0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{x:c,y:b}},createWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();
var a={width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});
c.css({position:"relative",top:0,left:0})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments);a={options:a[1],duration:a[2],callback:a[3]};var b=f.effects[c];return b&&!f.fx.off?b.call(this,a):this},_show:f.fn.show,show:function(c){if(!c||
typeof c=="number"||f.fx.speeds[c]||!f.effects[c])return this._show.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(!c||typeof c=="number"||f.fx.speeds[c]||!f.effects[c])return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(!c||typeof c=="number"||f.fx.speeds[c]||!f.effects[c]||typeof c==
"boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,
a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=
e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+
b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/
2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*
a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;
return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,d,e){return d-f.easing.easeOutBounce(c,e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,
a,b,d,e){if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c,a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);
(function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","left"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a,g);b.effects.removeWrapper(a);
c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);
(function(e){e.effects.bounce=function(b){return this.queue(function(){var a=e(this),l=["position","top","left"],h=e.effects.setMode(a,b.options.mode||"effect"),d=b.options.direction||"up",c=b.options.distance||20,m=b.options.times||5,i=b.duration||250;/show|hide/.test(h)&&l.push("opacity");e.effects.save(a,l);a.show();e.effects.createWrapper(a);var f=d=="up"||d=="down"?"top":"left";d=d=="up"||d=="left"?"pos":"neg";c=b.options.distance||(f=="top"?a.outerHeight({margin:true})/3:a.outerWidth({margin:true})/
3);if(h=="show")a.css("opacity",0).css(f,d=="pos"?-c:c);if(h=="hide")c/=m*2;h!="hide"&&m--;if(h=="show"){var g={opacity:1};g[f]=(d=="pos"?"+=":"-=")+c;a.animate(g,i/2,b.options.easing);c/=2;m--}for(g=0;g<m;g++){var j={},k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing);c=h=="hide"?c*2:c/2}if(h=="hide"){g={opacity:0};g[f]=(d=="pos"?"-=":"+=")+c;a.animate(g,i/2,b.options.easing,function(){a.hide();e.effects.restore(a,l);e.effects.removeWrapper(a);
b.callback&&b.callback.apply(this,arguments)})}else{j={};k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing,function(){e.effects.restore(a,l);e.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments)})}a.queue("fx",function(){a.dequeue()});a.dequeue()})}})(jQuery);
(function(b){b.effects.clip=function(e){return this.queue(function(){var a=b(this),i=["position","top","left","height","width"],f=b.effects.setMode(a,e.options.mode||"hide"),c=e.options.direction||"vertical";b.effects.save(a,i);a.show();var d=b.effects.createWrapper(a).css({overflow:"hidden"});d=a[0].tagName=="IMG"?d:a;var g={size:c=="vertical"?"height":"width",position:c=="vertical"?"top":"left"};c=c=="vertical"?d.height():d.width();if(f=="show"){d.css(g.size,0);d.css(g.position,c/2)}var h={};h[g.size]=
f=="show"?c:0;h[g.position]=f=="show"?0:c/2;d.animate(h,{queue:false,duration:e.duration,easing:e.options.easing,complete:function(){f=="hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.callback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery);
(function(c){c.effects.drop=function(d){return this.queue(function(){var a=c(this),h=["position","top","left","opacity"],e=c.effects.setMode(a,d.options.mode||"hide"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a);var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({margin:true})/2:a.outerWidth({margin:true})/2);if(e=="show")a.css("opacity",0).css(f,b=="pos"?-g:g);var i={opacity:e=="show"?1:
0};i[f]=(e=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
(function(j){j.effects.explode=function(a){return this.queue(function(){var c=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3,d=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3;a.options.mode=a.options.mode=="toggle"?j(this).is(":visible")?"hide":"show":a.options.mode;var b=j(this).show().css("visibility","hidden"),g=b.offset();g.top-=parseInt(b.css("marginTop"),10)||0;g.left-=parseInt(b.css("marginLeft"),10)||0;for(var h=b.outerWidth(true),i=b.outerHeight(true),e=0;e<c;e++)for(var f=
0;f<d;f++)b.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+
e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){a.options.mode=="show"?b.css({visibility:"visible"}):b.css({visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery);
(function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
(function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","left"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1],10)/100*
f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery);
(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
(function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c<times;c++){b.animate({opacity:animateTo},duration,a.options.easing);animateTo=(animateTo+1)%2}b.animate({opacity:animateTo},duration,
a.options.easing,function(){animateTo==0&&b.hide();a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()}).dequeue()})}})(jQuery);
(function(c){c.effects.puff=function(b){return this.queue(function(){var a=c(this),e=c.effects.setMode(a,b.options.mode||"hide"),g=parseInt(b.options.percent,10)||150,h=g/100,i={height:a.height(),width:a.width()};c.extend(b.options,{fade:true,mode:e,percent:e=="hide"?g:100,from:e=="hide"?i:{height:i.height*h,width:i.width*h}});a.effect("scale",b.options,b.duration,b.callback);a.dequeue()})};c.effects.scale=function(b){return this.queue(function(){var a=c(this),e=c.extend(true,{},b.options),g=c.effects.setMode(a,
b.options.mode||"effect"),h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:g=="hide"?0:100),i=b.options.direction||"both",f=b.options.origin;if(g!="effect"){e.origin=f||["middle","center"];e.restore=true}f={height:a.height(),width:a.width()};a.from=b.options.from||(g=="show"?{height:0,width:0}:f);h={y:i!="horizontal"?h/100:1,x:i!="vertical"?h/100:1};a.to={height:f.height*h.y,width:f.width*h.x};if(b.options.fade){if(g=="show"){a.from.opacity=0;a.to.opacity=1}if(g=="hide"){a.from.opacity=
1;a.to.opacity=0}}e.from=a.from;e.to=a.to;e.mode=g;a.effect("size",e,b.duration,b.callback);a.dequeue()})};c.effects.size=function(b){return this.queue(function(){var a=c(this),e=["position","top","left","width","height","overflow","opacity"],g=["position","top","left","overflow","opacity"],h=["width","height","overflow"],i=["fontSize"],f=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],k=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],p=c.effects.setMode(a,
b.options.mode||"effect"),n=b.options.restore||false,m=b.options.scale||"both",l=b.options.origin,j={height:a.height(),width:a.width()};a.from=b.options.from||j;a.to=b.options.to||j;if(l){l=c.effects.getBaseline(l,j);a.from.top=(j.height-a.from.height)*l.y;a.from.left=(j.width-a.from.width)*l.x;a.to.top=(j.height-a.to.height)*l.y;a.to.left=(j.width-a.to.width)*l.x}var d={from:{y:a.from.height/j.height,x:a.from.width/j.width},to:{y:a.to.height/j.height,x:a.to.width/j.width}};if(m=="box"||m=="both"){if(d.from.y!=
d.to.y){e=e.concat(f);a.from=c.effects.setTransition(a,f,d.from.y,a.from);a.to=c.effects.setTransition(a,f,d.to.y,a.to)}if(d.from.x!=d.to.x){e=e.concat(k);a.from=c.effects.setTransition(a,k,d.from.x,a.from);a.to=c.effects.setTransition(a,k,d.to.x,a.to)}}if(m=="content"||m=="both")if(d.from.y!=d.to.y){e=e.concat(i);a.from=c.effects.setTransition(a,i,d.from.y,a.from);a.to=c.effects.setTransition(a,i,d.to.y,a.to)}c.effects.save(a,n?e:g);a.show();c.effects.createWrapper(a);a.css("overflow","hidden").css(a.from);
if(m=="content"||m=="both"){f=f.concat(["marginTop","marginBottom"]).concat(i);k=k.concat(["marginLeft","marginRight"]);h=e.concat(f).concat(k);a.find("*[width]").each(function(){child=c(this);n&&c.effects.save(child,h);var o={height:child.height(),width:child.width()};child.from={height:o.height*d.from.y,width:o.width*d.from.x};child.to={height:o.height*d.to.y,width:o.width*d.to.x};if(d.from.y!=d.to.y){child.from=c.effects.setTransition(child,f,d.from.y,child.from);child.to=c.effects.setTransition(child,
f,d.to.y,child.to)}if(d.from.x!=d.to.x){child.from=c.effects.setTransition(child,k,d.from.x,child.from);child.to=c.effects.setTransition(child,k,d.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){n&&c.effects.restore(child,h)})})}a.animate(a.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){a.to.opacity===0&&a.css("opacity",a.from.opacity);p=="hide"&&a.hide();c.effects.restore(a,n?e:g);c.effects.removeWrapper(a);b.callback&&
b.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
(function(d){d.effects.shake=function(a){return this.queue(function(){var b=d(this),j=["position","top","left"];d.effects.setMode(b,a.options.mode||"effect");var c=a.options.direction||"left",e=a.options.distance||20,l=a.options.times||3,f=a.duration||a.options.duration||140;d.effects.save(b,j);b.show();d.effects.createWrapper(b);var g=c=="up"||c=="down"?"top":"left",h=c=="up"||c=="left"?"pos":"neg";c={};var i={},k={};c[g]=(h=="pos"?"-=":"+=")+e;i[g]=(h=="pos"?"+=":"-=")+e*2;k[g]=(h=="pos"?"-=":"+=")+
e*2;b.animate(c,f,a.options.easing);for(e=1;e<l;e++)b.animate(i,f,a.options.easing).animate(k,f,a.options.easing);b.animate(i,f,a.options.easing).animate(c,f/2,a.options.easing,function(){d.effects.restore(b,j);d.effects.removeWrapper(b);a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()});b.dequeue()})}})(jQuery);
(function(c){c.effects.slide=function(d){return this.queue(function(){var a=c(this),h=["position","top","left"],e=c.effects.setMode(a,d.options.mode||"show"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a).css({overflow:"hidden"});var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({margin:true}):a.outerWidth({margin:true}));if(e=="show")a.css(f,b=="pos"?-g:g);var i={};i[f]=(e=="show"?b=="pos"?
"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
(function(e){e.effects.transfer=function(a){return this.queue(function(){var b=e(this),c=e(a.options.to),d=c.offset();c={top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments);
b.dequeue()})})}})(jQuery);
(function(c){c.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var a=this,b=a.options;a.running=0;a.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix");
a.headers=a.element.find(b.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){b.disabled||c(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){b.disabled||c(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){b.disabled||c(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){b.disabled||c(this).removeClass("ui-state-focus")});a.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");
if(b.navigation){var d=a.element.find("a").filter(b.navigationFilter).eq(0);if(d.length){var f=d.closest(".ui-accordion-header");a.active=f.length?f:d.closest(".ui-accordion-content").prev()}}a.active=a._findActive(a.active||b.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all ui-corner-top");a.active.next().addClass("ui-accordion-content-active");a._createIcons();a.resize();a.element.attr("role","tablist");a.headers.attr("role","tab").bind("keydown.accordion",function(g){return a._keydown(g)}).next().attr("role",
"tabpanel");a.headers.not(a.active||"").attr({"aria-expanded":"false",tabIndex:-1}).next().hide();a.active.length?a.active.attr({"aria-expanded":"true",tabIndex:0}):a.headers.eq(0).attr("tabIndex",0);c.browser.safari||a.headers.find("a").attr("tabIndex",-1);b.event&&a.headers.bind(b.event.split(" ").join(".accordion ")+".accordion",function(g){a._clickHandler.call(a,g,this);g.preventDefault()})},_createIcons:function(){var a=this.options;if(a.icons){c("<span></span>").addClass("ui-icon "+a.icons.header).prependTo(this.headers);
this.active.children(".ui-icon").toggleClass(a.icons.header).toggleClass(a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){var a=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabIndex");
this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");if(a.autoHeight||a.fillHeight)b.css("height","");return c.Widget.prototype.destroy.call(this)},_setOption:function(a,b){c.Widget.prototype._setOption.apply(this,arguments);a=="active"&&this.activate(b);if(a=="icons"){this._destroyIcons();
b&&this._createIcons()}if(a=="disabled")this.headers.add(this.headers.next())[b?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(a){if(!(this.options.disabled||a.altKey||a.ctrlKey)){var b=c.ui.keyCode,d=this.headers.length,f=this.headers.index(a.target),g=false;switch(a.keyCode){case b.RIGHT:case b.DOWN:g=this.headers[(f+1)%d];break;case b.LEFT:case b.UP:g=this.headers[(f-1+d)%d];break;case b.SPACE:case b.ENTER:this._clickHandler({target:a.target},a.target);
a.preventDefault()}if(g){c(a.target).attr("tabIndex",-1);c(g).attr("tabIndex",0);g.focus();return false}return true}},resize:function(){var a=this.options,b;if(a.fillSpace){if(c.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}b=this.element.parent().height();c.browser.msie&&this.element.parent().css("overflow",d);this.headers.each(function(){b-=c(this).outerHeight(true)});this.headers.next().each(function(){c(this).height(Math.max(0,b-c(this).innerHeight()+
c(this).height()))}).css("overflow","auto")}else if(a.autoHeight){b=0;this.headers.next().each(function(){b=Math.max(b,c(this).height("").height())}).height(b)}return this},activate:function(a){this.options.active=a;a=this._findActive(a)[0];this._clickHandler({target:a},a);return this},_findActive:function(a){return a?typeof a==="number"?this.headers.filter(":eq("+a+")"):this.headers.not(this.headers.not(a)):a===false?c([]):this.headers.filter(":eq(0)")},_clickHandler:function(a,b){var d=this.options;
if(!d.disabled)if(a.target){a=c(a.currentTarget||b);b=a[0]===this.active[0];d.active=d.collapsible&&b?false:this.headers.index(a);if(!(this.running||!d.collapsible&&b)){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);if(!b){a.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);
a.next().addClass("ui-accordion-content-active")}h=a.next();f=this.active.next();g={options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:this.active,newContent:b&&d.collapsible?c([]):h,oldContent:f};d=this.headers.index(this.active[0])>this.headers.index(a[0]);this.active=b?c([]):a;this._toggle(h,f,g,b,d)}}else if(d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);
this.active.next().addClass("ui-accordion-content-active");var f=this.active.next(),g={options:d,newHeader:c([]),oldHeader:d.active,newContent:c([]),oldContent:f},h=this.active=c([]);this._toggle(h,f,g)}},_toggle:function(a,b,d,f,g){var h=this,e=h.options;h.toShow=a;h.toHide=b;h.data=d;var j=function(){if(h)return h._completed.apply(h,arguments)};h._trigger("changestart",null,h.data);h.running=b.size()===0?a.size():b.size();if(e.animated){d={};d=e.collapsible&&f?{toShow:c([]),toHide:b,complete:j,
down:g,autoHeight:e.autoHeight||e.fillSpace}:{toShow:a,toHide:b,complete:j,down:g,autoHeight:e.autoHeight||e.fillSpace};if(!e.proxied)e.proxied=e.animated;if(!e.proxiedDuration)e.proxiedDuration=e.duration;e.animated=c.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=c.isFunction(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;f=c.ui.accordion.animations;var i=e.duration,k=e.animated;if(k&&!f[k]&&!c.easing[k])k="slide";f[k]||(f[k]=function(l){this.slide(l,{easing:k,duration:i||700})});
f[k](d)}else{if(e.collapsible&&f)a.toggle();else{b.hide();a.show()}j(true)}b.prev().attr({"aria-expanded":"false",tabIndex:-1}).blur();a.prev().attr({"aria-expanded":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(!this.running){this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""});this.toHide.removeClass("ui-accordion-content-active");this._trigger("change",null,this.data)}}});c.extend(c.ui.accordion,{version:"1.8.5",animations:{slide:function(a,
b){a=c.extend({easing:"swing",duration:300},a,b);if(a.toHide.size())if(a.toShow.size()){var d=a.toShow.css("overflow"),f=0,g={},h={},e;b=a.toShow;e=b[0].style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddingLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLeftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["height","paddingTop","paddingBottom"],function(j,i){h[i]="hide";j=(""+c.css(a.toShow[0],i)).match(/^([\d+-.]+)(.*)$/);g[i]={value:j[1],
unit:j[2]||"px"}});a.toShow.css({height:0,overflow:"hidden"}).show();a.toHide.filter(":hidden").each(a.complete).end().filter(":visible").animate(h,{step:function(j,i){if(i.prop=="height")f=i.end-i.start===0?0:(i.now-i.start)/(i.end-i.start);a.toShow[0].style[i.prop]=f*g[i.prop].value+g[i.prop].unit},duration:a.duration,easing:a.easing,complete:function(){a.autoHeight||a.toShow.css("height","");a.toShow.css({width:e,overflow:d});a.complete()}})}else a.toHide.animate({height:"hide",paddingTop:"hide",
paddingBottom:"hide"},a);else a.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},a)},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1E3:200})}}})})(jQuery);
(function(e){e.widget("ui.autocomplete",{options:{appendTo:"body",delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},_create:function(){var a=this,b=this.element[0].ownerDocument;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(!a.options.disabled){var d=e.ui.keyCode;switch(c.keyCode){case d.PAGE_UP:a._move("previousPage",
c);break;case d.PAGE_DOWN:a._move("nextPage",c);break;case d.UP:a._move("previous",c);c.preventDefault();break;case d.DOWN:a._move("next",c);c.preventDefault();break;case d.ENTER:case d.NUMPAD_ENTER:a.menu.element.is(":visible")&&c.preventDefault();case d.TAB:if(!a.menu.active)return;a.menu.select(c);break;case d.ESCAPE:a.element.val(a.term);a.close(c);break;default:clearTimeout(a.searching);a.searching=setTimeout(function(){if(a.term!=a.element.val()){a.selectedItem=null;a.search(null,c)}},a.options.delay);
break}}}).bind("focus.autocomplete",function(){if(!a.options.disabled){a.selectedItem=null;a.previous=a.element.val()}}).bind("blur.autocomplete",function(c){if(!a.options.disabled){clearTimeout(a.searching);a.closing=setTimeout(function(){a.close(c);a._change(c)},150)}});this._initSource();this.response=function(){return a._response.apply(a,arguments)};this.menu=e("<ul></ul>").addClass("ui-autocomplete").appendTo(e(this.options.appendTo||"body",b)[0]).mousedown(function(c){var d=a.menu.element[0];
c.target===d&&setTimeout(function(){e(document).one("mousedown",function(f){f.target!==a.element[0]&&f.target!==d&&!e.ui.contains(d,f.target)&&a.close()})},1);setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(c,d){d=d.item.data("item.autocomplete");false!==a._trigger("focus",null,{item:d})&&/^key/.test(c.originalEvent.type)&&a.element.val(d.value)},selected:function(c,d){d=d.item.data("item.autocomplete");var f=a.previous;if(a.element[0]!==b.activeElement){a.element.focus();
a.previous=f}if(false!==a._trigger("select",c,{item:d})){a.term=d.value;a.element.val(d.value)}a.close(c);a.selectedItem=d},blur:function(){a.menu.element.is(":visible")&&a.element.val()!==a.term&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");e.fn.bgiframe&&this.menu.element.bgiframe()},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");
this.menu.element.remove();e.Widget.prototype.destroy.call(this)},_setOption:function(a,b){e.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource();if(a==="appendTo")this.menu.element.appendTo(e(b||"body",this.element[0].ownerDocument)[0])},_initSource:function(){var a=this,b,c;if(e.isArray(this.options.source)){b=this.options.source;this.source=function(d,f){f(e.ui.autocomplete.filter(b,d.term))}}else if(typeof this.options.source==="string"){c=this.options.source;this.source=
function(d,f){a.xhr&&a.xhr.abort();a.xhr=e.getJSON(c,d,function(g,i,h){h===a.xhr&&f(g);a.xhr=null})}}else this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val();this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search")!==false)return this._search(a)},_search:function(a){this.element.addClass("ui-autocomplete-loading");this.source({term:a},this.response)},_response:function(a){if(a.length){a=
this._normalize(a);this._suggest(a);this._trigger("open")}else this.close();this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing);if(this.menu.element.is(":visible")){this._trigger("close",a);this.menu.element.hide();this.menu.deactivate()}},_change:function(a){this.previous!==this.element.val()&&this._trigger("change",a,{item:this.selectedItem})},_normalize:function(a){if(a.length&&a[0].label&&a[0].value)return a;return e.map(a,function(b){if(typeof b===
"string")return{label:b,value:b};return e.extend({label:b.label||b.value,value:b.value||b.label},b)})},_suggest:function(a){var b=this.menu.element.empty().zIndex(this.element.zIndex()+1),c;this._renderMenu(b,a);this.menu.deactivate();this.menu.refresh();this.menu.element.show().position(e.extend({of:this.element},this.options.position));a=b.width("").outerWidth();c=this.element.outerWidth();b.outerWidth(Math.max(a,c))},_renderMenu:function(a,b){var c=this;e.each(b,function(d,f){c._renderItem(a,f)})},
_renderItem:function(a,b){return e("<li></li>").data("item.autocomplete",b).append(e("<a></a>").text(b.label)).appendTo(a)},_move:function(a,b){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](b);else this.search(null,b)},widget:function(){return this.menu.element}});e.extend(e.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},
filter:function(a,b){var c=new RegExp(e.ui.autocomplete.escapeRegex(b),"i");return e.grep(a,function(d){return c.test(d.label||d.value||d)})}})})(jQuery);
(function(e){e.widget("ui.menu",{_create:function(){var a=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(b){if(e(b.target).closest(".ui-menu-item a").length){b.preventDefault();a.select(b)}});this.refresh()},refresh:function(){var a=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex",
-1).mouseenter(function(b){a.activate(b,e(this).parent())}).mouseleave(function(){a.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var c=b.offset().top-this.element.offset().top,d=this.element.attr("scrollTop"),f=this.element.height();if(c<0)this.element.attr("scrollTop",d+c);else c>=f&&this.element.attr("scrollTop",d+c-f+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",a,{item:b})},
deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id");this._trigger("blur");this.active=null}},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,c){if(this.active){a=this.active[a+"All"](".ui-menu-item").eq(0);
a.length?this.activate(c,a):this.activate(c,this.element.children(b))}else this.activate(c,this.element.children(b))},nextPage:function(a){if(this.hasScroll())if(!this.active||this.last())this.activate(a,this.element.children(":first"));else{var b=this.active.offset().top,c=this.element.height(),d=this.element.children("li").filter(function(){var f=e(this).offset().top-b-c+e(this).height();return f<10&&f>-10});d.length||(d=this.element.children(":last"));this.activate(a,d)}else this.activate(a,this.element.children(!this.active||
this.last()?":first":":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(":last"));else{var b=this.active.offset().top,c=this.element.height();result=this.element.children("li").filter(function(){var d=e(this).offset().top-b+c-e(this).height();return d<10&&d>-10});result.length||(result=this.element.children(":first"));this.activate(a,result)}else this.activate(a,this.element.children(!this.active||this.first()?":last":":first"))},
hasScroll:function(){return this.element.height()<this.element.attr("scrollHeight")},select:function(a){this._trigger("selected",a,{item:this.active})}})})(jQuery);
(function(a){var g,i=function(b){a(":ui-button",b.target.form).each(function(){var c=a(this).data("button");setTimeout(function(){c.refresh()},1)})},h=function(b){var c=b.name,d=b.form,e=a([]);if(c)e=d?a(d).find("[name='"+c+"']"):a("[name='"+c+"']",b.ownerDocument).filter(function(){return!this.form});return e};a.widget("ui.button",{options:{disabled:null,text:true,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset.button").bind("reset.button",
i);if(typeof this.options.disabled!=="boolean")this.options.disabled=this.element.attr("disabled");this._determineButtonType();this.hasTitle=!!this.buttonElement.attr("title");var b=this,c=this.options,d=this.type==="checkbox"||this.type==="radio",e="ui-state-hover"+(!d?" ui-state-active":"");if(c.label===null)c.label=this.buttonElement.html();if(this.element.is(":disabled"))c.disabled=true;this.buttonElement.addClass("ui-button ui-widget ui-state-default ui-corner-all").attr("role","button").bind("mouseenter.button",
function(){if(!c.disabled){a(this).addClass("ui-state-hover");this===g&&a(this).addClass("ui-state-active")}}).bind("mouseleave.button",function(){c.disabled||a(this).removeClass(e)}).bind("focus.button",function(){a(this).addClass("ui-state-focus")}).bind("blur.button",function(){a(this).removeClass("ui-state-focus")});d&&this.element.bind("change.button",function(){b.refresh()});if(this.type==="checkbox")this.buttonElement.bind("click.button",function(){if(c.disabled)return false;a(this).toggleClass("ui-state-active");
b.buttonElement.attr("aria-pressed",b.element[0].checked)});else if(this.type==="radio")this.buttonElement.bind("click.button",function(){if(c.disabled)return false;a(this).addClass("ui-state-active");b.buttonElement.attr("aria-pressed",true);var f=b.element[0];h(f).not(f).map(function(){return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed",false)});else{this.buttonElement.bind("mousedown.button",function(){if(c.disabled)return false;a(this).addClass("ui-state-active");
g=this;a(document).one("mouseup",function(){g=null})}).bind("mouseup.button",function(){if(c.disabled)return false;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(f){if(c.disabled)return false;if(f.keyCode==a.ui.keyCode.SPACE||f.keyCode==a.ui.keyCode.ENTER)a(this).addClass("ui-state-active")}).bind("keyup.button",function(){a(this).removeClass("ui-state-active")});this.buttonElement.is("a")&&this.buttonElement.keyup(function(f){f.keyCode===a.ui.keyCode.SPACE&&a(this).click()})}this._setOption("disabled",
c.disabled)},_determineButtonType:function(){this.type=this.element.is(":checkbox")?"checkbox":this.element.is(":radio")?"radio":this.element.is("input")?"input":"button";if(this.type==="checkbox"||this.type==="radio"){this.buttonElement=this.element.parents().last().find("label[for="+this.element.attr("id")+"]");this.element.addClass("ui-helper-hidden-accessible");var b=this.element.is(":checked");b&&this.buttonElement.addClass("ui-state-active");this.buttonElement.attr("aria-pressed",b)}else this.buttonElement=
this.element},widget:function(){return this.buttonElement},destroy:function(){this.element.removeClass("ui-helper-hidden-accessible");this.buttonElement.removeClass("ui-button ui-widget ui-state-default ui-corner-all ui-state-hover ui-state-active  ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only").removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html());this.hasTitle||
this.buttonElement.removeAttr("title");a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);if(b==="disabled")c?this.element.attr("disabled",true):this.element.removeAttr("disabled");this._resetButton()},refresh:function(){var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b);if(this.type==="radio")h(this.element[0]).each(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed",
true):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed",false)});else if(this.type==="checkbox")this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed",true):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed",false)},_resetButton:function(){if(this.type==="input")this.options.label&&this.element.val(this.options.label);else{var b=this.buttonElement.removeClass("ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only"),
c=a("<span></span>").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary;if(d.primary||d.secondary){b.addClass("ui-button-text-icon"+(e?"s":d.primary?"-primary":"-secondary"));d.primary&&b.prepend("<span class='ui-button-icon-primary ui-icon "+d.primary+"'></span>");d.secondary&&b.append("<span class='ui-button-icon-secondary ui-icon "+d.secondary+"'></span>");if(!this.options.text){b.addClass(e?"ui-button-icons-only":"ui-button-icon-only").removeClass("ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary");
this.hasTitle||b.attr("title",c)}}else b.addClass("ui-button-text-only")}}});a.widget("ui.buttonset",{_create:function(){this.element.addClass("ui-buttonset");this._init()},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){this.buttons=this.element.find(":button, :submit, :reset, :checkbox, :radio, a, :data(button)").filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":visible").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end().end()},
destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery);
(function(d,G){function L(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._inDialog=this._datepickerShowing=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass=
"ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su",
"Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,selectOtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",
minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false,autoSize:false};d.extend(this._defaults,this.regional[""]);this.dpDiv=d('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}function E(a,b){d.extend(a,
b);for(var c in b)if(b[c]==null||b[c]==G)a[c]=b[c];return a}d.extend(d.ui,{datepicker:{version:"1.8.5"}});var y=(new Date).getTime();d.extend(L.prototype,{markerClassName:"hasDatepicker",log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){E(this._defaults,a||{});return this},_attachDatepicker:function(a,b){var c=null;for(var e in this._defaults){var f=a.getAttribute("date:"+e);if(f){c=c||{};try{c[e]=eval(f)}catch(h){c[e]=
f}}}e=a.nodeName.toLowerCase();f=e=="div"||e=="span";if(!a.id){this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({},b||{},c||{});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,b){return{id:a[0].id.replace(/([^A-Za-z0-9_])/g,"\\\\$1"),input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:d('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')}},
_connectDatepicker:function(a,b){var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachments:function(a,b){var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&&
b.append.remove();if(c){b.append=d('<span class="'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c=="focus"||c=="both")a.focus(this._showDatepicker);if(c=="button"||c=="both"){c=this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("<img/>").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d('<button type="button"></button>').addClass(this._triggerClass).html(f==
""?c:d("<img/>").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(a[0]);return false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;g<f.length;g++)if(f[g].length>h){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,
c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=d(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),
true);this._updateDatepicker(b);this._updateAlternate(b)}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+=1;this._dialogInput=d('<input type="text" id="'+("dp"+this.uuid)+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}E(a.settings,e||{});b=b&&b.constructor==
Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);
d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},
_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span")b.children("."+this._inlineClass).children().removeClass("ui-state-disabled");this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b=
d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span")b.children("."+this._inlineClass).children().addClass("ui-state-disabled");this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false;
for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return true;return false},_getInst:function(a){try{return d.data(a,"datepicker")}catch(b){throw"Missing instance data for this datepicker";}},_optionDatepicker:function(a,b,c){var e=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?d.extend({},d.datepicker._defaults):e?b=="all"?d.extend({},e.settings):this._get(e,b):null;var f=b||{};if(typeof b=="string"){f={};f[b]=c}if(e){this._curInst==e&&
this._hideDatepicker();var h=this._getDateDatepicker(a,true);E(e.settings,f);this._attachments(d(a),e);this._autoSize(e);this._setDateDatepicker(a,h);this._updateDatepicker(e)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){(a=this._getInst(a))&&this._updateDatepicker(a)},_setDateDatepicker:function(a,b){if(a=this._getInst(a)){this._setDate(a,b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDateDatepicker:function(a,b){(a=this._getInst(a))&&
!a.inline&&this._setDateFromField(a,b);return a?this._getDate(a):null},_doKeyDown:function(a){var b=d.datepicker._getInst(a.target),c=true,e=b.dpDiv.is(".ui-datepicker-rtl");b._keyEvent=true;if(d.datepicker._datepickerShowing)switch(a.keyCode){case 9:d.datepicker._hideDatepicker();c=false;break;case 13:c=d("td."+d.datepicker._dayOverClass,b.dpDiv).add(d("td."+d.datepicker._currentClass,b.dpDiv));c[0]?d.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,c[0]):d.datepicker._hideDatepicker();
return false;case 27:d.datepicker._hideDatepicker();break;case 33:d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);c=a.ctrlKey||a.metaKey;break;case 36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=a.ctrlKey||
a.metaKey;break;case 37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,-7,"D");c=a.ctrlKey||a.metaKey;break;case 39:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,
a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,+7,"D");c=a.ctrlKey||a.metaKey;break;default:c=false}else if(a.keyCode==36&&a.ctrlKey)d.datepicker._showDatepicker(this);else c=false;if(c){a.preventDefault();a.stopPropagation()}},_doKeyPress:function(a){var b=d.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInput")){b=d.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));
var c=String.fromCharCode(a.charCode==G?a.keyCode:a.charCode);return a.ctrlKey||c<" "||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target||
a;if(a.nodeName.toLowerCase()!="input")a=d("input",a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);d.datepicker._curInst&&d.datepicker._curInst!=b&&d.datepicker._curInst.dpDiv.stop(true,true);var c=d.datepicker._get(b,"beforeShow");E(b.settings,c?c.apply(a,[a,b]):{});b.lastVal=null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){d.datepicker._pos=d.datepicker._findPos(a);
d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=null;b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&&
d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){d.datepicker._datepickerShowing=true;var i=d.datepicker._getBorders(b.dpDiv);b.dpDiv.find("iframe.ui-datepicker-cover").css({left:-i[0],top:-i[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})};b.dpDiv.zIndex(d(a).zIndex()+1);d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,
h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}},_updateDatepicker:function(a){var b=this,c=d.datepicker._getBorders(a.dpDiv);a.dpDiv.empty().append(this._generateHTML(a)).find("iframe.ui-datepicker-cover").css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){d(this).removeClass("ui-state-hover");
this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).removeClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).removeClass("ui-datepicker-next-hover")}).bind("mouseover",function(){if(!b._isDisabledDatepicker(a.inline?a.dpDiv.parent()[0]:a.input[0])){d(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");d(this).addClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).addClass("ui-datepicker-prev-hover");
this.className.indexOf("ui-datepicker-next")!=-1&&d(this).addClass("ui-datepicker-next-hover")}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();c=this._getNumberOfMonths(a);var e=c[1];e>1?a.dpDiv.addClass("ui-datepicker-multi-"+e).css("width",17*e+"em"):a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");a.dpDiv[(c[0]!=1||c[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");
a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input.focus()},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),
k=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-g):0);b.top-=Math.min(b.top,b.top+f>k&&k>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b=this._get(this._getInst(a),"isRTL");a&&(a.type=="hidden"||a.nodeType!=1);)a=a[b?"previousSibling":"nextSibling"];
a=d(a).offset();return[a.left,a.top]},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b);this._curInst=null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();if(a=this._get(b,"onClose"))a.apply(b.input?b.input[0]:null,[b.input?b.input.val():
"",b]);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(d.datepicker._curInst){a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&
!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;
b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e._selectingMonthYear=false;e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_clickMonthYear:function(a){var b=
this._getInst(d(a)[0]);b.input&&b._selectingMonthYear&&setTimeout(function(){b.input.focus()},0);b._selectingMonthYear=!b._selectingMonthYear},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=
d(a);this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);else{this._hideDatepicker();this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,
"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b==
"object"?b.toString():b+"";if(b=="")return null;for(var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff,f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,k=c=-1,l=-1,u=-1,j=false,o=function(p){(p=z+1<a.length&&a.charAt(z+1)==p)&&z++;return p},m=function(p){o(p);p=new RegExp("^\\d{1,"+(p=="@"?14:p=="!"?20:p=="y"?4:p=="o"?
3:2)+"}");p=b.substring(s).match(p);if(!p)throw"Missing number at position "+s;s+=p[0].length;return parseInt(p[0],10)},n=function(p,w,H){p=o(p)?H:w;for(w=0;w<p.length;w++)if(b.substr(s,p[w].length).toLowerCase()==p[w].toLowerCase()){s+=p[w].length;return w+1}throw"Unknown name at position "+s;},r=function(){if(b.charAt(s)!=a.charAt(z))throw"Unexpected literal at position "+s;s++},s=0,z=0;z<a.length;z++)if(j)if(a.charAt(z)=="'"&&!o("'"))j=false;else r();else switch(a.charAt(z)){case "d":l=m("d");
break;case "D":n("D",f,h);break;case "o":u=m("o");break;case "m":k=m("m");break;case "M":k=n("M",i,g);break;case "y":c=m("y");break;case "@":var v=new Date(m("@"));c=v.getFullYear();k=v.getMonth()+1;l=v.getDate();break;case "!":v=new Date((m("!")-this._ticksTo1970)/1E4);c=v.getFullYear();k=v.getMonth()+1;l=v.getDate();break;case "'":if(o("'"))r();else j=true;break;default:r()}if(c==-1)c=(new Date).getFullYear();else if(c<100)c+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c<=e?0:-100);if(u>
-1){k=1;l=u;do{e=this._getDaysInMonth(c,k-1);if(l<=e)break;k++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c,k-1,l));if(v.getFullYear()!=c||v.getMonth()+1!=k||v.getDate()!=l)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*
60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){(o=j+1<a.length&&a.charAt(j+1)==o)&&j++;return o},g=function(o,m,n){m=""+m;if(i(o))for(;m.length<n;)m="0"+m;return m},k=function(o,m,n,r){return i(o)?r[m]:n[m]},l="",u=false;if(b)for(var j=0;j<a.length;j++)if(u)if(a.charAt(j)==
"'"&&!i("'"))u=false;else l+=a.charAt(j);else switch(a.charAt(j)){case "d":l+=g("d",b.getDate(),2);break;case "D":l+=k("D",b.getDay(),e,f);break;case "o":l+=g("o",(b.getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864E5,3);break;case "m":l+=g("m",b.getMonth()+1,2);break;case "M":l+=k("M",b.getMonth(),h,c);break;case "y":l+=i("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case "@":l+=b.getTime();break;case "!":l+=b.getTime()*1E4+this._ticksTo1970;break;case "'":if(i("'"))l+=
"'";else u=true;break;default:l+=a.charAt(j)}return l},_possibleChars:function(a){for(var b="",c=false,e=function(h){(h=f+1<a.length&&a.charAt(f+1)==h)&&f++;return h},f=0;f<a.length;f++)if(c)if(a.charAt(f)=="'"&&!e("'"))c=false;else b+=a.charAt(f);else switch(a.charAt(f)){case "d":case "m":case "y":case "@":b+="0123456789";break;case "D":case "M":return null;case "'":if(e("'"))b+="'";else c=true;break;default:b+=a.charAt(f)}return b},_get:function(a,b){return a.settings[b]!==G?a.settings[b]:this._defaults[b]},
_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),e=a.lastVal=a.input?a.input.val():null,f,h;f=h=this._getDefaultDate(a);var i=this._getFormatConfig(a);try{f=this.parseDate(c,e,i)||h}catch(g){this.log(g);e=b?"":e}a.selectedDay=f.getDate();a.drawMonth=a.selectedMonth=f.getMonth();a.drawYear=a.selectedYear=f.getFullYear();a.currentDay=e?f.getDate():0;a.currentMonth=e?f.getMonth():0;a.currentYear=e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,
this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,c){var e=function(h){var i=new Date;i.setDate(i.getDate()+h);return i},f=function(h){try{return d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),h,d.datepicker._getFormatConfig(a))}catch(i){}var g=(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new Date,k=g.getFullYear(),l=g.getMonth();g=g.getDate();for(var u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,j=u.exec(h);j;){switch(j[2]||"d"){case "d":case "D":g+=
parseInt(j[1],10);break;case "w":case "W":g+=parseInt(j[1],10)*7;break;case "m":case "M":l+=parseInt(j[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(k,l));break;case "y":case "Y":k+=parseInt(j[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(k,l));break}j=u.exec(h)}return new Date(k,l,g)};if(b=(b=b==null?c:typeof b=="string"?f(b):typeof b=="number"?isNaN(b)?c:e(b):b)&&b.toString()=="Invalid Date"?c:b){b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMilliseconds(0)}return this._daylightSavingAdjust(b)},
_daylightSavingAdjust:function(a){if(!a)return null;a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?
"":this._formatDate(a))},_getDate:function(a){return!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),k=
this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay?new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),j=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=j&&n<j?j:n;this._daylightSavingAdjust(new Date(m,g,1))>n;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,
"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-k,1)),this._getFormatConfig(a));n=this._canAdjustMonth(a,-1,m,g)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+y+".datepicker._adjustDate('#"+a.id+"', -"+k+", 'M');\" title=\""+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+
n+"</span></a>";var r=this._get(a,"nextText");r=!h?r:this.formatDate(r,this._daylightSavingAdjust(new Date(m,g+k,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+y+".datepicker._adjustDate('#"+a.id+"', +"+k+", 'M');\" title=\""+r+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>":f?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+r+'"><span class="ui-icon ui-icon-circle-triangle-'+
(c?"w":"e")+'">'+r+"</span></a>";k=this._get(a,"currentText");r=this._get(a,"gotoCurrent")&&a.currentDay?u:b;k=!h?k:this.formatDate(k,r,this._getFormatConfig(a));h=!a.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+y+'.datepicker._hideDatepicker();">'+this._get(a,"closeText")+"</button>":"";e=e?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?h:"")+(this._isInRange(a,r)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+
y+".datepicker._gotoToday('#"+a.id+"');\">"+k+"</button>":"")+(c?"":h)+"</div>":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;k=this._get(a,"showWeek");r=this._get(a,"dayNames");this._get(a,"dayNamesShort");var s=this._get(a,"dayNamesMin"),z=this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),w=this._get(a,"showOtherMonths"),H=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var M=this._getDefaultDate(a),I="",C=0;C<i[0];C++){for(var N=
"",D=0;D<i[1];D++){var J=this._daylightSavingAdjust(new Date(m,g,a.selectedDay)),t=" ui-corner-all",x="";if(l){x+='<div class="ui-datepicker-group';if(i[1]>1)switch(D){case 0:x+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-1:x+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:x+=" ui-datepicker-group-middle";t="";break}x+='">'}x+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&C==0?c?
f:n:"")+(/all|right/.test(t)&&C==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,j,o,C>0||D>0,z,v)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var A=k?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(t=0;t<7;t++){var q=(t+h)%7;A+="<th"+((t+h+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+r[q]+'">'+s[q]+"</span></th>"}x+=A+"</tr></thead><tbody>";A=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay,
A);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;A=l?6:Math.ceil((t+A)/7);q=this._daylightSavingAdjust(new Date(m,g,1-t));for(var O=0;O<A;O++){x+="<tr>";var P=!k?"":'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(q)+"</td>";for(t=0;t<7;t++){var F=p?p.apply(a.input?a.input[0]:null,[q]):[true,""],B=q.getMonth()!=g,K=B&&!H||!F[0]||j&&q<j||o&&q>o;P+='<td class="'+((t+h+6)%7>=5?" ui-datepicker-week-end":"")+(B?" ui-datepicker-other-month":"")+(q.getTime()==J.getTime()&&g==a.selectedMonth&&
a._keyEvent||M.getTime()==q.getTime()&&M.getTime()==J.getTime()?" "+this._dayOverClass:"")+(K?" "+this._unselectableClass+" ui-state-disabled":"")+(B&&!w?"":" "+F[1]+(q.getTime()==u.getTime()?" "+this._currentClass:"")+(q.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!B||w)&&F[2]?' title="'+F[2]+'"':"")+(K?"":' onclick="DP_jQuery_'+y+".datepicker._selectDay('#"+a.id+"',"+q.getMonth()+","+q.getFullYear()+', this);return false;"')+">"+(B&&!w?"&#xa0;":K?'<span class="ui-state-default">'+q.getDate()+
"</span>":'<a class="ui-state-default'+(q.getTime()==b.getTime()?" ui-state-highlight":"")+(q.getTime()==J.getTime()?" ui-state-active":"")+(B?" ui-priority-secondary":"")+'" href="#">'+q.getDate()+"</a>")+"</td>";q.setDate(q.getDate()+1);q=this._daylightSavingAdjust(q)}x+=P+"</tr>"}g++;if(g>11){g=0;m++}x+="</tbody></table>"+(l?"</div>"+(i[0]>0&&D==i[1]-1?'<div class="ui-datepicker-row-break"></div>':""):"");N+=x}I+=N}I+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':
"");a._keyEvent=false;return I},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var k=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),j='<div class="ui-datepicker-title">',o="";if(h||!k)o+='<span class="ui-datepicker-month">'+i[b]+"</span>";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+y+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" onclick=\"DP_jQuery_"+y+".datepicker._clickMonthYear('#"+
a.id+"');\">";for(var n=0;n<12;n++)if((!i||n>=e.getMonth())&&(!m||n<=f.getMonth()))o+='<option value="'+n+'"'+(n==b?' selected="selected"':"")+">"+g[n]+"</option>";o+="</select>"}u||(j+=o+(h||!(k&&l)?"&#xa0;":""));if(h||!l)j+='<span class="ui-datepicker-year">'+c+"</span>";else{g=this._get(a,"yearRange").split(":");var r=(new Date).getFullYear();i=function(s){s=s.match(/c[+-].*/)?c+parseInt(s.substring(1),10):s.match(/[+-].*/)?r+parseInt(s,10):parseInt(s,10);return isNaN(s)?r:s};b=i(g[0]);g=Math.max(b,
i(g[1]||""));b=e?Math.max(b,e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(j+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+y+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" onclick=\"DP_jQuery_"+y+".datepicker._clickMonthYear('#"+a.id+"');\">";b<=g;b++)j+='<option value="'+b+'"'+(b==c?' selected="selected"':"")+">"+b+"</option>";j+="</select>"}j+=this._get(a,"yearSuffix");if(u)j+=(h||!(k&&l)?"&#xa0;":"")+o;j+="</div>";return j},_adjustInstDate:function(a,b,c){var e=
a.drawYear+(c=="Y"?b:0),f=a.drawMonth+(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");b=c&&b<c?c:b;return b=a&&b>a?a:b},_notifyChange:function(a){var b=this._get(a,
"onChangeMonthYear");if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a);
c=this._daylightSavingAdjust(new Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,
"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=
function(a){if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));
return this.each(function(){typeof a=="string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new L;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.5";window["DP_jQuery_"+y]=d})(jQuery);
(function(c,j){c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:{my:"center",at:"center",of:window,collision:"fit",using:function(a){var b=c(this).css(a).offset().top;b<0&&c(this).css("top",a.top-b)}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");
if(typeof this.originalTitle!=="string")this.originalTitle="";this.options.title=this.options.title||this.originalTitle;var a=this,b=a.options,d=b.title||"&#160;",f=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("<div></div>")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog",
"aria-labelledby":f}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var e=(a.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),h=c('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);
return false}).appendTo(e);(a.uiDialogTitlebarCloseText=c("<span></span>")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("<span></span>").addClass("ui-dialog-title").attr("id",f).html(d).prependTo(e);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=b.beforeclose;e.find("*").add(e).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&
g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");a.uiDialog.remove();a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");
b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!==b.uiDialog[0])d=Math.max(d,c(this).css("z-index"))});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,f=d.options;if(f.modal&&!a||!f.stack&&!f.modal)return d._trigger("focus",b);if(f.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=
f.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index",c.ui.dialog.maxZ);d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;d.next().length&&d.appendTo("body");a._size();a._position(b.position);d.show(b.show);
a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(f){if(f.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),e=g.filter(":first");g=g.filter(":last");if(f.target===g[0]&&!f.shiftKey){e.focus(1);return false}else if(f.target===e[0]&&f.shiftKey){g.focus(1);return false}}});c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus();a._isOpen=true;a._trigger("open");return a}},_createButtons:function(a){var b=this,d=false,
f=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=c("<div></div>").addClass("ui-dialog-buttonset").appendTo(f);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a,function(e,h){h=c.isFunction(h)?{click:h,text:e}:h;e=c("<button></button>",h).unbind("click").click(function(){h.click.apply(b.element[0],arguments)}).appendTo(g);c.fn.button&&e.button()});f.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(e){return{position:e.position,
offset:e.offset}}var b=this,d=b.options,f=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(e,h){g=d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._trigger("dragStart",e,a(h))},drag:function(e,h){b._trigger("drag",e,a(h))},stop:function(e,h){d.position=[h.position.left-f.scrollLeft(),h.position.top-f.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);
b._trigger("dragStop",e,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(e){return{originalPosition:e.originalPosition,originalSize:e.originalSize,position:e.position,size:e.size}}a=a===j?this.options.resizable:a;var d=this,f=d.options,g=d.uiDialog.css("position");a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:d._minHeight(),
handles:a,start:function(e,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",e,b(h))},resize:function(e,h){d._trigger("resize",e,b(h))},stop:function(e,h){c(this).removeClass("ui-dialog-resizing");f.height=c(this).height();f.width=c(this).width();d._trigger("resizeStop",e,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,
a.height)},_position:function(a){var b=[],d=[0,0],f;if(a){if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length===1)b[1]=b[0];c.each(["left","top"],function(g,e){if(+b[g]===b[g]){d[g]=b[g];b[g]=e}});a={my:b.join(" "),at:b.join(" "),offset:d.join(" ")}}a=c.extend({},c.ui.dialog.prototype.options.position,a)}else a=c.ui.dialog.prototype.options.position;(f=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position(a);
f||this.uiDialog.hide()},_setOption:function(a,b){var d=this,f=d.uiDialog,g=f.is(":data(resizable)"),e=false;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);e=true;break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":f.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-disabled");break;case "draggable":b?
d._makeDraggable():f.draggable("destroy");break;case "height":e=true;break;case "maxHeight":g&&f.resizable("option","maxHeight",b);e=true;break;case "maxWidth":g&&f.resizable("option","maxWidth",b);e=true;break;case "minHeight":g&&f.resizable("option","minHeight",b);e=true;break;case "minWidth":g&&f.resizable("option","minWidth",b);e=true;break;case "position":d._position(b);break;case "resizable":g&&!b&&f.resizable("destroy");g&&typeof b==="string"&&f.resizable("option","handles",b);!g&&b!==false&&
d._makeResizable(b);break;case "title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||"&#160;"));break;case "width":e=true;break}c.Widget.prototype._setOption.apply(d,arguments);e&&d._size()},_size:function(){var a=this.options,b;this.element.css({width:"auto",minHeight:0,height:0});if(a.minWidth>a.width)a.width=a.minWidth;b=this.uiDialog.css({height:"auto",width:a.width}).height();this.element.css(a.height==="auto"?{minHeight:Math.max(a.minHeight-b,0),height:c.support.minHeight?"auto":Math.max(a.minHeight-
b,0)}:{minHeight:0,height:Math.max(a.height-b,0)}).show();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.5",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),
function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length===0){setTimeout(function(){c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.overlay.events,function(d){if(c(d.target).zIndex()<c.ui.dialog.overlay.maxZ)return false})},1);c(document).bind("keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=
(this.oldInstances.pop()||c("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b);return b},destroy:function(a){this.oldInstances.push(this.instances.splice(c.inArray(a,this.instances),1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var b=0;c.each(this.instances,function(){b=Math.max(b,this.css("z-index"))});this.maxZ=b},height:function(){var a,
b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);b=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return a<b?c(window).height()+"px":a+"px"}else return c(document).height()+"px"},width:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);b=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);return a<
b?c(window).width()+"px":a+"px"}else return c(document).width()+"px"},resize:function(){var a=c([]);c.each(c.ui.dialog.overlay.instances,function(){a=a.add(this)});a.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);
(function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.scrollTo&&d.document){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j=
{top:b.of.pageY,left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/
2;if(b.at[1]==="bottom")j.top+=k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+parseInt(c.curCSS(this,"marginRight",true))||0,w=m+q+parseInt(c.curCSS(this,"marginBottom",true))||0,i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]===
"center")i.top-=m/2;i.left=parseInt(i.left);i.top=parseInt(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();
b.left=d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];
b.left+=a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=
c(b),g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery);
(function(b,c){b.widget("ui.progressbar",{options:{value:0},min:0,max:100,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.max,"aria-valuenow":this._value()});this.valueDiv=b("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element);this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow");
this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===c)return this._value();this._setOption("value",a);return this},_setOption:function(a,d){if(a==="value"){this.options.value=d;this._refreshValue();this._trigger("change")}b.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;if(typeof a!=="number")a=0;return Math.min(this.max,Math.max(this.min,a))},_refreshValue:function(){var a=this.value();this.valueDiv.toggleClass("ui-corner-right",
a===this.max).width(a+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{version:"1.8.5"})})(jQuery);
(function(d){d.widget("ui.slider",d.ui.mouse,{widgetEventPrefix:"slide",options:{animate:false,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null},_create:function(){var a=this,b=this.options;this._mouseSliding=this._keySliding=false;this._animateOff=true;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");b.disabled&&this.element.addClass("ui-slider-disabled ui-disabled");
this.range=d([]);if(b.range){if(b.range===true){this.range=d("<div></div>");if(!b.values)b.values=[this._valueMin(),this._valueMin()];if(b.values.length&&b.values.length!==2)b.values=[b.values[0],b.values[0]]}else this.range=d("<div></div>");this.range.appendTo(this.element).addClass("ui-slider-range");if(b.range==="min"||b.range==="max")this.range.addClass("ui-slider-range-"+b.range);this.range.addClass("ui-widget-header")}d(".ui-slider-handle",this.element).length===0&&d("<a href='#'></a>").appendTo(this.element).addClass("ui-slider-handle");
if(b.values&&b.values.length)for(;d(".ui-slider-handle",this.element).length<b.values.length;)d("<a href='#'></a>").appendTo(this.element).addClass("ui-slider-handle");this.handles=d(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(c){c.preventDefault()}).hover(function(){b.disabled||d(this).addClass("ui-state-hover")},function(){d(this).removeClass("ui-state-hover")}).focus(function(){if(b.disabled)d(this).blur();
else{d(".ui-slider .ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-state-focus")}}).blur(function(){d(this).removeClass("ui-state-focus")});this.handles.each(function(c){d(this).data("index.ui-slider-handle",c)});this.handles.keydown(function(c){var e=true,f=d(this).data("index.ui-slider-handle"),h,g,i;if(!a.options.disabled){switch(c.keyCode){case d.ui.keyCode.HOME:case d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:e=
false;if(!a._keySliding){a._keySliding=true;d(this).addClass("ui-state-active");h=a._start(c,f);if(h===false)return}break}i=a.options.step;h=a.options.values&&a.options.values.length?(g=a.values(f)):(g=a.value());switch(c.keyCode){case d.ui.keyCode.HOME:g=a._valueMin();break;case d.ui.keyCode.END:g=a._valueMax();break;case d.ui.keyCode.PAGE_UP:g=a._trimAlignValue(h+(a._valueMax()-a._valueMin())/5);break;case d.ui.keyCode.PAGE_DOWN:g=a._trimAlignValue(h-(a._valueMax()-a._valueMin())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(h===
a._valueMax())return;g=a._trimAlignValue(h+i);break;case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:if(h===a._valueMin())return;g=a._trimAlignValue(h-i);break}a._slide(c,f,g);return e}}).keyup(function(c){var e=d(this).data("index.ui-slider-handle");if(a._keySliding){a._keySliding=false;a._stop(c,e);a._change(c,e);d(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");
this._mouseDestroy();return this},_mouseCapture:function(a){var b=this.options,c,e,f,h,g;if(b.disabled)return false;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();c=this._normValueFromMouse({x:a.pageX,y:a.pageY});e=this._valueMax()-this._valueMin()+1;h=this;this.handles.each(function(i){var j=Math.abs(c-h.values(i));if(e>j){e=j;f=d(this);g=i}});if(b.range===true&&this.values(1)===b.min){g+=1;f=d(this.handles[g])}if(this._start(a,
g)===false)return false;this._mouseSliding=true;h._handleIndex=g;f.addClass("ui-state-active").focus();b=f.offset();this._clickOffset=!d(a.target).parents().andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:a.pageX-b.left-f.width()/2,top:a.pageY-b.top-f.height()/2-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};this._slide(a,g,c);return this._animateOff=true},_mouseStart:function(){return true},_mouseDrag:function(a){var b=
this._normValueFromMouse({x:a.pageX,y:a.pageY});this._slide(a,this._handleIndex,b);return false},_mouseStop:function(a){this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(a,this._handleIndex);this._change(a,this._handleIndex);this._clickOffset=this._handleIndex=null;return this._animateOff=false},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b;if(this.orientation==="horizontal"){b=
this.elementSize.width;a=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{b=this.elementSize.height;a=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}b=a/b;if(b>1)b=1;if(b<0)b=0;if(this.orientation==="vertical")b=1-b;a=this._valueMax()-this._valueMin();return this._trimAlignValue(this._valueMin()+b*a)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(b);
c.values=this.values()}return this._trigger("start",a,c)},_slide:function(a,b,c){var e;if(this.options.values&&this.options.values.length){e=this.values(b?0:1);if(this.options.values.length===2&&this.options.range===true&&(b===0&&c>e||b===1&&c<e))c=e;if(c!==this.values(b)){e=this.values();e[b]=c;a=this._trigger("slide",a,{handle:this.handles[b],value:c,values:e});this.values(b?0:1);a!==false&&this.values(b,c,true)}}else if(c!==this.value()){a=this._trigger("slide",a,{handle:this.handles[b],value:c});
a!==false&&this.value(c)}},_stop:function(a,b){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(b);c.values=this.values()}this._trigger("stop",a,c)},_change:function(a,b){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(b);c.values=this.values()}this._trigger("change",a,c)}},value:function(a){if(arguments.length){this.options.value=
this._trimAlignValue(a);this._refreshValue();this._change(null,0)}return this._value()},values:function(a,b){var c,e,f;if(arguments.length>1){this.options.values[a]=this._trimAlignValue(b);this._refreshValue();this._change(null,a)}if(arguments.length)if(d.isArray(arguments[0])){c=this.options.values;e=arguments[0];for(f=0;f<c.length;f+=1){c[f]=this._trimAlignValue(e[f]);this._change(null,f)}this._refreshValue()}else return this.options.values&&this.options.values.length?this._values(a):this.value();
else return this._values()},_setOption:function(a,b){var c,e=0;if(d.isArray(this.options.values))e=this.options.values.length;d.Widget.prototype._setOption.apply(this,arguments);switch(a){case "disabled":if(b){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled");this.element.addClass("ui-disabled")}else{this.handles.removeAttr("disabled");this.element.removeClass("ui-disabled")}break;case "orientation":this._detectOrientation();
this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue();break;case "value":this._animateOff=true;this._refreshValue();this._change(null,0);this._animateOff=false;break;case "values":this._animateOff=true;this._refreshValue();for(c=0;c<e;c+=1)this._change(null,c);this._animateOff=false;break}},_value:function(){var a=this.options.value;return a=this._trimAlignValue(a)},_values:function(a){var b,c;if(arguments.length){b=this.options.values[a];
return b=this._trimAlignValue(b)}else{b=this.options.values.slice();for(c=0;c<b.length;c+=1)b[c]=this._trimAlignValue(b[c]);return b}},_trimAlignValue:function(a){if(a<this._valueMin())return this._valueMin();if(a>this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=a%b;a=a-c;if(Math.abs(c)*2>=b)a+=c>0?b:-b;return parseFloat(a.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var a=
this.options.range,b=this.options,c=this,e=!this._animateOff?b.animate:false,f,h={},g,i,j,l;if(this.options.values&&this.options.values.length)this.handles.each(function(k){f=(c.values(k)-c._valueMin())/(c._valueMax()-c._valueMin())*100;h[c.orientation==="horizontal"?"left":"bottom"]=f+"%";d(this).stop(1,1)[e?"animate":"css"](h,b.animate);if(c.options.range===true)if(c.orientation==="horizontal"){if(k===0)c.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},b.animate);if(k===1)c.range[e?"animate":"css"]({width:f-
g+"%"},{queue:false,duration:b.animate})}else{if(k===0)c.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},b.animate);if(k===1)c.range[e?"animate":"css"]({height:f-g+"%"},{queue:false,duration:b.animate})}g=f});else{i=this.value();j=this._valueMin();l=this._valueMax();f=l!==j?(i-j)/(l-j)*100:0;h[c.orientation==="horizontal"?"left":"bottom"]=f+"%";this.handle.stop(1,1)[e?"animate":"css"](h,b.animate);if(a==="min"&&this.orientation==="horizontal")this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"},
b.animate);if(a==="max"&&this.orientation==="horizontal")this.range[e?"animate":"css"]({width:100-f+"%"},{queue:false,duration:b.animate});if(a==="min"&&this.orientation==="vertical")this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},b.animate);if(a==="max"&&this.orientation==="vertical")this.range[e?"animate":"css"]({height:100-f+"%"},{queue:false,duration:b.animate})}}});d.extend(d.ui.slider,{version:"1.8.5"})})(jQuery);
(function(d,p){function u(){return++v}function w(){return++x}var v=0,x=0;d.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading&#8230;</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){this._tabify(true)},_setOption:function(a,e){if(a=="selected")this.options.collapsible&&
e==this.options.selected||this.select(e);else{this.options[a]=e;this._tabify()}},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+u()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var a=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+w());return d.cookie.apply(null,[a].concat(d.makeArray(arguments)))},_ui:function(a,e){return{tab:a,panel:e,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var a=
d(this);a.html(a.data("label.tabs")).removeData("label.tabs")})},_tabify:function(a){function e(g,f){g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}var b=this,c=this.options,h=/^#.+/;this.list=this.element.find("ol,ul").eq(0);this.lis=d(" > li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);this.anchors.each(function(g,f){var i=d(f).attr("href"),l=i.split("#")[0],q;if(l&&(l===location.toString().split("#")[0]||
(q=d("base")[0])&&l===q.href)){i=f.hash;f.href=i}if(h.test(i))b.panels=b.panels.add(b._sanitizeSelector(i));else if(i&&i!=="#"){d.data(f,"href.tabs",i);d.data(f,"load.tabs",i.replace(/#.*$/,""));i=b._tabId(f);f.href="#"+i;f=d("#"+i);if(!f.length){f=d(c.panelTemplate).attr("id",i).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(b.panels[g-1]||b.list);f.data("destroy.tabs",true)}b.panels=b.panels.add(f)}else c.disabled.push(g)});if(a){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");
this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(c.selected===p){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){c.selected=g;return false}});if(typeof c.selected!=="number"&&c.cookie)c.selected=parseInt(b._cookie(),10);if(typeof c.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length)c.selected=
this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=c.selected||(this.lis.length?0:-1)}else if(c.selected===null)c.selected=-1;c.selected=c.selected>=0&&this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=d.unique(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return b.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=-1&&c.disabled.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");
if(c.selected>=0&&this.anchors.length){this.panels.eq(c.selected).removeClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected ui-state-active");b.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[c.selected],b.panels[c.selected]))});this.load(c.selected)}d(window).bind("unload",function(){b.lis.add(b.anchors).unbind(".tabs");b.lis=b.anchors=b.panels=null})}else c.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));this.element[c.collapsible?"addClass":
"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c.cookie);a=0;for(var j;j=this.lis[a];a++)d(j)[d.inArray(a,c.disabled)!=-1&&!d(j).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(c.event!=="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+g)};this.lis.bind("mouseover.tabs",
function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(c.fx)if(d.isArray(c.fx)){m=c.fx[0];o=c.fx[1]}else m=o=c.fx;var r=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",function(){e(f,o);b._trigger("show",
null,b._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");b._trigger("show",null,b._ui(g,f[0]))},s=m?function(g,f){f.animate(m,m.duration||"normal",function(){b.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);b.element.dequeue("tabs")})}:function(g,f){b.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");b.element.dequeue("tabs")};this.anchors.bind(c.event+".tabs",
function(){var g=this,f=d(g).closest("li"),i=b.panels.filter(":not(.ui-tabs-hide)"),l=d(b._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||b.panels.filter(":animated").length||b._trigger("select",null,b._ui(this,l[0]))===false){this.blur();return false}c.selected=b.anchors.index(this);b.abort();if(c.collapsible)if(f.hasClass("ui-tabs-selected")){c.selected=-1;c.cookie&&b._cookie(c.selected,c.cookie);b.element.queue("tabs",
function(){s(g,i)}).dequeue("tabs");this.blur();return false}else if(!i.length){c.cookie&&b._cookie(c.selected,c.cookie);b.element.queue("tabs",function(){r(g,l)});b.load(b.anchors.index(this));this.blur();return false}c.cookie&&b._cookie(c.selected,c.cookie);if(l.length){i.length&&b.element.queue("tabs",function(){s(g,i)});b.element.queue("tabs",function(){r(g,l)});b.load(b.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";d.browser.msie&&this.blur()});this.anchors.bind("click.tabs",
function(){return false})},_getIndex:function(a){if(typeof a=="string")a=this.anchors.index(this.anchors.filter("[href$="+a+"]"));return a},destroy:function(){var a=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=d.data(this,"href.tabs");if(e)this.href=
e;var b=d(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){b.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this,"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});a.cookie&&this._cookie(null,a.cookie);return this},add:function(a,e,b){if(b===p)b=this.anchors.length;
var c=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,a).replace(/#\{label\}/g,e));a=!a.indexOf("#")?a.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var j=d("#"+a);j.length||(j=d(h.panelTemplate).attr("id",a).data("destroy.tabs",true));j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(b>=this.lis.length){e.appendTo(this.list);j.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[b]);
j.insertBefore(this.panels[b])}h.disabled=d.map(h.disabled,function(k){return k>=b?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");j.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[b],this.panels[b]));return this},remove:function(a){a=this._getIndex(a);var e=this.options,b=this.lis.eq(a).remove(),c=this.panels.eq(a).remove();
if(b.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(a+(a+1<this.anchors.length?1:-1));e.disabled=d.map(d.grep(e.disabled,function(h){return h!=a}),function(h){return h>=a?--h:h});this._tabify();this._trigger("remove",null,this._ui(b.find("a")[0],c[0]));return this},enable:function(a){a=this._getIndex(a);var e=this.options;if(d.inArray(a,e.disabled)!=-1){this.lis.eq(a).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(b){return b!=a});this._trigger("enable",null,
this._ui(this.anchors[a],this.panels[a]));return this}},disable:function(a){a=this._getIndex(a);var e=this.options;if(a!=e.selected){this.lis.eq(a).addClass("ui-state-disabled");e.disabled.push(a);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a]))}return this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;this.anchors.eq(a).trigger(this.options.event+".tabs");return this},
load:function(a){a=this._getIndex(a);var e=this,b=this.options,c=this.anchors.eq(a)[0],h=d.data(c,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(c,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(a).addClass("ui-state-processing");if(b.spinner){var j=d("span",c);j.data("label.tabs",j.html()).html(b.spinner)}this.xhr=d.ajax(d.extend({},b.ajaxOptions,{url:h,success:function(k,n){d(e._sanitizeSelector(c.hash)).html(k);e._cleanup();b.cache&&d.data(c,"cache.tabs",
true);e._trigger("load",null,e._ui(e.anchors[a],e.panels[a]));try{b.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[a],e.panels[a]));try{b.ajaxOptions.error(k,n,a,c)}catch(m){}}}));e.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},url:function(a,
e){this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.5"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(a,e){var b=this,c=this.options,h=b._rotate||(b._rotate=function(j){clearTimeout(b.rotation);b.rotation=setTimeout(function(){var k=c.selected;b.select(++k<b.anchors.length?k:0)},a);j&&j.stopPropagation()});e=b._unrotate||(b._unrotate=!e?function(j){j.clientX&&b.rotate(null)}:
function(){t=c.selected;h()});if(a){this.element.bind("tabsshow",h);this.anchors.bind(c.event+".tabs",e);h()}else{clearTimeout(b.rotation);this.element.unbind("tabsshow",h);this.anchors.unbind(c.event+".tabs",e);delete this._rotate;delete this._unrotate}return this}})})(jQuery);

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2009 ParaType Ltd. All rights reserved.
 * 
 * Trademark:
 * PT Sans is a trademark of the ParaType Ltd.
 * 
 * Description:
 * PT Sans is a type family of universal use. It consists of 8 styles: regular and
 * bold weights with corresponding italics form a standard computer font family;
 * two narrow styles (regular and bold) are intended for documents that require
 * tight set; two caption styles (regular and bold) are for texts of small point
 * sizes. The design combines traditional conservative appearance with modern
 * trends of humanistic sans serif and characterized by enhanced legibility. These
 * features beside conventional use in business applications and printed stuff made
 * the fonts quite useable for direction and guide signs, schemes, screens of
 * information kiosks and other objects of urban visual communications.
 * 
 * The fonts next to standard Latin and Cyrillic character sets contain signs of
 * title languages of the national republics of Russian Federation and support the
 * most of the languages of neighboring countries. The fonts were developed and
 * released by ParaType in 2009 with financial support from Federal Agency of Print
 * and Mass Communications of Russian Federation. Design - Alexandra Korolkova with
 * assistance of Olga Umpeleva and supervision of Vladimir Yefimov.
 * 
 * Manufacturer:
 * ParaType Ltd
 * 
 * Designer:
 * A.Korolkova, O.Umpeleva, V.Yefimov
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL_web
 */
Cufon.registerFont({"w":1116,"face":{"font-family":"PT Sans","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 3 2 2 3 2 2 4","ascent":"1536","descent":"-512","x-height":"23","bbox":"-76 -1782 2000.67 471","underline-thickness":"102.4","underline-position":"-102.4","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":546,"k":{"-":164,"\u00ad":164,",":27,".":27,"T":63,"V":61,"W":39,"X":61,"Y":61,"\u00dd":61,"Z":45,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"z":61,"\u00c6":82,"\"":139,"'":139,"A":66,"\u00c0":66,"\u00c1":66,"\u00c2":66,"\u00c3":66,"\u00c4":66,"\u00c5":66}},"!":{"d":"260,-1434r170,0r0,711r-35,361r-100,0r-35,-361r0,-711xm342,25v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":624},"\"":{"d":"424,-1434r160,0r-63,396r-97,0r0,-396xm184,-1434r160,0r-63,396r-97,0r0,-396","w":686,"k":{" ":168,"\u00a0":168,"-":309,"\u00ad":309,",":250,".":250,"C":82,"G":82,"O":82,"Q":82,"\u00c7":82,"\u00d2":82,"\u00d3":82,"\u00d4":82,"\u00d5":82,"\u00d6":82,"\u00d8":82,"V":-82,"W":-82,"Y":-74,"\u00dd":-74,"c":207,"e":207,"g":207,"o":207,"q":207,"\u00e7":207,"\u00e8":207,"\u00e9":207,"\u00ea":207,"\u00eb":207,"\u00f0":207,"\u00f2":207,"\u00f3":207,"\u00f4":207,"\u00f5":207,"\u00f6":207,"\u00f8":207,"v":-61,"y":-61,"\u00fd":-61,"\u00ff":-61,"\u00c6":410,"A":250,"\u00c0":250,"\u00c1":250,"\u00c2":250,"\u00c3":250,"\u00c4":250,"\u00c5":250,"a":127,"m":127,"n":127,"p":127,"r":127,"s":127,"u":127,"\u00e6":127}},"#":{"d":"573,-461r-215,0r-79,342r-142,0r80,-342r-160,0r29,-131r162,0r63,-268r-151,0r28,-131r154,0r78,-324r141,0r-78,324r215,0r78,-324r142,0r-78,324r157,0r-32,131r-156,0r-64,268r150,0r-33,131r-147,0r-80,342r-141,0xm389,-592r215,0r64,-268r-215,0"},"$":{"d":"987,-379v0,230,-138,363,-352,395r0,189r-139,0r0,-180v-133,-1,-258,-24,-340,-66r55,-149v67,37,167,68,285,67r0,-553v-166,-82,-334,-170,-334,-418v0,-213,128,-333,334,-358r0,-186r139,0r0,180v128,5,207,22,291,59r-49,144v-65,-32,-140,-51,-242,-56r0,506v166,90,352,176,352,426xm602,-127v123,-20,218,-94,215,-238v-3,-151,-111,-204,-215,-260r0,498xm528,-1309v-127,9,-196,89,-196,205v0,135,103,188,196,244r0,-449"},"%":{"d":"1305,-1460r100,78r-1051,1407r-102,-80xm461,-762v-217,0,-318,-126,-318,-348v0,-218,103,-348,318,-348v217,0,317,126,317,348v0,222,-100,348,-317,348xm461,-1339v-127,0,-166,76,-166,229v0,144,43,229,166,229v131,0,165,-91,165,-229v0,-138,-34,-229,-165,-229xm1192,-2v-217,0,-318,-126,-318,-348v0,-218,103,-348,318,-348v217,0,317,126,317,348v0,222,-100,348,-317,348xm1192,-579v-127,0,-166,76,-166,229v0,144,43,229,166,229v131,0,165,-91,165,-229v0,-138,-34,-229,-165,-229","w":1583},"&":{"d":"1159,-166v-106,105,-239,191,-448,191v-211,0,-359,-89,-431,-234v-46,-93,-50,-227,-10,-331v60,-156,186,-265,320,-349v-56,-89,-121,-175,-121,-307v0,-173,115,-262,297,-262v180,0,299,75,299,244v0,57,-23,116,-67,177v-44,61,-114,119,-210,175v101,176,239,335,373,479v70,-82,120,-202,160,-315r127,59v-47,122,-121,259,-195,354r78,71v58,50,114,86,178,124r-102,115v-72,-35,-155,-100,-248,-191xm666,-784v-123,97,-260,188,-260,397v0,183,145,268,329,268v147,0,256,-69,328,-149v-147,-150,-282,-337,-397,-516xm772,-1329v-145,0,-169,141,-118,255v18,40,40,80,67,120v72,-46,120,-90,150,-127v80,-98,44,-248,-99,-248","w":1667},"'":{"d":"184,-1434r160,0r-63,396r-97,0r0,-396","w":446,"k":{" ":168,"\u00a0":168,"-":309,"\u00ad":309,",":250,".":250,"C":82,"G":82,"O":82,"Q":82,"\u00c7":82,"\u00d2":82,"\u00d3":82,"\u00d4":82,"\u00d5":82,"\u00d6":82,"\u00d8":82,"V":-82,"W":-82,"Y":-74,"\u00dd":-74,"c":207,"e":207,"g":207,"o":207,"q":207,"\u00e7":207,"\u00e8":207,"\u00e9":207,"\u00ea":207,"\u00eb":207,"\u00f0":207,"\u00f2":207,"\u00f3":207,"\u00f4":207,"\u00f5":207,"\u00f6":207,"\u00f8":207,"v":-61,"y":-61,"\u00fd":-61,"\u00ff":-61,"\u00c6":410,"A":250,"\u00c0":250,"\u00c1":250,"\u00c2":250,"\u00c3":250,"\u00c4":250,"\u00c5":250,"a":127,"m":127,"n":127,"p":127,"r":127,"s":127,"u":127,"\u00e6":127}},"(":{"d":"287,-498v0,365,110,665,282,873r-104,76v-247,-258,-396,-686,-324,-1186v42,-294,160,-541,330,-723r98,72v-175,223,-282,507,-282,888","w":573,"k":{"-":74,"\u00ad":74,"V":-20,"c":12,"e":12,"g":12,"o":12,"q":12,"\u00e7":12,"\u00e8":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00f0":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12}},")":{"d":"287,-510v0,-360,-111,-664,-283,-872r105,-76v209,221,342,538,342,948v0,416,-141,732,-349,961r-98,-72v176,-222,283,-509,283,-889","w":573},"*":{"d":"266,-1464r51,86r37,114r43,-116r49,-82r99,53r-53,88r-95,98r140,-24r98,0r0,114r-94,0r-131,-24r94,98r47,80r-96,57r-54,-86r-47,-125r-39,119r-51,86r-102,-57r55,-86r86,-86r-119,24r-102,0r0,-114r102,0r127,24r-92,-90r-53,-94","w":718,"k":{" ":123,"\u00a0":123,"-":324,"\u00ad":324,",":512,".":512,"V":-25,"W":-25,"c":29,"e":29,"g":29,"o":29,"q":29,"\u00e7":29,"\u00e8":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00f0":29,"\u00f2":29,"\u00f3":29,"\u00f4":29,"\u00f5":29,"\u00f6":29,"\u00f8":29,"v":-29,"y":-29,"\u00fd":-29,"\u00ff":-29,"\u00c6":121,"A":20,"\u00c0":20,"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c4":20,"\u00c5":20}},"+":{"d":"82,-766r360,0r0,-369r148,0r0,369r360,0r0,148r-360,0r0,368r-148,0r0,-368r-360,0r0,-148","w":1034},",":{"d":"231,14v-74,23,-131,-25,-131,-102v0,-66,51,-111,117,-111v92,1,145,72,143,176v-3,179,-93,280,-223,328r-51,-80v85,-29,143,-112,145,-211","w":399,"k":{" ":160,"\u00a0":160,"*":289,"-":258,"\u00ad":258,",":-133,".":-133,"T":61,"V":119,"W":59,"Y":27,"\u00dd":27,"v":49,"y":49,"\u00fd":49,"\u00ff":49,"w":45,"x":-41,"\u00c6":-82,"\"":287,"'":287,"\u00ae":33}},"-":{"d":"121,-666r495,0r0,152r-495,0r0,-152","w":737,"k":{" ":164,"\u00a0":164,"*":227,",":258,".":258,"T":172,"V":59,"X":164,"Y":27,"\u00dd":27,"Z":20,"\u00c6":90,"\"":250,"'":250,")":74,"]":74,"}":74}},".":{"d":"217,25v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":438,"k":{" ":160,"\u00a0":160,"*":289,"-":258,"\u00ad":258,",":-133,".":-133,"T":61,"V":119,"W":59,"Y":27,"\u00dd":27,"v":49,"y":49,"\u00fd":49,"\u00ff":49,"w":45,"x":-41,"\u00c6":-82,"\"":287,"'":287,"\u00ae":33}},"\/":{"d":"672,-1458r129,57r-748,1688r-129,-58","w":724},"0":{"d":"201,-170v-147,-234,-147,-882,7,-1102v85,-121,196,-186,349,-186v165,0,285,61,359,183v74,122,112,308,112,558v0,246,-40,431,-120,555v-80,124,-197,187,-351,187v-162,0,-276,-68,-356,-195xm331,-1169v-91,177,-102,681,-1,883v46,91,107,167,227,167v104,0,179,-49,228,-144v90,-175,104,-679,7,-886v-44,-94,-108,-166,-235,-166v-102,0,-177,50,-226,146"},"1":{"d":"221,-152r287,0r0,-991r20,-121r-82,97r-225,161r-78,-104r451,-348r74,0r0,1306r280,0r0,152r-727,0r0,-152"},"2":{"d":"166,-1327v131,-133,498,-188,651,-33v102,104,117,307,56,474v-92,251,-254,469,-408,661r-100,88r0,8r131,-23r446,0r0,152r-815,0r0,-59r109,-117v180,-205,373,-441,475,-723v23,-64,32,-125,32,-182v-1,-139,-82,-234,-231,-234v-110,0,-215,56,-279,105"},"3":{"d":"223,-172v92,46,263,76,385,33v113,-40,192,-131,195,-277v4,-195,-125,-282,-320,-282r-151,0r0,-60r295,-454r94,-91r-133,21r-406,0r0,-152r731,0r0,60r-325,489r-72,60r0,4r70,-15v182,6,297,98,352,235v43,105,36,262,-10,361v-75,161,-227,261,-453,265v-116,2,-216,-21,-295,-52"},"4":{"d":"1073,-440r-242,0r0,440r-159,0r0,-440r-631,0r0,-68r680,-948r110,0r0,872r242,0r0,144xm672,-1030r20,-168r-6,0r-72,139r-288,391r-99,101r144,-17r301,0r0,-446"},"5":{"d":"201,-156v69,27,134,37,235,37v191,0,326,-119,326,-319v0,-205,-136,-298,-342,-297r-172,10r0,-709r639,0r0,152r-486,0r0,408v315,-35,528,122,525,425v-3,357,-277,518,-650,463v-42,-7,-81,-16,-118,-30"},"6":{"d":"596,-852v257,0,416,161,412,420v-3,211,-98,353,-250,421v-104,47,-263,48,-371,3v-170,-70,-264,-232,-264,-473v0,-415,159,-715,415,-878v84,-53,175,-85,273,-99r35,131v-314,65,-495,299,-551,622v49,-77,163,-147,301,-147xm838,-416v0,-192,-86,-291,-277,-293v-128,-2,-235,78,-274,160v-22,185,37,336,158,401v64,34,168,39,236,7v95,-45,157,-139,157,-275"},"7":{"d":"225,0r514,-1200r90,-100r-120,18r-584,0r0,-152r856,0r0,56r-590,1378r-166,0","k":{" ":111,"\u00a0":111,"-":131,"\u00ad":131,",":225,".":225,"C":31,"G":31,"O":31,"Q":31,"\u00c7":31,"\u00d2":31,"\u00d3":31,"\u00d4":31,"\u00d5":31,"\u00d6":31,"\u00d8":31,"c":154,"e":154,"g":154,"o":154,"q":154,"\u00e7":154,"\u00e8":154,"\u00e9":154,"\u00ea":154,"\u00eb":154,"\u00f0":154,"\u00f2":154,"\u00f3":154,"\u00f4":154,"\u00f5":154,"\u00f6":154,"\u00f8":154,"t":49,"\u00c6":119,"A":119,"\u00c0":119,"\u00c1":119,"\u00c2":119,"\u00c3":119,"\u00c4":119,"\u00c5":119,"a":92,"m":92,"n":92,"p":92,"r":92,"s":92,"u":92,"\u00e6":92,"\u00e0":49,"\u00e1":49,"\u00e2":49,"\u00e3":49,"\u00e4":49,"\u00e5":49,"\u00ec":49,"\u00ed":49,"\u00ee":49,"\u00ef":49,"\u00f1":49,"\u00f9":49,"\u00fa":49,"\u00fb":49,"\u00fc":49}},"8":{"d":"715,-752v131,81,262,172,262,379v0,196,-101,311,-248,368v-100,38,-256,40,-356,1v-137,-53,-234,-158,-234,-338v0,-212,118,-306,279,-397v-124,-79,-246,-162,-246,-361v0,-178,98,-282,232,-332v147,-55,358,-15,439,66v55,55,104,128,101,233v-5,198,-92,281,-229,381xm557,-119v156,0,260,-83,260,-243v0,-190,-159,-246,-287,-320v-131,71,-231,167,-231,320v0,156,98,243,258,243xm784,-1098v9,-167,-164,-260,-317,-198v-77,31,-135,90,-135,192v0,133,85,190,170,245v32,21,67,38,102,56v100,-82,173,-147,180,-295"},"9":{"d":"817,-698v-74,86,-143,116,-297,116v-194,0,-320,-97,-381,-239v-44,-102,-42,-253,-4,-361v59,-168,191,-276,416,-276v292,0,444,208,442,516v-3,432,-140,731,-414,882v-83,46,-176,73,-274,85r-37,-131v320,-55,499,-267,549,-592xm541,-1315v-173,-2,-265,121,-265,299v0,185,106,289,279,291v124,2,231,-45,274,-119v22,-245,-49,-468,-288,-471"},":":{"d":"303,-801v-70,0,-117,-50,-117,-119v0,-72,46,-118,117,-118v73,0,121,45,121,118v0,70,-49,119,-121,119xm303,25v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":448,"k":{"\/":-41}},";":{"d":"313,14v-74,23,-131,-25,-131,-102v0,-66,51,-111,117,-111v92,1,144,73,143,176v-2,179,-93,280,-223,328r-51,-80v85,-29,143,-112,145,-211xm313,-801v-70,0,-116,-49,-116,-119v0,-73,45,-118,116,-118v73,0,121,45,121,118v0,70,-49,119,-121,119","w":524},"<":{"d":"86,-625r0,-59r774,-473r78,127r-485,297r-187,78r185,65r497,295r-78,123","w":1034},"=":{"d":"82,-936r868,0r0,148r-868,0r0,-148xm82,-596r868,0r0,147r-868,0r0,-147","w":1034},">":{"d":"948,-705r0,60r-774,473r-78,-125r486,-297r186,-78r-184,-65r-498,-295r78,-125","w":1034},"?":{"d":"453,-1458v225,2,364,115,364,334v0,314,-255,387,-347,612v-18,42,-28,93,-28,150r-135,0v-25,-313,213,-407,315,-616v17,-36,25,-78,25,-124v0,-138,-79,-213,-235,-213v-103,0,-215,45,-281,86r-55,-127v108,-63,205,-104,377,-102xm383,25v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":892},"@":{"d":"1169,-1020v104,-1,148,35,209,78r70,-64r70,0r-105,588v-12,58,-20,111,-20,170v0,64,15,98,77,98v191,0,291,-148,348,-304v54,-147,39,-359,-20,-492v-105,-237,-336,-373,-672,-373v-378,0,-617,212,-736,492v-81,191,-82,464,-6,655v111,277,355,442,734,442v93,0,206,-21,273,-57r41,131v-197,92,-483,83,-696,8v-334,-118,-555,-387,-558,-835v-2,-313,122,-551,285,-711v157,-153,385,-264,674,-264v399,0,668,177,797,458v76,166,92,399,22,583v-60,156,-163,281,-301,355v-142,77,-418,102,-406,-120v2,-29,3,-58,8,-86r-8,0v-60,98,-146,188,-257,236v-66,28,-144,34,-208,2v-93,-47,-149,-146,-149,-287v0,-294,140,-524,329,-642v65,-40,133,-61,205,-61xm824,-531v-49,149,-61,383,122,379v75,-2,126,-51,172,-99v58,-61,112,-141,152,-220r61,-334v-43,-49,-75,-72,-157,-72v-199,0,-296,180,-350,346","w":2179},"A":{"d":"856,-397r-528,0r-144,397r-168,0r543,-1456r78,0r545,1456r-178,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221","w":1198},"B":{"d":"174,-1421v211,-30,541,-62,709,36v88,52,159,137,155,279v-5,187,-113,295,-270,338r0,8v182,34,313,137,313,352v0,233,-150,351,-338,400v-168,44,-400,28,-569,-2r0,-1411xm344,-145v153,21,361,26,455,-51v56,-45,102,-103,102,-199v0,-272,-280,-270,-557,-264r0,514xm858,-1071v7,-249,-290,-248,-514,-219r0,487r191,-2v122,1,185,-46,250,-101v43,-36,71,-91,73,-165","w":1196,"k":{"T":61}},"C":{"d":"585,-164v139,62,361,40,466,-29r41,134v-132,97,-421,112,-598,40v-247,-101,-379,-342,-379,-698v-1,-365,144,-598,397,-700v165,-66,416,-48,559,8r-41,149v-99,-47,-316,-69,-446,-16v-194,80,-289,275,-289,559v1,277,100,468,290,553","w":1169,"k":{" ":82,"\u00a0":82,"-":160,"\u00ad":160,"C":53,"G":53,"O":53,"Q":53,"\u00c7":53,"\u00d2":53,"\u00d3":53,"\u00d4":53,"\u00d5":53,"\u00d6":53,"\u00d8":53,"T":57,"V":55,"W":12,"X":86,"Y":72,"\u00dd":72,"Z":49,"c":72,"e":72,"g":72,"o":72,"q":72,"\u00e7":72,"\u00e8":72,"\u00e9":72,"\u00ea":72,"\u00eb":72,"\u00f0":72,"\u00f2":72,"\u00f3":72,"\u00f4":72,"\u00f5":72,"\u00f6":72,"\u00f8":72,"t":72,"v":86,"y":86,"\u00fd":86,"\u00ff":86,"w":82,"x":57,"z":47,"\u00c6":233,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"a":35,"m":35,"n":35,"p":35,"r":35,"s":35,"u":35,"\u00e6":35}},"D":{"d":"174,-1434v113,-16,256,-16,383,-16v453,0,668,273,668,723v0,336,-135,568,-371,683v-169,82,-450,62,-680,46r0,-1436xm502,-134v389,17,542,-227,542,-593v0,-353,-159,-589,-541,-571v-54,2,-113,5,-159,10r0,1147v44,5,109,5,158,7","w":1339,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"E":{"d":"174,-1434r780,0r0,152r-610,0r0,469r559,0r0,151r-559,0r0,510r621,0r0,152r-791,0r0,-1434","w":1097},"F":{"d":"174,-1434r780,0r0,152r-610,0r0,489r569,0r0,152r-569,0r0,641r-170,0r0,-1434","w":1058},"G":{"d":"295,-717v0,352,138,590,475,590v87,0,162,-17,223,-51r0,-400r-336,-40r0,-97r482,0r0,631v-142,106,-444,147,-647,65v-249,-100,-377,-342,-377,-698v0,-366,155,-599,413,-700v170,-66,421,-48,568,8r-43,149v-100,-47,-319,-69,-452,-17v-199,79,-306,271,-306,560","w":1253},"H":{"d":"1032,-657r-688,0r0,657r-170,0r0,-1434r170,0r0,625r688,0r0,-625r170,0r0,1434r-170,0r0,-657","w":1376},"I":{"d":"213,-1434r170,0r0,1434r-170,0r0,-1434","w":595},"J":{"d":"88,-131v125,0,141,-96,141,-225r0,-1078r170,0r0,1119v25,281,-217,397,-469,303r33,-146v38,18,80,27,125,27","w":595},"K":{"d":"440,-664r-96,0r0,664r-170,0r0,-1434r170,0r0,668r92,-29r482,-639r196,0r-479,617r-86,67r104,82r525,668r-215,0","w":1249,"k":{" ":61,"\u00a0":61,"-":164,"\u00ad":164,"C":100,"G":100,"O":100,"Q":100,"\u00c7":100,"\u00d2":100,"\u00d3":100,"\u00d4":100,"\u00d5":100,"\u00d6":100,"\u00d8":100,"T":68,"X":63,"Y":55,"\u00dd":55,"c":98,"e":98,"g":98,"o":98,"q":98,"\u00e7":98,"\u00e8":98,"\u00e9":98,"\u00ea":98,"\u00eb":98,"\u00f0":98,"\u00f2":98,"\u00f3":98,"\u00f4":98,"\u00f5":98,"\u00f6":98,"\u00f8":98,"t":78,"v":111,"y":111,"\u00fd":111,"\u00ff":111,"w":111,"x":78,"z":66,"\u00c6":207,"A":61,"\u00c0":61,"\u00c1":61,"\u00c2":61,"\u00c3":61,"\u00c4":61,"\u00c5":61,"a":57,"m":57,"n":57,"p":57,"r":57,"s":57,"u":57,"\u00e6":57}},"L":{"d":"1022,0r-848,0r0,-1434r170,0r0,1282r678,0r0,152","w":1058,"k":{" ":86,"\u00a0":86,"*":330,"-":160,"\u00ad":160,"C":135,"G":135,"O":135,"Q":135,"\u00c7":135,"\u00d2":135,"\u00d3":135,"\u00d4":135,"\u00d5":135,"\u00d6":135,"\u00d8":135,"T":250,"V":213,"W":150,"X":213,"Y":215,"\u00dd":215,"Z":61,"c":121,"e":121,"g":121,"o":121,"q":121,"\u00e7":121,"\u00e8":121,"\u00e9":121,"\u00ea":121,"\u00eb":121,"\u00f0":121,"\u00f2":121,"\u00f3":121,"\u00f4":121,"\u00f5":121,"\u00f6":121,"\u00f8":121,"t":94,"v":201,"y":201,"\u00fd":201,"\u00ff":201,"w":143,"x":86,"z":66,"\u00c6":162,"\"":254,"'":254,"\u00ae":303,"A":154,"\u00c0":154,"\u00c1":154,"\u00c2":154,"\u00c3":154,"\u00c4":154,"\u00c5":154,"a":41,"m":41,"n":41,"p":41,"r":41,"s":41,"u":41,"\u00e6":41}},"M":{"d":"1276,-963r20,-215r-10,0r-78,197r-372,647r-52,0r-395,-649r-74,-195r-10,0r29,213r0,965r-160,0r0,-1434r127,0r449,734r67,159r4,0r64,-164r428,-729r133,0r0,1434r-170,0r0,-963","w":1619},"N":{"d":"432,-938r-110,-207r-9,0r21,207r0,938r-160,0r0,-1456r90,0r686,956r107,197r10,0r-23,-197r0,-934r160,0r0,1457r-90,0","w":1378},"O":{"d":"698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"P":{"d":"174,-1419v225,-46,553,-53,715,55v105,70,180,177,180,354v0,388,-324,507,-725,465r0,545r-170,0r0,-1419xm889,-1010v0,-274,-283,-321,-545,-280r0,594v43,10,106,8,160,8v228,0,385,-86,385,-322","w":1144,"k":{" ":82,"\u00a0":82,",":266,".":266,"C":35,"G":35,"O":35,"Q":35,"\u00c7":35,"\u00d2":35,"\u00d3":35,"\u00d4":35,"\u00d5":35,"\u00d6":35,"\u00d8":35,"T":33,"X":86,"Y":51,"\u00dd":51,"Z":57,"c":74,"e":74,"g":74,"o":74,"q":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"x":74,"z":55,"\u00c6":225,"A":129,"\u00c0":129,"\u00c1":129,"\u00c2":129,"\u00c3":129,"\u00c4":129,"\u00c5":129,"a":72,"m":72,"n":72,"p":72,"r":72,"s":72,"u":72,"\u00e6":72,"\u00e0":72,"\u00e1":72,"\u00e2":72,"\u00e3":72,"\u00e4":72,"\u00e5":72,"\u00ec":72,"\u00ed":72,"\u00ee":72,"\u00ef":72,"\u00f1":72,"\u00f9":72,"\u00fa":72,"\u00fb":72,"\u00fc":72}},"Q":{"d":"545,86v312,11,557,199,897,117r0,147v-330,92,-609,-112,-914,-112v-33,0,-64,4,-94,12r0,-150v36,-7,70,-15,111,-14xm698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"R":{"d":"1010,-1055v4,227,-144,368,-326,412r98,76r357,567r-199,0r-395,-618r-201,-31r0,649r-170,0r0,-1419v96,-20,252,-31,365,-31v279,0,466,116,471,395xm829,-1049v0,-156,-120,-254,-286,-254v-70,0,-142,2,-199,13r0,528r160,0v188,-1,325,-92,325,-287","w":1218,"k":{"-":82,"\u00ad":82,"C":90,"G":90,"O":90,"Q":90,"\u00c7":90,"\u00d2":90,"\u00d3":90,"\u00d4":90,"\u00d5":90,"\u00d6":90,"\u00d8":90,"T":125,"V":98,"W":82,"X":82,"Y":123,"\u00dd":123,"Z":49,"c":98,"e":98,"g":98,"o":98,"q":98,"\u00e7":98,"\u00e8":98,"\u00e9":98,"\u00ea":98,"\u00eb":98,"\u00f0":98,"\u00f2":98,"\u00f3":98,"\u00f4":98,"\u00f5":98,"\u00f6":98,"\u00f8":98,"t":49,"v":68,"y":68,"\u00fd":68,"\u00ff":68,"w":59,"x":78,"z":55,"\u00c6":215,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"a":20,"m":20,"n":20,"p":20,"r":20,"s":20,"u":20,"\u00e6":20,"\u00e0":20,"\u00e1":20,"\u00e2":20,"\u00e3":20,"\u00e4":20,"\u00e5":20,"\u00ec":20,"\u00ed":20,"\u00ee":20,"\u00ef":20,"\u00f1":20,"\u00f9":20,"\u00fa":20,"\u00fb":20,"\u00fc":20}},"S":{"d":"498,-127v181,-3,323,-62,323,-238v0,-129,-90,-186,-179,-236v-211,-119,-513,-167,-513,-493v0,-241,187,-364,449,-364v146,0,297,22,387,65r-52,150v-77,-35,-217,-64,-344,-64v-155,0,-270,74,-270,203v0,123,92,179,179,228v161,91,361,156,462,309v59,90,66,249,18,354v-71,154,-229,236,-454,238v-171,2,-310,-29,-410,-76r58,-154v75,40,216,80,346,78","w":1087},"T":{"d":"1100,-1282r-447,0r0,1282r-170,0r0,-1282r-446,0r0,-152r1063,0r0,152","w":1136,"k":{"\u00ff":262,"\u00fd":262,"\u00f6":262,"\u00f5":262,"\u00f4":262,"\u00f3":262,"\u00f2":262,"\u00ef":158,"\u00ee":158,"\u00eb":262,"\u00ea":262,"\u00e9":262,"\u00e8":262," ":82,"\u00a0":82,"-":172,"\u00ad":172,",":209,".":209,"C":98,"G":98,"O":98,"Q":98,"\u00c7":98,"\u00d2":98,"\u00d3":98,"\u00d4":98,"\u00d5":98,"\u00d6":98,"\u00d8":98,"T":-41,"X":68,"Y":25,"\u00dd":25,"Z":49,"c":262,"e":262,"g":262,"o":262,"q":262,"\u00e7":262,"\u00f0":262,"\u00f8":262,"t":125,"v":262,"y":262,"w":262,"x":262,"z":262,"\u00c6":242,"A":137,"\u00c0":137,"\u00c1":137,"\u00c2":137,"\u00c3":137,"\u00c4":137,"\u00c5":137,"a":215,"m":215,"n":215,"p":215,"r":215,"s":215,"u":215,"\u00e6":215,"\u00e0":158,"\u00e1":158,"\u00e2":158,"\u00e3":158,"\u00e4":158,"\u00e5":158,"\u00ec":158,"\u00ed":158,"\u00f1":158,"\u00f9":158,"\u00fa":158,"\u00fb":158,"\u00fc":158,")":-55,"]":-55,"}":-55}},"U":{"d":"688,-133v242,-4,309,-132,309,-391r0,-910r164,0r0,957v-1,321,-158,495,-475,495v-329,0,-511,-140,-512,-462r0,-990r170,0r0,910v-3,254,94,394,344,391","w":1335},"V":{"d":"547,-449r49,218r2,0r53,-222r346,-981r170,0r-542,1457r-76,0r-553,-1457r186,0","w":1163,"k":{"\u00f6":119,"\u00f5":119,"\u00ef":94,"\u00ee":94,"\u00ec":94,"\u00eb":119," ":61,"\u00a0":61,"*":-94,"-":111,"\u00ad":111,",":193,".":193,"C":53,"G":53,"O":53,"Q":53,"\u00c7":53,"\u00d2":53,"\u00d3":53,"\u00d4":53,"\u00d5":53,"\u00d6":53,"\u00d8":53,"c":119,"e":119,"g":119,"o":119,"q":119,"\u00e7":119,"\u00e8":119,"\u00e9":119,"\u00ea":119,"\u00f0":119,"\u00f2":119,"\u00f3":119,"\u00f4":119,"\u00f8":119,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":37,"x":98,"z":78,"\u00c6":197,"\"":-82,"'":-82,"\u00ae":-25,"A":92,"\u00c0":92,"\u00c1":92,"\u00c2":92,"\u00c3":92,"\u00c4":92,"\u00c5":92,"a":102,"m":102,"n":102,"p":102,"r":102,"s":102,"u":102,"\u00e6":102,"\u00e0":94,"\u00e1":94,"\u00e2":94,"\u00e3":94,"\u00e4":94,"\u00e5":94,"\u00ed":94,"\u00f1":94,"\u00f9":94,"\u00fa":94,"\u00fb":94,"\u00fc":94,")":-20,"]":-20,"}":-20}},"W":{"d":"455,-473r32,237r2,0r35,-241r295,-957r82,0r297,961r35,237r2,0r37,-241r241,-957r166,0r-399,1457r-94,0r-291,-961r-37,-217r-10,0r-37,219r-291,959r-94,0r-410,-1457r181,0","w":1695,"k":{"\u00ef":61,"\u00ec":61," ":51,"\u00a0":51,"*":-94,"-":51,"\u00ad":51,",":152,".":152,"C":41,"G":41,"O":41,"Q":41,"\u00c7":41,"\u00d2":41,"\u00d3":41,"\u00d4":41,"\u00d5":41,"\u00d6":41,"\u00d8":41,"c":86,"e":86,"g":86,"o":86,"q":86,"\u00e7":86,"\u00e8":86,"\u00e9":86,"\u00ea":86,"\u00eb":86,"\u00f0":86,"\u00f2":86,"\u00f3":86,"\u00f4":86,"\u00f5":86,"\u00f6":86,"\u00f8":86,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"w":37,"x":82,"z":76,"\u00c6":170,"\"":-82,"'":-82,"\u00ae":-25,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"a":84,"m":84,"n":84,"p":84,"r":84,"s":84,"u":84,"\u00e6":84,"\u00e0":61,"\u00e1":61,"\u00e2":61,"\u00e3":61,"\u00e4":61,"\u00e5":61,"\u00ed":61,"\u00ee":61,"\u00f1":61,"\u00f9":61,"\u00fa":61,"\u00fb":61,"\u00fc":61}},"X":{"d":"530,-729r-436,-705r205,0r291,486r51,117r49,-117r307,-486r189,0r-451,691r471,743r-198,0r-324,-514r-55,-123r-54,123r-331,514r-191,0","w":1265,"k":{" ":61,"\u00a0":61,"-":164,"\u00ad":164,"C":100,"G":100,"O":100,"Q":100,"\u00c7":100,"\u00d2":100,"\u00d3":100,"\u00d4":100,"\u00d5":100,"\u00d6":100,"\u00d8":100,"T":68,"X":63,"Y":55,"\u00dd":55,"c":98,"e":98,"g":98,"o":98,"q":98,"\u00e7":98,"\u00e8":98,"\u00e9":98,"\u00ea":98,"\u00eb":98,"\u00f0":98,"\u00f2":98,"\u00f3":98,"\u00f4":98,"\u00f5":98,"\u00f6":98,"\u00f8":98,"t":78,"v":111,"y":111,"\u00fd":111,"\u00ff":111,"w":111,"x":78,"z":66,"\u00c6":207,"A":61,"\u00c0":61,"\u00c1":61,"\u00c2":61,"\u00c3":61,"\u00c4":61,"\u00c5":61,"a":57,"m":57,"n":57,"p":57,"r":57,"s":57,"u":57,"\u00e6":57}},"Y":{"d":"489,-569r-473,-865r199,0r336,627v14,40,20,88,37,125r37,-129r321,-623r182,0r-469,863r0,571r-170,0r0,-569","w":1142,"k":{"\u00f6":174,"\u00f5":174,"\u00ef":127,"\u00ee":127,"\u00ec":127,"\u00eb":174,"\u00e8":174,"\u00e1":127," ":51,"\u00a0":51,"*":-49,"-":127,"\u00ad":127,",":219,".":219,"C":84,"G":84,"O":84,"Q":84,"\u00c7":84,"\u00d2":84,"\u00d3":84,"\u00d4":84,"\u00d5":84,"\u00d6":84,"\u00d8":84,"T":25,"X":55,"Z":51,"c":174,"e":174,"g":174,"o":174,"q":174,"\u00e7":174,"\u00e9":174,"\u00ea":174,"\u00f0":174,"\u00f2":174,"\u00f3":174,"\u00f4":174,"\u00f8":174,"t":80,"v":98,"y":98,"\u00fd":98,"\u00ff":98,"w":82,"x":123,"z":133,"\u00c6":197,"\"":-74,"'":-74,"A":139,"\u00c0":139,"\u00c1":139,"\u00c2":139,"\u00c3":139,"\u00c4":139,"\u00c5":139,"a":147,"m":147,"n":147,"p":147,"r":147,"s":147,"u":147,"\u00e6":147,"\u00e0":127,"\u00e2":127,"\u00e3":127,"\u00e4":127,"\u00e5":127,"\u00ed":127,"\u00f1":127,"\u00f9":127,"\u00fa":127,"\u00fb":127,"\u00fc":127}},"Z":{"d":"78,-154r723,-1046r86,-82r-809,0r0,-152r962,0r0,154r-727,1053r-86,75r813,0r0,152r-962,0r0,-154","k":{" ":88,"\u00a0":88,"-":188,"\u00ad":188,"C":49,"G":49,"O":49,"Q":49,"\u00c7":49,"\u00d2":49,"\u00d3":49,"\u00d4":49,"\u00d5":49,"\u00d6":49,"\u00d8":49,"T":49,"X":59,"Y":51,"\u00dd":51,"Z":45,"c":104,"e":104,"g":104,"o":104,"q":104,"\u00e7":104,"\u00e8":104,"\u00e9":104,"\u00ea":104,"\u00eb":104,"\u00f0":104,"\u00f2":104,"\u00f3":104,"\u00f4":104,"\u00f5":104,"\u00f6":104,"\u00f8":104,"t":33,"v":63,"y":63,"\u00fd":63,"\u00ff":63,"w":63,"x":43,"z":55,"\u00c6":203,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39,"a":45,"m":45,"n":45,"p":45,"r":45,"s":45,"u":45,"\u00e6":45}},"[":{"d":"174,-1434r371,0r0,144r-211,0r0,1618r211,0r0,143r-371,0r0,-1905","w":622,"k":{"-":74,"\u00ad":74,"V":-20,"c":12,"e":12,"g":12,"o":12,"q":12,"\u00e7":12,"\u00e8":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00f0":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12}},"\\":{"d":"817,227r-135,60r-758,-1688r137,-57","w":778},"]":{"d":"451,471r-373,0r0,-143r213,0r0,-1618r-213,0r0,-144r373,0r0,1905","w":622},"^":{"d":"479,-1456r60,0r346,565r-168,0r-164,-276r-47,-142r-64,144r-188,274r-156,0","w":1024},"_":{"d":"0,276r836,0r0,144r-836,0r0,-144","w":835},"`":{"d":"451,-1169r-93,0r-235,-263r0,-43r194,0","w":573},"a":{"d":"496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168","w":1015,"k":{"T":246,"'":16,"\"":16}},"b":{"d":"506,18v-132,1,-274,-33,-348,-77r0,-1375r164,0r0,510r8,0v57,-73,155,-125,278,-125v294,0,398,199,398,521v0,342,-172,543,-500,546xm836,-530v-4,-203,-55,-375,-256,-375v-150,0,-223,92,-258,219r0,516v50,29,129,47,208,45v214,-5,311,-160,306,-405","w":1105,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"c":{"d":"575,-119v95,2,177,-35,228,-74r53,125v-76,57,-193,93,-321,93v-322,-1,-432,-217,-435,-537v-2,-324,140,-537,445,-537v126,0,211,20,291,60r-48,141v-60,-34,-135,-57,-227,-57v-194,0,-291,131,-291,393v0,223,80,389,305,393","w":923,"k":{"y":25," ":49,"\u00a0":49,"-":94,"\u00ad":94,"c":47,"e":47,"g":47,"o":47,"q":47,"\u00e7":47,"\u00e8":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00f0":47,"\u00f2":47,"\u00f3":47,"\u00f4":47,"\u00f5":47,"\u00f6":47,"\u00f8":47,"x":33,"z":33,"\"":29,"'":29}},"d":{"d":"565,-1042v102,0,141,9,215,34r0,-426r164,0r0,1082v1,138,-3,243,21,356r-111,0r-41,-145r-8,0v-52,91,-160,168,-301,166v-304,-4,-401,-201,-404,-533v-3,-327,158,-534,465,-534xm270,-508v3,211,52,389,260,389v153,0,222,-83,250,-219r0,-508v-55,-41,-109,-53,-209,-53v-214,0,-304,147,-301,391","w":1101},"e":{"d":"600,-119v89,0,200,-39,244,-82r61,119v-78,64,-211,108,-352,107v-323,-3,-450,-213,-453,-537v-3,-328,144,-537,451,-537v258,0,392,132,389,404v0,45,-4,94,-12,149r-658,0v1,236,91,377,330,377xm780,-625v2,-188,-62,-280,-227,-280v-183,0,-265,94,-281,280r508,0","w":1040,"k":{"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":23,"x":47,"z":23,"\"":25,"'":25}},"f":{"d":"514,-1303v-153,-7,-146,130,-145,279r272,0r0,143r-272,0r0,881r-164,0r0,-881r-160,0r0,-143r160,0v-10,-254,44,-428,293,-422v96,2,149,10,221,39r-37,137v-52,-24,-104,-31,-168,-33","w":653,"k":{"\u00ef":-123,"\u00ee":-49,"\u00ec":-98,"}":-123,"]":-123,"*":-33,",":49,".":49,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"t":33,"\"":-33,"'":-33,"\u00ae":-35,")":-123}},"g":{"d":"594,-1042v145,-1,249,25,348,61r0,1028v0,269,-146,387,-418,387v-144,1,-236,-16,-325,-55r43,-139v116,55,387,85,481,-16v61,-66,57,-195,57,-324r-8,0v-56,80,-133,123,-270,123v-305,0,-401,-199,-402,-531v-1,-340,161,-533,494,-534xm270,-510v3,211,52,389,260,389v154,0,218,-79,248,-215r0,-524v-55,-26,-124,-39,-209,-39v-211,0,-303,151,-299,389","w":1099},"h":{"d":"330,-909v70,-82,161,-140,313,-140v183,0,283,68,316,221v12,55,20,125,20,210r0,618r-164,0r0,-584v1,-187,-31,-321,-219,-321v-136,0,-274,101,-274,223r0,682r-164,0r0,-1434r164,0r0,525r8,0","w":1120},"i":{"d":"193,-1024r163,0r0,1024r-163,0r0,-1024xm270,-1227v-64,0,-112,-45,-112,-108v0,-61,48,-115,112,-115v63,0,119,54,119,115v0,62,-55,108,-119,108","w":548},"j":{"d":"18,291v166,5,173,-132,172,-297r0,-1018r164,0r0,1079v4,254,-85,405,-336,375r0,-139xm268,-1227v-64,0,-112,-45,-112,-108v0,-61,48,-115,112,-115v63,0,119,54,119,115v0,62,-55,108,-119,108","w":546},"k":{"d":"416,-461r-94,0r0,461r-164,0r0,-1434r164,0r0,873r84,-29r317,-434r190,0r-313,412r-84,67r102,82r343,463r-203,0","w":980,"k":{"\u00f8":49,"\u00f6":49,"\u00f5":49,"\u00f4":49,"\u00f3":49,"\u00f2":49,"\u00f0":49,"\u00eb":49,"\u00ea":49,"\u00e9":49,"\u00e8":49,"\u00e7":49,"q":49,"o":49,"g":49,"e":49,"c":49," ":61,"\u00a0":61,"-":94,"\u00ad":94,"v":14,"y":14,"\u00fd":14,"\u00ff":14,"x":33}},"l":{"d":"387,25v-134,0,-211,-78,-211,-230r0,-1229r164,0r0,1182v0,84,23,133,94,133v49,0,84,-6,127,-22r19,129v-39,20,-136,37,-193,37","w":598},"m":{"d":"1163,-905v-149,3,-210,92,-241,221r0,684r-164,0r0,-580v-1,-180,-13,-325,-193,-325v-131,0,-214,95,-243,200r0,705r-164,0r0,-1024r114,0r31,125r8,0v76,-85,157,-152,318,-150v146,2,216,53,258,170v57,-99,168,-169,317,-170v181,-1,270,68,300,222v11,56,18,127,18,213r0,614r-164,0r0,-616v2,-170,-23,-293,-195,-289","w":1662},"n":{"d":"311,-899v66,-86,177,-150,330,-150v183,0,281,70,316,221v13,55,22,125,22,210r0,618r-164,0r0,-584v-3,-193,-34,-318,-215,-321v-148,-2,-242,93,-278,205r0,700r-164,0r0,-1024r114,0r31,125r8,0","w":1120,"k":{"T":260}},"o":{"d":"549,25v-320,0,-446,-216,-449,-537v-3,-325,142,-537,449,-537v319,0,446,215,448,537v3,325,-141,537,-448,537xm270,-512v0,213,68,388,279,393v186,4,278,-129,278,-393v0,-216,-66,-389,-278,-393v-186,-4,-279,129,-279,393","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"p":{"d":"730,-14v-116,53,-300,51,-408,-2r0,426r-164,0r0,-1434r112,0r31,123r8,0v57,-89,155,-148,293,-148v304,0,406,183,406,517v0,258,-100,436,-278,518xm838,-535v-3,-209,-58,-370,-267,-370v-154,0,-218,84,-249,219r0,508v55,41,108,61,208,59v213,-4,312,-174,308,-416","w":1107,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"q":{"d":"598,-1042v122,-1,271,29,344,63r0,1389r-164,0r0,-512r-8,0v-55,82,-131,129,-268,127v-303,-4,-401,-203,-402,-533v-1,-342,165,-531,498,-534xm270,-510v4,211,50,391,260,391v154,0,218,-81,248,-217r0,-524v-51,-26,-120,-39,-209,-39v-211,0,-303,152,-299,389","w":1099},"r":{"d":"311,-899v49,-85,107,-145,232,-145v40,0,84,6,133,20r-35,158v-41,-14,-80,-21,-117,-21v-117,-2,-202,71,-202,170r0,717r-164,0r0,-1024r114,0r31,125r8,0","w":696,"k":{",":123,".":123,"t":-61}},"s":{"d":"129,-190v121,73,479,146,479,-89v0,-90,-63,-125,-128,-154v-159,-70,-365,-100,-365,-331v0,-198,120,-284,317,-285v136,-1,230,27,316,66r-39,135v-64,-29,-158,-59,-256,-57v-113,2,-173,28,-174,137v0,82,66,109,128,136v163,71,368,112,365,347v-2,211,-140,306,-356,310v-141,2,-251,-31,-336,-76","w":862},"t":{"d":"410,25v-186,0,-228,-104,-228,-308r0,-598r-159,0r0,-143r159,0r0,-203r164,-47r0,250r279,0r0,143r-279,0r0,568v2,121,15,190,117,194v77,3,114,-19,172,-41r37,125v-72,34,-158,60,-262,60","w":694,"k":{"-":66,"\u00ad":66,",":-33,".":-33,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"x":33}},"u":{"d":"805,-162v-63,103,-164,187,-330,187v-263,0,-334,-163,-334,-431r0,-618r164,0r0,584v1,179,24,323,201,321v159,-2,228,-106,276,-221r0,-684r164,0r0,733v0,95,6,214,23,291r-113,0r-41,-162r-10,0","w":1103},"v":{"d":"453,-424r57,195r2,0r51,-199r230,-596r176,0r-437,1047r-69,0r-445,-1047r189,0","w":987,"k":{" ":74,"\u00a0":74,"*":-29,",":147,".":147,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":-14,"y":-14,"\u00fd":-14,"\u00ff":-14,"w":-12,"x":27,"z":20}},"w":{"d":"821,-1024r236,598r51,197r4,0r39,-201r182,-594r156,0r-344,1047r-80,0r-268,-676r-39,-168r-6,0r-41,170r-258,674r-80,0r-357,-1047r179,0r202,596r35,199r2,0r49,-203r219,-592r119,0","w":1505,"k":{" ":49,"\u00a0":49,",":127,".":127,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":-12,"y":-12,"\u00fd":-12,"\u00ff":-12,"x":31,"z":33}},"x":{"d":"426,-524r-344,-500r201,0r194,283r58,116r59,-116r199,-283r184,0r-346,492r366,532r-194,0r-217,-311r-62,-123r-63,123r-221,311r-183,0","w":1054,"k":{" ":61,"\u00a0":61,"-":94,"\u00ad":94,"c":49,"e":49,"g":49,"o":49,"q":49,"\u00e7":49,"\u00e8":49,"\u00e9":49,"\u00ea":49,"\u00eb":49,"\u00f0":49,"\u00f2":49,"\u00f3":49,"\u00f4":49,"\u00f5":49,"\u00f6":49,"\u00f8":49,"v":14,"y":14,"\u00fd":14,"\u00ff":14,"x":33}},"y":{"d":"459,-360r57,196r10,0r45,-198r199,-662r166,0r-303,920v-64,171,-117,370,-236,480v-58,53,-168,52,-239,23r28,-141v70,24,113,4,162,-50v36,-39,65,-110,88,-208r-411,-1024r188,0","w":954,"k":{" ":74,"\u00a0":74,"*":-29,",":147,".":147,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":-14,"y":-14,"\u00fd":-14,"\u00ff":-14,"w":-12,"x":27,"z":20}},"z":{"d":"86,-143r473,-652r86,-86r-559,0r0,-143r729,0r0,143r-477,658r-84,80r561,0r0,143r-729,0r0,-143","w":915,"k":{" ":61,"\u00a0":61,"-":82,"\u00ad":82,"c":33,"e":33,"g":33,"o":33,"q":33,"\u00e7":33,"\u00e8":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00f0":33,"\u00f2":33,"\u00f3":33,"\u00f4":33,"\u00f5":33,"\u00f6":33,"\u00f8":33,"v":20,"y":20,"\u00fd":20,"\u00ff":20}},"{":{"d":"475,471v-127,0,-194,-79,-194,-213r0,-487v1,-130,-48,-177,-164,-181r0,-143v108,-1,164,-57,164,-172r0,-496v1,-127,64,-215,194,-215r174,0r0,144r-102,0v-80,1,-106,37,-107,121r0,485v4,111,-61,177,-143,194r0,13v80,12,143,100,143,203r0,483v2,83,26,120,109,121r100,0r0,143r-174,0","w":708,"k":{"-":74,"\u00ad":74,"V":-20,"c":12,"e":12,"g":12,"o":12,"q":12,"\u00e7":12,"\u00e8":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00f0":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12}},"|":{"d":"174,-1434r139,0r0,1700r-139,0r0,-1700","w":487},"}":{"d":"289,-1436v125,1,192,81,192,213r0,488v-1,130,49,176,164,180r0,143v-108,1,-164,57,-164,172r0,496v-1,127,-63,215,-194,215r-174,0r0,-143r102,0v79,-2,106,-37,107,-121r0,-486v-3,-111,58,-177,141,-194r0,-12v-79,-13,-141,-100,-141,-203r0,-483v-1,-82,-26,-121,-107,-121r-102,0r0,-144r176,0","w":708},"~":{"d":"352,-713v-94,0,-149,42,-219,97r-70,-123v92,-70,168,-118,291,-121v158,-4,230,112,379,112v74,0,118,-30,168,-73r70,125v-82,55,-151,93,-254,96v-155,4,-217,-113,-365,-113","w":1034},"\u00a0":{"w":546,"k":{"-":164,"\u00ad":164,",":27,".":27,"T":63,"V":61,"W":39,"X":61,"Y":61,"\u00dd":61,"Z":45,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"z":61,"\u00c6":82,"\"":139,"'":139,"A":66,"\u00c0":66,"\u00c1":66,"\u00c2":66,"\u00c3":66,"\u00c4":66,"\u00c5":66}},"\u00a1":{"d":"360,410r-170,0r0,-711r35,-361r101,0r34,361r0,711xm268,-809v-70,0,-116,-49,-116,-119v0,-73,46,-119,116,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":622},"\u00a2":{"d":"684,-119v85,-4,159,-36,207,-74r53,125v-63,46,-148,76,-246,86r0,187r-145,0r0,-185v-274,-27,-373,-232,-375,-532v-2,-297,123,-498,375,-530r0,-187r145,0r0,182v92,6,164,27,228,58r-47,139v-53,-26,-122,-48,-195,-53r0,784xm348,-512v1,198,63,346,225,385r0,-772v-150,29,-225,158,-225,387"},"\u00a3":{"d":"332,-416v0,-91,-21,-159,-47,-225r-199,0r0,-143r135,0v-33,-74,-57,-155,-57,-267v0,-266,165,-407,428,-407v149,0,275,22,369,65r-54,146v-77,-35,-189,-60,-317,-60v-159,0,-256,92,-256,246v0,117,33,197,69,277r330,0r0,143r-268,0v54,128,51,353,-37,442r-80,68r0,8r127,-29r524,0r0,152r-913,0r0,-147v164,-4,246,-111,246,-269"},"\u00a4":{"d":"270,-498v-88,-107,-77,-316,0,-420r-69,-43r-158,-159r100,-101r160,158r43,72v110,-90,310,-91,422,0r45,-72r160,-158r100,101r-158,159r-71,46v88,111,86,308,0,419r71,43r158,160r-100,98r-160,-157r-43,-68v-109,85,-318,85,-424,0r-43,68r-160,157r-100,-98r158,-160xm557,-924v-120,0,-209,98,-209,217v0,119,88,215,209,215v120,0,211,-95,211,-215v0,-120,-92,-217,-211,-217"},"\u00a5":{"d":"227,-672r193,0r-416,-762r199,0r336,627v13,40,20,88,36,125r37,-129r322,-623r182,0r-416,762r193,0r0,123r-248,0r0,129r248,0r0,123r-248,0r0,297r-170,0r0,-297r-248,0r0,-123r248,0r0,-129r-248,0r0,-123"},"\u00a6":{"d":"174,-422r139,0r0,688r-139,0r0,-688xm313,-745r-139,0r0,-689r139,0r0,689","w":487},"\u00a7":{"d":"481,-119v105,-2,181,-24,181,-121v0,-84,-74,-111,-142,-137v-177,-68,-403,-101,-403,-346v0,-100,56,-179,116,-231r84,-29v-68,-45,-126,-102,-124,-217v2,-165,139,-258,321,-258v136,0,234,23,320,63r-39,138v-111,-56,-439,-121,-439,63v0,83,74,109,142,135v178,68,403,104,403,348v0,99,-55,178,-115,230r-92,28v71,45,133,105,131,220v-4,182,-141,254,-323,258v-141,3,-232,-26,-320,-68r41,-133v65,30,159,59,258,57xm582,-510v74,-38,155,-92,155,-197v0,-161,-186,-165,-307,-219v-72,34,-153,96,-149,199v7,159,180,165,301,217","w":1017},"\u00a8":{"d":"223,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm616,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":841},"\u00a9":{"d":"156,-290v-68,-175,-69,-438,6,-608v108,-246,326,-417,663,-417v337,0,557,172,664,417v75,173,75,435,0,608v-107,247,-326,417,-664,417v-348,0,-569,-159,-669,-417xm293,-845v-59,141,-59,361,0,502v85,202,258,335,532,335v274,0,449,-134,533,-335v59,-141,59,-361,0,-502v-85,-202,-259,-335,-533,-335v-273,0,-448,134,-532,335xm645,-594v0,152,66,250,211,250v64,0,119,-12,164,-37r43,121v-64,36,-139,55,-242,55v-227,0,-340,-159,-340,-389v0,-297,236,-465,512,-356r56,22r-54,125v-47,-25,-98,-39,-155,-39v-137,0,-195,83,-195,248","w":1650},"\u00aa":{"d":"426,-1335v-98,-1,-197,20,-256,51r-31,-102v75,-40,199,-64,322,-64v161,0,219,60,221,207v3,154,-20,330,10,465r-112,0r-27,-94r-8,0v-43,50,-106,102,-213,102v-133,0,-234,-69,-234,-195v0,-206,226,-231,445,-225v2,-14,2,-29,2,-45v-3,-81,-31,-99,-119,-100xm242,-975v-2,60,48,90,112,90v101,0,157,-47,189,-112r0,-86v-129,-2,-297,-20,-301,108","w":790},"\u00ab":{"d":"455,-530r323,-467r109,86r-199,295r-98,84r98,73r211,289r-106,88xm80,-530r328,-471r110,88r-201,297r-98,84r98,73r213,291r-110,90","w":978},"\u00ac":{"d":"84,-803r868,0r0,393r-147,0r0,-245r-721,0r0,-148","w":1034},"\u00ad":{"d":"121,-666r495,0r0,152r-495,0r0,-152","w":737,"k":{" ":164,"\u00a0":164,"*":227,",":258,".":258,"T":172,"V":59,"X":164,"Y":27,"\u00dd":27,"Z":20,"\u00c6":90,"\"":250,"'":250,")":74,"]":74,"}":74}},"\u00ae":{"d":"216,-691v-56,-131,-56,-334,1,-465v81,-186,245,-310,500,-310v256,0,423,123,501,310v56,131,56,334,-1,465v-81,186,-246,310,-500,310v-256,0,-423,-122,-501,-310xm717,-1346v-265,0,-414,151,-414,422v0,269,152,422,414,422v266,0,411,-150,413,-422v1,-211,-99,-337,-252,-395v-50,-18,-104,-27,-161,-27xm920,-1051v0,89,-66,134,-146,140r57,28r152,224r-125,0r-147,-213r-99,-31r0,244r-106,0r0,-531v154,-32,414,-52,414,139xm612,-965v93,0,197,9,195,-82v0,-48,-40,-71,-119,-71v-27,0,-59,0,-76,8r0,145","w":1433},"\u00af":{"d":"123,-1317r606,0r0,127r-606,0r0,-127","w":851},"\u00b0":{"d":"463,-881v-180,0,-289,-108,-289,-288v0,-138,75,-225,176,-268v35,-14,73,-21,113,-21v180,0,289,109,289,289v0,180,-110,288,-289,288xm463,-1335v-88,0,-160,69,-160,166v0,97,72,165,160,165v87,0,160,-69,160,-165v0,-97,-72,-166,-160,-166","w":870},"\u00b1":{"d":"82,-1012r360,0r0,-368r148,0r0,368r360,0r0,148r-360,0r0,248r-148,0r0,-248r-360,0r0,-148xm82,-512r868,0r0,147r-868,0r0,-147","w":1034},"\u00b2":{"d":"393,-1653v164,-1,260,83,260,240v0,161,-85,257,-164,353v-32,39,-60,84,-104,114r-94,65r0,4r117,-30r286,0r0,129r-596,0r0,-68v124,-104,280,-251,366,-401v31,-53,46,-103,46,-148v2,-83,-62,-127,-141,-127v-76,-1,-151,35,-199,64r-45,-117v64,-45,164,-77,268,-78","w":806},"\u00b3":{"d":"168,-926v46,21,108,39,178,39v120,0,203,-42,203,-153v0,-103,-77,-150,-199,-148r-112,0r0,-47r198,-238r70,-55v-108,18,-242,11,-367,12r0,-122r525,0r0,67r-211,252r-52,37r0,4v168,-30,291,75,291,238v0,256,-326,332,-555,237","w":808},"\u00b4":{"d":"244,-1475r182,0r0,43r-207,263r-96,0","w":548},"\u00b5":{"d":"510,25v-127,0,-184,-39,-240,-103r-10,0r43,215r0,273r-164,0r0,-1434r164,0r0,580v3,197,41,323,225,325v160,2,264,-109,299,-241r0,-664r164,0r0,690v1,119,3,236,31,334r-113,0r-57,-152r-8,0v-56,96,-176,177,-334,177","w":1130},"\u03bc":{"d":"510,25v-127,0,-184,-39,-240,-103r-10,0r43,215r0,273r-164,0r0,-1434r164,0r0,580v3,197,41,323,225,325v160,2,264,-109,299,-241r0,-664r164,0r0,690v1,119,3,236,31,334r-113,0r-57,-152r-8,0v-56,96,-176,177,-334,177","w":1130},"\u00b6":{"d":"698,-1434r140,0r0,1700r-140,0r0,-1700xm379,-635v-158,-7,-239,-126,-280,-253v-71,-221,25,-437,180,-512v67,-33,144,-35,239,-34r0,1700r-139,0r0,-901","w":1011},"\u00b7":{"d":"272,-487v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":546},"\u00b8":{"d":"137,317v61,10,176,21,176,-57v0,-40,-57,-65,-176,-76r99,-184r116,0r-49,88v99,19,162,53,162,154v0,153,-176,207,-342,176","w":587},"\u00b9":{"d":"147,-903r218,0r0,-520r14,-74r-55,57r-160,97r-55,-101r315,-209r84,0r0,750r194,0r0,125r-555,0r0,-125","w":806},"\u00ba":{"d":"408,-762v-217,0,-318,-126,-318,-348v0,-218,103,-348,318,-348v217,0,317,126,317,348v0,222,-100,348,-317,348xm408,-1339v-127,0,-166,76,-166,229v0,144,43,229,166,229v131,0,165,-91,165,-229v0,-138,-34,-229,-165,-229","w":815},"\u00bb":{"d":"526,-549r-327,467r-107,-86r197,-295r100,-84r-100,-74r-209,-288r106,-88xm899,-549r-328,471r-110,-88r201,-297r98,-84r-98,-74r-213,-290r108,-90","w":978},"\u00bc":{"d":"367,-1219r14,-73r-57,57r-160,96r-55,-100r315,-209r86,0r0,875r-143,0r0,-646xm1632,-197r-170,0r0,197r-137,0r0,-197r-418,0r0,-75r463,-619r92,0r0,574r170,0r0,120xm1325,-317v1,-124,-6,-256,12,-363r-4,0r-45,94r-160,215r-67,64v80,-11,172,-11,264,-10xm1327,-1460r107,71r-998,1414r-106,-74","w":1714},"\u00bd":{"d":"367,-1219r14,-73r-57,57r-160,96r-55,-100r315,-209r86,0r0,875r-143,0r0,-646xm1358,-874v164,0,260,83,260,239v0,224,-153,337,-268,467r-95,66r0,4r117,-31r287,0r0,129r-596,0r0,-68v124,-104,280,-251,365,-401v30,-54,47,-102,47,-147v0,-83,-61,-127,-142,-127v-77,0,-150,34,-198,63r-45,-117v64,-46,163,-77,268,-77xm1327,-1460r107,71r-998,1414r-106,-74","w":1740},"\u00be":{"d":"1712,-197r-170,0r0,197r-137,0r0,-197r-418,0r0,-75r463,-619r92,0r0,574r170,0r0,120xm1405,-317v1,-124,-6,-256,12,-363r-4,0r-45,94r-160,215r-67,64v80,-11,172,-11,264,-10xm186,-721v46,22,109,39,179,39v120,0,202,-43,202,-154v0,-103,-77,-149,-198,-147r-113,0r0,-47r199,-238r69,-55v-108,18,-241,11,-366,12r0,-123r524,0r0,68r-211,252r-51,37r0,4v167,-30,291,76,291,237v0,218,-232,316,-461,265v-35,-8,-67,-17,-94,-27xm1407,-1460r106,71r-997,1414r-106,-74","w":1794},"\u00bf":{"d":"817,332v-108,63,-205,104,-377,102v-225,-3,-364,-113,-364,-334v0,-314,255,-387,347,-612v18,-42,28,-93,28,-150r135,0v25,313,-213,407,-315,616v-17,36,-25,78,-25,124v0,138,79,213,235,213v103,0,215,-45,281,-86xm508,-811v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":892},"\u00c0":{"d":"752,-1540r-152,0r-324,-199r0,-43r234,0xm856,-397r-528,0r-144,397r-168,0r543,-1456r78,0r545,1456r-178,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221","w":1198},"\u00c1":{"d":"678,-1782r233,0r0,43r-333,199r-142,0xm856,-397r-528,0r-144,397r-168,0r543,-1456r78,0r545,1456r-178,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221","w":1198},"\u00c2":{"d":"543,-1782r123,0r260,209r0,43r-166,0r-123,-100r-35,-72r-39,70r-131,102r-162,0r0,-45xm856,-397r-528,0r-144,397r-168,0r543,-1456r78,0r545,1456r-178,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221","w":1198},"\u00c3":{"d":"457,-1585v-61,0,-93,24,-131,61r-50,-84v67,-68,120,-109,222,-112v141,-4,263,131,379,24r51,88v-58,54,-111,88,-197,90v-109,3,-169,-67,-274,-67xm856,-397r-528,0r-144,397r-168,0r543,-1456r78,0r545,1456r-178,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221","w":1198},"\u00c4":{"d":"406,-1532v-61,0,-110,-38,-111,-94v0,-59,48,-96,111,-96v60,0,106,38,106,96v0,55,-48,94,-106,94xm795,-1532v-58,0,-107,-39,-107,-94v0,-58,47,-96,107,-96v63,0,110,37,110,96v0,56,-49,94,-110,94xm856,-397r-528,0r-144,397r-168,0r543,-1456r78,0r545,1456r-178,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221","w":1198},"\u00c5":{"d":"541,-1407v-94,-14,-156,-68,-156,-166v0,-115,81,-174,215,-174v128,0,217,52,217,174v0,99,-67,153,-162,166r527,1407r-178,0r-148,-397r-528,0r-144,397r-168,0xm383,-545r422,0r-160,-436r-51,-217r-2,0r-51,221xm600,-1659v-57,0,-90,32,-90,86v1,51,32,82,90,82v56,0,93,-29,92,-82v0,-55,-34,-86,-92,-86","w":1198},"\u00c6":{"d":"801,-1229r-70,211r-272,469r350,0r0,-680r-8,0xm809,-406r-438,0r-230,406r-186,0r850,-1434r784,0r0,152r-610,0r0,469r559,0r0,151r-559,0r0,510r620,0r0,152r-790,0r0,-406","w":1732},"\u00c7":{"d":"585,-164v139,62,361,40,466,-29r41,134v-70,56,-181,75,-301,82r-35,65v99,19,162,53,162,154v0,150,-174,210,-343,176r19,-80v81,6,172,3,172,-78v0,-38,-59,-64,-176,-76r86,-164v-384,-38,-559,-309,-561,-737v-1,-365,144,-598,397,-700v165,-66,416,-48,559,8r-41,149v-99,-47,-316,-69,-446,-16v-194,80,-289,275,-289,559v1,277,100,468,290,553","w":1169,"k":{" ":82,"\u00a0":82,"-":160,"\u00ad":160,"C":53,"G":53,"O":53,"Q":53,"\u00c7":53,"\u00d2":53,"\u00d3":53,"\u00d4":53,"\u00d5":53,"\u00d6":53,"\u00d8":53,"T":57,"V":55,"W":12,"X":86,"Y":72,"\u00dd":72,"Z":49,"c":72,"e":72,"g":72,"o":72,"q":72,"\u00e7":72,"\u00e8":72,"\u00e9":72,"\u00ea":72,"\u00eb":72,"\u00f0":72,"\u00f2":72,"\u00f3":72,"\u00f4":72,"\u00f5":72,"\u00f6":72,"\u00f8":72,"t":72,"v":86,"y":86,"\u00fd":86,"\u00ff":86,"w":82,"x":57,"z":47,"\u00c6":233,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"a":35,"m":35,"n":35,"p":35,"r":35,"s":35,"u":35,"\u00e6":35}},"\u00c8":{"d":"668,-1540r-152,0r-323,-199r0,-43r233,0xm174,-1434r780,0r0,152r-610,0r0,469r559,0r0,151r-559,0r0,510r621,0r0,152r-791,0r0,-1434","w":1097},"\u00c9":{"d":"676,-1782r233,0r0,43r-334,199r-141,0xm174,-1434r780,0r0,152r-610,0r0,469r559,0r0,151r-559,0r0,510r621,0r0,152r-791,0r0,-1434","w":1097},"\u00ca":{"d":"496,-1782r122,0r261,209r0,43r-166,0r-123,-100r-35,-72r-39,70r-131,102r-162,0r0,-45xm174,-1434r780,0r0,152r-610,0r0,469r559,0r0,151r-559,0r0,510r621,0r0,152r-791,0r0,-1434","w":1097},"\u00cb":{"d":"356,-1532v-61,0,-110,-37,-110,-94v-1,-59,47,-96,110,-96v60,0,107,38,107,96v0,55,-49,94,-107,94xm745,-1532v-58,0,-106,-39,-106,-94v0,-58,47,-96,106,-96v63,0,111,37,111,96v-1,56,-50,94,-111,94xm174,-1434r780,0r0,152r-610,0r0,469r559,0r0,151r-559,0r0,510r621,0r0,152r-791,0r0,-1434","w":1097},"\u00cc":{"d":"399,-1540r-151,0r-324,-199r0,-43r234,0xm213,-1434r170,0r0,1434r-170,0r0,-1434","w":595},"\u00cd":{"d":"369,-1782r233,0r0,43r-334,199r-141,0xm213,-1434r170,0r0,1434r-170,0r0,-1434","w":595},"\u00ce":{"d":"242,-1782r123,0r260,209r0,43r-166,0r-123,-100r-35,-72r-39,70r-131,102r-162,0r0,-45xm213,-1434r170,0r0,1434r-170,0r0,-1434","w":595},"\u00cf":{"d":"106,-1532v-61,0,-110,-38,-110,-94v0,-59,47,-96,110,-96v60,0,107,38,107,96v0,55,-49,94,-107,94xm496,-1532v-58,0,-107,-39,-107,-94v0,-58,47,-96,107,-96v63,0,110,37,110,96v0,56,-49,94,-110,94xm213,-1434r170,0r0,1434r-170,0r0,-1434","w":595},"\u00d0":{"d":"-2,-803r184,0r0,-631v113,-16,256,-16,383,-16v453,0,668,273,668,723v0,336,-135,568,-371,683v-169,82,-450,62,-680,46r0,-682r-184,0r0,-123xm510,-134v390,18,543,-229,543,-593v0,-352,-160,-589,-542,-571v-54,3,-113,5,-159,10r0,485r301,0r0,123r-301,0r0,539v43,5,111,5,158,7","w":1347,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d1":{"d":"547,-1585v-61,0,-93,24,-131,61r-49,-84v66,-68,120,-109,221,-112v141,-4,262,131,379,24r51,88v-58,54,-111,88,-197,90v-109,3,-169,-67,-274,-67xm432,-938r-110,-207r-9,0r21,207r0,938r-160,0r0,-1456r90,0r686,956r107,197r10,0r-23,-197r0,-934r160,0r0,1457r-90,0","w":1378},"\u00d2":{"d":"840,-1540r-152,0r-323,-199r0,-43r233,0xm698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d3":{"d":"850,-1782r233,0r0,43r-333,199r-142,0xm698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d4":{"d":"639,-1782r123,0r260,209r0,43r-166,0r-123,-100r-35,-72r-39,70r-131,102r-161,0r0,-45xm698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d5":{"d":"553,-1585v-61,0,-93,24,-131,61r-49,-84v66,-68,120,-109,221,-112v141,-4,262,131,379,24r51,88v-58,54,-110,88,-197,90v-109,2,-169,-67,-274,-67xm698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d6":{"d":"500,-1532v-61,0,-110,-38,-111,-94v0,-59,48,-96,111,-96v60,0,106,37,106,96v0,56,-48,94,-106,94xm889,-1532v-58,0,-107,-39,-107,-94v0,-58,47,-96,107,-96v63,0,111,36,110,96v0,57,-49,94,-110,94xm698,25v-425,0,-579,-309,-583,-742v-4,-439,177,-741,583,-741v429,0,583,307,588,741v5,440,-181,742,-588,742xm402,-1162v-134,169,-142,660,-11,858v64,97,155,176,307,177v127,0,224,-50,299,-144v135,-169,144,-659,12,-858v-65,-98,-158,-177,-311,-178v-126,0,-221,51,-296,145","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d7":{"d":"260,-1059r258,260r260,-260r105,109r-258,258r258,260r-105,106r-260,-262r-260,262r-106,-104r262,-264r-258,-256","w":1034},"\u00d8":{"d":"1286,-717v3,440,-181,742,-588,742v-146,0,-265,-39,-358,-115r-80,115r-106,-74r96,-137v-92,-130,-135,-308,-135,-531v0,-439,177,-741,583,-741v162,0,277,44,367,121r86,-123r106,71r-104,148v89,130,131,307,133,524xm961,-1192v-59,-67,-142,-115,-263,-115v-126,0,-221,51,-296,145v-124,155,-144,605,-35,812xm442,-233v60,63,139,106,256,106v127,0,223,-51,299,-144v124,-152,146,-595,39,-804","w":1400,"k":{",":61,".":61,"T":98,"V":53,"W":41,"X":100,"Y":84,"\u00dd":84,"Z":49,"v":33,"y":33,"\u00fd":33,"\u00ff":33,"x":61,"z":47,"\u00c6":102,"\"":82,"'":82,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51}},"\u00d9":{"d":"834,-1540r-152,0r-324,-199r0,-43r234,0xm688,-133v242,-4,309,-132,309,-391r0,-910r164,0r0,957v-1,321,-158,495,-475,495v-329,0,-511,-140,-512,-462r0,-990r170,0r0,910v-3,254,94,394,344,391","w":1335},"\u00da":{"d":"799,-1782r233,0r0,43r-334,199r-141,0xm688,-133v242,-4,309,-132,309,-391r0,-910r164,0r0,957v-1,321,-158,495,-475,495v-329,0,-511,-140,-512,-462r0,-990r170,0r0,910v-3,254,94,394,344,391","w":1335},"\u00db":{"d":"616,-1782r123,0r260,209r0,43r-165,0r-123,-100r-35,-72r-39,70r-131,102r-162,0r0,-45xm688,-133v242,-4,309,-132,309,-391r0,-910r164,0r0,957v-1,321,-158,495,-475,495v-329,0,-511,-140,-512,-462r0,-990r170,0r0,910v-3,254,94,394,344,391","w":1335},"\u00dc":{"d":"475,-1532v-61,0,-110,-37,-110,-94v-1,-59,47,-96,110,-96v60,0,107,38,107,96v0,55,-49,94,-107,94xm864,-1532v-58,0,-106,-38,-106,-94v0,-59,46,-96,106,-96v63,0,111,37,111,96v-1,56,-50,94,-111,94xm688,-133v242,-4,309,-132,309,-391r0,-910r164,0r0,957v-1,321,-158,495,-475,495v-329,0,-511,-140,-512,-462r0,-990r170,0r0,910v-3,254,94,394,344,391","w":1335},"\u00dd":{"d":"727,-1782r234,0r0,43r-334,199r-142,0xm489,-569r-473,-865r199,0r336,627v14,40,20,88,37,125r37,-129r321,-623r182,0r-469,863r0,571r-170,0r0,-569","w":1142,"k":{"\u00f6":174,"\u00f5":174,"\u00ef":127,"\u00ee":127,"\u00ec":127,"\u00eb":174,"\u00e8":174,"\u00e1":127," ":51,"\u00a0":51,"*":-49,"-":127,"\u00ad":127,",":219,".":219,"C":84,"G":84,"O":84,"Q":84,"\u00c7":84,"\u00d2":84,"\u00d3":84,"\u00d4":84,"\u00d5":84,"\u00d6":84,"\u00d8":84,"T":25,"X":55,"Z":51,"c":174,"e":174,"g":174,"o":174,"q":174,"\u00e7":174,"\u00e9":174,"\u00ea":174,"\u00f0":174,"\u00f2":174,"\u00f3":174,"\u00f4":174,"\u00f8":174,"t":80,"v":98,"y":98,"\u00fd":98,"\u00ff":98,"w":82,"x":123,"z":133,"\u00c6":197,"\"":-74,"'":-74,"A":139,"\u00c0":139,"\u00c1":139,"\u00c2":139,"\u00c3":139,"\u00c4":139,"\u00c5":139,"a":147,"m":147,"n":147,"p":147,"r":147,"s":147,"u":147,"\u00e6":147,"\u00e0":127,"\u00e2":127,"\u00e3":127,"\u00e4":127,"\u00e5":127,"\u00ed":127,"\u00f1":127,"\u00f9":127,"\u00fa":127,"\u00fb":127,"\u00fc":127}},"\u00de":{"d":"174,-1638r170,0r0,358v204,-15,416,-5,545,80v105,69,180,177,180,354v0,388,-324,508,-725,465r0,381r-170,0r0,-1638xm889,-846v0,-274,-285,-322,-545,-280r0,594v43,10,106,8,160,8v227,0,385,-86,385,-322","w":1144,"k":{" ":82,"\u00a0":82,",":266,".":266,"C":35,"G":35,"O":35,"Q":35,"\u00c7":35,"\u00d2":35,"\u00d3":35,"\u00d4":35,"\u00d5":35,"\u00d6":35,"\u00d8":35,"T":33,"X":86,"Y":51,"\u00dd":51,"Z":57,"c":74,"e":74,"g":74,"o":74,"q":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"x":74,"z":55,"\u00c6":225,"A":129,"\u00c0":129,"\u00c1":129,"\u00c2":129,"\u00c3":129,"\u00c4":129,"\u00c5":129,"a":72,"m":72,"n":72,"p":72,"r":72,"s":72,"u":72,"\u00e6":72,"\u00e0":72,"\u00e1":72,"\u00e2":72,"\u00e3":72,"\u00e4":72,"\u00e5":72,"\u00ec":72,"\u00ed":72,"\u00ee":72,"\u00ef":72,"\u00f1":72,"\u00f9":72,"\u00fa":72,"\u00fb":72,"\u00fc":72}},"\u00df":{"d":"541,-170v81,63,273,72,350,-6v34,-35,66,-77,65,-143v-4,-179,-198,-174,-308,-251v-61,-42,-107,-95,-107,-200v0,-160,130,-207,209,-287v38,-38,49,-104,17,-151v-37,-53,-105,-93,-189,-95v-171,-5,-209,107,-209,283r0,1020r-164,0r0,-881r-160,0r0,-143r160,0v-15,-280,109,-423,366,-422v170,1,293,65,352,177v37,72,37,190,-12,247v-51,59,-111,106,-170,156v-46,39,-55,120,-8,157v109,86,292,102,357,237v34,71,32,189,6,274v-61,202,-389,289,-602,165","w":1212},"\u00e0":{"d":"496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168xm625,-1169r-93,0r-235,-263r0,-43r194,0","w":1015},"\u00e1":{"d":"496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168xm488,-1475r182,0r0,43r-207,263r-96,0","w":1015},"\u00e2":{"d":"489,-1499r66,0r227,373r-147,0r-80,-136r-43,-118r-45,118r-92,136r-137,0xm496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168","w":1015},"\u00e3":{"d":"387,-1321v-54,0,-80,29,-117,64r-47,-86v62,-68,107,-119,199,-119v97,0,138,82,229,82v30,0,61,-17,94,-50r50,89v-55,61,-97,102,-179,102v-97,0,-137,-82,-229,-82xm496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168","w":1015},"\u00e4":{"d":"496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168xm315,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm708,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":1015},"\u00e5":{"d":"510,-1133v-112,0,-199,-68,-199,-184v0,-115,82,-187,199,-186v117,1,201,62,201,186v0,106,-92,184,-201,184xm510,-1405v-49,0,-88,31,-88,88v0,51,40,86,88,86v54,0,90,-29,90,-86v0,-56,-41,-88,-90,-88xm496,-897v-116,0,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v222,0,325,104,325,315v0,242,-38,522,17,729r-121,0r-43,-143r-10,0v-63,91,-163,155,-320,155v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310v4,-41,7,-77,7,-110v-3,-154,-51,-203,-209,-203xm250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168","w":1015},"\u00e6":{"d":"250,-291v-5,97,81,166,182,164v138,-2,225,-66,266,-162r0,-170v-196,-6,-438,-20,-448,168xm1143,25v-171,-1,-319,-77,-377,-197r-14,0v-77,104,-185,188,-365,188v-144,0,-238,-68,-284,-170v-16,-35,-23,-75,-23,-120v2,-301,315,-324,618,-310r7,-110v-3,-153,-51,-205,-209,-203v-116,2,-226,29,-303,72r-52,-123v98,-61,243,-92,398,-92v143,0,236,44,278,133v59,-89,189,-142,324,-142v259,0,392,135,389,408v0,50,-5,96,-10,145r-662,0v3,237,88,377,330,377v92,0,198,-42,246,-82r61,119v-79,64,-211,107,-352,107xm1370,-625v9,-183,-67,-280,-227,-280v-181,0,-269,93,-281,280r508,0","w":1630},"\u00e7":{"d":"575,-121v95,2,177,-32,228,-72r53,125v-67,48,-150,77,-248,88r-37,68v99,19,160,53,162,154v3,150,-174,209,-342,176r19,-80v81,6,172,3,172,-78v0,-38,-59,-64,-176,-76r86,-161v-289,-20,-390,-228,-392,-535v-2,-324,140,-537,445,-537v126,0,211,20,291,60r-48,141v-60,-34,-135,-57,-227,-57v-194,0,-291,131,-291,393v0,223,80,388,305,391","w":923,"k":{"y":25," ":49,"\u00a0":49,"-":94,"\u00ad":94,"c":47,"e":47,"g":47,"o":47,"q":47,"\u00e7":47,"\u00e8":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00f0":47,"\u00f2":47,"\u00f3":47,"\u00f4":47,"\u00f5":47,"\u00f6":47,"\u00f8":47,"x":33,"z":33,"\"":29,"'":29}},"\u00e8":{"d":"600,-119v89,0,200,-39,244,-82r61,119v-78,64,-211,108,-352,107v-323,-3,-450,-213,-453,-537v-3,-328,144,-537,451,-537v258,0,392,132,389,404v0,45,-4,94,-12,149r-658,0v1,236,91,377,330,377xm780,-625v2,-188,-62,-280,-227,-280v-183,0,-265,94,-281,280r508,0xm676,-1169r-93,0r-235,-263r0,-43r194,0","w":1040,"k":{"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":23,"x":47,"z":23,"\"":25,"'":25}},"\u00e9":{"d":"600,-119v89,0,200,-39,244,-82r61,119v-78,64,-211,108,-352,107v-323,-3,-450,-213,-453,-537v-3,-328,144,-537,451,-537v258,0,392,132,389,404v0,45,-4,94,-12,149r-658,0v1,236,91,377,330,377xm780,-625v2,-188,-62,-280,-227,-280v-183,0,-265,94,-281,280r508,0xm596,-1475r182,0r0,43r-207,263r-96,0","w":1040,"k":{"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":23,"x":47,"z":23,"\"":25,"'":25}},"\u00ea":{"d":"502,-1499r65,0r228,373r-148,0r-80,-136r-43,-118r-45,118r-92,136r-137,0xm600,-119v89,0,200,-39,244,-82r61,119v-78,64,-211,108,-352,107v-323,-3,-450,-213,-453,-537v-3,-328,144,-537,451,-537v258,0,392,132,389,404v0,45,-4,94,-12,149r-658,0v1,236,91,377,330,377xm780,-625v2,-188,-62,-280,-227,-280v-183,0,-265,94,-281,280r508,0","w":1040,"k":{"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":23,"x":47,"z":23,"\"":25,"'":25}},"\u00eb":{"d":"600,-119v89,0,200,-39,244,-82r61,119v-78,64,-211,108,-352,107v-323,-3,-450,-213,-453,-537v-3,-328,144,-537,451,-537v258,0,392,132,389,404v0,45,-4,94,-12,149r-658,0v1,236,91,377,330,377xm780,-625v2,-188,-62,-280,-227,-280v-183,0,-265,94,-281,280r508,0xm344,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm737,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":1040,"k":{"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":23,"x":47,"z":23,"\"":25,"'":25}},"\u00ec":{"d":"193,-1024r163,0r0,1024r-163,0r0,-1024xm353,-1169r-93,0r-235,-263r0,-43r194,0","w":548},"\u00ed":{"d":"193,-1024r163,0r0,1024r-163,0r0,-1024xm316,-1475r182,0r0,43r-207,263r-96,0","w":548},"\u00ee":{"d":"248,-1499r65,0r228,373r-148,0r-80,-136r-43,-118r-45,118r-92,136r-137,0xm193,-1024r163,0r0,1024r-163,0r0,-1024","w":548},"\u00ef":{"d":"193,-1024r163,0r0,1024r-163,0r0,-1024xm76,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm469,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":548,"k":{"\u00ae":-61}},"\u00f0":{"d":"786,-1282v156,149,251,366,250,678v-1,293,-89,501,-281,593v-114,54,-284,44,-390,-7v-167,-81,-250,-253,-250,-496v0,-237,101,-402,261,-487v135,-72,389,-45,460,51v-31,-106,-99,-198,-174,-264r-156,84r-55,-91r116,-63v-52,-31,-103,-54,-155,-66r71,-110v79,33,143,55,213,106r140,-76r53,93xm670,-892v-264,-44,-391,128,-387,380v3,229,84,393,303,393v163,0,230,-115,266,-258v27,-106,30,-285,8,-403v-36,-60,-109,-98,-190,-112","w":1148},"\u00f1":{"d":"438,-1321v-54,0,-79,29,-116,64r-48,-86v62,-68,107,-119,199,-119v97,0,138,82,229,82v30,0,62,-17,95,-50r49,89v-55,61,-96,102,-178,102v-97,0,-137,-82,-230,-82xm311,-899v66,-86,177,-150,330,-150v183,0,281,70,316,221v13,55,22,125,22,210r0,618r-164,0r0,-584v-3,-193,-34,-318,-215,-321v-148,-2,-242,93,-278,205r0,700r-164,0r0,-1024r114,0r31,125r8,0","w":1120},"\u00f2":{"d":"549,25v-320,0,-446,-216,-449,-537v-3,-325,142,-537,449,-537v319,0,446,215,448,537v3,325,-141,537,-448,537xm270,-512v0,213,68,388,279,393v186,4,278,-129,278,-393v0,-216,-66,-389,-278,-393v-186,-4,-279,129,-279,393xm650,-1169r-93,0r-235,-263r0,-43r194,0","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00f3":{"d":"549,25v-320,0,-446,-216,-449,-537v-3,-325,142,-537,449,-537v319,0,446,215,448,537v3,325,-141,537,-448,537xm270,-512v0,213,68,388,279,393v186,4,278,-129,278,-393v0,-216,-66,-389,-278,-393v-186,-4,-279,129,-279,393xm586,-1475r182,0r0,43r-207,263r-96,0","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00f4":{"d":"528,-1499r66,0r227,373r-147,0r-80,-136r-43,-118r-45,118r-92,136r-138,0xm549,25v-320,0,-446,-216,-449,-537v-3,-325,142,-537,449,-537v319,0,446,215,448,537v3,325,-141,537,-448,537xm270,-512v0,213,68,388,279,393v186,4,278,-129,278,-393v0,-216,-66,-389,-278,-393v-186,-4,-279,129,-279,393","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00f5":{"d":"428,-1321v-54,0,-80,29,-117,64r-47,-86v62,-68,107,-119,199,-119v97,0,138,82,229,82v30,0,61,-17,94,-50r50,89v-55,61,-97,102,-179,102v-97,0,-137,-82,-229,-82xm549,25v-320,0,-446,-216,-449,-537v-3,-325,142,-537,449,-537v319,0,446,215,448,537v3,325,-141,537,-448,537xm270,-512v0,213,68,388,279,393v186,4,278,-129,278,-393v0,-216,-66,-389,-278,-393v-186,-4,-279,129,-279,393","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00f6":{"d":"549,25v-320,0,-446,-216,-449,-537v-3,-325,142,-537,449,-537v319,0,446,215,448,537v3,325,-141,537,-448,537xm270,-512v0,213,68,388,279,393v186,4,278,-129,278,-393v0,-216,-66,-389,-278,-393v-186,-4,-279,129,-279,393xm354,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm747,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00f7":{"d":"82,-766r868,0r0,148r-868,0r0,-148xm514,-956v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119xm514,-188v-70,0,-117,-50,-117,-119v0,-72,46,-119,117,-119v73,0,121,46,121,119v0,70,-49,119,-121,119","w":1034},"\u00f8":{"d":"193,-143v-62,-91,-93,-217,-93,-369v-2,-325,142,-534,449,-537v100,0,183,22,250,66r53,-72r102,76r-59,86v71,91,101,221,102,381v2,325,-141,535,-448,537v-106,0,-194,-24,-262,-72r-56,76r-106,-78xm377,-180v43,34,96,61,172,61v186,0,278,-129,278,-393v0,-91,-14,-173,-43,-236xm711,-850v-39,-31,-92,-56,-162,-55v-186,-1,-279,129,-279,393v1,83,14,162,37,223","w":1097,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00f9":{"d":"805,-162v-63,103,-164,187,-330,187v-263,0,-334,-163,-334,-431r0,-618r164,0r0,584v1,179,24,323,201,321v159,-2,228,-106,276,-221r0,-684r164,0r0,733v0,95,6,214,23,291r-113,0r-41,-162r-10,0xm631,-1169r-93,0r-235,-263r0,-43r194,0","w":1103},"\u00fa":{"d":"805,-162v-63,103,-164,187,-330,187v-263,0,-334,-163,-334,-431r0,-618r164,0r0,584v1,179,24,323,201,321v159,-2,228,-106,276,-221r0,-684r164,0r0,733v0,95,6,214,23,291r-113,0r-41,-162r-10,0xm584,-1475r182,0r0,43r-207,263r-96,0","w":1103},"\u00fb":{"d":"532,-1499r66,0r227,373r-147,0r-80,-136r-43,-118r-45,118r-92,136r-137,0xm805,-162v-63,103,-164,187,-330,187v-263,0,-334,-163,-334,-431r0,-618r164,0r0,584v1,179,24,323,201,321v159,-2,228,-106,276,-221r0,-684r164,0r0,733v0,95,6,214,23,291r-113,0r-41,-162r-10,0","w":1103},"\u00fc":{"d":"805,-162v-63,103,-164,187,-330,187v-263,0,-334,-163,-334,-431r0,-618r164,0r0,584v1,179,24,323,201,321v159,-2,228,-106,276,-221r0,-684r164,0r0,733v0,95,6,214,23,291r-113,0r-41,-162r-10,0xm356,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm749,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":1103},"\u00fd":{"d":"459,-360r57,196r10,0r45,-198r199,-662r166,0r-303,920v-64,171,-117,370,-236,480v-58,53,-168,52,-239,23r28,-141v70,24,113,4,162,-50v36,-39,65,-110,88,-208r-411,-1024r188,0xm568,-1475r182,0r0,43r-207,263r-96,0","w":954,"k":{" ":74,"\u00a0":74,"*":-29,",":147,".":147,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":-14,"y":-14,"\u00fd":-14,"\u00ff":-14,"w":-12,"x":27,"z":20}},"\u00fe":{"d":"730,-14v-116,53,-300,51,-408,-2r0,426r-164,0r0,-1844r164,0r0,512r8,0v53,-77,142,-129,272,-127v304,5,406,183,406,517v0,258,-100,436,-278,518xm838,-535v-3,-209,-58,-368,-267,-370v-134,-1,-216,72,-249,219r0,510v55,40,108,59,208,57v213,-4,312,-174,308,-416","w":1107,"k":{"f":25,"*":29,",":25,".":25,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":23,"x":49,"z":33,"\"":109,"'":109,")":12,"]":12,"}":12}},"\u00ff":{"d":"459,-360r57,196r10,0r45,-198r199,-662r166,0r-303,920v-64,171,-117,370,-236,480v-58,53,-168,52,-239,23r28,-141v70,24,113,4,162,-50v36,-39,65,-110,88,-208r-411,-1024r188,0xm282,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v61,0,101,44,101,105v0,57,-43,100,-101,100xm675,-1237v-58,0,-100,-43,-100,-100v0,-60,40,-105,100,-105v62,0,103,43,103,105v0,58,-43,100,-103,100","w":954,"k":{" ":74,"\u00a0":74,"*":-29,",":147,".":147,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":-14,"y":-14,"\u00fd":-14,"\u00ff":-14,"w":-12,"x":27,"z":20}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2009 ParaType Ltd. All rights reserved.
 * 
 * Trademark:
 * PT Sans is a trademark of the ParaType Ltd.
 * 
 * Description:
 * PT Sans is a type family of universal use. It consists of 8 styles: regular and
 * bold weights with corresponding italics form a standard computer font family;
 * two narrow styles (regular and bold) are intended for documents that require
 * tight set; two caption styles (regular and bold) are for texts of small point
 * sizes. The design combines traditional conservative appearance with modern
 * trends of humanistic sans serif and characterized by enhanced legibility. These
 * features beside conventional use in business applications and printed stuff made
 * the fonts quite useable for direction and guide signs, schemes, screens of
 * information kiosks and other objects of urban visual communications.
 * 
 * The fonts next to standard Latin and Cyrillic character sets contain signs of
 * title languages of the national republics of Russian Federation and support the
 * most of the languages of neighboring countries. The fonts were developed and
 * released by ParaType in 2009 with financial support from Federal Agency of Print
 * and Mass Communications of Russian Federation. Design - Alexandra Korolkova with
 * assistance of Olga Umpeleva and supervision of Vladimir Yefimov.
 * 
 * Manufacturer:
 * ParaType Ltd
 * 
 * Designer:
 * A.Korolkova, O.Umpeleva, V.Yefimov
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL_web
 */
Cufon.registerFont({"w":1161,"face":{"font-family":"PT Sans","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 3 2 2 3 2 2 4","ascent":"1536","descent":"-512","x-height":"29","bbox":"-92 -1782 2019.74 471.008","underline-thickness":"102.4","underline-position":"-102.4","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":518,"k":{"*":72,"-":90,"\u00ad":90,",":143,".":143,"A":82,"\u00c0":82,"\u00c1":82,"\u00c2":82,"\u00c3":82,"\u00c4":82,"\u00c5":82,"C":27,"G":27,"O":27,"Q":27,"\u00c7":27,"\u00d2":27,"\u00d3":27,"\u00d4":27,"\u00d5":27,"\u00d6":27,"\u00d8":27,"T":74,"V":61,"W":51,"X":61,"Y":61,"\u00dd":61,"Z":23,"v":41,"y":41,"\u00fd":41,"\u00ff":41,"w":27,"x":35,"\u00c6":45,"\"":172,"'":172}},"!":{"d":"205,-1434r274,0r0,674r-53,334r-168,0r-53,-334r0,-674xm340,23v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":602},"\"":{"d":"184,-1434r234,0r-74,443r-160,0r0,-443xm487,-1434r234,0r-74,443r-160,0r0,-443","w":823,"k":{" ":186,"\u00a0":186,"-":412,"\u00ad":412,",":268,".":268,"A":262,"\u00c0":262,"\u00c1":262,"\u00c2":262,"\u00c3":262,"\u00c4":262,"\u00c5":262,"C":82,"G":82,"O":82,"Q":82,"\u00c7":82,"\u00d2":82,"\u00d3":82,"\u00d4":82,"\u00d5":82,"\u00d6":82,"\u00d8":82,"T":-41,"V":-82,"W":-82,"Y":-74,"\u00dd":-74,"Z":-41,"c":213,"e":213,"g":213,"o":213,"q":213,"\u00e7":213,"\u00e8":213,"\u00e9":213,"\u00ea":213,"\u00eb":213,"\u00f0":213,"\u00f2":213,"\u00f3":213,"\u00f4":213,"\u00f5":213,"\u00f6":213,"\u00f8":213,"t":20,"z":27,"\u00c6":410,"a":150,"m":150,"n":150,"p":150,"r":150,"s":150,"u":150,"\u00e6":150}},"#":{"d":"592,-420r-182,0r-74,316r-219,0r73,-316r-151,0r45,-198r154,0r51,-218r-148,0r45,-198r150,0r72,-295r217,0r-70,295r182,0r72,-295r217,0r-70,295r148,0r-51,198r-144,0r-51,218r141,0r-49,198r-139,0r-74,316r-219,0xm457,-618r182,0r51,-218r-182,0"},"$":{"d":"1057,-416v3,257,-140,389,-357,430r0,191r-213,0r0,-178v-133,-4,-260,-31,-342,-72r80,-231v63,35,158,64,262,71r0,-420v-175,-79,-345,-174,-346,-428v-1,-240,141,-361,346,-399r0,-186r213,0r0,178v115,7,201,33,283,67r-74,228v-55,-25,-130,-50,-209,-58r0,383v173,82,354,172,357,424xm612,-205v111,-12,179,-68,179,-180v0,-105,-100,-142,-179,-184r0,364xm575,-1229v-114,2,-167,54,-167,154v0,100,91,136,167,178r0,-332"},"%":{"d":"1386,-1462r150,135r-1180,1356r-149,-142xm463,-762v-232,0,-359,-111,-358,-348v1,-233,128,-348,358,-348v233,0,360,113,360,348v0,235,-127,348,-360,348xm463,-1286v-99,0,-121,61,-121,176v0,117,40,176,121,176v102,0,121,-60,121,-176v0,-115,-20,-176,-121,-176xm1294,-2v-232,0,-359,-111,-358,-348v1,-233,128,-348,358,-348v233,0,360,113,360,348v0,235,-127,348,-360,348xm1294,-526v-99,0,-121,61,-121,176v0,117,40,176,121,176v102,0,121,-60,121,-176v0,-115,-20,-176,-121,-176","w":1720},"&":{"d":"1155,-143v-105,91,-250,175,-457,172v-228,-3,-391,-93,-470,-247v-48,-92,-53,-224,-14,-328v58,-155,180,-263,318,-341v-73,-97,-156,-234,-97,-388v46,-120,161,-189,335,-187v202,2,346,75,346,262v0,56,-19,114,-59,175v-40,61,-107,119,-203,175v96,149,183,262,303,385v65,-69,115,-185,152,-285r192,103v-42,116,-113,233,-182,323v77,71,131,109,215,156r-141,197v-87,-42,-167,-104,-238,-172xm455,-420v-10,202,255,272,432,190v48,-23,83,-48,108,-75v-127,-130,-244,-277,-340,-420v-106,88,-192,150,-200,305xm791,-1264v-70,0,-108,40,-109,105v0,57,25,118,74,184v78,-53,151,-92,151,-182v0,-71,-39,-107,-116,-107","w":1667},"'":{"d":"184,-1434r234,0r-74,443r-160,0r0,-443","w":520,"k":{" ":186,"\u00a0":186,"-":412,"\u00ad":412,",":268,".":268,"A":262,"\u00c0":262,"\u00c1":262,"\u00c2":262,"\u00c3":262,"\u00c4":262,"\u00c5":262,"C":82,"G":82,"O":82,"Q":82,"\u00c7":82,"\u00d2":82,"\u00d3":82,"\u00d4":82,"\u00d5":82,"\u00d6":82,"\u00d8":82,"T":-41,"V":-82,"W":-82,"Y":-74,"\u00dd":-74,"Z":-41,"c":213,"e":213,"g":213,"o":213,"q":213,"\u00e7":213,"\u00e8":213,"\u00e9":213,"\u00ea":213,"\u00eb":213,"\u00f0":213,"\u00f2":213,"\u00f3":213,"\u00f4":213,"\u00f5":213,"\u00f6":213,"\u00f8":213,"t":20,"z":27,"\u00c6":410,"a":150,"m":150,"n":150,"p":150,"r":150,"s":150,"u":150,"\u00e6":150}},"(":{"d":"389,-498v0,346,99,633,258,834r-182,115v-247,-258,-396,-686,-324,-1186v42,-294,160,-541,330,-723r172,110v-159,213,-254,491,-254,850","w":669,"k":{"-":72,"\u00ad":72,",":61,".":61,"A":35,"\u00c0":35,"\u00c1":35,"\u00c2":35,"\u00c3":35,"\u00c4":35,"\u00c5":35,"C":35,"G":35,"O":35,"Q":35,"\u00c7":35,"\u00d2":35,"\u00d3":35,"\u00d4":35,"\u00d5":35,"\u00d6":35,"\u00d8":35,"c":35,"e":35,"g":35,"o":35,"q":35,"\u00e7":35,"\u00e8":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00f0":35,"\u00f2":35,"\u00f3":35,"\u00f4":35,"\u00f5":35,"\u00f6":35,"\u00f8":35,"t":20}},")":{"d":"279,-510v0,-343,-101,-626,-256,-831r180,-117v209,221,342,538,342,948v0,415,-141,732,-348,961r-172,-113v162,-215,254,-485,254,-848","w":667},"*":{"d":"295,-1497r57,94r31,121r31,-113r57,-100r131,72r-61,106r-99,88r133,-33r117,0r0,150r-112,0r-125,-33r102,96r51,86r-131,76r-55,-94r-41,-131r-27,119r-59,100r-131,-76r59,-100r92,-76r-112,33r-121,0r0,-152r123,0r121,35r-105,-90r-57,-102","w":774,"k":{" ":72,"\u00a0":72,"-":391,"\u00ad":391,",":512,".":512,"A":113,"\u00c0":113,"\u00c1":113,"\u00c2":113,"\u00c3":113,"\u00c4":113,"\u00c5":113,"C":20,"G":20,"O":20,"Q":20,"\u00c7":20,"\u00d2":20,"\u00d3":20,"\u00d4":20,"\u00d5":20,"\u00d6":20,"\u00d8":20,"T":-33,"V":-20,"W":-27,"Y":-20,"\u00dd":-20,"Z":-41,"c":41,"e":41,"g":41,"o":41,"q":41,"\u00e7":41,"\u00e8":41,"\u00e9":41,"\u00ea":41,"\u00eb":41,"\u00f0":41,"\u00f2":41,"\u00f3":41,"\u00f4":41,"\u00f5":41,"\u00f6":41,"\u00f8":41,"v":-45,"y":-45,"\u00fd":-45,"\u00ff":-45,"\u00c6":256}},"+":{"d":"88,-807r332,0r0,-346r239,0r0,346r334,0r0,229r-334,0r0,351r-239,0r0,-351r-332,0r0,-229","w":1079},",":{"d":"217,10v-75,7,-131,-52,-131,-141v0,-91,71,-152,160,-152v116,0,185,89,184,209v-2,212,-120,324,-276,377r-78,-110v67,-25,135,-102,141,-183","w":466,"k":{"\u00a0":141," ":141,"*":270,"-":240,"\u00ad":240,",":-27,".":-27,"A":-113,"\u00c0":-113,"\u00c1":-113,"\u00c2":-113,"\u00c3":-113,"\u00c4":-113,"\u00c5":-113,"T":113,"V":127,"W":82,"X":-41,"Y":143,"\u00dd":143,"Z":-82,"t":20,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":27,"z":-41,"\"":287,"'":287,"\u00ae":180,"a":-41,"m":-41,"n":-41,"p":-41,"r":-41,"s":-41,"u":-41,"\u00e6":-41,"\u00e0":-41,"\u00e1":-41,"\u00e2":-41,"\u00e3":-41,"\u00e4":-41,"\u00e5":-41,"\u00ec":-41,"\u00ed":-41,"\u00ee":-41,"\u00ef":-41,"\u00f1":-41,"\u00f9":-41,"\u00fa":-41,"\u00fb":-41,"\u00fc":-41}},"-":{"d":"111,-707r514,0r0,236r-514,0r0,-236","w":737,"k":{" ":164,"\u00a0":164,")":72,"]":72,"}":72,"*":84,"-":121,"\u00ad":121,",":240,".":240,"A":45,"\u00c0":45,"\u00c1":45,"\u00c2":45,"\u00c3":45,"\u00c4":45,"\u00c5":45,"T":143,"V":61,"W":41,"X":90,"Y":84,"\u00dd":84,"Z":20,"x":35,"\u00c6":84,"\"":381,"'":381}},".":{"d":"250,23v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":503,"k":{"\u00a0":141," ":141,"*":270,"-":240,"\u00ad":240,",":-27,".":-27,"A":-113,"\u00c0":-113,"\u00c1":-113,"\u00c2":-113,"\u00c3":-113,"\u00c4":-113,"\u00c5":-113,"T":113,"V":127,"W":82,"X":-41,"Y":143,"\u00dd":143,"Z":-82,"t":20,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":27,"z":-41,"\"":287,"'":287,"\u00ae":180,"a":-41,"m":-41,"n":-41,"p":-41,"r":-41,"s":-41,"u":-41,"\u00e6":-41,"\u00e0":-41,"\u00e1":-41,"\u00e2":-41,"\u00e3":-41,"\u00e4":-41,"\u00e5":-41,"\u00ec":-41,"\u00ed":-41,"\u00ee":-41,"\u00ef":-41,"\u00f1":-41,"\u00f9":-41,"\u00fa":-41,"\u00fb":-41,"\u00fc":-41}},"\/":{"d":"682,-1458r201,90r-731,1655r-201,-94","w":835},"0":{"d":"203,-165v-158,-231,-157,-899,8,-1114v91,-118,210,-183,371,-183v172,0,298,60,379,181v81,121,120,308,120,562v0,253,-43,440,-130,563v-87,123,-210,185,-371,185v-171,0,-291,-68,-377,-194xm402,-1110v-69,151,-69,619,0,777v39,90,97,136,180,136v81,0,136,-43,177,-125v71,-144,71,-622,3,-780v-38,-89,-96,-135,-182,-135v-82,0,-140,43,-178,127"},"1":{"d":"207,-225r285,0r0,-809r30,-140r-98,121r-182,125r-113,-153r467,-377r149,0r0,1233r279,0r0,225r-817,0r0,-225"},"2":{"d":"150,-1317v123,-111,364,-190,581,-121v147,47,242,162,242,355v0,264,-145,449,-263,617v-45,64,-94,122,-139,175r-108,84r0,10r147,-28r394,0r0,225r-863,0r0,-137r111,-120v161,-184,330,-383,427,-630v64,-163,19,-347,-173,-340v-96,4,-197,48,-250,99"},"3":{"d":"231,-256v71,35,156,59,263,59v156,0,260,-93,260,-231v0,-170,-104,-227,-289,-227r-148,0r0,-142r248,-338r117,-92r-162,19r-344,0r0,-226r782,0r0,146r-288,387r-90,55r0,10r86,-12v222,24,354,161,354,404v0,246,-128,383,-315,444v-166,54,-416,26,-545,-35"},"4":{"d":"1133,-399r-226,0r0,399r-248,0r0,-399r-620,0r0,-152r649,-893r219,0r0,832r226,0r0,213xm659,-926r19,-172r-8,0r-70,148r-213,276r-102,78r131,-16r243,0r0,-314"},"5":{"d":"211,-250v67,29,139,43,240,43v170,0,278,-86,278,-246v0,-178,-133,-236,-323,-237r-162,6r0,-750r704,0r0,250r-475,0r0,277v247,-32,425,78,492,261v44,117,38,290,-11,398v-80,177,-249,277,-499,277v-117,0,-237,-21,-316,-58"},"6":{"d":"645,-885v272,6,420,165,420,441v0,224,-116,365,-278,436v-112,50,-272,48,-387,3v-187,-74,-294,-246,-294,-509v0,-415,184,-693,448,-849v87,-51,182,-83,280,-99r59,211v-214,37,-360,163,-454,322v-32,54,-52,110,-64,167v56,-68,141,-126,270,-123xm590,-197v129,3,217,-103,217,-233v0,-153,-75,-229,-225,-229v-104,0,-187,55,-217,122v-22,181,47,337,225,340"},"7":{"d":"213,0r469,-1104r90,-100r-123,20r-526,0r0,-250r924,0r0,78r-574,1356r-260,0","k":{" ":111,"\u00a0":111,"-":131,"\u00ad":131,",":244,".":244,"A":135,"\u00c0":135,"\u00c1":135,"\u00c2":135,"\u00c3":135,"\u00c4":135,"\u00c5":135,"C":61,"G":61,"O":61,"Q":61,"\u00c7":61,"\u00d2":61,"\u00d3":61,"\u00d4":61,"\u00d5":61,"\u00d6":61,"\u00d8":61,"X":63,"Y":25,"\u00dd":25,"c":113,"e":113,"g":113,"o":113,"q":113,"\u00e7":113,"\u00e8":113,"\u00e9":113,"\u00ea":113,"\u00eb":113,"\u00f0":113,"\u00f2":113,"\u00f3":113,"\u00f4":113,"\u00f5":113,"\u00f6":113,"\u00f8":113,"t":68,"v":82,"y":82,"\u00fd":82,"\u00ff":82,"w":82,"x":111,"z":113,"\u00c6":186,"a":113,"m":113,"n":113,"p":113,"r":113,"s":113,"u":113,"\u00e6":113,"\u00e0":41,"\u00e1":41,"\u00e2":41,"\u00e3":41,"\u00e4":41,"\u00e5":41,"\u00ec":41,"\u00ed":41,"\u00ee":41,"\u00ef":41,"\u00f1":41,"\u00f9":41,"\u00fa":41,"\u00fb":41,"\u00fc":41}},"8":{"d":"791,-758v144,90,247,170,247,379v0,207,-119,321,-276,378v-176,63,-416,17,-515,-75v-69,-64,-122,-150,-122,-274v0,-207,118,-303,250,-381v-120,-80,-215,-168,-215,-352v0,-188,108,-299,252,-351v158,-57,386,-19,478,66v63,58,114,139,114,252v0,185,-90,273,-213,358xm580,-197v119,0,210,-59,204,-180v-8,-154,-145,-202,-249,-266v-102,58,-164,125,-168,248v-4,114,89,198,213,198xm588,-1237v-142,-7,-211,126,-156,244v37,80,125,118,205,159v82,-70,123,-146,123,-229v0,-108,-72,-169,-172,-174"},"9":{"d":"776,-639v-66,69,-123,94,-256,94v-196,0,-325,-101,-390,-245v-48,-106,-49,-274,-6,-388v65,-172,207,-284,439,-284v320,0,499,204,496,540v-4,442,-164,736,-457,877v-88,43,-182,66,-280,74r-58,-209v281,-41,458,-195,512,-459xm561,-1243v-140,-1,-211,100,-211,244v0,147,93,234,230,235v105,1,175,-37,219,-92v23,-163,-23,-304,-128,-362v-31,-17,-68,-25,-110,-25"},":":{"d":"354,-718v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158xm354,23v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":550},";":{"d":"299,10v-75,7,-131,-52,-131,-141v0,-91,71,-152,160,-152v116,0,185,89,184,209v-2,212,-120,324,-276,377r-78,-110v67,-25,135,-102,141,-183xm332,-718v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":593},"<":{"d":"82,-584r0,-143r790,-473r117,184r-459,285r-186,72r184,63r471,281r-116,184","w":1079},"=":{"d":"88,-612r905,0r0,229r-905,0r0,-229xm88,-1004r905,0r0,230r-905,0r0,-230","w":1079},">":{"d":"997,-748r0,144r-790,473r-117,-186r459,-283r186,-74r-184,-61r-471,-283r117,-182","w":1079},"?":{"d":"471,-1462v239,0,409,121,410,344v1,193,-82,291,-187,375v-95,76,-186,148,-188,317r-227,0v-28,-255,103,-366,234,-481v49,-43,93,-88,93,-172v0,-108,-59,-160,-182,-158v-113,3,-203,47,-274,94r-103,-196v109,-72,237,-123,424,-123xm401,23v-96,0,-163,-63,-163,-158v0,-95,67,-156,163,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":929},"@":{"d":"1116,-1004v98,0,156,33,211,78r64,-65r143,0r-98,555v-16,107,-19,182,67,182v147,0,223,-105,263,-229v43,-131,28,-335,-25,-447v-99,-208,-310,-315,-611,-315v-355,0,-582,194,-694,453v-74,171,-75,413,-9,587v98,258,328,402,681,402v91,0,205,-25,272,-58r64,197v-193,100,-518,93,-738,16v-336,-118,-553,-384,-556,-835v-1,-315,126,-552,294,-711v162,-153,398,-264,691,-264v406,0,684,175,817,458v76,164,95,401,21,578v-88,211,-263,374,-546,381v-148,4,-238,-66,-221,-225r-8,0v-81,109,-168,225,-352,225v-252,0,-283,-322,-203,-546v55,-155,149,-282,276,-360v62,-38,127,-57,197,-57xm872,-542v-36,118,-38,296,103,288v87,-5,138,-72,184,-129v20,-24,36,-51,51,-78r52,-282v-54,-55,-168,-64,-241,-13v-69,48,-122,124,-149,214","w":2168},"A":{"d":"829,-317r-440,0r-108,317r-281,0r516,-1444r207,0r516,1444r-295,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227","w":1239},"B":{"d":"557,-1454v285,2,530,69,530,354v0,188,-99,294,-256,332r0,12v182,32,302,138,302,353v0,236,-160,349,-353,399v-93,24,-186,25,-296,24v-121,-1,-259,-8,-361,-30r0,-1413v127,-22,282,-32,434,-31xm393,-223v49,12,122,12,182,12v149,0,264,-61,267,-207v5,-219,-232,-201,-449,-200r0,395xm803,-1042v0,-195,-228,-193,-410,-172r0,383r157,-3v95,-2,142,-36,196,-79v39,-32,57,-76,57,-129","w":1210,"k":{"T":61}},"C":{"d":"770,-223v116,3,197,-25,266,-66r58,230v-140,95,-430,118,-620,48v-260,-96,-396,-339,-396,-706v0,-377,152,-609,418,-707v176,-65,432,-41,577,17r-55,238v-71,-33,-156,-45,-268,-43v-259,5,-382,197,-377,495v4,290,114,488,397,494","w":1144,"k":{" ":82,"\u00a0":82,"-":141,"\u00ad":141,"A":90,"\u00c0":90,"\u00c1":90,"\u00c2":90,"\u00c3":90,"\u00c4":90,"\u00c5":90,"C":68,"G":68,"O":68,"Q":68,"\u00c7":68,"\u00d2":68,"\u00d3":68,"\u00d4":68,"\u00d5":68,"\u00d6":68,"\u00d8":68,"T":90,"V":135,"W":53,"X":104,"Y":113,"\u00dd":113,"Z":100,"c":74,"e":74,"g":74,"o":74,"q":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"t":74,"v":109,"y":109,"\u00fd":109,"\u00ff":109,"w":82,"x":90,"z":35,"\u00c6":248,"a":23,"m":23,"n":23,"p":23,"r":23,"s":23,"u":23,"\u00e6":23}},"D":{"d":"443,-1453v535,-27,804,221,804,724v0,502,-282,782,-820,749r-224,-11v-35,-2,-62,-4,-80,-7r0,-1436v95,-13,212,-13,320,-19xm547,-227v356,8,449,-325,389,-671v-36,-210,-191,-330,-464,-304v-31,3,-54,3,-69,6r0,960v38,7,102,7,144,9","w":1325,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"E":{"d":"123,-1434r850,0r0,250r-570,0r0,334r519,0r0,250r-519,0r0,350r580,0r0,250r-860,0r0,-1434","w":1069},"F":{"d":"123,-1434r850,0r0,250r-570,0r0,355r525,0r0,249r-525,0r0,580r-280,0r0,-1434","w":1040},"G":{"d":"748,-221v73,3,148,-19,190,-53r0,-271r-309,-33r0,-170r534,0r0,639v-148,131,-468,182,-697,95v-258,-98,-387,-341,-388,-703v-1,-374,159,-605,426,-705v183,-69,452,-39,606,17r-57,236v-80,-31,-156,-44,-277,-43v-291,4,-403,195,-403,497v0,289,105,484,375,494","w":1247},"H":{"d":"928,-600r-525,0r0,600r-280,0r0,-1434r280,0r0,584r525,0r0,-584r280,0r0,1434r-280,0r0,-600","w":1333},"I":{"d":"152,-1434r280,0r0,1434r-280,0r0,-1434","w":583},"J":{"d":"135,-225v124,-1,133,-104,133,-232r0,-977r281,0r0,1049v-5,241,-103,410,-346,410v-84,0,-189,-20,-250,-48r61,-229v35,18,76,27,121,27","w":684},"K":{"d":"477,-612r-74,0r0,612r-280,0r0,-1434r280,0r0,635r66,-28r395,-607r320,0r-418,603r-111,77r115,80r477,674r-346,0","w":1269,"k":{" ":61,"\u00a0":61,"-":164,"\u00ad":164,"A":61,"\u00c0":61,"\u00c1":61,"\u00c2":61,"\u00c3":61,"\u00c4":61,"\u00c5":61,"C":113,"G":113,"O":113,"Q":113,"\u00c7":113,"\u00d2":113,"\u00d3":113,"\u00d4":113,"\u00d5":113,"\u00d6":113,"\u00d8":113,"T":96,"V":72,"W":61,"X":74,"Y":84,"\u00dd":84,"Z":27,"c":98,"e":98,"g":98,"o":98,"q":98,"\u00e7":98,"\u00e8":98,"\u00e9":98,"\u00ea":98,"\u00eb":98,"\u00f0":98,"\u00f2":98,"\u00f3":98,"\u00f4":98,"\u00f5":98,"\u00f6":98,"\u00f8":98,"t":94,"v":111,"y":111,"\u00fd":111,"\u00ff":111,"w":111,"x":100,"z":33,"\u00c6":258,"a":41,"m":41,"n":41,"p":41,"r":41,"s":41,"u":41,"\u00e6":41}},"L":{"d":"1030,0r-907,0r0,-1434r280,0r0,1184r627,0r0,250","w":1052,"k":{" ":104,"\u00a0":104,"*":336,"-":141,"\u00ad":141,",":-20,".":-20,"A":250,"\u00c0":250,"\u00c1":250,"\u00c2":250,"\u00c3":250,"\u00c4":250,"\u00c5":250,"C":190,"G":190,"O":190,"Q":190,"\u00c7":190,"\u00d2":190,"\u00d3":190,"\u00d4":190,"\u00d5":190,"\u00d6":190,"\u00d8":190,"T":268,"V":244,"W":178,"X":291,"Y":262,"\u00dd":262,"Z":180,"c":72,"e":72,"g":72,"o":72,"q":72,"\u00e7":72,"\u00e8":72,"\u00e9":72,"\u00ea":72,"\u00eb":72,"\u00f0":72,"\u00f2":72,"\u00f3":72,"\u00f4":72,"\u00f5":72,"\u00f6":72,"\u00f8":72,"t":72,"v":176,"y":176,"\u00fd":176,"\u00ff":176,"w":127,"x":141,"z":82,"\u00c6":246,"\"":291,"'":291,"\u00ae":371,"\u00e0":-14,"\u00e1":-14,"\u00e2":-14,"\u00e3":-14,"\u00e4":-14,"\u00e5":-14,"\u00ec":-14,"\u00ed":-14,"\u00ee":-14,"\u00ef":-14,"\u00f1":-14,"\u00f9":-14,"\u00fa":-14,"\u00fb":-14,"\u00fc":-14}},"M":{"d":"1235,-743r31,-285r-13,0r-88,229r-305,535r-90,0r-321,-537r-91,-227r-10,0r41,283r0,745r-266,0r0,-1434r256,0r383,656r67,164r9,0r61,-168r363,-652r254,0r0,1434r-281,0r0,-743","w":1638},"N":{"d":"479,-748r-112,-225r-11,0r33,225r0,748r-266,0r0,-1444r205,0r542,764r109,219r10,0r-33,-219r0,-754r267,0r0,1444r-205,0","w":1345},"O":{"d":"686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"P":{"d":"123,-1419v249,-44,617,-67,803,52v116,74,196,192,194,388v-2,266,-144,407,-349,467v-110,32,-245,35,-368,18r0,494r-280,0r0,-1419xm825,-983v0,-218,-215,-250,-422,-219r0,465v33,7,80,9,121,8v181,-1,301,-65,301,-254","w":1171,"k":{" ":82,"\u00a0":82,"-":20,"\u00ad":20,",":266,".":266,"A":158,"\u00c0":158,"\u00c1":158,"\u00c2":158,"\u00c3":158,"\u00c4":158,"\u00c5":158,"C":23,"G":23,"O":23,"Q":23,"\u00c7":23,"\u00d2":23,"\u00d3":23,"\u00d4":23,"\u00d5":23,"\u00d6":23,"\u00d8":23,"T":16,"V":20,"W":14,"X":109,"Y":55,"\u00dd":55,"Z":41,"c":74,"e":74,"g":74,"o":74,"q":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"x":74,"z":27,"\u00c6":266,"a":59,"m":59,"n":59,"p":59,"r":59,"s":59,"u":59,"\u00e6":59,"\u00e0":20,"\u00e1":20,"\u00e2":20,"\u00e3":20,"\u00e4":20,"\u00e5":20,"\u00ec":20,"\u00ed":20,"\u00ee":20,"\u00ef":20,"\u00f1":20,"\u00f9":20,"\u00fa":20,"\u00fb":20,"\u00fc":20}},"Q":{"d":"530,63v313,0,573,192,908,107r0,244v-341,93,-620,-109,-932,-109v-33,0,-64,4,-94,12r0,-241v38,-8,77,-13,118,-13xm686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"R":{"d":"1073,-1051v3,236,-123,384,-301,441r100,63r328,547r-323,0r-326,-561r-148,-27r0,588r-280,0r0,-1419v121,-23,267,-35,409,-35v303,0,539,96,541,403xm778,-1008v-2,-129,-86,-198,-225,-196v-49,1,-114,1,-150,10r0,416r119,0v158,-2,258,-66,256,-230","w":1232,"k":{"-":82,"\u00ad":82,"A":76,"\u00c0":76,"\u00c1":76,"\u00c2":76,"\u00c3":76,"\u00c4":76,"\u00c5":76,"C":68,"G":68,"O":68,"Q":68,"\u00c7":68,"\u00d2":68,"\u00d3":68,"\u00d4":68,"\u00d5":68,"\u00d6":68,"\u00d8":68,"T":100,"V":98,"W":82,"X":115,"Y":123,"\u00dd":123,"Z":49,"c":98,"e":98,"g":98,"o":98,"q":98,"\u00e7":98,"\u00e8":98,"\u00e9":98,"\u00ea":98,"\u00eb":98,"\u00f0":98,"\u00f2":98,"\u00f3":98,"\u00f4":98,"\u00f5":98,"\u00f6":98,"\u00f8":98,"t":49,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":47,"x":57,"z":27,"\u00c6":266,"\"":41,"'":41}},"S":{"d":"483,-215v147,0,258,-39,258,-170v0,-105,-89,-141,-169,-181v-213,-105,-484,-169,-484,-487v0,-288,193,-407,483,-409v158,-1,321,27,418,84r-88,235v-117,-72,-532,-156,-532,68v0,100,91,139,169,178v213,108,484,170,484,481v0,314,-210,440,-524,445v-168,3,-345,-39,-443,-86r90,-240v88,44,205,82,338,82","w":1085},"T":{"d":"1141,-1184r-418,0r0,1184r-281,0r0,-1184r-419,0r0,-250r1118,0r0,250","w":1163,"k":{"\u00ff":262,"\u00fd":262,"\u00fc":135,"\u00f6":262,"\u00f5":262,"\u00f4":262,"\u00f3":262,"\u00f2":262,"\u00ef":135,"\u00ee":135,"\u00ed":135,"\u00ec":135,"\u00eb":262,"\u00ea":262,"\u00e9":262,"\u00e8":262,"\u00e5":135,"\u00e4":135,"\u00e3":135,"\u00e1":135," ":82,"\u00a0":82,")":-27,"]":-27,"}":-27,"*":-33,"-":262,"\u00ad":262,",":227,".":227,"A":160,"\u00c0":160,"\u00c1":160,"\u00c2":160,"\u00c3":160,"\u00c4":160,"\u00c5":160,"C":80,"G":80,"O":80,"Q":80,"\u00c7":80,"\u00d2":80,"\u00d3":80,"\u00d4":80,"\u00d5":80,"\u00d6":80,"\u00d8":80,"T":-41,"V":68,"W":61,"X":96,"Y":143,"\u00dd":143,"Z":100,"c":262,"e":262,"g":262,"o":262,"q":262,"\u00e7":262,"\u00f0":262,"\u00f8":262,"t":100,"v":262,"y":262,"w":262,"x":262,"z":262,"\u00c6":244,"\"":-41,"'":-41,"\u00ae":-33,"a":215,"m":215,"n":215,"p":215,"r":215,"s":215,"u":215,"\u00e6":215,"\u00e0":135,"\u00e2":135,"\u00f1":135,"\u00f9":135,"\u00fa":135,"\u00fb":135}},"U":{"d":"657,-225v187,-3,244,-104,244,-303r0,-906r266,0r0,926v-2,343,-168,533,-505,533v-363,0,-545,-166,-545,-498r0,-961r280,0r0,906v-2,195,67,306,260,303","w":1284},"V":{"d":"594,-592r37,244r10,0r41,-246r274,-840r295,0r-532,1444r-201,0r-536,-1444r325,0","w":1232,"k":{"\u00fb":78,"\u00fa":78,"\u00f6":152,"\u00f5":152,"\u00f2":152,"\u00ef":78,"\u00ee":78,"\u00ec":78,"\u00eb":152,"\u00ea":152,"\u00e8":152,"\u00e5":78,"\u00e4":78,"\u00e1":78," ":61,"\u00a0":61,"*":-78,"-":111,"\u00ad":111,",":227,".":227,"A":139,"\u00c0":139,"\u00c1":139,"\u00c2":139,"\u00c3":139,"\u00c4":139,"\u00c5":139,"C":76,"G":76,"O":76,"Q":76,"\u00c7":76,"\u00d2":76,"\u00d3":76,"\u00d4":76,"\u00d5":76,"\u00d6":76,"\u00d8":76,"T":68,"V":72,"W":61,"X":72,"Y":84,"\u00dd":84,"Z":72,"c":152,"e":152,"g":152,"o":152,"q":152,"\u00e7":152,"\u00e9":152,"\u00f0":152,"\u00f3":152,"\u00f4":152,"\u00f8":152,"t":41,"v":23,"y":23,"\u00fd":23,"\u00ff":23,"w":37,"x":98,"z":94,"\u00c6":246,"\"":-82,"'":-82,"\u00ae":-27,"a":117,"m":117,"n":117,"p":117,"r":117,"s":117,"u":117,"\u00e6":117,"\u00e0":78,"\u00e2":78,"\u00e3":78,"\u00ed":78,"\u00f1":78,"\u00f9":78,"\u00fc":78}},"W":{"d":"496,-633r26,254r8,0r29,-258r250,-797r184,0r246,801r29,254r8,0r31,-258r174,-797r284,0r-395,1444r-188,0r-256,-796r-35,-220r-10,0r-35,222r-254,794r-199,0r-393,-1444r305,0","w":1765,"k":{"\u00f6":109,"\u00ef":61,"\u00ee":61,"\u00ec":61,"\u00eb":109,"\u00e5":61,"\u00e2":61,"\u00e1":61," ":55,"\u00a0":55,"*":-72,"-":63,"\u00ad":63,",":174,".":174,"A":90,"\u00c0":90,"\u00c1":90,"\u00c2":90,"\u00c3":90,"\u00c4":90,"\u00c5":90,"C":57,"G":57,"O":57,"Q":57,"\u00c7":57,"\u00d2":57,"\u00d3":57,"\u00d4":57,"\u00d5":57,"\u00d6":57,"\u00d8":57,"T":61,"V":61,"W":68,"X":61,"Y":84,"\u00dd":84,"Z":68,"c":109,"e":109,"g":109,"o":109,"q":109,"\u00e7":109,"\u00e8":109,"\u00e9":109,"\u00ea":109,"\u00f0":109,"\u00f2":109,"\u00f3":109,"\u00f4":109,"\u00f5":109,"\u00f8":109,"t":27,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"w":37,"x":82,"z":88,"\u00c6":199,"\"":-82,"'":-82,"\u00ae":-33,"a":98,"m":98,"n":98,"p":98,"r":98,"s":98,"u":98,"\u00e6":98,"\u00e0":61,"\u00e3":61,"\u00e4":61,"\u00ed":61,"\u00f1":61,"\u00f9":61,"\u00fa":61,"\u00fb":61,"\u00fc":61}},"X":{"d":"461,-729r-400,-705r338,0r222,414r49,146r47,-146r231,-414r305,0r-413,691r434,743r-334,0r-252,-442r-55,-152r-53,152r-254,442r-306,0","w":1296,"k":{" ":61,"\u00a0":61,"-":164,"\u00ad":164,"A":61,"\u00c0":61,"\u00c1":61,"\u00c2":61,"\u00c3":61,"\u00c4":61,"\u00c5":61,"C":113,"G":113,"O":113,"Q":113,"\u00c7":113,"\u00d2":113,"\u00d3":113,"\u00d4":113,"\u00d5":113,"\u00d6":113,"\u00d8":113,"T":96,"V":72,"W":61,"X":74,"Y":84,"\u00dd":84,"Z":27,"c":98,"e":98,"g":98,"o":98,"q":98,"\u00e7":98,"\u00e8":98,"\u00e9":98,"\u00ea":98,"\u00eb":98,"\u00f0":98,"\u00f2":98,"\u00f3":98,"\u00f4":98,"\u00f5":98,"\u00f6":98,"\u00f8":98,"t":94,"v":111,"y":111,"\u00fd":111,"\u00ff":111,"w":111,"x":100,"z":33,"\u00c6":258,"a":41,"m":41,"n":41,"p":41,"r":41,"s":41,"u":41,"\u00e6":41}},"Y":{"d":"467,-532r-471,-902r334,0r262,539r29,152r10,0r31,-156r253,-535r302,0r-469,899r0,535r-281,0r0,-532","w":1212,"k":{"\u00ff":98,"\u00fc":113,"\u00fb":113,"\u00fa":113,"\u00f6":217,"\u00f5":217,"\u00f4":217,"\u00f2":217,"\u00f1":113,"\u00ef":113,"\u00ee":113,"\u00ec":113,"\u00eb":217,"\u00ea":217,"\u00e8":217,"\u00e5":113,"\u00e4":113,"\u00e2":113,"\u00e1":113," ":55,"\u00a0":55,"*":-49,"-":139,"\u00ad":139,",":242,".":242,"A":180,"\u00c0":180,"\u00c1":180,"\u00c2":180,"\u00c3":180,"\u00c4":180,"\u00c5":180,"C":98,"G":98,"O":98,"Q":98,"\u00c7":98,"\u00d2":98,"\u00d3":98,"\u00d4":98,"\u00d5":98,"\u00d6":98,"\u00d8":98,"T":143,"V":84,"W":61,"X":84,"Y":84,"\u00dd":84,"Z":119,"c":217,"e":217,"g":217,"o":217,"q":217,"\u00e7":217,"\u00e9":217,"\u00f0":217,"\u00f3":217,"\u00f8":217,"t":104,"v":98,"y":98,"\u00fd":98,"w":82,"x":123,"z":143,"\u00c6":252,"\"":-74,"'":-74,"\u00ae":-33,"a":147,"m":147,"n":147,"p":147,"r":147,"s":147,"u":147,"\u00e6":147,"\u00e0":113,"\u00e3":113,"\u00ed":113,"\u00f9":113}},"Z":{"d":"55,-250r607,-848r106,-86r-713,0r0,-250r994,0r0,250r-611,856r-104,78r715,0r0,250r-994,0r0,-250","w":1103,"k":{" ":45,"\u00a0":45,"*":-41,"-":113,"\u00ad":113,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51,"C":49,"G":49,"O":49,"Q":49,"\u00c7":49,"\u00d2":49,"\u00d3":49,"\u00d4":49,"\u00d5":49,"\u00d6":49,"\u00d8":49,"T":49,"V":72,"W":61,"X":55,"Y":119,"\u00dd":119,"Z":23,"c":78,"e":78,"g":78,"o":78,"q":78,"\u00e7":78,"\u00e8":78,"\u00e9":78,"\u00ea":78,"\u00eb":78,"\u00f0":78,"\u00f2":78,"\u00f3":78,"\u00f4":78,"\u00f5":78,"\u00f6":78,"\u00f8":78,"t":16,"v":20,"y":20,"\u00fd":20,"\u00ff":20,"w":20,"x":14,"z":27,"\u00c6":264,"\"":-41,"'":-41,"a":23,"m":23,"n":23,"p":23,"r":23,"s":23,"u":23,"\u00e6":23}},"[":{"d":"123,-1434r481,0r0,226r-227,0r0,1454r227,0r0,225r-481,0r0,-1905","w":663,"k":{"-":72,"\u00ad":72,",":61,".":61,"A":35,"\u00c0":35,"\u00c1":35,"\u00c2":35,"\u00c3":35,"\u00c4":35,"\u00c5":35,"C":35,"G":35,"O":35,"Q":35,"\u00c7":35,"\u00d2":35,"\u00d3":35,"\u00d4":35,"\u00d5":35,"\u00d6":35,"\u00d8":35,"c":35,"e":35,"g":35,"o":35,"q":35,"\u00e7":35,"\u00e8":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00f0":35,"\u00f2":35,"\u00f3":35,"\u00f4":35,"\u00f5":35,"\u00f6":35,"\u00f8":35,"t":20}},"\\":{"d":"897,195r-203,92r-743,-1655r209,-88","w":868},"]":{"d":"541,471r-482,0r0,-225r228,0r0,-1454r-228,0r0,-226r482,0r0,1905","w":663},"^":{"d":"442,-1444r142,0r379,598r-269,0r-145,-250r-43,-143r-51,145r-160,248r-254,0","w":1024},"_":{"d":"0,240r909,0r0,219r-909,0r0,-219","w":909},"`":{"d":"524,-1159r-147,0r-254,-254r0,-62r278,0","w":647},"a":{"d":"489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67","w":1015,"k":{"T":246,"'":84,"\"":84}},"b":{"d":"520,25v-148,1,-312,-29,-403,-70r0,-1389r266,0r0,492r8,0v55,-62,146,-107,260,-107v276,0,379,202,379,510v0,349,-180,562,-510,564xm535,-201v169,0,221,-132,221,-329v0,-195,-61,-293,-183,-293v-107,0,-160,60,-190,147r0,447v42,21,91,28,152,28","w":1097,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"c":{"d":"582,-207v89,2,145,-27,198,-59r62,203v-76,56,-201,92,-328,92v-327,-1,-445,-213,-446,-541v-1,-327,144,-540,456,-541v139,0,219,23,305,66r-63,217v-60,-29,-113,-49,-199,-47v-168,3,-227,115,-225,305v2,176,66,301,240,305","w":886,"k":{" ":49,"\u00a0":49,")":20,"]":20,"}":20,"-":78,"\u00ad":78,"c":35,"e":35,"g":35,"o":35,"q":35,"\u00e7":35,"\u00e8":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00f0":35,"\u00f2":35,"\u00f3":35,"\u00f4":35,"\u00f5":35,"\u00f6":35,"\u00f8":35,"v":35,"y":35,"\u00fd":35,"\u00ff":35,"w":35,"x":16,"z":16,"\"":45,"'":45}},"d":{"d":"535,-1049v83,1,127,9,186,31r0,-416r266,0r0,1074v1,134,-1,236,21,362r-191,0r-37,-133r-8,0v-52,92,-156,162,-299,160v-288,-5,-405,-202,-405,-525v0,-332,148,-552,467,-553xm342,-487v0,157,46,289,193,290v110,0,162,-57,186,-147r0,-434v-41,-30,-80,-47,-154,-45v-180,5,-225,124,-225,336","w":1103},"e":{"d":"596,-184v101,0,199,-40,252,-78r88,174v-82,65,-239,117,-391,117v-334,0,-475,-209,-477,-541v-2,-343,165,-541,491,-541v262,0,410,140,410,414v-1,67,-8,134,-21,195r-614,0v10,172,80,260,262,260xm721,-610v10,-138,-39,-229,-166,-230v-146,-1,-200,97,-215,230r381,0","w":1040,"k":{")":27,"]":27,"}":27,"*":45,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"w":10,"x":43,"z":10,"\"":102,"'":102,"\u00ae":45}},"f":{"d":"705,-1198v-78,-29,-222,-54,-258,23v-18,39,-16,91,-17,151r225,0r0,225r-225,0r0,799r-266,0r0,-799r-141,0r0,-225r141,0v-12,-269,74,-426,319,-426v109,0,201,13,273,39","w":657,"k":{"\u00ef":-123,"\u00ee":-49,"\u00ec":-98,"}":-123,"]":-123,")":-123,"*":-68,",":41,".":41,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"t":16,"v":27,"y":27,"\u00fd":27,"\u00ff":27,"w":20,"\"":-68,"'":-68,"\u00ae":-84}},"g":{"d":"580,-1049v154,-1,300,25,403,62r0,987v3,296,-169,431,-459,434v-159,1,-272,-22,-360,-63r55,-211v72,27,153,55,264,55v201,0,249,-99,240,-295r-8,0v-48,64,-132,96,-254,96v-293,0,-393,-188,-393,-508v0,-354,169,-555,512,-557xm342,-502v0,170,45,302,190,305v112,3,155,-52,185,-139r0,-461v-42,-18,-95,-26,-158,-26v-162,0,-217,129,-217,321","w":1097},"h":{"d":"391,-909v66,-86,152,-145,303,-144v170,1,264,71,296,216v12,54,20,121,20,200r0,637r-267,0r0,-582v-2,-151,-22,-235,-161,-235v-97,0,-181,79,-199,164r0,653r-266,0r0,-1434r266,0r0,525r8,0","w":1116},"i":{"d":"266,-1174v-96,0,-166,-53,-166,-139v0,-85,71,-143,166,-143v94,0,173,58,174,143v0,85,-80,139,-174,139xm139,-1024r267,0r0,1024r-267,0r0,-1024","w":550},"j":{"d":"270,-1174v-96,0,-166,-53,-166,-139v0,-85,71,-143,166,-143v94,0,173,58,174,143v0,85,-80,139,-174,139xm-33,188v146,17,174,-79,174,-221r0,-991r267,0r0,1067v-1,235,-82,383,-310,383v-41,0,-85,-4,-131,-14r0,-224","w":548},"k":{"d":"455,-424r-72,0r0,424r-266,0r0,-1434r266,0r0,846r61,-28r234,-408r293,0r-246,389r-104,78r112,80r277,477r-305,0","w":1005,"k":{"\u00f8":49,"\u00f6":49,"\u00f5":49,"\u00f4":49,"\u00f3":49,"\u00f2":49,"\u00f0":49,"\u00eb":49,"\u00ea":49,"\u00e9":49,"\u00e8":49,"\u00e7":49,"q":49,"o":49,"g":49,"e":49,"c":49," ":61,"\u00a0":61,"-":78,"\u00ad":78,"v":-29,"y":-29,"\u00fd":-29,"\u00ff":-29,"x":16}},"l":{"d":"365,29v-159,-2,-240,-69,-240,-234r0,-1229r266,0r0,1090v2,80,12,137,78,137v44,0,68,-6,106,-22r29,209v-50,23,-158,51,-239,49","w":602},"m":{"d":"1141,-817v-103,0,-150,62,-176,145r0,672r-267,0r0,-557v-5,-159,0,-260,-137,-260v-97,0,-149,62,-178,135r0,682r-266,0r0,-1024r207,0r30,135r8,0v65,-85,154,-167,308,-164v145,2,215,59,258,174v59,-98,149,-172,299,-174v265,-4,319,170,319,439r0,614r-266,0r0,-575v-6,-144,-5,-242,-139,-242","w":1648},"n":{"d":"367,-889v66,-87,165,-164,325,-164v247,0,318,162,318,416r0,637r-267,0r0,-582v-1,-148,-25,-233,-157,-235v-106,-2,-175,72,-203,153r0,664r-266,0r0,-1024r211,0r30,135r9,0","w":1116,"k":{"T":233}},"o":{"d":"551,29v-332,0,-479,-208,-483,-541v-4,-330,167,-541,483,-541v332,0,477,211,481,541v4,330,-164,541,-481,541xm551,-827v-159,0,-212,124,-209,315v3,168,43,315,209,315v165,0,207,-127,207,-315v0,-171,-43,-315,-207,-315","w":1099,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"p":{"d":"769,-10v-106,50,-287,55,-386,0r0,420r-266,0r0,-1434r194,0r31,123r8,0v67,-96,150,-152,303,-152v290,0,386,190,385,514v0,262,-90,447,-269,529xm764,-545v0,-162,-41,-282,-191,-282v-115,0,-158,62,-190,155r0,426v40,31,79,51,152,49v182,-6,229,-134,229,-348","w":1105,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"q":{"d":"602,-1049v141,0,277,25,381,62r0,1397r-266,0r0,-498r-8,0v-49,71,-125,119,-248,117v-283,-5,-393,-206,-393,-521v0,-358,185,-557,534,-557xm342,-502v0,170,45,302,190,305v112,3,155,-52,185,-139r0,-461v-42,-23,-94,-26,-158,-26v-164,0,-217,137,-217,321","w":1097},"r":{"d":"362,-889v50,-125,194,-197,355,-135r-35,250v-131,-57,-273,-4,-299,112r0,662r-266,0r0,-1024r207,0r30,135r8,0","w":718,"k":{",":123,".":123,"t":-61}},"s":{"d":"410,-184v75,-1,133,-25,131,-99v-2,-66,-65,-88,-121,-110v-164,-64,-347,-118,-346,-348v0,-210,133,-312,350,-312v138,0,277,35,358,80r-59,193v-63,-23,-173,-60,-264,-60v-112,0,-158,101,-84,152v87,60,226,78,311,142v68,50,123,121,121,241v-3,225,-153,334,-397,334v-137,0,-276,-42,-359,-92r74,-199v63,35,182,80,285,78","w":864},"t":{"d":"426,29v-200,0,-274,-100,-274,-312r0,-516r-142,0r0,-225r142,0r0,-193r266,-75r0,268r250,0r0,225r-250,0r0,393v4,118,3,199,102,199v62,0,91,-12,137,-33r48,205v-71,34,-176,64,-279,64","w":714,"k":{")":20,"]":20,"}":20,"-":33,"\u00ad":33,",":-20,".":-20,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"t":14,"v":47,"y":47,"\u00fd":47,"\u00ff":47,"w":35,"x":16,"\"":20,"'":20}},"u":{"d":"762,-152v-60,99,-174,181,-330,181v-250,0,-326,-158,-326,-416r0,-637r267,0r0,582v3,147,13,232,145,235v108,2,170,-75,201,-155r0,-662r266,0r0,713v0,110,10,224,33,311r-201,0r-47,-152r-8,0","w":1101},"v":{"d":"471,-487r35,157r10,0r29,-162r174,-532r287,0r-428,1034r-162,0r-445,-1034r310,0","w":976,"k":{" ":74,"\u00a0":74,"*":-45,",":147,".":147,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e7":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00f0":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"t":35,"v":-84,"y":-84,"\u00fd":-84,"\u00ff":-84,"w":-68,"x":-16}},"w":{"d":"858,-1024r186,524r37,170r9,0r28,-172r131,-522r244,0r-315,1034r-197,0r-207,-573r-26,-129r-11,0r-24,131r-197,571r-203,0r-329,-1034r288,0r150,514r24,182r11,0r35,-184r170,-512r196,0","w":1476,"k":{" ":49,"\u00a0":49,",":113,".":113,"c":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e8":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00f0":18,"\u00f2":18,"\u00f3":18,"\u00f4":18,"\u00f5":18,"\u00f6":18,"\u00f8":18,"t":20,"v":-68,"y":-68,"\u00fd":-68,"\u00ff":-68,"w":-45,"z":16}},"x":{"d":"348,-524r-307,-500r317,0r134,219r57,143r61,-143r140,-219r288,0r-309,492r330,532r-309,0r-158,-246r-62,-151r-65,151r-158,246r-291,0","w":1075,"k":{" ":61,"\u00a0":61,"-":78,"\u00ad":78,"c":49,"e":49,"g":49,"o":49,"q":49,"\u00e7":49,"\u00e8":49,"\u00e9":49,"\u00ea":49,"\u00eb":49,"\u00f0":49,"\u00f2":49,"\u00f3":49,"\u00f4":49,"\u00f5":49,"\u00f6":49,"\u00f8":49,"v":-29,"y":-29,"\u00fd":-29,"\u00ff":-29,"x":16}},"y":{"d":"489,-449r37,160r13,0r26,-162r156,-573r274,0r-311,924v-67,185,-117,376,-249,482v-71,57,-223,42,-294,3r49,-213v128,41,197,-47,220,-172r-428,-1024r319,0","w":978,"k":{" ":74,"\u00a0":74,"*":-45,",":147,".":147,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e7":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00f0":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"t":35,"v":-84,"y":-84,"\u00fd":-84,"\u00ff":-84,"w":-68,"x":-16}},"z":{"d":"63,-225r404,-486r104,-88r-508,0r0,-225r803,0r0,225r-399,494r-102,80r501,0r0,225r-803,0r0,-225","w":937,"k":{" ":61,"\u00a0":61,"-":82,"\u00ad":82,"c":16,"e":16,"g":16,"o":16,"q":16,"\u00e7":16,"\u00e8":16,"\u00e9":16,"\u00ea":16,"\u00eb":16,"\u00f0":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"t":27,"\"":27,"'":27}},"{":{"d":"471,471v-147,1,-219,-96,-219,-248r0,-420v1,-129,-49,-178,-164,-182r0,-205v108,-1,164,-59,164,-174r0,-428v0,-148,68,-250,219,-250r246,0r0,226r-103,0v-79,1,-105,40,-106,123r0,399v4,110,-60,175,-143,192r0,21v80,13,143,98,143,201r0,397v1,86,25,123,108,123r101,0r0,225r-246,0","w":759,"k":{"-":72,"\u00ad":72,",":61,".":61,"A":35,"\u00c0":35,"\u00c1":35,"\u00c2":35,"\u00c3":35,"\u00c4":35,"\u00c5":35,"C":35,"G":35,"O":35,"Q":35,"\u00c7":35,"\u00d2":35,"\u00d3":35,"\u00d4":35,"\u00d5":35,"\u00d6":35,"\u00d8":35,"c":35,"e":35,"g":35,"o":35,"q":35,"\u00e7":35,"\u00e8":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00f0":35,"\u00f2":35,"\u00f3":35,"\u00f4":35,"\u00f5":35,"\u00f6":35,"\u00f8":35,"t":20}},"|":{"d":"123,-1434r219,0r0,1700r-219,0r0,-1700","w":464},"}":{"d":"315,-1436v148,0,220,96,220,248r0,420v-1,129,48,178,163,182r0,205v-108,1,-163,60,-163,174r0,428v-1,147,-73,250,-224,250r-239,0r0,-225r102,0v80,-2,106,-37,107,-123r0,-399v-4,-111,60,-176,143,-193r0,-20v-80,-13,-143,-98,-143,-201r0,-397v-2,-82,-25,-124,-109,-123r-100,0r0,-226r243,0","w":759},"~":{"d":"377,-670v-98,0,-160,41,-230,101r-90,-205v101,-80,179,-137,316,-137v162,0,243,108,395,108v69,0,111,-21,158,-59r96,211v-78,58,-145,100,-250,100v-163,0,-237,-119,-395,-119","w":1079},"\u00a0":{"w":518,"k":{"*":72,"-":90,"\u00ad":90,",":143,".":143,"A":82,"\u00c0":82,"\u00c1":82,"\u00c2":82,"\u00c3":82,"\u00c4":82,"\u00c5":82,"C":27,"G":27,"O":27,"Q":27,"\u00c7":27,"\u00d2":27,"\u00d3":27,"\u00d4":27,"\u00d5":27,"\u00d6":27,"\u00d8":27,"T":74,"V":61,"W":51,"X":61,"Y":61,"\u00dd":61,"Z":23,"v":41,"y":41,"\u00fd":41,"\u00ff":41,"w":27,"x":35,"\u00c6":45,"\"":172,"'":172}},"\u00a1":{"d":"391,410r-274,0r0,-674r53,-332r168,0r53,332r0,674xm254,-733v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":600},"\u00a2":{"d":"788,-213v60,-6,111,-28,152,-51r61,201v-48,37,-123,62,-198,75r0,193r-248,0r0,-182v-270,-38,-382,-229,-383,-535v-1,-299,131,-492,383,-532r0,-185r248,0r0,185v73,9,131,27,184,53r-61,217v-39,-20,-86,-28,-138,-35r0,596xm604,-807v-123,34,-171,131,-170,295v1,145,52,258,170,291r0,-586"},"\u00a3":{"d":"104,-236v197,3,296,-156,248,-352r-248,0r0,-219r140,0v-36,-70,-68,-148,-66,-258v5,-274,181,-393,457,-397v159,-2,300,34,403,82r-86,237v-66,-34,-168,-69,-284,-69v-127,0,-209,59,-209,184v0,100,46,155,82,221r288,0r0,219r-200,0v20,120,-6,257,-78,309r-88,64r0,10r137,-31r471,0r0,236r-967,0r0,-236"},"\u00a4":{"d":"188,-707v1,-86,25,-149,58,-208r-78,-35r-158,-160r156,-164r160,158r39,76v97,-81,331,-80,430,-2r41,-74r159,-158r158,164r-158,160r-75,32v71,98,70,321,0,418r75,33r158,160r-158,164r-159,-158r-37,-76v-99,78,-334,82,-434,2r-39,74r-160,158r-156,-164r158,-160r74,-35v-31,-57,-54,-119,-54,-205xm582,-885v-100,0,-170,79,-170,176v0,101,69,177,170,177v100,0,168,-77,168,-177v0,-96,-69,-176,-168,-176"},"\u00a5":{"d":"172,-690r186,0r-387,-744r334,0r262,539r29,152r10,0r31,-156r254,-535r301,0r-389,744r184,0r0,164r-264,0r0,116r264,0r0,164r-264,0r0,246r-281,0r0,-246r-270,0r0,-164r270,0r0,-116r-270,0r0,-164"},"\u00a6":{"d":"123,-436r217,0r0,702r-217,0r0,-702xm340,-731r-217,0r0,-703r217,0r0,703","w":464},"\u00a7":{"d":"500,-197v85,-2,143,-11,143,-82v0,-66,-78,-80,-140,-99v-191,-59,-403,-98,-403,-345v0,-99,55,-179,115,-231r84,-29v-69,-45,-126,-102,-123,-217v4,-177,150,-262,359,-262v140,0,299,27,385,67r-66,215v-60,-29,-183,-57,-274,-57v-83,0,-131,19,-138,80v5,63,80,77,141,94v191,54,404,104,402,352v-1,99,-53,178,-113,230r-92,28v71,45,130,105,129,220v-2,187,-167,262,-366,262v-165,0,-288,-37,-385,-88r69,-205v69,32,162,69,273,67xm612,-553v67,-30,145,-133,89,-215v-46,-67,-144,-84,-236,-115v-48,29,-99,82,-98,156v0,48,21,83,65,106v44,23,104,46,180,68","w":1085},"\u00a8":{"d":"268,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm713,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":980},"\u00a9":{"d":"164,-288v-68,-179,-69,-438,6,-612v110,-255,331,-433,682,-433v349,0,573,179,682,433v76,176,76,436,0,612v-110,255,-332,433,-682,433v-359,0,-587,-167,-688,-433xm353,-823v-54,131,-53,327,0,458v77,192,240,320,499,320v259,0,424,-128,501,-320v53,-132,53,-327,0,-458v-78,-192,-241,-320,-501,-320v-259,0,-422,129,-499,320xm918,-418v57,0,92,-10,131,-31r59,181v-60,38,-160,63,-260,63v-227,0,-340,-159,-340,-389v0,-281,197,-448,474,-372v39,11,77,28,112,48r-66,179v-41,-21,-73,-31,-125,-31v-95,0,-130,62,-129,176v0,117,48,176,144,176","w":1705},"\u00aa":{"d":"426,-1298v-98,0,-193,25,-256,49r-45,-131v82,-43,229,-70,369,-70v193,0,265,55,270,229v4,154,-23,315,10,443r-207,0r-26,-94r-9,0v-42,51,-106,102,-213,102v-133,0,-233,-79,-233,-203v0,-204,224,-230,444,-225v4,-80,-15,-100,-104,-100xm530,-1073v-99,-10,-205,-11,-208,74v-1,44,32,69,75,69v78,0,107,-32,133,-71r0,-72","w":860},"\u00ab":{"d":"457,-535r315,-442r146,115r-166,250r-95,80r95,71r178,248r-146,115xm59,-530r328,-471r162,127r-178,258r-99,84r99,73r190,254r-162,127","w":999},"\u00ac":{"d":"92,-844r905,0r0,463r-245,0r0,-233r-660,0r0,-230","w":1079},"\u00ad":{"d":"111,-707r514,0r0,236r-514,0r0,-236","w":737,"k":{" ":164,"\u00a0":164,")":72,"]":72,"}":72,"*":84,"-":121,"\u00ad":121,",":240,".":240,"A":45,"\u00c0":45,"\u00c1":45,"\u00c2":45,"\u00c3":45,"\u00c4":45,"\u00c5":45,"T":143,"V":61,"W":41,"X":90,"Y":84,"\u00dd":84,"Z":20,"x":35,"\u00c6":84,"\"":381,"'":381}},"\u00ae":{"d":"172,-677v-59,-139,-60,-352,1,-491v87,-198,263,-333,534,-333v272,0,447,133,532,333v59,140,59,353,-1,491v-86,198,-261,331,-531,331v-273,0,-451,-131,-535,-331xm1092,-924v0,-249,-143,-393,-385,-393v-246,0,-388,145,-388,393v0,250,144,396,388,396v248,0,385,-144,385,-396xm909,-1051v0,88,-65,134,-145,140r57,28r133,224r-125,0r-129,-213r-98,-31r0,244r-106,0r0,-531v153,-32,413,-53,413,139xm602,-965v93,0,197,9,195,-82v0,-48,-40,-71,-119,-71v-27,0,-59,0,-76,8r0,145","w":1413},"\u00af":{"d":"123,-1348r661,0r0,189r-661,0r0,-189","w":907},"\u00b0":{"d":"459,-786v-207,0,-336,-126,-336,-336v0,-163,88,-267,206,-316v130,-54,297,-4,371,65v83,78,133,258,74,393v-50,117,-156,194,-315,194xm461,-1268v-76,0,-133,65,-133,146v0,82,57,140,133,141v76,0,137,-59,137,-141v0,-82,-61,-146,-137,-146","w":894},"\u00b1":{"d":"88,-1059r332,0r0,-338r239,0r0,338r334,0r0,228r-334,0r0,219r-239,0r0,-219r-332,0r0,-228xm88,-518r905,0r0,229r-905,0r0,-229","w":1079},"\u00b2":{"d":"410,-1653v183,-2,303,83,303,260v0,182,-111,273,-209,371r-96,51r0,8r120,-22r217,0r0,207r-641,0r0,-146v123,-87,253,-182,335,-307v58,-88,56,-213,-77,-213v-75,0,-142,30,-190,58r-70,-185v82,-51,191,-81,308,-82","w":843},"\u00b3":{"d":"750,-1047v-3,251,-264,314,-518,270v-46,-8,-84,-21,-117,-36r47,-184v106,52,352,74,352,-66v0,-83,-70,-100,-184,-100r-88,0r0,-78r149,-164r88,-51v-107,15,-232,12,-354,12r0,-194r582,0r0,127r-181,188r-69,37r0,10v172,-27,295,62,293,229","w":843},"\u00b4":{"d":"231,-1475r271,0r0,62r-228,254r-151,0","w":624},"\u00b5":{"d":"543,25v-110,0,-152,-44,-203,-103r-10,0r43,215r0,273r-267,0r0,-1434r267,0r0,559v3,161,35,264,188,264v133,0,203,-72,234,-178r0,-645r266,0r0,690v1,119,3,236,31,334r-197,0r-66,-152r-8,0v-47,94,-134,177,-278,177","w":1165},"\u03bc":{"d":"543,25v-110,0,-152,-44,-203,-103r-10,0r43,215r0,273r-267,0r0,-1434r267,0r0,559v3,161,35,264,188,264v133,0,203,-72,234,-178r0,-645r266,0r0,690v1,119,3,236,31,334r-197,0r-66,-152r-8,0v-47,94,-134,177,-278,177","w":1165},"\u00b6":{"d":"741,-1434r220,0r0,1700r-220,0r0,-1700xm365,-602v-162,-8,-246,-126,-289,-259v-53,-164,-5,-358,80,-448v63,-67,150,-125,274,-125r152,0r0,1700r-217,0r0,-868","w":1083},"\u00b7":{"d":"256,-489v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":518},"\u00b8":{"d":"377,88v103,10,180,47,180,154v0,184,-244,209,-434,176r16,-117v61,10,106,11,133,4v27,-7,41,-22,41,-45v0,-38,-59,-60,-176,-65r117,-195r172,0","w":679},"\u00b9":{"d":"147,-983r201,0r0,-336r21,-94r-64,65r-121,80r-100,-157r324,-228r176,0r0,670r178,0r0,205r-615,0r0,-205","w":843},"\u00ba":{"d":"428,-762v-232,0,-359,-111,-358,-348v1,-233,128,-348,358,-348v233,0,360,113,360,348v0,235,-127,348,-360,348xm428,-1286v-99,0,-121,61,-121,176v0,117,40,176,121,176v102,0,121,-60,121,-176v0,-115,-20,-176,-121,-176","w":858},"\u00bb":{"d":"541,-545r-314,443r-147,-115r168,-250r92,-80r-92,-71r-178,-248r143,-115xm940,-549r-328,471r-161,-127r178,-258r98,-84r-98,-74r-191,-253r162,-127","w":999},"\u00bc":{"d":"338,-1114r22,-94r-63,65r-121,80r-100,-158r323,-227r174,0r0,875r-235,0r0,-541xm1706,-160r-154,0r0,160r-209,0r0,-160r-423,0r0,-137r446,-580r186,0r0,535r154,0r0,182xm1343,-342v-1,-100,-2,-200,13,-285r-10,0r-46,101r-98,135r-74,65v65,-12,135,-19,215,-16xm1247,-1464r174,102r-880,1391r-176,-109","w":1802},"\u00bd":{"d":"338,-1114r22,-94r-63,65r-121,80r-100,-158r323,-227r174,0r0,875r-235,0r0,-541xm1419,-874v184,-1,304,82,303,260v0,182,-111,272,-209,370r-96,51r0,9r121,-23r217,0r0,207r-641,0r0,-145v123,-87,252,-183,335,-308v58,-88,56,-213,-77,-213v-75,0,-142,30,-190,58r-70,-185v81,-50,190,-79,307,-81xm1247,-1464r174,102r-880,1391r-176,-109","w":1849},"\u00be":{"d":"1757,-160r-153,0r0,160r-209,0r0,-160r-424,0r0,-137r446,-580r187,0r0,535r153,0r0,182xm1395,-342v-1,-100,-2,-200,12,-285r-10,0r-45,101r-99,135r-73,65v65,-12,135,-19,215,-16xm733,-842v-4,250,-263,314,-517,270v-46,-8,-85,-21,-118,-36r47,-185v106,52,353,75,353,-65v0,-84,-71,-100,-185,-100r-88,0r0,-78r150,-164r88,-51v-107,15,-232,12,-354,12r0,-195r581,0r0,127r-180,189r-70,37r0,10v172,-27,296,61,293,229xm1298,-1464r175,102r-881,1391r-176,-109","w":1853},"\u00bf":{"d":"459,434v-239,0,-409,-119,-412,-344v-3,-253,153,-331,278,-451v58,-55,97,-125,97,-239r227,0v29,255,-102,365,-232,479v-49,43,-95,88,-95,172v0,109,60,163,184,160v113,-3,205,-46,274,-96r101,196v-110,71,-235,123,-422,123xm528,-733v-96,0,-163,-63,-163,-158v0,-95,67,-156,163,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":929},"\u00c0":{"d":"817,-1540r-215,0r-323,-180r0,-62r325,0xm829,-317r-440,0r-108,317r-281,0r516,-1444r207,0r516,1444r-295,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227","w":1239},"\u00c1":{"d":"633,-1782r325,0r0,62r-327,180r-211,0xm829,-317r-440,0r-108,317r-281,0r516,-1444r207,0r516,1444r-295,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227","w":1239},"\u00c2":{"d":"526,-1782r197,0r260,191r0,80r-203,0r-116,-84r-41,-70r-43,68r-127,86r-199,0r0,-82xm829,-317r-440,0r-108,317r-281,0r516,-1444r207,0r516,1444r-295,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227","w":1239},"\u00c3":{"d":"434,-1581v-71,0,-111,27,-153,72r-50,-129v71,-77,130,-122,246,-125v161,-4,337,141,461,22r51,137v-62,58,-122,97,-217,97v-130,0,-212,-74,-338,-74xm829,-317r-440,0r-108,317r-281,0r516,-1444r207,0r516,1444r-295,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227","w":1239},"\u00c4":{"d":"410,-1518v-97,0,-156,-34,-156,-116v0,-82,60,-119,156,-119v94,0,153,38,153,119v0,81,-60,116,-153,116xm846,-1518v-94,0,-154,-35,-154,-116v0,-81,61,-119,154,-119v96,0,155,37,155,119v0,82,-59,116,-155,116xm829,-317r-440,0r-108,317r-281,0r516,-1444r207,0r516,1444r-295,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227","w":1239},"\u00c5":{"d":"504,-1411v-92,-20,-146,-72,-146,-168v0,-141,108,-184,263,-184v165,0,262,47,262,184v0,99,-55,145,-150,168r506,1411r-295,0r-115,-317r-440,0r-108,317r-281,0xm461,-543r307,0r-106,-319r-44,-225r-10,0r-43,227xm713,-1579v0,-52,-33,-68,-92,-68v-60,0,-91,23,-91,68v0,42,31,63,91,63v59,1,92,-15,92,-63","w":1239},"\u00c6":{"d":"807,-1090r-74,211r-172,304r258,0r0,-515r-12,0xm819,-348r-381,0r-202,348r-295,0r868,-1434r858,0r0,250r-567,0r0,334r516,0r0,250r-516,0r0,350r577,0r0,250r-858,0r0,-348","w":1765},"\u00c7":{"d":"770,-223v116,3,197,-25,266,-66r58,230v-71,52,-190,78,-306,86r-32,61v103,10,180,47,180,154v0,185,-243,206,-434,176r18,-99v76,7,173,7,172,-59v0,-38,-59,-60,-176,-65r102,-172v-363,-54,-539,-314,-540,-740v-2,-377,152,-609,418,-707v176,-65,432,-41,577,17r-55,238v-71,-33,-156,-45,-268,-43v-259,5,-382,197,-377,495v4,290,114,488,397,494","w":1144,"k":{" ":82,"\u00a0":82,"-":141,"\u00ad":141,"A":90,"\u00c0":90,"\u00c1":90,"\u00c2":90,"\u00c3":90,"\u00c4":90,"\u00c5":90,"C":68,"G":68,"O":68,"Q":68,"\u00c7":68,"\u00d2":68,"\u00d3":68,"\u00d4":68,"\u00d5":68,"\u00d6":68,"\u00d8":68,"T":90,"V":135,"W":53,"X":104,"Y":113,"\u00dd":113,"Z":100,"c":74,"e":74,"g":74,"o":74,"q":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"t":74,"v":109,"y":109,"\u00fd":109,"\u00ff":109,"w":82,"x":90,"z":35,"\u00c6":248,"a":23,"m":23,"n":23,"p":23,"r":23,"s":23,"u":23,"\u00e6":23}},"\u00c8":{"d":"721,-1540r-215,0r-324,-180r0,-62r326,0xm123,-1434r850,0r0,250r-570,0r0,334r519,0r0,250r-519,0r0,350r580,0r0,250r-860,0r0,-1434","w":1069},"\u00c9":{"d":"600,-1782r326,0r0,62r-328,180r-211,0xm123,-1434r850,0r0,250r-570,0r0,334r519,0r0,250r-519,0r0,350r580,0r0,250r-860,0r0,-1434","w":1069},"\u00ca":{"d":"449,-1782r196,0r260,191r0,80r-203,0r-116,-84r-41,-70r-43,68r-127,86r-199,0r0,-82xm123,-1434r850,0r0,250r-570,0r0,334r519,0r0,250r-519,0r0,350r580,0r0,250r-860,0r0,-1434","w":1069},"\u00cb":{"d":"328,-1518v-97,0,-156,-34,-156,-116v0,-82,60,-119,156,-119v94,0,153,38,153,119v0,81,-60,116,-153,116xm764,-1518v-94,0,-154,-35,-154,-116v0,-81,61,-119,154,-119v96,0,156,37,156,119v0,82,-60,116,-156,116xm123,-1434r850,0r0,250r-570,0r0,334r519,0r0,250r-519,0r0,350r580,0r0,250r-860,0r0,-1434","w":1069},"\u00cc":{"d":"494,-1540r-215,0r-324,-180r0,-62r326,0xm152,-1434r280,0r0,1434r-280,0r0,-1434","w":583},"\u00cd":{"d":"313,-1782r326,0r0,62r-328,180r-211,0xm152,-1434r280,0r0,1434r-280,0r0,-1434","w":583},"\u00ce":{"d":"199,-1782r196,0r260,191r0,80r-202,0r-117,-84r-41,-70r-43,68r-127,86r-199,0r0,-82xm152,-1434r280,0r0,1434r-280,0r0,-1434","w":583},"\u00cf":{"d":"78,-1518v-97,0,-156,-34,-156,-116v0,-82,60,-119,156,-119v93,0,153,37,153,119v0,82,-60,116,-153,116xm514,-1518v-94,0,-154,-35,-154,-116v0,-81,61,-119,154,-119v96,0,156,37,156,119v0,82,-60,116,-156,116xm152,-1434r280,0r0,1434r-280,0r0,-1434","w":583},"\u00d0":{"d":"488,-1453v535,-27,804,221,804,724v0,502,-282,782,-820,749r-224,-11v-35,-2,-62,-4,-80,-7r0,-659r-180,0r0,-164r180,0r0,-613v95,-13,212,-13,320,-19xm561,-227v382,21,482,-310,420,-671v-36,-210,-191,-330,-464,-304v-31,3,-53,3,-68,6r0,375r286,0r0,164r-286,0r0,424v29,4,77,4,112,6","w":1370,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d1":{"d":"485,-1581v-71,0,-110,27,-153,72r-49,-129v71,-76,130,-122,245,-125v161,-4,337,141,461,22r51,137v-62,58,-122,97,-217,97v-130,0,-212,-74,-338,-74xm479,-748r-112,-225r-11,0r33,225r0,748r-266,0r0,-1444r205,0r542,764r109,219r10,0r-33,-219r0,-754r267,0r0,1444r-205,0","w":1345},"\u00d2":{"d":"844,-1540r-215,0r-324,-180r0,-62r326,0xm686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d3":{"d":"754,-1782r325,0r0,62r-327,180r-211,0xm686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d4":{"d":"588,-1782r196,0r260,191r0,80r-202,0r-117,-84r-41,-70r-43,68r-127,86r-199,0r0,-82xm686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d5":{"d":"498,-1581v-71,0,-111,27,-154,72r-49,-129v71,-77,130,-122,246,-125v161,-4,336,141,460,22r52,137v-62,57,-122,97,-217,97v-130,0,-212,-74,-338,-74xm686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d6":{"d":"463,-1518v-97,0,-156,-34,-156,-116v0,-82,60,-119,156,-119v93,0,153,37,153,119v0,82,-60,116,-153,116xm899,-1518v-94,0,-154,-35,-154,-116v0,-81,61,-119,154,-119v96,0,156,37,156,119v0,82,-60,116,-156,116xm686,29v-437,0,-603,-305,-608,-746v-5,-444,191,-745,608,-745v435,0,603,305,608,745v5,444,-194,746,-608,746xm455,-1093v-103,142,-110,566,-8,733v48,79,120,138,239,139v100,0,175,-40,232,-117v102,-137,108,-563,10,-731v-48,-82,-118,-143,-242,-143v-100,0,-174,40,-231,119","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d7":{"d":"274,-1120r269,266r266,-266r162,166r-266,260r266,264r-162,168r-266,-268r-271,270r-161,-166r268,-268r-264,-260","w":1079},"\u00d8":{"d":"686,29v-123,0,-218,-26,-301,-68r-43,68r-176,-109r61,-96v-100,-130,-148,-313,-149,-541v-2,-444,191,-742,608,-745v126,-1,230,30,311,78r52,-80r174,102r-72,115v94,130,141,309,143,530v3,444,-194,746,-608,746xm686,-1212v-286,1,-335,319,-305,634v5,44,14,84,25,121r448,-700v-48,-37,-104,-55,-168,-55xm918,-338v79,-111,105,-439,53,-625r-441,697v127,82,306,44,388,-72","w":1372,"k":{"J":45," ":27,"\u00a0":27,")":35,"]":35,"}":35,"*":20,",":61,".":61,"A":57,"\u00c0":57,"\u00c1":57,"\u00c2":57,"\u00c3":57,"\u00c4":57,"\u00c5":57,"T":80,"V":76,"W":57,"X":113,"Y":98,"\u00dd":98,"Z":49,"v":16,"y":16,"\u00fd":16,"\u00ff":16,"x":61,"z":35,"\u00c6":125,"\"":82,"'":82}},"\u00d9":{"d":"809,-1540r-215,0r-324,-180r0,-62r326,0xm657,-225v187,-3,244,-104,244,-303r0,-906r266,0r0,926v-2,343,-168,533,-505,533v-363,0,-545,-166,-545,-498r0,-961r280,0r0,906v-2,195,67,306,260,303","w":1284},"\u00da":{"d":"748,-1782r325,0r0,62r-328,180r-210,0xm657,-225v187,-3,244,-104,244,-303r0,-906r266,0r0,926v-2,343,-168,533,-505,533v-363,0,-545,-166,-545,-498r0,-961r280,0r0,906v-2,195,67,306,260,303","w":1284},"\u00db":{"d":"559,-1782r197,0r260,191r0,80r-203,0r-117,-84r-41,-70r-43,68r-127,86r-198,0r0,-82xm657,-225v187,-3,244,-104,244,-303r0,-906r266,0r0,926v-2,343,-168,533,-505,533v-363,0,-545,-166,-545,-498r0,-961r280,0r0,906v-2,195,67,306,260,303","w":1284},"\u00dc":{"d":"428,-1518v-97,0,-156,-34,-156,-116v0,-82,60,-119,156,-119v94,0,154,38,154,119v0,81,-60,116,-154,116xm864,-1518v-94,0,-153,-35,-153,-116v0,-80,60,-119,153,-119v96,0,156,37,156,119v0,82,-60,116,-156,116xm657,-225v187,-3,244,-104,244,-303r0,-906r266,0r0,926v-2,343,-168,533,-505,533v-363,0,-545,-166,-545,-498r0,-961r280,0r0,906v-2,195,67,306,260,303","w":1284},"\u00dd":{"d":"668,-1782r325,0r0,62r-327,180r-211,0xm467,-532r-471,-902r334,0r262,539r29,152r10,0r31,-156r253,-535r302,0r-469,899r0,535r-281,0r0,-532","w":1212,"k":{"\u00ff":98,"\u00fc":113,"\u00fb":113,"\u00fa":113,"\u00f6":217,"\u00f5":217,"\u00f4":217,"\u00f2":217,"\u00f1":113,"\u00ef":113,"\u00ee":113,"\u00ec":113,"\u00eb":217,"\u00ea":217,"\u00e8":217,"\u00e5":113,"\u00e4":113,"\u00e2":113,"\u00e1":113," ":55,"\u00a0":55,"*":-49,"-":139,"\u00ad":139,",":242,".":242,"A":180,"\u00c0":180,"\u00c1":180,"\u00c2":180,"\u00c3":180,"\u00c4":180,"\u00c5":180,"C":98,"G":98,"O":98,"Q":98,"\u00c7":98,"\u00d2":98,"\u00d3":98,"\u00d4":98,"\u00d5":98,"\u00d6":98,"\u00d8":98,"T":143,"V":84,"W":61,"X":84,"Y":84,"\u00dd":84,"Z":119,"c":217,"e":217,"g":217,"o":217,"q":217,"\u00e7":217,"\u00e9":217,"\u00f0":217,"\u00f3":217,"\u00f8":217,"t":104,"v":98,"y":98,"\u00fd":98,"w":82,"x":123,"z":143,"\u00c6":252,"\"":-74,"'":-74,"\u00ae":-33,"a":147,"m":147,"n":147,"p":147,"r":147,"s":147,"u":147,"\u00e6":147,"\u00e0":113,"\u00e3":113,"\u00ed":113,"\u00f9":113}},"\u00de":{"d":"123,-1434r280,0r0,148v198,-11,397,2,523,83v116,74,196,192,194,388v-2,266,-144,407,-349,467v-110,32,-244,32,-368,18r0,330r-280,0r0,-1434xm825,-819v0,-218,-219,-252,-422,-219r0,465v33,7,80,9,121,8v181,-1,301,-65,301,-254","w":1171,"k":{" ":82,"\u00a0":82,"-":20,"\u00ad":20,",":266,".":266,"A":158,"\u00c0":158,"\u00c1":158,"\u00c2":158,"\u00c3":158,"\u00c4":158,"\u00c5":158,"C":23,"G":23,"O":23,"Q":23,"\u00c7":23,"\u00d2":23,"\u00d3":23,"\u00d4":23,"\u00d5":23,"\u00d6":23,"\u00d8":23,"T":16,"V":20,"W":14,"X":109,"Y":55,"\u00dd":55,"Z":41,"c":74,"e":74,"g":74,"o":74,"q":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"x":74,"z":27,"\u00c6":266,"a":59,"m":59,"n":59,"p":59,"r":59,"s":59,"u":59,"\u00e6":59,"\u00e0":20,"\u00e1":20,"\u00e2":20,"\u00e3":20,"\u00e4":20,"\u00e5":20,"\u00ec":20,"\u00ed":20,"\u00ee":20,"\u00ef":20,"\u00f1":20,"\u00f9":20,"\u00fa":20,"\u00fb":20,"\u00fc":20}},"\u00df":{"d":"621,-1227v-147,0,-191,66,-191,228r0,999r-264,0r0,-799r-141,0r0,-225r141,0v-1,-291,156,-426,440,-426v201,0,348,65,419,194v41,75,43,197,-4,263v-45,62,-108,105,-160,149v-41,34,-53,105,-6,135v148,96,386,115,378,367v-7,234,-143,367,-385,371v-125,2,-239,-37,-316,-82r72,-199v67,35,115,68,221,68v106,0,194,-139,112,-213v-124,-111,-378,-105,-378,-342v0,-164,109,-209,196,-283v23,-20,36,-45,36,-78v0,-84,-83,-127,-170,-127","w":1290},"\u00e0":{"d":"489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67xm637,-1159r-147,0r-254,-254r0,-62r278,0","w":1015},"\u00e1":{"d":"489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67xm485,-1475r271,0r0,62r-228,254r-151,0","w":1015},"\u00e2":{"d":"442,-1499r176,0r228,373r-211,0r-80,-136r-35,-100r-35,100r-92,136r-203,0xm489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67","w":1015},"\u00e3":{"d":"346,-1274v-57,0,-95,25,-131,60r-39,-134v67,-78,117,-133,221,-133v119,0,181,90,297,90v54,0,86,-22,121,-55r41,143v-64,68,-110,115,-207,115v-121,0,-185,-86,-303,-86xm489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67","w":1015},"\u00e4":{"d":"489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67xm299,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm744,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":1015},"\u00e5":{"d":"522,-1133v-133,0,-227,-67,-227,-192v0,-123,92,-199,227,-197v134,2,229,65,228,197v-1,114,-99,192,-228,192xm522,-1395v-42,1,-80,23,-80,70v0,42,40,68,80,68v45,0,80,-21,80,-68v0,-46,-37,-71,-80,-70xm489,-825v-105,-1,-244,25,-315,59r-63,-199v109,-50,270,-79,430,-79v250,0,370,112,368,358v-2,231,-42,496,23,688r-217,0r-43,-141r-10,0v-58,84,-153,155,-302,155v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v96,-141,307,-180,554,-169v17,-153,-7,-214,-154,-215xm322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67","w":1015},"\u00e6":{"d":"322,-324v-2,78,49,121,127,121v100,0,161,-56,196,-112r0,-134v-118,-11,-237,1,-297,58v-18,18,-26,40,-26,67xm1112,29v-180,0,-315,-71,-385,-185r-10,0v-79,94,-174,172,-357,172v-151,0,-244,-71,-290,-177v-36,-85,-28,-211,19,-280v95,-142,305,-180,552,-169v17,-153,-5,-214,-152,-215v-111,-1,-232,36,-309,73r-69,-192v163,-91,584,-176,704,10v63,-73,179,-119,311,-119v262,0,410,140,410,414v-1,69,-8,130,-20,195r-617,0v13,170,81,258,264,260v100,1,199,-39,252,-78r88,174v-82,65,-239,117,-391,117xm1290,-610v7,-139,-38,-229,-168,-230v-145,-1,-199,98,-215,230r383,0","w":1607},"\u00e7":{"d":"582,-207v89,2,145,-27,198,-59r62,203v-61,45,-145,72,-236,86r-37,65v103,10,181,48,181,154v0,186,-244,206,-435,176r19,-99v17,3,30,3,49,3v80,-1,123,-9,123,-62v0,-38,-59,-60,-176,-65r102,-172v-265,-34,-364,-236,-364,-535v0,-327,144,-540,456,-541v139,0,219,23,305,66r-63,217v-60,-29,-113,-49,-199,-47v-168,3,-227,115,-225,305v2,176,66,301,240,305","w":886,"k":{" ":49,"\u00a0":49,")":20,"]":20,"}":20,"-":78,"\u00ad":78,"c":35,"e":35,"g":35,"o":35,"q":35,"\u00e7":35,"\u00e8":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00f0":35,"\u00f2":35,"\u00f3":35,"\u00f4":35,"\u00f5":35,"\u00f6":35,"\u00f8":35,"v":35,"y":35,"\u00fd":35,"\u00ff":35,"w":35,"x":16,"z":16,"\"":45,"'":45}},"\u00e8":{"d":"596,-184v101,0,199,-40,252,-78r88,174v-82,65,-239,117,-391,117v-334,0,-475,-209,-477,-541v-2,-343,165,-541,491,-541v262,0,410,140,410,414v-1,67,-8,134,-21,195r-614,0v10,172,80,260,262,260xm721,-610v10,-138,-39,-229,-166,-230v-146,-1,-200,97,-215,230r381,0xm674,-1159r-147,0r-254,-254r0,-62r278,0","w":1040,"k":{")":27,"]":27,"}":27,"*":45,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"w":10,"x":43,"z":10,"\"":102,"'":102,"\u00ae":45}},"\u00e9":{"d":"596,-184v101,0,199,-40,252,-78r88,174v-82,65,-239,117,-391,117v-334,0,-475,-209,-477,-541v-2,-343,165,-541,491,-541v262,0,410,140,410,414v-1,67,-8,134,-21,195r-614,0v10,172,80,260,262,260xm721,-610v10,-138,-39,-229,-166,-230v-146,-1,-200,97,-215,230r381,0xm561,-1475r271,0r0,62r-228,254r-151,0","w":1040,"k":{")":27,"]":27,"}":27,"*":45,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"w":10,"x":43,"z":10,"\"":102,"'":102,"\u00ae":45}},"\u00ea":{"d":"453,-1499r176,0r227,373r-211,0r-80,-136r-35,-100r-34,100r-93,136r-202,0xm596,-184v101,0,199,-40,252,-78r88,174v-82,65,-239,117,-391,117v-334,0,-475,-209,-477,-541v-2,-343,165,-541,491,-541v262,0,410,140,410,414v-1,67,-8,134,-21,195r-614,0v10,172,80,260,262,260xm721,-610v10,-138,-39,-229,-166,-230v-146,-1,-200,97,-215,230r381,0","w":1040,"k":{")":27,"]":27,"}":27,"*":45,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"w":10,"x":43,"z":10,"\"":102,"'":102,"\u00ae":45}},"\u00eb":{"d":"596,-184v101,0,199,-40,252,-78r88,174v-82,65,-239,117,-391,117v-334,0,-475,-209,-477,-541v-2,-343,165,-541,491,-541v262,0,410,140,410,414v-1,67,-8,134,-21,195r-614,0v10,172,80,260,262,260xm721,-610v10,-138,-39,-229,-166,-230v-146,-1,-200,97,-215,230r381,0xm313,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm758,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":1040,"k":{")":27,"]":27,"}":27,"*":45,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e7":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00f0":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u00f6":10,"\u00f8":10,"v":29,"y":29,"\u00fd":29,"\u00ff":29,"w":10,"x":43,"z":10,"\"":102,"'":102,"\u00ae":45}},"\u00ec":{"d":"143,-1024r267,0r0,1024r-267,0r0,-1024xm397,-1159r-147,0r-254,-254r0,-62r278,0","w":550},"\u00ed":{"d":"143,-1024r267,0r0,1024r-267,0r0,-1024xm254,-1475r271,0r0,62r-228,254r-151,0","w":550},"\u00ee":{"d":"190,-1499r177,0r227,373r-211,0r-80,-136r-35,-100r-35,100r-92,136r-202,0xm143,-1024r267,0r0,1024r-267,0r0,-1024","w":550},"\u00ef":{"d":"143,-1024r267,0r0,1024r-267,0r0,-1024xm53,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm498,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":550,"k":{"\u00ae":-61}},"\u00f0":{"d":"584,-797v-167,-4,-250,133,-250,299v0,180,83,298,248,299v216,1,273,-273,227,-512v-36,-58,-138,-84,-225,-86xm1077,-618v0,382,-145,647,-512,647v-251,0,-397,-125,-459,-317v-41,-126,-42,-297,5,-419v68,-177,205,-315,440,-315v104,0,199,31,252,84v-32,-99,-98,-181,-172,-240r-139,95r-89,-113r91,-61v-46,-20,-94,-35,-142,-43r107,-164v66,20,149,51,213,86r108,-74r86,113r-67,47v174,140,278,355,278,674","w":1153},"\u00f1":{"d":"389,-1274v-57,0,-95,25,-131,60r-39,-134v67,-78,117,-133,221,-133v119,0,181,90,297,90v54,0,86,-22,121,-55r41,143v-63,69,-109,115,-207,115v-121,0,-185,-86,-303,-86xm367,-889v66,-87,165,-164,325,-164v247,0,318,162,318,416r0,637r-267,0r0,-582v-1,-148,-25,-233,-157,-235v-106,-2,-175,72,-203,153r0,664r-266,0r0,-1024r211,0r30,135r9,0","w":1116},"\u00f2":{"d":"551,29v-332,0,-479,-208,-483,-541v-4,-330,167,-541,483,-541v332,0,477,211,481,541v4,330,-164,541,-481,541xm551,-827v-159,0,-212,124,-209,315v3,168,43,315,209,315v165,0,207,-127,207,-315v0,-171,-43,-315,-207,-315xm678,-1159r-147,0r-254,-254r0,-62r278,0","w":1099,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00f3":{"d":"551,29v-332,0,-479,-208,-483,-541v-4,-330,167,-541,483,-541v332,0,477,211,481,541v4,330,-164,541,-481,541xm551,-827v-159,0,-212,124,-209,315v3,168,43,315,209,315v165,0,207,-127,207,-315v0,-171,-43,-315,-207,-315xm563,-1475r271,0r0,62r-228,254r-151,0","w":1099,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00f4":{"d":"473,-1499r176,0r228,373r-211,0r-80,-136r-35,-100r-35,100r-92,136r-203,0xm551,29v-332,0,-479,-208,-483,-541v-4,-330,167,-541,483,-541v332,0,477,211,481,541v4,330,-164,541,-481,541xm551,-827v-159,0,-212,124,-209,315v3,168,43,315,209,315v165,0,207,-127,207,-315v0,-171,-43,-315,-207,-315","w":1099,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00f5":{"d":"383,-1274v-57,0,-95,24,-131,60r-39,-134v67,-78,117,-133,221,-133v120,0,181,90,297,90v54,0,86,-22,121,-55r41,143v-64,68,-110,115,-207,115v-121,0,-185,-86,-303,-86xm551,29v-332,0,-479,-208,-483,-541v-4,-330,167,-541,483,-541v332,0,477,211,481,541v4,330,-164,541,-481,541xm551,-827v-159,0,-212,124,-209,315v3,168,43,315,209,315v165,0,207,-127,207,-315v0,-171,-43,-315,-207,-315","w":1099,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00f6":{"d":"551,29v-332,0,-479,-208,-483,-541v-4,-330,167,-541,483,-541v332,0,477,211,481,541v4,330,-164,541,-481,541xm551,-827v-159,0,-212,124,-209,315v3,168,43,315,209,315v165,0,207,-127,207,-315v0,-171,-43,-315,-207,-315xm329,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm774,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":1099,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00f7":{"d":"88,-807r905,0r0,229r-905,0r0,-229xm541,-932v-96,0,-164,-63,-164,-158v0,-96,68,-155,164,-155v100,0,168,58,168,155v0,97,-68,158,-168,158xm541,-139v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v100,0,168,58,168,156v0,97,-68,158,-168,158","w":1079},"\u00f8":{"d":"156,-162v-60,-87,-87,-206,-88,-350v-2,-330,164,-541,481,-541v89,0,161,17,223,45r49,-69r164,121r-55,77v67,89,99,214,100,367v2,330,-164,541,-481,541v-93,0,-170,-20,-236,-49r-51,69r-170,-123xm549,-197v165,0,206,-127,207,-315v0,-51,-6,-99,-17,-145r-305,424v30,25,69,36,115,36xm549,-827v-160,0,-208,124,-207,315v0,48,4,92,12,133r301,-418v-29,-20,-64,-30,-106,-30","w":1097,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00f9":{"d":"762,-152v-60,99,-174,181,-330,181v-250,0,-326,-158,-326,-416r0,-637r267,0r0,582v3,147,13,232,145,235v108,2,170,-75,201,-155r0,-662r266,0r0,713v0,110,10,224,33,311r-201,0r-47,-152r-8,0xm651,-1159r-147,0r-254,-254r0,-62r278,0","w":1101},"\u00fa":{"d":"762,-152v-60,99,-174,181,-330,181v-250,0,-326,-158,-326,-416r0,-637r267,0r0,582v3,147,13,232,145,235v108,2,170,-75,201,-155r0,-662r266,0r0,713v0,110,10,224,33,311r-201,0r-47,-152r-8,0xm534,-1475r271,0r0,62r-228,254r-151,0","w":1101},"\u00fb":{"d":"475,-1499r176,0r228,373r-211,0r-80,-136r-35,-100r-35,100r-92,136r-203,0xm762,-152v-60,99,-174,181,-330,181v-250,0,-326,-158,-326,-416r0,-637r267,0r0,582v3,147,13,232,145,235v108,2,170,-75,201,-155r0,-662r266,0r0,713v0,110,10,224,33,311r-201,0r-47,-152r-8,0","w":1101},"\u00fc":{"d":"762,-152v-60,99,-174,181,-330,181v-250,0,-326,-158,-326,-416r0,-637r267,0r0,582v3,147,13,232,145,235v108,2,170,-75,201,-155r0,-662r266,0r0,713v0,110,10,224,33,311r-201,0r-47,-152r-8,0xm325,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm770,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":1101},"\u00fd":{"d":"489,-449r37,160r13,0r26,-162r156,-573r274,0r-311,924v-67,185,-117,376,-249,482v-71,57,-223,42,-294,3r49,-213v128,41,197,-47,220,-172r-428,-1024r319,0xm520,-1475r271,0r0,62r-228,254r-151,0","w":978,"k":{" ":74,"\u00a0":74,"*":-45,",":147,".":147,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e7":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00f0":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"t":35,"v":-84,"y":-84,"\u00fd":-84,"\u00ff":-84,"w":-68,"x":-16}},"\u00fe":{"d":"769,-10v-106,50,-287,55,-386,0r0,420r-266,0r0,-1844r266,0r0,498r8,0v61,-70,129,-120,262,-117v290,6,386,190,385,514v0,262,-90,447,-269,529xm764,-545v0,-162,-41,-282,-191,-282v-110,0,-160,63,-190,155r0,426v40,31,79,51,152,49v182,-6,229,-134,229,-348","w":1105,"k":{"f":25,")":35,"]":35,"}":35,"*":41,",":20,".":20,"v":25,"y":25,"\u00fd":25,"\u00ff":25,"w":18,"x":49,"z":16,"\"":152,"'":152,"\u00ae":35}},"\u00ff":{"d":"489,-449r37,160r13,0r26,-162r156,-573r274,0r-311,924v-67,185,-117,376,-249,482v-71,57,-223,42,-294,3r49,-213v128,41,197,-47,220,-172r-428,-1024r319,0xm280,-1194v-84,0,-145,-57,-145,-139v0,-87,59,-144,145,-144v87,0,143,57,142,144v0,82,-57,139,-142,139xm725,-1194v-85,0,-142,-57,-142,-139v-1,-87,55,-144,142,-144v86,0,145,58,145,144v0,82,-61,139,-145,139","w":978,"k":{" ":74,"\u00a0":74,"*":-45,",":147,".":147,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e7":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00f0":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"t":35,"v":-84,"y":-84,"\u00fd":-84,"\u00ff":-84,"w":-68,"x":-16}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2009 ParaType Ltd. All rights reserved.
 * 
 * Trademark:
 * PT Sans is a trademark of the ParaType Ltd.
 * 
 * Description:
 * PT Sans is a type family of universal use. It consists of 8 styles: regular and
 * bold weights with corresponding italics form a standard computer font family;
 * two narrow styles (regular and bold) are intended for documents that require
 * tight set; two caption styles (regular and bold) are for texts of small point
 * sizes. The design combines traditional conservative appearance with modern
 * trends of humanistic sans serif and characterized by enhanced legibility. These
 * features beside conventional use in business applications and printed stuff made
 * the fonts quite useable for direction and guide signs, schemes, screens of
 * information kiosks and other objects of urban visual communications.
 * 
 * The fonts next to standard Latin and Cyrillic character sets contain signs of
 * title languages of the national republics of Russian Federation and support the
 * most of the languages of neighboring countries. The fonts were developed and
 * released by ParaType in 2009 with financial support from Federal Agency of Print
 * and Mass Communications of Russian Federation. Design - Alexandra Korolkova with
 * assistance of Olga Umpeleva and supervision of Vladimir Yefimov.
 * 
 * Manufacturer:
 * ParaType Ltd
 * 
 * Designer:
 * A.Korolkova, O.Umpeleva, V.Yefimov
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL_web
 */
Cufon.registerFont({"w":1064,"face":{"font-family":"PT Sans","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 3 2 2 3 9 2 4","ascent":"1536","descent":"-512","x-height":"23","bbox":"-233 -1782 2060.08 471.252","underline-thickness":"102.4","underline-position":"-102.4","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":546,"k":{"*":12,"-":16,"\u00ad":16,",":27,".":27,"T":63,"V":61,"W":39,"X":61,"Y":61,"\u00dd":61,"Z":45,"v":55,"y":55,"\u00fd":55,"\u00ff":55,"w":45,"\"":139,"'":139,"A":66,"\u00c0":66,"\u00c1":66,"\u00c2":66,"\u00c3":66,"\u00c4":66,"\u00c5":66,"x":51,"z":45}},"!":{"d":"485,-1434r164,0r-149,711r-111,361r-94,0r41,-361xm297,25v-69,0,-119,-50,-119,-119v0,-72,49,-119,119,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":559},"\"":{"d":"473,-1434r151,0r-143,396r-92,0xm246,-1434r151,0r-143,396r-92,0","w":620,"k":{" ":160,"\u00a0":160,"-":295,"\u00ad":295,",":238,".":238,"C":78,"G":78,"O":78,"Q":78,"\u00c7":78,"\u00d2":78,"\u00d3":78,"\u00d4":78,"\u00d5":78,"\u00d6":78,"\u00d8":78,"V":-78,"W":-78,"Y":-70,"\u00dd":-70,"\u00c6":389,"A":236,"\u00c0":236,"\u00c1":236,"\u00c2":236,"\u00c3":236,"\u00c4":236,"\u00c5":236,"a":82,"c":82,"d":82,"e":82,"g":82,"o":82,"q":82,"\u00e0":82,"\u00e1":82,"\u00e2":82,"\u00e3":82,"\u00e4":82,"\u00e5":82,"\u00e7":82,"\u00e8":82,"\u00e9":82,"\u00ea":82,"\u00eb":82,"\u00f0":82,"\u00f2":82,"\u00f3":82,"\u00f4":82,"\u00f5":82,"\u00f6":82,"\u00f8":82}},"#":{"d":"647,-461r-217,0r-80,342r-139,0r80,-342r-160,0r29,-131r164,0r63,-268r-154,0r29,-131r156,0r78,-324r139,0r-78,324r217,0r78,-324r139,0r-78,324r158,0r-33,131r-155,0r-64,268r150,0r-33,131r-150,0r-79,342r-140,0xm463,-592r217,0r63,-268r-217,0"},"$":{"d":"711,-797v127,95,256,197,256,418v0,261,-181,380,-432,402r-37,182r-131,0r39,-187v-111,-12,-221,-73,-281,-122r72,-125v55,36,148,94,239,106r123,-575v-115,-88,-244,-174,-244,-371v0,-253,168,-362,404,-385r41,-184r131,0r-39,182v105,7,187,42,256,76r-70,129v-56,-25,-135,-53,-217,-60xm535,-119v151,-7,263,-96,264,-246v0,-134,-80,-203,-154,-270xm721,-1313v-140,7,-238,86,-238,219v0,117,73,175,142,234"},"%":{"d":"1231,-1460r102,80r-1050,1405r-103,-80xm358,-762v-142,1,-237,-95,-235,-242v3,-220,98,-363,250,-428v45,-19,89,-26,133,-26v156,-1,237,88,237,244v-1,216,-88,356,-236,422v-47,21,-97,30,-149,30xm602,-1206v0,-127,-115,-165,-204,-108v-83,53,-134,160,-134,294v0,83,37,142,119,139v115,-4,171,-91,202,-189v12,-40,17,-85,17,-136xm1026,-2v-142,1,-237,-95,-235,-242v3,-220,98,-363,250,-428v45,-19,89,-26,133,-26v156,-1,237,88,237,244v-1,216,-88,356,-236,422v-47,21,-97,30,-149,30xm1270,-446v0,-127,-115,-165,-204,-108v-83,53,-134,160,-134,294v0,83,37,142,119,139v115,-4,171,-91,202,-189v12,-40,17,-85,17,-136","w":1507},"&":{"d":"1014,-166v-134,123,-373,248,-620,166v-126,-42,-216,-140,-216,-303v0,-147,72,-259,144,-348v79,-97,192,-180,303,-238v-44,-100,-84,-245,-35,-371v47,-121,154,-197,325,-198v144,-1,226,62,226,196v0,78,-30,150,-89,216v-59,66,-141,128,-243,184v62,176,153,339,252,479v86,-84,159,-206,219,-315r109,59v-72,120,-170,255,-261,354v77,95,121,142,209,201r-118,115v-76,-44,-148,-120,-205,-197xm342,-338v0,230,278,263,451,173v56,-29,109,-63,149,-103v-106,-148,-197,-336,-266,-516v-128,84,-248,182,-309,325v-17,40,-25,80,-25,121xm893,-1327v-195,0,-197,235,-129,373v78,-46,136,-91,175,-133v39,-42,58,-90,58,-142v-1,-61,-35,-98,-104,-98","w":1581},"'":{"d":"293,-1434r151,0r-143,396r-92,0","w":413,"k":{" ":160,"\u00a0":160,"-":295,"\u00ad":295,",":238,".":238,"C":78,"G":78,"O":78,"Q":78,"\u00c7":78,"\u00d2":78,"\u00d3":78,"\u00d4":78,"\u00d5":78,"\u00d6":78,"\u00d8":78,"V":-78,"W":-78,"Y":-70,"\u00dd":-70,"\u00c6":389,"A":236,"\u00c0":236,"\u00c1":236,"\u00c2":236,"\u00c3":236,"\u00c4":236,"\u00c5":236,"a":82,"c":82,"d":82,"e":82,"g":82,"o":82,"q":82,"\u00e0":82,"\u00e1":82,"\u00e2":82,"\u00e3":82,"\u00e4":82,"\u00e5":82,"\u00e7":82,"\u00e8":82,"\u00e9":82,"\u00ea":82,"\u00eb":82,"\u00f0":82,"\u00f2":82,"\u00f3":82,"\u00f4":82,"\u00f5":82,"\u00f6":82,"\u00f8":82}},"(":{"d":"303,-501v-65,311,-31,639,88,876r-94,71v-124,-175,-186,-350,-186,-596v0,-601,265,-1003,577,-1304r76,72v-210,237,-385,519,-461,881","w":544,"k":{"-":12,"\u00ad":12,"a":51,"c":51,"d":51,"e":51,"g":51,"o":51,"q":51,"\u00e0":51,"\u00e1":51,"\u00e2":51,"\u00e3":51,"\u00e4":51,"\u00e5":51,"\u00e7":51,"\u00e8":51,"\u00e9":51,"\u00ea":51,"\u00eb":51,"\u00f0":51,"\u00f2":51,"\u00f3":51,"\u00f4":51,"\u00f5":51,"\u00f6":51,"\u00f8":51}},")":{"d":"293,-805v-1,-254,-26,-423,-115,-581r103,-68v170,223,212,645,126,992v-93,378,-285,683,-524,908r-78,-71v204,-218,366,-520,449,-857v27,-110,39,-218,39,-323","w":544},"*":{"d":"330,-1464r51,86r37,114r43,-116r49,-82r98,53r-51,88r-96,98r139,-24r98,0r0,114r-92,0r-133,-24r94,98r49,80r-98,57r-51,-86r-49,-125r-37,119r-51,86r-103,-57r54,-86r88,-86r-121,24r-103,0r0,-114r103,0r129,24r-92,-90r-56,-94","w":681,"k":{" ":12,"\u00a0":12,"-":307,"\u00ad":307,",":487,".":487,"\u00c6":45,"A":20,"\u00c0":20,"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c4":20,"\u00c5":20}},"+":{"d":"113,-766r360,0r0,-371r148,0r0,371r360,0r0,148r-360,0r0,370r-148,0r0,-370r-360,0r0,-148","w":983},",":{"d":"139,14v-53,17,-106,-31,-104,-86v2,-73,53,-127,135,-127v116,0,122,142,85,239v-47,124,-142,218,-265,265r-33,-80v92,-29,164,-119,182,-211","w":380,"k":{" ":61,"\u00a0":61,"*":49,"-":258,"\u00ad":258,"T":20,"V":23,"W":14,"Y":27,"\u00dd":27,"v":121,"y":121,"\u00fd":121,"\u00ff":121,"w":51,"\"":287,"'":287,"\u00ae":33,"a":45,"c":45,"d":45,"e":45,"g":45,"o":45,"q":45,"\u00e0":45,"\u00e1":45,"\u00e2":45,"\u00e3":45,"\u00e4":45,"\u00e5":45,"\u00e7":45,"\u00e8":45,"\u00e9":45,"\u00ea":45,"\u00eb":45,"\u00f0":45,"\u00f2":45,"\u00f3":45,"\u00f4":45,"\u00f5":45,"\u00f6":45,"\u00f8":45,"z":-33}},"-":{"d":"162,-659r471,0r-35,139r-469,0","w":700,"k":{" ":156,"\u00a0":156,"*":14,"-":20,"\u00ad":20,",":246,".":246,"T":25,"V":10,"X":16,"Y":14,"\u00dd":14,"\u00c6":14,"\"":240,"'":240,"x":72,"z":55,")":12,"]":12,"}":12}},".":{"d":"190,25v-69,0,-118,-49,-118,-119v0,-73,48,-119,118,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":432,"k":{" ":61,"\u00a0":61,"*":49,"-":258,"\u00ad":258,"T":20,"V":23,"W":14,"Y":27,"\u00dd":27,"v":121,"y":121,"\u00fd":121,"\u00ff":121,"w":51,"\"":287,"'":287,"\u00ae":33,"a":45,"c":45,"d":45,"e":45,"g":45,"o":45,"q":45,"\u00e0":45,"\u00e1":45,"\u00e2":45,"\u00e3":45,"\u00e4":45,"\u00e5":45,"\u00e7":45,"\u00e8":45,"\u00e9":45,"\u00ea":45,"\u00eb":45,"\u00f0":45,"\u00f2":45,"\u00f3":45,"\u00f4":45,"\u00f5":45,"\u00f6":45,"\u00f8":45,"z":-33}},"\/":{"d":"877,-1458r116,63r-1067,1690r-116,-66","w":688},"0":{"d":"731,-1458v262,0,366,177,363,471v-4,396,-123,740,-346,922v-112,92,-302,122,-436,50v-134,-73,-196,-230,-195,-434v2,-416,123,-760,366,-932v74,-52,158,-77,248,-77xm934,-967v0,-211,-33,-348,-227,-348v-146,0,-232,122,-296,242v-82,154,-137,375,-135,616v1,198,54,338,236,338v155,0,243,-137,303,-266v71,-153,119,-365,119,-582"},"1":{"d":"160,-152r272,0r213,-991r45,-121r-100,97r-246,161r-57,-104r506,-348r69,0r-278,1306r266,0r-31,152r-690,0"},"2":{"d":"768,-1458v184,-4,287,115,287,289v0,187,-115,348,-210,482v-114,162,-271,330,-409,462r-112,88r0,8r127,-23r419,0r-28,152r-776,0r12,-59r304,-298r183,-196v108,-122,219,-260,286,-405v29,-64,44,-124,44,-179v0,-119,-52,-181,-178,-178v-123,3,-202,56,-291,111r-43,-123v116,-83,211,-127,385,-131"},"3":{"d":"162,-172v59,32,135,55,231,53v236,-5,383,-132,383,-358v0,-160,-73,-222,-252,-221r-147,0r12,-60r373,-454r106,-91r-129,21r-379,0r29,-152r696,0r-12,60r-411,495r-80,60r0,4r67,-14v191,7,287,128,287,327v0,254,-128,410,-320,486v-146,58,-397,51,-528,-11"},"4":{"d":"1053,-440r-232,0r-92,440r-149,0r92,-440r-602,0r14,-68r850,-948r104,0r-186,876r229,0xm799,-1030r55,-168r-8,0r-96,139r-355,391r-112,103r137,-15r282,0"},"5":{"d":"166,-164v92,48,268,64,380,16v134,-57,226,-169,226,-358v0,-171,-92,-231,-274,-231r-164,10r149,-707r607,0r-33,152r-461,0r-88,410v28,0,53,-5,82,-5v225,0,342,127,342,342v0,373,-221,560,-582,560v-103,0,-187,-16,-254,-48"},"6":{"d":"649,-852v204,0,344,132,340,352v-5,246,-112,410,-288,486v-98,42,-228,57,-336,15v-152,-59,-236,-201,-236,-419v0,-297,132,-541,281,-707v143,-160,354,-302,600,-333r8,131v-263,50,-459,212,-592,400v-48,69,-84,141,-109,216v71,-79,183,-141,332,-141xm514,-115v214,0,311,-153,311,-364v0,-140,-68,-239,-219,-234v-144,5,-249,75,-311,164v-3,18,-6,38,-8,59v-18,198,36,375,227,375"},"7":{"d":"141,0r742,-1200r106,-100r-119,18r-542,0r30,-152r813,0r-10,56r-852,1378r-168,0","k":{" ":104,"\u00a0":104,"-":125,"\u00ad":125,",":215,".":215,"C":10,"G":10,"O":10,"Q":10,"\u00c7":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"\u00d6":10,"\u00d8":10,"\u00c6":33,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c4":23,"\u00c5":23}},"8":{"d":"946,-406v0,287,-183,431,-483,431v-211,0,-338,-116,-338,-324v0,-228,168,-376,356,-453v-90,-73,-170,-149,-168,-315v3,-201,119,-313,273,-366v136,-46,312,-21,395,52v77,68,120,221,69,346v-55,134,-164,227,-288,296v94,78,184,165,184,333xm498,-119v170,-4,288,-84,288,-256v0,-167,-97,-240,-202,-307v-90,42,-162,95,-217,156v-55,61,-82,131,-82,209v0,132,74,201,213,198xm733,-1315v-155,0,-260,85,-260,240v0,151,85,205,184,272v94,-61,185,-138,235,-239v14,-29,21,-57,21,-86v1,-124,-61,-187,-180,-187"},"9":{"d":"879,-698v-89,75,-177,119,-340,116v-151,-3,-243,-86,-292,-202v-45,-106,-36,-279,7,-384v71,-174,218,-290,453,-290v248,0,367,176,370,434v3,326,-134,573,-295,744v-143,151,-350,275,-583,305r-9,-131v342,-80,577,-284,689,-592xm907,-848v46,-219,-1,-478,-227,-471v-147,4,-230,81,-277,192v-30,72,-37,203,-4,275v36,78,95,129,199,131v124,3,253,-60,309,-127"},":":{"d":"473,-801v-69,0,-119,-50,-119,-119v0,-72,48,-118,119,-118v71,0,119,46,119,118v0,69,-50,119,-119,119xm301,25v-69,0,-119,-50,-119,-119v0,-72,49,-119,119,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":546},";":{"d":"293,14v-53,18,-106,-32,-105,-86v2,-74,54,-127,136,-127v115,0,122,142,85,239v-47,124,-142,218,-266,265r-32,-80v92,-29,164,-119,182,-211xm485,-801v-69,0,-118,-49,-118,-119v0,-73,48,-118,118,-118v71,0,119,46,119,118v0,69,-50,119,-119,119","w":559},"<":{"d":"111,-625r0,-59r776,-473r78,127r-486,297r-186,78r184,65r498,295r-78,123","w":983},"=":{"d":"113,-936r868,0r0,148r-868,0r0,-148xm113,-596r868,0r0,147r-868,0r0,-147","w":983},">":{"d":"979,-705r0,60r-776,473r-78,-125r485,-297r187,-78r-185,-65r-497,-295r78,-125","w":983},"?":{"d":"612,-1458v184,0,295,85,295,250v0,377,-318,455,-467,689v-29,45,-49,97,-59,157r-129,0v34,-336,327,-424,458,-661v23,-42,33,-89,33,-142v0,-115,-59,-163,-188,-162v-105,0,-200,50,-272,90r-39,-119v101,-61,204,-102,368,-102xm283,25v-69,0,-119,-50,-119,-119v0,-72,49,-119,119,-119v70,0,118,46,118,119v0,70,-49,119,-118,119","w":847},"@":{"d":"1231,-1020v101,-1,150,36,209,78r67,-64r70,0r-120,683v-9,85,-17,182,75,176v188,-12,290,-150,347,-306v54,-148,41,-359,-19,-493v-106,-237,-336,-373,-672,-373v-380,0,-617,213,-738,492v-82,190,-83,463,-7,655v111,277,355,438,735,442v91,0,205,-24,272,-57r41,131v-196,92,-482,83,-694,8v-333,-119,-556,-385,-559,-835v-1,-314,121,-551,284,-711v157,-153,385,-264,674,-264v399,0,671,177,799,458v76,166,89,400,20,583v-59,156,-163,281,-301,355v-141,77,-416,102,-403,-120v2,-29,3,-58,8,-86r-8,0v-84,119,-184,260,-373,260v-255,0,-281,-338,-199,-567v58,-163,152,-303,286,-384v65,-40,134,-61,206,-61xm884,-532v-49,151,-60,385,122,385v74,0,126,-56,172,-104v58,-61,114,-141,153,-220r62,-334v-43,-48,-78,-76,-160,-76v-199,0,-294,182,-349,349","w":2179},"A":{"d":"827,-397r-499,0r-222,397r-174,0r828,-1456r76,0r206,1456r-157,0xm408,-545r403,0r-59,-436r-4,-217r-3,0r-92,221","w":1140},"B":{"d":"766,-1450v222,4,383,100,383,322v0,224,-134,345,-330,378r0,9v128,33,221,118,225,274v4,192,-88,306,-199,385v-164,117,-528,113,-763,72r299,-1411v113,-18,246,-31,385,-29xm872,-444v-7,-223,-257,-218,-491,-215r-109,514v163,25,375,19,478,-58v68,-51,126,-124,122,-241xm977,-1102v0,-229,-261,-213,-463,-188r-104,491r190,-1v167,-6,286,-59,349,-172v19,-34,28,-78,28,-130","w":1138,"k":{"T":59}},"C":{"d":"536,-161v132,65,339,27,435,-38r12,140v-124,93,-383,115,-543,40v-185,-87,-295,-275,-295,-542v0,-436,191,-717,495,-844v176,-74,440,-68,591,2r-74,150v-121,-64,-343,-74,-480,-3v-220,114,-360,345,-360,676v0,205,79,350,219,419","w":1114,"k":{" ":78,"\u00a0":78,"-":152,"\u00ad":152,"C":51,"G":51,"O":51,"Q":51,"\u00c7":51,"\u00d2":51,"\u00d3":51,"\u00d4":51,"\u00d5":51,"\u00d6":51,"\u00d8":51,"T":53,"V":51,"W":10,"X":82,"Y":68,"\u00dd":68,"Z":45,"v":111,"y":111,"\u00fd":111,"\u00ff":111,"w":88,"\u00c6":221,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"i":45,"j":45,"\u00ec":45,"\u00ed":45,"\u00ee":45,"\u00ef":45,"\u00f1":45,"\u00f9":45,"\u00fa":45,"\u00fb":45,"\u00fc":45,"m":59,"n":59,"p":59,"r":59,"s":59,"u":59,"\u00e6":59,"a":78,"c":78,"d":78,"e":78,"g":78,"o":78,"q":78,"\u00e0":78,"\u00e1":78,"\u00e2":78,"\u00e3":78,"\u00e4":78,"\u00e5":78,"\u00e7":78,"\u00e8":78,"\u00e9":78,"\u00ea":78,"\u00eb":78,"\u00f0":78,"\u00f2":78,"\u00f3":78,"\u00f4":78,"\u00f5":78,"\u00f6":78,"\u00f8":78,"t":72,"x":29,"z":33}},"D":{"d":"741,-1450v345,0,529,182,529,530v0,453,-200,763,-551,894v-150,56,-467,44,-637,28r305,-1436v96,-14,247,-16,354,-16xm1098,-897v4,-273,-133,-421,-424,-400r-156,9r-242,1147v176,16,358,6,476,-66v212,-130,341,-373,346,-690","w":1273,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"E":{"d":"387,-1434r739,0r-30,152r-580,0r-100,469r530,0r-31,151r-530,0r-109,510r590,0r-32,152r-752,0","w":1044},"F":{"d":"387,-1434r739,0r-30,152r-580,0r-104,489r540,0r-30,152r-541,0r-135,641r-164,0","w":1007},"G":{"d":"1180,-1255v-123,-62,-350,-73,-491,-6v-231,109,-372,341,-372,683v0,198,73,345,206,415v105,55,281,41,370,-15r84,-400r-229,-40r20,-97r377,0r-133,631v-136,104,-369,149,-554,72v-196,-81,-311,-264,-313,-545v-2,-322,110,-546,264,-701v176,-176,558,-260,842,-147","w":1193},"H":{"d":"1034,-657r-651,0r-137,657r-164,0r303,-1434r164,0r-131,625r649,0r131,-625r164,0r-303,1434r-164,0","w":1308},"I":{"d":"430,-1434r164,0r-303,1434r-164,0","w":567},"J":{"d":"455,-1434r163,0r-237,1119v-37,217,-159,374,-430,327v-26,-5,-58,-12,-76,-24r62,-146v36,29,134,38,182,12v67,-37,87,-120,106,-210","w":569},"K":{"d":"489,-664r-104,0r-139,664r-164,0r303,-1434r164,0r-143,668r81,-29r588,-639r203,0r-586,623r-94,63r80,82r358,666r-186,0","w":1179,"k":{" ":59,"\u00a0":59,"-":156,"\u00ad":156,"C":96,"G":96,"O":96,"Q":96,"\u00c7":96,"\u00d2":96,"\u00d3":96,"\u00d4":96,"\u00d5":96,"\u00d6":96,"\u00d8":96,"T":66,"V":12,"W":10,"X":61,"Y":53,"\u00dd":53,"v":84,"y":84,"\u00fd":84,"\u00ff":84,"w":66,"\u00c6":197,"A":59,"\u00c0":59,"\u00c1":59,"\u00c2":59,"\u00c3":59,"\u00c4":59,"\u00c5":59,"i":45,"j":45,"\u00ec":45,"\u00ed":45,"\u00ee":45,"\u00ef":45,"\u00f1":45,"\u00f9":45,"\u00fa":45,"\u00fb":45,"\u00fc":45,"m":45,"n":45,"p":45,"r":45,"s":45,"u":45,"\u00e6":45,"a":53,"c":53,"d":53,"e":53,"g":53,"o":53,"q":53,"\u00e0":53,"\u00e1":53,"\u00e2":53,"\u00e3":53,"\u00e4":53,"\u00e5":53,"\u00e7":53,"\u00e8":53,"\u00e9":53,"\u00ea":53,"\u00eb":53,"\u00f0":53,"\u00f2":53,"\u00f3":53,"\u00f4":53,"\u00f5":53,"\u00f6":53,"\u00f8":53,"t":55,"x":45,"z":33}},"L":{"d":"889,0r-807,0r303,-1434r164,0r-273,1282r644,0","w":1007,"k":{" ":82,"\u00a0":82,"*":313,"-":152,"\u00ad":152,"C":129,"G":129,"O":129,"Q":129,"\u00c7":129,"\u00d2":129,"\u00d3":129,"\u00d4":129,"\u00d5":129,"\u00d6":129,"\u00d8":129,"T":238,"V":201,"W":143,"X":203,"Y":205,"\u00dd":205,"Z":94,"v":199,"y":199,"\u00fd":199,"\u00ff":199,"w":137,"\u00c6":156,"\"":242,"'":242,"\u00ae":287,"A":145,"\u00c0":145,"\u00c1":145,"\u00c2":145,"\u00c3":145,"\u00c4":145,"\u00c5":145,"a":70,"c":70,"d":70,"e":70,"g":70,"o":70,"q":70,"\u00e0":70,"\u00e1":70,"\u00e2":70,"\u00e3":70,"\u00e4":70,"\u00e5":70,"\u00e7":70,"\u00e8":70,"\u00e9":70,"\u00ea":70,"\u00eb":70,"\u00f0":70,"\u00f2":70,"\u00f3":70,"\u00f4":70,"\u00f5":70,"\u00f6":70,"\u00f8":70,"t":72,"x":45,"z":55}},"M":{"d":"1333,-963r64,-215r-8,0r-115,197r-492,647r-49,0r-235,-647r-31,-197r-8,0r-17,213r-204,965r-156,0r305,-1434r113,0r266,734v12,52,17,111,33,159r94,-164r559,-729r145,0r-305,1434r-164,0","w":1544},"N":{"d":"535,-938r-70,-211r-6,0r-25,211r-198,938r-154,0r309,-1456r82,0r447,958r67,201r8,0r19,-201r200,-936r154,0r-309,1457r-76,0","w":1314},"O":{"d":"629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"P":{"d":"717,-1450v264,0,440,108,442,371v3,435,-354,577,-799,534r-114,545r-164,0r301,-1419v98,-24,216,-31,334,-31xm987,-1063v0,-244,-243,-260,-469,-227r-125,596v164,25,358,4,456,-72v81,-63,138,-153,138,-297","w":1089,"k":{" ":78,"\u00a0":78,",":254,".":254,"C":33,"G":33,"O":33,"Q":33,"\u00c7":33,"\u00d2":33,"\u00d3":33,"\u00d4":33,"\u00d5":33,"\u00d6":33,"\u00d8":33,"T":31,"X":82,"Y":49,"\u00dd":49,"Z":55,"\u00c6":213,"A":123,"\u00c0":123,"\u00c1":123,"\u00c2":123,"\u00c3":123,"\u00c4":123,"\u00c5":123}},"Q":{"d":"391,100v296,-54,473,127,764,123v56,0,114,-6,174,-20r-33,147v-251,72,-496,-33,-697,-89v-78,-22,-160,-29,-239,-11xm629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"R":{"d":"1114,-1096v0,263,-168,417,-412,455r74,74r221,567r-178,0r-246,-618r-192,-31r-135,649r-164,0r301,-1419v106,-20,207,-33,326,-31v240,4,405,110,405,354xm942,-1087v0,-171,-151,-235,-342,-212v-33,4,-60,5,-82,9r-112,528r141,0v232,-1,395,-89,395,-325","w":1163,"k":{"-":78,"\u00ad":78,"C":70,"G":70,"O":70,"Q":70,"\u00c7":70,"\u00d2":70,"\u00d3":70,"\u00d4":70,"\u00d5":70,"\u00d6":70,"\u00d8":70,"T":119,"V":94,"W":78,"X":76,"Y":106,"\u00dd":106,"Z":47,"v":45,"y":45,"\u00fd":45,"\u00ff":45,"w":33,"\u00c6":205,"A":51,"\u00c0":51,"\u00c1":51,"\u00c2":51,"\u00c3":51,"\u00c4":51,"\u00c5":51,"i":33,"j":33,"\u00ec":33,"\u00ed":33,"\u00ee":33,"\u00ef":33,"\u00f1":33,"\u00f9":33,"\u00fa":33,"\u00fb":33,"\u00fc":33,"m":45,"n":45,"p":45,"r":45,"s":45,"u":45,"\u00e6":45,"a":88,"c":88,"d":88,"e":88,"g":88,"o":88,"q":88,"\u00e0":88,"\u00e1":88,"\u00e2":88,"\u00e3":88,"\u00e4":88,"\u00e5":88,"\u00e7":88,"\u00e8":88,"\u00e9":88,"\u00ea":88,"\u00eb":88,"\u00f0":88,"\u00f2":88,"\u00f3":88,"\u00f4":88,"\u00f5":88,"\u00f6":88,"\u00f8":88,"x":45,"z":47}},"S":{"d":"119,-201v118,78,410,115,561,27v65,-38,115,-95,115,-195v-1,-110,-65,-167,-133,-218v-159,-119,-381,-186,-381,-464v0,-293,212,-404,507,-407v139,-1,278,22,361,65r-82,146v-68,-35,-190,-64,-309,-64v-167,0,-305,77,-305,240v0,113,64,171,133,222v158,118,381,185,381,460v0,291,-234,414,-555,414v-154,0,-290,-30,-377,-76","w":1034},"T":{"d":"1233,-1282r-424,0r-270,1282r-164,0r270,-1282r-420,0r31,-152r1008,0","w":1081,"k":{"\u00ff":219,"\u00f6":219,"\u00f5":219,"\u00f3":219,"\u00f0":219,"\u00eb":219,"\u00ea":219,"\u00e4":219,"\u00e3":219," ":78,"\u00a0":78,"-":250,"\u00ad":250,",":199,".":199,"C":94,"G":94,"O":94,"Q":94,"\u00c7":94,"\u00d2":94,"\u00d3":94,"\u00d4":94,"\u00d5":94,"\u00d6":94,"\u00d8":94,"T":-41,"V":12,"W":10,"X":66,"Y":25,"\u00dd":25,"Z":66,"v":219,"y":219,"\u00fd":219,"w":186,"\u00c6":229,"A":131,"\u00c0":131,"\u00c1":131,"\u00c2":131,"\u00c3":131,"\u00c4":131,"\u00c5":131,"i":66,"j":66,"\u00ec":66,"\u00ed":66,"\u00ee":66,"\u00ef":66,"\u00f1":66,"\u00f9":66,"\u00fa":66,"\u00fb":66,"\u00fc":66,"m":221,"n":221,"p":221,"r":221,"s":221,"u":221,"\u00e6":221,"a":219,"c":219,"d":219,"e":219,"g":219,"o":219,"q":219,"\u00e0":219,"\u00e1":219,"\u00e2":219,"\u00e5":219,"\u00e7":219,"\u00e8":219,"\u00e9":219,"\u00f2":219,"\u00f4":219,"\u00f8":219,"t":94,"x":244,"z":205,")":-53,"]":-53,"}":-53}},"U":{"d":"342,-362v1,176,93,229,268,229v255,0,324,-174,371,-391r193,-910r155,0r-201,957v-61,296,-188,495,-542,495v-260,0,-407,-105,-408,-356v0,-56,8,-119,23,-190r190,-906r164,0r-190,908v-15,60,-23,115,-23,164","w":1265},"V":{"d":"518,-453r0,220r4,0r92,-224r543,-977r176,0r-823,1457r-76,0r-221,-1457r168,0","w":1107,"k":{"\u00f6":72,"\u00eb":72,"\u00e4":72," ":59,"\u00a0":59,"*":-90,"-":104,"\u00ad":104,",":184,".":184,"C":51,"G":51,"O":51,"Q":51,"\u00c7":51,"\u00d2":51,"\u00d3":51,"\u00d4":51,"\u00d5":51,"\u00d6":51,"\u00d8":51,"T":12,"V":12,"W":10,"X":12,"Y":14,"\u00dd":14,"Z":12,"\u00c6":186,"\"":-78,"'":-78,"A":88,"\u00c0":88,"\u00c1":88,"\u00c2":88,"\u00c3":88,"\u00c4":88,"\u00c5":88,"m":68,"n":68,"p":68,"r":68,"s":68,"u":68,"\u00e6":68,"a":72,"c":72,"d":72,"e":72,"g":72,"o":72,"q":72,"\u00e0":72,"\u00e1":72,"\u00e2":72,"\u00e3":72,"\u00e5":72,"\u00e7":72,"\u00e8":72,"\u00e9":72,"\u00ea":72,"\u00f0":72,"\u00f2":72,"\u00f3":72,"\u00f4":72,"\u00f5":72,"\u00f8":72,"x":51,"z":43}},"W":{"d":"438,-477r-18,237r2,0r80,-241r481,-953r88,0r76,957r-19,237r2,0r82,-241r437,-953r168,0r-689,1457r-90,0r-77,-961r12,-217r-8,0r-82,219r-480,959r-90,0r-80,-1457r168,0","w":1613,"k":{"\u00eb":57," ":49,"\u00a0":49,"*":-90,"-":49,"\u00ad":49,",":143,".":143,"C":39,"G":39,"O":39,"Q":39,"\u00c7":39,"\u00d2":39,"\u00d3":39,"\u00d4":39,"\u00d5":39,"\u00d6":39,"\u00d8":39,"T":10,"V":10,"W":12,"X":10,"Y":14,"\u00dd":14,"Z":12,"\u00c6":162,"\"":-78,"'":-78,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"m":43,"n":43,"p":43,"r":43,"s":43,"u":43,"\u00e6":43,"a":57,"c":57,"d":57,"e":57,"g":57,"o":57,"q":57,"\u00e0":57,"\u00e1":57,"\u00e2":57,"\u00e3":57,"\u00e4":57,"\u00e5":57,"\u00e7":57,"\u00e8":57,"\u00e9":57,"\u00ea":57,"\u00f0":57,"\u00f2":57,"\u00f3":57,"\u00f4":57,"\u00f5":57,"\u00f6":57,"\u00f8":57,"x":47,"z":41}},"X":{"d":"592,-733r-266,-701r178,0r176,486r25,117r69,-117r391,-486r199,0r-571,695r290,739r-178,0r-196,-514r-29,-123r-78,123r-418,514r-198,0","w":1204,"k":{" ":59,"\u00a0":59,"-":156,"\u00ad":156,"C":96,"G":96,"O":96,"Q":96,"\u00c7":96,"\u00d2":96,"\u00d3":96,"\u00d4":96,"\u00d5":96,"\u00d6":96,"\u00d8":96,"T":66,"V":12,"W":10,"X":61,"Y":53,"\u00dd":53,"v":84,"y":84,"\u00fd":84,"\u00ff":84,"w":66,"\u00c6":197,"A":59,"\u00c0":59,"\u00c1":59,"\u00c2":59,"\u00c3":59,"\u00c4":59,"\u00c5":59,"i":45,"j":45,"\u00ec":45,"\u00ed":45,"\u00ee":45,"\u00ef":45,"\u00f1":45,"\u00f9":45,"\u00fa":45,"\u00fb":45,"\u00fc":45,"m":45,"n":45,"p":45,"r":45,"s":45,"u":45,"\u00e6":45,"a":53,"c":53,"d":53,"e":53,"g":53,"o":53,"q":53,"\u00e0":53,"\u00e1":53,"\u00e2":53,"\u00e3":53,"\u00e4":53,"\u00e5":53,"\u00e7":53,"\u00e8":53,"\u00e9":53,"\u00ea":53,"\u00eb":53,"\u00f0":53,"\u00f2":53,"\u00f3":53,"\u00f4":53,"\u00f5":53,"\u00f6":53,"\u00f8":53,"t":55,"x":45,"z":33}},"Y":{"d":"494,-569r-273,-865r178,0r183,627v4,40,0,89,8,125r61,-129r445,-623r184,0r-623,863r-120,571r-164,0","w":1087,"k":{"\u00f6":152,"\u00f5":152,"\u00f2":152,"\u00f0":152,"\u00eb":152,"\u00e8":152,"\u00e4":152,"\u00e3":152," ":49,"\u00a0":49,"*":-47,"-":119,"\u00ad":119,",":209,".":209,"C":80,"G":80,"O":80,"Q":80,"\u00c7":80,"\u00d2":80,"\u00d3":80,"\u00d4":80,"\u00d5":80,"\u00d6":80,"\u00d8":80,"T":25,"V":14,"W":10,"X":53,"Y":14,"\u00dd":14,"Z":49,"v":49,"y":49,"\u00fd":49,"\u00ff":49,"w":51,"\u00c6":188,"\"":-70,"'":-70,"A":133,"\u00c0":133,"\u00c1":133,"\u00c2":133,"\u00c3":133,"\u00c4":133,"\u00c5":133,"m":127,"n":127,"p":127,"r":127,"s":127,"u":127,"\u00e6":127,"a":152,"c":152,"d":152,"e":152,"g":152,"o":152,"q":152,"\u00e0":152,"\u00e1":152,"\u00e2":152,"\u00e5":152,"\u00e7":152,"\u00e9":152,"\u00ea":152,"\u00f3":152,"\u00f4":152,"\u00f8":152,"t":66,"x":121,"z":82}},"Z":{"d":"29,-154r891,-1046r100,-82r-750,0r31,-152r916,0r-31,154r-897,1053r-96,75r751,0r-31,152r-915,0","k":{" ":84,"\u00a0":84,"-":178,"\u00ad":178,"C":47,"G":47,"O":47,"Q":47,"\u00c7":47,"\u00d2":47,"\u00d3":47,"\u00d4":47,"\u00d5":47,"\u00d6":47,"\u00d8":47,"T":47,"V":12,"W":10,"X":57,"Y":49,"\u00dd":49,"Z":43,"\u00c6":193,"A":37,"\u00c0":37,"\u00c1":37,"\u00c2":37,"\u00c3":37,"\u00c4":37,"\u00c5":37,"a":47,"c":47,"d":47,"e":47,"g":47,"o":47,"q":47,"\u00e0":47,"\u00e1":47,"\u00e2":47,"\u00e3":47,"\u00e4":47,"\u00e5":47,"\u00e7":47,"\u00e8":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00f0":47,"\u00f2":47,"\u00f3":47,"\u00f4":47,"\u00f5":47,"\u00f6":47,"\u00f8":47,"z":45}},"[":{"d":"436,-1434r355,0r-31,144r-199,0r-344,1618r201,0r-31,143r-354,0","w":595,"k":{"-":12,"\u00ad":12,"a":51,"c":51,"d":51,"e":51,"g":51,"o":51,"q":51,"\u00e0":51,"\u00e1":51,"\u00e2":51,"\u00e3":51,"\u00e4":51,"\u00e5":51,"\u00e7":51,"\u00e8":51,"\u00e9":51,"\u00ea":51,"\u00eb":51,"\u00f0":51,"\u00f2":51,"\u00f3":51,"\u00f4":51,"\u00f5":51,"\u00f6":51,"\u00f8":51}},"\\":{"d":"920,227r-136,60r-700,-1688r141,-57","w":778},"]":{"d":"223,471r-352,0r31,-143r196,0r342,-1618r-198,0r30,-144r355,0","w":600},"^":{"d":"590,-1456r59,0r346,565r-170,0r-161,-276r-48,-142r-63,144r-191,274r-153,0","w":1024},"_":{"d":"-90,281r835,0r0,139r-835,0r0,-139","w":835},"`":{"d":"856,-1169r-88,0r-166,-263r8,-43r187,0","w":487},"a":{"d":"672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571","w":997,"k":{"T":219}},"b":{"d":"770,-1049v287,-9,255,414,180,626v-62,177,-174,312,-326,390v-161,82,-424,55,-536,-30r291,-1371r153,0r-124,586r8,0v81,-99,181,-195,354,-201xm838,-713v0,-115,-27,-205,-117,-205v-137,0,-223,101,-294,184v-28,32,-49,66,-65,97r-102,481v76,51,218,61,311,3v162,-101,266,-293,267,-560","w":1067,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"c":{"d":"471,-106v82,2,189,-50,238,-84r39,102v-77,62,-185,110,-314,113v-219,5,-332,-125,-332,-328v0,-337,136,-576,355,-694v128,-69,314,-63,430,-4r-58,127v-88,-47,-241,-67,-332,4v-131,102,-227,278,-231,503v-3,160,64,257,205,261","w":860,"k":{" ":61,"\u00a0":61,"-":59,"\u00ad":59,"a":59,"c":59,"d":59,"e":59,"g":59,"o":59,"q":59,"\u00e0":59,"\u00e1":59,"\u00e2":59,"\u00e3":59,"\u00e4":59,"\u00e5":59,"\u00e7":59,"\u00e8":59,"\u00e9":59,"\u00ea":59,"\u00eb":59,"\u00f0":59,"\u00f2":59,"\u00f3":59,"\u00f4":59,"\u00f5":59,"\u00f6":59,"\u00f8":59}},"d":{"d":"348,25v-177,0,-250,-139,-246,-347v6,-292,123,-527,307,-653v111,-76,303,-86,435,-33r90,-426r153,0r-229,1082v-23,115,-40,229,-29,356r-102,0r-29,-178r-8,0v-74,97,-179,199,-342,199xm291,-535v-33,157,-64,429,115,429v146,0,232,-131,294,-232r115,-532v-84,-54,-257,-59,-342,9v-89,72,-152,190,-182,326","w":1042},"e":{"d":"467,-106v111,0,223,-48,281,-93r49,99v-84,74,-219,123,-365,125v-220,1,-332,-137,-330,-357v2,-324,134,-555,345,-667v64,-34,132,-50,200,-50v172,0,285,81,285,246v0,97,-48,172,-141,229v-108,66,-318,93,-519,78v-43,183,-2,390,195,390xm774,-797v0,-84,-61,-121,-151,-121v-184,0,-274,137,-322,308v163,0,340,-4,428,-81v30,-25,45,-61,45,-106","w":948,"k":{"T":283,"\"":78,"'":78,"x":33,"z":10}},"f":{"d":"-188,270v93,33,230,49,274,-50v23,-51,48,-128,66,-236r143,-877r-158,0r27,-131r149,0v42,-213,58,-434,322,-434v93,0,181,20,246,49r-45,121v-106,-38,-238,-71,-301,13v-34,45,-55,164,-68,251r207,0r-25,131r-200,0r-164,963v-34,188,-91,356,-308,356v-85,0,-153,-11,-210,-41","w":569,"k":{" ":45,"\u00a0":45,"*":-244,"-":45,"\u00ad":45,",":61,".":61,"w":-45,"\"":-190,"'":-190,"\u00ae":-209,"i":-10,"j":-10,"\u00ec":-10,"\u00ed":-10,"\u00ee":-10,"\u00ef":-10,"\u00f1":-10,"\u00f9":-10,"\u00fa":-10,"\u00fb":-10,"\u00fc":-10,"t":-39,")":-199,"]":-199,"}":-199}},"g":{"d":"344,23v-161,0,-249,-130,-246,-308v6,-317,133,-560,335,-690v150,-97,429,-75,573,-4r-218,1026v-52,241,-164,379,-428,387v-149,5,-268,-51,-350,-92r68,-115v107,72,355,123,465,2v72,-79,111,-261,141,-403r-8,0v-76,98,-164,197,-332,197xm293,-539v-43,152,-68,430,108,430v133,0,208,-102,270,-186v24,-32,41,-63,56,-92r104,-494v-95,-42,-246,-44,-331,19v-98,72,-169,186,-207,323","w":1034},"h":{"d":"795,-1049v145,0,216,64,215,224v0,57,-9,126,-27,207r-131,618r-154,0r144,-693v21,-119,7,-234,-119,-225v-141,10,-235,107,-306,195v-28,34,-54,67,-61,102r-129,621r-153,0r303,-1434r153,0r-127,586r9,0v87,-100,201,-201,383,-201","w":1083},"i":{"d":"328,-1024r153,0r-217,1024r-153,0xm471,-1227v-62,0,-111,-49,-111,-110v0,-61,50,-113,111,-113v61,0,113,52,113,113v0,61,-52,110,-113,110","w":530},"j":{"d":"303,-1024r154,0r-230,1079v-51,238,-150,393,-424,367r31,-133v187,1,219,-140,252,-295xm446,-1227v-61,0,-110,-49,-110,-110v0,-60,49,-113,110,-113v61,0,113,52,113,113v0,61,-52,110,-113,110","w":509},"k":{"d":"434,-461r-110,0r-97,461r-153,0r303,-1434r153,0r-186,873r88,-23r369,-440r188,0r-364,416r-97,67r78,80r230,461r-170,0","w":919,"k":{" ":51,"\u00a0":51,"-":72,"\u00ad":72,"a":51,"c":51,"d":51,"e":51,"g":51,"o":51,"q":51,"\u00e0":51,"\u00e1":51,"\u00e2":51,"\u00e3":51,"\u00e4":51,"\u00e5":51,"\u00e7":51,"\u00e8":51,"\u00e9":51,"\u00ea":51,"\u00eb":51,"\u00f0":51,"\u00f2":51,"\u00f3":51,"\u00f4":51,"\u00f5":51,"\u00f6":51,"\u00f8":51}},"l":{"d":"260,18v-103,0,-160,-41,-158,-153v0,-27,5,-61,13,-101r254,-1198r153,0r-250,1190v-11,58,-13,131,43,131v63,0,85,-6,136,-24r0,117v-49,25,-121,38,-191,38","w":552},"m":{"d":"1305,-616v19,-113,75,-302,-72,-302v-121,0,-201,108,-265,185v-25,30,-43,61,-57,88r-133,645r-153,0r123,-580v18,-77,32,-146,32,-223v0,-71,-21,-115,-90,-115v-129,0,-205,103,-271,179v-25,29,-43,57,-57,82r-135,657r-153,0r217,-1024r108,0r-12,176r8,0v97,-93,191,-201,375,-201v129,0,153,88,156,218v85,-102,194,-218,368,-218v138,0,196,57,195,207v0,57,-11,134,-31,228r-129,614r-153,0","w":1562},"n":{"d":"774,-1049v143,0,224,65,221,222v0,41,-6,90,-18,147r-146,680r-153,0r151,-720v20,-109,-4,-207,-124,-198v-175,13,-269,145,-343,263r-135,655r-153,0r217,-1024r106,0r-8,176r8,0v86,-100,193,-201,377,-201","w":1069,"k":{"T":287}},"o":{"d":"434,25v-219,-2,-332,-134,-332,-344v0,-322,123,-560,329,-676v64,-36,134,-54,208,-54v214,2,315,133,315,344v0,312,-119,553,-315,673v-63,38,-131,57,-205,57xm763,-472v42,-175,72,-459,-155,-446v-112,6,-186,87,-238,170v-61,98,-104,238,-104,392v0,150,47,250,189,250v113,0,184,-91,234,-179v31,-55,57,-117,74,-187","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"p":{"d":"630,-28v-115,67,-292,66,-397,12r-90,426r-153,0r305,-1434r106,0r-10,176r8,0v81,-98,176,-201,349,-201v173,0,239,124,239,308v0,344,-140,587,-357,713xm790,-473v41,-144,82,-445,-100,-445v-134,0,-209,106,-272,190v-23,31,-39,62,-53,89r-101,485v77,63,213,60,304,3v104,-66,182,-183,222,-322","w":1040,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"q":{"d":"338,25v-282,6,-275,-357,-199,-586v60,-178,170,-322,316,-415v149,-94,396,-73,536,-1r-295,1387r-153,0r125,-582r-9,0v-72,94,-161,193,-321,197xm258,-303v0,112,29,197,123,197v134,0,218,-117,281,-206v24,-34,41,-67,55,-96r102,-473v-94,-42,-229,-42,-312,21v-145,110,-249,309,-249,557","w":1030},"r":{"d":"406,-848v67,-114,189,-230,376,-176r-41,135v-188,-42,-314,87,-372,217r-142,672r-153,0r217,-1024r106,0r0,176r9,0","w":669,"k":{"-":55,"\u00ad":55,",":123,".":123}},"s":{"d":"309,-106v129,-2,223,-53,221,-183v-2,-123,-104,-162,-182,-215v-89,-61,-182,-121,-182,-268v0,-187,165,-272,362,-277v130,-3,198,15,275,56r-51,123v-113,-67,-427,-89,-422,98v2,69,49,102,94,135v114,83,264,141,270,336v8,280,-289,370,-564,307v-51,-12,-93,-28,-124,-47r57,-129v55,36,154,64,246,64","w":815},"t":{"d":"545,-31v-53,31,-158,54,-240,56v-159,3,-208,-106,-176,-256r139,-662r-153,0r30,-131r152,0r43,-203r164,-47r-53,250r268,0r-31,131r-266,0r-129,619v-4,27,-10,54,-10,81v-1,66,28,87,90,87v74,0,121,-21,172,-50r0,125","w":641},"u":{"d":"334,25v-142,0,-213,-73,-211,-222v0,-48,6,-101,20,-161r140,-666r153,0r-143,682v-22,104,-25,242,92,236v129,-6,213,-97,280,-175v26,-30,46,-62,62,-92r137,-651r154,0r-146,693v-5,33,-10,69,-15,106v-9,72,-16,149,-15,225r-121,0r0,-195r-8,0v-86,107,-195,220,-379,220","w":1046},"v":{"d":"393,-424r19,195r4,0r88,-199r346,-596r176,0r-639,1047r-65,0r-199,-1047r164,0","w":915,"k":{" ":55,"\u00a0":55,",":141,".":141,"a":37,"c":37,"d":37,"e":37,"g":37,"o":37,"q":37,"\u00e0":37,"\u00e1":37,"\u00e2":37,"\u00e3":37,"\u00e4":37,"\u00e5":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f0":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"x":37,"z":18}},"w":{"d":"874,-1024r97,598r8,197r2,0r80,-201r301,-594r156,0r-551,1047r-78,0r-109,-676r-2,-168r-4,0r-76,170r-389,674r-73,0r-119,-1047r155,0r64,596r-4,199r8,0r82,-203r338,-592r114,0","w":1402,"k":{" ":45,"\u00a0":45,",":61,".":61,"x":33,"z":33}},"x":{"d":"416,-524r-219,-500r174,0v54,132,117,253,157,399r84,-116r248,-283r187,0r-435,492r244,532r-174,0v-61,-143,-133,-276,-180,-434r-86,123r-275,311r-186,0","w":991,"k":{" ":51,"\u00a0":51,"-":72,"\u00ad":72,"a":51,"c":51,"d":51,"e":51,"g":51,"o":51,"q":51,"\u00e0":51,"\u00e1":51,"\u00e2":51,"\u00e3":51,"\u00e4":51,"\u00e5":51,"\u00e7":51,"\u00e8":51,"\u00e9":51,"\u00ea":51,"\u00eb":51,"\u00f0":51,"\u00f2":51,"\u00f3":51,"\u00f4":51,"\u00f5":51,"\u00f6":51,"\u00f8":51}},"y":{"d":"397,-360r11,196r10,0r78,-198r340,-662r163,0r-588,1109v-63,112,-133,218,-223,290v-64,51,-154,57,-229,26r49,-141v71,21,114,1,168,-53v41,-40,84,-110,133,-207r-176,-1024r164,0","w":899,"k":{" ":55,"\u00a0":55,",":141,".":141,"a":37,"c":37,"d":37,"e":37,"g":37,"o":37,"q":37,"\u00e0":37,"\u00e1":37,"\u00e2":37,"\u00e3":37,"\u00e4":37,"\u00e5":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f0":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"x":37,"z":18}},"z":{"d":"23,-141r575,-654r113,-88r-529,0r31,-141r690,0r-31,141r-581,660r-111,82r535,0r-29,141r-690,0","w":878,"k":{" ":45,"\u00a0":45,"-":55,"\u00ad":55,"a":33,"c":33,"d":33,"e":33,"g":33,"o":33,"q":33,"\u00e0":33,"\u00e1":33,"\u00e2":33,"\u00e3":33,"\u00e4":33,"\u00e5":33,"\u00e7":33,"\u00e8":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00f0":33,"\u00f2":33,"\u00f3":33,"\u00f4":33,"\u00f5":33,"\u00f6":33,"\u00f8":33,"x":29}},"{":{"d":"342,-479v66,10,112,90,95,178r-111,530v-10,62,17,99,84,99r96,0r-33,143r-166,0v-118,6,-163,-96,-139,-213r102,-487v5,-25,9,-47,9,-66v0,-88,-43,-115,-125,-117r30,-139v101,0,165,-58,191,-174r106,-496v25,-116,98,-214,230,-215r166,0r-31,144v-69,2,-145,-9,-181,27v-19,19,-34,50,-44,94r-101,485v-17,105,-87,174,-176,194","w":667,"k":{"-":12,"\u00ad":12,"a":51,"c":51,"d":51,"e":51,"g":51,"o":51,"q":51,"\u00e0":51,"\u00e1":51,"\u00e2":51,"\u00e3":51,"\u00e4":51,"\u00e5":51,"\u00e7":51,"\u00e8":51,"\u00e9":51,"\u00ea":51,"\u00eb":51,"\u00f0":51,"\u00f2":51,"\u00f3":51,"\u00f4":51,"\u00f5":51,"\u00f6":51,"\u00f8":51}},"|":{"d":"236,-1434r141,0r0,1700r-141,0r0,-1700","w":487},"}":{"d":"438,-1436v120,-6,165,93,140,213r-103,488v-5,23,-8,43,-8,61v-3,89,44,120,127,121r-33,139v-212,1,-201,251,-244,426v-47,195,-49,456,-282,459r-164,0r33,-143v68,-1,141,8,177,-28v19,-19,34,-49,42,-93r102,-486v21,-104,86,-174,178,-194r5,-12v-79,-10,-118,-106,-97,-203r110,-506v8,-63,-18,-99,-83,-98r-94,0r28,-144r166,0","w":677},"~":{"d":"383,-713v-94,0,-149,42,-219,97r-70,-123v92,-70,168,-118,291,-121v158,-4,230,112,379,112v74,0,118,-30,168,-73r69,125v-81,55,-150,93,-253,96v-155,4,-217,-113,-365,-113","w":983},"\u00a0":{"w":546,"k":{"*":12,"-":16,"\u00ad":16,",":27,".":27,"T":63,"V":61,"W":39,"X":61,"Y":61,"\u00dd":61,"Z":45,"v":55,"y":55,"\u00fd":55,"\u00ff":55,"w":45,"\"":139,"'":139,"A":66,"\u00c0":66,"\u00c1":66,"\u00c2":66,"\u00c3":66,"\u00c4":66,"\u00c5":66,"x":51,"z":45}},"\u00a1":{"d":"197,410r-160,0r151,-711r109,-361r96,0r-45,361xm387,-809v-69,0,-119,-50,-119,-119v0,-72,49,-119,119,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":593},"\u00a2":{"d":"618,-111v70,-8,155,-49,201,-79r39,102v-61,54,-161,91,-256,106r-39,187r-135,0r39,-185v-168,-27,-260,-139,-260,-323v0,-312,114,-536,299,-663v58,-40,120,-63,186,-74r41,-189r137,0r-41,182v66,8,118,25,168,46r-57,127v-38,-23,-93,-36,-152,-41xm465,-719v-72,116,-138,377,-56,528v23,43,60,67,105,78r168,-796v-95,27,-165,107,-217,190"},"\u00a3":{"d":"224,-176v150,-74,228,-285,179,-506r-192,0r31,-131r133,0v-26,-118,-20,-280,24,-380v88,-200,340,-309,622,-248v48,10,89,26,120,44r-56,131v-60,-32,-155,-54,-254,-51v-195,7,-305,126,-309,326v-2,75,6,124,19,178r317,0r-31,131r-256,0v31,199,-22,396,-129,489r-92,70r-2,10r127,-28r500,0r-31,141r-868,0r30,-145v41,0,80,-12,118,-31"},"\u00a4":{"d":"313,-498v-88,-107,-77,-316,0,-420r-69,-43r-158,-159r100,-101r160,158r43,72v110,-90,310,-91,422,0r45,-72r160,-158r98,101r-156,159r-71,46v88,111,86,308,0,419r71,43r156,160r-98,98r-160,-157r-43,-68v-109,85,-318,85,-424,0r-43,68r-160,157r-100,-98r158,-160xm600,-924v-120,0,-209,98,-209,217v0,119,88,215,209,215v120,0,211,-95,211,-215v0,-120,-92,-217,-211,-217"},"\u00a5":{"d":"264,-672r182,0r-235,-762r178,0r189,627v4,40,0,89,8,125r61,-129r436,-623r185,0r-551,762r182,0r-27,123r-233,0r-27,129r234,0r-27,123r-233,0r-62,297r-164,0r62,-297r-238,0r25,-123r240,0r26,-129r-237,0"},"\u00a6":{"d":"236,-422r141,0r0,688r-141,0r0,-688xm377,-745r-141,0r0,-689r141,0r0,689","w":487},"\u00a7":{"d":"164,-174v106,68,430,115,424,-80v-3,-113,-118,-134,-202,-178v-102,-53,-206,-107,-206,-258v0,-133,75,-206,158,-264r94,-37v-82,-56,-114,-189,-57,-291v59,-106,174,-175,338,-176v129,-1,208,21,282,65r-59,125v-56,-31,-143,-51,-234,-51v-108,0,-196,59,-196,158v0,66,60,94,110,117v136,62,306,98,306,294v0,124,-81,218,-160,269r-111,37v61,43,97,89,97,190v0,198,-162,274,-363,279v-130,3,-212,-31,-287,-74xm573,-510v88,-40,185,-94,185,-217v0,-140,-138,-149,-238,-199v-85,40,-176,90,-176,213v0,137,128,158,229,203","w":968},"\u00a8":{"d":"494,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm868,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":501},"\u00a9":{"d":"209,-290v-67,-175,-69,-438,6,-608v108,-246,326,-417,664,-417v337,0,556,172,663,417v75,172,75,436,0,608v-107,247,-325,417,-663,417v-348,0,-571,-159,-670,-417xm346,-845v-59,141,-59,361,0,502v85,202,259,335,533,335v273,0,448,-134,532,-335v59,-141,59,-361,0,-502v-85,-202,-258,-335,-532,-335v-274,0,-449,134,-533,335xm698,-594v2,151,66,250,211,250v64,0,119,-12,164,-37r43,121v-64,36,-139,55,-242,55v-227,0,-339,-159,-339,-389v0,-274,186,-444,461,-374v38,10,71,27,106,40r-53,125v-47,-25,-99,-39,-156,-39v-136,0,-197,83,-195,248","w":1650},"\u00aa":{"d":"492,-1335v-97,0,-166,22,-228,49r-10,-100v77,-39,173,-64,297,-64v114,0,197,54,197,152v0,179,-94,338,-101,520r-102,0r-6,-94r-7,0v-51,46,-118,102,-225,102v-157,0,-229,-164,-154,-285v70,-115,260,-148,443,-123v30,-89,7,-157,-104,-157xm264,-961v0,48,31,76,86,76v103,0,166,-59,205,-112r16,-86v-137,-4,-307,-12,-307,122","w":780},"\u00ab":{"d":"434,-530r406,-467r90,94r-252,295r-115,76r70,75r137,289r-111,86xm78,-530r409,-471r93,96r-254,297r-117,76r72,75r137,291r-111,88","w":929},"\u00ac":{"d":"137,-803r869,0r0,393r-144,0r0,-245r-725,0r0,-148","w":1034},"\u00ad":{"d":"162,-659r471,0r-35,139r-469,0","w":700,"k":{" ":156,"\u00a0":156,"*":14,"-":20,"\u00ad":20,",":246,".":246,"T":25,"V":10,"X":16,"Y":14,"\u00dd":14,"\u00c6":14,"\"":240,"'":240,"x":72,"z":55,")":12,"]":12,"}":12}},"\u00ae":{"d":"323,-691v-55,-132,-56,-334,1,-465v81,-186,244,-310,499,-310v256,0,423,123,501,310v56,131,56,334,-1,465v-81,186,-246,310,-500,310v-255,0,-422,-122,-500,-310xm823,-1346v-264,0,-413,150,-413,422v0,270,152,422,413,422v267,0,414,-151,414,-422v0,-211,-100,-337,-253,-395v-50,-18,-104,-27,-161,-27xm1026,-1051v0,88,-65,134,-145,140r57,28r152,224r-125,0r-148,-213r-98,-31r0,244r-107,0r0,-531v154,-32,414,-53,414,139xm719,-965v92,0,194,9,194,-82v0,-48,-39,-71,-118,-71v-27,0,-59,0,-76,8r0,145","w":1433},"\u00af":{"d":"664,-1317r575,0r-27,127r-577,0","w":641},"\u00b0":{"d":"578,-881v-225,5,-339,-191,-267,-405v43,-129,213,-214,379,-153v104,38,176,127,176,270v0,181,-109,284,-288,288xm578,-1335v-88,0,-158,69,-158,166v0,97,70,165,158,165v88,0,157,-69,157,-165v0,-97,-69,-166,-157,-166","w":870},"\u00b1":{"d":"113,-1010r360,0r0,-370r148,0r0,370r360,0r0,148r-360,0r0,246r-148,0r0,-246r-360,0r0,-148xm113,-512r868,0r0,147r-868,0r0,-147","w":983},"\u00b2":{"d":"647,-1653v126,0,205,63,205,193v0,110,-56,191,-110,265v-66,91,-153,189,-250,249r-103,63r0,6r117,-32r268,0r-29,131r-563,0r15,-68r89,-66v146,-115,301,-249,395,-415v49,-86,40,-195,-85,-195v-75,0,-151,35,-201,64r-18,-117v67,-44,168,-78,270,-78","w":772},"\u00b3":{"d":"289,-926v39,23,102,39,168,39v136,0,223,-73,223,-190v0,-93,-52,-109,-164,-111r-106,0r8,-47r237,-240r78,-53v-102,18,-228,11,-346,12r27,-122r497,0r-14,67r-254,254v-18,14,-40,24,-55,41v127,-28,234,56,231,180v-6,227,-145,331,-383,332v-84,1,-146,-16,-200,-39","w":772},"\u00b4":{"d":"870,-1475r172,0r-10,43r-252,263r-90,0","w":487},"\u00b5":{"d":"403,25v-118,0,-171,-60,-196,-144r-10,0r-15,256r-57,273r-154,0r303,-1434r154,0r-121,588v-14,72,-20,90,-20,143v0,117,55,176,164,176v165,0,278,-120,337,-243r142,-664r153,0r-147,690v-20,103,-41,218,-41,334r-104,0r-25,-152r-8,0v-71,90,-196,177,-355,177","w":1075},"\u03bc":{"d":"403,25v-118,0,-171,-60,-196,-144r-10,0r-15,256r-57,273r-154,0r303,-1434r154,0r-121,588v-14,72,-20,90,-20,143v0,117,55,176,164,176v165,0,278,-120,337,-243r142,-664r153,0r-147,690v-20,103,-41,218,-41,334r-104,0r-25,-152r-8,0v-71,90,-196,177,-355,177","w":1075},"\u00b6":{"d":"774,-1434r141,0r0,1700r-141,0r0,-1700xm455,-635v-157,-7,-240,-125,-279,-253v-68,-221,25,-436,180,-512v67,-33,144,-35,240,-34r0,1700r-141,0r0,-901","w":1013},"\u00b7":{"d":"319,-487v-69,0,-118,-49,-118,-119v0,-73,48,-119,118,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":546},"\u00b8":{"d":"709,260v0,-64,-82,-74,-158,-76r133,-184r109,0r-68,88v74,9,127,58,127,143v0,167,-183,225,-367,187r35,-80v86,7,189,-2,189,-78","w":743},"\u00b9":{"d":"264,-903r207,0r111,-520r28,-74r-63,57r-166,92r-43,-94r348,-211r80,0r-160,750r185,0r-27,125r-526,0","w":772},"\u00ba":{"d":"358,-762v-142,1,-237,-95,-235,-242v3,-220,98,-363,250,-428v45,-19,89,-26,133,-26v156,-1,237,88,237,244v-1,216,-88,356,-236,422v-47,21,-97,30,-149,30xm602,-1206v0,-127,-115,-165,-204,-108v-83,53,-134,160,-134,294v0,83,37,142,119,139v115,-4,171,-91,202,-189v12,-40,17,-85,17,-136","w":776},"\u00bb":{"d":"573,-549r-405,467r-90,-92r252,-295r114,-78r-71,-88r-140,-289r117,-73xm930,-549r-410,471r-92,-94r254,-297r115,-78r-72,-90r-141,-291r118,-73","w":929},"\u00bc":{"d":"524,-1219r31,-73r-63,57r-166,92r-50,-100r355,-205r80,0r-187,875r-135,0xm1524,-197r-160,0r-43,197r-131,0r43,-197r-395,0r14,-75r569,-619r88,0r-120,574r161,0xm1257,-317v28,-123,47,-256,91,-363r-5,0r-63,94r-197,215r-77,64v76,-11,163,-11,251,-10xm1309,-1460r106,74r-997,1411r-107,-74","w":1632},"\u00bd":{"d":"524,-1219r31,-73r-63,57r-166,92r-50,-100r355,-205r80,0r-187,875r-135,0xm1401,-874v127,0,205,63,205,192v0,110,-56,191,-110,265v-67,91,-154,188,-251,249r-102,64r0,6r117,-33r268,0r-29,131r-563,0r14,-68r89,-66v146,-114,304,-249,396,-415v47,-86,40,-194,-85,-194v-76,0,-152,34,-201,63r-19,-117v67,-44,168,-77,271,-77xm1309,-1460r106,74r-997,1411r-107,-74","w":1656},"\u00be":{"d":"1597,-197r-159,0r-43,197r-131,0r43,-197r-396,0r15,-75r569,-619r88,0r-121,574r162,0xm1331,-317v28,-123,46,-256,90,-363r-4,0r-63,94r-197,215r-78,64v77,-11,164,-11,252,-10xm260,-721v40,22,102,39,168,39v136,0,223,-73,223,-190v0,-93,-52,-109,-164,-111r-106,0r8,-47r238,-240r78,-53v-102,18,-228,11,-347,12r27,-123r498,0r-15,68r-254,254v-18,14,-40,24,-55,41v127,-28,235,56,232,180v-6,225,-144,331,-383,332v-84,0,-147,-17,-201,-39xm1382,-1460r107,74r-997,1411r-107,-74","w":1705},"\u00bf":{"d":"-29,184v0,-451,453,-465,525,-846r131,0v-35,334,-327,423,-458,660v-23,41,-34,88,-34,141v0,117,59,165,189,164v105,0,197,-50,270,-90r41,119v-101,61,-206,102,-369,102v-184,0,-295,-86,-295,-250xm598,-811v-69,0,-119,-50,-119,-119v0,-72,49,-119,119,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":845},"\u00c0":{"d":"934,-1540r-129,0r-264,-199r8,-43r207,0xm827,-397r-499,0r-222,397r-174,0r828,-1456r76,0r206,1456r-157,0xm408,-545r403,0r-59,-436r-4,-217r-3,0r-92,221","w":1140},"\u00c1":{"d":"956,-1782r238,0r-10,43r-359,199r-149,0xm827,-397r-499,0r-222,397r-174,0r828,-1456r76,0r206,1456r-157,0xm408,-545r403,0r-59,-436r-4,-217r-3,0r-92,221","w":1140},"\u00c2":{"d":"805,-1782r98,0r203,209r-8,43r-140,0r-94,-100r-20,-72r-51,70r-146,102r-153,0r10,-45xm827,-397r-499,0r-222,397r-174,0r828,-1456r76,0r206,1456r-157,0xm408,-545r403,0r-59,-436r-4,-217r-3,0r-92,221","w":1140},"\u00c3":{"d":"694,-1585v-60,0,-97,25,-139,61r-29,-84v74,-67,129,-108,232,-112v102,-4,151,67,248,67v34,0,70,-14,108,-43r33,88v-69,54,-116,87,-207,90v-102,4,-149,-67,-246,-67xm827,-397r-499,0r-222,397r-174,0r828,-1456r76,0r206,1456r-157,0xm408,-545r403,0r-59,-436r-4,-217r-3,0r-92,221","w":1140},"\u00c4":{"d":"643,-1532v-58,0,-104,-38,-104,-94v0,-57,45,-96,104,-96v60,0,103,39,102,96v0,56,-43,94,-102,94xm1016,-1532v-59,0,-103,-39,-103,-94v0,-56,43,-96,103,-96v59,0,104,39,104,96v0,56,-46,94,-104,94xm827,-397r-499,0r-222,397r-174,0r828,-1456r76,0r206,1456r-157,0xm408,-545r403,0r-59,-436r-4,-217r-3,0r-92,221","w":1140},"\u00c5":{"d":"1038,-1573v0,108,-80,165,-196,170r200,1403r-157,0r-58,-397r-499,0r-222,397r-174,0r803,-1413v-86,-23,-129,-77,-129,-160v0,-115,81,-174,215,-174v128,0,217,52,217,174xm408,-543r403,0r-59,-438r-4,-217r-3,0r-92,221xm821,-1659v-57,0,-90,33,-90,86v0,50,32,82,90,82v56,0,93,-29,92,-82v0,-55,-34,-86,-92,-86","w":1140},"\u00c6":{"d":"940,-1227r-104,207r-357,469r322,0r145,-676r-6,0xm772,-403r-407,0r-304,403r-188,0r1108,-1434r750,0r-31,150r-580,0r-100,471r530,0r-32,149r-529,0r-110,514r589,0r-30,150r-752,0","w":1648},"\u00c7":{"d":"536,-161v132,65,339,27,435,-38r12,140v-85,59,-176,80,-311,84r-49,63v74,9,127,58,127,143v0,167,-183,225,-367,187r35,-80v85,6,188,-1,188,-78v0,-63,-81,-75,-157,-76r118,-166v-277,-49,-422,-261,-422,-579v0,-436,191,-717,495,-844v176,-74,440,-68,591,2r-74,150v-121,-64,-343,-74,-480,-3v-220,114,-360,345,-360,676v0,205,79,350,219,419","w":1114,"k":{" ":78,"\u00a0":78,"-":152,"\u00ad":152,"C":51,"G":51,"O":51,"Q":51,"\u00c7":51,"\u00d2":51,"\u00d3":51,"\u00d4":51,"\u00d5":51,"\u00d6":51,"\u00d8":51,"T":53,"V":51,"W":10,"X":82,"Y":68,"\u00dd":68,"Z":45,"v":111,"y":111,"\u00fd":111,"\u00ff":111,"w":88,"\u00c6":221,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"i":45,"j":45,"\u00ec":45,"\u00ed":45,"\u00ee":45,"\u00ef":45,"\u00f1":45,"\u00f9":45,"\u00fa":45,"\u00fb":45,"\u00fc":45,"m":59,"n":59,"p":59,"r":59,"s":59,"u":59,"\u00e6":59,"a":78,"c":78,"d":78,"e":78,"g":78,"o":78,"q":78,"\u00e0":78,"\u00e1":78,"\u00e2":78,"\u00e3":78,"\u00e4":78,"\u00e5":78,"\u00e7":78,"\u00e8":78,"\u00e9":78,"\u00ea":78,"\u00eb":78,"\u00f0":78,"\u00f2":78,"\u00f3":78,"\u00f4":78,"\u00f5":78,"\u00f6":78,"\u00f8":78,"t":72,"x":29,"z":33}},"\u00c8":{"d":"866,-1540r-129,0r-264,-199r8,-43r207,0xm387,-1434r739,0r-30,152r-580,0r-100,469r530,0r-31,151r-530,0r-109,510r590,0r-32,152r-752,0","w":1044},"\u00c9":{"d":"924,-1782r237,0r-10,43r-358,199r-150,0xm387,-1434r739,0r-30,152r-580,0r-100,469r530,0r-31,151r-530,0r-109,510r590,0r-32,152r-752,0","w":1044},"\u00ca":{"d":"782,-1782r99,0r202,209r-8,43r-139,0r-94,-100r-21,-72r-51,70r-145,102r-154,0r10,-45xm387,-1434r739,0r-30,152r-580,0r-100,469r530,0r-31,151r-530,0r-109,510r590,0r-32,152r-752,0","w":1044},"\u00cb":{"d":"596,-1532v-58,0,-104,-38,-104,-94v0,-57,45,-96,104,-96v60,0,103,39,102,96v0,56,-43,94,-102,94xm969,-1532v-59,0,-103,-39,-103,-94v0,-56,43,-96,103,-96v59,0,104,40,104,96v0,55,-46,94,-104,94xm387,-1434r739,0r-30,152r-580,0r-100,469r530,0r-31,151r-530,0r-109,510r590,0r-32,152r-752,0","w":1044},"\u00cc":{"d":"649,-1540r-129,0r-264,-199r8,-43r207,0xm430,-1434r164,0r-303,1434r-164,0","w":567},"\u00cd":{"d":"668,-1782r237,0r-10,43r-358,199r-150,0xm430,-1434r164,0r-303,1434r-164,0","w":567},"\u00ce":{"d":"539,-1782r98,0r203,209r-9,43r-139,0r-94,-100r-20,-72r-52,70r-145,102r-154,0r11,-45xm430,-1434r164,0r-303,1434r-164,0","w":567},"\u00cf":{"d":"358,-1532v-58,0,-104,-39,-104,-94v0,-56,45,-96,104,-96v60,0,103,40,103,96v0,55,-44,94,-103,94xm731,-1532v-59,0,-102,-38,-102,-94v-1,-57,42,-96,102,-96v59,0,105,40,105,96v0,55,-47,94,-105,94xm430,-1434r164,0r-303,1434r-164,0","w":567},"\u00d0":{"d":"750,-1450v343,0,526,182,526,530v0,454,-201,762,-550,894v-149,56,-465,44,-636,28r146,-682r-179,0r27,-123r176,0r135,-631v96,-14,248,-16,355,-16xm1104,-897v4,-272,-132,-420,-422,-400r-156,9r-102,485r281,0r-25,123r-283,0r-112,539v176,17,357,6,474,-66v211,-130,340,-373,345,-690","w":1282,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d1":{"d":"760,-1585v-60,0,-97,25,-139,61r-29,-84v74,-67,128,-108,231,-112v102,-4,151,67,248,67v34,0,71,-14,109,-43r32,88v-69,55,-115,87,-206,90v-102,3,-149,-67,-246,-67xm535,-938r-70,-211r-6,0r-25,211r-198,938r-154,0r309,-1456r82,0r447,958r67,201r8,0r19,-201r200,-936r154,0r-309,1457r-76,0","w":1314},"\u00d2":{"d":"1030,-1540r-129,0r-264,-199r8,-43r207,0xm629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d3":{"d":"1090,-1782r237,0r-10,43r-359,199r-149,0xm629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d4":{"d":"915,-1782r99,0r203,209r-9,43r-139,0r-94,-100r-21,-72r-51,70r-145,102r-154,0r10,-45xm629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d5":{"d":"778,-1585v-60,0,-97,25,-139,61r-29,-84v74,-67,129,-108,232,-112v102,-4,151,67,248,67v34,0,70,-14,108,-43r33,88v-69,54,-116,87,-207,90v-102,4,-149,-67,-246,-67xm629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d6":{"d":"733,-1532v-58,0,-104,-38,-104,-94v0,-57,45,-96,104,-96v60,0,103,40,103,96v0,55,-44,94,-103,94xm1106,-1532v-59,0,-102,-38,-102,-94v-1,-57,42,-96,102,-96v59,0,104,39,104,96v0,56,-46,94,-104,94xm629,25v-333,-1,-488,-206,-484,-549v4,-404,162,-710,427,-859v89,-50,189,-75,298,-75v321,0,455,206,455,540v0,404,-158,714,-415,868v-85,51,-179,75,-281,75xm1153,-913v0,-242,-85,-398,-311,-398v-181,0,-298,115,-378,238v-87,135,-147,333,-147,547v0,238,92,403,316,403v179,0,295,-112,375,-235v88,-136,145,-336,145,-555","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d7":{"d":"283,-1059r260,260r260,-260r104,109r-258,256r258,260r-104,106r-260,-260r-258,262r-107,-104r260,-264r-260,-256","w":983},"\u00d8":{"d":"1235,-1284v118,163,107,505,39,730v-67,219,-190,398,-364,504v-165,101,-430,99,-578,-7r-60,80r-102,-80r70,-95v-122,-160,-113,-506,-43,-731v68,-220,195,-395,375,-500v162,-94,436,-103,575,5r59,-80r101,78xm1044,-1239v-98,-94,-297,-91,-415,-7v-193,137,-312,397,-312,720v0,86,12,160,37,221xm843,-186v221,-152,339,-477,302,-846v-4,-35,-14,-67,-25,-94r-690,933v103,93,294,89,413,7","w":1333,"k":{",":59,".":59,"T":94,"V":51,"W":39,"X":96,"Y":80,"\u00dd":80,"Z":47,"\u00c6":98,"\"":78,"'":78,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u00c4":39,"\u00c5":39}},"\u00d9":{"d":"1022,-1540r-129,0r-264,-199r8,-43r207,0xm342,-362v1,176,93,229,268,229v255,0,324,-174,371,-391r193,-910r155,0r-201,957v-61,296,-188,495,-542,495v-260,0,-407,-105,-408,-356v0,-56,8,-119,23,-190r190,-906r164,0r-190,908v-15,60,-23,115,-23,164","w":1265},"\u00da":{"d":"1040,-1782r238,0r-10,43r-359,199r-149,0xm342,-362v1,176,93,229,268,229v255,0,324,-174,371,-391r193,-910r155,0r-201,957v-61,296,-188,495,-542,495v-260,0,-407,-105,-408,-356v0,-56,8,-119,23,-190r190,-906r164,0r-190,908v-15,60,-23,115,-23,164","w":1265},"\u00db":{"d":"891,-1782r98,0r203,209r-8,43r-140,0r-94,-100r-20,-72r-51,70r-146,102r-153,0r10,-45xm342,-362v1,176,93,229,268,229v255,0,324,-174,371,-391r193,-910r155,0r-201,957v-61,296,-188,495,-542,495v-260,0,-407,-105,-408,-356v0,-56,8,-119,23,-190r190,-906r164,0r-190,908v-15,60,-23,115,-23,164","w":1265},"\u00dc":{"d":"711,-1532v-59,0,-105,-39,-105,-94v0,-56,46,-96,105,-96v60,0,102,40,102,96v0,55,-43,94,-102,94xm1083,-1532v-59,0,-101,-39,-102,-94v0,-56,42,-96,102,-96v59,0,105,40,105,96v0,55,-47,94,-105,94xm342,-362v1,176,93,229,268,229v255,0,324,-174,371,-391r193,-910r155,0r-201,957v-61,296,-188,495,-542,495v-260,0,-407,-105,-408,-356v0,-56,8,-119,23,-190r190,-906r164,0r-190,908v-15,60,-23,115,-23,164","w":1265},"\u00dd":{"d":"971,-1782r237,0r-10,43r-358,199r-150,0xm494,-569r-273,-865r178,0r183,627v4,40,0,89,8,125r61,-129r445,-623r184,0r-623,863r-120,571r-164,0","w":1087,"k":{"\u00f6":152,"\u00f5":152,"\u00f2":152,"\u00f0":152,"\u00eb":152,"\u00e8":152,"\u00e4":152,"\u00e3":152," ":49,"\u00a0":49,"*":-47,"-":119,"\u00ad":119,",":209,".":209,"C":80,"G":80,"O":80,"Q":80,"\u00c7":80,"\u00d2":80,"\u00d3":80,"\u00d4":80,"\u00d5":80,"\u00d6":80,"\u00d8":80,"T":25,"V":14,"W":10,"X":53,"Y":14,"\u00dd":14,"Z":49,"v":49,"y":49,"\u00fd":49,"\u00ff":49,"w":51,"\u00c6":188,"\"":-70,"'":-70,"A":133,"\u00c0":133,"\u00c1":133,"\u00c2":133,"\u00c3":133,"\u00c4":133,"\u00c5":133,"m":127,"n":127,"p":127,"r":127,"s":127,"u":127,"\u00e6":127,"a":152,"c":152,"d":152,"e":152,"g":152,"o":152,"q":152,"\u00e0":152,"\u00e1":152,"\u00e2":152,"\u00e5":152,"\u00e7":152,"\u00e9":152,"\u00ea":152,"\u00f3":152,"\u00f4":152,"\u00f8":152,"t":66,"x":121,"z":82}},"\u00de":{"d":"1124,-915v0,446,-359,577,-798,536r-80,379r-164,0r305,-1434r162,0r-33,154v184,-15,374,-5,479,80v76,61,130,150,129,285xm952,-899v0,-243,-246,-258,-469,-225r-125,594v315,42,594,-48,594,-369","w":1089,"k":{" ":78,"\u00a0":78,",":254,".":254,"C":33,"G":33,"O":33,"Q":33,"\u00c7":33,"\u00d2":33,"\u00d3":33,"\u00d4":33,"\u00d5":33,"\u00d6":33,"\u00d8":33,"T":31,"X":82,"Y":49,"\u00dd":49,"Z":55,"\u00c6":213,"A":123,"\u00c0":123,"\u00c1":123,"\u00c2":123,"\u00c3":123,"\u00c4":123,"\u00c5":123}},"\u00df":{"d":"-188,270v53,20,87,23,157,23v52,0,91,-27,117,-80v26,-53,44,-124,61,-213r168,-893r-176,0r27,-131r176,0v29,-142,81,-274,167,-337v76,-55,169,-85,282,-85v183,1,313,73,313,242v0,231,-212,261,-319,385v-30,34,-37,104,-2,136v84,76,225,94,275,207v33,76,27,194,-12,269v-84,162,-295,270,-542,218v-41,-9,-78,-24,-111,-44r74,-137v101,70,269,60,361,-8v60,-45,128,-164,66,-246v-86,-115,-304,-109,-298,-315v6,-215,227,-235,320,-365v16,-22,24,-47,24,-76v-1,-91,-74,-122,-172,-123v-149,-1,-233,94,-270,283r-197,1020v-42,222,-74,426,-324,426v-85,0,-153,-11,-210,-41","w":1144},"\u00e0":{"d":"672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571xm737,-1169r-88,0r-166,-263r8,-43r187,0","w":997},"\u00e1":{"d":"672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571xm804,-1475r172,0r-10,43r-252,263r-90,0","w":997},"\u00e2":{"d":"735,-1499r62,0r135,373r-129,0r-49,-136r-13,-118r-69,118r-117,136r-139,0xm672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571","w":997},"\u00e3":{"d":"602,-1317v-57,0,-86,27,-129,60r-27,-86v67,-66,109,-119,199,-119v87,0,117,82,203,82v31,0,68,-17,110,-50r31,89v-61,59,-99,104,-180,104v-90,0,-117,-80,-207,-80xm672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571","w":997},"\u00e4":{"d":"672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571xm476,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm850,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":997},"\u00e5":{"d":"715,-1133v-113,0,-199,-67,-199,-184v0,-116,82,-187,199,-186v117,1,200,62,200,186v0,106,-91,184,-200,184xm715,-1405v-50,0,-88,30,-88,88v0,51,41,86,88,86v54,0,90,-29,90,-86v0,-56,-41,-88,-90,-88xm672,-174v-75,96,-172,199,-336,199v-162,0,-244,-106,-244,-318v0,-312,120,-560,321,-688v146,-93,392,-76,564,-20r-129,598v-27,121,-35,270,-25,407r-114,0r-29,-178r-8,0xm256,-293v0,95,34,192,127,187v152,-9,236,-129,299,-232r115,-553v-94,-42,-242,-38,-322,27v-140,114,-219,324,-219,571","w":997},"\u00e6":{"d":"221,-262v-1,100,45,147,139,147v126,0,204,-91,268,-160v21,-23,34,-44,44,-59r16,-139v-182,-13,-364,7,-438,114v-19,27,-29,59,-29,97xm1004,25v-158,0,-274,-80,-310,-203r-14,0v-80,95,-209,195,-377,194v-157,-1,-246,-92,-246,-243v0,-324,318,-375,654,-365v27,-89,41,-155,41,-199v0,-99,-59,-118,-168,-118v-116,0,-219,34,-301,71r-25,-123v103,-59,240,-78,393,-79v122,-1,217,41,238,135v71,-88,200,-141,338,-144v178,-4,299,80,299,232v0,330,-351,330,-686,342v-7,42,-16,80,-15,125v3,159,79,244,252,244v89,0,197,-45,250,-82r35,110v-85,61,-218,103,-358,103xm1368,-795v0,-87,-55,-126,-166,-123v-197,5,-286,144,-338,318v183,-2,370,-1,463,-88v27,-26,41,-62,41,-107","w":1544},"\u00e7":{"d":"471,-106v82,2,189,-50,238,-84r39,102v-62,54,-168,101,-265,113r-51,63v74,9,127,58,127,143v0,168,-183,224,-366,187r34,-80v86,6,189,-1,189,-78v0,-64,-82,-74,-158,-76r117,-159v-181,-18,-273,-142,-273,-328v0,-337,136,-576,355,-694v128,-69,314,-63,430,-4r-58,127v-88,-47,-241,-67,-332,4v-131,102,-227,278,-231,503v-3,160,64,257,205,261","w":860,"k":{" ":61,"\u00a0":61,"-":59,"\u00ad":59,"a":59,"c":59,"d":59,"e":59,"g":59,"o":59,"q":59,"\u00e0":59,"\u00e1":59,"\u00e2":59,"\u00e3":59,"\u00e4":59,"\u00e5":59,"\u00e7":59,"\u00e8":59,"\u00e9":59,"\u00ea":59,"\u00eb":59,"\u00f0":59,"\u00f2":59,"\u00f3":59,"\u00f4":59,"\u00f5":59,"\u00f6":59,"\u00f8":59}},"\u00e8":{"d":"467,-106v111,0,223,-48,281,-93r49,99v-84,74,-219,123,-365,125v-220,1,-332,-137,-330,-357v2,-324,134,-555,345,-667v64,-34,132,-50,200,-50v172,0,285,81,285,246v0,97,-48,172,-141,229v-108,66,-318,93,-519,78v-43,183,-2,390,195,390xm774,-797v0,-84,-61,-121,-151,-121v-184,0,-274,137,-322,308v163,0,340,-4,428,-81v30,-25,45,-61,45,-106xm704,-1169r-88,0r-166,-263r8,-43r187,0","w":948,"k":{"T":283,"\"":78,"'":78,"x":33,"z":10}},"\u00e9":{"d":"467,-106v111,0,223,-48,281,-93r49,99v-84,74,-219,123,-365,125v-220,1,-332,-137,-330,-357v2,-324,134,-555,345,-667v64,-34,132,-50,200,-50v172,0,285,81,285,246v0,97,-48,172,-141,229v-108,66,-318,93,-519,78v-43,183,-2,390,195,390xm774,-797v0,-84,-61,-121,-151,-121v-184,0,-274,137,-322,308v163,0,340,-4,428,-81v30,-25,45,-61,45,-106xm768,-1475r172,0r-10,43r-252,263r-90,0","w":948,"k":{"T":283,"\"":78,"'":78,"x":33,"z":10}},"\u00ea":{"d":"702,-1499r62,0r135,373r-129,0r-49,-136r-12,-118r-70,118r-117,136r-139,0xm467,-106v111,0,223,-48,281,-93r49,99v-84,74,-219,123,-365,125v-220,1,-332,-137,-330,-357v2,-324,134,-555,345,-667v64,-34,132,-50,200,-50v172,0,285,81,285,246v0,97,-48,172,-141,229v-108,66,-318,93,-519,78v-43,183,-2,390,195,390xm774,-797v0,-84,-61,-121,-151,-121v-184,0,-274,137,-322,308v163,0,340,-4,428,-81v30,-25,45,-61,45,-106","w":948,"k":{"T":283,"\"":78,"'":78,"x":33,"z":10}},"\u00eb":{"d":"467,-106v111,0,223,-48,281,-93r49,99v-84,74,-219,123,-365,125v-220,1,-332,-137,-330,-357v2,-324,134,-555,345,-667v64,-34,132,-50,200,-50v172,0,285,81,285,246v0,97,-48,172,-141,229v-108,66,-318,93,-519,78v-43,183,-2,390,195,390xm774,-797v0,-84,-61,-121,-151,-121v-184,0,-274,137,-322,308v163,0,340,-4,428,-81v30,-25,45,-61,45,-106xm494,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm868,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":948,"k":{"T":283,"\"":78,"'":78,"x":33,"z":10}},"\u00ec":{"d":"328,-1024r153,0r-217,1024r-153,0xm508,-1169r-88,0r-166,-263r8,-43r187,0","w":530},"\u00ed":{"d":"328,-1024r153,0r-217,1024r-153,0xm542,-1475r172,0r-10,43r-252,263r-90,0","w":530},"\u00ee":{"d":"479,-1499r62,0r135,373r-129,0r-49,-136r-13,-118r-69,118r-117,136r-139,0xm328,-1024r153,0r-217,1024r-153,0","w":530},"\u00ef":{"d":"328,-1024r153,0r-217,1024r-153,0xm279,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm653,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":530},"\u00f0":{"d":"623,-1044v110,0,156,30,204,81v1,-96,-16,-177,-51,-245r-166,71r-45,-82r160,-69v-41,-51,-90,-88,-150,-115r121,-55v63,26,115,64,156,115r156,-68r41,84r-146,63v103,182,76,562,22,769v-55,212,-148,379,-302,466v-65,37,-132,54,-199,54v-211,0,-320,-134,-320,-344v0,-304,122,-543,310,-665v63,-41,133,-60,209,-60xm809,-782v-27,-128,-229,-170,-335,-76v-122,109,-203,300,-208,522v-3,129,56,230,166,230v161,0,244,-129,298,-250v51,-114,78,-281,79,-426","w":1015,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f1":{"d":"608,-1317v-57,0,-86,27,-129,60r-26,-86v67,-66,108,-119,198,-119v88,0,117,82,203,82v31,0,69,-17,111,-50r30,89v-61,59,-99,104,-180,104v-90,0,-117,-80,-207,-80xm754,-1049v143,0,224,65,221,222v0,41,-6,90,-18,147r-146,680r-153,0r151,-720v20,-109,-4,-207,-124,-198v-175,13,-269,145,-343,263r-135,655r-153,0r217,-1024r106,0r-8,176r8,0v86,-100,193,-201,377,-201","w":1069},"\u00f2":{"d":"434,25v-219,-2,-332,-134,-332,-344v0,-322,123,-560,329,-676v64,-36,134,-54,208,-54v214,2,315,133,315,344v0,312,-119,553,-315,673v-63,38,-131,57,-205,57xm763,-472v42,-175,72,-459,-155,-446v-112,6,-186,87,-238,170v-61,98,-104,238,-104,392v0,150,47,250,189,250v113,0,184,-91,234,-179v31,-55,57,-117,74,-187xm729,-1169r-88,0r-166,-263r8,-43r187,0","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f3":{"d":"434,25v-219,-2,-332,-134,-332,-344v0,-322,123,-560,329,-676v64,-36,134,-54,208,-54v214,2,315,133,315,344v0,312,-119,553,-315,673v-63,38,-131,57,-205,57xm763,-472v42,-175,72,-459,-155,-446v-112,6,-186,87,-238,170v-61,98,-104,238,-104,392v0,150,47,250,189,250v113,0,184,-91,234,-179v31,-55,57,-117,74,-187xm772,-1475r172,0r-10,43r-252,263r-90,0","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f4":{"d":"702,-1499r62,0r135,373r-129,0r-49,-136r-12,-118r-70,118r-117,136r-139,0xm434,25v-219,-2,-332,-134,-332,-344v0,-322,123,-560,329,-676v64,-36,134,-54,208,-54v214,2,315,133,315,344v0,312,-119,553,-315,673v-63,38,-131,57,-205,57xm763,-472v42,-175,72,-459,-155,-446v-112,6,-186,87,-238,170v-61,98,-104,238,-104,392v0,150,47,250,189,250v113,0,184,-91,234,-179v31,-55,57,-117,74,-187","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f5":{"d":"557,-1317v-57,0,-86,27,-129,60r-27,-86v67,-66,109,-119,199,-119v87,0,117,82,203,82v31,0,68,-17,110,-50r31,89v-61,59,-99,104,-180,104v-90,0,-117,-80,-207,-80xm434,25v-219,-2,-332,-134,-332,-344v0,-322,123,-560,329,-676v64,-36,134,-54,208,-54v214,2,315,133,315,344v0,312,-119,553,-315,673v-63,38,-131,57,-205,57xm763,-472v42,-175,72,-459,-155,-446v-112,6,-186,87,-238,170v-61,98,-104,238,-104,392v0,150,47,250,189,250v113,0,184,-91,234,-179v31,-55,57,-117,74,-187","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f6":{"d":"434,25v-219,-2,-332,-134,-332,-344v0,-322,123,-560,329,-676v64,-36,134,-54,208,-54v214,2,315,133,315,344v0,312,-119,553,-315,673v-63,38,-131,57,-205,57xm763,-472v42,-175,72,-459,-155,-446v-112,6,-186,87,-238,170v-61,98,-104,238,-104,392v0,150,47,250,189,250v113,0,184,-91,234,-179v31,-55,57,-117,74,-187xm484,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm858,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f7":{"d":"113,-766r868,0r0,148r-868,0r0,-148xm573,-940v-69,0,-118,-49,-118,-119v0,-73,48,-119,118,-119v70,0,119,47,119,119v0,69,-50,119,-119,119xm573,-190v-69,0,-118,-49,-118,-119v0,-73,48,-119,118,-119v70,0,119,47,119,119v0,69,-50,119,-119,119","w":983},"\u00f8":{"d":"639,-32v-131,86,-355,69,-444,-31r-82,92r-86,-78r102,-115v-75,-243,19,-537,131,-682v86,-110,206,-203,379,-203v97,0,164,29,217,74r74,-80r82,76r-90,102v83,234,-11,545,-118,691v-48,65,-103,114,-165,154xm583,-155v130,-113,209,-316,208,-558v0,-7,-2,-13,-3,-20r-489,545v50,95,198,108,284,33xm479,-871v-135,111,-224,315,-211,564r488,-545v-50,-80,-196,-85,-277,-19","w":1019,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00f9":{"d":"334,25v-142,0,-213,-73,-211,-222v0,-48,6,-101,20,-161r140,-666r153,0r-143,682v-22,104,-25,242,92,236v129,-6,213,-97,280,-175v26,-30,46,-62,62,-92r137,-651r154,0r-146,693v-5,33,-10,69,-15,106v-9,72,-16,149,-15,225r-121,0r0,-195r-8,0v-86,107,-195,220,-379,220xm752,-1169r-88,0r-166,-263r8,-43r187,0","w":1046},"\u00fa":{"d":"334,25v-142,0,-213,-73,-211,-222v0,-48,6,-101,20,-161r140,-666r153,0r-143,682v-22,104,-25,242,92,236v129,-6,213,-97,280,-175v26,-30,46,-62,62,-92r137,-651r154,0r-146,693v-5,33,-10,69,-15,106v-9,72,-16,149,-15,225r-121,0r0,-195r-8,0v-86,107,-195,220,-379,220xm774,-1475r172,0r-10,43r-252,263r-90,0","w":1046},"\u00fb":{"d":"729,-1499r62,0r135,373r-129,0r-49,-136r-13,-118r-69,118r-117,136r-139,0xm334,25v-142,0,-213,-73,-211,-222v0,-48,6,-101,20,-161r140,-666r153,0r-143,682v-22,104,-25,242,92,236v129,-6,213,-97,280,-175v26,-30,46,-62,62,-92r137,-651r154,0r-146,693v-5,33,-10,69,-15,106v-9,72,-16,149,-15,225r-121,0r0,-195r-8,0v-86,107,-195,220,-379,220","w":1046},"\u00fc":{"d":"334,25v-142,0,-213,-73,-211,-222v0,-48,6,-101,20,-161r140,-666r153,0r-143,682v-22,104,-25,242,92,236v129,-6,213,-97,280,-175v26,-30,46,-62,62,-92r137,-651r154,0r-146,693v-5,33,-10,69,-15,106v-9,72,-16,149,-15,225r-121,0r0,-195r-8,0v-86,107,-195,220,-379,220xm525,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm899,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":1046},"\u00fd":{"d":"397,-360r11,196r10,0r78,-198r340,-662r163,0r-588,1109v-63,112,-133,218,-223,290v-64,51,-154,57,-229,26r49,-141v71,21,114,1,168,-53v41,-40,84,-110,133,-207r-176,-1024r164,0xm692,-1475r172,0r-10,43r-252,263r-90,0","w":899,"k":{" ":55,"\u00a0":55,",":141,".":141,"a":37,"c":37,"d":37,"e":37,"g":37,"o":37,"q":37,"\u00e0":37,"\u00e1":37,"\u00e2":37,"\u00e3":37,"\u00e4":37,"\u00e5":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f0":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"x":37,"z":18}},"\u00fe":{"d":"630,-28v-115,67,-292,66,-397,12r-90,426r-153,0r395,-1844r154,0r-127,562r8,0v76,-91,163,-177,328,-177v173,0,239,124,239,308v0,344,-140,587,-357,713xm790,-473v41,-144,82,-445,-100,-445v-134,0,-209,106,-272,190v-23,31,-39,62,-53,89r-101,485v77,63,213,60,304,3v104,-66,182,-183,222,-322","w":1040,"k":{"*":10,",":45,".":45,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":133,"'":133,"\u00ae":10,"x":59,")":41,"]":41,"}":41}},"\u00ff":{"d":"397,-360r11,196r10,0r78,-198r340,-662r163,0r-588,1109v-63,112,-133,218,-223,290v-64,51,-154,57,-229,26r49,-141v71,21,114,1,168,-53v41,-40,84,-110,133,-207r-176,-1024r164,0xm404,-1237v-56,0,-95,-47,-95,-100v0,-58,37,-105,95,-105v57,0,96,48,96,105v0,53,-41,100,-96,100xm778,-1237v-57,0,-94,-47,-94,-102v0,-56,37,-103,94,-103v59,0,97,46,97,103v0,57,-39,102,-97,102","w":899,"k":{" ":55,"\u00a0":55,",":141,".":141,"a":37,"c":37,"d":37,"e":37,"g":37,"o":37,"q":37,"\u00e0":37,"\u00e1":37,"\u00e2":37,"\u00e3":37,"\u00e4":37,"\u00e5":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f0":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"x":37,"z":18}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2009 ParaType Ltd. All rights reserved.
 * 
 * Trademark:
 * PT Sans is a trademark of the ParaType Ltd.
 * 
 * Description:
 * PT Sans is a type family of universal use. It consists of 8 styles: regular and
 * bold weights with corresponding italics form a standard computer font family;
 * two narrow styles (regular and bold) are intended for documents that require
 * tight set; two caption styles (regular and bold) are for texts of small point
 * sizes. The design combines traditional conservative appearance with modern
 * trends of humanistic sans serif and characterized by enhanced legibility. These
 * features beside conventional use in business applications and printed stuff made
 * the fonts quite useable for direction and guide signs, schemes, screens of
 * information kiosks and other objects of urban visual communications.
 * 
 * The fonts next to standard Latin and Cyrillic character sets contain signs of
 * title languages of the national republics of Russian Federation and support the
 * most of the languages of neighboring countries. The fonts were developed and
 * released by ParaType in 2009 with financial support from Federal Agency of Print
 * and Mass Communications of Russian Federation. Design - Alexandra Korolkova with
 * assistance of Olga Umpeleva and supervision of Vladimir Yefimov.
 * 
 * Manufacturer:
 * ParaType Ltd
 * 
 * Designer:
 * A.Korolkova, O.Umpeleva, V.Yefimov
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL_web
 */
Cufon.registerFont({"w":1116,"face":{"font-family":"PT Sans","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 3 2 2 3 9 2 4","ascent":"1536","descent":"-512","bbox":"-264 -1782 2075.06 472.388","underline-thickness":"102.4","underline-position":"-102.4","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":518,"k":{"*":72,"-":90,"\u00ad":90,",":143,".":143,"A":82,"\u00c0":82,"\u00c1":82,"\u00c2":82,"\u00c3":82,"\u00c4":82,"\u00c5":82,"C":27,"G":27,"O":27,"Q":27,"\u00c7":27,"\u00d2":27,"\u00d3":27,"\u00d4":27,"\u00d5":27,"\u00d6":27,"\u00d8":27,"T":74,"V":61,"W":51,"X":61,"Y":61,"\u00dd":61,"Z":23,"v":27,"y":27,"\u00fd":27,"\u00ff":27,"w":23,"\u00c6":45,"\"":172,"'":172,"z":23,"x":55}},"!":{"d":"444,-1434r263,0r-144,674r-121,334r-159,0r18,-334xm315,23v-96,0,-163,-63,-163,-158v0,-95,67,-156,163,-156v99,0,166,59,166,156v0,96,-67,158,-166,158","w":579},"\"":{"d":"238,-1434r221,0r-162,443r-154,0xm525,-1434r221,0r-162,443r-154,0","w":724,"k":{" ":176,"\u00a0":176,"-":391,"\u00ad":391,",":254,".":254,"A":250,"\u00c0":250,"\u00c1":250,"\u00c2":250,"\u00c3":250,"\u00c4":250,"\u00c5":250,"C":78,"G":78,"O":78,"Q":78,"\u00c7":78,"\u00d2":78,"\u00d3":78,"\u00d4":78,"\u00d5":78,"\u00d6":78,"\u00d8":78,"V":-78,"W":-78,"Y":-70,"\u00dd":-70,"a":123,"c":123,"d":123,"e":123,"g":123,"o":123,"q":123,"\u00e0":123,"\u00e1":123,"\u00e2":123,"\u00e3":123,"\u00e4":123,"\u00e5":123,"\u00e7":123,"\u00e8":123,"\u00e9":123,"\u00ea":123,"\u00eb":123,"\u00f0":123,"\u00f2":123,"\u00f3":123,"\u00f4":123,"\u00f5":123,"\u00f6":123,"\u00f8":123,"\u00c6":389}},"#":{"d":"651,-420r-182,0r-74,316r-219,0r74,-316r-152,0r45,-198r154,0r51,-218r-147,0r45,-198r149,0r72,-295r219,0r-72,295r183,0r71,-295r219,0r-71,295r147,0r-51,198r-143,0r-51,218r141,0r-49,198r-140,0r-73,316r-219,0xm516,-618r182,0r52,-218r-183,0"},"$":{"d":"774,-817v128,89,260,185,260,401v0,279,-185,406,-440,439r-37,182r-203,0r39,-185v-119,-13,-208,-58,-272,-108r96,-199v50,34,139,75,223,88r97,-452v-126,-85,-252,-178,-252,-389v0,-269,182,-382,422,-416r41,-182r202,0r-39,184v94,12,175,38,240,72r-102,208v-46,-25,-120,-48,-187,-59xm557,-193v127,-5,211,-77,211,-192v0,-101,-67,-147,-129,-197xm745,-1241v-117,3,-194,62,-194,168v0,94,64,135,121,184"},"%":{"d":"1343,-1462r150,135r-1180,1356r-149,-142xm387,-762v-164,2,-274,-101,-274,-260v2,-219,115,-350,273,-410v50,-19,100,-26,149,-26v173,-1,276,78,276,246v-1,225,-102,363,-265,424v-51,18,-104,26,-159,26xm424,-934v104,0,162,-128,162,-252v0,-97,-88,-125,-152,-80v-61,43,-96,126,-96,232v0,59,29,100,86,100xm1134,-2v-164,2,-274,-101,-274,-260v2,-219,115,-350,273,-410v50,-19,100,-26,149,-26v173,-1,276,78,276,246v-1,225,-102,363,-265,424v-51,18,-104,26,-159,26xm1171,-174v104,0,162,-128,162,-252v0,-97,-88,-125,-152,-80v-61,43,-96,126,-96,232v0,59,29,100,86,100","w":1646},"&":{"d":"1026,-143v-119,86,-267,175,-473,172v-190,-2,-320,-83,-376,-217v-75,-179,17,-378,111,-476v83,-87,191,-169,304,-223v-81,-140,-68,-377,41,-471v70,-61,169,-104,305,-104v172,0,270,72,270,233v0,70,-28,137,-83,200v-55,63,-134,123,-236,179v61,150,118,263,207,385v75,-72,149,-187,204,-285r162,103v-67,114,-158,230,-243,323v59,71,138,153,223,189r-178,196v-96,-43,-176,-125,-238,-204xm416,-381v1,123,86,184,219,184v105,0,217,-59,272,-108v-91,-129,-174,-275,-233,-420v-81,55,-144,110,-190,165v-46,55,-68,115,-68,179xm915,-1264v-146,0,-153,181,-92,289v57,-34,100,-69,133,-100v62,-59,77,-189,-41,-189","w":1603},"'":{"d":"281,-1434r221,0r-162,443r-154,0","w":446,"k":{" ":176,"\u00a0":176,"-":391,"\u00ad":391,",":254,".":254,"A":250,"\u00c0":250,"\u00c1":250,"\u00c2":250,"\u00c3":250,"\u00c4":250,"\u00c5":250,"C":78,"G":78,"O":78,"Q":78,"\u00c7":78,"\u00d2":78,"\u00d3":78,"\u00d4":78,"\u00d5":78,"\u00d6":78,"\u00d8":78,"V":-78,"W":-78,"Y":-70,"\u00dd":-70,"a":123,"c":123,"d":123,"e":123,"g":123,"o":123,"q":123,"\u00e0":123,"\u00e1":123,"\u00e2":123,"\u00e3":123,"\u00e4":123,"\u00e5":123,"\u00e7":123,"\u00e8":123,"\u00e9":123,"\u00ea":123,"\u00eb":123,"\u00f0":123,"\u00f2":123,"\u00f3":123,"\u00f4":123,"\u00f5":123,"\u00f6":123,"\u00f8":123,"\u00c6":389}},"(":{"d":"510,-827v-135,314,-198,826,-31,1163r-157,110v-122,-159,-195,-356,-195,-624v0,-440,163,-773,356,-1036v69,-94,143,-174,219,-244r132,110v-130,144,-240,326,-324,521","w":634,"k":{"-":70,"\u00ad":70,"A":33,"\u00c0":33,"\u00c1":33,"\u00c2":33,"\u00c3":33,"\u00c4":33,"\u00c5":33,"C":33,"G":33,"O":33,"Q":33,"\u00c7":33,"\u00d2":33,"\u00d3":33,"\u00d4":33,"\u00d5":33,"\u00d6":33,"\u00d8":33,"a":55,"c":55,"d":55,"e":55,"g":55,"o":55,"q":55,"\u00e0":55,"\u00e1":55,"\u00e2":55,"\u00e3":55,"\u00e4":55,"\u00e5":55,"\u00e7":55,"\u00e8":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00f0":55,"\u00f2":55,"\u00f3":55,"\u00f4":55,"\u00f5":55,"\u00f6":55,"\u00f8":55}},")":{"d":"264,-496v65,-285,45,-639,-67,-845r178,-115v181,220,217,650,130,1001v-93,373,-286,683,-525,906r-138,-113v189,-214,347,-505,422,-834","w":634},"*":{"d":"373,-1497r57,94r31,121r31,-113r57,-100r129,72r-62,106r-96,88r131,-33r117,0r0,150r-111,0r-125,-33r103,96r51,86r-131,76r-55,-94r-41,-131r-27,119r-59,100r-133,-76r61,-100r92,-76r-112,33r-121,0r0,-152r121,0r120,35r-102,-90r-57,-102","w":729,"k":{" ":70,"\u00a0":70,"-":373,"\u00ad":373,",":487,".":487,"A":106,"\u00c0":106,"\u00c1":106,"\u00c2":106,"\u00c3":106,"\u00c4":106,"\u00c5":106,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u00d6":18,"\u00d8":18,"T":-33,"V":-18,"W":-27,"Y":-18,"\u00dd":-18,"v":-41,"y":-41,"\u00fd":-41,"\u00ff":-41,"w":-20,"\u00c6":244}},"+":{"d":"119,-807r332,0r0,-346r239,0r0,346r334,0r0,229r-334,0r0,351r-239,0r0,-351r-332,0r0,-229","w":1034},",":{"d":"203,-283v91,-2,144,71,141,156v-8,239,-170,362,-344,430r-53,-110v75,-27,152,-107,176,-183v-51,-3,-96,-59,-96,-121v0,-105,79,-170,176,-172","w":442,"k":{" ":123,"\u00a0":123,"*":270,"-":240,"\u00ad":240,",":-27,".":-27,"T":113,"V":127,"W":82,"Y":143,"\u00dd":143,"a":23,"c":23,"d":23,"e":23,"g":23,"o":23,"q":23,"\u00e0":23,"\u00e1":23,"\u00e2":23,"\u00e3":23,"\u00e4":23,"\u00e5":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":109,"y":109,"\u00fd":109,"\u00ff":109,"w":63,"\"":287,"'":287,"\u00ae":180,"z":-16}},"-":{"d":"166,-696r489,0r-51,213r-489,0","w":702,"k":{" ":156,"\u00a0":156,")":70,"]":70,"}":70,"*":80,"-":117,"\u00ad":117,",":229,".":229,"A":43,"\u00c0":43,"\u00c1":43,"\u00c2":43,"\u00c3":43,"\u00c4":43,"\u00c5":43,"T":137,"V":57,"W":39,"X":86,"Y":80,"\u00dd":80,"Z":18,"\u00c6":80,"\"":362,"'":362,"z":27,"x":68}},".":{"d":"231,23v-96,0,-163,-63,-163,-158v0,-95,67,-156,163,-156v99,0,166,59,166,156v0,96,-67,158,-166,158","w":514,"k":{" ":123,"\u00a0":123,"*":270,"-":240,"\u00ad":240,",":-27,".":-27,"T":113,"V":127,"W":82,"Y":143,"\u00dd":143,"a":23,"c":23,"d":23,"e":23,"g":23,"o":23,"q":23,"\u00e0":23,"\u00e1":23,"\u00e2":23,"\u00e3":23,"\u00e4":23,"\u00e5":23,"\u00e7":23,"\u00e8":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00f0":23,"\u00f2":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"\u00f6":23,"\u00f8":23,"v":109,"y":109,"\u00fd":109,"\u00ff":109,"w":63,"\"":287,"'":287,"\u00ae":180,"z":-16}},"\/":{"d":"885,-1458r176,94r-1045,1655r-174,-98","w":794},"0":{"d":"756,-1462v285,0,389,198,389,497v0,404,-134,737,-374,910v-120,86,-305,116,-443,45v-146,-75,-215,-240,-215,-459v0,-418,134,-751,386,-917v79,-52,164,-76,257,-76xm891,-961v0,-150,-22,-275,-170,-276v-45,0,-90,20,-131,63v-142,147,-223,411,-223,703v0,157,30,272,178,274v48,0,93,-21,134,-67v135,-150,212,-415,212,-697"},"1":{"d":"166,-225r270,0r174,-809r58,-140r-119,121r-199,127r-80,-157r527,-375r143,0r-262,1233r264,0r-47,225r-776,0"},"2":{"d":"788,-1462v197,-3,320,125,318,315v-2,186,-98,338,-188,463v-101,141,-245,281,-367,393r-121,84r0,10r143,-28r367,0r-47,225r-819,0r28,-137r136,-126r161,-156v151,-152,312,-320,413,-513v69,-132,57,-309,-128,-299v-105,5,-189,57,-262,107r-62,-193v124,-86,233,-143,428,-145"},"3":{"d":"750,-467v0,-149,-76,-187,-242,-188r-143,0r30,-142r301,-338r131,-92r-155,19r-326,0r49,-226r744,0r-31,146r-350,389r-99,55r0,10r82,-12v164,28,263,144,263,340v0,266,-137,420,-340,495v-162,60,-447,50,-580,-24r117,-227v57,37,139,60,237,59v186,-2,312,-90,312,-264"},"4":{"d":"1096,-399r-215,0r-84,399r-236,0r84,-399r-588,0r31,-152r805,-893r209,0r-176,834r215,0xm758,-926r53,-172r-6,0r-98,148r-258,276r-113,78r127,-14r227,0"},"5":{"d":"188,-250v84,49,264,66,371,23v108,-43,180,-129,180,-273v0,-156,-97,-186,-270,-188r-158,6r158,-752r670,0r-52,250r-450,0r-59,283v253,-37,410,97,413,346v4,409,-272,619,-702,579v-79,-7,-158,-28,-215,-57"},"6":{"d":"723,-885v211,-2,336,150,334,363v-4,254,-114,426,-299,506v-104,45,-250,65,-370,21v-163,-60,-262,-206,-261,-437v0,-302,130,-543,284,-708v150,-163,368,-292,629,-322r15,211v-231,39,-411,158,-535,311v-44,55,-77,113,-100,176v65,-73,177,-119,303,-121xm555,-197v157,0,254,-120,252,-278v-2,-115,-57,-184,-182,-184v-107,0,-207,55,-248,122v-32,161,14,340,178,340"},"7":{"d":"127,0r674,-1104r104,-100r-119,20r-481,0r51,-250r881,0r-16,78r-830,1356r-264,0","k":{" ":104,"\u00a0":104,"-":125,"\u00ad":125,",":231,".":231,"A":129,"\u00c0":129,"\u00c1":129,"\u00c2":129,"\u00c3":129,"\u00c4":129,"\u00c5":129,"C":57,"G":57,"O":57,"Q":57,"\u00c7":57,"\u00d2":57,"\u00d3":57,"\u00d4":57,"\u00d5":57,"\u00d6":57,"\u00d8":57,"\u00c6":176}},"8":{"d":"836,-748v103,82,172,171,172,328v0,229,-129,357,-306,418v-158,54,-382,32,-480,-57v-64,-58,-112,-136,-111,-254v2,-177,94,-284,202,-361v39,-28,81,-49,125,-65v-78,-72,-144,-151,-141,-305v3,-216,126,-337,293,-391v57,-18,118,-27,182,-27v261,0,416,206,329,447v-45,124,-152,207,-265,267xm535,-197v130,-4,231,-58,231,-192v0,-142,-100,-196,-188,-254v-114,59,-228,138,-228,281v0,106,65,169,185,165xm741,-1237v-114,-1,-205,71,-202,190v3,112,82,163,159,213v81,-64,176,-130,185,-256v7,-95,-50,-147,-142,-147"},"9":{"d":"831,-639v-112,109,-402,133,-520,5v-62,-67,-110,-165,-108,-300v3,-259,132,-417,324,-491v110,-42,258,-54,372,-11v158,59,246,206,246,426v0,455,-231,725,-514,904v-114,72,-254,123,-408,135r-12,-209v294,-59,514,-215,620,-459xm707,-1241v-163,6,-253,100,-254,268v-1,131,59,207,182,207v103,0,202,-37,252,-90v40,-170,8,-393,-180,-385"},":":{"d":"502,-719v-96,0,-164,-63,-164,-158v0,-96,68,-155,164,-155v98,0,166,59,166,155v0,96,-67,158,-166,158xm348,-2v-96,0,-164,-63,-164,-158v0,-96,68,-155,164,-155v98,0,166,59,166,155v0,96,-67,158,-166,158","w":643,"k":{"\/":-41}},";":{"d":"362,-283v91,-2,145,71,142,156v-8,239,-170,362,-344,430r-54,-110v76,-27,153,-106,177,-183v-51,-3,-97,-59,-97,-121v0,-104,79,-170,176,-172xm487,-719v-96,0,-163,-63,-163,-158v0,-95,68,-155,163,-155v98,0,166,59,166,155v0,96,-67,158,-166,158","w":628},"<":{"d":"104,-584r0,-143r791,-473r117,184r-459,285r-186,72r184,63r471,281r-117,184","w":1034},"=":{"d":"119,-612r905,0r0,229r-905,0r0,-229xm119,-1004r905,0r0,230r-905,0r0,-230","w":1034},">":{"d":"1040,-748r0,144r-792,473r-115,-186r457,-283r186,-74r-184,-61r-469,-283r115,-182","w":1034},"?":{"d":"655,-1462v208,0,329,84,332,268v6,429,-438,414,-510,768r-217,0v22,-205,122,-330,245,-429v67,-54,132,-104,179,-169v20,-29,31,-62,31,-100v0,-86,-48,-118,-146,-117v-95,1,-210,50,-272,94r-64,-192v116,-67,235,-123,422,-123xm332,23v-96,0,-164,-63,-164,-158v0,-96,68,-156,164,-156v99,0,166,59,166,156v0,96,-67,158,-166,158","w":880},"@":{"d":"1169,-1004v100,0,156,34,213,78r64,-65r143,0r-100,555v-16,75,-15,190,67,182v206,-19,289,-185,289,-414v0,-401,-261,-579,-659,-579v-357,0,-586,195,-697,455v-74,171,-76,413,-9,587v99,257,328,404,683,404v91,0,205,-27,273,-60r63,197v-194,100,-520,93,-740,16v-336,-118,-552,-385,-554,-835v-1,-315,127,-552,295,-711v161,-153,397,-264,690,-264v405,0,685,175,817,458v77,164,95,401,21,578v-90,211,-262,374,-545,381v-148,4,-240,-66,-223,-225r-9,0v-80,109,-166,225,-350,225v-253,0,-282,-323,-203,-546v55,-155,146,-282,274,-360v62,-38,127,-57,197,-57xm927,-542v-38,118,-38,300,103,290v122,-9,177,-123,234,-209r53,-282v-56,-55,-167,-68,-241,-14v-69,50,-120,125,-149,215","w":2168},"A":{"d":"793,-317r-418,0r-170,317r-283,0r797,-1444r196,0r187,1444r-268,0xm492,-543r290,0r-32,-319r2,-225r-11,0r-82,227","w":1191},"B":{"d":"881,-737v123,31,215,118,215,268v0,462,-468,526,-946,477v-40,-4,-76,-10,-109,-18r299,-1413v26,-4,55,-9,88,-13v33,-4,67,-7,104,-10v37,-3,75,-4,114,-6v304,-17,554,49,554,338v0,211,-130,333,-319,366r0,11xm821,-449v-4,-183,-209,-170,-397,-169r-82,395v123,21,297,18,378,-41v54,-39,102,-93,101,-185xm926,-1069v7,-178,-216,-162,-375,-145r-80,383v236,6,447,-14,455,-238","w":1163,"k":{"T":59}},"C":{"d":"719,-221v120,0,190,-29,266,-68r4,230v-139,96,-401,118,-571,43v-191,-86,-295,-272,-299,-541v-3,-313,98,-538,246,-693v158,-165,443,-251,744,-195v55,10,99,25,130,40r-104,238v-107,-57,-318,-63,-439,-2v-188,96,-294,293,-297,577v-3,217,115,371,320,371","w":1099,"k":{" ":78,"\u00a0":78,"-":135,"\u00ad":135,"A":86,"\u00c0":86,"\u00c1":86,"\u00c2":86,"\u00c3":86,"\u00c4":86,"\u00c5":86,"C":63,"G":63,"O":63,"Q":63,"\u00c7":63,"\u00d2":63,"\u00d3":63,"\u00d4":63,"\u00d5":63,"\u00d6":63,"\u00d8":63,"T":86,"V":129,"W":51,"X":98,"Y":106,"\u00dd":106,"Z":96,"m":55,"n":55,"p":55,"r":55,"s":55,"u":55,"\u00e6":55,"a":63,"c":63,"d":63,"e":63,"g":63,"o":63,"q":63,"\u00e0":63,"\u00e1":63,"\u00e2":63,"\u00e3":63,"\u00e4":63,"\u00e5":63,"\u00e7":63,"\u00e8":63,"\u00e9":63,"\u00ea":63,"\u00eb":63,"\u00f0":63,"\u00f2":63,"\u00f3":63,"\u00f4":63,"\u00f5":63,"\u00f6":63,"\u00f8":63,"t":68,"v":55,"y":55,"\u00fd":55,"\u00ff":55,"w":45,"\u00c6":236,"i":23,"j":23,"\u00ec":23,"\u00ed":23,"\u00ee":23,"\u00ef":23,"\u00f1":23,"\u00f9":23,"\u00fa":23,"\u00fb":23,"\u00fc":23,"z":16}},"D":{"d":"1292,-913v0,653,-386,996,-1076,928r-175,-13r303,-1436v29,-4,60,-8,94,-10r172,-8r127,-2v357,4,555,179,555,541xm1012,-877v0,-215,-81,-327,-297,-327v-27,0,-56,1,-86,2v-30,1,-54,3,-70,6r-203,963v140,16,282,1,375,-59v173,-112,281,-322,281,-585","w":1269,"k":{"J":43," ":27,"\u00a0":27,")":33,"]":33,"}":33,"*":18,",":59,".":59,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"T":78,"V":74,"W":53,"X":106,"Y":92,"\u00dd":92,"Z":47,"t":-20,"v":-20,"y":-20,"\u00fd":-20,"\u00ff":-20,"w":-20,"\u00c6":119,"\"":78,"'":78,"x":14}},"E":{"d":"344,-1434r807,0r-53,250r-541,0r-72,334r494,0r-55,250r-490,0r-76,350r551,0r-51,250r-817,0","w":1030},"F":{"d":"344,-1434r807,0r-53,250r-541,0r-76,355r498,0r-51,249r-498,0r-123,580r-266,0","w":1001},"G":{"d":"399,-584v-2,208,101,362,295,363v67,0,125,-17,176,-51r58,-273r-209,-33r37,-170r430,0r-135,639v-140,122,-406,186,-620,99v-197,-80,-312,-265,-312,-543v0,-446,180,-731,497,-856v191,-75,491,-64,658,6r-107,236v-116,-54,-337,-64,-465,-4v-196,92,-301,297,-303,587","w":1198},"H":{"d":"932,-600r-498,0r-127,600r-266,0r303,-1434r266,0r-123,584r498,0r123,-584r266,0r-303,1434r-266,0","w":1277},"I":{"d":"375,-1434r264,0r-303,1434r-264,0","w":569},"J":{"d":"489,-1434r267,0r-224,1049v-48,225,-138,410,-411,410v-77,-1,-175,-19,-225,-48r102,-229v47,28,133,40,182,9v66,-41,87,-125,105,-214","w":663},"K":{"d":"532,-612r-96,0r-129,612r-266,0r303,-1434r266,0r-135,635r64,-22r485,-613r319,0r-516,609r-122,71r90,80r311,674r-297,0","w":1214,"k":{" ":59,"\u00a0":59,"-":156,"\u00ad":156,"A":59,"\u00c0":59,"\u00c1":59,"\u00c2":59,"\u00c3":59,"\u00c4":59,"\u00c5":59,"C":106,"G":106,"O":106,"Q":106,"\u00c7":106,"\u00d2":106,"\u00d3":106,"\u00d4":106,"\u00d5":106,"\u00d6":106,"\u00d8":106,"T":90,"V":70,"W":57,"X":70,"Y":78,"\u00dd":78,"Z":27,"m":23,"n":23,"p":23,"r":23,"s":23,"u":23,"\u00e6":23,"a":74,"c":74,"d":74,"e":74,"g":74,"o":74,"q":74,"\u00e0":74,"\u00e1":74,"\u00e2":74,"\u00e3":74,"\u00e4":74,"\u00e5":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"t":84,"v":98,"y":98,"\u00fd":98,"\u00ff":98,"w":82,"\u00c6":246,"i":23,"j":23,"\u00ec":23,"\u00ed":23,"\u00ee":23,"\u00ef":23,"\u00f1":23,"\u00f9":23,"\u00fa":23,"\u00fb":23,"\u00fc":23,"z":16,"x":23}},"L":{"d":"903,0r-862,0r303,-1434r266,0r-252,1184r596,0","w":1013,"k":{" ":98,"\u00a0":98,"*":319,"-":135,"\u00ad":135,"A":240,"\u00c0":240,"\u00c1":240,"\u00c2":240,"\u00c3":240,"\u00c4":240,"\u00c5":240,"C":180,"G":180,"O":180,"Q":180,"\u00c7":180,"\u00d2":180,"\u00d3":180,"\u00d4":180,"\u00d5":180,"\u00d6":180,"\u00d8":180,"T":254,"V":231,"W":168,"X":276,"Y":248,"\u00dd":248,"Z":172,"a":47,"c":47,"d":47,"e":47,"g":47,"o":47,"q":47,"\u00e0":47,"\u00e1":47,"\u00e2":47,"\u00e3":47,"\u00e4":47,"\u00e5":47,"\u00e7":47,"\u00e8":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00f0":47,"\u00f2":47,"\u00f3":47,"\u00f4":47,"\u00f5":47,"\u00f6":47,"\u00f8":47,"t":59,"v":174,"y":174,"\u00fd":174,"\u00ff":174,"w":113,"\u00c6":233,"\"":276,"'":276,"\u00ae":352,"z":27,"x":23}},"M":{"d":"1255,-743r91,-283r-13,0r-135,231r-403,531r-84,0r-193,-537r-37,-225r-10,0r-20,281r-158,745r-252,0r303,-1434r236,0r215,656r26,164r10,0r95,-168r483,-652r256,0r-303,1434r-264,0","w":1570},"N":{"d":"547,-750r-68,-229r-10,0r-18,229r-158,750r-252,0r307,-1444r184,0r353,766r63,223r13,0r14,-223r162,-756r252,0r-308,1444r-184,0","w":1292},"O":{"d":"621,29v-338,-2,-505,-212,-502,-566v3,-405,164,-707,433,-853v139,-75,344,-100,504,-40v190,71,285,254,283,523v-3,406,-163,712,-427,862v-88,50,-185,74,-291,74xm1059,-903v1,-192,-68,-309,-238,-309v-146,0,-238,94,-302,197v-73,117,-120,285,-120,470v0,184,61,327,242,324v148,-2,240,-102,303,-208v71,-119,115,-290,115,-474","w":1318,"k":{"J":43," ":27,"\u00a0":27,")":33,"]":33,"}":33,"*":18,",":59,".":59,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"T":78,"V":74,"W":53,"X":106,"Y":92,"\u00dd":92,"Z":47,"t":-20,"v":-20,"y":-20,"\u00fd":-20,"\u00ff":-20,"w":-20,"\u00c6":119,"\"":78,"'":78,"x":14}},"P":{"d":"1009,-607v-136,103,-372,141,-599,113r-103,494r-266,0r301,-1419v230,-44,574,-65,728,61v82,67,140,162,140,309v0,212,-82,351,-201,442xm930,-1016v0,-194,-186,-215,-369,-186r-98,467v242,33,467,-38,467,-281","w":1126,"k":{" ":78,"\u00a0":78,"-":18,"\u00ad":18,",":254,".":254,"A":150,"\u00c0":150,"\u00c1":150,"\u00c2":150,"\u00c3":150,"\u00c4":150,"\u00c5":150,"C":23,"G":23,"O":23,"Q":23,"\u00c7":23,"\u00d2":23,"\u00d3":23,"\u00d4":23,"\u00d5":23,"\u00d6":23,"\u00d8":23,"T":16,"V":18,"W":12,"X":104,"Y":53,"\u00dd":53,"Z":39,"a":14,"c":14,"d":14,"e":14,"g":14,"o":14,"q":14,"\u00e0":14,"\u00e1":14,"\u00e2":14,"\u00e3":14,"\u00e4":14,"\u00e5":14,"\u00e7":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00f0":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"t":-27,"v":-51,"y":-51,"\u00fd":-51,"\u00ff":-51,"w":-33,"\u00c6":254}},"Q":{"d":"621,29v-338,-2,-505,-212,-502,-566v3,-405,164,-707,433,-853v139,-75,344,-100,504,-40v190,71,285,254,283,523v-3,406,-163,712,-427,862v-88,50,-185,74,-291,74xm1059,-903v1,-192,-68,-309,-238,-309v-146,0,-238,94,-302,197v-73,117,-120,285,-120,470v0,184,61,327,242,324v148,-2,240,-102,303,-208v71,-119,115,-290,115,-474xm379,76v323,-62,521,156,861,111v31,-4,62,-9,95,-17r-51,244v-264,74,-505,-30,-715,-87v-81,-22,-159,-31,-241,-10","w":1318,"k":{"J":43," ":27,"\u00a0":27,")":33,"]":33,"}":33,"*":18,",":59,".":59,"A":53,"\u00c0":53,"\u00c1":53,"\u00c2":53,"\u00c3":53,"\u00c4":53,"\u00c5":53,"T":78,"V":74,"W":53,"X":106,"Y":92,"\u00dd":92,"Z":47,"t":-20,"v":-20,"y":-20,"\u00fd":-20,"\u00ff":-20,"w":-20,"\u00c6":119,"\"":78,"'":78,"x":14}},"R":{"d":"1178,-1073v-3,278,-157,425,-394,465r80,63r199,545r-295,0r-197,-561r-141,-27r-123,588r-266,0r301,-1419v229,-41,550,-68,702,56v77,62,135,153,134,290xm897,-1034v0,-106,-74,-170,-199,-170v-47,0,-100,4,-137,10r-90,416v236,11,426,-29,426,-256","w":1196,"k":{"-":78,"\u00ad":78,"A":74,"\u00c0":74,"\u00c1":74,"\u00c2":74,"\u00c3":74,"\u00c4":74,"\u00c5":74,"C":63,"G":63,"O":63,"Q":63,"\u00c7":63,"\u00d2":63,"\u00d3":63,"\u00d4":63,"\u00d5":63,"\u00d6":63,"\u00d8":63,"T":94,"V":94,"W":78,"X":109,"Y":117,"\u00dd":117,"Z":47,"m":23,"n":23,"p":23,"r":23,"s":23,"u":23,"\u00e6":23,"a":100,"c":100,"d":100,"e":100,"g":100,"o":100,"q":100,"\u00e0":100,"\u00e1":100,"\u00e2":100,"\u00e3":100,"\u00e4":100,"\u00e5":100,"\u00e7":100,"\u00e8":100,"\u00e9":100,"\u00ea":100,"\u00eb":100,"\u00f0":100,"\u00f2":100,"\u00f3":100,"\u00f4":100,"\u00f5":100,"\u00f6":100,"\u00f8":100,"t":27,"v":23,"y":23,"\u00fd":23,"\u00ff":23,"w":16,"\u00c6":252,"\"":39,"'":39,"i":16,"j":16,"\u00ec":16,"\u00ed":16,"\u00ee":16,"\u00ef":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"z":43,"x":23}},"S":{"d":"451,-213v146,0,278,-33,278,-176v0,-88,-68,-128,-130,-168v-169,-108,-372,-188,-372,-463v0,-353,283,-469,650,-436v109,10,211,36,286,78r-135,233v-59,-35,-177,-80,-283,-76v-130,4,-247,40,-247,170v0,94,66,136,130,178v161,106,366,178,371,445v8,428,-433,509,-839,428v-62,-12,-122,-33,-164,-57r137,-238v80,46,192,82,318,82","w":1044},"T":{"d":"1257,-1184r-397,0r-252,1184r-264,0r250,-1184r-397,0r53,-250r1059,0","w":1120,"k":{"\u00ff":213,"\u00fd":213,"\u00fc":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u00f8":213,"\u00f1":33,"\u00ef":33,"\u00ee":33,"\u00ed":33,"\u00ec":33,"\u00e9":213,"\u00e7":213,"\u00e6":221,"\u00e5":213,"\u00e1":213,"\u00e0":213,"\u00dd":137,"\u00d8":78,"\u00d6":78,"\u00d5":78,"\u00d4":78,"\u00d3":78,"\u00d2":78,"\u00c7":78,"\u00c6":231,"\u00c5":154,"\u00c4":154,"\u00c3":154,"\u00c2":154,"\u00c1":154,"\u00c0":154,"\u00ae":-33,"\u00ad":250,"\u00a0":78,"}":-27,"z":205,"y":213,"x":231,"w":197,"v":213,"u":221,"t":72,"s":221,"r":221,"q":213,"p":221,"o":213,"n":221,"m":221,"j":33,"i":33,"g":213,"e":213,"d":213,"c":213,"a":213,"]":-27,"Z":96,"Y":137,"X":90,"W":57,"V":63,"T":-41,"Q":78,"O":78,"G":78,"C":78,"A":154,".":215,"-":250,",":215,"*":-33,")":-27," ":78,"\u00f6":72,"\u00f5":102,"\u00f4":150,"\u00f3":238,"\u00f2":168,"\u00f0":119,"\u00eb":61,"\u00ea":145,"\u00e8":178,"\u00e4":78,"\u00e3":119,"\u00e2":190}},"U":{"d":"401,-406v1,133,69,181,201,181v195,0,254,-119,293,-303r192,-906r250,0r-194,926v-67,319,-200,533,-580,533v-304,0,-464,-154,-429,-465v3,-29,9,-59,16,-90r192,-904r264,0r-188,902v-11,52,-17,93,-17,126","w":1232},"V":{"d":"590,-594r-15,244r9,0r90,-244r442,-840r299,0r-809,1444r-192,0r-207,-1444r291,0","w":1185,"k":{"\u00ff":-27,"\u00f6":119,"\u00f5":119,"\u00f4":119,"\u00f2":119,"\u00f0":119,"\u00eb":119,"\u00e8":119,"\u00e4":119,"\u00e3":119," ":59,"\u00a0":59,"*":-76,"-":104,"\u00ad":104,",":217,".":217,"A":131,"\u00c0":131,"\u00c1":131,"\u00c2":131,"\u00c3":131,"\u00c4":131,"\u00c5":131,"C":74,"G":74,"O":74,"Q":74,"\u00c7":74,"\u00d2":74,"\u00d3":74,"\u00d4":74,"\u00d5":74,"\u00d6":74,"\u00d8":74,"T":63,"V":70,"W":57,"X":70,"Y":80,"\u00dd":80,"Z":70,"m":100,"n":100,"p":100,"r":100,"s":100,"u":100,"\u00e6":100,"a":119,"c":119,"d":119,"e":119,"g":119,"o":119,"q":119,"\u00e0":119,"\u00e1":119,"\u00e2":119,"\u00e5":119,"\u00e7":119,"\u00e9":119,"\u00ea":119,"\u00f3":119,"\u00f8":119,"t":20,"\u00c6":236,"\"":-78,"'":-78,"\u00ae":-27,"z":72,"x":57}},"W":{"d":"510,-635r-29,254r11,0r79,-258r406,-795r180,0r60,799r-27,254r10,0r82,-258r336,-795r287,0r-682,1444r-187,0r-75,-796r16,-220r-12,0r-78,222r-408,794r-186,0r-70,-1444r281,0","w":1691,"k":{"\u00ff":-27,"\u00f6":90,"\u00f5":90,"\u00eb":90,"\u00e4":90,"\u00e3":90," ":53,"\u00a0":53,"*":-68,"-":59,"\u00ad":59,",":166,".":166,"A":86,"\u00c0":86,"\u00c1":86,"\u00c2":86,"\u00c3":86,"\u00c4":86,"\u00c5":86,"C":53,"G":53,"O":53,"Q":53,"\u00c7":53,"\u00d2":53,"\u00d3":53,"\u00d4":53,"\u00d5":53,"\u00d6":53,"\u00d8":53,"T":57,"V":57,"W":63,"X":57,"Y":80,"\u00dd":80,"Z":63,"m":72,"n":72,"p":72,"r":72,"s":72,"u":72,"\u00e6":72,"a":90,"c":90,"d":90,"e":90,"g":90,"o":90,"q":90,"\u00e0":90,"\u00e1":90,"\u00e2":90,"\u00e5":90,"\u00e7":90,"\u00e8":90,"\u00e9":90,"\u00ea":90,"\u00f0":90,"\u00f2":90,"\u00f3":90,"\u00f4":90,"\u00f8":90,"t":18,"\u00c6":188,"\"":-78,"'":-78,"\u00ae":-33,"z":61,"x":43}},"X":{"d":"524,-731r-231,-703r289,0r123,414r20,146r76,-146r305,-414r319,0r-538,693r256,741r-285,0r-147,-442r-25,-152r-82,152r-330,442r-323,0","w":1245,"k":{" ":59,"\u00a0":59,"-":156,"\u00ad":156,"A":59,"\u00c0":59,"\u00c1":59,"\u00c2":59,"\u00c3":59,"\u00c4":59,"\u00c5":59,"C":106,"G":106,"O":106,"Q":106,"\u00c7":106,"\u00d2":106,"\u00d3":106,"\u00d4":106,"\u00d5":106,"\u00d6":106,"\u00d8":106,"T":90,"V":70,"W":57,"X":70,"Y":78,"\u00dd":78,"Z":27,"m":23,"n":23,"p":23,"r":23,"s":23,"u":23,"\u00e6":23,"a":74,"c":74,"d":74,"e":74,"g":74,"o":74,"q":74,"\u00e0":74,"\u00e1":74,"\u00e2":74,"\u00e3":74,"\u00e4":74,"\u00e5":74,"\u00e7":74,"\u00e8":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00f0":74,"\u00f2":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"\u00f6":74,"\u00f8":74,"t":84,"v":98,"y":98,"\u00fd":98,"\u00ff":98,"w":82,"\u00c6":246,"i":23,"j":23,"\u00ec":23,"\u00ed":23,"\u00ee":23,"\u00ef":23,"\u00f1":23,"\u00f9":23,"\u00fa":23,"\u00fb":23,"\u00fc":23,"z":16,"x":23}},"Y":{"d":"473,-532r-256,-902r295,0r133,539r-4,152r8,0r64,-156r358,-535r305,0r-637,899r-112,535r-265,0","w":1165,"k":{"\u00f6":186,"\u00f5":186,"\u00f4":186,"\u00f2":186,"\u00f0":186,"\u00eb":186,"\u00ea":186,"\u00e8":186,"\u00e4":186,"\u00e3":186," ":53,"\u00a0":53,"*":-47,"-":133,"\u00ad":133,",":229,".":229,"A":172,"\u00c0":172,"\u00c1":172,"\u00c2":172,"\u00c3":172,"\u00c4":172,"\u00c5":172,"C":92,"G":92,"O":92,"Q":92,"\u00c7":92,"\u00d2":92,"\u00d3":92,"\u00d4":92,"\u00d5":92,"\u00d6":92,"\u00d8":92,"T":137,"V":80,"W":57,"X":78,"Y":80,"\u00dd":80,"Z":113,"m":150,"n":150,"p":150,"r":150,"s":150,"u":150,"\u00e6":150,"a":186,"c":186,"d":186,"e":186,"g":186,"o":186,"q":186,"\u00e0":186,"\u00e1":186,"\u00e2":186,"\u00e5":186,"\u00e7":186,"\u00e9":186,"\u00f3":186,"\u00f8":186,"t":88,"v":49,"y":49,"\u00fd":49,"\u00ff":49,"w":55,"\u00c6":240,"\"":-70,"'":-70,"\u00ae":-33,"z":115,"x":109}},"Z":{"d":"31,-250r737,-852r119,-82r-658,0r52,-250r944,0r-51,250r-742,858r-115,76r658,0r-53,250r-945,0","w":1060,"k":{" ":43,"\u00a0":43,"-":106,"\u00ad":106,"A":49,"\u00c0":49,"\u00c1":49,"\u00c2":49,"\u00c3":49,"\u00c4":49,"\u00c5":49,"C":47,"G":47,"O":47,"Q":47,"\u00c7":47,"\u00d2":47,"\u00d3":47,"\u00d4":47,"\u00d5":47,"\u00d6":47,"\u00d8":47,"T":47,"V":70,"W":57,"X":53,"Y":113,"\u00dd":113,"Z":20,"a":43,"c":43,"d":43,"e":43,"g":43,"o":43,"q":43,"\u00e0":43,"\u00e1":43,"\u00e2":43,"\u00e3":43,"\u00e4":43,"\u00e5":43,"\u00e7":43,"\u00e8":43,"\u00e9":43,"\u00ea":43,"\u00eb":43,"\u00f0":43,"\u00f2":43,"\u00f3":43,"\u00f4":43,"\u00f5":43,"\u00f6":43,"\u00f8":43,"t":20,"v":-27,"y":-27,"\u00fd":-27,"\u00ff":-27,"\u00c6":252,"z":23}},"[":{"d":"406,-1434r456,0r-45,224r-215,0r-309,1456r215,0r-49,225r-455,0","w":643,"k":{"-":70,"\u00ad":70,"A":33,"\u00c0":33,"\u00c1":33,"\u00c2":33,"\u00c3":33,"\u00c4":33,"\u00c5":33,"C":33,"G":33,"O":33,"Q":33,"\u00c7":33,"\u00d2":33,"\u00d3":33,"\u00d4":33,"\u00d5":33,"\u00d6":33,"\u00d8":33,"a":55,"c":55,"d":55,"e":55,"g":55,"o":55,"q":55,"\u00e0":55,"\u00e1":55,"\u00e2":55,"\u00e3":55,"\u00e4":55,"\u00e5":55,"\u00e7":55,"\u00e8":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00f0":55,"\u00f2":55,"\u00f3":55,"\u00f4":55,"\u00f5":55,"\u00f6":55,"\u00f8":55}},"\\":{"d":"967,195r-207,92r-686,-1655r211,-88","w":868},"]":{"d":"297,471r-457,0r49,-225r215,0r308,-1456r-215,0r45,-224r458,0","w":641},"^":{"d":"545,-1444r143,0r379,598r-268,0r-146,-250r-45,-143r-51,145r-158,248r-256,0","w":1034},"_":{"d":"-94,240r909,0r0,219r-909,0r0,-219","w":909},"`":{"d":"881,-1159r-142,0r-186,-254r14,-62r264,0","w":487},"a":{"d":"332,29v-186,7,-264,-136,-264,-324v2,-336,130,-575,357,-695v163,-86,427,-68,611,-14r-127,594v-25,124,-37,272,-26,412r-187,0r-28,-176r-9,0v-69,100,-169,197,-327,203xm328,-344v0,81,19,166,100,162v115,-5,165,-90,217,-162r103,-477v-74,-32,-181,-27,-242,23v-111,91,-178,256,-178,454","w":1030,"k":{"T":213}},"b":{"d":"807,-1049v155,-3,222,124,221,285v-1,368,-152,616,-395,738v-175,88,-458,50,-588,-31r291,-1377r252,0r-127,590r8,0v78,-98,168,-201,338,-205xm328,-215v63,37,165,41,233,-5v128,-87,203,-256,207,-476v3,-140,-72,-169,-163,-119v-80,44,-148,124,-191,203","w":1048,"k":{")":57,"]":57,"}":57,"*":61,",":23,".":23,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":139,"'":139,"\u00ae":61,"x":55}},"c":{"d":"432,29v-234,0,-362,-128,-362,-353v0,-335,144,-562,363,-678v141,-74,351,-59,466,9r-94,200v-76,-42,-202,-59,-280,-3v-106,76,-181,213,-185,390v-2,125,54,210,164,213v83,2,154,-33,207,-63r47,172v-78,59,-200,113,-326,113","w":843,"k":{" ":61,"\u00a0":61,")":27,"]":27,"}":27,"-":55,"\u00ad":55,"a":55,"c":55,"d":55,"e":55,"g":55,"o":55,"q":55,"\u00e0":55,"\u00e1":55,"\u00e2":55,"\u00e3":55,"\u00e4":55,"\u00e5":55,"\u00e7":55,"\u00e8":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00f0":55,"\u00f2":55,"\u00f3":55,"\u00f4":55,"\u00f5":55,"\u00f6":55,"\u00f8":55,"v":-20,"y":-20,"\u00fd":-20,"\u00ff":-20,"w":-14,"\"":41,"'":41,"x":-20}},"d":{"d":"396,-987v107,-68,278,-82,397,-31r88,-416r252,0r-228,1074v-24,118,-40,230,-33,362r-172,0r-28,-176r-8,0v-69,98,-169,203,-324,203v-181,0,-267,-145,-264,-338v6,-311,123,-554,320,-678xm355,-520v-25,121,-52,338,83,338v105,0,163,-93,211,-162r99,-463v-65,-39,-191,-46,-253,11v-69,63,-117,162,-140,276","w":1038},"e":{"d":"500,-182v106,0,213,-41,270,-80r53,164v-89,72,-228,127,-397,127v-223,0,-358,-143,-356,-369v3,-328,152,-552,372,-662v69,-35,139,-51,209,-51v195,2,320,88,320,273v0,203,-166,278,-348,316v-88,18,-194,26,-299,20v-34,145,26,262,176,262xm694,-673v70,-59,38,-183,-80,-175v-136,10,-219,126,-254,244v128,0,264,-9,334,-69","w":954,"k":{")":27,"]":27,"}":27,"T":264,"t":-20,"\"":94,"'":94,"x":16}},"f":{"d":"879,-1221v-55,-22,-122,-29,-193,-30v-126,-2,-128,117,-149,227r204,0r-41,211r-196,0r-152,883v-33,203,-113,356,-350,356v-103,0,-204,-12,-266,-57r69,-187v76,29,215,45,260,-29v22,-36,42,-91,54,-169r129,-797r-144,0r46,-211r131,0v34,-179,53,-373,216,-420v134,-39,335,-11,441,37","w":602,"k":{" ":23,"\u00a0":23,")":-176,"]":-176,"}":-176,"*":-231,"-":23,"\u00ad":23,",":61,".":61,"a":-20,"c":-20,"d":-20,"e":-20,"g":-20,"o":-20,"q":-20,"\u00e0":-20,"\u00e1":-20,"\u00e2":-20,"\u00e3":-20,"\u00e4":-20,"\u00e5":-20,"\u00e7":-20,"\u00e8":-20,"\u00e9":-20,"\u00ea":-20,"\u00eb":-20,"\u00f0":-20,"\u00f2":-20,"\u00f3":-20,"\u00f4":-20,"\u00f5":-20,"\u00f6":-20,"\u00f8":-20,"t":-51,"w":-23,"\"":-217,"'":-217,"\u00ae":-227,"i":-61,"j":-61,"\u00ec":-61,"\u00ed":-61,"\u00ee":-61,"\u00ef":-61,"\u00f1":-61,"\u00f9":-61,"\u00fa":-61,"\u00fb":-61,"\u00fc":-61,"z":-27,"x":-20}},"g":{"d":"313,16v-157,-2,-250,-135,-247,-305v6,-334,145,-574,362,-700v168,-97,462,-58,612,10r-206,979v-59,264,-187,435,-502,434v-148,0,-263,-38,-352,-92r94,-186v107,59,330,111,433,4v71,-73,96,-215,126,-334r-8,0v-57,89,-169,192,-312,190xm349,-534v-29,114,-59,339,77,339v128,0,195,-129,246,-223r88,-399v-73,-31,-185,-30,-249,18v-79,59,-133,152,-162,265","w":1034},"h":{"d":"838,-1053v143,0,207,68,206,224v0,51,-8,114,-24,192r-135,637r-252,0r123,-582v14,-60,20,-109,20,-149v0,-66,-22,-104,-84,-100v-109,6,-178,95,-234,164v-22,27,-37,54,-48,77r-121,590r-252,0r303,-1434r252,0r-129,590r8,0v87,-97,189,-209,367,-209","w":1081},"i":{"d":"467,-1174v-88,0,-156,-53,-156,-141v0,-89,68,-141,156,-141v86,0,158,53,158,141v0,87,-72,141,-158,141xm272,-1024r252,0r-217,1024r-252,0","w":524},"j":{"d":"444,-1174v-88,0,-155,-53,-155,-141v0,-89,67,-141,155,-141v86,0,158,53,158,141v0,87,-72,141,-158,141xm252,-1024r254,0r-227,1067v-49,217,-141,374,-381,379v-42,0,-85,-4,-127,-14r49,-218v153,12,197,-98,223,-223","w":499},"k":{"d":"459,-424r-82,0r-88,424r-252,0r303,-1434r252,0r-180,846r75,-26r289,-410r281,0r-305,412r-123,77r92,78r156,457r-271,0","w":952,"k":{" ":55,"\u00a0":55,"-":68,"\u00ad":68,"a":55,"c":55,"d":55,"e":55,"g":55,"o":55,"q":55,"\u00e0":55,"\u00e1":55,"\u00e2":55,"\u00e3":55,"\u00e4":55,"\u00e5":55,"\u00e7":55,"\u00e8":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00f0":55,"\u00f2":55,"\u00f3":55,"\u00f4":55,"\u00f5":55,"\u00f6":55,"\u00f8":55,"v":20,"y":20,"\u00fd":20,"\u00ff":20}},"l":{"d":"248,25v-119,-2,-181,-38,-180,-160v0,-31,4,-68,12,-109r252,-1190r252,0r-240,1131v-15,67,-4,117,45,117v38,0,75,-8,109,-23r-6,182v-50,30,-161,53,-244,52","w":557},"m":{"d":"1243,-575v17,-89,64,-256,-53,-256v-90,0,-143,76,-188,133v-18,22,-29,45,-39,65r-132,633r-251,0r136,-658v15,-78,11,-180,-65,-173v-120,10,-179,112,-231,192r-131,639r-252,0r217,-1024r197,0r-13,180r8,0v93,-97,185,-206,369,-209v115,-2,168,96,162,217v86,-100,188,-217,362,-217v138,0,196,56,195,209v0,59,-11,136,-31,230r-129,614r-252,0","w":1570},"n":{"d":"825,-1053v131,0,206,70,203,217v-1,51,-6,95,-16,142r-148,694r-252,0r136,-635v18,-90,30,-203,-74,-196v-134,9,-197,120,-254,213r-131,618r-252,0r217,-1024r190,0r-10,180r8,0v88,-103,193,-209,383,-209","w":1067,"k":{"T":281}},"o":{"d":"629,-1053v235,2,354,137,354,365v0,320,-134,549,-342,664v-109,60,-263,72,-375,21v-119,-54,-196,-165,-196,-329v0,-323,135,-555,347,-668v67,-36,138,-53,212,-53xm701,-496v29,-134,61,-354,-109,-346v-87,4,-140,80,-180,149v-47,82,-82,202,-82,326v0,175,127,235,229,142v67,-62,118,-161,142,-271","w":1015,"k":{")":57,"]":57,"}":57,"*":61,",":23,".":23,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":139,"'":139,"\u00ae":61,"x":55}},"p":{"d":"671,-29v-110,65,-277,78,-386,21r-88,418r-250,0r303,-1434r186,0r-10,180r8,0v80,-103,180,-209,354,-209v159,0,234,116,232,297v-4,343,-132,598,-349,727xm734,-507v30,-116,63,-335,-77,-335v-123,0,-183,109,-235,195r-94,430v72,48,165,46,235,-8v81,-62,140,-164,171,-282","w":1036,"k":{")":57,"]":57,"}":57,"*":61,",":23,".":23,"v":37,"y":37,"\u00fd":37,"\u00ff":37,"w":12,"\"":139,"'":139,"\u00ae":61,"x":55}},"q":{"d":"303,29v-287,5,-274,-384,-193,-609v65,-179,186,-320,340,-408v164,-94,437,-61,580,11r-301,1387r-246,0r125,-570r-8,0v-61,95,-148,186,-297,189xm319,-317v-1,73,26,135,89,135v135,0,202,-139,256,-240r81,-395v-78,-31,-173,-31,-238,23v-115,96,-183,272,-188,477","w":1026},"r":{"d":"762,-805v-152,-54,-290,63,-340,166r-133,639r-252,0r217,-1024r186,0r2,180r9,0v63,-124,185,-240,374,-180","w":702,"k":{"-":27,"\u00ad":27,",":164,".":164}},"s":{"d":"729,-307v2,233,-170,336,-405,336v-124,1,-254,-26,-326,-68r80,-201v93,53,391,121,391,-55v0,-103,-100,-133,-168,-181v-84,-59,-168,-126,-168,-267v0,-209,156,-307,373,-310v135,-2,242,20,319,62r-69,192v-55,-24,-141,-43,-221,-43v-79,0,-142,21,-142,94v0,57,46,82,87,111v109,79,247,142,249,330","w":811},"t":{"d":"307,29v-171,6,-244,-113,-207,-285r119,-557r-137,0r49,-211r133,0r41,-193r268,-75r-57,268r240,0r-47,211r-238,0r-100,463v-21,85,-27,171,69,168v60,-2,95,-12,138,-35r0,188v-67,36,-169,54,-271,58","w":655,"k":{"v":27,"y":27,"\u00fd":27,"\u00ff":27,"w":27,"x":-33}},"u":{"d":"295,29v-142,0,-215,-66,-215,-226v0,-51,6,-105,20,-165r142,-662r252,0r-134,633v-16,87,-33,188,62,188v124,0,191,-107,246,-190r131,-631r252,0r-129,614v-26,115,-42,269,-39,410r-203,0r-10,-184r-8,0v-84,104,-186,213,-367,213","w":1048},"v":{"d":"428,-487r4,157r6,0r62,-162r280,-532r285,0r-627,1034r-155,0r-201,-1034r278,0","w":917,"k":{" ":27,"\u00a0":27,"*":-41,",":111,".":111,"a":37,"c":37,"d":37,"e":37,"g":37,"o":37,"q":37,"\u00e0":37,"\u00e1":37,"\u00e2":37,"\u00e3":37,"\u00e4":37,"\u00e5":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f0":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"t":-45,"z":-10,"x":37}},"w":{"d":"911,-1024r66,524r-2,170r10,0r62,-172r237,-522r246,0r-522,1034r-187,0r-71,-573r0,-129r-9,0r-53,131r-307,571r-193,0r-94,-1034r258,0r33,514r-12,182r10,0r70,-184r270,-512r188,0","w":1388,"k":{" ":23,"\u00a0":23,")":27,"]":27,"}":27,"*":-33,",":61,".":61,"t":-41,"z":16,"x":16}},"x":{"d":"340,-524r-184,-500r284,0r78,219r27,143r90,-143r178,-219r293,0r-399,492r204,532r-278,0r-98,-246r-31,-151r-92,151r-203,246r-293,0","w":1015,"k":{
