/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.9995 (09-AUG-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($) {

var ver = '2.9995';

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

function debug(s) {
	$.fn.cycle.debug && log(s);
}		
function log() {
	window.console && console.log && console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
}
$.expr[':'].paused = function(el) {
	return el.cyclePause;
}


// 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();

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

		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var startTime = opts2.continuous ? 10 : getTimeout(els[opts2.currSlide], els[opts2.nextSlide], opts2, !opts2.backwards);

		// 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,!opts.backwards)}, startTime);
		}
	});
};

function triggerPause(cont, byHover, onPager) {
	var opts = $(cont).data('cycle.opts');
	var paused = !!cont.cyclePause;
	if (paused && opts.paused)
		opts.paused(cont, opts, byHover, onPager);
	else if (!paused && opts.resumed)
		opts.resumed(cont, opts, byHover, onPager);
}

// 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;
			opts.elements && $(opts.elements).stop();
			$(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);
			triggerPause(cont);
			return false;
		case 'pause':
			cont.cyclePause = 1;
			triggerPause(cont);
			return false;
		case 'resume':
			cont.cyclePause = 0;
			checkInstantResume(false, arg2, cont);
			triggerPause(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, !options.backwards);
		}
	}
};

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() : {});
	var meta = $.isFunction($cont.data) ? $cont.data(opts.metaAttr) : null;
	if (meta)
		opts = $.extend(opts, meta);
	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] : [];

	// 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.backwards); });

	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,10);
	else if (opts.backwards)
		opts.startingSlide = els.length - 1;

	// 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;
		if (opts.backwards)
			z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i;
		else
			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) {
		if (!opts.aspect) {
	        if (opts.width)
	            $slides.width(opts.width);
	        if (opts.height && opts.height != 'auto')
	            $slides.height(opts.height);
		} else {
			$slides.each(function(){
				var $slide = $(this);
				var ratio = (opts.aspect === true) ? $slide.width()/$slide.height() : opts.aspect;
				if( opts.width && $slide.width() != opts.width ) {
					$slide.width( opts.width );
					$slide.height( opts.width / ratio );
				}

				if( opts.height && $slide.height() < opts.height ) {
					$slide.height( opts.height );
					$slide.width( opts.height * ratio );
				}
			});
		}
	}

	if (opts.center && ((!opts.fit) || opts.aspect)) {
		$slides.each(function(){
			var $slide = $(this);
			$slide.css({
				"margin-left": opts.width ?
					((opts.width - $slide.width()) / 2) + "px" :
					0,
				"margin-top": opts.height ?
					((opts.height - $slide.height()) / 2) + "px" :
					0
			});
		});
	}

	if (opts.center && !opts.fit && !opts.slideResize) {
	  	$slides.each(function(){
	    	var $slide = $(this);
	    	$slide.css({
	      		"margin-left": opts.width ? ((opts.width - $slide.width()) / 2) + "px" : 0,
	      		"margin-top": opts.height ? ((opts.height - $slide.height()) / 2) + "px" : 0
	    	});
	  	});
	}
		
	// 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'});
	}

	var pauseFlag = false;  // https://github.com/malsup/cycle/issues/44
	if (opts.pause)
		$cont.hover(
			function(){
				pauseFlag = true;
				this.cyclePause++;
				triggerPause(cont, true);
			},
			function(){
				pauseFlag && this.cyclePause--;
				triggerPause(cont, true);
			}
		);

	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.cssAfter = opts.cssAfter || {};
	opts.cssFirst = opts.cssFirst || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

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

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout,10);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed,10);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		
		var buffer = opts.fx == 'none' ? 0 : 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 if (opts.backwards)
		opts.nextSlide = opts.startingSlide == 0 ? (els.length-1) : opts.startingSlide-1;
	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.skipInitializationCallbacks) {
		if (opts.before.length)
			opts.before[0].apply(e0, [e0, e0, opts, true]);
		if (opts.after.length)
			opts.after[0].apply(e0, [e0, e0, opts, true]);
	}
	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});
	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')
			$s.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 = 0;
	}
	// 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.bounce &&
		((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 (fwd && (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length))
				opts.lastFx = 0;
			else if (!fwd && (opts.lastFx == undefined || --opts.lastFx < 0))
				opts.lastFx = opts.fxs.length - 1;
			fx = opts.fxs[opts.lastFx];
		}

		// 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() {
			opts.busy = 0;
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		debug('tx firing('+fx+'); 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 if (opts.backwards) {
			var roll = (opts.nextSlide - 1) < 0;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = 1;
				opts.currSlide = 0;
			}
			else {
				opts.nextSlide = roll ? (els.length-1) : opts.nextSlide-1;
				opts.currSlide = roll ? 0 : opts.nextSlide+1;
			}
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = els.length-2;
				opts.currSlide = els.length-1;
			}
			else {
				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(els[opts.currSlide], els[opts.nextSlide], 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.backwards) }, 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.call(curr,curr,next,opts,fwd);
		while (opts.fx != 'none' && (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,1); };
$.fn.cycle.prev = function(opts) { advance(opts,0);};

// advance slide forward or back
function advance(opts, moveForward) {
	var val = moveForward ? 1 : -1;
	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, moveForward);
	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);
	
	var pagerFn = 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 ( /mouseenter|mouseover/i.test(opts.pagerEvent) ) {
		$a.hover(pagerFn, function(){/* no-op */} );
	}
	else {
		$a.bind(opts.pagerEvent, pagerFn);
	}
	
	if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble)
		$a.bind('click.cycle', function(){return false;}); // suppress click
	
	var cont = opts.$cont[0];
	var pauseFlag = false; // https://github.com/malsup/cycle/issues/44
	if (opts.pauseOnPagerHover) {
		$a.hover(
			function() { 
				pauseFlag = true;
				cont.cyclePause++; 
				triggerPause(cont,true,true);
			}, function() { 
				pauseFlag && cont.cyclePause--; 
				triggerPause(cont,true,true);
			} 
		);
	}
};

// 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,10).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 && 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();
	if (typeof opts.cssBefore.opacity == 'undefined')
		opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (opts.slideResize && w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (opts.slideResize && 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, function() {
			cb();
		});
	};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		$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 = {
	activePagerClass: 'activeSlide', // class name used for the active pager link
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	aspect:		   false,  // preserve aspect ratio during fit resizing, cropping if necessary (must be used with fit option)
	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)
	backwards:     false, // true to start slideshow at last slide and move backwards through the stack
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	center: 	   null,  // set to true to have cycle add top/left margin to each slide (use with width and height options)
	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)
	containerResize: 1,	  // resize container to fit largest slide
	continuous:	   0,	  // true to start next transition immediately after current one completes
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	easing:		   null,  // easing method for both in and out transitions
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	fit:		   0,	  // force slides to fit container
	fx:			  'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle')
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height (if the 'fit' option is true, the slides will be set to this height as well)
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	metaAttr:     'cycle',// data- attribute that holds the option data for the slideshow
	next:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for next slide
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	onPagerEvent:  null,  // callback fn for pager events: function(zeroBasedSlideIndex, slideElement)
	onPrevNextEvent: null,// callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement)
	pager:		   null,  // element, jQuery object, or jQuery selector string for the element to use as pager container
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	pagerEvent:	  'click.cycle', // name of event which drives the pager navigation
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	prev:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for previous slide
	prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250,  // ms delay for requeue
	rev:		   0,	  // causes animations to transition in reverse (for effects that support it such as scrollHorz/scrollVert/shuffle)
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	skipInitializationCallbacks: false, // set to true to disable the first before/after callback that occurs prior to any transition
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	slideResize:   1,     // force slide width/height to fixed size before every transition
	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
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	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)
	updateActivePagerLink: null, // callback fn invoked to update the active pager link (adds/removes activePagerClass style)
	width:         null   // container width (if the 'fit' option is true, the slides will be set to this width as well)
};

})(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-2010 M. Alsup
 * Version:	 2.73
 * 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 slide initialization and properties 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();
	};
};

// not a cross-fade, fadeout only fades out the top slide
$.fn.cycle.transitions.fadeout = function($cont, $slides, opts) {
	$slides.not(':eq('+opts.currSlide+')').css({ display: 'block', 'opacity': 1 });
	opts.before.push(function(curr,next,opts,w,h,rev) {
		$(curr).css('zIndex',opts.slideCount + (!rev === true ? 1 : 0));
		$(next).css('zIndex',opts.slideCount + (!rev === true ? 0 : 1));
	});
	opts.animIn.opacity = 1;
	opts.animOut.opacity = 0;
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	opts.cssAfter.zIndex = 0;
};

// 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;
	opts.cssBefore.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;
	opts.cssBefore.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;
	opts.cssBefore.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;
	opts.cssBefore.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) {
		if (opts.rev)
			fwd = !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) {
		if (opts.rev)
			fwd = !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;
	opts.cssBefore.top = 0;
	opts.cssBefore.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;
	opts.cssBefore.top = 0;
	opts.cssBefore.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) {
		if (opts.rev)
			fwd = !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,10)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	$.extend(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.animOut.width = next.cycleW;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.cssBefore.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;
	opts.cssBefore.top = 0;
	opts.cssBefore.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;
	opts.cssBefore.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;
	});
	$.extend(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;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
		$.extend(opts.animOut, { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 });
	});
	opts.cssFirst.top = 0;
	opts.cssFirst.left = 0;
	opts.cssBefore.width = 0;
	opts.cssBefore.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;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
	});
	opts.cssBefore.width = 0;
	opts.cssBefore.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;
	opts.cssBefore.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;
	opts.cssBefore.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;
	opts.cssBefore.left = w;
	opts.animIn.top = 0;
	opts.animIn.left = 0;
	opts.animOut.top = h;
	opts.animOut.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;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 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;
		opts.animIn.height = this.cycleH;
		opts.animOut.top = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.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;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = curr.cycleW/2;
		opts.animOut.width = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.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;
		opts.animIn.height = next.cycleH;
		opts.animOut.top = curr.cycleH/2;
		opts.animOut.height = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 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;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.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;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.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)
			$.extend(opts.animOut, { left: w*2, top: -h/2, opacity: 0 });
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.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,10);
			var left = parseInt(w/2,10);
			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],10), r = parseInt(d[1],10), b = parseInt(d[2],10), l = parseInt(d[3],10);

	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),10) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count),10) : 0;
			var ll = l ? l - parseInt(step * (l/count),10) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1),10) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1),10) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	$.extend(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.09i
 */
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("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}})());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}})());;
var LimitLocationsList = new Array(0,1013,1009,1004,1005);
var LimitClassificationsList = new Array(0,1200,6251,1204,1206,1209,1212,1223,1216,6058,6362,6076,6263,6123,6281,6317,6092,6362,1225);
var target = 'blank';
var Settings = { 'SearchBoxTitle': 'CoreStaff Job Search', 
				//Define which of the search fields are to be included in this search box
                'Show': 'classification,subclass,worktype',
				//heights for classification, subclass, location, area, worktype, results from (in this order) 
				'Heights':'1,1,1,1,1,1',
				//'muliple' select or blank for single select boxes
				'Multiple': '' ,
				//advertiser ID or group - to be appended to query string can be used from comefrom or tracking values also
				'Advertiser': 'AdvertiserID=26017636,26017658,26017645,26017668,26931481,26237033,26017649,26017642,26237040', 
				//leave blank if background image being used instead
				'ButtonText':''};
var MainSeekSiteAddress = 'http://jobs.seek.com.au';
function initPage() {
  //To draw and where to attach
  drawSearchJobControl("SearchJobControl");
}



    var mainSeekSiteAddress = MainSeekSiteAddress;
    var controlPrefix ='cat';
    var aCatSelected = new Array(0);
    var aDefaultOverrides = new Array(0);
    var isAdvancedKw = false;
	
	//if(document.location.href.indexOf('.dev/')>-1)
		//mainSeekSiteAddress = mainSeekSiteAddress + '.dev';
	
	if(mainSeekSiteAddress.indexOf('.nz')>-1)
		document.write("<script type='text/javascript' src='"+mainSeekSiteAddress+"/Scripts/Taxonomy/onsite.class.nz-main.js'></script>");
	else
		document.write("<script type='text/javascript' src='"+mainSeekSiteAddress+"/Scripts/Taxonomy/onsite.class.main.js'></script>");
    document.write("<script type='text/javascript' src='"+mainSeekSiteAddress+"/Scripts/Taxonomy/onsite.searchbox.js'></script>");


    addEvHandler(window, 'load', initPage, false);

    //To Draw and Show controls according to user selected configurable options
    function drawSearchJobControl(oSearch){
        var showKeywords =  (Settings["Show"].indexOf('keywords')>-1); 
        var showClassification = (Settings["Show"].indexOf('classification')>-1);
		var showSubClassification = (Settings["Show"].indexOf('subclass')>-1);
		var showLocation = (Settings["Show"].indexOf('location')>-1);
		var showArea = (Settings["Show"].indexOf('area')>-1);
		var showWorkType = (Settings["Show"].indexOf('worktype')>-1);
		var showSalary = (Settings["Show"].indexOf('salary')>-1);
		var showResultsFrom = (Settings["Show"].indexOf('resultsfrom')>-1);
		var buttonText = Settings["ButtonText"];
        
        var o = document.getElementById(oSearch);
        if (o){
            drawControl(document.getElementById(oSearch),showKeywords,showLocation,showClassification,showSubClassification,showArea,showSalary,showWorkType,showResultsFrom,buttonText);
            
            //Populate values
			if(showKeywords) {
				initTextBox(document.getElementById('Keywords'));
			}
            if (showLocation) {
                populateClassiferList("catparentlocation","parentlocation_advanced",LimitLocationsList);
				document.getElementById('catparentlocation').options[0].selected="selected";
            }
			if (showArea) {
                setAnyCopy('childlocation', 'Any Area');
				document.getElementById('catchildlocation').options[0].selected="selected";
            }
            if (showClassification){
                setAnyCopy('industry', 'Any Classification');
				populateClassiferList("catindustry","industry",LimitClassificationsList);
            }
			if (showSubClassification){
                setAnyCopy('occupation', 'Any Sub-Classification');
				document.getElementById('catoccupation').options[0].selected="selected";
            }
			if (showWorkType){
                setAnyCopy('worktype', 'Any WorkType');
                populateClassiferList("catworktype","worktype");
            }
			
			if (showSalary){
				//add code later
            }
        }else{
            //alert("Incorrect Job Search control ID name");
        }
    }

	
	function disableOptGroupIE6(selected) {
		if (selected.value == 'optgroup')
			selected.value = 0;
		
	}
	//toggles text for keywords field
	function setKeywordTextbox(textBox){
		if(textBox!=null){
			if(textBox.value=="Enter keyword(s)") {
				textBox.value="";
				textBox.className = "";
			}
			else if(textBox.value=="") {
				textBox.value="Enter keyword(s)";
				textBox.className = "disabled";
			}
		}
	}
	function clearTextBox(textBox){
		if(textBox!=null){
			if(textBox.value=="Enter keyword(s)") {
				textBox.value="";
				textBox.className = "";
			}
		}
	}
	function initTextBox(textBox){
		if(textBox!=null){
			if(textBox.value=="Enter keyword(s)") {
				textBox.className = "disabled";
			}
			else
				textBox.className = "";
		}
	}
    //To do the search on the Seek main site
    function doSearch(){
        //This full path is used for redirect users to seek search pages
		var NavToPath =	 "DateRange=";
		if(selectedValue("DateRange"))
			NavToPath = NavToPath + selectedValue("DateRange");
		else
			NavToPath = NavToPath + '31';
		
		if(selectedValue("catparentlocation")) {
			var location = selectedValue("catparentlocation").split('|');
			for (var i = 0; i < location.length; i++) {
				switch (location[i+1]) {
					case '1' : NavToPath = NavToPath + "&catlocation=" + location[i];
							   break;
					case '13' : NavToPath = NavToPath + "&catstate=" + location[i];
							   break;
					case '12' : NavToPath = NavToPath + "&catnation=" + location[i];
							   break;
				}
			}
		}
		if(selectedValue("catchildlocation") && selectedValue("catchildlocation") != 0 && selectedValue("catchildlocation") != 'Any Area') {
			if(selectedValue("catchildlocation").indexOf("|") > -1) {
				var areaSplit = selectedValue("catchildlocation").split('|');
				for (var k = 0; k < areaSplit.length; k++) {
					switch (areaSplit[k+1]) {
						case '1' : NavToPath = NavToPath + "&catlocation=" + areaSplit[k];
								   break;
						case '11' : NavToPath = NavToPath + "&catarea=" + areaSplit[k];
								   break;
					}
				}
			}
			else
				NavToPath = NavToPath + "&catarea=" + selectedValue("catchildlocation");
		}
		if(selectedValue("catindustry") && selectedValue("catindustry") != 0)
			NavToPath = NavToPath + "&catindustry=" + selectedValue("catindustry");
		if(selectedValue("catoccupation") && selectedValue("catoccupation") !=0 && selectedValue("catoccupation") != 'Any Sub-Classification')
			NavToPath = NavToPath + "&catoccupation=" + selectedValue("catoccupation");
		if(selectedValue("Keywords"))
			NavToPath = NavToPath + "&Keywords=" + selectedValue("Keywords");
		if(selectedValue("catworktype") && selectedValue("catworktype") != 0)
			NavToPath = NavToPath + "&catworktype=" + selectedValue("catworktype");
		var navToLocation =  "http://www.corestaff.com.au/job-seekers/search-jobs?" + NavToPath;
		
		//Adds advertiser id if it's selected from a drop down
		if(selectedValue("AdvertiserID") && selectedValue("AdvertiserID") != 0)
			navToLocation = navToLocation + "&AdvertiserID=" +selectedValue("AdvertiserID");
		else
			navToLocation = navToLocation + '&' +Settings["Advertiser"];
		
        if(target == 'blank')
			window.open(navToLocation,'_self');
		else if(target == '/alliances/gough-recruitment/index.htm')
			window.open(mainSeekSiteAddress +target+'?'+NavToPath,'Job_Search_Results');
		else if(target == 'http://www.scotfordfennessy.com.au/search_jobs.php')
			window.location.href = target+'?'+NavToPath;
		else
			target.location.href =  navToLocation;
    } 
    
     //To add windows onload event to resolve caching problem
    function addEvHandler(obj, evt, handler, captures) 
    { 
        if (obj.addEventListener) 
            obj.addEventListener(evt, handler, captures); 
        else if (obj.attachEvent) 
            obj.attachEvent('on' + evt, handler); 
        else 
        { 
            var oldHandler = obj['on' + evt]; 
            if (null == oldHandler) 
                obj['on' + evt] = handler; 
            else obj['on' + evt] = function() 
            { 
                oldHandler(); 
                handler(); 
            }
        } 
    } 
    
    //To get the seleceted values from controls
    function selectedValue(obj){
        var objCtrl = document.getElementById(obj);
        var retValue ="";
        if (objCtrl){
			//retValue = objCtrl.value;
            if (obj == "Keywords") {
				retValue = objCtrl.value;
				if (retValue =='Enter keyword(s)')
					retValue = "";
			}
			else {
				for (var i = 0; i < objCtrl.options.length; i++) {
					if(objCtrl.options[ i ].selected) {
						if(retValue && objCtrl.options[i].value.indexOf('|') > 0)
							retValue += '|'+objCtrl.options[i].value;
						else if (retValue)
							retValue += ','+objCtrl.options[i].value;
						else
							retValue = objCtrl.value;
						
					}
						
				}
			}
            
        }
        return retValue;
    }
    
    //To draw the Searchbox dynamacally in client site
    function drawControl(oSearch,showKeywords,showLocation,showClassification,showSubClassification,showArea,showSalary,showWorkType,showResultsFrom,buttonText){
          
      if(oSearch){
        var s = new stringBuilder();   //To improve the perf for following cocatenation 
	    var sWidth= Settings["Width"];

	    if ((sWidth<=200)||(sWidth=="")){ sWidth="246"; }
	    var sJSFieldWidth = sWidth-20;

				s.append('<div id="header">'+ Settings["SearchBoxTitle"] +'</div>');
				s.append('<div id="searchfields">');
			
			    if(showKeywords){
				    s.append('<!-- Keywords -->');
					s.append('<label id="keywords-label">Keywords</label>');
					s.append('<input type="text" id="Keywords" name="Keywords" value="Enter keyword(s)" onblur="setKeywordTextbox(this);" maxlength="200" onclick="clearTextBox(this);"/>');
				    
				}
				if(showClassification){
				    s.append('<!-- Classification -->');
					 s.append('<label id="class-label">Classification</label>');
					s.append('<select '+Settings["Multiple"]+' size="'+Settings["Heights"][0]+'" name="catindustry" id="catindustry"');
					if(showSubClassification)
						s.append('onChange="ValidateCategoryList(&quot;industry&quot;,0,&quot;occupation&quot;,true)');
					s.append('"></select>');
				}
				if(showSubClassification){
				      
				    s.append('<!-- Sub-classification -->');
					 s.append('<label id="sub-class-label">Sub-classification</label>');
					s.append('<select '+Settings["Multiple"]+' size="'+Settings["Heights"][2]+'" name="catoccupation" id="catoccupation"><option>Any Sub-Classification</option></select>');
				    
				}
				if(showLocation){
				    s.append('<!-- Location -->');
					s.append('<label id="location-label">Location</label>');
					s.append('<select '+Settings["Multiple"]+' size="'+Settings["Heights"][4]+'" name="catparentlocation" id="catparentlocation" onchange="disableOptGroupIE6(this);');
					if(showArea)
						s.append('ValidateCategoryList(&quot;parentlocation&quot;,0,&quot;childlocation&quot;,true);');
					s.append('"></select>');
				}
				if(showArea){
					s.append('<!-- Area -->');
					s.append('<label id="area-label">Area</label>');
					s.append('<select '+Settings["Multiple"]+' size="'+Settings["Heights"][6]+'" name="catchildlocation" id="catchildlocation" onchange="disableOptGroupIE6(this)"><option>Any Area</option></select>');
				}
				if(showWorkType){
					s.append('<!-- WorkType -->');
					s.append('<label id="work-type-label">Work Type</label>');
					s.append('<select '+Settings["Multiple"]+' size="'+Settings["Heights"][8]+'" name="catworktype" id="catworktype"></select>');
				}
				if(showResultsFrom){	
					s.append('<!-- Results From -->');
					s.append('<label id="results-from-label">Show Me Jobs From</label>');
					s.append('<select size="'+Settings["Heights"][10]+'" name="DateRange" id="DateRange"><option value="999">Any</option><option value="1">Today</option><option value="3">Last 3 Days</option><option value="7">Last 7 Days</option><option value="14">Last 14 Days</option><option selected="true" value="31">Last 30 Days</option></select>');
				}
				if(showSalary){	
					//add code later
				}
				s.append('<div id="searchbutton">');
				
				s.append('<a href="javascript:doSearch()"><strong>'+buttonText+'</strong></a>');
				s.append('</div>');
	  s.append('</div>');

      oSearch.innerHTML = s.toString();
      }
    }
  
    //* string builder javascript function *
    function stringBuilder(strvalue)
    {
        this.strings = new Array("");
        this.append(strvalue);
    }

    // Appends the given value to the end of this instance.
    stringBuilder.prototype.append = function (strvalue)
    {
        if (strvalue)
        {
            this.strings.push(strvalue);
        }
    }

    // Clears the string buffer
    stringBuilder.prototype.clear = function ()
    {
        this.strings.length = 1;
    }

    // Converts this instance to a String.
    stringBuilder.prototype.toString = function ()
    {
        return this.strings.join("");
    }
	
	function GetObjectByPartName(name, matchIndex)
	{
		var obj; // string which is return referencing object by element id
		var elementnumber; 
		var elementname;
		var numberOfMatches=0;
		  
			//Go through the forms collection
			for (var i= 0; i < document.layout.length; i++)
			{
				elementname = document.layout.elements[i].name.toString();
			
				// if the object name passed equals the object name in the form collection - return it's number
				if (elementname.indexOf(name) != -1)
				{
					numberOfMatches++;
					
					if(matchIndex==undefined || numberOfMatches==matchIndex)
					{
						elementnumber = i;
						obj = document.layout.elements[i]
						break;
					}
				   
				}
			}
				
				// create the string which can be used to reference this object and return it could be used for Net 4.7
				//obj = "document.layout.elements[" + elementnumber + "]";
		
		return obj;
	}

        
    


;
(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2001, 2008 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Gotham is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Hoefler & Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({"w":224,"face":{"font-family":"Gotham Bold","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-16 -341 393 107.159","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+017E"},"glyphs":{" ":{"w":108},"!":{"d":"43,-86r-17,-166r64,0r-17,166r-30,0xm29,0r0,-58r58,0r0,58r-58,0","w":116},"\"":{"d":"105,-137r7,-115v19,2,45,-4,60,2r-39,113r-28,0xm21,-137r6,-115v19,2,45,-4,60,2r-39,113r-27,0","w":187},"#":{"d":"227,-100r0,46r-40,0r-9,54r-48,0r9,-54r-52,0r-9,54r-47,0r9,-54r-27,0r0,-46r35,0r9,-53r-32,0r0,-46r40,0r9,-53r47,0r-9,53r53,0r9,-53r47,0r-9,53r27,0r0,46r-35,0r-9,53r32,0xm103,-155r-9,56r54,0r10,-56r-55,0","w":252},"$":{"d":"25,-181v0,-43,34,-67,76,-71r0,-21r37,0r0,22v24,3,46,11,67,26r-24,42v-15,-10,-30,-17,-45,-21r0,55v48,13,79,28,79,78v0,43,-36,66,-77,71r0,35r-37,0r0,-36v-32,-4,-60,-15,-85,-34r28,-41v21,16,41,25,59,29r0,-57v-47,-13,-78,-27,-78,-77xm136,-45v24,-2,33,-23,20,-39v-4,-4,-10,-8,-20,-12r0,51xm103,-207v-25,1,-31,22,-20,38v3,4,10,8,20,11r0,-49","w":232,"k":{"7":4}},"%":{"d":"139,-191v0,36,-27,65,-62,65v-36,1,-61,-28,-61,-64v0,-36,27,-65,62,-65v36,0,61,28,61,64xm101,-190v0,-16,-8,-32,-24,-32v-15,0,-24,15,-23,32v0,16,9,31,24,31v15,0,23,-15,23,-31xm41,0r184,-252r43,0r-184,252r-43,0xm293,-62v0,36,-26,65,-61,65v-36,1,-61,-29,-61,-65v0,-36,27,-64,62,-64v36,0,60,29,60,64xm209,-62v-1,17,8,32,24,32v31,-1,30,-63,-1,-63v-15,0,-23,15,-23,31","w":309},"&":{"d":"120,-256v40,0,71,26,71,64v0,30,-18,52,-53,66r33,33v8,-12,17,-27,25,-43r41,22v-12,23,-24,41,-34,54r37,37r-40,28r-29,-29v-51,50,-160,32,-159,-46v0,-31,16,-54,49,-69v-40,-50,-6,-117,59,-117xm119,-213v-31,1,-32,39,-10,57v20,-8,34,-13,34,-34v0,-14,-10,-23,-24,-23xm91,-105v-36,14,-27,65,12,63v12,0,25,-4,37,-14","w":250,"k":{"T":18,"\u0162":18,"\u0164":18,"V":20,"W":16,"\u0174":16,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22}},"'":{"d":"21,-137r6,-115v19,2,46,-4,61,2r-39,113r-28,0","w":102},"(":{"d":"76,-103v0,62,28,87,69,117r-24,37v-58,-32,-100,-74,-100,-154v0,-80,43,-122,100,-154r24,36v-41,30,-69,56,-69,118","w":160,"k":{"j":-11,"J":5,"d":11,"g":11,"q":11,"\u010f":11,"\u0111":11,"\u011f":11,"\u0121":11,"\u0123":11,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"s":5,"\u015b":5,"\u015f":5,"\u0161":5,"C":11,"G":11,"O":11,"Q":11,"\u00c7":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"\u00d6":11,"\u00d8":11,"\u0106":11,"\u010a":11,"\u010c":11,"\u011e":11,"\u0120":11,"\u0122":11,"\u014c":11,"\u014e":11,"\u0150":11,"\u0152":11}},")":{"d":"39,-257v58,32,100,74,100,154v0,80,-43,122,-100,154r-24,-37v41,-30,70,-56,70,-117v0,-61,-29,-88,-70,-118","w":160},"*":{"d":"63,-134r5,-43r-35,27r-15,-26r41,-17r-41,-17r15,-26r35,26r-5,-43r29,0r-6,43r35,-26r15,26r-40,17r40,17r-15,26r-35,-27r6,43r-29,0","w":154,"k":{"\u00c6":36,"A":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u0100":36,"\u0102":36,"\u0104":36,"J":29,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":7,"e":7,"o":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f0":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u010b":7,"\u010d":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"s":4,"\u015b":4,"\u015f":4,"\u0161":4}},"+":{"d":"90,-37r0,-65r-66,0r0,-50r66,0r0,-64r51,0r0,64r65,0r0,50r-65,0r0,65r-51,0","w":230},",":{"d":"14,58r-5,-22v25,-3,38,-15,36,-36r-23,0r0,-58r59,0v3,64,0,120,-67,116","w":102,"k":{"1":18,"7":7,"j":-5,"0":7,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":7,"e":7,"o":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f0":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u010b":7,"\u010d":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"v":31,"w":25,"\u0175":25,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":43,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":5,"t":9,"\u0163":9,"\u0165":9,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5}},"-":{"d":"18,-85r0,-53r111,0r0,53r-111,0","w":146,"k":{"1":11,"7":14,"3":4,"\u00c6":14,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"Z":11,"\u0179":11,"\u017b":11,"\u017d":11,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"T":32,"\u0162":32,"\u0164":32,"V":14,"W":13,"\u0174":13,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"X":18,"x":11}},".":{"d":"22,0r0,-58r59,0r0,58r-59,0","w":102,"k":{"1":18,"7":7,"j":-5,"0":7,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":7,"e":7,"o":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f0":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u010b":7,"\u010d":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"v":31,"w":25,"\u0175":25,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":43,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":5,"t":9,"\u0163":9,"\u0165":9,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5}},"\/":{"d":"-10,46r159,-333r47,0r-160,333r-46,0","w":190,"k":{"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"\/":65,"\u00c6":43,"A":43,"\u00c0":43,"\u00c1":43,"\u00c2":43,"\u00c3":43,"\u00c4":43,"\u00c5":43,"\u0100":43,"\u0102":43,"\u0104":43,"J":47,"Z":7,"\u0179":7,"\u017b":7,"\u017d":7,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0121":25,"\u0123":25,"c":29,"e":29,"o":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,"\u0107":29,"\u010b":29,"\u010d":29,"\u0113":29,"\u0115":29,"\u0117":29,"\u0119":29,"\u011b":29,"\u014d":29,"\u014f":29,"\u0151":29,"\u0153":29,"a":23,"\u00e0":23,"\u00e1":23,"\u00e2":23,"\u00e3":23,"\u00e4":23,"\u00e5":23,"\u00e6":23,"\u0101":23,"\u0103":23,"\u0105":23,"s":31,"\u015b":31,"\u015f":31,"\u0161":31,"v":18,"w":18,"\u0175":18,"y":18,"\u00fd":18,"\u00ff":18,"\u0177":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"S":11,"\u015a":11,"\u015e":11,"\u0160":11,"x":18,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"m":18,"n":18,"p":18,"r":18,"\u00f1":18,"\u0144":18,"\u0146":18,"\u0148":18,"\u0155":18,"\u0157":18,"\u0159":18,"f":9,"t":7,"\u0163":7,"\u0165":7,"u":18,"\u00f9":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18}},"0":{"d":"243,-127v0,71,-44,131,-112,131v-67,0,-112,-60,-112,-130v0,-69,45,-130,113,-130v67,0,111,60,111,129xm76,-127v0,41,18,81,56,81v37,0,54,-39,54,-80v0,-41,-19,-79,-55,-80v-36,0,-55,39,-55,79","w":262,"k":{"7":9,"3":4,"2":4,"1":2,"\/":13,",":7,".":7}},"1":{"d":"64,0r0,-198r-44,11r-11,-45v35,-9,62,-26,110,-22r0,254r-55,0","w":151},"2":{"d":"115,-256v81,-6,114,96,58,145v-19,16,-56,44,-79,63r110,0r0,48r-186,0r0,-44v36,-31,88,-68,118,-102v18,-22,7,-63,-25,-60v-26,2,-35,15,-51,34r-39,-31v24,-32,44,-49,94,-53","k":{"7":2,"4":5}},"3":{"d":"203,-79v0,97,-144,106,-189,40r38,-37v18,20,38,31,61,31v20,0,36,-13,35,-32v-1,-30,-37,-34,-72,-32r-9,-35r60,-60r-99,0r0,-48r171,0r0,42r-64,61v45,8,68,31,68,70","w":223,"k":{"9":2,"7":7,"5":2,"\/":4}},"4":{"d":"143,0r0,-54r-123,0r-9,-40r138,-160r47,0r0,155r34,0r0,45r-34,0r0,54r-53,0xm76,-99r67,0r0,-79","w":248,"k":{"9":4,"7":11,"1":7,"\/":7}},"5":{"d":"206,-84v0,98,-135,112,-191,51r34,-40v20,18,40,27,60,27v25,0,42,-12,42,-36v-1,-40,-54,-40,-87,-25r-32,-21r8,-124r154,0r0,49r-107,0r-3,43v64,-15,122,11,122,76","w":226,"k":{"9":2,"7":11,"3":2,"2":4,"\/":7}},"6":{"d":"218,-84v0,53,-42,89,-96,88v-70,-1,-103,-45,-103,-123v0,-77,36,-137,111,-137v29,0,56,9,79,27r-29,43v-28,-31,-96,-23,-99,20v-2,6,-4,12,-4,18v55,-38,141,-7,141,64xm76,-81v0,23,20,38,44,38v25,0,43,-14,43,-38v0,-23,-20,-37,-44,-37v-24,-1,-43,13,-43,37","w":238,"k":{"9":4,"7":5,"3":4,"1":4,"\/":4}},"7":{"d":"30,0r113,-204r-119,0r0,-48r182,0r0,42r-113,210r-63,0","w":222,"k":{"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,"\/":50,",":36,".":36,"-":11}},"8":{"d":"211,-71v-1,49,-45,76,-98,75v-50,0,-96,-26,-97,-74v0,-28,14,-49,41,-61v-65,-37,-20,-134,56,-125v76,-9,123,87,57,125v24,13,40,27,41,60xm77,-181v-1,20,16,32,36,32v20,1,36,-12,36,-31v0,-18,-17,-30,-36,-30v-20,0,-35,12,-36,29xm70,-74v0,21,20,32,43,32v23,0,44,-11,44,-32v0,-21,-20,-31,-44,-31v-23,0,-43,10,-43,31","w":226,"k":{"9":2,"7":4}},"9":{"d":"219,-134v1,78,-36,138,-110,138v-31,0,-59,-10,-83,-30r29,-42v40,39,108,21,106,-35v-52,40,-141,8,-141,-65v0,-51,43,-89,96,-88v75,1,102,46,103,122xm75,-171v-1,24,20,39,44,39v24,0,44,-14,43,-38v0,-24,-18,-39,-44,-39v-24,0,-43,14,-43,38","w":238,"k":{"7":4,"5":2,"3":4,"2":4,"\/":9,",":4,".":4}},":":{"d":"24,-135r0,-58r58,0r0,58r-58,0xm24,0r0,-58r58,0r0,58r-58,0","w":106,"k":{"T":4,"\u0162":4,"\u0164":4,"V":7,"W":5,"\u0174":5,"Y":14,"\u00dd":14,"\u0176":14,"\u0178":14}},";":{"d":"24,-135r0,-58r58,0r0,58r-58,0xm16,58r-5,-22v25,-3,37,-15,35,-36r-22,0r0,-58r58,0v3,63,2,120,-66,116","w":106,"k":{"T":4,"\u0162":4,"\u0164":4,"V":7,"W":5,"\u0174":5,"Y":14,"\u00dd":14,"\u0176":14,"\u0178":14}},"<":{"d":"199,-26r-175,-76r0,-50r175,-76r0,51r-122,50r122,50r0,51","w":230},"=":{"d":"26,-149r0,-49r178,0r0,49r-178,0xm26,-55r0,-50r178,0r0,50r-178,0","w":230},">":{"d":"32,-26r0,-50r121,-50r-121,-50r0,-52r174,76r0,50","w":230},"?":{"d":"7,-216v45,-59,178,-54,176,36v0,39,-24,62,-71,72r-4,22r-37,0r-8,-58v35,-7,68,-12,64,-35v-6,-42,-65,-28,-87,-1xm59,0r0,-58r58,0r0,58r-58,0","w":195},"@":{"d":"34,-99v0,115,134,182,234,119r7,11v-109,72,-256,-7,-256,-130v0,-84,73,-157,158,-157v80,0,157,66,157,142v0,79,-79,118,-127,69v-42,44,-119,17,-119,-48v0,-68,85,-124,130,-66r4,-19r43,7r-18,108v0,15,12,23,26,23v31,0,47,-36,46,-74v-1,-68,-68,-128,-142,-128v-78,0,-143,65,-143,143xm176,-146v-46,-3,-64,85,-10,86v44,4,64,-86,10,-86","w":352},"A":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82","w":284},"B":{"d":"244,-70v0,91,-124,67,-214,70r0,-252v85,3,200,-20,200,66v0,24,-11,42,-33,54v28,11,47,26,47,62xm175,-177v0,-37,-55,-23,-91,-26r0,53v36,-1,91,8,91,-27xm189,-76v0,-39,-66,-26,-105,-28r0,55v39,-2,105,11,105,-27","w":259,"k":{"?":2,"&":-5,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"T":4,"\u0162":4,"\u0164":4,"V":7,"W":5,"\u0174":5,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"X":7}},"C":{"d":"252,-41v-27,27,-53,45,-104,45v-72,0,-129,-58,-129,-130v0,-115,154,-174,231,-91r-35,40v-50,-54,-138,-24,-138,51v0,42,31,80,73,79v32,0,47,-12,66,-29","w":265,"k":{"J":4,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"V":2,"W":2,"\u0174":2,"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"X":4,"x":4,"-":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"D":{"d":"262,-127v0,74,-58,127,-133,127r-99,0r0,-252r99,0v74,-2,133,53,133,125xm204,-125v1,-61,-48,-86,-118,-77r0,152v68,8,118,-15,118,-75","w":281,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":18,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"J":14,",":14,".":14,"Z":14,"\u0179":14,"\u017b":14,"\u017d":14,"T":14,"\u0162":14,"\u0164":14,"V":16,"W":14,"\u0174":14,"Y":23,"\u00dd":23,"\u0176":23,"\u0178":23,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":20,"x":4}},"E":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"F":{"d":"30,0r0,-252r192,0r0,50r-136,0r0,54r120,0r0,50r-120,0r0,98r-56,0","w":236,"k":{"?":-4,"\/":25,"&":5,"\u00c6":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u0100":29,"\u0102":29,"\u0104":29,"J":40,"\u00bb":5,",":36,".":36,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":5,"\u017a":5,"\u017c":5,"\u017e":5}},"G":{"d":"77,-127v0,68,76,103,129,66r0,-36r-56,0r0,-48r109,0r0,109v-83,80,-240,34,-240,-90v0,-112,149,-173,231,-96r-35,42v-20,-16,-34,-24,-66,-25v-40,0,-72,37,-72,78","w":282,"k":{"?":4,"a":-4,"\u00e0":-4,"\u00e1":-4,"\u00e2":-4,"\u00e3":-4,"\u00e4":-4,"\u00e5":-4,"\u00e6":-4,"\u0101":-4,"\u0103":-4,"\u0105":-4,"v":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"T":4,"\u0162":4,"\u0164":4,"V":9,"W":7,"\u0174":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"X":4}},"H":{"d":"30,0r0,-252r56,0r0,100r102,0r0,-100r55,0r0,252r-55,0r0,-101r-102,0r0,101r-56,0","w":273},"I":{"d":"33,0r0,-252r55,0r0,252r-55,0","w":120},"J":{"d":"177,-87v9,97,-125,118,-172,53r35,-39v26,34,81,38,80,-17r0,-162r57,0r0,165","w":203,"k":{"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5}},"K":{"d":"30,0r0,-252r56,0r0,110r102,-110r67,0r-103,107r108,145r-67,0r-78,-107r-29,30r0,77r-56,0","w":262,"k":{"\u00c6":7,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u0100":7,"\u0102":7,"\u0104":7,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":22,"w":18,"\u0175":18,"y":18,"\u00fd":18,"\u00ff":18,"\u0177":18,"T":4,"\u0162":4,"\u0164":4,"V":11,"W":11,"\u0174":11,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"-":18,"\u00ab":7,"C":20,"G":20,"O":20,"Q":20,"\u00c7":20,"\u00d2":20,"\u00d3":20,"\u00d4":20,"\u00d5":20,"\u00d6":20,"\u00d8":20,"\u0106":20,"\u010a":20,"\u010c":20,"\u011e":20,"\u0120":20,"\u0122":20,"\u014c":20,"\u014e":20,"\u0150":20,"\u0152":20,"f":7,"t":9,"\u0163":9,"\u0165":9,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5}},"L":{"d":"30,0r0,-252r56,0r0,202r125,0r0,50r-181,0","w":222,"k":{"*":29,"?":22,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":22,"w":18,"\u0175":18,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":41,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"-":14,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":7,"t":7,"\u0163":7,"\u0165":7,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u016a":7,"\u016c":7,"\u016e":7,"\u0170":7,"\u0172":7,"\u00ae":32}},"M":{"d":"30,0r0,-252r60,0r66,107r66,-107r60,0r0,252r-55,0r0,-165r-72,108r-70,-106r0,163r-55,0","w":312},"N":{"d":"30,0r0,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0","w":284},"O":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"P":{"d":"230,-165v0,73,-64,96,-144,89r0,76r-56,0r0,-252r103,0v57,-1,97,33,97,87xm174,-163v0,-42,-45,-41,-88,-39r0,77v42,2,88,2,88,-38","w":240,"k":{"\/":22,"\u00c6":25,"A":25,"\u00c0":25,"\u00c1":25,"\u00c2":25,"\u00c3":25,"\u00c4":25,"\u00c5":25,"\u0100":25,"\u0102":25,"\u0104":25,"J":36,",":36,".":36,"Z":5,"\u0179":5,"\u017b":5,"\u017d":5,"c":2,"e":2,"o":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f0":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u010b":2,"\u010d":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":-4,"w":-4,"\u0175":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0177":-4,"V":4,"W":2,"\u0174":2,"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"X":11,"f":-5,"t":-5,"\u0163":-5,"\u0165":-5}},"Q":{"d":"153,-256v102,0,172,114,112,202r26,22r-36,40r-27,-25v-88,57,-209,-7,-209,-109v0,-72,61,-130,134,-130xm77,-127v0,55,55,98,109,73r-41,-35r36,-39r41,37v23,-54,-14,-114,-69,-114v-44,0,-76,35,-76,78","w":306,"k":{"?":7,")":4,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":23,"\u00dd":23,"\u0176":23,"\u0178":23}},"R":{"d":"30,-252v97,0,210,-16,210,84v0,39,-18,65,-54,78r62,90r-65,0r-54,-81r-43,0r0,81r-56,0r0,-252xm184,-165v0,-46,-54,-36,-98,-37r0,72v43,-1,98,9,98,-35","w":260,"k":{"J":2,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"V":7,"W":5,"\u0174":5,"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9}},"S":{"d":"193,-123v46,50,1,127,-73,127v-41,0,-77,-14,-107,-41r33,-39v25,20,50,31,75,31v29,0,50,-27,26,-42v-41,-25,-124,-19,-124,-93v0,-88,128,-94,182,-44r-29,42v-24,-17,-45,-25,-65,-25v-28,0,-45,28,-22,41v21,11,88,26,104,43","w":230,"k":{"?":4,"\u00c6":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u0100":5,"\u0102":5,"\u0104":5,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"T":5,"\u0162":5,"\u0164":5,"V":11,"W":9,"\u0174":9,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":9,"x":5,"f":2,"t":2,"\u0163":2,"\u0165":2}},"T":{"d":"89,0r0,-201r-77,0r0,-51r209,0r0,51r-77,0r0,201r-55,0","w":233,"k":{"&":16,"\/":32,"j":4,"\u00c6":32,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u0100":32,"\u0102":32,"\u0104":32,"J":40,"\u00bb":25,",":36,".":36,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":34,"g":34,"q":34,"\u010f":34,"\u0111":34,"\u011f":34,"\u0121":34,"\u0123":34,"c":38,"e":38,"o":38,"\u00e7":38,"\u00e8":38,"\u00e9":38,"\u00ea":38,"\u00eb":38,"\u00f0":38,"\u00f2":38,"\u00f3":38,"\u00f4":38,"\u00f5":38,"\u00f6":38,"\u00f8":38,"\u0107":38,"\u010b":38,"\u010d":38,"\u0113":38,"\u0115":38,"\u0117":38,"\u0119":38,"\u011b":38,"\u014d":38,"\u014f":38,"\u0151":38,"\u0153":38,"a":38,"\u00e0":38,"\u00e1":38,"\u00e2":38,"\u00e3":38,"\u00e4":38,"\u00e5":38,"\u00e6":38,"\u0101":38,"\u0103":38,"\u0105":38,"s":32,"\u015b":32,"\u015f":32,"\u0161":32,"v":18,"w":14,"\u0175":14,"y":18,"\u00fd":18,"\u00ff":18,"\u0177":18,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"S":5,"\u015a":5,"\u015e":5,"\u0160":5,"x":18,":":4,";":4,"-":32,"\u00ab":32,"C":11,"G":11,"O":11,"Q":11,"\u00c7":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"\u00d6":11,"\u00d8":11,"\u0106":11,"\u010a":11,"\u010c":11,"\u011e":11,"\u0120":11,"\u0122":11,"\u014c":11,"\u014e":11,"\u0150":11,"\u0152":11,"b":2,"h":2,"k":2,"l":2,"\u0137":2,"\u013a":2,"\u013c":2,"\u013e":2,"\u0140":2,"m":22,"n":22,"p":22,"r":22,"\u00f1":22,"\u0144":22,"\u0146":22,"\u0148":22,"\u0155":22,"\u0157":22,"\u0159":22,"f":11,"i":4,"\u00ec":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u012b":4,"\u012d":4,"\u012f":4,"t":7,"\u0163":7,"\u0165":7,"u":18,"\u00f9":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u00d0":4,"\u0110":4}},"U":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"V":{"d":"111,2r-102,-254r61,0r66,177r66,-177r59,0r-102,254r-48,0","w":270,"k":{"j":7,"\/":43,"&":14,"\u00c6":36,"A":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u0100":36,"\u0102":36,"\u0104":36,"J":43,"\u00bb":14,",":43,".":43,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":23,"g":23,"q":23,"\u010f":23,"\u0111":23,"\u011f":23,"\u0121":23,"\u0123":23,"c":25,"e":25,"o":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f0":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u010b":25,"\u010d":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"a":25,"\u00e0":25,"\u00e1":25,"\u00e2":25,"\u00e3":25,"\u00e4":25,"\u00e5":25,"\u00e6":25,"\u0101":25,"\u0103":25,"\u0105":25,"s":22,"\u015b":22,"\u015f":22,"\u0161":22,"v":14,"w":13,"\u0175":13,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"z":20,"\u017a":20,"\u017c":20,"\u017e":20,"V":4,"W":4,"\u0174":4,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":9,"\u015a":9,"\u015e":9,"\u0160":9,"X":7,"x":18,":":7,";":7,"-":14,"\u00ab":22,"C":16,"G":16,"O":16,"Q":16,"\u00c7":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u0106":16,"\u010a":16,"\u010c":16,"\u011e":16,"\u0120":16,"\u0122":16,"\u014c":16,"\u014e":16,"\u0150":16,"\u0152":16,"b":4,"h":4,"k":4,"l":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4,"m":14,"n":14,"p":14,"r":14,"\u00f1":14,"\u0144":14,"\u0146":14,"\u0148":14,"\u0155":14,"\u0157":14,"\u0159":14,"f":9,"i":7,"\u00ec":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u012b":7,"\u012d":7,"\u012f":7,"t":7,"\u0163":7,"\u0165":7,"u":14,"\u00f9":14,"\u00fa":14,"\u00fb":14,"\u00fc":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14}},"W":{"d":"97,2r-86,-254r59,0r52,171r57,-172r47,0r57,172r52,-171r58,0r-86,254r-48,0r-57,-165r-57,165r-48,0","w":403,"k":{"&":11,"\/":36,"j":5,"\u00c6":32,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u0100":32,"\u0102":32,"\u0104":32,"J":38,"\u00bb":13,",":36,".":36,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":22,"g":22,"q":22,"\u010f":22,"\u0111":22,"\u011f":22,"\u0121":22,"\u0123":22,"c":23,"e":23,"o":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,"\u0107":23,"\u010b":23,"\u010d":23,"\u0113":23,"\u0115":23,"\u0117":23,"\u0119":23,"\u011b":23,"\u014d":23,"\u014f":23,"\u0151":23,"\u0153":23,"a":25,"\u00e0":25,"\u00e1":25,"\u00e2":25,"\u00e3":25,"\u00e4":25,"\u00e5":25,"\u00e6":25,"\u0101":25,"\u0103":25,"\u0105":25,"s":22,"\u015b":22,"\u015f":22,"\u0161":22,"v":13,"w":13,"\u0175":13,"y":13,"\u00fd":13,"\u00ff":13,"\u0177":13,"z":20,"\u017a":20,"\u017c":20,"\u017e":20,"V":4,"W":4,"\u0174":4,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":7,"\u015a":7,"\u015e":7,"\u0160":7,"X":5,"x":14,":":5,";":5,"-":13,"\u00ab":18,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"b":4,"h":4,"k":4,"l":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4,"m":13,"n":13,"p":13,"r":13,"\u00f1":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u0155":13,"\u0157":13,"\u0159":13,"f":11,"i":5,"\u00ec":5,"\u00ed":5,"\u00ee":5,"\u00ef":5,"\u012b":5,"\u012d":5,"\u012f":5,"t":9,"\u0163":9,"\u0165":9,"u":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13}},"X":{"d":"186,-252r63,0r-84,123r87,129r-64,0r-57,-86r-57,86r-63,0r88,-128r-84,-124r65,0r52,82","w":263,"k":{"?":5,"&":4,"j":4,"\u00c6":7,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u0100":7,"\u0102":7,"\u0104":7,"J":4,"\u00bb":7,"d":14,"g":14,"q":14,"\u010f":14,"\u0111":14,"\u011f":14,"\u0121":14,"\u0123":14,"c":16,"e":16,"o":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,"\u0107":16,"\u010b":16,"\u010d":16,"\u0113":16,"\u0115":16,"\u0117":16,"\u0119":16,"\u011b":16,"\u014d":16,"\u014f":16,"\u0151":16,"\u0153":16,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":18,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"V":7,"W":5,"\u0174":5,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":11,"\u015a":11,"\u015e":11,"\u0160":11,"-":18,"\u00ab":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u00d6":18,"\u00d8":18,"\u0106":18,"\u010a":18,"\u010c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u0152":18,"b":4,"h":4,"k":4,"l":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4,"f":7,"i":4,"\u00ec":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u012b":4,"\u012d":4,"\u012f":4,"t":7,"\u0163":7,"\u0165":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"U":4,"\u00d9":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u016a":4,"\u016c":4,"\u016e":4,"\u0170":4,"\u0172":4,"\u00d0":5,"\u0110":5}},"Y":{"d":"101,0r0,-99r-97,-153r65,0r60,101r61,-101r63,0r-96,152r0,100r-56,0","w":257,"k":{"&":20,"\/":40,"j":7,"\u00c6":40,"A":40,"\u00c0":40,"\u00c1":40,"\u00c2":40,"\u00c3":40,"\u00c4":40,"\u00c5":40,"\u0100":40,"\u0102":40,"\u0104":40,"J":47,"\u00bb":27,",":47,".":47,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":38,"g":38,"q":38,"\u010f":38,"\u0111":38,"\u011f":38,"\u0121":38,"\u0123":38,"c":40,"e":40,"o":40,"\u00e7":40,"\u00e8":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00f0":40,"\u00f2":40,"\u00f3":40,"\u00f4":40,"\u00f5":40,"\u00f6":40,"\u00f8":40,"\u0107":40,"\u010b":40,"\u010d":40,"\u0113":40,"\u0115":40,"\u0117":40,"\u0119":40,"\u011b":40,"\u014d":40,"\u014f":40,"\u0151":40,"\u0153":40,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"s":36,"\u015b":36,"\u015f":36,"\u0161":36,"v":22,"w":20,"\u0175":20,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"V":7,"W":7,"\u0174":7,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":13,"\u015a":13,"\u015e":13,"\u0160":13,"X":11,"x":25,":":14,";":14,"-":29,"\u00ab":36,"C":22,"G":22,"O":22,"Q":22,"\u00c7":22,"\u00d2":22,"\u00d3":22,"\u00d4":22,"\u00d5":22,"\u00d6":22,"\u00d8":22,"\u0106":22,"\u010a":22,"\u010c":22,"\u011e":22,"\u0120":22,"\u0122":22,"\u014c":22,"\u014e":22,"\u0150":22,"\u0152":22,"m":27,"n":27,"p":27,"r":27,"\u00f1":27,"\u0144":27,"\u0146":27,"\u0148":27,"\u0155":27,"\u0157":27,"\u0159":27,"f":14,"i":7,"\u00ec":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u012b":7,"\u012d":7,"\u012f":7,"t":11,"\u0163":11,"\u0165":11,"u":27,"\u00f9":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u016b":27,"\u016d":27,"\u016f":27,"\u0171":27,"\u0173":27,"\u00d0":5,"\u0110":5}},"Z":{"d":"23,0r0,-42r138,-161r-134,0r0,-49r206,0r0,42r-139,161r139,0r0,49r-210,0","w":254,"k":{"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"-":11,"\u00ab":7,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u010a":13,"\u010c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"f":4}},"[":{"d":"30,47r0,-299r116,0r0,43r-64,0r0,213r64,0r0,43r-116,0","w":167,"k":{"j":-11,"J":4,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":7,"e":7,"o":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f0":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u010b":7,"\u010d":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"s":5,"\u015b":5,"\u015f":5,"\u0161":5,"v":7,"w":7,"\u0175":7,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"x":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"\\":{"d":"154,46r-159,-333r46,0r160,333r-47,0","w":190,"k":{"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14}},"]":{"d":"21,47r0,-43r64,0r0,-213r-64,0r0,-43r117,0r0,299r-117,0","w":167},"^":{"d":"18,-177r53,-75r38,0r53,75r-40,0r-32,-43r-33,43r-39,0","w":180},"_":{"d":"-1,58r0,-42r218,0r0,42r-218,0","w":216},"`":{"d":"86,-214r-46,-43r47,-21r40,64r-41,0","w":180},"a":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"b":{"d":"227,-97v8,85,-96,136,-148,72r0,25r-55,0r0,-263r55,0r0,98v47,-68,157,-17,148,68xm78,-97v0,30,20,54,47,54v27,0,47,-23,47,-54v0,-30,-20,-53,-47,-53v-27,0,-47,24,-47,53","w":243,"k":{"*":5,"?":13,"}":5,"]":7,")":11,"\u00bb":2,",":4,".":4,"v":9,"w":7,"\u0175":7,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"c":{"d":"194,-31v-20,22,-39,35,-78,35v-56,1,-101,-44,-101,-100v0,-55,45,-103,101,-101v32,0,58,11,77,33r-33,36v-30,-39,-91,-19,-91,32v0,51,61,71,93,33","w":205,"k":{"?":5,")":5,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"x":4,"\u00ab":4}},"d":{"d":"16,-96v-8,-85,96,-136,148,-72r0,-95r55,0r0,263r-55,0r0,-28v-47,68,-157,17,-148,-68xm71,-97v0,31,20,54,47,54v27,0,47,-24,47,-54v0,-29,-20,-53,-47,-53v-27,0,-47,23,-47,53","w":243},"e":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"f":{"d":"34,-191v-10,-64,43,-85,98,-69r0,45v-22,-8,-49,-6,-44,24r44,0r0,45r-43,0r0,146r-55,0r0,-146r-23,0r0,-45r23,0","w":137,"k":{"*":-11,"?":-13,"}":-11,"]":-7,")":-11,"\/":16,",":16,".":16,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"a":5,"\u00e0":5,"\u00e1":5,"\u00e2":5,"\u00e3":5,"\u00e4":5,"\u00e5":5,"\u00e6":5,"\u0101":5,"\u0103":5,"\u0105":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":5,"\u00ae":-14}},"g":{"d":"219,-44v-1,72,-34,101,-108,102v-31,0,-60,-7,-85,-20r18,-41v45,29,131,28,121,-44v-42,60,-149,25,-149,-60v0,-81,99,-121,148,-61r0,-25r55,0r0,149xm71,-107v0,27,21,46,46,46v26,0,48,-19,48,-46v0,-26,-22,-44,-48,-44v-25,0,-46,18,-46,44","w":243},"h":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-263r55,0r0,97v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"i":{"d":"26,-214r0,-49r57,0r0,49r-57,0xm27,0r0,-193r55,0r0,193r-55,0","w":108},"j":{"d":"26,-214r0,-49r57,0r0,49r-57,0xm82,-3v2,50,-36,69,-86,60r0,-43v19,4,32,-2,31,-22r0,-185r55,0r0,190","w":108,"k":{"\/":-4}},"k":{"d":"24,0r0,-263r55,0r0,140r64,-70r66,0r-74,76r76,117r-63,0r-49,-79r-20,20r0,59r-55,0","w":213,"k":{"\u00bb":4,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":7,"w":7,"\u0175":7,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"-":7,"\u00ab":7,"t":4,"\u0163":4,"\u0165":4,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4}},"l":{"d":"27,0r0,-263r55,0r0,263r-55,0","w":108},"m":{"d":"112,-147v-55,0,-26,95,-33,147r-55,0r0,-193r55,0r0,27v27,-41,90,-41,111,0v38,-51,129,-38,129,40r0,126r-55,0v-6,-51,21,-147,-32,-147v-55,0,-26,95,-33,147r-55,0v-6,-51,21,-147,-32,-147","w":342,"k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"n":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"o":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"p":{"d":"227,-97v8,85,-96,136,-148,72r0,83r-55,0r0,-251r55,0r0,28v47,-68,157,-17,148,68xm78,-97v0,30,20,54,47,54v27,0,47,-23,47,-54v0,-30,-20,-53,-47,-53v-27,0,-47,24,-47,53","w":243,"k":{"*":5,"?":13,"}":5,"]":7,")":11,"\u00bb":2,",":4,".":4,"v":9,"w":7,"\u0175":7,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"q":{"d":"16,-96v-8,-85,96,-136,148,-72r0,-25r55,0r0,251r-55,0r0,-86v-47,68,-157,17,-148,-68xm71,-97v0,31,20,54,47,54v27,0,47,-24,47,-54v0,-29,-20,-53,-47,-53v-27,0,-47,23,-47,53","w":243,"k":{"\/":-7}},"r":{"d":"141,-139v-70,-5,-63,71,-62,139r-55,0r0,-193r55,0r0,39v12,-30,33,-44,62,-43r0,58","w":150,"k":{"*":-4,"\/":27,",":32,".":32,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":4}},"s":{"d":"166,-59v0,80,-111,75,-157,33r24,-36v21,15,42,23,61,23v29,0,27,-23,8,-29v-36,-11,-83,-17,-83,-67v0,-68,97,-76,143,-39r-21,38v-20,-12,-38,-18,-52,-18v-26,0,-28,23,0,31v30,9,77,20,77,64","w":180,"k":{"?":13,"}":4,"]":5,")":7,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"x":9,"\u00ab":4,"t":4,"\u0163":4,"\u0165":4}},"t":{"d":"133,-8v-40,22,-100,12,-100,-47r0,-91r-23,0r0,-47r23,0r0,-49r55,0r0,49r46,0r0,47r-46,0r0,82v-2,24,30,22,45,12r0,44","w":149,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":4}},"u":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147"},"v":{"d":"83,1r-76,-194r58,0r43,129r44,-129r57,0r-76,194r-50,0","w":216,"k":{"?":4,"}":4,"]":7,"\/":25,"\u00bb":5,",":31,".":31,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"s":7,"\u015b":7,"\u015f":7,"\u0161":7,"v":5,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":5,"\u00ab":11}},"w":{"d":"68,1r-59,-194r55,0r31,117r36,-118r48,0r36,118r32,-117r54,0r-60,194r-49,0r-37,-118r-38,118r-49,0","w":309,"k":{"?":4,"}":4,"]":7,"\/":22,"\u00bb":4,",":25,".":25,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"s":5,"\u015b":5,"\u015f":5,"\u0161":5,"v":5,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":4,"\u00ab":7}},"x":{"d":"69,-193r36,57r37,-57r57,0r-65,94r68,99r-59,0r-39,-60r-38,60r-58,0r68,-98r-65,-95r58,0","w":210,"k":{"?":5,"}":4,"]":4,"\u00bb":5,"d":11,"g":11,"q":11,"\u010f":11,"\u0111":11,"\u011f":11,"\u0121":11,"\u0123":11,"c":13,"e":13,"o":13,"\u00e7":13,"\u00e8":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00f0":13,"\u00f2":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"\u00f6":13,"\u00f8":13,"\u0107":13,"\u010b":13,"\u010d":13,"\u0113":13,"\u0115":13,"\u0117":13,"\u0119":13,"\u011b":13,"\u014d":13,"\u014f":13,"\u0151":13,"\u0153":13,"a":5,"\u00e0":5,"\u00e1":5,"\u00e2":5,"\u00e3":5,"\u00e4":5,"\u00e5":5,"\u00e6":5,"\u0101":5,"\u0103":5,"\u0105":5,"s":7,"\u015b":7,"\u015f":7,"\u0161":7,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"-":11,"\u00ab":16}},"y":{"d":"109,-62r42,-131r57,0r-74,198v-11,53,-65,68,-112,40r18,-39v16,9,35,11,43,-5r-76,-194r58,0","w":216,"k":{"?":4,"}":4,"]":7,"\/":25,"\u00bb":5,",":31,".":31,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"s":7,"\u015b":7,"\u015f":7,"\u0161":7,"v":5,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":5,"\u00ab":11}},"z":{"d":"18,0r0,-39r100,-110r-97,0r0,-44r165,0r0,39r-100,110r100,0r0,44r-168,0","w":202,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":5}},"{":{"d":"117,-55v0,42,3,63,42,69r-9,37v-62,-10,-88,-30,-83,-96v3,-33,-17,-38,-49,-37r0,-42v44,4,48,-17,48,-62v0,-50,31,-60,84,-71r9,36v-38,8,-42,25,-42,69v0,24,-13,41,-38,49v25,8,38,24,38,48","w":176,"k":{"j":-13,"J":4,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"x":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"|":{"d":"41,46r0,-333r44,0r0,333r-44,0","w":126},"}":{"d":"159,-82v-43,-5,-55,18,-48,61v-3,51,-31,62,-84,72r-10,-37v40,-8,43,-23,43,-69v0,-24,12,-40,37,-48v-34,-10,-36,-36,-36,-75v0,-31,-15,-33,-44,-43r10,-36v62,11,88,28,83,96v-2,32,16,38,49,37r0,42","w":176},"~":{"d":"166,-134v-9,28,-16,47,-45,50v-12,2,-42,-14,-54,-14v-13,0,-15,7,-20,17r-29,-9v9,-28,15,-47,44,-49v12,-2,42,13,54,14v13,0,16,-8,21,-18","w":183},"\u00a0":{"w":108},"\u00a1":{"d":"29,-194r0,-58r58,0r0,58r-58,0xm26,0r17,-166r30,0r17,166r-64,0","w":116},"\u00a2":{"d":"17,-127v-1,-57,45,-103,103,-101r5,-26r37,0r-6,32v15,5,28,14,39,26r-32,35v-6,-6,-12,-10,-18,-13r-19,99v13,-2,26,-8,38,-20r31,31v-21,24,-47,36,-77,37r-6,29r-37,0r7,-35v-35,-12,-65,-49,-65,-94xm112,-181v-44,1,-57,80,-19,100","w":209},"\u00a3":{"d":"173,-180v-12,-30,-70,-35,-68,10r0,28r82,0r0,46r-82,0r0,48r110,0r0,48r-193,0r0,-36r27,-9r0,-51r-27,0r0,-46r27,0v-6,-71,21,-114,85,-114v34,0,61,14,81,42","w":231,"k":{"4":5}},"\u00a5":{"d":"31,-94r0,-39r51,0r-77,-119r64,0r55,93r56,-93r62,0r-77,119r51,0r0,39r-66,0r0,22r66,0r0,39r-66,0r0,33r-53,0r0,-33r-66,0r0,-39r66,0r0,-22r-66,0","w":246,"k":{"4":7}},"\u00a7":{"d":"52,-166v-38,-38,1,-90,59,-90v35,0,62,12,83,35r-29,29v-17,-16,-35,-24,-53,-24v-24,0,-32,16,-16,24v36,19,114,14,112,64v0,20,-11,34,-32,42v38,37,-3,90,-59,90v-35,0,-63,-12,-84,-35r30,-29v17,16,35,24,53,24v24,0,31,-17,15,-25v-37,-18,-112,-15,-111,-63v0,-20,11,-34,32,-42xm68,-132v1,22,56,23,72,28v11,0,21,-6,20,-17v-2,-20,-56,-24,-73,-27v-11,-2,-20,6,-19,16","w":227,"k":{"7":5}},"\u00a8":{"d":"101,-214r0,-49r53,0r0,49r-53,0xm26,-214r0,-49r53,0r0,49r-53,0","w":180},"\u00a9":{"d":"280,-127v0,71,-60,131,-131,131v-70,0,-130,-59,-130,-130v0,-70,60,-130,131,-130v70,0,130,59,130,129xm34,-126v0,64,51,116,115,116v64,0,116,-54,116,-117v0,-63,-52,-115,-115,-115v-64,0,-116,54,-116,116xm112,-128v-1,42,49,57,76,27r20,20v-40,50,-128,19,-128,-47v0,-64,84,-94,127,-50r-20,23v-27,-30,-74,-13,-75,27","w":298},"\u00aa":{"d":"28,-244v36,-18,88,-12,88,37r0,61r-29,0r0,-11v-19,23,-68,16,-68,-20v0,-33,40,-40,68,-29v2,-27,-32,-25,-52,-16xm18,-100r0,-23r100,0r0,23r-100,0xm48,-178v0,10,7,13,16,13v15,-1,26,-7,24,-24v-15,-7,-40,-6,-40,11","w":140},"\u00ab":{"d":"177,-15v-20,-29,-46,-52,-64,-83r64,-80r38,19r-43,62r43,62xm79,-15v-20,-29,-46,-52,-64,-83r64,-80r38,19r-43,62r43,62","w":232,"k":{"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"T":25,"\u0162":25,"\u0164":25,"V":14,"W":13,"\u0174":13,"Y":27,"\u00dd":27,"\u0176":27,"\u0178":27,"X":7,"x":5}},"\u00ae":{"d":"129,-193v0,34,-29,63,-63,63v-35,0,-62,-29,-62,-63v0,-34,29,-63,62,-63v34,0,63,29,63,63xm11,-193v0,30,25,57,55,57v31,0,56,-27,56,-57v0,-30,-26,-56,-56,-56v-30,0,-55,27,-55,56xm39,-161r0,-66v27,0,61,-4,59,23v0,10,-4,16,-13,20r15,23r-21,0v-7,-6,-6,-20,-21,-19r0,19r-19,0xm58,-195v18,5,32,-14,11,-16r-11,0r0,16","w":132},"\u00af":{"d":"25,-216r0,-38r130,0r0,38r-130,0","w":180},"\u00b0":{"d":"149,-194v1,33,-30,62,-63,62v-33,0,-63,-30,-62,-62v0,-31,30,-60,62,-60v33,0,63,29,63,60xm53,-194v0,18,15,35,33,35v19,0,34,-17,34,-35v0,-17,-16,-33,-34,-33v-18,0,-33,16,-33,33","w":172},"\u00b1":{"d":"204,-136r-65,-1r1,64r-49,0r0,-64r-65,1r0,-48r65,0r0,-63r49,0r-1,63r65,0r0,48xm204,0r-178,0r0,-45r178,0r0,45","w":230},"\u00b2":{"d":"73,-295v38,0,62,34,44,67v-10,17,-38,35,-55,49r62,0r0,28r-105,0r0,-27v23,-23,62,-37,72,-71v-5,-26,-37,-20,-50,2r-22,-18v14,-18,25,-30,54,-30","w":144,"k":{"\u00b2":9,"\u00b3":9,"\u00b9":9}},"\u00b3":{"d":"124,-194v-1,53,-77,58,-110,25r19,-24v13,11,25,17,38,17v11,0,20,-6,21,-17v1,-18,-22,-19,-43,-18r-5,-19r38,-34r-58,0r0,-28r97,0r0,25r-40,34v24,1,43,14,43,39","w":144,"k":{"\u00b2":9,"\u00b3":9,"\u00b9":9}},"\u00b4":{"d":"53,-214r40,-64r47,21r-46,43r-41,0","w":180},"\u00b6":{"d":"13,-167v-1,-80,81,-92,169,-85r0,252r-55,0r0,-83v-64,3,-113,-25,-114,-84","w":212},"\u00b7":{"d":"22,-83r0,-57r59,0r0,57r-59,0","w":102},"\u00b8":{"d":"88,62r-46,-19r35,-50r39,0","w":180},"\u00b9":{"d":"83,-151r-31,0r0,-109r-27,10r-9,-26v21,-7,36,-20,67,-17r0,142","w":117,"k":{"\u00b2":9,"\u00b3":9,"\u00b9":9}},"\u00ba":{"d":"126,-199v1,31,-25,56,-56,56v-32,0,-55,-25,-55,-56v0,-30,25,-55,56,-55v31,0,54,26,55,55xm18,-100r0,-23r104,0r0,23r-104,0xm44,-199v0,16,12,30,27,30v15,0,25,-14,25,-30v0,-15,-11,-29,-26,-29v-15,0,-26,14,-26,29","w":140},"\u00bb":{"d":"153,-15r-38,-19r43,-62r-43,-62r38,-20v20,29,46,52,64,83xm55,-15r-38,-19r43,-62r-43,-62r38,-20v21,29,47,52,65,83","w":232,"k":{"\u00c6":7,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u0100":7,"\u0102":7,"\u0104":7,"Z":5,"\u0179":5,"\u017b":5,"\u017d":5,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":11,"w":7,"\u0175":7,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"T":32,"\u0162":32,"\u0164":32,"V":22,"W":18,"\u0174":18,"Y":36,"\u00dd":36,"\u0176":36,"\u0178":36,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":18,"x":16,"f":4,"t":4,"\u0163":4,"\u0165":4}},"\u00bc":{"d":"266,-29r0,30r-29,0r0,-30r-67,0r-3,-30r67,-83r32,0r0,88r19,0r0,25r-19,0xm44,0r171,-252r29,0r-171,252r-29,0xm83,-112r-31,0r0,-109r-27,10r-9,-26v21,-7,36,-20,67,-17r0,142xm238,-53r0,-55r-44,55r44,0","w":297},"\u00bd":{"d":"83,-112r-31,0r0,-109r-27,10r-9,-26v21,-7,36,-20,67,-17r0,142xm230,-144v38,0,62,36,43,68v-10,17,-38,35,-55,49r63,0r0,27r-106,0r0,-27v23,-23,62,-37,72,-71v-4,-26,-36,-20,-49,2r-23,-18v15,-18,26,-30,55,-30xm40,0r171,-252r30,0r-92,132r-79,120r-30,0","w":297},"\u00be":{"d":"293,-29r0,30r-29,0r0,-30r-67,0r-3,-30r67,-83r32,0r0,88r19,0r0,25r-19,0xm124,-155v0,54,-77,59,-110,25r19,-23v13,11,25,17,38,17v11,0,21,-7,21,-18v0,-18,-23,-18,-43,-17r-5,-20r38,-33r-58,0r0,-28r97,0r0,24r-40,34v23,2,43,15,43,39xm69,0r171,-252r30,0r-92,132r-79,120r-30,0xm265,-53r0,-55r-44,55r44,0","w":324},"\u00bf":{"d":"78,-194r0,-58r59,0r0,58r-59,0xm68,-73v7,41,66,28,88,1r33,36v-45,59,-178,54,-176,-36v0,-39,24,-62,71,-72r4,-22r37,0r8,58v-35,7,-69,12,-65,35","w":195,"k":{"a":-4,"\u00e0":-4,"\u00e1":-4,"\u00e2":-4,"\u00e3":-4,"\u00e4":-4,"\u00e5":-4,"\u00e6":-4,"\u0101":-4,"\u0103":-4,"\u0105":-4,"v":16,"w":13,"\u0175":13,"y":13,"\u00fd":13,"\u00ff":13,"\u0177":13,"T":22,"\u0162":22,"\u0164":22,"V":22,"W":18,"\u0174":18,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"X":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"f":4,"t":5,"\u0163":5,"\u0165":5,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5}},"\u00c0":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm165,-275r-42,0r-49,-36r47,-21","w":284},"\u00c1":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm120,-275r43,-57r48,21r-49,36r-42,0","w":284},"\u00c2":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm70,-274r46,-53r52,0r46,53r-44,0r-28,-20r-29,20r-43,0","w":284},"\u00c3":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm220,-325v-9,28,-16,47,-45,50v-11,2,-44,-15,-57,-14v-13,0,-15,7,-20,17r-30,-9v9,-27,16,-46,45,-49v12,-1,45,14,57,14v12,0,15,-8,20,-18","w":284},"\u00c4":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm155,-275r0,-46r53,0r0,46r-53,0xm77,-275r0,-46r52,0r0,46r-52,0","w":284},"\u00c5":{"d":"142,-307v37,0,61,43,32,68r102,239r-58,0r-23,-57r-107,0r-23,57r-56,0r101,-239v-27,-24,-4,-68,32,-68xm108,-105r67,0r-34,-82xm120,-267v0,12,9,20,22,20v13,0,23,-8,23,-20v0,-12,-9,-20,-23,-20v-14,0,-22,8,-22,20","w":284},"\u00c6":{"d":"3,0r136,-252r216,0r0,49r-126,0r0,51r110,0r0,50r-110,0r0,53r128,0r0,49r-183,0r0,-57r-84,0r-30,57r-57,0xm116,-105r58,0r0,-99r-6,0","w":376,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u00c7":{"d":"150,-47v32,0,47,-12,66,-29r36,35v-24,26,-50,42,-94,45r-24,58r-45,-19r28,-42v-55,-11,-98,-62,-98,-127v0,-115,154,-174,231,-91r-35,40v-50,-54,-138,-24,-138,51v0,42,31,80,73,79","w":265,"k":{"J":4,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"V":2,"W":2,"\u0174":2,"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"X":4,"x":4,"-":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"\u00c8":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm148,-272r-41,0r-49,-36r47,-20","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u00c9":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm104,-272r43,-56r47,20r-49,36r-41,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u00ca":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm54,-272r46,-53r52,0r46,53r-44,0r-28,-20r-29,20r-43,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u00cb":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm139,-272r0,-46r53,0r0,46r-53,0xm60,-272r0,-46r53,0r0,46r-53,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u00cc":{"d":"33,0r0,-252r55,0r0,252r-55,0xm83,-272r-42,0r-49,-36r47,-20","w":120},"\u00cd":{"d":"33,0r0,-252r55,0r0,252r-55,0xm38,-272r44,-56r47,20r-49,36r-42,0","w":120},"\u00ce":{"d":"33,0r0,-252r55,0r0,252r-55,0xm-12,-272r47,-53r51,0r46,53r-43,0r-29,-20r-28,20r-44,0","w":120},"\u00cf":{"d":"33,0r0,-252r55,0r0,252r-55,0xm73,-272r0,-46r53,0r0,46r-53,0xm-5,-272r0,-46r53,0r0,46r-53,0","w":120},"\u00d0":{"d":"273,-127v0,74,-59,127,-134,127r-98,0r0,-102r-27,0r0,-49r27,0r0,-101r98,0v74,-2,134,52,134,125xm215,-125v1,-61,-49,-85,-119,-77r0,51r54,0r0,49r-54,0r0,52v68,7,119,-14,119,-75","w":292,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":18,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"J":14,",":14,".":14,"Z":14,"\u0179":14,"\u017b":14,"\u017d":14,"T":14,"\u0162":14,"\u0164":14,"V":16,"W":14,"\u0174":14,"Y":23,"\u00dd":23,"\u0176":23,"\u0178":23,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":20,"x":4}},"\u00d1":{"d":"30,0r0,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0xm220,-321v-9,27,-16,46,-45,49v-12,1,-45,-13,-57,-14v-13,0,-15,8,-20,18r-30,-9v9,-28,16,-46,45,-50v12,-2,45,13,57,14v13,0,15,-7,20,-17","w":284},"\u00d2":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm175,-275r-41,0r-49,-36r47,-21","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u00d3":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm131,-275r43,-57r47,21r-49,36r-41,0","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u00d4":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm81,-275r46,-53r52,0r46,53r-44,0r-28,-21r-29,21r-43,0","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u00d5":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm230,-325v-9,28,-16,47,-45,50v-11,1,-43,-14,-56,-14v-13,0,-16,7,-21,17r-29,-9v9,-28,15,-46,45,-49v12,-1,44,14,56,14v12,0,16,-8,21,-18","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u00d6":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm166,-275r0,-46r53,0r0,46r-53,0xm87,-275r0,-46r53,0r0,46r-53,0","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u00d7":{"d":"171,-37r-56,-57r-56,57r-33,-34r57,-55r-57,-56r34,-34r56,57r55,-57r34,33r-57,56r57,56","w":230},"\u00d8":{"d":"51,-39v-76,-81,-8,-217,102,-217v25,0,49,6,70,18r14,-16r53,0r-35,41v76,81,8,217,-102,217v-26,0,-49,-6,-70,-18r-14,16r-53,0xm118,-54v71,35,143,-47,99,-117xm188,-198v-71,-36,-143,48,-99,117","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u00d9":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm158,-272r-41,0r-49,-36r47,-20","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u00da":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm114,-272r43,-56r47,20r-48,36r-42,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u00db":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm64,-272r46,-53r52,0r46,53r-44,0r-28,-20r-29,20r-43,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u00dc":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm149,-272r0,-46r53,0r0,46r-53,0xm71,-272r0,-46r52,0r0,46r-52,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u00dd":{"d":"101,0r0,-99r-97,-153r65,0r60,101r61,-101r63,0r-96,152r0,100r-56,0xm107,-272r43,-56r47,20r-49,36r-41,0","w":257,"k":{"&":20,"\/":40,"j":7,"\u00c6":40,"A":40,"\u00c0":40,"\u00c1":40,"\u00c2":40,"\u00c3":40,"\u00c4":40,"\u00c5":40,"\u0100":40,"\u0102":40,"\u0104":40,"J":47,"\u00bb":27,",":47,".":47,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":38,"g":38,"q":38,"\u010f":38,"\u0111":38,"\u011f":38,"\u0121":38,"\u0123":38,"c":40,"e":40,"o":40,"\u00e7":40,"\u00e8":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00f0":40,"\u00f2":40,"\u00f3":40,"\u00f4":40,"\u00f5":40,"\u00f6":40,"\u00f8":40,"\u0107":40,"\u010b":40,"\u010d":40,"\u0113":40,"\u0115":40,"\u0117":40,"\u0119":40,"\u011b":40,"\u014d":40,"\u014f":40,"\u0151":40,"\u0153":40,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"s":36,"\u015b":36,"\u015f":36,"\u0161":36,"v":22,"w":20,"\u0175":20,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"V":7,"W":7,"\u0174":7,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":13,"\u015a":13,"\u015e":13,"\u0160":13,"X":11,"x":25,":":14,";":14,"-":29,"\u00ab":36,"C":22,"G":22,"O":22,"Q":22,"\u00c7":22,"\u00d2":22,"\u00d3":22,"\u00d4":22,"\u00d5":22,"\u00d6":22,"\u00d8":22,"\u0106":22,"\u010a":22,"\u010c":22,"\u011e":22,"\u0120":22,"\u0122":22,"\u014c":22,"\u014e":22,"\u0150":22,"\u0152":22,"m":27,"n":27,"p":27,"r":27,"\u00f1":27,"\u0144":27,"\u0146":27,"\u0148":27,"\u0155":27,"\u0157":27,"\u0159":27,"f":14,"i":7,"\u00ec":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u012b":7,"\u012d":7,"\u012f":7,"t":11,"\u0163":11,"\u0165":11,"u":27,"\u00f9":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u016b":27,"\u016d":27,"\u016f":27,"\u0171":27,"\u0173":27,"\u00d0":5,"\u0110":5}},"\u00de":{"d":"230,-128v0,73,-64,96,-144,89r0,39r-56,0r0,-252r56,0r0,37v81,-7,144,15,144,87xm174,-126v0,-42,-45,-41,-88,-39r0,77v42,2,88,2,88,-38","w":242},"\u00df":{"d":"113,-265v80,0,106,98,48,129v54,19,63,87,20,119v-18,13,-42,19,-73,18r0,-41v31,-1,46,-12,46,-34v-1,-22,-24,-32,-46,-35r0,-36v21,-13,31,-29,31,-45v1,-18,-10,-29,-28,-29v-19,0,-33,16,-32,36r0,183r-55,0r0,-181v-1,-52,36,-84,89,-84","w":223,"k":{"v":4,"w":2,"\u0175":2,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"x":4}},"\u00e0":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm89,-214r-47,-43r47,-21r40,64r-40,0","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u00e1":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm86,-214r40,-64r47,21r-47,43r-40,0","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u00e2":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm37,-214r44,-57r52,0r44,57r-42,0r-28,-24r-29,24r-41,0","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u00e3":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm183,-264v-9,28,-15,47,-44,50v-12,2,-42,-13,-54,-14v-13,0,-16,7,-21,17r-29,-9v9,-28,15,-47,45,-49v12,-2,42,14,54,14v13,0,15,-8,20,-18","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u00e4":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm118,-214r0,-49r53,0r0,49r-53,0xm44,-214r0,-49r52,0r0,49r-52,0","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u00e5":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm151,-256v0,24,-22,43,-44,43v-22,0,-43,-19,-43,-43v0,-24,21,-42,43,-42v22,0,44,19,44,42xm84,-256v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23v-11,0,-23,12,-23,23","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u00e6":{"d":"191,-77v6,43,66,48,94,18r31,27v-32,46,-114,47,-152,7v-48,43,-148,42,-151,-31v-2,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28r-13,-42v43,-19,113,-24,140,9v63,-61,174,-5,155,94r-134,0xm273,-112v-1,-34,-43,-55,-68,-30v-7,7,-13,17,-15,30r83,0xm66,-58v0,35,56,25,79,5v-4,-8,-6,-17,-7,-25v-25,-12,-72,-12,-72,20","w":342,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u00e7":{"d":"69,-97v0,52,60,72,93,34r32,32v-19,22,-42,33,-69,35r-24,58r-46,-19r30,-43v-39,-11,-70,-47,-70,-96v0,-55,45,-103,101,-101v32,0,58,11,77,33r-33,36v-30,-39,-91,-19,-91,31","w":205,"k":{"?":5,")":5,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"x":4,"\u00ab":4}},"\u00e8":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm91,-214r-47,-43r47,-21r40,64r-40,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u00e9":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm88,-214r40,-64r47,21r-46,43r-41,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u00ea":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm40,-214r44,-57r52,0r44,57r-42,0r-29,-24r-28,24r-41,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u00eb":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm121,-214r0,-49r53,0r0,49r-53,0xm46,-214r0,-49r53,0r0,49r-53,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u00ec":{"d":"27,0r0,-193r55,0r0,193r-55,0xm36,-214r-47,-43r47,-21r40,64r-40,0","w":108},"\u00ed":{"d":"27,0r0,-193r55,0r0,193r-55,0xm33,-214r40,-64r47,21r-47,43r-40,0","w":108},"\u00ee":{"d":"27,0r0,-193r55,0r0,193r-55,0xm-16,-214r44,-57r52,0r45,57r-43,0r-28,-24r-28,24r-42,0","w":108},"\u00ef":{"d":"27,0r0,-193r55,0r0,193r-55,0xm66,-214r0,-49r52,0r0,49r-52,0xm-9,-214r0,-49r52,0r0,49r-52,0","w":108},"\u00f0":{"d":"15,-98v0,-67,68,-119,130,-82v-8,-12,-18,-23,-30,-35r-45,11r-9,-29r27,-6r-31,-24v29,3,71,-8,84,10r44,-11r9,29r-27,7v38,39,57,81,57,123v0,60,-42,109,-105,109v-58,0,-104,-46,-104,-102xm69,-96v-1,30,21,53,51,53v29,1,50,-23,50,-52v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52","w":239},"\u00f1":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147xm189,-264v-9,28,-16,47,-45,50v-12,2,-42,-13,-54,-14v-13,0,-16,7,-21,17r-29,-9v9,-28,15,-47,45,-49v12,-1,42,13,54,14v13,0,15,-8,20,-18","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"\u00f2":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm101,-214r-47,-43r47,-21r40,64r-40,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u00f3":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm98,-214r40,-64r47,21r-47,43r-40,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u00f4":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm49,-214r45,-57r51,0r45,57r-42,0r-29,-24r-28,24r-42,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u00f5":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm195,-264v-8,29,-15,48,-44,50v-12,2,-42,-13,-54,-14v-13,0,-16,7,-21,17r-29,-9v9,-28,15,-47,45,-49v12,-1,42,13,54,14v13,0,15,-8,20,-18","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u00f6":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm131,-214r0,-49r52,0r0,49r-52,0xm56,-214r0,-49r52,0r0,49r-52,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u00f7":{"d":"87,-178r0,-52r56,0r0,52r-56,0xm206,-104r-182,0r0,-46r182,0r0,46xm87,-23r0,-52r56,0r0,52r-56,0","w":230},"\u00f8":{"d":"39,-31v-72,-79,29,-211,132,-153r10,-11r48,0r-29,34v71,80,-28,209,-133,153v-7,16,-36,9,-57,10xm140,-147v-48,-19,-87,29,-67,77xm99,-45v47,19,88,-30,66,-77","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u00f9":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm93,-214r-47,-43r47,-21r40,64r-40,0"},"\u00fa":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm90,-214r40,-64r47,21r-47,43r-40,0"},"\u00fb":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm41,-214r44,-57r52,0r44,57r-42,0r-28,-24r-29,24r-41,0"},"\u00fc":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm122,-214r0,-49r53,0r0,49r-53,0xm48,-214r0,-49r52,0r0,49r-52,0"},"\u00fd":{"d":"109,-62r42,-131r57,0r-74,198v-11,53,-65,68,-112,40r18,-39v16,9,35,11,43,-5r-76,-194r58,0xm86,-214r40,-64r47,21r-47,43r-40,0","w":216,"k":{"?":4,"}":4,"]":7,"\/":25,"\u00bb":5,",":31,".":31,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"s":7,"\u015b":7,"\u015f":7,"\u0161":7,"v":5,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":5,"\u00ab":11}},"\u00fe":{"d":"227,-97v8,85,-96,136,-148,72r0,83r-55,0r0,-321r55,0r0,98v47,-68,157,-17,148,68xm78,-97v0,30,20,54,47,54v27,0,47,-23,47,-54v0,-30,-20,-53,-47,-53v-27,0,-47,24,-47,53","w":243,"k":{"*":5,"?":13,"}":5,"]":7,")":11,"\u00bb":2,",":4,".":4,"v":9,"w":7,"\u0175":7,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u00ff":{"d":"109,-62r42,-131r57,0r-74,198v-11,53,-65,68,-112,40r18,-39v16,9,35,11,43,-5r-76,-194r58,0xm119,-214r0,-49r52,0r0,49r-52,0xm44,-214r0,-49r52,0r0,49r-52,0","w":216,"k":{"?":4,"}":4,"]":7,"\/":25,"\u00bb":5,",":31,".":31,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"s":7,"\u015b":7,"\u015f":7,"\u0161":7,"v":5,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":5,"\u00ab":11}},"\u0100":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm74,-277r0,-39r137,0r0,39r-137,0","w":284},"\u0101":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm42,-216r0,-38r130,0r0,38r-130,0","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u0102":{"d":"9,0r108,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0xm108,-105r67,0r-34,-82xm211,-328v-1,52,-78,67,-116,39v-12,-9,-19,-22,-21,-39r37,0v7,23,55,23,62,0r38,0","w":284},"\u0103":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-52,0r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20xm175,-271v0,54,-77,75,-115,42v-12,-10,-18,-24,-20,-42r36,0v7,29,55,29,62,0r37,0","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u0104":{"d":"278,59v-46,10,-84,-24,-52,-59r-8,0r-23,-57r-107,0r-23,57r-56,0r108,-254r51,0r108,254v-17,-4,-23,12,-23,20v0,11,8,16,25,15r0,24xm108,-105r67,0r-34,-82","w":284},"\u0105":{"d":"30,-180v67,-29,160,-21,160,68r0,112r-15,0v-15,16,-13,38,17,35r0,24v-48,11,-82,-25,-54,-59r0,-21v-34,42,-125,29,-125,-35v0,-60,72,-73,125,-54v4,-48,-58,-42,-95,-28xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-24,-12,-73,-12,-73,20","w":213,"k":{"*":5,"?":13,"v":7,"w":7,"\u0175":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"t":2,"\u0163":2,"\u0165":2}},"\u0106":{"d":"252,-41v-27,27,-53,45,-104,45v-72,0,-129,-58,-129,-130v0,-115,154,-174,231,-91r-35,40v-50,-54,-138,-24,-138,51v0,42,31,80,73,79v32,0,47,-12,66,-29xm123,-275r44,-57r47,21r-49,36r-42,0","w":265,"k":{"J":4,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"V":2,"W":2,"\u0174":2,"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"X":4,"x":4,"-":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"\u0107":{"d":"194,-31v-20,22,-39,35,-78,35v-56,1,-101,-44,-101,-100v0,-55,45,-103,101,-101v32,0,58,11,77,33r-33,36v-30,-39,-91,-19,-91,32v0,51,61,71,93,33xm93,-214r39,-64r48,21r-47,43r-40,0","w":205,"k":{"?":5,")":5,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"x":4,"\u00ab":4}},"\u010a":{"d":"252,-41v-27,27,-53,45,-104,45v-72,0,-129,-58,-129,-130v0,-115,154,-174,231,-91r-35,40v-50,-54,-138,-24,-138,51v0,42,31,80,73,79v32,0,47,-12,66,-29xm119,-275r0,-46r54,0r0,46r-54,0","w":265,"k":{"J":4,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"V":2,"W":2,"\u0174":2,"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"X":4,"x":4,"-":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"\u010b":{"d":"194,-31v-20,22,-39,35,-78,35v-56,1,-101,-44,-101,-100v0,-55,45,-103,101,-101v32,0,58,11,77,33r-33,36v-30,-39,-91,-19,-91,32v0,51,61,71,93,33xm87,-214r0,-49r54,0r0,49r-54,0","w":205,"k":{"?":5,")":5,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"x":4,"\u00ab":4}},"\u010c":{"d":"252,-41v-27,27,-53,45,-104,45v-72,0,-129,-58,-129,-130v0,-115,154,-174,231,-91r-35,40v-50,-54,-138,-24,-138,51v0,42,31,80,73,79v32,0,47,-12,66,-29xm218,-328r-46,53r-52,0r-46,-53r44,0r28,20r29,-20r43,0","w":265,"k":{"J":4,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"V":2,"W":2,"\u0174":2,"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"X":4,"x":4,"-":4,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u010a":7,"\u010c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7}},"\u010d":{"d":"194,-31v-20,22,-39,35,-78,35v-56,1,-101,-44,-101,-100v0,-55,45,-103,101,-101v32,0,58,11,77,33r-33,36v-30,-39,-91,-19,-91,32v0,51,61,71,93,33xm184,-271r-44,57r-52,0r-44,-57r42,0r28,24r29,-24r41,0","w":205,"k":{"?":5,")":5,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"x":4,"\u00ab":4}},"\u010e":{"d":"262,-127v0,74,-58,127,-133,127r-99,0r0,-252r99,0v74,-2,133,53,133,125xm204,-125v1,-61,-48,-86,-118,-77r0,152v68,8,118,-15,118,-75xm208,-325r-46,53r-52,0r-46,-53r44,0r28,20r29,-20r43,0","w":281,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":18,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"J":14,",":14,".":14,"Z":14,"\u0179":14,"\u017b":14,"\u017d":14,"T":14,"\u0162":14,"\u0164":14,"V":16,"W":14,"\u0174":14,"Y":23,"\u00dd":23,"\u0176":23,"\u0178":23,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":20,"x":4}},"\u010f":{"d":"16,-96v-8,-85,96,-136,148,-72r0,-95r55,0r0,263r-55,0r0,-28v-47,68,-157,17,-148,-68xm71,-97v0,31,20,54,47,54v27,0,47,-24,47,-54v0,-29,-20,-53,-47,-53v-27,0,-47,23,-47,53xm237,-213r3,-75v12,1,29,-2,39,1r-21,74r-21,0","w":243},"\u0110":{"d":"273,-127v0,74,-59,127,-134,127r-98,0r0,-102r-27,0r0,-49r27,0r0,-101r98,0v74,-2,134,52,134,125xm215,-125v1,-61,-49,-85,-119,-77r0,51r54,0r0,49r-54,0r0,52v68,7,119,-14,119,-75","w":292,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":18,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"J":14,",":14,".":14,"Z":14,"\u0179":14,"\u017b":14,"\u017d":14,"T":14,"\u0162":14,"\u0164":14,"V":16,"W":14,"\u0174":14,"Y":23,"\u00dd":23,"\u0176":23,"\u0178":23,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":20,"x":4}},"\u0111":{"d":"16,-96v-8,-85,96,-136,148,-72r0,-45r-56,0r0,-31r56,0r0,-19r55,0r0,19r24,0r0,31r-24,0r0,213r-55,0r0,-28v-47,68,-157,17,-148,-68xm71,-97v0,31,20,54,47,54v27,0,47,-24,47,-54v0,-29,-20,-53,-47,-53v-27,0,-47,23,-47,53","w":243},"\u0112":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm58,-274r0,-38r136,0r0,38r-136,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u0113":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm45,-216r0,-38r130,0r0,38r-130,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u0114":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm194,-325v1,54,-78,68,-116,40v-12,-9,-18,-23,-20,-40r37,0v7,24,55,24,62,0r37,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u0115":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm177,-271v1,55,-76,74,-114,42v-12,-10,-19,-24,-21,-42r37,0v7,29,55,29,62,0r36,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u0116":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm99,-272r0,-46r54,0r0,46r-54,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u0117":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm83,-214r0,-49r54,0r0,49r-54,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u0118":{"d":"222,59v-46,10,-84,-24,-52,-59r-140,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-16,0v-14,16,-13,38,16,35r0,24","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u0119":{"d":"151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm69,-77v7,42,66,48,94,18r32,27v-10,15,-38,32,-39,50v0,12,8,18,25,17r0,24v-45,9,-84,-21,-52,-55v-68,5,-114,-38,-114,-100v-1,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u011a":{"d":"30,0r0,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0xm198,-325r-46,53r-52,0r-46,-53r44,0r28,20r29,-20r43,0","w":241,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u011b":{"d":"69,-77v7,42,66,48,94,18r32,27v-52,70,-180,30,-180,-64v0,-55,42,-101,96,-101v64,1,97,51,93,120r-135,0xm151,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm180,-271r-44,57r-52,0r-44,-57r42,0r28,24r29,-24r41,0","w":220,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u011e":{"d":"77,-127v0,68,76,103,129,66r0,-36r-56,0r0,-48r109,0r0,109v-83,80,-240,34,-240,-90v0,-112,149,-173,231,-96r-35,42v-20,-16,-34,-24,-66,-25v-40,0,-72,37,-72,78xm217,-328v-1,52,-78,67,-116,39v-12,-9,-19,-22,-21,-39r37,0v7,23,55,23,62,0r38,0","w":282,"k":{"?":4,"a":-4,"\u00e0":-4,"\u00e1":-4,"\u00e2":-4,"\u00e3":-4,"\u00e4":-4,"\u00e5":-4,"\u00e6":-4,"\u0101":-4,"\u0103":-4,"\u0105":-4,"v":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"T":4,"\u0162":4,"\u0164":4,"V":9,"W":7,"\u0174":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"X":4}},"\u011f":{"d":"219,-44v-1,72,-34,101,-108,102v-31,0,-60,-7,-85,-20r18,-41v45,29,131,28,121,-44v-42,60,-149,25,-149,-60v0,-81,99,-121,148,-61r0,-25r55,0r0,149xm71,-107v0,27,21,46,46,46v26,0,48,-19,48,-46v0,-26,-22,-44,-48,-44v-25,0,-46,18,-46,44xm192,-271v0,54,-77,75,-115,42v-12,-10,-18,-24,-20,-42r36,0v7,29,55,29,62,0r37,0","w":243},"\u0120":{"d":"77,-127v0,68,76,103,129,66r0,-36r-56,0r0,-48r109,0r0,109v-83,80,-240,34,-240,-90v0,-112,149,-173,231,-96r-35,42v-20,-16,-34,-24,-66,-25v-40,0,-72,37,-72,78xm121,-275r0,-46r54,0r0,46r-54,0","w":282,"k":{"?":4,"a":-4,"\u00e0":-4,"\u00e1":-4,"\u00e2":-4,"\u00e3":-4,"\u00e4":-4,"\u00e5":-4,"\u00e6":-4,"\u0101":-4,"\u0103":-4,"\u0105":-4,"v":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"T":4,"\u0162":4,"\u0164":4,"V":9,"W":7,"\u0174":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"X":4}},"\u0121":{"d":"219,-44v-1,72,-34,101,-108,102v-31,0,-60,-7,-85,-20r18,-41v45,29,131,28,121,-44v-42,60,-149,25,-149,-60v0,-81,99,-121,148,-61r0,-25r55,0r0,149xm71,-107v0,27,21,46,46,46v26,0,48,-19,48,-46v0,-26,-22,-44,-48,-44v-25,0,-46,18,-46,44xm97,-214r0,-49r54,0r0,49r-54,0","w":243},"\u0122":{"d":"77,-127v0,68,76,103,129,66r0,-36r-56,0r0,-48r109,0r0,109v-83,80,-240,34,-240,-90v0,-112,149,-173,231,-96r-35,42v-20,-16,-34,-24,-66,-25v-40,0,-72,37,-72,78xm122,107r-3,-17v17,-2,28,-8,28,-26r-24,0r0,-41r50,0v3,47,-1,87,-51,84","w":282,"k":{"?":4,"a":-4,"\u00e0":-4,"\u00e1":-4,"\u00e2":-4,"\u00e3":-4,"\u00e4":-4,"\u00e5":-4,"\u00e6":-4,"\u0101":-4,"\u0103":-4,"\u0105":-4,"v":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2,"T":4,"\u0162":4,"\u0164":4,"V":9,"W":7,"\u0174":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"X":4}},"\u0123":{"d":"219,-44v-1,72,-34,101,-108,102v-31,0,-60,-7,-85,-20r18,-41v45,29,131,28,121,-44v-42,60,-149,25,-149,-60v0,-81,99,-121,148,-61r0,-25r55,0r0,149xm71,-107v0,27,21,46,46,46v26,0,48,-19,48,-46v0,-26,-22,-44,-48,-44v-25,0,-46,18,-46,44xm149,-298r3,16v-17,2,-27,8,-27,26r23,0r0,42r-50,0v-3,-47,1,-87,51,-84","w":243},"\u0126":{"d":"5,-184r0,-38r25,0r0,-30r56,0r0,30r102,0r0,-30r55,0r0,30r26,0r0,38r-26,0r0,184r-55,0r0,-101r-102,0r0,101r-56,0r0,-184r-25,0xm86,-152r102,0r0,-33r-102,0r0,33","w":273},"\u0127":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-213r-24,0r0,-31r24,0r0,-19r55,0r0,19r56,0r0,31r-56,0r0,47v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"\u012a":{"d":"33,0r0,-252r55,0r0,252r-55,0xm-8,-274r0,-38r137,0r0,38r-137,0","w":120},"\u012b":{"d":"27,0r0,-193r55,0r0,193r-55,0xm-10,-216r0,-38r129,0r0,38r-129,0","w":108},"\u012c":{"d":"33,0r0,-252r55,0r0,252r-55,0xm129,-325v0,53,-78,68,-116,40v-12,-9,-19,-23,-21,-40r38,0v6,24,54,24,61,0r38,0","w":120},"\u012d":{"d":"27,0r0,-193r55,0r0,193r-55,0xm122,-271v0,54,-77,75,-115,42v-12,-10,-18,-24,-20,-42r36,0v7,29,55,29,62,0r37,0","w":108},"\u012e":{"d":"94,59v-45,10,-84,-23,-53,-59r-8,0r0,-252r55,0r0,252v-15,-3,-19,13,-19,20v0,11,8,16,25,15r0,24","w":120},"\u012f":{"d":"88,59v-46,10,-86,-23,-53,-59r-8,0r0,-193r55,0r0,193v-15,-3,-19,13,-19,20v0,11,8,16,25,15r0,24xm26,-214r0,-49r57,0r0,49r-57,0","w":108},"\u0130":{"d":"33,0r0,-252r55,0r0,252r-55,0xm33,-272r0,-46r54,0r0,46r-54,0","w":120},"\u0131":{"d":"27,0r0,-193r55,0r0,193r-55,0","w":108},"\u0136":{"d":"30,0r0,-252r56,0r0,110r102,-110r67,0r-103,107r108,145r-67,0r-78,-107r-29,30r0,77r-56,0xm105,103r-2,-16v17,-2,27,-8,27,-26r-23,0r0,-42r50,0v3,48,-2,87,-52,84","w":262,"k":{"\u00c6":7,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u0100":7,"\u0102":7,"\u0104":7,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":22,"w":18,"\u0175":18,"y":18,"\u00fd":18,"\u00ff":18,"\u0177":18,"T":4,"\u0162":4,"\u0164":4,"V":11,"W":11,"\u0174":11,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"-":18,"\u00ab":7,"C":20,"G":20,"O":20,"Q":20,"\u00c7":20,"\u00d2":20,"\u00d3":20,"\u00d4":20,"\u00d5":20,"\u00d6":20,"\u00d8":20,"\u0106":20,"\u010a":20,"\u010c":20,"\u011e":20,"\u0120":20,"\u0122":20,"\u014c":20,"\u014e":20,"\u0150":20,"\u0152":20,"f":7,"t":9,"\u0163":9,"\u0165":9,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5}},"\u0137":{"d":"24,0r0,-263r55,0r0,140r64,-70r66,0r-74,76r76,117r-63,0r-49,-79r-20,20r0,59r-55,0xm84,105r-3,-16v17,-2,29,-7,28,-26r-23,0r0,-42r49,0v3,47,0,87,-51,84","w":213,"k":{"\u00bb":4,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":7,"w":7,"\u0175":7,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"-":7,"\u00ab":7,"t":4,"\u0163":4,"\u0165":4,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4}},"\u0139":{"d":"30,0r0,-252r56,0r0,202r125,0r0,50r-181,0xm43,-272r43,-56r48,20r-49,36r-42,0","w":222,"k":{"*":29,"?":22,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":22,"w":18,"\u0175":18,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":41,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"-":14,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":7,"t":7,"\u0163":7,"\u0165":7,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u016a":7,"\u016c":7,"\u016e":7,"\u0170":7,"\u0172":7,"\u00ae":32}},"\u013a":{"d":"27,0r0,-263r55,0r0,263r-55,0xm33,-277r44,-57r47,21r-49,36r-42,0","w":108},"\u013b":{"d":"30,0r0,-252r56,0r0,202r125,0r0,50r-181,0xm94,105r-3,-16v17,-2,29,-7,28,-26r-23,0r0,-42r49,0v3,47,0,87,-51,84","w":222,"k":{"*":29,"?":22,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":22,"w":18,"\u0175":18,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":41,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"-":14,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":7,"t":7,"\u0163":7,"\u0165":7,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u016a":7,"\u016c":7,"\u016e":7,"\u0170":7,"\u0172":7,"\u00ae":32}},"\u013c":{"d":"27,0r0,-263r55,0r0,263r-55,0xm28,105r-3,-16v17,-2,28,-8,28,-26r-23,0r0,-42r49,0v3,47,-1,87,-51,84","w":108},"\u013d":{"d":"30,0r0,-252r56,0r0,202r125,0r0,50r-181,0xm111,-177r3,-75v12,1,29,-2,39,1r-21,74r-21,0","w":222,"k":{"*":29,"?":22,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":22,"w":18,"\u0175":18,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":41,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"-":14,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":7,"t":7,"\u0163":7,"\u0165":7,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u016a":7,"\u016c":7,"\u016e":7,"\u0170":7,"\u0172":7,"\u00ae":32}},"\u013e":{"d":"27,0r0,-263r55,0r0,263r-55,0xm100,-213r3,-75v13,1,29,-2,40,1r-22,74r-21,0","w":108},"\u013f":{"d":"148,-113r0,-49r52,0r0,49r-52,0xm30,0r0,-252r56,0r0,202r125,0r0,50r-181,0","w":222},"\u0140":{"d":"103,-114r0,-45r44,0r0,45r-44,0xm27,0r0,-263r55,0r0,263r-55,0","w":141},"\u0141":{"d":"149,-135r-53,23r0,62r126,0r0,50r-181,0r0,-87r-27,11r0,-51r27,-12r0,-113r55,0r0,89r53,-24r0,52","w":233,"k":{"*":29,"?":22,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":22,"w":18,"\u0175":18,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"T":36,"\u0162":36,"\u0164":36,"V":41,"W":36,"\u0174":36,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"-":14,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"f":7,"t":7,"\u0163":7,"\u0165":7,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u016a":7,"\u016c":7,"\u016e":7,"\u0170":7,"\u0172":7,"\u00ae":32}},"\u0142":{"d":"120,-136r-28,14r0,122r-54,0r0,-95r-27,13r0,-51r27,-14r0,-116r54,0r0,89r28,-13r0,51","w":130},"\u0143":{"d":"30,0r0,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0xm120,-272r43,-56r48,20r-49,36r-42,0","w":284},"\u0144":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147xm91,-214r40,-64r47,21r-47,43r-40,0","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"\u0145":{"d":"30,0r0,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0xm116,103r-3,-16v17,-2,27,-8,27,-26r-23,0r0,-42r50,0v3,47,-1,87,-51,84","w":284},"\u0146":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147xm86,105r-2,-16v17,-2,27,-8,27,-26r-23,0r0,-42r50,0v3,48,-2,87,-52,84","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"\u0147":{"d":"30,0r0,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0xm214,-325r-46,53r-52,0r-46,-53r44,0r29,20r28,-20r43,0","w":284},"\u0148":{"d":"113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v36,-56,122,-32,122,41r0,125r-54,0v-7,-53,23,-147,-34,-147xm183,-271r-44,57r-52,0r-45,-57r43,0r28,24r28,-24r42,0","k":{"*":5,"?":11,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5}},"\u014c":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm85,-277r0,-39r136,0r0,39r-136,0","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u014d":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm55,-216r0,-38r129,0r0,38r-129,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u014e":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm221,-328v0,53,-78,66,-116,39v-12,-9,-18,-22,-20,-39r37,0v7,23,55,23,62,0r37,0","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u014f":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm187,-271v0,54,-76,75,-114,42v-12,-10,-19,-24,-21,-42r37,0v7,29,55,29,61,0r37,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u0150":{"d":"287,-127v0,73,-61,131,-134,131v-74,0,-134,-57,-134,-130v0,-72,61,-130,134,-130v74,0,134,57,134,129xm77,-127v0,44,32,80,76,80v44,0,76,-35,76,-79v0,-43,-33,-79,-76,-79v-44,0,-76,35,-76,78xm94,-275r44,-57r45,21r-49,36r-40,0xm163,-275r43,-57r46,21r-49,36r-40,0","w":306,"k":{"?":7,"}":7,"]":7,")":11,"\/":14,"\u00c6":16,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u0100":16,"\u0102":16,"\u0104":16,"J":11,",":14,".":14,"Z":13,"\u0179":13,"\u017b":13,"\u017d":13,"T":11,"\u0162":11,"\u0164":11,"V":16,"W":14,"\u0174":14,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"S":2,"\u015a":2,"\u015e":2,"\u0160":2,"X":18,"x":2}},"\u0151":{"d":"224,-97v0,57,-47,101,-105,101v-57,0,-104,-44,-104,-100v0,-56,48,-101,105,-101v57,0,104,44,104,100xm69,-97v-1,31,20,55,51,54v30,0,50,-23,50,-53v0,-30,-21,-53,-51,-53v-30,0,-50,23,-50,52xm129,-214r40,-64r46,21r-47,43r-39,0xm63,-214r39,-64r46,21r-47,43r-38,0","w":239,"k":{"*":7,"?":18,"}":5,"]":7,")":11,"\u00bb":4,",":7,".":7,"v":11,"w":9,"\u0175":9,"y":11,"\u00fd":11,"\u00ff":11,"\u0177":11,"z":7,"\u017a":7,"\u017c":7,"\u017e":7,"x":13}},"\u0152":{"d":"19,-125v0,-73,59,-127,134,-127r213,0r0,49r-126,0r0,51r110,0r0,50r-110,0r0,53r128,0r0,49r-215,0v-74,2,-134,-53,-134,-125xm77,-127v0,57,43,85,108,77r0,-152v-64,-7,-108,19,-108,75","w":387,"k":{"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4}},"\u0153":{"d":"221,-77v6,43,66,48,94,18r31,27v-33,46,-120,48,-156,4v-55,67,-175,20,-175,-68v0,-87,120,-137,176,-69v18,-21,42,-32,71,-32v64,0,100,53,93,120r-134,0xm302,-112v-1,-34,-43,-54,-68,-30v-7,7,-12,17,-14,30r82,0xm69,-97v0,30,20,54,49,54v29,0,48,-23,48,-53v0,-29,-20,-53,-49,-53v-29,0,-48,24,-48,52","w":371,"k":{"*":7,"?":14,"}":4,"]":7,")":11,",":4,".":4,"v":9,"w":9,"\u0175":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0177":9,"z":5,"\u017a":5,"\u017c":5,"\u017e":5,"x":11}},"\u0154":{"d":"30,-252v97,0,210,-16,210,84v0,39,-18,65,-54,78r62,90r-65,0r-54,-81r-43,0r0,81r-56,0r0,-252xm184,-165v0,-46,-54,-36,-98,-37r0,72v43,-1,98,9,98,-35xm105,-272r43,-56r47,20r-48,36r-42,0","w":260,"k":{"J":2,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"V":7,"W":5,"\u0174":5,"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9}},"\u0155":{"d":"141,-139v-70,-5,-63,71,-62,139r-55,0r0,-193r55,0r0,39v12,-30,33,-44,62,-43r0,58xm61,-214r40,-64r47,21r-47,43r-40,0","w":150,"k":{"*":-4,"\/":27,",":32,".":32,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":4}},"\u0156":{"d":"30,-252v97,0,210,-16,210,84v0,39,-18,65,-54,78r62,90r-65,0r-54,-81r-43,0r0,81r-56,0r0,-252xm184,-165v0,-46,-54,-36,-98,-37r0,72v43,-1,98,9,98,-35xm101,103r-3,-16v17,-2,27,-8,27,-26r-23,0r0,-42r50,0v3,47,-1,87,-51,84","w":260,"k":{"J":2,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"V":7,"W":5,"\u0174":5,"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9}},"\u0157":{"d":"141,-139v-70,-5,-63,71,-62,139r-55,0r0,-193r55,0r0,39v12,-30,33,-44,62,-43r0,58xm28,105r-3,-16v17,-2,27,-8,27,-26r-23,0r0,-42r50,0v3,47,-1,87,-51,84","w":150,"k":{"*":-4,"\/":27,",":32,".":32,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":4}},"\u0158":{"d":"30,-252v97,0,210,-16,210,84v0,39,-18,65,-54,78r62,90r-65,0r-54,-81r-43,0r0,81r-56,0r0,-252xm184,-165v0,-46,-54,-36,-98,-37r0,72v43,-1,98,9,98,-35xm199,-325r-46,53r-52,0r-46,-53r44,0r28,20r29,-20r43,0","w":260,"k":{"J":2,"d":2,"g":2,"q":2,"\u010f":2,"\u0111":2,"\u011f":2,"\u0121":2,"\u0123":2,"c":4,"e":4,"o":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f0":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u010b":4,"\u010d":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"V":7,"W":5,"\u0174":5,"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9}},"\u0159":{"d":"141,-139v-70,-5,-63,71,-62,139r-55,0r0,-193r55,0r0,39v12,-30,33,-44,62,-43r0,58xm153,-271r-45,57r-51,0r-45,-57r42,0r29,24r28,-24r42,0","w":150,"k":{"*":-4,"\/":27,",":32,".":32,"d":4,"g":4,"q":4,"\u010f":4,"\u0111":4,"\u011f":4,"\u0121":4,"\u0123":4,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":4}},"\u015a":{"d":"193,-123v46,50,1,127,-73,127v-41,0,-77,-14,-107,-41r33,-39v25,20,50,31,75,31v29,0,50,-27,26,-42v-41,-25,-124,-19,-124,-93v0,-88,128,-94,182,-44r-29,42v-24,-17,-45,-25,-65,-25v-28,0,-45,28,-22,41v21,11,88,26,104,43xm94,-275r44,-57r47,21r-49,36r-42,0","w":230,"k":{"?":4,"\u00c6":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u0100":5,"\u0102":5,"\u0104":5,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"T":5,"\u0162":5,"\u0164":5,"V":11,"W":9,"\u0174":9,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":9,"x":5,"f":2,"t":2,"\u0163":2,"\u0165":2}},"\u015b":{"d":"166,-59v0,80,-111,75,-157,33r24,-36v21,15,42,23,61,23v29,0,27,-23,8,-29v-36,-11,-83,-17,-83,-67v0,-68,97,-76,143,-39r-21,38v-20,-12,-38,-18,-52,-18v-26,0,-28,23,0,31v30,9,77,20,77,64xm70,-214r40,-64r47,21r-47,43r-40,0","w":180,"k":{"?":13,"}":4,"]":5,")":7,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"x":9,"\u00ab":4,"t":4,"\u0163":4,"\u0165":4}},"\u015e":{"d":"111,-207v-28,0,-46,28,-22,41v40,22,123,23,123,91v0,47,-32,72,-74,78r-25,59r-45,-19r28,-41v-32,-5,-60,-18,-83,-39r33,-39v25,20,50,31,75,31v29,0,50,-27,26,-42v-41,-25,-124,-19,-124,-93v0,-88,128,-94,182,-44r-29,42v-24,-17,-45,-25,-65,-25","w":230,"k":{"?":4,"\u00c6":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u0100":5,"\u0102":5,"\u0104":5,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"T":5,"\u0162":5,"\u0164":5,"V":11,"W":9,"\u0174":9,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":9,"x":5,"f":2,"t":2,"\u0163":2,"\u0165":2}},"\u015f":{"d":"89,-123v30,9,78,20,77,64v0,37,-25,57,-57,62r-24,59r-46,-19r29,-42v-22,-4,-42,-13,-59,-27r24,-36v21,15,42,23,61,23v29,0,27,-23,8,-29v-36,-11,-83,-17,-83,-67v0,-68,97,-76,143,-39r-21,38v-20,-12,-38,-18,-52,-18v-26,0,-28,23,0,31","w":180,"k":{"?":13,"}":4,"]":5,")":7,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"x":9,"\u00ab":4,"t":4,"\u0163":4,"\u0165":4}},"\u0160":{"d":"193,-123v46,50,1,127,-73,127v-41,0,-77,-14,-107,-41r33,-39v25,20,50,31,75,31v29,0,50,-27,26,-42v-41,-25,-124,-19,-124,-93v0,-88,128,-94,182,-44r-29,42v-24,-17,-45,-25,-65,-25v-28,0,-45,28,-22,41v21,11,88,26,104,43xm189,-328r-46,53r-52,0r-46,-53r44,0r28,20r28,-20r44,0","w":230,"k":{"?":4,"\u00c6":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u0100":5,"\u0102":5,"\u0104":5,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"v":5,"w":4,"\u0175":4,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"T":5,"\u0162":5,"\u0164":5,"V":11,"W":9,"\u0174":9,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"X":9,"x":5,"f":2,"t":2,"\u0163":2,"\u0165":2}},"\u0161":{"d":"166,-59v0,80,-111,75,-157,33r24,-36v21,15,42,23,61,23v29,0,27,-23,8,-29v-36,-11,-83,-17,-83,-67v0,-68,97,-76,143,-39r-21,38v-20,-12,-38,-18,-52,-18v-26,0,-28,23,0,31v30,9,77,20,77,64xm162,-271r-45,57r-51,0r-45,-57r42,0r29,24r28,-24r42,0","w":180,"k":{"?":13,"}":4,"]":5,")":7,"s":4,"\u015b":4,"\u015f":4,"\u0161":4,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"x":9,"\u00ab":4,"t":4,"\u0163":4,"\u0165":4}},"\u0162":{"d":"89,0r0,-201r-77,0r0,-51r209,0r0,51r-77,0r0,201r-55,0xm90,105r-3,-16v17,-2,29,-7,28,-26r-23,0r0,-42r49,0v3,47,0,87,-51,84","w":233,"k":{"&":16,"\/":32,"j":4,"\u00c6":32,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u0100":32,"\u0102":32,"\u0104":32,"J":40,"\u00bb":25,",":36,".":36,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":34,"g":34,"q":34,"\u010f":34,"\u0111":34,"\u011f":34,"\u0121":34,"\u0123":34,"c":38,"e":38,"o":38,"\u00e7":38,"\u00e8":38,"\u00e9":38,"\u00ea":38,"\u00eb":38,"\u00f0":38,"\u00f2":38,"\u00f3":38,"\u00f4":38,"\u00f5":38,"\u00f6":38,"\u00f8":38,"\u0107":38,"\u010b":38,"\u010d":38,"\u0113":38,"\u0115":38,"\u0117":38,"\u0119":38,"\u011b":38,"\u014d":38,"\u014f":38,"\u0151":38,"\u0153":38,"a":38,"\u00e0":38,"\u00e1":38,"\u00e2":38,"\u00e3":38,"\u00e4":38,"\u00e5":38,"\u00e6":38,"\u0101":38,"\u0103":38,"\u0105":38,"s":32,"\u015b":32,"\u015f":32,"\u0161":32,"v":18,"w":14,"\u0175":14,"y":18,"\u00fd":18,"\u00ff":18,"\u0177":18,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"S":5,"\u015a":5,"\u015e":5,"\u0160":5,"x":18,":":4,";":4,"-":32,"\u00ab":32,"C":11,"G":11,"O":11,"Q":11,"\u00c7":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"\u00d6":11,"\u00d8":11,"\u0106":11,"\u010a":11,"\u010c":11,"\u011e":11,"\u0120":11,"\u0122":11,"\u014c":11,"\u014e":11,"\u0150":11,"\u0152":11,"b":2,"h":2,"k":2,"l":2,"\u0137":2,"\u013a":2,"\u013c":2,"\u013e":2,"\u0140":2,"m":22,"n":22,"p":22,"r":22,"\u00f1":22,"\u0144":22,"\u0146":22,"\u0148":22,"\u0155":22,"\u0157":22,"\u0159":22,"f":11,"i":4,"\u00ec":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u012b":4,"\u012d":4,"\u012f":4,"t":7,"\u0163":7,"\u0165":7,"u":18,"\u00f9":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u00d0":4,"\u0110":4}},"\u0163":{"d":"133,-8v-40,22,-100,12,-100,-47r0,-91r-23,0r0,-47r23,0r0,-49r55,0r0,49r46,0r0,47r-46,0r0,82v-2,24,30,22,45,12r0,44xm54,105r-3,-16v17,-2,27,-8,27,-26r-23,0r0,-42r50,0v3,47,-1,87,-51,84","w":149,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":4}},"\u0164":{"d":"89,0r0,-201r-77,0r0,-51r209,0r0,51r-77,0r0,201r-55,0xm189,-325r-46,53r-52,0r-46,-53r44,0r28,20r28,-20r44,0","w":233,"k":{"&":16,"\/":32,"j":4,"\u00c6":32,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u0100":32,"\u0102":32,"\u0104":32,"J":40,"\u00bb":25,",":36,".":36,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":34,"g":34,"q":34,"\u010f":34,"\u0111":34,"\u011f":34,"\u0121":34,"\u0123":34,"c":38,"e":38,"o":38,"\u00e7":38,"\u00e8":38,"\u00e9":38,"\u00ea":38,"\u00eb":38,"\u00f0":38,"\u00f2":38,"\u00f3":38,"\u00f4":38,"\u00f5":38,"\u00f6":38,"\u00f8":38,"\u0107":38,"\u010b":38,"\u010d":38,"\u0113":38,"\u0115":38,"\u0117":38,"\u0119":38,"\u011b":38,"\u014d":38,"\u014f":38,"\u0151":38,"\u0153":38,"a":38,"\u00e0":38,"\u00e1":38,"\u00e2":38,"\u00e3":38,"\u00e4":38,"\u00e5":38,"\u00e6":38,"\u0101":38,"\u0103":38,"\u0105":38,"s":32,"\u015b":32,"\u015f":32,"\u0161":32,"v":18,"w":14,"\u0175":14,"y":18,"\u00fd":18,"\u00ff":18,"\u0177":18,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"S":5,"\u015a":5,"\u015e":5,"\u0160":5,"x":18,":":4,";":4,"-":32,"\u00ab":32,"C":11,"G":11,"O":11,"Q":11,"\u00c7":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"\u00d6":11,"\u00d8":11,"\u0106":11,"\u010a":11,"\u010c":11,"\u011e":11,"\u0120":11,"\u0122":11,"\u014c":11,"\u014e":11,"\u0150":11,"\u0152":11,"b":2,"h":2,"k":2,"l":2,"\u0137":2,"\u013a":2,"\u013c":2,"\u013e":2,"\u0140":2,"m":22,"n":22,"p":22,"r":22,"\u00f1":22,"\u0144":22,"\u0146":22,"\u0148":22,"\u0155":22,"\u0157":22,"\u0159":22,"f":11,"i":4,"\u00ec":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u012b":4,"\u012d":4,"\u012f":4,"t":7,"\u0163":7,"\u0165":7,"u":18,"\u00f9":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u00d0":4,"\u0110":4}},"\u0165":{"d":"133,-8v-40,22,-100,12,-100,-47r0,-91r-23,0r0,-47r23,0r0,-49r55,0r0,49r46,0r0,47r-46,0r0,82v-2,24,30,22,45,12r0,44xm111,-213r4,-75v12,1,29,-2,39,1r-21,74r-22,0","w":149,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":4}},"\u016a":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm68,-274r0,-38r136,0r0,38r-136,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u016b":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm46,-216r0,-38r130,0r0,38r-130,0"},"\u016c":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm204,-321v0,53,-78,68,-115,39v-12,-9,-19,-22,-21,-39r37,0v7,24,55,24,62,0r37,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u016d":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm179,-271v0,54,-77,75,-115,42v-12,-10,-18,-24,-20,-42r36,0v7,29,55,29,62,0r37,0"},"\u016e":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm181,-302v0,24,-22,40,-45,40v-23,0,-45,-16,-45,-40v0,-23,22,-39,45,-39v23,0,45,15,45,39xm113,-302v1,12,9,20,23,20v14,0,22,-8,23,-20v0,-28,-46,-24,-46,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u016f":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm155,-250v0,23,-21,42,-44,42v-23,0,-43,-18,-43,-42v0,-24,20,-42,43,-42v23,0,44,19,44,42xm87,-250v0,12,12,24,24,24v12,0,24,-12,24,-24v0,-12,-12,-24,-24,-24v-12,0,-24,12,-24,24"},"\u0170":{"d":"246,-110v1,73,-40,114,-111,114v-69,0,-109,-41,-109,-112r0,-144r56,0v8,78,-30,205,54,205v84,0,46,-128,54,-205r56,0r0,142xm77,-272r44,-56r45,20r-49,36r-40,0xm146,-272r43,-56r46,20r-49,36r-40,0","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u0171":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147xm121,-214r40,-64r46,21r-48,43r-38,0xm54,-214r40,-64r46,21r-47,43r-39,0"},"\u0172":{"d":"136,-47v84,0,46,-128,54,-205r56,0v-1,113,23,250,-97,255v-11,16,-8,35,19,32r0,24v-43,9,-84,-20,-54,-56v-56,-7,-88,-47,-88,-111r0,-144r56,0v8,78,-30,205,54,205","w":272,"k":{"\/":5,"\u00c6":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u0100":9,"\u0102":9,"\u0104":9,"J":7,",":5,".":5,"X":4,"x":2}},"\u0173":{"d":"111,-46v57,0,27,-94,34,-147r55,0r0,193v-16,-4,-22,12,-22,20v0,11,8,16,25,15r0,24v-46,10,-84,-24,-52,-59r-6,0r0,-27v-36,56,-122,32,-122,-41r0,-125r55,0v7,53,-23,147,33,147"},"\u0174":{"d":"97,2r-86,-254r59,0r52,171r57,-172r47,0r57,172r52,-171r58,0r-86,254r-48,0r-57,-165r-57,165r-48,0xm130,-272r46,-53r52,0r46,53r-44,0r-28,-20r-29,20r-43,0","w":403,"k":{"&":11,"\/":36,"j":5,"\u00c6":32,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u0100":32,"\u0102":32,"\u0104":32,"J":38,"\u00bb":13,",":36,".":36,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":22,"g":22,"q":22,"\u010f":22,"\u0111":22,"\u011f":22,"\u0121":22,"\u0123":22,"c":23,"e":23,"o":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,"\u0107":23,"\u010b":23,"\u010d":23,"\u0113":23,"\u0115":23,"\u0117":23,"\u0119":23,"\u011b":23,"\u014d":23,"\u014f":23,"\u0151":23,"\u0153":23,"a":25,"\u00e0":25,"\u00e1":25,"\u00e2":25,"\u00e3":25,"\u00e4":25,"\u00e5":25,"\u00e6":25,"\u0101":25,"\u0103":25,"\u0105":25,"s":22,"\u015b":22,"\u015f":22,"\u0161":22,"v":13,"w":13,"\u0175":13,"y":13,"\u00fd":13,"\u00ff":13,"\u0177":13,"z":20,"\u017a":20,"\u017c":20,"\u017e":20,"V":4,"W":4,"\u0174":4,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":7,"\u015a":7,"\u015e":7,"\u0160":7,"X":5,"x":14,":":5,";":5,"-":13,"\u00ab":18,"C":14,"G":14,"O":14,"Q":14,"\u00c7":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u0106":14,"\u010a":14,"\u010c":14,"\u011e":14,"\u0120":14,"\u0122":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"b":4,"h":4,"k":4,"l":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4,"m":13,"n":13,"p":13,"r":13,"\u00f1":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u0155":13,"\u0157":13,"\u0159":13,"f":11,"i":5,"\u00ec":5,"\u00ed":5,"\u00ee":5,"\u00ef":5,"\u012b":5,"\u012d":5,"\u012f":5,"t":9,"\u0163":9,"\u0165":9,"u":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13}},"\u0175":{"d":"68,1r-59,-194r55,0r31,117r36,-118r48,0r36,118r32,-117r54,0r-60,194r-49,0r-37,-118r-38,118r-49,0xm85,-214r44,-57r52,0r44,57r-42,0r-29,-24r-28,24r-41,0","w":309,"k":{"?":4,"}":4,"]":7,"\/":22,"\u00bb":4,",":25,".":25,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"s":5,"\u015b":5,"\u015f":5,"\u0161":5,"v":5,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":4,"\u00ab":7}},"\u0176":{"d":"101,0r0,-99r-97,-153r65,0r60,101r61,-101r63,0r-96,152r0,100r-56,0xm57,-272r46,-53r52,0r46,53r-44,0r-28,-20r-29,20r-43,0","w":257,"k":{"&":20,"\/":40,"j":7,"\u00c6":40,"A":40,"\u00c0":40,"\u00c1":40,"\u00c2":40,"\u00c3":40,"\u00c4":40,"\u00c5":40,"\u0100":40,"\u0102":40,"\u0104":40,"J":47,"\u00bb":27,",":47,".":47,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":38,"g":38,"q":38,"\u010f":38,"\u0111":38,"\u011f":38,"\u0121":38,"\u0123":38,"c":40,"e":40,"o":40,"\u00e7":40,"\u00e8":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00f0":40,"\u00f2":40,"\u00f3":40,"\u00f4":40,"\u00f5":40,"\u00f6":40,"\u00f8":40,"\u0107":40,"\u010b":40,"\u010d":40,"\u0113":40,"\u0115":40,"\u0117":40,"\u0119":40,"\u011b":40,"\u014d":40,"\u014f":40,"\u0151":40,"\u0153":40,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"s":36,"\u015b":36,"\u015f":36,"\u0161":36,"v":22,"w":20,"\u0175":20,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"V":7,"W":7,"\u0174":7,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":13,"\u015a":13,"\u015e":13,"\u0160":13,"X":11,"x":25,":":14,";":14,"-":29,"\u00ab":36,"C":22,"G":22,"O":22,"Q":22,"\u00c7":22,"\u00d2":22,"\u00d3":22,"\u00d4":22,"\u00d5":22,"\u00d6":22,"\u00d8":22,"\u0106":22,"\u010a":22,"\u010c":22,"\u011e":22,"\u0120":22,"\u0122":22,"\u014c":22,"\u014e":22,"\u0150":22,"\u0152":22,"m":27,"n":27,"p":27,"r":27,"\u00f1":27,"\u0144":27,"\u0146":27,"\u0148":27,"\u0155":27,"\u0157":27,"\u0159":27,"f":14,"i":7,"\u00ec":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u012b":7,"\u012d":7,"\u012f":7,"t":11,"\u0163":11,"\u0165":11,"u":27,"\u00f9":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u016b":27,"\u016d":27,"\u016f":27,"\u0171":27,"\u0173":27,"\u00d0":5,"\u0110":5}},"\u0177":{"d":"109,-62r42,-131r57,0r-74,198v-11,53,-65,68,-112,40r18,-39v16,9,35,11,43,-5r-76,-194r58,0xm37,-214r45,-57r52,0r44,57r-42,0r-29,-24r-28,24r-42,0","w":216,"k":{"?":4,"}":4,"]":7,"\/":25,"\u00bb":5,",":31,".":31,"d":9,"g":9,"q":9,"\u010f":9,"\u0111":9,"\u011f":9,"\u0121":9,"\u0123":9,"c":11,"e":11,"o":11,"\u00e7":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00f0":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u0107":11,"\u010b":11,"\u010d":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"\u0101":9,"\u0103":9,"\u0105":9,"s":7,"\u015b":7,"\u015f":7,"\u0161":7,"v":5,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"z":2,"\u017a":2,"\u017c":2,"\u017e":2,"x":4,"-":5,"\u00ab":11}},"\u0178":{"d":"101,0r0,-99r-97,-153r65,0r60,101r61,-101r63,0r-96,152r0,100r-56,0xm142,-272r0,-46r52,0r0,46r-52,0xm63,-272r0,-46r53,0r0,46r-53,0","w":257,"k":{"&":20,"\/":40,"j":7,"\u00c6":40,"A":40,"\u00c0":40,"\u00c1":40,"\u00c2":40,"\u00c3":40,"\u00c4":40,"\u00c5":40,"\u0100":40,"\u0102":40,"\u0104":40,"J":47,"\u00bb":27,",":47,".":47,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":38,"g":38,"q":38,"\u010f":38,"\u0111":38,"\u011f":38,"\u0121":38,"\u0123":38,"c":40,"e":40,"o":40,"\u00e7":40,"\u00e8":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00f0":40,"\u00f2":40,"\u00f3":40,"\u00f4":40,"\u00f5":40,"\u00f6":40,"\u00f8":40,"\u0107":40,"\u010b":40,"\u010d":40,"\u0113":40,"\u0115":40,"\u0117":40,"\u0119":40,"\u011b":40,"\u014d":40,"\u014f":40,"\u0151":40,"\u0153":40,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"s":36,"\u015b":36,"\u015f":36,"\u0161":36,"v":22,"w":20,"\u0175":20,"y":22,"\u00fd":22,"\u00ff":22,"\u0177":22,"z":29,"\u017a":29,"\u017c":29,"\u017e":29,"V":7,"W":7,"\u0174":7,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"S":13,"\u015a":13,"\u015e":13,"\u0160":13,"X":11,"x":25,":":14,";":14,"-":29,"\u00ab":36,"C":22,"G":22,"O":22,"Q":22,"\u00c7":22,"\u00d2":22,"\u00d3":22,"\u00d4":22,"\u00d5":22,"\u00d6":22,"\u00d8":22,"\u0106":22,"\u010a":22,"\u010c":22,"\u011e":22,"\u0120":22,"\u0122":22,"\u014c":22,"\u014e":22,"\u0150":22,"\u0152":22,"m":27,"n":27,"p":27,"r":27,"\u00f1":27,"\u0144":27,"\u0146":27,"\u0148":27,"\u0155":27,"\u0157":27,"\u0159":27,"f":14,"i":7,"\u00ec":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u012b":7,"\u012d":7,"\u012f":7,"t":11,"\u0163":11,"\u0165":11,"u":27,"\u00f9":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u016b":27,"\u016d":27,"\u016f":27,"\u0171":27,"\u0173":27,"\u00d0":5,"\u0110":5}},"\u0179":{"d":"23,0r0,-42r138,-161r-134,0r0,-49r206,0r0,42r-139,161r139,0r0,49r-210,0xm107,-272r44,-56r47,20r-49,36r-42,0","w":254,"k":{"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"-":11,"\u00ab":7,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u010a":13,"\u010c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"f":4}},"\u017a":{"d":"18,0r0,-39r100,-110r-97,0r0,-44r165,0r0,39r-100,110r100,0r0,44r-168,0xm80,-214r40,-64r47,21r-46,43r-41,0","w":202,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":5}},"\u017b":{"d":"23,0r0,-42r138,-161r-134,0r0,-49r206,0r0,42r-139,161r139,0r0,49r-210,0xm103,-272r0,-46r54,0r0,46r-54,0","w":254,"k":{"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"-":11,"\u00ab":7,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u010a":13,"\u010c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"f":4}},"\u017c":{"d":"18,0r0,-39r100,-110r-97,0r0,-44r165,0r0,39r-100,110r100,0r0,44r-168,0xm75,-214r0,-49r54,0r0,49r-54,0","w":202,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":5}},"\u017d":{"d":"23,0r0,-42r138,-161r-134,0r0,-49r206,0r0,42r-139,161r139,0r0,49r-210,0xm202,-325r-46,53r-52,0r-46,-53r44,0r28,20r28,-20r44,0","w":254,"k":{"Z":4,"\u0179":4,"\u017b":4,"\u017d":4,"d":7,"g":7,"q":7,"\u010f":7,"\u0111":7,"\u011f":7,"\u0121":7,"\u0123":7,"c":9,"e":9,"o":9,"\u00e7":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00f0":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u0107":9,"\u010b":9,"\u010d":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"\u011b":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"v":7,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"S":4,"\u015a":4,"\u015e":4,"\u0160":4,"-":11,"\u00ab":7,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u010a":13,"\u010c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"f":4}},"\u017e":{"d":"18,0r0,-39r100,-110r-97,0r0,-44r165,0r0,39r-100,110r100,0r0,44r-168,0xm172,-271r-44,57r-52,0r-44,-57r42,0r28,24r29,-24r41,0","w":202,"k":{"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0121":5,"\u0123":5,"c":5,"e":5,"o":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f0":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u010b":5,"\u010d":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"\u00ab":5}}}});
;
Cufon.replace('h1, h2, h3, h4,#nice-menu-1 > li > a, #contact, .menu-block-1 a, .news-date, #wantto ul.menu a',
	{
		hover:true,
		textShadow: '1px 1px #613700'


	}); 
Cufon.replace('body.node-type-office h2',
	{
		hover:true,
		textShadow: 'none'


	}); 

jQuery(document).ready(function(){
//Page Flip on hover
	jQuery("#contact").hover(function() {
		jQuery("#contact .corner , .msg_block").stop()
			.animate({
				width: '605px', 
				height: '603px'
			}, 500); 
		} , function() {
		jQuery("#contact .corner").stop() 
			.animate({
				width: '1px', 
				height: '1px'
			}, 220);
		jQuery(".msg_block").stop() 
			.animate({
				width: '1px', 
				height: '1px'
			}, 200);
	});


    jQuery('#slider .content').cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 5000,
        cleartype: 0,
		metaAttr: 'p'
//		prev:'#previous',
	//	next: '#next',
		//pager:'#banner-nav'
    });

	
	jQuery(".ticker").jCarouselLite({  
        vertical: true,  
        visible: 3,  
        auto:2000,  
        speed:4000  
    });  
         

	/* Give the search box some cool text & Functionality */
	populateElement('#searchBar .form-text', 'Search CoreStaff...');
	/* Rock out with the login block to make it super sweet */


});


function populateElement(selector, defvalue) {
    if(jQuery.trim(jQuery(selector).val()) == "") {
        jQuery(selector).val(defvalue);
    }
    jQuery(selector).focus(function() {
        if(jQuery(selector).val() == defvalue) {
            jQuery(selector).val("");
        }
    });
    jQuery(selector).blur(function() {
        if(jQuery.trim(jQuery(selector).val()) == "") {
            jQuery(selector).val(defvalue);
        }
    });
}
;

