// ColorBox v1.3.5 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
// c) 2009 Jack Moore - www.colorpowered.com - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php

(function ($) {
	// Shortcuts (to increase compression)
	var colorbox = 'colorbox',
	hover = 'hover',
	TRUE = true,
	FALSE = false,
	cboxPublic,
	isIE = !$.support.opacity,
	isIE6 = isIE && !window.XMLHttpRequest,

	// Event Strings (to increase compression)
	cbox_open = 'cbox_open',
	cbox_load = 'cbox_load',
	cbox_complete = 'cbox_complete',
	cbox_cleanup = 'cbox_cleanup',
	cbox_closed = 'cbox_closed',
	cbox_resize = 'resize.cbox_resize',

	// Cached jQuery Object Variables
	$overlay,
	$cbox,
	$wrap,
	$content,
	$topBorder,
	$leftBorder,
	$rightBorder,
	$bottomBorder,
	$related,
	$window,
	$loaded,
	$loadingBay,
	$loadingOverlay,
	$loadingGraphic,
	$title,
	$current,
	$slideshow,
	$next,
	$prev,
	$close,

	// Variables for cached values or use across multiple functions
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	bookmark,
	index,
	settings,
	open,
	active,
	
	// ColorBox Default Settings.	
	// See http://colorpowered.com/colorbox for details.
	defaults = {
		transition: "elastic",
		speed: 350,
		width: FALSE,
		height: FALSE,
		innerWidth: FALSE,
		innerHeight: FALSE,
		initialWidth: "400",
		initialHeight: "400",
		maxWidth: FALSE,
		maxHeight: FALSE,
		scalePhotos: TRUE,
		scrolling: TRUE,
		inline: FALSE,
		html: FALSE,
		iframe: FALSE,
		photo: FALSE,
		href: FALSE,
		title: FALSE,
		rel: FALSE,
		opacity: 0.9,
		preloading: TRUE,
		current: "image {current} of {total}",
		previous: "previous",
		next: "next",
		close: "close",
		open: FALSE,
		overlayClose: TRUE,
		
		slideshow: FALSE,
		slideshowAuto: TRUE,
		slideshowSpeed: 2500,
		slideshowStart: "start slideshow",
		slideshowStop: "stop slideshow",
		
		onOpen: FALSE,
		onLoad: FALSE,
		onComplete: FALSE,
		onCleanup: FALSE,
		onClosed: FALSE
	};
	
	// ****************
	// HELPER FUNCTIONS
	// ****************
		
	// Convert % values to pixels
	function setSize(size, dimension) {
		dimension = dimension === 'x' ? $window.width() : $window.height();//document.documentElement.clientWidth : document.documentElement.clientHeight;
		return (typeof size === 'string') ? Math.round((size.match(/%/) ? (dimension / 100) * parseInt(size, 10) : parseInt(size, 10))) : size;
	}

	// Checks an href to see if it is a photo.
	// There is a force photo option (photo: true) for hrefs that cannot be matched by this regex.
	function isImage(url) {
		url = $.isFunction(url) ? url.call(element) : url;
		return settings.photo || url.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i);
	}
	
	// Assigns functions results to their respective settings.  This allows functions to be used to set ColorBox options.
	function process() {
		for (var i in settings) {
			if ($.isFunction(settings[i]) && i.substring(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
			    settings[i] = settings[i].call(element);
			}
		}
	}

	function launch(elem) {
		
		element = elem;
		
		settings = $(element).data(colorbox);
		
		process(); // Convert functions to their returned values.
		
		var rel = settings.rel || element.rel;
		
		if (rel && rel !== 'nofollow') {
			$related = $('.cboxElement').filter(function () {
				var relRelated = $(this).data(colorbox).rel || this.rel;
				return (relRelated === rel);
			});
			index = $related.index(element);
			
			// Check direct calls to ColorBox.
			if (index < 0) {
				$related = $related.add(element);
				index = $related.length - 1;
			}
		} else {
			$related = $(element);
			index = 0;
		}
		
		if (!open) {
			open = TRUE;
			
			active = TRUE; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
			
			bookmark = element;
			
			bookmark.blur(); // Remove the focus from the calling element.
			
			// Set Navigation Key Bindings
			$().bind("keydown.cbox_close", function (e) {
				if (e.keyCode === 27) {
					e.preventDefault();
					cboxPublic.close();
				}
			}).bind("keydown.cbox_arrows", function (e) {
				if ($related.length > 1) {
					if (e.keyCode === 37) {
						e.preventDefault();
						$prev.click();
					} else if (e.keyCode === 39) {
						e.preventDefault();
						$next.click();
					}
				}
			});
			
			if (settings.overlayClose) {
				$overlay.css({"cursor": "pointer"}).one('click', cboxPublic.close);
			}
			
			$.event.trigger(cbox_open);
			if (settings.onOpen) {
				settings.onOpen.call(element);
			}
			
			$overlay.css({"opacity": settings.opacity}).show();
			
			// Opens inital empty ColorBox prior to content being loaded.
			settings.w = setSize(settings.initialWidth, 'x');
			settings.h = setSize(settings.initialHeight, 'y');
			cboxPublic.position(0);
			
			if (isIE6) {
				$window.bind('resize.cboxie6 scroll.cboxie6', function () {
					$overlay.css({width: $window.width(), height: $window.height(), top: $window.scrollTop(), left: $window.scrollLeft()});
				}).trigger("scroll.cboxie6");
			}
		}
		
		$current.add($prev).add($next).add($slideshow).add($title).hide();
		
		$close.html(settings.close).show();
		
		cboxPublic.slideshow();
		
		cboxPublic.load();
	}

	// ****************
	// PUBLIC FUNCTIONS
	// Usage format: $.fn.colorbox.close();
	// Usage from within an iframe: parent.$.fn.colorbox.close();
	// ****************
	
	cboxPublic = $.fn.colorbox = function (options, callback) {
		var $this = this;
		
		if (!$this.length) {
			if ($this.selector === '') { // empty selector means a direct call, ie: $.fn.colorbox();
				$this = $($this);
				options.open = TRUE;
			} else { // else the selector didn't match anything, and colorbox should go ahead and return.
				return this;
			}
		}
		
		$this.each(function () {
			var data = $.extend({}, $(this).data(colorbox) ? $(this).data(colorbox) : defaults, options);
			
			$(this).data(colorbox, data).addClass("cboxElement");
			
			if (callback) {
				$(this).data(colorbox).onComplete = callback;
			}
		});
		
		if (options && options.open) {
			launch($this);
		}
		
		return this;
	};

	// Initialize ColorBox: store common calculations, preload the interface graphics, append the html.
	// This preps colorbox for a speedy open when clicked, and lightens the burdon on the browser by only
	// having to run once, instead of each time colorbox is opened.
	cboxPublic.init = function () {
		
		// jQuery object generator to save a bit of space
		function $div(id) {
			return $('<div id="cbox' + id + '"/>');
		}
		
		// Create & Append jQuery Objects
		$window = $(window);
		$cbox = $('<div id="colorbox"/>');
		$overlay = $div("Overlay").hide();
		$wrap = $div("Wrapper");
		$content = $div("Content").append(
			$loaded = $div("LoadedContent").css({width: 0, height: 0}),
			$loadingOverlay = $div("LoadingOverlay"),
			$loadingGraphic = $div("LoadingGraphic"),
			$title = $div("Title"),
			$current = $div("Current"),
			$slideshow = $div("Slideshow"),
			$next = $div("Next"),
			$prev = $div("Previous"),
			$close = $div("Close")
		);
		$wrap.append( // The 3x3 Grid that makes up ColorBox
			$('<div/>').append(
				$div("TopLeft"),
				$topBorder = $div("TopCenter"),
				$div("TopRight")
			),
			$('<div/>').append(
				$leftBorder = $div("MiddleLeft"),
				$content,
				$rightBorder = $div("MiddleRight")
			),
			$('<div/>').append(
				$div("BottomLeft"),
				$bottomBorder = $div("BottomCenter"),
				$div("BottomRight")
			)
		).children().children().css({'float': 'left'});
		
		$loadingBay = $("<div style='position:absolute; top:0; left:0; width:9999px; height:0;'/>");
		
		$('body').prepend($overlay, $cbox.append($wrap, $loadingBay));
				
		if (isIE) {
			$cbox.addClass('cboxIE');
			if (isIE6) {
				$overlay.css('position', 'absolute');
			}
		}
		
		// Add rollover event to navigation elements
		$content.children()
		.addClass(hover)
		.mouseover(function () { $(this).addClass(hover); })
		.mouseout(function () { $(this).removeClass(hover); });
		
		// Cache values needed for size calculations
		interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(TRUE) - $content.height();//Subtraction needed for IE6
		interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(TRUE) - $content.width();
		loadedHeight = $loaded.outerHeight(TRUE);
		loadedWidth = $loaded.outerWidth(TRUE);
		
		// Setting padding to remove the need to do size conversions during the animation step.
		$cbox.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
		
		// Setup button & key events.
		$next.click(cboxPublic.next);
		$prev.click(cboxPublic.prev);
		$close.click(cboxPublic.close);
		
		// Adding the 'hover' class allowed the browser to load the hover-state
		// background graphics.  The class can now can be removed.
		$content.children().removeClass(hover);
		
		$('.cboxElement').live('click', function (e) {
			if (e.button !== 0 && typeof e.button !== 'undefined') {// checks to see if it was a non-left mouse-click.
				return TRUE;
			} else {
				launch(this);			
				return FALSE;
			}
		});
	};

	cboxPublic.position = function (speed, loadedCallback) {
		var
		animate_speed,
		winHeight = $window.height(),
		// keeps the top and left positions within the browser's viewport.
		posTop = Math.max(winHeight - settings.h - loadedHeight - interfaceHeight,0)/2 + $window.scrollTop(),
		posLeft = Math.max(document.documentElement.clientWidth - settings.w - loadedWidth - interfaceWidth,0)/2 + $window.scrollLeft();
		
		// setting the speed to 0 to reduce the delay between same-sized content.
		animate_speed = ($cbox.width() === settings.w+loadedWidth && $cbox.height() === settings.h+loadedHeight) ? 0 : speed;
		
		// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
		// but it has to be shrank down around the size of div#colorbox when it's done.  If not,
		// it can invoke an obscure IE bug when using iframes.
		$wrap[0].style.width = $wrap[0].style.height = "9999px";
		
		function modalDimensions (that) {
			// loading overlay size has to be sure that IE6 uses the correct height.
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = that.style.width;
			$loadingGraphic[0].style.height = $loadingOverlay[0].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
		}
		
		$cbox.dequeue().animate({width:settings.w+loadedWidth, height:settings.h+loadedHeight, top:posTop, left:posLeft}, {duration: animate_speed,
			complete: function(){
				modalDimensions(this);
				
				active = FALSE;
				
				// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
				$wrap[0].style.width = (settings.w+loadedWidth+interfaceWidth) + "px";
				$wrap[0].style.height = (settings.h+loadedHeight+interfaceHeight) + "px";
				
				if (loadedCallback) {loadedCallback();}
			},
			step: function(){
				modalDimensions(this);
			}
		});
	};

	cboxPublic.resize = function (object) {
		if(!open){ return; }
		
		var topMargin,
		prev,
		prevSrc,
		next,
		nextSrc,
		photo,
		timeout,
		speed = settings.transition==="none" ? 0 : settings.speed;
		
		$window.unbind(cbox_resize);
		
		if(!object){
			timeout = setTimeout(function(){ // timer allows IE to render the dimensions before attempting to calculate the height
				var $child = $loaded.wrapInner("<div style='overflow:auto'></div>").children(); // temporary wrapper to get an accurate estimate of just how high the total content should be.
				settings.h = $child.height();
				$loaded.css({height:settings.h});
				$child.replaceWith($child.children()); // ditch the temporary wrapper div used in height calculation
				cboxPublic.position(speed);
			}, 1);
			return;
		}
		
		$loaded.remove();
		$loaded = $('<div id="cboxLoadedContent"/>').html(object);
		
		function getWidth(){
			settings.w = settings.w || $loaded.width();
			settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
			return settings.w;
		}
		function getHeight(){
			settings.h = settings.h || $loaded.height();
			settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
			return settings.h;
		}
		
		$loaded.hide()
		.appendTo($loadingBay)// content has to be appended to the DOM for accurate size calculations.  Appended to an absolutely positioned element, rather than BODY, which avoids an extremely brief display of the vertical scrollbar in Firefox that can occur for a small minority of websites.
		.css({width:getWidth(), overflow:settings.scrolling ? 'auto' : 'hidden'})
		.css({height:getHeight()})// sets the height independently from the width in case the new width influences the value of height.
		.prependTo($content);
		
		$('#cboxPhoto').css({cssFloat:'none'});// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
		
		// Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
		if (isIE6) {
			$('select:not(#colorbox select)').filter(function(){
				return this.style.visibility !== 'hidden';
			}).css({'visibility':'hidden'}).one(cbox_cleanup, function(){
				this.style.visibility = 'inherit';
			});
		}
				
		function setPosition (s) {
			cboxPublic.position(s, function(){
				if (!open) { return; }
				
				if (isIE) {
					//This fadeIn helps the bicubic resampling to kick-in.
					if( photo ){$loaded.fadeIn(100);}
					//IE adds a filter when ColorBox fades in and out that can cause problems if the loaded content contains transparent pngs.
					$cbox[0].style.removeAttribute("filter");
				}
				
				//Waited until the iframe is added to the DOM & it is visible before setting the src.
				//This increases compatability with pages using DOM dependent JavaScript.
				if(settings.iframe){
					$loaded.append("<iframe id='cboxIframe'" + (settings.scrolling ? " " : "scrolling='no'") + " name='iframe_"+new Date().getTime()+"' frameborder=0 src='"+(settings.href || element.href)+"' " + (isIE ? "allowtransparency='true'" : '') + " />");
				}
				
				$loaded.show();
				
				$title.html(settings.title || element.title);
				
				$title.show();
				
				if ($related.length>1) {
					$current.html(settings.current.replace(/\{current\}/, index+1).replace(/\{total\}/, $related.length)).show();
					$next.html(settings.next).show();
					$prev.html(settings.previous).show();
					
					if(settings.slideshow){
						$slideshow.show();
					}
				}
				
				$loadingOverlay.hide();
				$loadingGraphic.hide();
				
				$.event.trigger(cbox_complete);
				if (settings.onComplete) {
					settings.onComplete.call(element);
				}
				
				if (settings.transition === 'fade'){
					$cbox.fadeTo(speed, 1, function(){
						if(isIE){$cbox[0].style.removeAttribute("filter");}
					});
				}
				
				$window.bind(cbox_resize, function(){
					cboxPublic.position(0);
				});
			});
		}
		
		if((settings.transition === 'fade' && $cbox.fadeTo(speed, 0, function(){setPosition(0);})) || setPosition(speed)){}
		
		// Preloads images within a rel group
		if (settings.preloading && $related.length>1) {
			prev = index > 0 ? $related[index-1] : $related[$related.length-1];
			next = index < $related.length-1 ? $related[index+1] : $related[0];
			nextSrc = $(next).data(colorbox).href || next.href;
			prevSrc = $(prev).data(colorbox).href || prev.href;
			
			if(isImage(nextSrc)){
				$('<img />').attr('src', nextSrc);
			}
			
			if(isImage(prevSrc)){
				$('<img />').attr('src', prevSrc);
			}
		}
	};

	cboxPublic.load = function () {
		var href, img, setResize, resize = cboxPublic.resize;
		
		active = TRUE;
		
		/*
		 
		// I decided to comment this out because I can see it causing problems as users
		// really should just set the dimensions on their IMG elements instead,
		// but I'm leaving the code in as it may be useful to someone.
		// To use, uncomment the function and change 'if(textStatus === "success"){ resize(this); }'
		// to 'if(textStatus === "success"){ preload(this); }'
		
		// Preload loops through the HTML to find IMG elements and loads their sources.
		// This allows the resize method to accurately estimate the dimensions of the new content.
		function preload(html){
			var
			$ajax = $(html),
			$imgs = $ajax.find('img'),
			x = $imgs.length;
			
			function loadloop(){
				var img = new Image();
				x = x-1;
				if(x >= 0){
					img.onload = loadloop;
					img.src = $imgs[x].src;
				} else {
					resize($ajax);
				}
			}
			
			loadloop();
		}
		*/
		
		element = $related[index];
		
		settings = $(element).data(colorbox);
		
		//convert functions to static values
		process();
		
		$.event.trigger(cbox_load);
		if (settings.onLoad) {
			settings.onLoad.call(element);
		}
		
		// Evaluate the height based on the optional height and width settings.
		settings.h = settings.height ?
				setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
				settings.innerHeight ?
					setSize(settings.innerHeight, 'y') :
					FALSE;
		settings.w = settings.width ?
				setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
				settings.innerWidth ?
					setSize(settings.innerWidth, 'x') :
					FALSE;
		
		// Sets the minimum dimensions for use in image scaling
		settings.mw = settings.w;
		settings.mh = settings.h;
		
		// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
		// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
		if(settings.maxWidth){
			settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if(settings.maxHeight){
			settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}
		
		href = settings.href || $(element).attr("href");
		
		$loadingOverlay.show();
		$loadingGraphic.show();
		
		if (settings.inline) {
			// Inserts an empty placeholder where inline content is being pulled from.
			// An event is bound to put inline content back when ColorBox closes or loads new content.
			$('<div id="cboxInlineTemp" />').hide().insertBefore($(href)[0]).bind(cbox_load+' '+cbox_cleanup, function(){
				$(this).replaceWith($loaded.children());
			});
			resize($(href));
		} else if (settings.iframe) {
			// IFrame element won't be added to the DOM until it is ready to be displayed,
			// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
			resize(" ");
		} else if (settings.html) {
			resize(settings.html);
		} else if (isImage(href)){
			img = new Image();
			img.onload = function(){
				var percent;
				
				img.onload = null;
				
				img.id = 'cboxPhoto';
				
				$(img).css({margin:'auto', border:'none', display:'block', cssFloat:'left'});
				
				if(settings.scalePhotos){
					setResize = function(){
						img.height -= img.height * percent;
						img.width -= img.width * percent;	
					};
					if(settings.mw && img.width > settings.mw){
						percent = (img.width - settings.mw) / img.width;
						setResize();
					}
					if(settings.mh && img.height > settings.mh){
						percent = (img.height - settings.mh) / img.height;
						setResize();
					}
				}
				
				if (settings.h) {
					img.style.marginTop = Math.max(settings.h - img.height,0)/2 + 'px';
				}
				
				resize(img);
				
				if($related.length > 1){
					$(img).css({cursor:'pointer'}).click(cboxPublic.next);
				}
				
				if(isIE){
					img.style.msInterpolationMode='bicubic';
				}
			};
			img.src = href;
		} else {
			$('<div />').appendTo($loadingBay).load(href, function(data, textStatus){
				if(textStatus === "success"){
					resize(this);
				} else {
					resize($("<p>Request unsuccessful.</p>"));
				}
			});
		}
	};

	// Navigates to the next page/image in a set.
	cboxPublic.next = function () {
		if(!active){
			index = index < $related.length-1 ? index+1 : 0;
			cboxPublic.load();
		}
	};
	
	cboxPublic.prev = function () {
		if(!active){
			index = index > 0 ? index-1 : $related.length-1;
			cboxPublic.load();
		}
	};

	cboxPublic.slideshow = function () {
		var stop, timeOut, className = 'cboxSlideshow_';
		
		$slideshow.bind(cbox_closed, function(){
			$slideshow.unbind();
			clearTimeout(timeOut);
			$cbox.removeClass(className+"off"+" "+className+"on");
		});
		
		function start(){
			$slideshow
			.text(settings.slideshowStop)
			.bind(cbox_complete, function(){
				timeOut = setTimeout(cboxPublic.next, settings.slideshowSpeed);
			})
			.bind(cbox_load, function(){
				clearTimeout(timeOut);	
			}).one("click", function(){
				stop();
				$(this).removeClass(hover);
			});
			$cbox.removeClass(className+"off").addClass(className+"on");
		}
		
		stop = function(){
			clearTimeout(timeOut);
			$slideshow
			.text(settings.slideshowStart)
			.unbind(cbox_complete+' '+cbox_load)
			.one("click", function(){
				start();
				timeOut = setTimeout(cboxPublic.next, settings.slideshowSpeed);
				$(this).removeClass(hover);
			});
			$cbox.removeClass(className+"on").addClass(className+"off");
		};
		
		if(settings.slideshow && $related.length>1){
			if(settings.slideshowAuto){
				start();
			} else {
				stop();
			}
		}
	};

	// Note: to use this within an iframe use the following format: parent.$.fn.colorbox.close();
	cboxPublic.close = function () {
		
		$.event.trigger(cbox_cleanup);
		if (settings.onCleanup) {
			settings.onCleanup.call(element);
		}
		
		open = FALSE;
		$().unbind("keydown.cbox_close keydown.cbox_arrows");
		$window.unbind(cbox_resize+' resize.cboxie6 scroll.cboxie6');
		$overlay.css({cursor: 'auto'}).fadeOut('fast');
		
		$cbox
		.stop(TRUE, FALSE)
		.fadeOut('fast', function () {
			$loaded.remove();
			$cbox.css({'opacity': 1});
			
			try{
				bookmark.focus();
			} catch (er){
				// do nothing
			}
			
			$.event.trigger(cbox_closed);
			if (settings.onClosed) {
				settings.onClosed.call(element);
			}
		});
	};

	// A method for fetching the current element ColorBox is referencing.
	// returns a jQuery object.
	cboxPublic.element = function(){ return $(element); };

	cboxPublic.settings = defaults;

	// Initializes ColorBox when the DOM has loaded
	$(cboxPublic.init);

}(jQuery));

/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.72 (09-SEP-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($) {

var ver = '2.72';

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

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

// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'stop', 'pause', 'resume', 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 conjunction with a options == '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;

		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

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

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

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

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

// process the args that were passed to the plugin fn
function handleArguments(cont, options, arg2) {
	if (cont.cycleStop == undefined)
		cont.cycleStop = 0;
	if (options === undefined || options === null)
		options = {};
	if (options.constructor == String) {
		switch(options) {
		case 'stop':
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			$(cont).removeData('cycle.opts');
			return false;
		case 'pause':
			cont.cyclePause = 1;
			return false;
		case 'resume':
			cont.cyclePause = 0;
			if (arg2 === true) { // resume now!
				options = $(cont).data('cycle.opts');
				if (!options) {
					log('options not found, can not resume');
					return false;
				}
				if (cont.cycleTimeout) {
					clearTimeout(cont.cycleTimeout);
					cont.cycleTimeout = 0;
				}
				go(options.elements, options, 1, 1);
			}
			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 removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

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

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

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

	saveOriginalOpts(opts);

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

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

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

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

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

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

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

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

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

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

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

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

	if (requeue)
		return false;

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

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

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		while((opts.timeout - opts.speed) < 250) // 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) {
		opts.nextSlide = opts.currSlide;
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

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

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

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

	exposeAddSlide(opts, els);

	return opts;
};

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

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

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

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

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

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

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

		$s.css(opts.cssBefore);

		if (opts.pager)
			$.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
		$(els).stop(true,true);
		opts.busy = false;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy)
		return;

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

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

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

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

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

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

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

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

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

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

		// 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];
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			opts.nextSlide = roll ? 0 : opts.nextSlide+1;
			opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
		}

		if (opts.pager)
			$.fn.cycle.updateActivePagerLink(opts.pager, opts.currSlide);
	}

	// stage the next transtion
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(curr, next, opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.rev) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide) {
	$(pager).find('a').removeClass('activeSlide').filter('a:eq('+currSlide+')').addClass('activeSlide');
};

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

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

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

	if ($.isFunction(opts.prevNextClick))
		opts.prevNextClick(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, val>=0);
	return false;
};

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

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder))
		a = opts.pagerAnchorBuilder(i,el);
	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);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	$a.bind(opts.pagerEvent, function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		if ($.isFunction(opts.pagerClick))
			opts.pagerClick(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
		return false;
	});
	
	if (opts.pagerEvent != 'click')
		$a.click(function(){return false;}); // supress click
	
	if (opts.pauseOnPagerHover)
		$a.hover(function() { opts.$cont[0].cyclePause++; }, function() { opts.$cont[0].cyclePause--; } );
};

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

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

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

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

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

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

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

})(jQuery);


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

})(jQuery);

function addEvent(elm, evType, fn, useCapture) {
	if (elm.addEventListener) { 
	elm.addEventListener(evType, fn, useCapture); 
	return true; 
	}
	else if (elm.attachEvent) { 
	var r = elm.attachEvent('on' + evType, fn); 
	EventCache.add(elm, evType, fn);
	return r; 
	}
	else {
	elm['on' + evType] = fn;
	}
}
function getEventSrc(e) {
	if (!e) e = window.event;

	if (e.originalTarget)
	return e.originalTarget;
	else if (e.srcElement)
	return e.srcElement;
}
function addLoadEvent(func) {
var oldonload = window.onload;
	if (typeof window.onload != 'function') {
	window.onload = func;
	} else {
	window.onload = 
		function() {
		oldonload();
		func();
		}
	}
}
var EventCache = function(){
	var listEvents = [];
	return {
		listEvents : listEvents,
	
		add : function(node, sEventName, fHandler, bCapture){
			listEvents.push(arguments);
		},
	
		flush : function(){
			var i, item;
			for(i = listEvents.length - 1; i >= 0; i = i - 1){
				item = listEvents[i];
				
				if(item[0].removeEventListener){
					item[0].removeEventListener(item[1], item[2], item[3]);
				};
				
				/* From this point on we need the event names to be prefixed with 'on" */
				if(item[1].substring(0, 2) != "on"){
					item[1] = "on" + item[1];
				};
				
				if(item[0].detachEvent){
					item[0].detachEvent(item[1], item[2]);
				};
				
				item[0][item[1]] = null;
			};
		}
	};
}();


addEvent(window,'unload',EventCache.flush, false);

function isEmailAddr(email)
{
  var result = false;
  var theStr = new String(email);
  var index = theStr.indexOf("@");
  if (index > 0)
  {
	var pindex = theStr.indexOf(".",index);
	if ((pindex > index+1) && (theStr.length > pindex+1))
	result = true;
  }
  return result;
}

function validateFields() {
var frmEl = document.getElementById('cForm');
var posName = document.getElementById('posName');
var posEmail = document.getElementById('posEmail');
var posRegard = document.getElementById('posRegard');
var posText = document.getElementById('posText');
var strCC = document.getElementById('selfCC');
var whiteSpace = /^[\s]+$/;
	if ( posText.value == '' || whiteSpace.test(posText.value) ) {
		alert("Proszę uzupełnij wolne pola.");
	}
	else if (posEmail.value.length<1){
	alert("Proszę podaj adres email.");
	}
	else if (isEmailAddr(posEmail.value)==false){
	alert("Proszę podaj poprawny adres email.");
	}
	else if ( posEmail.value == '' && strCC.checked == true ) {
		alert("Why are you trying to CC yourself without an email?");
		alert("Just for that...");
		alert("I\'m Clearing all the fields!");
		frmEl.reset();
		alert("There. Satisified.");
		alert("Now start over!");
		posName.focus();
	}
	else {
		sendPosEmail();
	}
}
function sendPosEmail () {
	var success = document.getElementById('emailSuccess');
	var posName = document.getElementById('posName');
	var posEmail = document.getElementById('posEmail');
	var posRegard = document.getElementById('posRegard');
	var posText = document.getElementById('posText');
	var strCC = document.getElementById('selfCC').value;
	var page = "scripts/xmlHttpRequest.php?contact=true&xml=true";
	
	showContactTimer(); // quickly begin the load bar
	success.style.display = 'none'; // hide the success bar (incase this is a multi-email
	
	// convert (&, +, =) to string equivs. Needed so URL encoded POST won't choke.
	var str1 = posName.value;
	str1 = str1.replace(/&/g,"**am**");
	str1 = str1.replace(/=/g,"**eq**");
	str1 = str1.replace(/\+/g,"**pl**");
	var str2 = posEmail.value;
	str2 = str2.replace(/&/g,"**am**");
	str2 = str2.replace(/=/g,"**eq**");
	str2 = str2.replace(/\+/g,"**pl**");
	var str3 = posRegard.value;
	str3 = str3.replace(/&/g,"**am**");
	str3 = str3.replace(/=/g,"**eq**");
	str3 = str3.replace(/\+/g,"**pl**");
	var str4 = posText.value;
	str4 = str4.replace(/&/g,"**am**");
	str4 = str4.replace(/=/g,"**eq**");
	str4 = str4.replace(/\+/g,"**pl**");
	
	var stuff = "selfCC="+strCC+"&posName="+str1+"&posEmail="+str2+"&posRegard="+str3+"&posText="+str4;
	loadXMLPosDoc(page,stuff)
}
function showContactTimer () {
	var loader = document.getElementById('loadBar');
	loader.style.display = 'block';
	sentTimer = setTimeout("hideContactTimer()",6000);
}

function hideContactTimer () {
	var loader = document.getElementById('loadBar');
	var success = document.getElementById('emailSuccess');
	var fieldArea = document.getElementById('contactFormArea');
	var inputs = fieldArea.getElementsByTagName('input');
	var inputsLen = inputs.length;
	var tAreas = fieldArea.getElementsByTagName('textarea');
	var tAreasLen = tAreas.length;
	// Hide the load bar alas! Done Loading
	loader.style.display = "none";
	success.style.display = "block";
	success.innerHTML = '<strong style="color:red;">'+grabPosXML("confirmation")+'</strong>';
	// Now Hijack the form elements
	for ( i=0;i<inputsLen;i++ ) {
		if ( inputs[i].getAttribute('type') == 'text' ) {
			inputs[i].value = '';
		}
	}
	for ( j=0;j<tAreasLen;j++ ) {
		tAreas[j].value = '';
	}
}

function ajaxContact() {
var frmEl = document.getElementById('cForm');
addEvent(frmEl, 'submit', validateFields, false);
frmEl.onsubmit = function() { return false; }
}
addEvent(window, 'load',ajaxContact, false);

var pos; // variable for posting information
function loadXMLPosDoc(url,posData) {
    // branch for native XMLHttpRequest object
    if (window.XMLHttpRequest) {
        pos = new XMLHttpRequest();
        pos.onreadystatechange = processPosChange;
        pos.open("POST", url, false);
		pos.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
        pos.send(posData);
    // branch for IE/Windows ActiveX version
    } else if (window.ActiveXObject) {
        pos = new ActiveXObject("Microsoft.XMLHTTP");
        if (pos) {
            pos.onreadystatechange = processPosChange;
            pos.open("POST", url, false);
			pos.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
            pos.send(posData);
        }
    }
}

function grabPosXML (tagName) {
return pos.responseXML.documentElement.getElementsByTagName(tagName)[0].childNodes[0].nodeValue;
}

function processPosChange() {
    // page loaded "complete"
    if (pos.readyState == 4) {
        // page is "OK"
        if (pos.status == 200) {
			if ( grabPosXML("posStatus") == 'NOTOK' ) { 
				alert('There were problems Sending Email. Please check back in a couple minutes');
			}
		}
	}
}

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

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 by Yanone. All rights reserved.
 * 
 * Trademark:
 * Yanone Kaffeesatz is a trademark of Yanone
 * 
 * Description:
 * Kaffeesatz was Yanone's first ever finished typeface.
 * 
 * Manufacturer:
 * Yanone
 * 
 * Designer:
 * Yanone
 * 
 * Vendor URL:
 * http://yanone.de/typedesign/
 * 
 * License information:
 * http://creativecommons.org/licenses/by/2.0/de/deed.en
 */
Cufon.registerFont({"w":155,"face":{"font-family":"Yanone Kaffeesatz","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-40.7934 -351 341 72.1422","underline-thickness":"18","underline-position":"-6.84","stemh":"17","stemv":"23","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":61},"!":{"d":"18,-14v0,-9,6,-16,16,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-16,-6,-16,-16xm24,-69r-2,-180v0,-5,6,-6,26,-6r-4,177v0,8,-6,9,-20,9","w":68},"\"":{"d":"33,-282v-4,24,8,80,-17,72v-1,-6,-5,-55,-2,-72v3,-1,16,0,19,0xm75,-282v-4,24,8,80,-17,72v-1,-6,-6,-55,-3,-72v3,-1,17,0,20,0","w":87,"k":{"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u20ac":40,"\u017e":25,"\u017d":3,"\u0178":-7,"\u0161":35,"\u0160":5,"\u0153":33,"\u0152":7,"\u00ff":26,"\u00fd":26,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f8":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00f1":36,"\u00ef":-16,"\u00ee":-15,"\u00ec":-18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":37,"\u00e6":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00dd":-7,"\u00dc":5,"\u00db":5,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":3,"\u00cf":-4,"\u00ce":-13,"\u00cb":3,"\u00ca":1,"\u00c7":17,"\u00c6":41,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"\u00bf":36,"\u00a2":11,"r":36,"q":42,"m":36,"\\":-12,"Q":7,"@":26,"?":-7,"9":14,"6":12,"4":34,"3":3,"2":5,"1":14,"0":17,"\/":43,"+":14,"C":17,"G":12,"T":-6,"V":-5,"W":-5,"Y":-7,"d":42,"f":15,"t":8,"u":27,"v":24,"w":24,"y":26,"c":37,"e":36,"o":33,"O":7,")":-7,"]":-7,"A":41,"J":45,"x":23,"a":27,"z":25,"g":40,"n":36,"p":37,"s":35,"(":28,"[":28}},"#":{"d":"142,-88v4,27,-14,12,-29,16v-4,18,10,39,-20,33r2,-33r-41,0v-4,17,10,39,-19,33r2,-33r-23,0v-4,-24,8,-14,23,-16r3,-45r-26,0v-5,-26,11,-13,27,-16v4,-16,-10,-36,19,-31r-2,31r41,0v4,-17,-9,-36,20,-31r-2,31r25,0v3,26,-11,13,-26,16r-2,45r28,0xm58,-133r-3,45r41,0r2,-45r-40,0"},"$":{"d":"67,46r0,-41v-40,-5,-51,-9,-37,-30v7,6,19,11,40,11v52,-2,52,-56,17,-83v-19,-24,-63,-49,-63,-82v0,-24,18,-39,48,-42v3,-19,-11,-48,18,-44r0,43v37,5,47,6,33,26v-14,-11,-83,-14,-77,17v9,49,87,69,86,126v0,29,-12,52,-47,57v-3,19,11,47,-18,42"},"%":{"d":"24,-190v0,-46,19,-66,51,-66v31,0,48,15,48,66v0,45,-18,66,-50,66v-31,0,-49,-9,-49,-66xm43,-189v0,40,11,49,30,49v19,0,31,-14,31,-50v0,-40,-10,-50,-29,-50v-19,0,-32,12,-32,51xm138,-62v0,-46,19,-67,51,-67v31,0,48,15,48,66v0,45,-18,67,-50,67v-31,0,-49,-9,-49,-66xm157,-60v0,40,10,48,29,48v19,0,32,-14,32,-50v0,-40,-10,-50,-29,-50v-19,0,-32,13,-32,52xm57,8v0,0,-13,-2,-13,-8v0,-7,157,-258,157,-258v0,0,11,3,11,9v0,2,-155,257,-155,257","w":260},"&":{"d":"85,-254v40,0,63,7,47,30v-25,-16,-86,-27,-86,22v0,31,46,99,85,145v16,-50,2,-102,-24,-122v26,-3,47,-2,70,-1v7,21,-20,15,-40,16v17,14,30,83,9,124v13,14,24,24,30,28v-10,27,-19,14,-41,-10v-12,15,-29,26,-56,26v-93,-1,-76,-109,-25,-133v-38,-51,-45,-125,31,-125xm121,-37v-18,-22,-40,-49,-58,-77v-36,17,-51,97,15,99v21,0,34,-9,43,-22","w":184},"'":{"d":"33,-282v-4,24,8,80,-17,72v-1,-6,-5,-55,-2,-72v3,-1,16,0,19,0","w":46,"k":{"z":25,"y":26,"x":23,"w":24,"v":24,"u":27,"t":8,"s":35,"p":37,"o":33,"n":36,"g":40,"f":15,"e":36,"d":42,"c":37,"a":27,"]":-7,"[":28,"Y":-7,"W":-5,"V":-5,"T":-6,"O":7,"J":45,"G":12,"C":17,"A":41,")":-7,"(":28,"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u20ac":40,"\u017e":25,"\u017d":3,"\u0178":-7,"\u0161":35,"\u0160":5,"\u0153":33,"\u0152":7,"\u00ff":26,"\u00fd":26,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f8":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00f1":36,"\u00ef":-16,"\u00ee":-15,"\u00ec":-18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":37,"\u00e6":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00dd":-7,"\u00dc":5,"\u00db":5,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":3,"\u00cf":-4,"\u00ce":-13,"\u00cb":3,"\u00ca":1,"\u00c7":17,"\u00c6":41,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"\u00bf":36,"\u00a2":11,"r":36,"q":42,"m":36,"\\":-12,"Q":7,"@":26,"?":-7,"9":14,"6":12,"4":34,"3":3,"2":5,"1":14,"0":17,"\/":38,"+":14}},"(":{"d":"45,-117v0,92,36,153,53,173v-2,8,-6,14,-12,14v-6,0,-61,-63,-61,-187v0,-118,58,-174,62,-174v6,0,9,4,11,13v-21,24,-53,76,-53,161","w":105,"k":{"\ufb00":10,"\u20ac":24,"\u2044":14,"\u2039":9,"\u2019":-7,"\u2018":-7,"\u2014":15,"\u2013":15,"\u017e":10,"\u0153":13,"\u0152":7,"\u00ff":-5,"\u00fd":-5,"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00f1":12,"\u00ef":-3,"\u00ed":8,"\u00ec":-8,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00cf":-7,"\u00ce":-20,"\u00c7":9,"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"\u00a2":22,"r":12,"q":11,"m":12,"]":-21,"\\":-11,"[":21,"Q":7,"\/":4,"+":22,"*":8,"'":-7,"C":9,"G":7,"d":11,"t":6,"u":14,"v":14,"w":15,"y":-5,"c":11,"e":11,"o":13,"\"":-7,"-":15,"\u2212":15,"\u201c":-7,"\u201d":-7,"\u00ab":9,"O":7,"A":10,"x":8,"a":10,"\u00e5":10,"z":10,"Z":6,"\u017d":6,"n":12,"j":-47}},")":{"d":"61,-117v0,-82,-31,-137,-53,-161v2,-9,5,-13,11,-13v4,0,62,54,62,174v0,120,-56,187,-62,187v-6,0,-9,-6,-11,-14v18,-22,53,-80,53,-173","w":105,"k":{"\u2019":27,"\u2018":27,"'":27,"\"":27,"\u201c":27,"\u201d":27}},"*":{"d":"95,-243r-5,59v0,4,-3,5,-10,4r-5,-61v0,-6,11,-6,20,-2xm100,-177r56,-26v7,5,10,18,3,20r-60,18v-4,-5,-4,-9,1,-12xm8,-185v7,-40,43,6,64,11v0,6,-2,8,-6,7xm121,-90r-32,-58v-2,-4,0,-6,6,-9r41,52v5,6,-6,14,-15,15xm27,-106r43,-48v3,-3,7,-2,10,2r-35,57v-5,8,-15,-4,-18,-11","w":169,"k":{"\u0153":4,"\u0152":5,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00d8":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d3":5,"\u00d2":5,"o":4,"g":11,"e":7,"d":7,"c":7,"Z":12,"X":5,"T":5,"Q":5,"O":5,"]":8,"J":48,"A":18,")":8,"\u20ac":9,"\u017d":15,"\u00e7":9,"\u00c6":44,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"q":4,"4":10,"\/":17}},"+":{"d":"141,-111v5,36,-33,11,-54,18v-6,21,17,61,-18,54r0,-54r-54,0v-5,-35,33,-12,54,-18v6,-21,-16,-59,18,-54r0,54r54,0","k":{"\u201d":14,"\u201c":14,"]":21,")":21,"\"":14,"\u2019":14,"\u2018":14,"'":14}},",":{"d":"27,-1v-12,-6,-8,-30,7,-29v9,0,15,4,15,17v0,26,-21,68,-33,45v8,-13,11,-22,11,-33","w":64,"k":{"\u00f8":7,"y":20,"w":14,"v":16,"u":10,"t":18,"o":7,"j":-19,"f":14,"e":7,"d":7,"c":5,"Y":19,"W":11,"V":17,"U":1,"T":31,"O":13,"G":4,"C":12,"\ufb04":14,"\ufb03":14,"\ufb00":14,"\u0178":19,"\u0153":7,"\u0152":13,"\u00ff":20,"\u00fd":20,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":5,"\u00dd":19,"\u00dc":1,"\u00db":1,"\u00da":1,"\u00d9":1,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c7":12,"q":7,"\\":44,"Q":13,"\/":-5}},"-":{"d":"84,-93r-69,0v0,-13,0,-18,5,-18r69,0v0,14,0,18,-5,18","w":104,"k":{"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u017e":30,"\u017d":17,"\u0178":24,"\u0160":39,"\u00ff":14,"\u00fd":14,"\u00dd":24,"\u00c6":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\\":29,"T":39,"V":15,"W":12,"Y":24,"f":12,"t":12,"v":10,"w":9,"y":14,")":14,"]":14,"A":13,"J":43,"X":24,"x":32,"S":39,"z":30,"\u00bb":20,"\u203a":20,"Z":17}},".":{"d":"18,-14v0,-9,6,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16","w":64,"k":{"\ufb04":14,"\ufb03":14,"\ufb00":14,"\u0178":19,"\u0153":7,"\u0152":13,"\u00ff":20,"\u00fd":20,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":5,"\u00dd":19,"\u00dc":1,"\u00db":1,"\u00da":1,"\u00d9":1,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c7":12,"q":7,"\\":44,"Q":13,"\/":-5,"C":12,"G":4,"T":31,"V":17,"W":11,"Y":19,"d":7,"f":14,"t":18,"u":10,"v":16,"w":14,"y":20,"c":5,"e":7,"o":7,"\u00f8":7,"O":13,"U":1}},"\/":{"d":"107,-275r-81,277v-2,5,-4,5,-22,5r81,-276v2,-6,3,-6,22,-6","w":110,"k":{"\u201e":64,"\u201d":-14,"\u201c":-14,"\u017f":8,"\u00ff":9,"\u00df":8,"\u00d3":9,"\u00bb":14,"\u00ab":22,"z":13,"y":9,"x":15,"w":6,"v":3,"u":14,"t":6,"s":19,"p":17,"o":20,"n":16,"j":2,"i":1,"g":19,"f":3,"e":21,"d":24,"c":23,"a":12,"Z":9,"Y":-9,"X":3,"W":-11,"V":-7,"T":-11,"O":9,"J":23,"G":10,"C":14,"A":23,":":18,".":59,")":-15,"\"":-14,"\ufb00":3,"\u2212":10,"\u20ac":18,"\u203a":20,"\u2039":23,"\u2026":64,"\u2022":19,"\u201a":64,"\u2019":-19,"\u2018":-14,"\u2014":6,"\u2013":21,"\u017e":4,"\u017d":6,"\u0178":-11,"\u0161":13,"\u0160":4,"\u0153":21,"\u0152":8,"\u0131":20,"\u00fd":3,"\u00fc":13,"\u00fb":15,"\u00fa":18,"\u00f9":19,"\u00f8":27,"\u00f7":21,"\u00f6":18,"\u00f5":18,"\u00f4":17,"\u00f3":18,"\u00f2":19,"\u00f1":7,"\u00ef":-15,"\u00ee":-7,"\u00ed":3,"\u00ec":-18,"\u00eb":16,"\u00ea":18,"\u00e9":16,"\u00e8":19,"\u00e7":24,"\u00e6":18,"\u00e5":15,"\u00e4":10,"\u00e3":3,"\u00e2":12,"\u00e1":17,"\u00e0":12,"\u00dd":-9,"\u00dc":-2,"\u00d8":8,"\u00d7":23,"\u00d6":4,"\u00d5":10,"\u00d4":6,"\u00d2":5,"\u00d1":5,"\u00cf":-6,"\u00ce":-5,"\u00cb":3,"\u00ca":5,"\u00c7":10,"\u00c6":53,"\u00c5":23,"\u00c4":23,"\u00c3":23,"\u00c2":23,"\u00c1":27,"\u00c0":22,"\u00bf":16,"\u00b7":19,"\u00a2":28,"\u00a1":7,"r":16,"q":22,"m":16,"_":51,"]":-2,"\\":-9,"[":20,"Q":4,"B":4,"@":12,"?":-12,"=":22,";":19,"9":14,"8":8,"7":5,"6":12,"5":8,"4":28,"3":12,"2":10,"1":13,"0":16,"\/":42,",":59,"'":-14,"%":12}},"0":{"d":"13,-107v0,-71,19,-109,67,-109v47,0,63,34,63,105v0,75,-17,116,-66,116v-47,0,-64,-38,-64,-112xm34,-104v0,64,13,91,43,91v33,0,45,-34,45,-99v0,-57,-9,-86,-41,-86v-35,0,-47,35,-47,94","k":{"\u201d":15,"\u201c":15,"\u0178":14,"\u00dd":14,"Y":14,"X":11,"W":9,"V":9,"T":23,"J":8,"\"":15,"\u2019":15,"\u2018":15,"_":22,"]":27,"\\":12,"'":15}},"1":{"d":"28,-187v-2,-3,-3,-9,-3,-14v3,-3,60,-18,70,-14r-4,196r52,-1v0,11,-1,20,-4,20r-126,0r0,-15v0,-3,45,-4,57,-4r5,-176v-7,0,-47,8,-47,8","k":{"\u201d":33,"\u201c":33,"\"":33,"\u2019":33,"\u2018":33,"\/":-2,"*":24,"'":33}},"2":{"d":"13,-8v23,-61,102,-105,100,-159v8,-43,-73,-31,-90,-16v-11,-29,15,-33,61,-33v42,0,51,17,51,47v0,56,-60,94,-96,150r104,-1v0,12,-1,20,-4,20r-125,0v-1,-1,-1,-5,-1,-8","k":{"\u201d":8,"\u201c":8,"\"":8,"\u2019":8,"\u2018":8,"\/":-5,"'":8}},"3":{"d":"87,-109v27,3,52,16,52,54v0,55,-33,91,-81,91v-36,0,-45,-9,-38,-31v41,31,97,-2,97,-60v0,-35,-29,-40,-59,-41r0,-14v31,-17,50,-38,50,-60v0,-37,-70,-29,-87,-13v-12,-27,12,-33,59,-33v83,0,48,86,7,107","k":{"\u201d":12,"\u201c":12,"\"":12,"\u2019":12,"\u2018":12,"_":9,"\/":-4,"'":12}},"4":{"d":"114,-215r-1,141v21,3,35,-9,31,7v3,18,-18,11,-31,12r0,48v0,7,1,7,-20,7r0,-55r-74,0v-4,-4,-5,-11,-5,-16v0,-22,44,-111,80,-143v5,-5,15,-3,20,-1xm32,-74r61,0r3,-116v-22,24,-54,74,-64,116","k":{"\u201d":12,"\u201c":12,"\"":12,"\u2019":12,"\u2018":12,"*":10,"'":12}},"5":{"d":"27,-216r111,0v0,15,-2,18,-12,18v-6,0,-81,-1,-81,-1r-7,63v42,-7,101,-7,101,66v0,64,-23,106,-83,106v-40,0,-47,-7,-39,-31v9,8,20,12,38,12v47,0,63,-38,63,-84v1,-62,-63,-59,-101,-49","k":{"_":6}},"6":{"d":"134,-228v-64,-18,-96,8,-101,103v27,-51,110,-46,110,37v0,59,-22,93,-68,93v-53,0,-61,-46,-61,-112v0,-108,37,-145,82,-145v29,0,47,2,38,24xm124,-83v0,-74,-69,-68,-91,-20v-1,53,8,90,43,90v31,0,48,-30,48,-70","k":{"\u201d":-2,"\u201c":-2,"\"":-2,"\u2019":-2,"\u2018":-2,"_":12,"'":-2}},"7":{"d":"19,-216r129,0v-43,71,-81,152,-98,247v-12,0,-20,-1,-20,-5v0,-96,59,-180,89,-224r-94,0v-5,0,-6,-8,-6,-18","k":{"\u00c6":29,"q":23,"g":26,"e":17,"d":23,"a":15,"]":8,"X":8,"J":36,"A":29,";":19,":":19,")":8,"\u017e":15,"\u017d":29,"\u0161":15,"\u0160":29,"\u00ff":15,"\u00fc":15,"\u00fb":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f1":15,"\u00ef":15,"\u00ee":15,"\u00eb":17,"\u00ea":17,"\u00e9":17,"\u00e8":17,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00dc":29,"\u00db":29,"\u00d6":29,"\u00d5":29,"\u00d4":29,"\u00d1":29,"\u00cb":29,"\u00ca":29,"\u00c5":29,"\u00c4":29,"\u00c3":29,"\u00c2":29,"\u00c1":29,"\u00c0":29,"_":68,"@":14,"\/":21}},"8":{"d":"60,-136v-21,-11,-44,-29,-43,-57v0,-41,29,-61,62,-61v28,0,62,9,62,58v0,32,-22,50,-43,62v24,14,47,33,46,69v0,40,-21,68,-63,68v-89,0,-80,-118,-21,-139xm125,-65v0,-35,-24,-46,-46,-60v-53,10,-68,109,1,109v28,0,45,-19,45,-49xm123,-195v-2,-61,-87,-50,-87,1v0,25,23,38,45,50v22,-11,42,-28,42,-51","k":{"_":9}},"9":{"d":"23,15v68,15,95,-26,100,-105v-27,52,-110,44,-110,-38v0,-61,22,-92,68,-92v51,0,62,33,62,110v0,100,-31,147,-91,147v-24,-1,-35,-3,-29,-22xm32,-131v-1,72,69,68,92,19v0,-51,-5,-89,-42,-89v-32,0,-50,23,-50,70","k":{"\u201d":8,"\u201c":8,"\"":8,"\u2019":8,"\u2018":8,"_":5,"'":8}},":":{"d":"18,-139v0,-9,5,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16xm18,-14v0,-9,5,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16","w":64,"k":{"\/":-5,"T":20,"V":4}},";":{"d":"18,-139v0,-9,5,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16xm26,-1v-12,-6,-9,-30,7,-29v9,0,15,4,15,17v0,26,-21,68,-33,45v8,-13,11,-22,11,-33","w":64,"k":{"j":-31,"T":20,"\/":-7,"V":4}},"=":{"d":"136,-124r-121,0v0,-13,0,-18,5,-18r121,0v0,14,0,18,-5,18xm136,-61r-121,0v0,-13,0,-18,5,-18r121,0v0,14,0,18,-5,18","k":{"\/":-4}},"?":{"d":"31,-14v0,-9,5,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16xm37,-71v-20,-51,44,-86,44,-130v-1,-48,-48,-38,-69,-24v-11,-22,7,-31,39,-31v26,0,51,13,51,52v0,61,-60,73,-47,131v-3,3,-12,3,-18,2","w":106,"k":{"\u201d":-9,"\u201c":-9,"\u00c6":21,"J":5,"A":21,"\"":-9,"\u2019":-9,"\u2018":-9,"\u017d":21,"\u0160":21,"\u00dc":21,"\u00db":21,"\u00d6":21,"\u00d5":21,"\u00d4":21,"\u00d1":21,"\u00cb":21,"\u00ca":21,"\u00c5":21,"\u00c4":21,"\u00c3":21,"\u00c2":21,"\u00c1":21,"\u00c0":21,"'":-9}},"@":{"d":"97,-152v-7,-26,15,-23,45,-25v67,-4,31,96,37,154v5,3,10,5,15,5v11,0,39,-16,39,-106v0,-75,-24,-105,-88,-105v-66,0,-106,34,-106,136v0,125,40,141,99,141v41,0,65,-10,84,-19v2,4,6,10,6,16v0,7,-34,22,-88,22v-66,0,-121,-12,-121,-162v0,-110,51,-152,126,-152v72,0,108,35,108,120v0,119,-43,126,-58,126v-10,0,-17,-4,-22,-9v-29,14,-91,24,-86,-45v4,-55,36,-62,76,-54v4,-21,0,-60,-28,-51v-16,0,-27,2,-38,8xm135,-16v39,2,24,-48,28,-80v-32,-6,-56,-1,-57,42v-1,33,12,38,29,38","w":271,"k":{"\u201d":14,"\u201c":14,"\u0178":3,"\u00dd":3,"x":5,"j":-24,"Y":3,"X":2,"V":6,"T":12,"J":7,"\"":14,"\u2019":14,"\u2018":14,"7":2,"\/":-4,"'":14}},"A":{"d":"134,0r-18,-69r-75,0r-17,65v-1,7,-12,4,-21,4r68,-250v1,-4,11,-3,15,-2r68,247v1,4,0,5,-8,5r-12,0xm78,-219v-4,31,-24,95,-32,131r65,0","w":156,"k":{"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-13,"*":21,"'":37}},"B":{"d":"91,-139v19,2,42,5,42,53v0,94,-46,87,-113,86r0,-246v2,-12,32,-6,45,-6v27,0,60,10,60,51v0,46,-14,56,-34,62xm40,-128r0,110v47,2,70,-4,70,-67v0,-52,-32,-44,-70,-43xm40,-234r0,88v41,1,64,1,64,-51v0,-39,-29,-38,-64,-37","w":141,"k":{"\u2026":8,"\u201a":8,"\u2019":3,"\u2018":3,"\u017e":7,"\u017d":3,"\u0178":3,"\u0160":3,"\u00ff":8,"\u00fd":8,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00e7":4,"\u00dd":3,"\u00dc":3,"\u00db":3,"\u00d6":3,"\u00d5":3,"\u00d4":3,"\u00d1":3,"\u00cb":3,"\u00ca":3,"\u00c6":3,"\u00c5":3,"\u00c4":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u00c0":3,"_":8,",":8,"'":3,"T":5,"V":3,"Y":3,"t":8,"v":6,"w":5,"y":8,"\"":3,"\u201c":3,"\u201d":3,")":5,"]":5,"A":3,".":8,"J":4,"X":11,"x":14,"\u201e":8}},"C":{"d":"84,-257v32,0,37,12,30,30v-3,-3,-14,-11,-26,-11v-26,0,-53,15,-53,124v0,82,21,98,45,98v14,0,30,-8,35,-16v11,21,-7,37,-37,37v-31,0,-64,-6,-64,-119v0,-127,38,-143,70,-143","w":127,"k":{"\ufb04":10,"\ufb03":10,"\ufb00":10,"\u2039":11,"\u2026":-1,"\u201a":-1,"\u2019":-1,"\u2018":-1,"\u2014":31,"\u2013":31,"\u017e":3,"\u0161":5,"\u0160":4,"\u0153":8,"\u0152":9,"\u00ff":26,"\u00fd":26,"\u00fc":8,"\u00fb":8,"\u00fa":8,"\u00f9":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":5,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":2,"q":5,"Q":9,"@":4,"0":10,"\/":-8,",":-1,"*":7,"'":-1,"C":2,"G":6,"d":5,"f":10,"t":7,"u":8,"v":24,"w":22,"y":26,"c":5,"e":8,"o":8,"\u00f8":8,"\"":-1,"-":31,"\u2212":31,"\u201c":-1,"\u201d":-1,"\u00ab":11,"O":9,".":-1,"x":6,"\u201e":-1,"S":4,"a":5,"z":3}},"D":{"d":"20,-246v3,-12,31,-6,45,-6v46,0,70,29,70,111v0,140,-26,145,-115,141r0,-246xm113,-141v0,-82,-14,-97,-73,-93r0,215r24,0v25,0,49,-15,49,-122","w":149,"k":{"\u2026":15,"\u201a":15,"\u2019":13,"\u2018":13,"\u017e":1,"\u017d":12,"\u0178":9,"\u0161":1,"\u0160":12,"\u0153":4,"\u00ff":1,"\u00fc":1,"\u00fb":1,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":1,"\u00ef":1,"\u00ee":1,"\u00eb":1,"\u00ea":1,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,"\u00dd":9,"\u00dc":12,"\u00db":12,"\u00d6":12,"\u00d5":12,"\u00d4":12,"\u00d1":12,"\u00cb":12,"\u00ca":12,"\u00c6":12,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"q":4,"_":27,",":15,"'":13,"T":10,"V":5,"W":8,"Y":9,"o":4,"\u00f8":4,"\"":13,"\u201c":13,"\u201d":13,")":7,"]":7,"A":12,".":15,"J":16,"x":5,"\u201e":15,"a":1}},"E":{"d":"40,-18r71,0v0,17,0,18,-4,18r-86,0r0,-247v0,0,-1,-5,4,-5r86,0v0,16,1,18,-3,18r-68,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,111","w":121,"k":{"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u0161":5,"\u0153":7,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":1,"q":6,"0":4,"\/":-5,"'":-4,"d":6,"u":1,"w":6,"y":6,"c":4,"e":6,"o":7,"\u00f8":7,"\"":-4,"-":12,"\u2212":12,"\u201c":-4,"\u201d":-4,"x":5,"a":5,"z":3}},"F":{"d":"40,-5v1,7,-12,5,-19,5r0,-247v0,0,-1,-5,4,-5r86,0v0,16,1,18,-3,18r-68,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,124","w":117,"k":{"\u2039":10,"\u2026":49,"\u201a":49,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":6,"\u017d":24,"\u0161":6,"\u0160":24,"\u0153":11,"\u00ff":8,"\u00fd":8,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":6,"\u00ef":6,"\u00ee":6,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":7,"\u00e6":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00dc":24,"\u00db":24,"\u00d6":24,"\u00d5":24,"\u00d4":24,"\u00d1":24,"\u00cb":24,"\u00ca":24,"\u00c6":24,"\u00c5":24,"\u00c4":24,"\u00c3":24,"\u00c2":24,"\u00c1":24,"\u00c0":24,"r":5,"q":9,"_":53,"@":2,"0":5,"\/":14,",":49,"'":-4,"d":9,"t":5,"u":7,"v":5,"w":6,"y":8,"c":7,"e":9,"o":11,"\"":-4,"-":12,"\u2212":12,"\u201c":-4,"\u201d":-4,"\u00ab":10,"A":24,".":49,"J":37,"x":17,"\u201e":49,"a":6,"z":6,"g":8,"\u00bb":8,"\u203a":8}},"G":{"d":"89,-257v30,0,45,8,35,29v-55,-26,-90,-3,-90,105v0,95,20,109,47,109v18,0,30,-9,30,-13r0,-99r-36,0v1,-8,-4,-17,6,-17r48,0r0,128v-4,6,-20,20,-49,20v-42,0,-67,-22,-67,-127v0,-111,31,-135,76,-135","w":143,"k":{"\u0178":1,"\u00ff":5,"\u00fd":5,"\u00dd":1,"\/":-4,"Y":1,"v":5,"y":5,")":3,"]":3,"x":6}},"H":{"d":"116,0r0,-128r-76,0r0,123v0,5,0,5,-20,5r0,-247v0,-5,0,-5,20,-5r0,105r76,0r0,-100v0,-5,0,-5,20,-5r0,247v0,5,0,5,-20,5","k":{"\/":-4}},"I":{"d":"19,0r0,-242v0,-10,2,-10,21,-10v-1,3,-1,247,0,247v0,5,-1,5,-21,5","w":59,"k":{"\/":-7}},"J":{"d":"69,-68r0,-174v0,-10,0,-10,20,-10r0,193v0,32,-5,64,-45,64v-33,0,-41,-12,-33,-31v7,8,17,13,30,13v26,0,28,-22,28,-55","w":108,"k":{"\u2026":9,"\u201a":9,"\u017d":8,"\u0160":8,"\u00dc":8,"\u00db":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d1":8,"\u00cb":8,"\u00ca":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"\u00c3":8,"\u00c2":8,"\u00c1":8,"\u00c0":8,"_":15,"\/":-4,",":9,")":3,"]":3,"A":8,".":9,"J":6,"x":4,"\u201e":9}},"K":{"d":"19,0r0,-247v0,-5,0,-5,20,-5r0,109r73,-108v7,-1,27,-4,20,6r-73,102v52,35,73,137,73,137v2,10,-12,5,-20,6v1,-14,-27,-111,-73,-129r0,124v0,5,0,5,-20,5","w":141,"k":{"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u2039":6,"\u2019":-2,"\u2018":-2,"\u2014":15,"\u2013":15,"\u017e":6,"\u0161":6,"\u0153":7,"\u0152":8,"\u00ff":16,"\u00fd":16,"\u00fc":5,"\u00fb":5,"\u00fa":5,"\u00f9":5,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":6,"\u00ef":6,"\u00ee":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":6,"\u00e6":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":7,"q":4,"Q":8,"\/":-9,"*":12,"'":-2,"C":7,"d":4,"f":12,"t":9,"u":5,"v":16,"w":14,"y":16,"c":6,"e":6,"o":7,"\u00f8":7,"\"":-2,"-":15,"\u2212":15,"\u201c":-2,"\u201d":-2,"\u00ab":6,"O":8,"J":2,"a":6}},"L":{"d":"40,-252r0,233r71,0v-2,8,4,17,-5,19r-86,0r0,-245v0,-7,0,-7,20,-7","w":118,"k":{"\ufb04":18,"\ufb03":18,"\ufb00":18,"\u2039":21,"\u2019":53,"\u2018":53,"\u2014":39,"\u2013":39,"\u017e":8,"\u0178":29,"\u0161":8,"\u0160":5,"\u0153":12,"\u0152":14,"\u00ff":19,"\u00fd":19,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f6":12,"\u00f5":12,"\u00f4":12,"\u00f3":12,"\u00f2":12,"\u00f1":8,"\u00ef":8,"\u00ee":8,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":8,"\u00e6":8,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":29,"\u00d8":14,"\u00d6":14,"\u00d5":14,"\u00d4":14,"\u00d3":14,"\u00d2":14,"\u00c7":9,"r":5,"q":10,"Q":14,"?":13,"0":9,"\/":-6,"*":53,"'":53,"C":9,"G":12,"T":26,"V":29,"W":23,"Y":29,"d":10,"f":18,"t":13,"u":7,"v":13,"w":19,"y":19,"c":8,"e":10,"o":12,"\u00f8":12,"\"":53,"-":39,"\u2212":39,"\u201c":53,"\u201d":53,"\u00ab":21,"O":14,")":5,"]":5,"S":5,"a":8}},"M":{"d":"20,0r0,-247v-2,-7,11,-5,18,-5r52,170r50,-165v0,-7,12,-5,20,-5r0,247v0,5,0,5,-20,5r3,-204r-47,150v-2,5,-8,2,-14,3r-46,-152r3,198v0,5,0,5,-19,5","w":179},"N":{"d":"126,0r-44,-101v-4,-9,-32,-83,-44,-113r1,209v0,5,1,5,-19,5r0,-247v-1,-7,12,-5,19,-5r43,99v4,11,33,87,44,114r-1,-208v0,-5,-1,-5,19,-5r0,247v2,7,-11,5,-18,5","w":164},"O":{"d":"13,-128v0,-94,22,-129,68,-129v47,0,65,33,65,129v0,97,-21,133,-68,133v-46,0,-65,-31,-65,-133xm35,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-11,-108,-43,-108v-32,0,-47,31,-47,115","w":159,"k":{"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u017d":9,"\u0178":7,"\u0160":9,"\u0152":2,"\u00e7":4,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"_":18,",":14,"*":5,"'":4,"T":9,"V":2,"W":6,"Y":7,"c":4,"\"":4,"\u201c":4,"\u201d":4,"O":2,"Q":2,")":7,"]":7,"A":9,".":14,"J":11,"X":8,"x":8,"\u201e":14}},"P":{"d":"24,-252v62,-6,104,10,101,68v-3,64,-31,81,-86,77r0,102v0,5,1,5,-19,5r0,-247v0,0,-1,-5,4,-5xm103,-185v0,-38,-21,-54,-64,-49r0,108v44,6,64,-8,64,-59","w":133,"k":{"\u2039":11,"\u2026":48,"\u201a":48,"\u2014":19,"\u2013":19,"\u017e":5,"\u017d":13,"\u0178":4,"\u0161":5,"\u0160":27,"\u0153":11,"\u00ff":5,"\u00fc":5,"\u00fb":5,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00dd":4,"\u00dc":27,"\u00db":27,"\u00d6":27,"\u00d5":27,"\u00d4":27,"\u00d1":27,"\u00cb":27,"\u00ca":27,"\u00c6":27,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"\u00b7":4,"q":11,"_":74,"@":9,"\/":17,",":48,"Y":4,"d":11,"c":9,"e":9,"o":11,"-":19,"\u2212":19,"\u00ab":11,")":11,"]":11,"A":27,".":48,"J":41,"X":18,"x":5,"\u201e":48,"a":5,"Z":13}},"Q":{"d":"14,-128v0,-94,21,-129,68,-129v46,0,65,33,65,129v0,85,-16,123,-51,131v2,32,24,34,45,23v10,17,-5,23,-28,23v-26,0,-34,-23,-39,-44v-42,-2,-60,-35,-60,-133xm36,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-12,-108,-44,-108v-32,0,-46,31,-46,115","w":160,"k":{"\u201e":13,"\u201d":4,"\u201c":4,"x":10,"]":5,"Y":10,"X":10,"V":6,"T":8,"J":11,"A":5,".":13,")":5,"\"":4,"\u2026":13,"\u201a":13,"\u2019":4,"\u2018":4,"\u017d":5,"\u0178":10,"\u0160":5,"\u00dd":10,"\u00dc":5,"\u00db":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d1":5,"\u00cb":5,"\u00ca":5,"\u00c6":21,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"_":-5,",":13,"'":4}},"R":{"d":"20,0r0,-247v2,-10,30,-3,42,-5v82,-11,77,126,26,141v10,14,31,48,36,106v1,7,-14,4,-21,5v-7,-65,-27,-97,-35,-107r-29,0r0,102v0,5,1,5,-19,5xm103,-185v0,-38,-21,-54,-64,-49r0,108v44,6,64,-8,64,-59","w":136,"k":{"\u2014":5,"\u2013":5,"\u0178":4,"\u0153":6,"\u0152":1,"\u00ff":5,"\u00fd":5,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00dd":4,"\u00d8":1,"\u00d6":1,"\u00d5":1,"\u00d4":1,"\u00d3":1,"\u00d2":1,"\u00c7":2,"\u00c6":31,"q":3,"C":2,"T":6,"V":2,"W":2,"Y":4,"d":3,"y":5,"e":4,"o":6,"\u00f8":6,"-":5,"\u2212":5,"O":1,"Q":1,"X":1,"x":5}},"S":{"d":"72,-257v42,0,54,7,41,27v-17,-14,-86,-13,-80,22v10,55,89,80,89,146v0,39,-15,67,-63,67v-43,0,-56,-10,-41,-32v7,6,19,12,41,12v54,0,53,-67,18,-98v-20,-27,-64,-55,-64,-94v0,-31,22,-50,59,-50","w":132,"k":{"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u2019":-3,"\u2018":-3,"\u00ff":13,"\u00fd":13,"\u00c6":15,"_":4,"'":-3,"f":11,"v":12,"w":12,"y":13,"\"":-3,"\u201c":-3,"\u201d":-3,"J":2,"x":8}},"T":{"d":"125,-233r-50,0r0,228v0,5,0,5,-20,5r0,-233r-52,0v0,-6,-1,-20,4,-19r123,0v0,7,1,20,-5,19","w":132,"k":{"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u203a":34,"\u2039":26,"\u2026":31,"\u201a":31,"\u2019":-6,"\u2018":-6,"\u2014":39,"\u2013":39,"\u017e":32,"\u017d":23,"\u0161":31,"\u0160":23,"\u0153":35,"\u0152":9,"\u0131":3,"\u00ff":36,"\u00fd":36,"\u00fc":35,"\u00fb":35,"\u00fa":35,"\u00f9":35,"\u00f8":35,"\u00f6":35,"\u00f5":35,"\u00f4":35,"\u00f3":35,"\u00f2":35,"\u00f1":30,"\u00ef":3,"\u00ee":3,"\u00ed":3,"\u00ec":3,"\u00eb":34,"\u00ea":34,"\u00e9":34,"\u00e8":34,"\u00e7":32,"\u00e6":33,"\u00e5":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u00dc":23,"\u00db":23,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00d1":23,"\u00cb":23,"\u00ca":23,"\u00c7":16,"\u00c6":23,"\u00c5":23,"\u00c4":23,"\u00c3":23,"\u00c2":23,"\u00c1":23,"\u00c0":23,"r":30,"q":36,"m":30,"_":28,"Q":9,"@":17,";":25,"0":27,"\/":20,",":31,"*":5,"'":-6,"C":16,"G":15,"d":36,"f":15,"t":19,"u":35,"v":32,"w":30,"y":36,"c":32,"e":34,"o":35,"\"":-6,"-":39,"\u2212":39,"\u201c":-6,"\u201d":-6,"\u00ab":26,"O":9,"A":23,".":31,"J":28,"x":37,"\u201e":31,"a":33,"z":32,"g":33,"\u00bb":34,":":25,"n":30,"p":37,"s":31,"h":12,"k":12,"i":3,"j":3}},"U":{"d":"40,-252r0,171v0,29,0,68,45,68v17,0,33,-4,40,-8r0,-226v0,-5,-1,-5,20,-5r0,246v-9,6,-34,12,-60,12v-65,0,-65,-47,-65,-85r0,-168v0,-5,0,-5,20,-5","w":164},"V":{"d":"3,-245v-1,-5,-2,-7,3,-7r16,0r41,160v7,29,11,49,14,71v12,-73,36,-152,51,-224v2,-11,13,-6,22,-7v0,0,-61,256,-62,256v-17,3,-23,1,-28,-20","w":151,"k":{"\ufb04":2,"\ufb03":2,"\ufb00":2,"\u203a":4,"\u2039":13,"\u2026":17,"\u201a":17,"\u2019":-5,"\u2018":-5,"\u2014":19,"\u2013":19,"\u017e":11,"\u017d":23,"\u0161":12,"\u0160":23,"\u0153":15,"\u0152":2,"\u0131":6,"\u00ff":8,"\u00fd":8,"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00f1":11,"\u00ef":6,"\u00ee":6,"\u00ed":6,"\u00ec":6,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":17,"\u00e6":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00dc":23,"\u00db":23,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":23,"\u00cb":23,"\u00ca":23,"\u00c7":9,"\u00c6":23,"\u00c5":23,"\u00c4":23,"\u00c3":23,"\u00c2":23,"\u00c1":23,"\u00c0":23,"r":11,"q":19,"m":11,"_":34,"Q":2,"@":9,"0":13,"\/":20,",":17,"'":-5,"C":9,"G":6,"d":19,"f":2,"t":2,"u":14,"v":9,"w":9,"y":8,"c":17,"e":19,"o":15,"\"":-5,"-":19,"\u2212":19,"\u201c":-5,"\u201d":-5,"\u00ab":13,"O":2,"A":23,".":17,"J":30,"x":10,"\u201e":17,"a":14,"z":11,"g":21,"\u00bb":4,":":9,";":9,"n":11,"p":14,"s":12,"i":6,"j":9}},"W":{"d":"2,-245v-4,-11,12,-6,20,-7r33,160v7,28,5,52,13,70v6,-76,26,-140,37,-210v2,-9,11,-7,20,-7r32,147v6,30,7,48,10,70r2,0v8,-74,28,-151,39,-223v2,-11,13,-6,22,-7v0,0,-50,256,-51,256v-16,2,-23,2,-26,-17r-27,-119v-3,-11,-8,-48,-11,-68v-9,72,-24,137,-38,204v-17,2,-22,2,-27,-21","w":231,"k":{"\u203a":2,"\u2039":10,"\u2026":12,"\u201a":12,"\u2019":-7,"\u2018":-7,"\u2014":13,"\u2013":13,"\u017e":9,"\u017d":10,"\u0161":4,"\u0160":19,"\u0153":12,"\u0152":6,"\u00ff":8,"\u00fd":8,"\u00fc":9,"\u00fb":9,"\u00fa":9,"\u00f9":9,"\u00f8":12,"\u00f6":12,"\u00f5":12,"\u00f4":12,"\u00f3":12,"\u00f2":12,"\u00f1":14,"\u00ef":14,"\u00ee":14,"\u00ec":-23,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e8":12,"\u00e7":12,"\u00e6":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00dc":19,"\u00db":19,"\u00d8":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00d1":19,"\u00cb":19,"\u00ca":19,"\u00c7":8,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"r":14,"q":12,"m":14,"_":26,"Q":6,"@":2,"0":6,"\/":16,",":12,"'":-7,"C":8,"G":6,"d":12,"u":9,"v":2,"w":6,"y":8,"c":12,"e":12,"o":12,"\"":-7,"-":13,"\u2212":13,"\u201c":-7,"\u201d":-7,"\u00ab":10,"O":6,"A":19,".":12,"J":27,"x":9,"\u201e":12,"a":14,"z":9,"g":10,"\u00bb":2,"Z":10,":":9,";":9,"n":14,"p":14,"s":4}},"X":{"d":"143,-252r-52,121r58,127v1,8,-16,2,-23,4r-50,-113v-9,25,-36,80,-50,110v-3,6,-15,2,-22,3r60,-131r-51,-117v-1,-4,-1,-4,23,-4r42,104r43,-100v1,-4,0,-4,22,-4","w":153,"k":{"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u2039":3,"\u2019":-4,"\u2018":-4,"\u2014":22,"\u2013":22,"\u017e":3,"\u0161":3,"\u0153":8,"\u0152":6,"\u00ff":19,"\u00fd":19,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00f1":3,"\u00ef":3,"\u00ee":3,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":7,"\u00e6":3,"\u00e5":3,"\u00e4":3,"\u00e3":3,"\u00e2":3,"\u00e1":3,"\u00e0":3,"\u00d8":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":9,"\u00c6":26,"q":10,"Q":6,"@":1,"0":9,"*":5,"'":-4,"C":9,"G":6,"d":10,"f":11,"t":10,"u":10,"v":18,"w":16,"y":19,"c":7,"e":8,"o":8,"\u00f8":8,"\"":-4,"-":22,"\u2212":22,"\u201c":-4,"\u201d":-4,"\u00ab":3,"O":6,"a":3,"p":6}},"Y":{"d":"56,0r0,-102r-54,-147v-1,-3,-1,-3,22,-3r42,128v3,-18,30,-95,41,-124v1,-4,1,-4,21,-4r-52,149r0,98v0,5,0,5,-20,5","w":129,"k":{"\ufb04":9,"\ufb03":9,"\ufb00":9,"\u203a":15,"\u2039":22,"\u2026":19,"\u201a":19,"\u2019":-7,"\u2018":-7,"\u2014":24,"\u2013":24,"\u017e":19,"\u017d":27,"\u0161":24,"\u0160":1,"\u0153":22,"\u0152":7,"\u0131":3,"\u00ff":18,"\u00fd":18,"\u00fc":23,"\u00fb":23,"\u00fa":23,"\u00f9":23,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":26,"\u00ef":3,"\u00ee":3,"\u00ed":3,"\u00ec":3,"\u00eb":26,"\u00ea":26,"\u00e9":26,"\u00e8":26,"\u00e7":22,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dc":27,"\u00db":27,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":27,"\u00cb":27,"\u00ca":27,"\u00c7":9,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"r":26,"q":28,"m":26,"_":27,"Q":7,"@":3,"0":17,"\/":26,",":19,"'":-7,"C":9,"G":9,"d":28,"f":9,"t":12,"u":23,"v":14,"w":15,"y":18,"c":22,"e":26,"o":22,"\u00f8":22,"\"":-7,"-":24,"\u2212":24,"\u201c":-7,"\u201d":-7,"\u00ab":22,"O":7,"A":27,"\u00c6":27,".":19,"J":28,"x":15,"\u201e":19,"S":1,"a":22,"z":19,"g":23,"\u00bb":15,":":18,";":18,"n":26,"p":25,"s":24,"i":3,"j":9}},"Z":{"d":"18,-233v2,-8,-4,-17,5,-19r106,0v2,0,4,12,2,17r-101,217r100,-1v-2,8,4,17,-4,19r-114,0v-2,-1,-5,-11,-2,-17r99,-217","w":141,"k":{"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u2039":6,"\u2019":-3,"\u2018":-3,"\u2014":37,"\u2013":37,"\u017e":5,"\u0161":5,"\u0153":7,"\u00ff":14,"\u00fd":14,"\u00fc":9,"\u00fb":9,"\u00fa":9,"\u00f9":9,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":8,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":9,"q":10,"0":5,"'":-3,"d":10,"f":12,"t":8,"u":9,"w":14,"y":14,"c":8,"e":10,"o":7,"\u00f8":7,"\"":-3,"-":37,"\u2212":37,"\u201c":-3,"\u201d":-3,"\u00ab":6,")":6,"]":6,"x":7,"a":5,"g":5,"p":3}},"[":{"d":"69,-296r77,0v0,16,0,18,-8,18r-65,0r0,331r72,0v0,19,-2,19,-8,19r-83,0r0,-360v0,-6,1,-8,15,-8","w":149,"k":{"j":-47,")":-18,"\ufb00":10,"\u20ac":24,"\u2044":14,"\u2039":9,"\u2019":-7,"\u2018":-7,"\u2014":15,"\u2013":15,"\u017e":10,"\u0153":13,"\u0152":7,"\u00ff":-5,"\u00fd":-5,"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00f1":12,"\u00ef":-3,"\u00ed":8,"\u00ec":-8,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":10,"\u00e4":10,"\u00e3":10,"\u00e2":10,"\u00e1":10,"\u00e0":10,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00cf":-7,"\u00ce":-20,"\u00c7":9,"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"\u00a2":22,"r":12,"q":11,"m":12,"]":-21,"\\":-11,"[":21,"Q":7,"0":26,"\/":19,"+":22,"*":8,"'":-7,"C":9,"G":7,"d":11,"t":6,"u":14,"v":14,"w":15,"y":-5,"c":11,"e":11,"o":13,"\"":-7,"-":15,"\u2212":15,"\u201c":-7,"\u201d":-7,"\u00ab":9,"O":7,"A":10,"x":8,"a":10,"\u00e5":10,"z":10,"Z":6,"\u017d":6,"n":12}},"\\":{"d":"23,-275r82,280v1,5,-1,6,-19,6r-82,-280v-1,-6,0,-6,19,-6","w":109,"k":{"\u201e":-13,"\u201d":44,"\u201c":44,"\u00c6":-16,"]":8,"A":-16,".":-13,")":8,"\"":44,"\u2026":-13,"\u201a":-13,"\u2019":44,"\u2018":44,"\u017d":-16,"\u0160":-16,"\u00dc":-16,"\u00db":-16,"\u00d6":-16,"\u00d5":-16,"\u00d4":-16,"\u00d1":-16,"\u00cb":-16,"\u00ca":-16,"\u00c5":-16,"\u00c4":-16,"\u00c3":-16,"\u00c2":-16,"\u00c1":-16,"\u00c0":-16,"\/":-9,",":-13,"'":44}},"]":{"d":"80,72r-76,0v0,-16,0,-18,8,-18r64,0r0,-331r-72,0v0,-19,3,-19,9,-19r83,0r0,361v0,6,-2,7,-16,7","w":149,"k":{"]":21,")":21,"\u2019":27,"\u2018":27,"'":27,"\"":27,"\u201c":27,"\u201d":27}},"_":{"d":"127,34r-121,0v0,-14,0,-18,5,-18r121,0v0,13,0,18,-5,18","w":137,"k":{"\u0178":28,"\u0153":11,"\u0152":16,"\u00ff":9,"\u00fd":9,"\u00fc":12,"\u00fb":12,"\u00fa":12,"\u00f9":12,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":12,"\u00dd":28,"\u00d8":16,"\u00d6":16,"\u00d5":16,"\u00d4":16,"\u00d3":16,"\u00d2":16,"\u00c7":23,"y":9,"w":19,"v":26,"u":12,"t":22,"o":11,"j":-15,"g":-2,"f":12,"e":9,"d":7,"c":12,"Y":28,"W":23,"V":32,"T":27,"O":16,"G":4,"C":23,"q":15,"Q":5,"9":-3,"8":12,"6":10,"5":-2,"4":52,"0":17,"\/":-16}},"`":{"d":"63,-220v-3,-7,-74,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":84},"a":{"d":"16,-157v-12,-32,24,-24,60,-28v35,-4,40,27,40,67v0,64,-2,112,-2,112v-31,12,-104,34,-101,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm96,-90v-33,-6,-61,-9,-63,41v-2,51,39,38,61,30v0,0,2,-44,2,-71","w":132,"k":{"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30,"f":3,"t":8,"y":3,"\"":30,"\u201c":30,"\u201d":30,")":10,"]":10,"x":3}},"b":{"d":"21,-5r0,-250v0,-10,4,-10,20,-10r0,94v39,-28,91,-19,91,57v0,105,-41,119,-68,119v-21,0,-34,-2,-43,-10xm41,-153r0,134v41,14,66,9,70,-90v4,-67,-38,-69,-70,-44","w":144,"k":{"\u2026":7,"\u201a":7,"\u2019":28,"\u2018":28,"\u017e":3,"_":14,"\/":2,",":7,"'":28,"t":5,"w":1,"\"":28,"\u201c":28,"\u201d":28,")":9,"]":9,".":7,"\u201e":7,"z":3}},"c":{"d":"79,-185v24,0,36,6,28,26v-40,-17,-70,-13,-72,74v-2,86,32,78,72,62v9,20,-8,28,-33,28v-38,0,-60,-7,-60,-91v0,-89,36,-99,65,-99","w":119,"k":{"\u2039":12,"\u2019":18,"\u2018":18,"\u2014":16,"\u2013":16,"\u0153":3,"\u00ff":-1,"\u00fd":-1,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":6,"q":6,"\/":-7,"'":18,"d":6,"t":-1,"w":-1,"y":-1,"c":6,"e":5,"o":3,"\u00f8":3,"\"":18,"-":16,"\u2212":16,"\u201c":18,"\u201d":18,"\u00ab":12,")":1,"]":1}},"d":{"d":"104,-20r0,-140v-40,-20,-67,1,-68,73v0,84,26,80,68,67xm104,-177r0,-78v0,-10,4,-10,20,-10r0,260v-56,17,-111,29,-109,-80v2,-83,37,-116,89,-92","w":144,"k":{"\u00ef":-3,"\u00ee":-3,"\u00ec":-3,"\/":-4}},"e":{"d":"78,-185v47,0,50,57,42,101v-30,6,-70,7,-86,7v-3,82,46,68,85,51v12,27,-8,31,-46,31v-34,0,-59,-11,-59,-85v0,-96,33,-105,64,-105xm76,-167v-18,0,-39,7,-42,73v14,0,49,0,69,-5v3,-32,3,-68,-27,-68","w":135,"k":{"\u2019":22,"\u2018":22,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\/":-4,"'":22,"t":3,"w":1,"e":4,"\"":22,"\u201c":22,"\u201d":22,")":7,"]":7,"x":1}},"f":{"d":"33,-163r-28,0v-3,-28,12,-13,28,-17r0,-23v0,-58,32,-61,58,-61v30,0,34,3,29,21v-32,-6,-66,-14,-67,38r0,25r37,0v5,32,-20,11,-37,17r0,158v1,5,-13,6,-20,5r0,-163","w":89,"k":{"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u2122":-36,"\u2039":7,"\u2030":-9,"\u2026":16,"\u201a":16,"\u2019":-46,"\u2018":-46,"\u2014":17,"\u2013":17,"\u0153":5,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":5,"\u00ae":-22,"\u00a9":-23,"r":1,"q":6,"m":1,"_":19,"]":-41,"\\":-40,"?":-41,"8":-4,",":16,"*":-12,"'":-46,"&":-7,"!":-28,"d":6,"u":1,"w":-3,"c":5,"e":6,"o":5,"\"":-46,"-":17,"\u2212":17,"\u201c":-46,"\u201d":-46,"\u00ab":7,"b":-2,")":-41,".":16,"\u201e":16,"g":7,"p":6,"h":-2,"k":-2}},"g":{"d":"18,-118v1,-73,52,-68,120,-65v3,4,3,19,-6,17v-6,0,-13,-1,-20,-2v43,33,14,138,-59,110v-8,6,-15,16,-15,22v0,6,23,9,54,13v24,3,47,12,47,40v0,28,-22,54,-70,54v-79,-1,-65,-60,-28,-84v-38,-7,-20,-34,-1,-50v-18,-11,-22,-32,-22,-55xm76,-170v-21,0,-38,16,-38,51v0,26,5,47,37,47v26,0,37,-23,37,-54v0,-30,-13,-44,-36,-44xm118,19v0,-26,-34,-25,-60,-28v-28,16,-47,61,13,62v32,0,47,-18,47,-34","w":145,"k":{"\u2019":9,"\u2018":9,"\u017e":-2,"\u0153":1,"\u00ff":-1,"\u00fd":-1,"\u00f8":1,"\u00f6":1,"\u00f5":1,"\u00f4":1,"\u00f3":1,"\u00f2":1,"\u00eb":1,"\u00ea":1,"\u00e9":1,"\u00e8":1,"\u00e7":1,"q":1,"\/":-5,"'":9,"d":1,"y":-1,"c":1,"e":1,"o":1,"\"":9,"\u201c":9,"\u201d":9,"x":1,"z":-2,"j":-39,"\u00df":1,"\u017f":1}},"h":{"d":"19,0r0,-255v0,-10,4,-10,20,-10r0,95v45,-24,87,-33,87,60r0,105v0,5,1,5,-20,5r0,-109v6,-76,-32,-65,-67,-43r0,147v0,5,0,5,-20,5","w":142,"k":{"\u201d":33,"\u201c":33,"y":4,"w":1,"t":5,"\"":33,"\u2019":33,"\u2018":33,"\u00ff":4,"\u00fd":4,"\/":-3,"'":33,")":12,"]":12,"x":3}},"i":{"d":"41,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10xm20,-243v0,-10,4,-17,12,-17v8,0,11,5,11,16v0,11,-4,17,-12,17v-7,0,-11,-4,-11,-16","w":61,"k":{"\/":-8}},"j":{"d":"43,-180r0,188v0,33,-7,56,-42,56v-36,0,-49,-7,-38,-27v23,14,70,16,60,-33r0,-174v0,-10,4,-10,20,-10xm22,-243v0,-10,4,-17,12,-17v8,0,11,5,11,16v0,11,-5,17,-13,17v-7,0,-10,-4,-10,-16","w":65,"k":{"\/":-9,"j":-23}},"k":{"d":"85,-95v24,0,53,44,44,90v-1,5,0,5,-22,5v10,-43,-18,-96,-45,-84v-7,2,-22,8,-22,8r0,71v0,5,2,5,-19,5r0,-255v0,-10,3,-10,19,-10r0,101v26,-29,83,-31,83,11v0,32,-27,52,-38,58xm101,-150v0,-33,-43,-21,-61,6r0,53v34,-12,61,-32,61,-59","w":141,"k":{"\u2019":27,"\u2018":27,"\u2014":7,"\u2013":7,"\u0153":1,"\u00ff":7,"\u00fd":7,"\u00f6":1,"\u00f5":1,"\u00f4":1,"\u00f3":1,"\u00f2":1,"\u00eb":1,"\u00ea":1,"\u00e9":1,"\u00e8":1,"\u00e7":1,"q":1,"\/":-9,"'":27,"w":4,"y":7,"c":1,"e":1,"o":1,"\u00f8":1,"\"":27,"-":7,"\u2212":7,"\u201c":27,"\u201d":27,")":5,"]":5,"p":1}},"l":{"d":"40,-265r0,260v0,5,1,5,-19,5r0,-255v0,-10,3,-10,19,-10","w":61},"m":{"d":"98,0r0,-134v3,-42,-31,-39,-58,-25r0,154v0,5,2,5,-19,5r0,-174v26,-12,71,-19,87,2v13,-9,30,-13,44,-13v41,0,42,17,42,68r0,112v0,5,2,5,-19,5r0,-120v6,-57,-26,-53,-57,-37r-2,156","w":213,"k":{"\u201d":33,"\u201c":33,"y":2,"x":3,"w":1,"f":3,"]":12,")":12,"\"":33,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":33,"\u2018":33,"\u00ff":2,"\u00fd":2,"\/":-9,"'":33}},"n":{"d":"20,0r0,-174v17,-7,41,-11,59,-11v44,0,48,17,48,68r0,112v0,5,0,5,-20,5r0,-120v7,-57,-32,-54,-67,-39r0,154v0,5,1,5,-20,5","w":144,"k":{"\u2019":33,"\u2018":33,"\/":-11,"'":33,"\"":33,"\u201c":33,"\u201d":33,")":12,"]":12,"x":3}},"o":{"d":"11,-90v0,-67,23,-95,60,-95v37,0,56,21,56,95v0,65,-21,95,-58,95v-37,0,-58,-14,-58,-95xm32,-88v0,62,13,76,36,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-39,19,-39,79","w":137,"k":{"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"_":15,"\/":-5,",":7,"*":4,"'":26,"f":4,"t":6,"v":4,"w":4,"y":7,"\"":26,"\u201c":26,"\u201d":26,")":13,"]":13,".":7,"x":10,"\u201e":7,"z":1}},"p":{"d":"21,64r0,-235v50,-27,111,-22,111,63v0,98,-40,114,-61,114v-15,0,-26,-7,-31,-13r0,78v-7,1,-21,4,-19,-7xm40,-158r0,129v6,12,16,16,26,16v14,0,44,-13,44,-91v0,-69,-33,-74,-70,-54","w":144,"k":{"\ufb04":1,"\ufb03":1,"\ufb00":1,"\u2026":7,"\u201a":7,"\u2019":34,"\u2018":34,"\u017e":4,"\u0161":5,"\u00ff":6,"\u00fd":6,"\u00fc":5,"\u00fb":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":5,"\u00ea":5,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,"_":21,"?":4,"\/":-4,",":7,"*":4,"'":34,"f":1,"t":4,"v":4,"w":4,"y":6,"\"":34,"\u201c":34,"\u201d":34,")":13,"]":13,".":7,"x":6,"\u201e":7,"a":1,"z":4,"j":1}},"q":{"d":"126,-174r0,237v3,11,-10,9,-20,9r0,-86v-8,13,-22,19,-40,19v-22,0,-52,-12,-52,-85v0,-90,52,-125,112,-94xm106,-35r0,-126v-42,-22,-70,12,-70,84v0,57,21,64,36,64v13,0,27,-5,34,-22","w":146,"k":{"\u201d":23,"\u201c":23,"\"":23,"\u2019":23,"\u2018":23,"\/":-6,"'":23}},"r":{"d":"20,0r0,-170v17,-12,32,-15,48,-15v26,1,30,8,23,24v-15,-8,-39,-6,-51,6r0,150v0,5,1,5,-20,5","w":99,"k":{"\u2039":20,"\u2026":29,"\u201a":29,"\u2019":9,"\u2018":9,"\u2014":28,"\u2013":28,"\u0153":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":7,"r":3,"q":8,"_":38,"\/":7,",":29,"'":9,"d":8,"c":7,"e":8,"o":7,"\"":9,"-":28,"\u2212":28,"\u201c":9,"\u201d":9,"\u00ab":20,")":10,"]":10,".":29,"x":6,"\u201e":29,"g":9,"p":5}},"s":{"d":"72,-185v41,0,55,10,42,29v-20,-17,-76,-16,-78,11v11,40,83,51,82,100v0,33,-22,51,-59,51v-37,0,-55,-7,-40,-28v23,14,81,16,77,-22v-5,-42,-82,-57,-82,-102v0,-26,23,-39,58,-39","w":132,"k":{"\u2019":20,"\u2018":20,"\u2014":16,"\u2013":16,"\u00ff":3,"\u00fd":3,"\/":-5,"'":20,"y":3,"\"":20,"-":16,"\u2212":16,"\u201c":20,"\u201d":20,")":1,"]":1,"x":1}},"t":{"d":"36,-53r0,-109r-26,0v-4,-30,10,-14,26,-18r0,-57v0,-8,3,-8,20,-8r0,65r44,0v5,35,-25,12,-44,18r0,112v0,21,1,38,17,38v11,0,15,-2,23,-6v8,17,-6,23,-28,23v-32,0,-32,-25,-32,-58","w":107,"k":{"\u2039":10,"\u2026":-1,"\u201a":-1,"\u2019":13,"\u2018":13,"\u2014":27,"\u2013":27,"\u0153":5,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":6,"q":5,"0":1,"\/":-9,",":-1,"'":13,"d":5,"t":21,"u":1,"c":6,"e":6,"o":5,"\u00f8":5,"\"":13,"-":27,"\u2212":27,"\u201c":13,"\u201d":13,"\u00ab":10,")":5,"]":5,".":-1,"\u201e":-1,"g":4}},"u":{"d":"129,-180r0,174v-16,8,-37,11,-55,11v-84,0,-44,-111,-53,-180v0,-5,-1,-5,20,-5r0,120v-6,56,33,54,68,39r0,-154v0,-5,-1,-5,20,-5","w":149,"k":{"\u2019":23,"\u2018":23,"\/":-8,"'":23,"\"":23,"\u201c":23,"\u201d":23,")":14,"]":14}},"v":{"d":"51,-14r-42,-160v-2,-6,0,-6,21,-6r36,156v1,-8,24,-119,33,-151v1,-5,2,-5,21,-5r-47,184v-17,2,-18,-1,-22,-18","w":128,"k":{"\u2039":8,"\u2026":18,"\u201a":18,"\u2019":19,"\u2018":19,"\u2014":10,"\u2013":10,"\u017e":5,"\u0161":4,"\u0153":7,"\u00ff":5,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":5,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":7,"q":9,"m":6,"k":1,"_":29,"@":2,"0":3,"\/":9,",":18,"'":19,"d":9,"t":5,"u":6,"c":5,"e":8,"o":7,"\u00f8":7,"\"":19,"-":10,"\u2212":10,"\u201c":19,"\u201d":19,")":12,"]":12,".":18,"\u201e":18,"a":5,"g":10,":":4,";":4,"p":6,"s":4}},"w":{"d":"9,-175v-1,-5,0,-5,21,-5r32,155r28,-144v0,-8,13,-4,20,-5v12,48,17,104,33,149v4,-36,19,-108,27,-150v1,-5,1,-5,20,-5v0,0,-40,185,-41,185v-25,7,-23,-26,-28,-44v-11,-40,-18,-82,-21,-103v-4,31,-20,104,-29,147v-17,1,-21,1,-25,-17","w":199,"k":{"\u2039":8,"\u2026":15,"\u201a":15,"\u2019":23,"\u2018":23,"\u2014":9,"\u2013":9,"\u017e":6,"\u0161":4,"\u0153":7,"\u00ff":4,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":9,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"r":7,"q":8,"m":4,"k":6,"_":22,"@":4,"\/":1,",":15,"'":23,"d":8,"t":5,"u":6,"c":9,"e":8,"o":7,"\"":23,"-":9,"\u2212":9,"\u201c":23,"\u201d":23,")":15,"]":15,".":15,"x":7,"\u201e":15,"a":4,"z":6,"g":10,":":6,";":6,"p":6,"s":4}},"x":{"d":"144,-180r-52,84r56,91v3,5,2,5,-22,5r-49,-81v-8,16,-30,58,-46,77v-2,4,-4,4,-23,4r58,-94r-50,-82v-1,-3,-1,-4,21,-4r43,72v7,-14,28,-51,41,-68v2,-4,2,-4,23,-4","w":157,"k":{"\ufb04":7,"\ufb03":7,"\ufb00":7,"\u2039":14,"\u2019":15,"\u2018":15,"\u2014":32,"\u2013":32,"\u017e":5,"\u0161":6,"\u0153":10,"\u00ff":7,"\u00fd":7,"\u00fc":5,"\u00fb":5,"\u00fa":5,"\u00f9":5,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":3,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,"r":5,"q":8,"m":5,"k":6,"@":4,"0":1,"\/":-3,"'":15,"d":8,"f":7,"t":6,"u":5,"w":10,"y":7,"c":3,"e":7,"o":10,"\"":15,"-":32,"\u2212":32,"\u201c":15,"\u201d":15,")":6,"]":6,"x":5,"a":2,"z":5,"g":6,"p":4,"s":6}},"y":{"d":"59,6r-47,-180v-1,-6,-1,-6,19,-6r27,106v6,26,10,53,10,53v4,-33,24,-115,34,-153v1,-6,1,-6,21,-6r-47,191v-11,44,-24,55,-44,55v-29,0,-33,-6,-26,-22v29,10,42,10,53,-38","w":133,"k":{"\u2039":9,"\u2026":20,"\u201a":20,"\u2019":22,"\u2018":22,"\u2014":13,"\u2013":13,"\u017e":5,"\u0161":4,"\u0153":7,"\u00ff":3,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":3,"\u00ef":5,"\u00ee":5,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":7,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":7,"q":8,"m":4,"k":6,"_":21,"\/":9,",":20,"'":22,"d":8,"t":5,"u":6,"c":7,"e":8,"o":7,"\"":22,"-":13,"\u2212":13,"\u201c":22,"\u201d":22,")":15,"]":15,".":20,"x":5,"\u201e":20,"a":5,"z":5,"g":10,":":6,";":6,"p":6,"s":4}},"z":{"d":"17,-180r101,0v2,2,4,13,-1,17r-83,144r85,-2v1,7,2,21,-5,21r-100,0v-3,0,-5,-14,-1,-18r84,-145r-84,1v0,-14,0,-18,4,-18","w":131,"k":{"\u2039":2,"\u2019":17,"\u2018":17,"\u2014":18,"\u2013":18,"\u017e":5,"\u0161":5,"\u0153":4,"\u00ff":5,"\u00fd":5,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":5,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"q":6,"'":17,"d":6,"t":5,"u":6,"w":5,"y":5,"c":5,"e":6,"o":4,"\"":17,"-":18,"\u2212":18,"\u201c":17,"\u201d":17,")":10,"]":10,"x":6,"g":4,"p":5}},"|":{"d":"73,-293r0,360v0,5,-1,5,-19,5r0,-359v0,-6,0,-6,19,-6","w":127},"\u00a1":{"d":"50,-169v0,9,-5,16,-15,16v-11,0,-16,-7,-16,-16v0,-9,6,-16,16,-16v11,0,15,6,15,16xm44,-114r3,180v0,5,-5,6,-25,6r3,-177v0,-8,5,-9,19,-9","w":68,"k":{"j":-34,"\/":-12}},"\u00a2":{"d":"102,-230r0,45v22,4,31,6,23,27v-41,-17,-70,-14,-72,77v-3,82,35,77,72,58v10,20,-6,25,-31,29v-4,19,12,49,-18,44r0,-45v-27,-3,-43,-18,-43,-86v0,-76,25,-98,51,-103v3,-20,-12,-50,18,-46","k":{"\u201d":5,"\u201c":5,"]":12,")":12,"\"":5,"\u2019":5,"\u2018":5,"'":5}},"\u00a5":{"d":"67,0r0,-65r-49,0v-3,-29,29,-11,49,-16v1,-18,-2,-30,-7,-42r-42,0v-3,-25,19,-13,36,-16r-40,-110v-1,-3,-1,-3,22,-3r41,128v3,-17,31,-94,41,-124v1,-4,2,-4,22,-4r-40,113r35,0v4,27,-23,12,-41,16v-5,11,-8,24,-7,42r48,0v4,29,-29,11,-48,16r0,60v0,5,0,5,-20,5","k":{"\/":3}},"\u00a8":{"d":"16,-236v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15xm67,-236v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15","w":118},"\u00a9":{"d":"89,-243v14,0,20,5,13,16v-19,-8,-33,-7,-34,37v-1,38,17,34,34,26v7,12,-1,17,-17,17v-19,0,-30,-4,-30,-43v0,-47,19,-53,34,-53xm14,-194v0,-55,27,-80,72,-80v45,0,68,20,68,79v0,51,-25,80,-70,80v-44,0,-70,-16,-70,-79xm30,-193v0,48,19,62,52,62v32,0,56,-19,56,-64v0,-47,-19,-64,-52,-64v-34,0,-56,17,-56,66","w":167,"k":{"\/":31}},"\u00ab":{"d":"10,-92v0,-9,54,-88,54,-88v8,0,12,10,12,10v0,10,-47,78,-47,78v0,0,48,72,48,80v0,0,-4,12,-11,12v0,0,-56,-82,-56,-92xm69,-90v0,-9,53,-82,53,-82v8,0,12,9,12,9v0,9,-46,73,-46,73v0,0,47,62,47,70v0,0,-5,12,-12,12v0,0,-54,-73,-54,-82","w":150,"k":{"T":24,"V":10,"W":10,"Y":17,"\u00dd":17,"\u0178":17}},"\u00ae":{"d":"14,-194v0,-55,27,-80,72,-80v45,0,68,20,68,79v0,51,-25,80,-70,80v-44,0,-70,-16,-70,-79xm30,-193v0,48,19,62,52,62v32,0,56,-19,56,-64v0,-47,-19,-64,-52,-64v-34,0,-56,17,-56,66xm62,-148v2,-30,-4,-69,2,-95v26,-2,48,4,48,26v0,13,-6,22,-15,26v5,5,14,18,17,40v1,4,-8,3,-12,3v-9,-31,-6,-42,-29,-40v-4,14,11,43,-11,40xm100,-217v0,-12,-11,-18,-27,-16r0,35v17,1,27,-3,27,-19","w":167,"k":{"\/":27}},"\u00b4":{"d":"26,-203v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v26,21,-18,34,-41,54","w":94},"\u00b7":{"d":"21,-97v0,-9,5,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16","w":74},"\u00b8":{"d":"21,-1r13,0r-5,23v11,-3,24,2,24,20v0,28,-29,30,-45,24v0,0,2,-9,4,-12v0,0,30,9,28,-10v3,-17,-21,-11,-26,-10","w":50},"\u00bb":{"d":"139,-92v0,10,-55,92,-55,92v0,0,-12,-3,-12,-12v0,-9,48,-80,48,-80v0,0,-46,-68,-46,-78v0,-7,12,-10,12,-10v0,0,53,79,53,88xm81,-90v0,10,-55,82,-55,82v0,0,-11,-2,-11,-11v0,-9,47,-71,47,-71v4,-5,-70,-76,-34,-83v0,0,53,74,53,83","w":149,"k":{"\u2014":-7,"\u2013":-7,"T":24,"V":14,"W":11,"Y":20,"\u00dd":20,"\u0178":20,"v":6,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"-":-7,"\u2212":-7,")":6,"]":6,"J":13,"X":10,"x":9,"z":11,"\u017e":11,"Z":6,"\u017d":6}},"\u00bf":{"d":"76,-172v0,9,-7,16,-16,16v-11,0,-15,-7,-15,-16v0,-9,5,-16,15,-16v11,0,16,6,16,16xm70,-114v20,51,-44,86,-44,129v0,48,47,38,69,25v11,22,-10,30,-40,30v-26,0,-50,-12,-50,-51v0,-61,60,-73,47,-131v2,-3,12,-3,18,-2","w":108,"k":{"\u201d":20,"\u201c":20,"\u00c6":7,"j":-43,"]":-2,"A":7,")":-2,"\"":20,"\u2019":20,"\u2018":20,"\u017d":7,"\u0160":7,"\u00dc":7,"\u00db":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d1":7,"\u00cb":7,"\u00ca":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"'":20}},"\u00c0":{"d":"132,0r-18,-69r-74,0r-17,65v-2,6,-13,4,-22,4r68,-250v1,-4,12,-3,16,-2r68,247v1,4,-1,5,-9,5r-12,0xm77,-219v-4,31,-24,95,-32,131r64,0xm83,-292v-3,-7,-76,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":154,"k":{"\u2212":15,"\u201d":37,"\u201c":37,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":15,")":7,"\"":37,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-8,"*":18,"'":37}},"\u00c1":{"d":"132,0r-18,-69r-74,0r-17,65v-2,6,-13,4,-22,4r68,-250v1,-4,12,-3,16,-2r68,247v1,4,-1,5,-9,5r-12,0xm77,-219v-4,31,-24,95,-32,131r64,0xm69,-275v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v5,0,9,11,10,16v-3,4,-32,26,-51,38","w":154,"k":{"\u2212":15,"\u201d":37,"\u201c":37,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":15,")":7,"\"":37,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-7,"*":18,"'":37}},"\u00c2":{"d":"132,0r-18,-69r-74,0r-17,65v-2,6,-13,4,-22,4r68,-250v1,-4,12,-3,16,-2r68,247v1,4,-1,5,-9,5r-12,0xm77,-219v-4,31,-24,95,-32,131r64,0xm74,-332v18,-3,37,33,47,41v-11,20,-34,-12,-43,-23v-5,3,-33,47,-44,23","w":154,"k":{"\u2212":15,"\u201d":37,"\u201c":37,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":15,")":7,"\"":37,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-8,"*":18,"'":37}},"\u00c3":{"d":"132,0r-18,-69r-74,0r-17,65v-2,6,-13,4,-22,4r68,-250v1,-4,12,-3,16,-2r68,247v1,4,-1,5,-9,5r-12,0xm77,-219v-4,31,-24,95,-32,131r64,0xm26,-299v12,-19,24,-24,37,-24v16,0,18,18,33,18v18,0,20,-16,25,-16v5,0,8,11,8,11v-3,6,-15,24,-36,24v-21,0,-21,-19,-34,-19v-14,0,-19,16,-23,16v-5,0,-10,-10,-10,-10","w":154,"k":{"\u2212":15,"\u201d":37,"\u201c":37,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":15,")":7,"\"":37,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-10,"*":18,"'":37}},"\u00c4":{"d":"132,0r-18,-69r-74,0r-17,65v-2,6,-13,4,-22,4r68,-250v1,-4,12,-3,16,-2r68,247v1,4,-1,5,-9,5r-12,0xm77,-219v-4,31,-24,95,-32,131r64,0xm38,-308v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm89,-308v0,-8,4,-15,13,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-13,-6,-13,-15","w":154,"k":{"\u2212":15,"\u201d":37,"\u201c":37,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":15,")":7,"\"":37,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-7,"*":18,"'":37}},"\u00c5":{"d":"132,0r-18,-69r-74,0r-17,65v-2,6,-13,4,-22,4r68,-250v1,-4,12,-3,16,-2r68,247v1,4,-1,5,-9,5r-12,0xm77,-219v-4,31,-24,95,-32,131r64,0xm42,-315v0,-19,15,-36,35,-36v19,0,35,17,35,36v0,20,-16,35,-35,35v-20,0,-35,-15,-35,-35xm54,-315v0,13,10,23,23,23v13,0,23,-10,23,-23v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23","w":154,"k":{"\u2212":15,"\u201d":37,"\u201c":37,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":15,")":7,"\"":37,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":37,"\u2018":37,"\u2014":15,"\u2013":15,"\u0178":27,"\u0161":4,"\u0153":9,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-8,"*":18,"'":37}},"\u00c6":{"d":"150,-18r71,0v0,17,0,18,-4,18r-87,0r0,-69r-70,0r-32,65v-1,6,-14,4,-22,4r119,-248v1,-3,4,-4,7,-4r89,0v0,16,0,18,-4,18r-67,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,111xm100,-153r-32,65r62,0r0,-139","w":231,"k":{"\u2212":12,"\u201d":-4,"\u201c":-4,"\u00f8":7,"z":3,"y":6,"x":5,"w":6,"u":1,"o":7,"g":6,"e":6,"d":6,"c":4,"a":5,"-":12,"\"":-4,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u0161":5,"\u0153":7,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":1,"q":6,"0":4,"\/":-5,"'":-4}},"\u00c7":{"d":"84,-257v32,0,37,12,30,30v-3,-3,-14,-11,-26,-11v-26,0,-53,15,-53,124v0,82,21,98,45,98v14,0,30,-8,35,-16v10,20,-6,33,-34,37r-4,17v11,-3,25,2,25,20v0,28,-29,30,-45,24v0,0,1,-9,3,-12v0,0,30,9,28,-10v3,-16,-20,-12,-25,-10r5,-29v-28,-2,-54,-18,-54,-119v0,-127,38,-143,70,-143","w":127,"k":{"\u2212":31,"\u201e":-1,"\u201d":-1,"\u201c":-1,"\u00f8":8,"z":3,"y":26,"x":6,"w":22,"v":24,"u":8,"t":7,"o":8,"f":10,"e":8,"d":5,"c":5,"a":5,"S":4,"O":9,"G":6,"C":2,".":-1,"-":31,"\"":-1,"\ufb04":10,"\ufb03":10,"\ufb00":10,"\u2039":11,"\u2026":-1,"\u201a":-1,"\u2019":-1,"\u2018":-1,"\u2014":31,"\u2013":31,"\u017e":3,"\u0161":5,"\u0160":4,"\u0153":8,"\u0152":9,"\u00ff":26,"\u00fd":26,"\u00fc":8,"\u00fb":8,"\u00fa":8,"\u00f9":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":5,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":2,"q":5,"Q":9,"@":4,"0":10,"\/":-8,",":-1,"*":7,"'":-1,"\u00ab":11}},"\u00c8":{"d":"40,-18r71,0v0,17,0,18,-4,18r-86,0r0,-247v0,0,-1,-5,4,-5r86,0v0,16,1,18,-3,18r-68,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,111xm83,-292v-3,-7,-76,-37,-42,-54v1,0,45,37,49,43v0,0,-3,11,-7,11","w":122,"k":{"\u2212":12,"\u201d":-4,"\u201c":-4,"\u00f8":7,"z":3,"y":6,"x":5,"w":6,"u":1,"o":7,"e":6,"d":6,"c":4,"a":5,"-":12,"\"":-4,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u0161":5,"\u0153":7,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":1,"q":6,"0":4,"\/":-5,"'":-4}},"\u00c9":{"d":"40,-18r71,0v0,17,0,18,-4,18r-86,0r0,-247v0,0,-1,-5,4,-5r86,0v0,16,1,18,-3,18r-68,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,111xm64,-275v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v26,21,-18,34,-41,54","w":122,"k":{"\u2212":12,"\u201d":-4,"\u201c":-4,"\u00f8":7,"z":3,"y":6,"x":5,"w":6,"u":1,"o":7,"e":6,"d":6,"c":4,"a":5,"-":12,"\"":-4,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u0161":5,"\u0153":7,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":1,"q":6,"0":4,"\/":-5,"'":-4}},"\u00ca":{"d":"40,-18r71,0v0,17,0,18,-4,18r-86,0r0,-247v0,0,-1,-5,4,-5r86,0v0,16,1,18,-3,18r-68,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,111xm58,-332v18,-4,38,33,47,41v-11,20,-34,-12,-43,-23v-5,3,-33,47,-44,23","w":122,"k":{"\u2212":12,"\u201d":-4,"\u201c":-4,"\u00f8":7,"\u00ab":8,"z":3,"y":6,"x":5,"w":6,"v":19,"u":1,"t":15,"s":4,"o":7,"f":8,"e":6,"d":6,"c":4,"b":4,"a":5,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":12,"\"":-4,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u0178":27,"\u0161":5,"\u0153":7,"\u0152":8,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"r":1,"q":6,"\\":23,"Q":8,"7":4,"0":4,"\/":-9,"'":-4}},"\u00cb":{"d":"40,-18r71,0v0,17,0,18,-4,18r-86,0r0,-247v0,0,-1,-5,4,-5r86,0v0,16,1,18,-3,18r-68,0r0,87r63,0v0,15,0,18,-4,18r-59,0r0,111xm28,-308v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15xm79,-308v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15","w":122,"k":{"\u2212":12,"\u201d":-4,"\u201c":-4,"\u00f8":7,"\u00ab":8,"z":3,"y":6,"x":5,"w":6,"v":19,"u":1,"t":15,"s":4,"o":7,"f":8,"e":6,"d":6,"c":4,"b":4,"a":5,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":12,"\"":-4,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u0178":27,"\u0161":5,"\u0153":7,"\u0152":8,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"r":1,"q":6,"\\":23,"Q":8,"7":4,"0":4,"\/":-12,"'":-4}},"\u00cc":{"d":"19,0r0,-242v0,-10,2,-10,21,-10v-1,3,-1,247,0,247v0,5,-1,5,-21,5xm39,-292v-3,-7,-76,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":59,"k":{"\/":-7}},"\u00cd":{"d":"19,0r0,-242v0,-10,2,-10,21,-10v-1,3,-1,247,0,247v0,5,-1,5,-21,5xm20,-275v-4,0,-7,-12,-7,-12v19,-21,48,-42,49,-42v27,21,-19,34,-42,54","w":59,"k":{"]":-2,")":-2,"\/":-7}},"\u00ce":{"d":"19,0r0,-242v0,-10,2,-10,21,-10v-1,3,-1,247,0,247v0,5,-1,5,-21,5xm26,-332v18,-4,38,33,47,41v-11,20,-33,-12,-42,-23v-5,3,-34,47,-45,23","w":59,"k":{"\u201d":-18,"\u201c":-18,"]":-20,")":-20,"\"":-18,"\u2019":-18,"\u2018":-18,"\/":-7,"'":-18}},"\u00cf":{"d":"19,0r0,-242v0,-10,2,-10,21,-10v-1,3,-1,247,0,247v0,5,-1,5,-21,5xm-10,-308v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15xm41,-308v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15","w":59,"k":{"\u201d":-4,"\u201c":-4,"]":-7,")":-7,"\"":-4,"\u2019":-4,"\u2018":-4,"\/":-7,"'":-4}},"\u00d1":{"d":"126,0r-44,-101v-4,-9,-32,-83,-44,-113r1,209v0,5,1,5,-19,5r0,-247v-1,-7,12,-5,19,-5r43,99v4,11,33,87,44,114r-1,-208v0,-5,-1,-5,19,-5r0,247v2,7,-11,5,-18,5xm31,-299v12,-19,24,-24,37,-24v16,0,17,18,32,18v18,0,21,-16,26,-16v5,0,8,11,8,11v-3,6,-15,24,-36,24v-21,0,-21,-19,-34,-19v-14,0,-19,16,-23,16v-5,0,-10,-10,-10,-10","w":164,"k":{"\u201d":1,"\u201c":1,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"\"":1,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":1,"\u2018":1,"\u2014":4,"\u2013":4,"\u0178":27,"\u0161":4,"\u0153":4,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-12,"'":1}},"\u00d2":{"d":"13,-128v0,-94,22,-129,68,-129v47,0,65,33,65,129v0,97,-21,133,-68,133v-46,0,-65,-31,-65,-133xm35,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-11,-108,-43,-108v-32,0,-47,31,-47,115xm91,-292v-3,-7,-74,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":159,"k":{"\u201e":14,"\u201d":4,"\u201c":4,"x":8,"c":4,"]":7,"Y":7,"X":8,"W":6,"V":2,"T":9,"Q":2,"O":2,"J":11,"A":9,".":14,")":7,"\"":4,"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u017d":9,"\u0178":7,"\u0160":9,"\u0152":2,"\u00e7":4,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"_":18,",":14,"*":5,"'":4}},"\u00d3":{"d":"13,-128v0,-94,22,-129,68,-129v47,0,65,33,65,129v0,97,-21,133,-68,133v-46,0,-65,-31,-65,-133xm35,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-11,-108,-43,-108v-32,0,-47,31,-47,115xm69,-275v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v5,0,9,11,10,16v-3,4,-32,26,-51,38","w":159,"k":{"\u201e":14,"\u201d":4,"\u201c":4,"x":8,"c":4,"]":7,"Y":7,"X":8,"W":6,"V":2,"T":9,"Q":2,"O":2,"J":11,"A":9,".":14,")":7,"\"":4,"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u017d":9,"\u0178":7,"\u0160":9,"\u0152":2,"\u00e7":4,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"_":18,",":14,"*":5,"'":4}},"\u00d4":{"d":"13,-128v0,-94,22,-129,68,-129v47,0,65,33,65,129v0,97,-21,133,-68,133v-46,0,-65,-31,-65,-133xm35,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-11,-108,-43,-108v-32,0,-47,31,-47,115xm76,-332v18,-4,38,33,47,41v-11,20,-33,-12,-42,-23v-5,3,-34,47,-45,23","w":159,"k":{"\u201e":14,"\u201d":4,"\u201c":4,"\u00f8":4,"\u00ab":8,"y":17,"x":8,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":7,"X":8,"W":6,"V":2,"T":9,"O":2,"J":11,"G":5,"C":8,"A":9,".":14,")":7,"\"":4,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u2014":4,"\u2013":4,"\u017d":9,"\u0178":7,"\u0161":4,"\u0160":9,"\u0153":4,"\u0152":2,"\u00ff":17,"\u00fd":17,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c7":8,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"q":6,"_":18,"\\":23,"Q":2,"7":4,"\/":3,",":14,"*":5,"'":4}},"\u00d5":{"d":"13,-128v0,-94,22,-129,68,-129v47,0,65,33,65,129v0,97,-21,133,-68,133v-46,0,-65,-31,-65,-133xm35,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-11,-108,-43,-108v-32,0,-47,31,-47,115xm28,-299v12,-19,24,-24,37,-24v16,0,18,18,33,18v18,0,20,-16,25,-16v5,0,8,11,8,11v-3,6,-15,24,-36,24v-21,0,-21,-19,-34,-19v-14,0,-18,16,-22,16v-5,0,-11,-10,-11,-10","w":159,"k":{"\u201e":14,"\u201d":4,"\u201c":4,"\u00f8":4,"\u00ab":8,"y":17,"x":8,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":7,"X":8,"W":6,"V":2,"T":9,"O":2,"J":11,"G":5,"C":8,"A":9,".":14,")":7,"\"":4,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u2014":4,"\u2013":4,"\u017d":9,"\u0178":7,"\u0161":4,"\u0160":9,"\u0153":4,"\u0152":2,"\u00ff":17,"\u00fd":17,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c7":8,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"q":6,"_":18,"\\":23,"Q":2,"7":4,"\/":5,",":14,"*":5,"'":4}},"\u00d6":{"d":"13,-128v0,-94,22,-129,68,-129v47,0,65,33,65,129v0,97,-21,133,-68,133v-46,0,-65,-31,-65,-133xm35,-122v0,76,12,107,44,107v33,0,46,-32,46,-114v0,-80,-11,-108,-43,-108v-32,0,-47,31,-47,115xm40,-308v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm91,-308v0,-8,4,-15,13,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-13,-6,-13,-15","w":159,"k":{"\u201e":14,"\u201d":4,"\u201c":4,"\u00f8":4,"\u00ab":8,"y":17,"x":8,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"]":7,"Y":7,"X":8,"W":6,"V":2,"T":9,"O":2,"J":11,"G":5,"C":8,"A":9,".":14,")":7,"\"":4,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u2014":4,"\u2013":4,"\u017d":9,"\u0178":7,"\u0161":4,"\u0160":9,"\u0153":4,"\u0152":2,"\u00ff":17,"\u00fd":17,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c7":8,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"q":6,"_":18,"\\":23,"Q":2,"7":4,"\/":1,",":14,"*":5,"'":4}},"\u00d7":{"d":"107,-54r-30,-33r-29,33v-4,4,-7,1,-16,-9r33,-38r-34,-39v10,-9,14,-12,17,-9r29,34r31,-34v4,-3,6,0,16,9r-34,39r33,38v-9,10,-12,13,-16,9","k":{"\/":11}},"\u00d8":{"d":"32,6v-20,-1,-10,-17,-2,-34v-9,-21,-13,-53,-13,-100v0,-94,22,-129,68,-129v18,0,32,5,42,17r8,-19v18,0,11,17,3,37v9,21,12,51,12,94v0,97,-21,133,-68,133v-19,0,-33,-5,-43,-17xm129,-129v0,-35,-3,-60,-8,-77v-17,45,-57,150,-67,178v7,9,16,13,28,13v32,0,47,-25,47,-114xm39,-122v0,34,2,60,7,77r67,-179v-6,-9,-15,-13,-27,-13v-32,0,-47,31,-47,115","w":167,"k":{"\u2212":4,"\u201e":14,"\u201d":4,"\u201c":4,"z":4,"y":4,"x":8,"w":4,"u":3,"t":3,"s":3,"p":3,"h":1,"g":4,"e":4,"d":4,"c":4,"a":7,"]":7,"Y":7,"X":8,"W":6,"V":2,"T":9,"Q":2,"O":2,"J":11,"A":9,".":14,"-":4,")":7,"\"":4,"\u2026":14,"\u201a":14,"\u2019":4,"\u2018":4,"\u2014":4,"\u2013":4,"\u017e":8,"\u017d":9,"\u0178":7,"\u0161":6,"\u0160":9,"\u0152":2,"\u00ff":8,"\u00fd":4,"\u00fc":6,"\u00fb":6,"\u00fa":3,"\u00f9":3,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f1":7,"\u00ef":7,"\u00ee":7,"\u00eb":8,"\u00ea":8,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"r":4,"q":3,"k":1,"_":18,"0":3,",":14,"*":5,"'":4}},"\u00d9":{"d":"40,-252r0,171v0,29,0,68,45,68v17,0,33,-4,40,-8r0,-226v0,-5,-1,-5,20,-5r0,246v-9,6,-34,12,-60,12v-65,0,-65,-47,-65,-85r0,-168v0,-5,0,-5,20,-5xm93,-292v-3,-7,-76,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":164},"\u00da":{"d":"40,-252r0,171v0,29,0,68,45,68v17,0,33,-4,40,-8r0,-226v0,-5,-1,-5,20,-5r0,246v-9,6,-34,12,-60,12v-65,0,-65,-47,-65,-85r0,-168v0,-5,0,-5,20,-5xm72,-275v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v26,21,-18,34,-41,54","w":164},"\u00db":{"d":"40,-252r0,171v0,29,0,68,45,68v17,0,33,-4,40,-8r0,-226v0,-5,-1,-5,20,-5r0,246v-9,6,-34,12,-60,12v-65,0,-65,-47,-65,-85r0,-168v0,-5,0,-5,20,-5xm79,-332v18,-4,38,33,47,41v-11,20,-33,-12,-42,-23v-5,3,-34,47,-45,23","w":164,"k":{"\u201d":4,"\u201c":4,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"\"":4,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":4,"\u2018":4,"\u2014":4,"\u2013":4,"\u0178":27,"\u0161":4,"\u0153":4,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-9,"'":4}},"\u00dc":{"d":"40,-252r0,171v0,29,0,68,45,68v17,0,33,-4,40,-8r0,-226v0,-5,-1,-5,20,-5r0,246v-9,6,-34,12,-60,12v-65,0,-65,-47,-65,-85r0,-168v0,-5,0,-5,20,-5xm43,-308v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm94,-308v0,-8,4,-15,13,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-13,-6,-13,-15","w":164,"k":{"\u201d":6,"\u201c":6,"\u00f8":4,"\u00ab":8,"y":17,"w":16,"v":19,"u":4,"t":15,"s":4,"o":4,"f":8,"e":6,"d":4,"c":4,"b":4,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"\"":6,"\ufb04":8,"\ufb03":8,"\ufb00":8,"\u2122":15,"\u2039":7,"\u2019":6,"\u2018":6,"\u2014":4,"\u2013":4,"\u0178":27,"\u0161":4,"\u0153":4,"\u0152":8,"\u00ff":17,"\u00fd":17,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"q":6,"\\":23,"Q":8,"7":4,"\/":-7,"'":6}},"\u00dd":{"d":"56,0r0,-102r-54,-147v-1,-3,-1,-3,22,-3r42,127v4,-20,30,-93,41,-123v1,-4,1,-4,21,-4r-52,149r0,98v0,5,0,5,-20,5xm58,-275v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v26,21,-18,34,-41,54","w":129,"k":{"\u2212":24,"\u201e":19,"\u201d":-7,"\u201c":-7,"\u00f8":22,"\u00c6":27,"z":19,"y":18,"x":15,"w":15,"v":14,"u":23,"t":12,"s":24,"p":25,"o":22,"n":26,"j":9,"i":3,"g":23,"f":9,"e":26,"d":28,"c":22,"a":22,"S":1,"O":7,"J":28,"G":9,"C":9,"A":27,";":18,":":18,".":19,"-":24,"\"":-7,"\ufb04":9,"\ufb03":9,"\ufb00":9,"\u203a":15,"\u2039":22,"\u2026":19,"\u201a":19,"\u2019":-7,"\u2018":-7,"\u2014":24,"\u2013":24,"\u017e":19,"\u017d":27,"\u0161":24,"\u0160":1,"\u0153":22,"\u0152":7,"\u0131":3,"\u00ff":18,"\u00fd":18,"\u00fc":23,"\u00fb":23,"\u00fa":23,"\u00f9":23,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":26,"\u00ef":3,"\u00ee":3,"\u00ed":3,"\u00ec":3,"\u00eb":26,"\u00ea":26,"\u00e9":26,"\u00e8":26,"\u00e7":22,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dc":27,"\u00db":27,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":27,"\u00cb":27,"\u00ca":27,"\u00c7":9,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"r":26,"q":28,"m":26,"_":27,"Q":7,"@":3,"0":17,"\/":16,",":19,"'":-7,"\u00ab":22,"\u00bb":15}},"\u00df":{"d":"18,2v7,-58,3,-136,3,-200v0,-40,22,-53,56,-53v51,0,70,27,70,49v0,33,-46,34,-46,59v0,26,63,41,63,92v0,36,-21,56,-54,56v-38,0,-49,-11,-37,-29v18,18,70,17,70,-26v0,-40,-63,-55,-63,-91v0,-33,46,-36,46,-61v0,-15,-15,-31,-48,-31v-27,0,-38,12,-38,47r1,178v5,15,-19,14,-23,10","w":169,"k":{"]":1,")":1,"\/":-5}},"\u00e0":{"d":"16,-157v-12,-32,24,-24,60,-28v35,-4,40,27,40,67v0,64,-2,112,-2,112v-31,12,-104,34,-101,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm96,-90v-33,-6,-61,-9,-63,41v-2,51,39,38,61,30v0,0,2,-44,2,-71xm78,-220v-3,-7,-76,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":132,"k":{"\u201d":30,"\u201c":30,"y":3,"x":3,"t":8,"f":3,"]":10,")":10,"\"":30,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30}},"\u00e1":{"d":"16,-157v-12,-32,24,-24,60,-28v35,-4,40,27,40,67v0,64,-2,112,-2,112v-31,12,-104,34,-101,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm96,-90v-33,-6,-61,-9,-63,41v-2,51,39,38,61,30v0,0,2,-44,2,-71xm54,-216v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v5,0,9,11,10,16v-3,4,-32,26,-51,38","w":132,"k":{"\u201d":30,"\u201c":30,"y":3,"x":3,"t":8,"f":3,"]":10,")":10,"\"":30,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30}},"\u00e2":{"d":"16,-157v-12,-32,24,-24,60,-28v35,-4,40,27,40,67v0,64,-2,112,-2,112v-31,12,-104,34,-101,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm96,-90v-33,-6,-61,-9,-63,41v-2,51,39,38,61,30v0,0,2,-44,2,-71xm62,-270v15,-7,38,34,46,41v0,3,-6,7,-14,7v0,0,-25,-26,-28,-31v-4,2,-33,46,-44,24","w":132,"k":{"\u201d":30,"\u201c":30,"y":3,"x":3,"t":8,"f":3,"]":10,")":10,"\"":30,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30}},"\u00e3":{"d":"17,-157v-12,-32,23,-23,59,-28v35,-3,40,27,40,67v0,64,-2,112,-2,112v-31,12,-103,33,-100,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm97,-90v-34,-6,-62,-10,-63,41v-1,51,39,38,61,30v0,0,2,-44,2,-71xm14,-233v12,-19,24,-24,37,-24v16,0,18,18,33,18v18,0,20,-16,25,-16v5,0,8,12,8,12v-3,6,-15,23,-36,23v-21,0,-21,-19,-34,-19v-14,0,-19,17,-23,17v-5,0,-10,-11,-10,-11","w":132,"k":{"\u201d":30,"\u201c":30,"y":3,"x":3,"f":3,"]":10,")":10,"\"":30,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30,"t":8}},"\u00e4":{"d":"16,-157v-12,-32,24,-24,60,-28v35,-4,40,27,40,67v0,64,-2,112,-2,112v-31,12,-104,34,-101,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm96,-90v-33,-6,-61,-9,-63,41v-2,51,39,38,61,30v0,0,2,-44,2,-71xm26,-236v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm76,-236v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15","w":132,"k":{"\u201d":30,"\u201c":30,"y":3,"x":3,"t":8,"f":3,"]":10,")":10,"\"":30,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30}},"\u00e5":{"d":"16,-157v-12,-32,24,-24,60,-28v35,-4,40,27,40,67v0,64,-2,112,-2,112v-31,12,-104,34,-101,-44v3,-65,41,-64,83,-54v1,-28,2,-68,-25,-62v-18,0,-44,4,-55,9xm96,-90v-33,-6,-61,-9,-63,41v-2,51,39,38,61,30v0,0,2,-44,2,-71xm31,-253v0,-19,15,-35,35,-35v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-35,-16,-35,-36xm43,-253v0,13,10,24,23,24v13,0,23,-11,23,-24v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23","w":132,"k":{"\u201d":30,"\u201c":30,"y":3,"x":3,"t":8,"f":3,"\"":30,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":30,"\u2018":30,"\u00ff":3,"\u00fd":3,"'":30,")":10,"]":10}},"\u00e6":{"d":"17,-157v-9,-30,15,-28,55,-28v23,0,36,7,40,28v26,-50,95,-34,95,29v0,15,-1,32,-4,44v-26,6,-69,2,-86,-2v-5,84,39,82,86,60v10,28,-10,31,-47,31v-18,0,-33,-3,-43,-17v-1,18,-21,17,-48,17v-26,0,-52,-3,-52,-56v0,-65,40,-65,83,-56v2,-31,2,-60,-30,-60v-21,0,-38,4,-49,10xm96,-19r0,-73v-32,-8,-61,-9,-63,41v-2,53,40,43,63,32xm160,-167v-17,0,-38,7,-42,64v14,3,47,9,68,4v4,-30,4,-68,-26,-68","w":223,"k":{"\u201d":22,"\u201c":22,"z":3,"y":3,"x":1,"t":3,"f":3,"]":7,")":7,"\"":22,"\ufb04":3,"\ufb03":3,"\ufb00":3,"\u2019":22,"\u2018":22,"\u017e":3,"\u00ff":3,"\u00fd":3,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\/":-4,"'":22,"w":1,"e":4}},"\u00e7":{"d":"83,-185v24,0,36,6,28,26v-40,-17,-71,-13,-73,74v-2,87,32,78,73,62v9,20,-8,25,-33,28r-3,17v11,-3,24,2,24,20v0,28,-29,30,-45,24v0,0,1,-9,3,-12v0,0,30,9,28,-10v3,-16,-20,-12,-25,-10r5,-29v-30,-2,-47,-16,-47,-91v0,-89,36,-99,65,-99","w":124,"k":{"\u2212":16,"\u201d":18,"\u201c":18,"\u00f8":3,"y":-1,"w":-1,"t":-1,"o":3,"e":5,"d":6,"c":6,"]":1,"-":16,")":1,"\"":18,"\u2039":12,"\u2019":18,"\u2018":18,"\u2014":16,"\u2013":16,"\u0153":3,"\u00ff":-1,"\u00fd":-1,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":6,"q":6,"\/":-7,"'":18,"\u00ab":12}},"\u00e8":{"d":"78,-185v47,0,50,57,42,101v-30,6,-70,7,-86,7v-3,82,46,68,85,51v12,27,-8,31,-46,31v-34,0,-59,-11,-59,-85v0,-96,33,-105,64,-105xm76,-167v-18,0,-39,7,-42,73v14,0,49,0,69,-5v3,-32,3,-68,-27,-68xm89,-220v-3,-7,-76,-37,-42,-54v1,0,45,37,49,43v0,0,-3,11,-7,11","w":133,"k":{"\u201d":22,"\u201c":22,"e":4,"]":7,")":7,"\"":22,"\u2019":22,"\u2018":22,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\/":-7,"'":22,"t":3,"w":1,"x":1}},"\u00e9":{"d":"78,-185v47,0,50,57,42,101v-30,6,-70,7,-86,7v-3,82,46,68,85,51v12,27,-8,31,-46,31v-34,0,-59,-11,-59,-85v0,-96,33,-105,64,-105xm76,-167v-18,0,-39,7,-42,73v14,0,49,0,69,-5v3,-32,3,-68,-27,-68xm55,-208v-4,0,-7,-11,-7,-11v19,-21,48,-42,49,-42v5,0,8,10,9,15v-3,4,-32,26,-51,38","w":133,"k":{"\u201d":22,"\u201c":22,"x":1,"w":1,"t":3,"e":4,"]":7,")":7,"\"":22,"\u2019":22,"\u2018":22,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\/":-7,"'":22}},"\u00ea":{"d":"78,-185v47,0,50,57,42,101v-30,6,-70,7,-86,7v-3,82,46,68,85,51v12,27,-8,31,-46,31v-34,0,-59,-11,-59,-85v0,-96,33,-105,64,-105xm76,-167v-18,0,-39,7,-42,73v14,0,49,0,69,-5v3,-32,3,-68,-27,-68xm67,-260v18,-4,38,33,47,41v-11,20,-33,-12,-42,-23v-5,3,-34,47,-45,23","w":133,"k":{"\u201d":22,"\u201c":22,"y":3,"x":1,"w":1,"t":3,"e":4,"]":7,")":7,"\"":22,"\u2019":22,"\u2018":22,"\u00ff":3,"\u00fd":3,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\/":-7,"'":22}},"\u00eb":{"d":"78,-185v47,0,50,57,42,101v-30,6,-70,7,-86,7v-3,82,46,68,85,51v12,27,-8,31,-46,31v-34,0,-59,-11,-59,-85v0,-96,33,-105,64,-105xm76,-167v-18,0,-39,7,-42,73v14,0,49,0,69,-5v3,-32,3,-68,-27,-68xm32,-236v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm83,-236v0,-8,4,-15,13,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-13,-6,-13,-15","w":133,"k":{"\u201d":22,"\u201c":22,"y":3,"x":1,"w":1,"t":3,"e":4,"]":7,")":7,"\"":22,"\u2019":22,"\u2018":22,"\u00ff":3,"\u00fd":3,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\/":-7,"'":22}},"\u00ec":{"d":"41,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10xm41,-208v-2,-6,-77,-38,-41,-53v1,0,45,36,49,42v0,0,-4,11,-8,11","w":61,"k":{"\u201d":3,"\u201c":3,"]":8,")":8,"\"":3,"\u2019":3,"\u2018":3,"\/":-8,"'":3}},"\u00ed":{"d":"41,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10xm17,-203v-4,0,-7,-12,-7,-12v19,-21,48,-42,49,-42v27,21,-19,34,-42,54","w":61,"k":{"\u201d":-15,"\u201c":-15,"k":-1,"h":-1,"]":-3,")":-3,"\"":-15,"\u2019":-15,"\u2018":-15,"\/":-8,"'":-15}},"\u00ee":{"d":"41,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10xm28,-260v18,-4,38,33,47,41v-11,20,-34,-12,-43,-23v-5,3,-33,47,-44,23","w":61,"k":{"\u201d":-16,"\u201c":-16,"y":3,"x":3,"k":-3,"h":-3,"\"":-16,"\u2019":-16,"\u2018":-16,"\u00ff":3,"\u00fd":3,"\/":-8,"'":-16}},"\u00ef":{"d":"41,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10xm-8,-237v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm42,-237v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15","w":61,"k":{"\u201d":-19,"\u201c":-19,"y":3,"x":3,"k":-4,"h":-4,"]":-3,")":-3,"\"":-19,"\u2019":-19,"\u2018":-19,"\u00ff":3,"\u00fd":3,"\/":-8,"'":-19}},"\u00f1":{"d":"20,0r0,-174v17,-7,41,-11,59,-11v44,0,48,17,48,68r0,112v0,5,0,5,-20,5r0,-120v7,-57,-32,-54,-67,-39r0,154v0,5,1,5,-20,5xm21,-231v12,-19,24,-25,37,-25v16,0,17,18,32,18v18,0,21,-16,26,-16v18,15,-4,35,-29,35v-21,0,-20,-19,-33,-19v-14,0,-19,17,-23,17v-5,0,-10,-10,-10,-10","w":144,"k":{"\u201d":33,"\u201c":33,"y":3,"x":3,"]":12,")":12,"\"":33,"\u2019":33,"\u2018":33,"\u00ff":3,"\u00fd":3,"\/":-11,"'":33}},"\u00f2":{"d":"15,-90v0,-67,23,-95,60,-95v37,0,56,21,56,95v0,65,-21,95,-58,95v-37,0,-58,-14,-58,-95xm37,-88v0,62,12,76,35,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-38,19,-38,79xm86,-220v-3,-7,-74,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":146,"k":{"\u201e":7,"\u201d":26,"\u201c":26,"z":1,"y":7,"x":10,"w":4,"v":4,"t":6,"f":4,"a":4,"]":13,".":7,")":13,"\"":26,"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"k":6,"_":15,"\/":-5,",":7,"*":4,"'":26}},"\u00f3":{"d":"15,-90v0,-67,23,-95,60,-95v37,0,56,21,56,95v0,65,-21,95,-58,95v-37,0,-58,-14,-58,-95xm37,-88v0,62,12,76,35,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-38,19,-38,79xm60,-203v-4,0,-7,-12,-7,-12v19,-21,48,-42,49,-42v27,21,-19,34,-42,54","w":146,"k":{"\u201e":7,"\u201d":26,"\u201c":26,"z":1,"y":7,"x":10,"w":4,"v":4,"t":6,"f":4,"a":4,"]":13,".":7,")":13,"\"":26,"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"k":6,"_":15,"\/":-5,",":7,"*":4,"'":26}},"\u00f4":{"d":"15,-90v0,-67,23,-95,60,-95v37,0,56,21,56,95v0,65,-21,95,-58,95v-37,0,-58,-14,-58,-95xm37,-88v0,62,12,76,35,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-38,19,-38,79xm70,-260v18,-4,38,33,47,41v-11,20,-34,-12,-43,-23v-5,3,-33,47,-44,23","w":146,"k":{"\u201e":7,"\u201d":26,"\u201c":26,"z":1,"y":7,"x":10,"w":4,"v":4,"t":6,"f":4,"a":4,"]":13,".":7,")":13,"\"":26,"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"k":6,"_":15,"\/":-5,",":7,"*":4,"'":26}},"\u00f5":{"d":"15,-90v0,-67,23,-95,60,-95v37,0,56,21,56,95v0,65,-21,95,-58,95v-37,0,-58,-14,-58,-95xm37,-88v0,62,12,76,35,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-38,19,-38,79xm22,-227v12,-19,24,-24,37,-24v16,0,17,18,32,18v18,0,21,-16,26,-16v5,0,8,11,8,11v-3,6,-15,24,-36,24v-21,0,-21,-19,-34,-19v-14,0,-19,16,-23,16v-5,0,-10,-10,-10,-10","w":146,"k":{"\u201e":7,"\u201d":26,"\u201c":26,"z":1,"y":7,"x":10,"w":4,"v":4,"t":6,"f":4,"a":4,"]":13,".":7,")":13,"\"":26,"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"k":6,"_":15,"\/":-5,",":7,"*":4,"'":26}},"\u00f6":{"d":"15,-90v0,-67,23,-95,60,-95v37,0,56,21,56,95v0,65,-21,95,-58,95v-37,0,-58,-14,-58,-95xm37,-88v0,62,12,76,35,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-38,19,-38,79xm34,-236v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm85,-236v0,-8,4,-15,13,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-13,-6,-13,-15","w":146,"k":{"\u201e":7,"\u201d":26,"\u201c":26,"z":1,"y":7,"x":10,"w":4,"v":4,"t":6,"f":4,"a":4,"]":13,".":7,")":13,"\"":26,"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"k":6,"_":15,"\/":-5,",":7,"*":4,"'":26}},"\u00f7":{"d":"136,-93r-121,0v0,-13,0,-18,5,-18r121,0v0,14,0,18,-5,18xm63,-50v0,-8,5,-16,14,-16v10,0,14,7,14,16v0,8,-5,14,-14,14v-10,0,-14,-5,-14,-14xm63,-150v0,-8,5,-15,14,-15v10,0,14,6,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15"},"\u00f8":{"d":"34,-13v-8,17,-14,29,-24,12v0,-1,12,-21,17,-29v-4,-14,-7,-33,-7,-60v0,-67,23,-95,60,-95v17,0,31,4,40,17v9,-17,12,-28,24,-11v0,2,-9,19,-15,29v5,14,7,34,7,60v0,65,-21,96,-58,96v-19,0,-34,-4,-44,-19xm114,-91v0,-19,-1,-33,-3,-44r-62,105v6,14,15,18,28,18v23,0,37,-22,37,-79xm41,-88v0,17,1,30,3,40r61,-104v-6,-12,-14,-15,-26,-15v-23,0,-38,19,-38,79","w":152,"k":{"\u201d":26,"\u201c":26,"y":7,"x":10,"w":4,"t":6,"g":3,"f":4,"a":4,"]":13,")":13,"\"":26,"\ufb04":-3,"\ufb03":-3,"\ufb00":-3,"\u2026":7,"\u201a":7,"\u2019":26,"\u2018":26,"\u017e":1,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"_":15,"\/":-5,",":7,"*":4,"'":26,"v":4,".":7,"\u201e":7,"z":1}},"\u00f9":{"d":"129,-180r0,174v-16,8,-37,11,-55,11v-84,0,-44,-111,-53,-180v0,-5,-1,-5,20,-5r0,120v-6,56,33,54,68,39r0,-154v0,-5,-1,-5,20,-5xm84,-220v-3,-7,-76,-37,-41,-54v1,0,45,37,49,43v0,0,-4,11,-8,11","w":149,"k":{"\u201d":23,"\u201c":23,"]":14,")":14,"\"":23,"\u2019":23,"\u2018":23,"\/":-8,"'":23}},"\u00fa":{"d":"129,-180r0,174v-16,8,-37,11,-55,11v-84,0,-44,-111,-53,-180v0,-5,-1,-5,20,-5r0,120v-6,56,33,54,68,39r0,-154v0,-5,-1,-5,20,-5xm57,-213v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v5,0,9,11,10,16v-3,4,-32,26,-51,38","w":149,"k":{"\u201d":23,"\u201c":23,"]":14,")":14,"\"":23,"\u2019":23,"\u2018":23,"\/":-8,"'":23}},"\u00fb":{"d":"129,-180r0,174v-16,8,-37,11,-55,11v-84,0,-44,-111,-53,-180v0,-5,-1,-5,20,-5r0,120v-6,56,33,54,68,39r0,-154v0,-5,-1,-5,20,-5xm73,-260v18,-3,37,33,47,41v-11,20,-34,-12,-43,-23v-4,3,-34,47,-44,23","w":149,"k":{"\u201d":23,"\u201c":23,"y":3,"x":3,"]":14,")":14,"\"":23,"\u2019":23,"\u2018":23,"\u00ff":3,"\u00fd":3,"\/":-8,"'":23}},"\u00fc":{"d":"129,-180r0,174v-16,8,-37,11,-55,11v-84,0,-44,-111,-53,-180v0,-5,-1,-5,20,-5r0,120v-6,56,33,54,68,39r0,-154v0,-5,-1,-5,20,-5xm36,-236v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15xm87,-236v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15","w":149,"k":{"\u201d":23,"\u201c":23,"y":3,"x":3,"]":14,")":14,"\"":23,"\u2019":23,"\u2018":23,"\u00ff":3,"\u00fd":3,"\/":-8,"'":23}},"\u00fd":{"d":"59,6r-47,-180v-1,-6,-1,-6,19,-6r27,106v6,26,10,53,10,53v4,-33,24,-115,34,-153v1,-6,1,-6,21,-6r-47,191v-11,44,-24,55,-44,55v-29,0,-33,-6,-26,-22v29,10,42,10,53,-38xm61,-203v-4,0,-8,-12,-8,-12v19,-21,48,-42,49,-42v5,0,9,11,10,16v-3,4,-32,26,-51,38","w":133,"k":{"\u2212":13,"\u201e":20,"\u201d":22,"\u201c":22,"z":5,"x":5,"u":6,"t":5,"s":4,"p":6,"o":7,"g":10,"e":8,"d":8,"c":7,"a":5,".":20,"-":13,"\"":22,"\u2039":9,"\u2026":20,"\u201a":20,"\u2019":22,"\u2018":22,"\u2014":13,"\u2013":13,"\u017e":5,"\u0161":4,"\u0153":7,"\u00ff":3,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":3,"\u00ef":5,"\u00ee":5,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":7,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":7,"q":8,"m":4,"k":6,"_":21,"\/":9,",":20,"'":22,")":15,"]":15,":":6,";":6}},"\u00ff":{"d":"59,6r-47,-180v-1,-6,-1,-6,19,-6r27,106v5,24,9,49,10,53v5,-36,24,-113,34,-153v1,-6,1,-6,21,-6r-47,191v-11,44,-24,55,-44,55v-29,0,-33,-6,-26,-22v29,10,42,10,53,-38xm31,-236v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm81,-236v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15","w":133,"k":{"\u2212":13,"\u201e":20,"\u201d":22,"\u201c":22,"z":5,"y":3,"x":5,"u":6,"t":5,"s":4,"p":6,"o":7,"g":10,"e":8,"d":8,"c":7,"a":5,"]":15,".":20,"-":13,")":15,"\"":22,"\u2039":9,"\u2026":20,"\u201a":20,"\u2019":22,"\u2018":22,"\u2014":13,"\u2013":13,"\u017e":5,"\u0161":4,"\u0153":7,"\u00ff":3,"\u00fd":3,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":3,"\u00ef":5,"\u00ee":5,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":7,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"r":7,"q":8,"m":4,"k":6,"_":21,"\/":9,",":20,"'":22,":":6,";":6}},"\u0131":{"d":"41,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10","w":61,"k":{"\/":-8}},"\u0152":{"d":"145,-18r71,0v0,17,0,18,-5,18r-84,0r0,-23v-10,19,-27,28,-49,28v-46,0,-65,-31,-65,-132v0,-93,22,-129,68,-129v21,0,36,6,46,23v2,-8,-4,-17,5,-19r84,0v0,16,0,18,-4,18r-67,0r0,87r63,0v0,15,-1,18,-5,18r-58,0r0,111xm35,-122v0,76,12,107,44,107v33,0,44,-32,44,-114v0,-80,-9,-108,-41,-108v-32,0,-47,31,-47,115","w":225,"k":{"\u2212":12,"\u201e":14,"\u201d":-4,"\u201c":-4,"\u00f8":7,"z":3,"y":6,"x":5,"w":6,"u":1,"o":7,"g":4,"e":6,"d":6,"c":4,"a":5,"Y":7,"X":8,"W":6,"V":5,"T":9,"Q":2,"O":2,"J":11,"A":9,".":14,"-":12,"\"":-4,"\u2026":14,"\u201a":14,"\u2019":-4,"\u2018":-4,"\u2014":12,"\u2013":12,"\u017e":3,"\u017d":9,"\u0178":7,"\u0161":5,"\u0160":9,"\u0153":7,"\u0152":2,"\u00ff":6,"\u00fd":6,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00dd":7,"\u00dc":9,"\u00db":9,"\u00d8":2,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d3":2,"\u00d2":2,"\u00d1":9,"\u00cb":9,"\u00ca":9,"\u00c6":21,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"r":1,"q":6,"0":4,"\/":-5,",":14,"'":-4}},"\u0153":{"d":"13,-90v0,-67,23,-95,60,-95v23,0,39,8,48,31v27,-52,98,-39,98,26v0,15,-1,32,-4,44v-30,6,-70,7,-86,7v-3,83,47,67,86,51v10,28,-10,31,-47,31v-22,0,-41,-5,-51,-29v-10,20,-25,30,-46,30v-37,0,-58,-15,-58,-96xm35,-88v0,62,12,76,35,76v23,0,38,-22,38,-79v0,-62,-12,-76,-35,-76v-23,0,-38,19,-38,79xm172,-167v-18,0,-40,7,-43,73v14,0,49,0,69,-5v2,-31,4,-68,-26,-68","w":231,"k":{"\u201e":7,"\u201d":22,"\u201c":22,"z":6,"y":7,"x":1,"f":4,"a":4,"]":7,".":7,")":7,"\"":22,"\ufb04":4,"\ufb03":4,"\ufb00":4,"\u2026":7,"\u201a":7,"\u2019":22,"\u2018":22,"\u017e":6,"\u0161":4,"\u00ff":7,"\u00fd":7,"\u00fc":4,"\u00fb":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"k":1,"\/":-4,",":7,"'":22,"t":3,"w":1,"e":4}},"\u0160":{"d":"72,-257v42,0,54,7,41,27v-17,-14,-86,-13,-80,22v10,55,89,80,89,146v0,39,-15,67,-63,67v-43,0,-56,-10,-41,-32v7,6,19,12,41,12v54,0,53,-67,18,-98v-20,-27,-64,-55,-64,-94v0,-31,22,-50,59,-50xm69,-285v-7,-6,-67,-42,-34,-53v5,0,34,35,34,35v21,-23,30,-48,39,-25v0,5,-34,43,-39,43","w":132,"k":{"\u2212":-2,"\u201d":-3,"\u201c":-3,"\u00f8":4,"\u00ab":8,"y":13,"x":8,"w":12,"v":12,"u":4,"t":15,"s":4,"o":4,"f":11,"e":6,"d":4,"c":4,"b":4,"Y":27,"W":19,"V":23,"T":21,"O":8,"J":2,"G":5,"C":8,"-":-2,"\"":-3,"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u2122":15,"\u2039":7,"\u2019":-3,"\u2018":-3,"\u2014":-2,"\u2013":-2,"\u0178":27,"\u0161":4,"\u0153":4,"\u0152":8,"\u00ff":13,"\u00fd":13,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":4,"\u00e6":4,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"\u00c6":15,"q":6,"_":4,"\\":23,"Q":8,"7":4,"\/":-7,"'":-3}},"\u0161":{"d":"72,-185v41,0,55,10,42,29v-20,-17,-76,-16,-78,11v11,40,83,51,82,100v0,33,-22,51,-59,51v-37,0,-55,-7,-40,-28v23,14,81,16,77,-22v-5,-42,-82,-57,-82,-102v0,-26,23,-39,58,-39xm67,-213v-6,0,-41,-36,-44,-40v1,-4,6,-13,10,-13v5,0,35,35,35,35v21,-24,29,-48,39,-25v0,5,-35,43,-40,43","w":132,"k":{"\u2212":16,"\u201d":20,"\u201c":20,"y":3,"x":1,"-":16,"\"":20,"\u2019":20,"\u2018":20,"\u2014":16,"\u2013":16,"\u00ff":3,"\u00fd":3,"\/":-5,"'":20,")":1,"]":1}},"\u0178":{"d":"56,0r0,-102r-54,-147v-1,-3,-1,-3,22,-3r42,128v3,-18,30,-95,41,-124v1,-4,1,-4,21,-4r-52,149r0,98v0,5,0,5,-20,5xm26,-308v0,-8,5,-15,14,-15v10,0,14,7,14,15v0,9,-5,15,-14,15v-10,0,-14,-6,-14,-15xm76,-308v0,-8,5,-15,14,-15v10,0,15,7,15,15v0,9,-6,15,-15,15v-10,0,-14,-6,-14,-15","w":129,"k":{"\u2212":24,"\u201e":19,"\u201d":-7,"\u201c":-7,"\u00f8":22,"\u00c6":27,"z":19,"y":18,"x":15,"w":15,"v":14,"u":23,"t":12,"s":24,"p":25,"o":22,"n":26,"j":9,"i":3,"g":23,"f":9,"e":26,"d":28,"c":22,"a":22,"S":1,"O":7,"J":28,"G":9,"C":9,"A":27,";":18,":":18,".":19,"-":24,"\"":-7,"\ufb04":9,"\ufb03":9,"\ufb00":9,"\u203a":15,"\u2039":22,"\u2026":19,"\u201a":19,"\u2019":-7,"\u2018":-7,"\u2014":24,"\u2013":24,"\u017e":19,"\u017d":27,"\u0161":24,"\u0160":1,"\u0153":22,"\u0152":7,"\u0131":3,"\u00ff":18,"\u00fd":18,"\u00fc":23,"\u00fb":23,"\u00fa":23,"\u00f9":23,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":26,"\u00ef":3,"\u00ee":3,"\u00ed":3,"\u00ec":3,"\u00eb":26,"\u00ea":26,"\u00e9":26,"\u00e8":26,"\u00e7":22,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dc":27,"\u00db":27,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":27,"\u00cb":27,"\u00ca":27,"\u00c7":9,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"r":26,"q":28,"m":26,"_":27,"Q":7,"@":3,"0":17,"\/":16,",":19,"'":-7,"\u00ab":22,"\u00bb":15}},"\u017d":{"d":"18,-233v2,-8,-4,-17,5,-19r106,0v2,0,4,12,2,17r-101,217r100,-1v-2,8,4,17,-4,19r-114,0v-2,-1,-5,-11,-2,-17r99,-217xm73,-285v-6,0,-41,-36,-44,-40v1,-4,6,-13,10,-13v5,0,34,35,34,35v21,-23,30,-48,39,-25v0,5,-34,43,-39,43","w":141,"k":{"\u2212":37,"\u201d":-3,"\u201c":-3,"\u00f8":7,"\u00ab":6,"y":14,"x":7,"w":14,"v":19,"u":9,"t":8,"s":4,"p":3,"o":7,"g":5,"f":12,"e":10,"d":10,"c":8,"b":4,"a":5,"Y":27,"W":19,"V":23,"T":21,"O":8,"G":5,"C":8,"-":37,"\"":-3,"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u2122":15,"\u2039":6,"\u2019":-3,"\u2018":-3,"\u2014":37,"\u2013":37,"\u017e":5,"\u0178":27,"\u0161":6,"\u0153":7,"\u0152":8,"\u00ff":14,"\u00fd":14,"\u00fc":9,"\u00fb":9,"\u00fa":9,"\u00f9":9,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":8,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00dd":27,"\u00d8":8,"\u00d6":8,"\u00d5":8,"\u00d4":8,"\u00d3":8,"\u00d2":8,"\u00c7":8,"r":9,"q":10,"\\":23,"Q":8,"7":4,"0":5,"\/":-7,"'":-3,")":6,"]":6}},"\u017e":{"d":"23,-180r102,0v2,2,4,13,-1,17r-84,144r86,-2v0,8,1,21,-5,21r-100,0v-3,0,-6,-13,-2,-18r85,-145r-85,1v0,-14,0,-18,4,-18xm73,-213v-6,0,-41,-36,-44,-40v1,-4,6,-13,10,-13v5,0,34,35,34,35v21,-23,30,-48,39,-25v0,5,-34,43,-39,43","w":145,"k":{"\u2212":18,"\u201d":17,"\u201c":17,"y":5,"x":6,"w":5,"u":6,"t":5,"p":5,"o":4,"g":4,"e":6,"d":6,"c":5,"a":5,"]":10,"-":18,")":10,"\"":17,"\u2039":2,"\u2019":17,"\u2018":17,"\u2014":18,"\u2013":18,"\u017e":5,"\u0161":5,"\u0153":4,"\u00ff":5,"\u00fd":5,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":5,"\u00ef":5,"\u00ee":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":5,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"q":6,"m":6,"k":7,"'":17}},"\u017f":{"d":"19,0v5,-63,1,-143,2,-211v0,-40,23,-54,60,-54v34,0,49,12,36,30v-26,-20,-76,-20,-76,35r0,188v5,18,-17,16,-22,12","w":62,"k":{"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u2122":-36,"\u2039":7,"\u2030":-9,"\u2026":16,"\u201a":16,"\u2019":-46,"\u2018":-46,"\u2014":17,"\u2013":17,"\u0153":5,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":5,"\u00ae":-22,"\u00a9":-23,"r":1,"q":6,"m":1,"_":19,"]":-41,"\\":-40,"?":-41,"8":-4,",":16,"*":-12,"'":-46,"&":-7,"!":-28,"d":6,"u":1,"w":-3,"c":5,"e":6,"o":5,"\"":-46,"-":17,"\u2212":17,"\u201c":-46,"\u201d":-46,"\u00ab":7,"b":-2,")":-41,".":16,"\u201e":16,"g":7,"p":6,"h":-2,"k":-2}},"\u02c6":{"d":"74,-260v18,-4,38,33,47,41v-11,20,-34,-12,-43,-23v-5,3,-33,47,-44,23","w":150},"\u02c7":{"d":"60,-213v-7,-6,-67,-42,-34,-53v5,0,34,35,34,35v21,-23,30,-48,39,-25v0,5,-34,43,-39,43","w":112},"\u02d9":{"d":"26,-243v0,-10,4,-17,12,-17v8,0,11,5,11,16v0,11,-4,17,-12,17v-7,0,-11,-4,-11,-16","w":73},"\u02da":{"d":"37,-270v0,-19,15,-35,35,-35v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-35,-16,-35,-36xm49,-270v0,13,10,24,23,24v13,0,23,-11,23,-24v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23","w":138},"\u02dc":{"d":"30,-227v12,-19,24,-24,37,-24v16,0,17,18,32,18v23,0,26,-28,33,-5v-3,6,-15,24,-36,24v-21,0,-20,-19,-33,-19v-14,0,-19,16,-23,16v-5,0,-10,-10,-10,-10","w":167},"\u2013":{"d":"136,-93r-121,0v0,-13,0,-18,5,-18r121,0v0,14,0,18,-5,18","w":156,"k":{"\u203a":20,"\u00bb":20,"z":30,"y":14,"x":32,"w":9,"v":10,"t":12,"f":12,"]":14,"Z":17,"Y":24,"X":24,"W":12,"V":15,"T":39,"S":39,"J":43,"A":13,")":14,"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u017e":30,"\u017d":17,"\u0178":24,"\u0160":39,"\u00ff":14,"\u00fd":14,"\u00dd":24,"\u00dc":5,"\u00db":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d1":5,"\u00cb":5,"\u00ca":5,"\u00c6":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\\":29}},"\u2014":{"d":"245,-93r-243,0v0,-13,0,-18,5,-18r243,0v0,14,0,18,-5,18","w":252,"k":{"\u203a":20,"\u00bb":20,"z":30,"y":14,"x":32,"w":9,"v":10,"t":12,"f":12,"]":14,"Z":17,"Y":24,"X":24,"W":12,"V":15,"T":39,"S":39,"J":43,"A":13,")":14,"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u017e":30,"\u017d":17,"\u0178":24,"\u0160":39,"\u00ff":14,"\u00fd":14,"\u00dd":24,"\u00dc":5,"\u00db":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d1":5,"\u00cb":5,"\u00ca":5,"\u00c6":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\\":29}},"\u2018":{"d":"35,-238v12,7,8,31,-7,30v-33,-4,0,-78,7,-77v19,4,-5,35,0,47","w":57,"k":{"z":25,"y":26,"x":23,"w":24,"v":24,"u":27,"t":8,"s":35,"p":37,"o":33,"n":36,"g":40,"f":15,"e":36,"d":42,"c":37,"a":27,"]":-7,"[":28,"Y":-7,"W":-5,"V":-5,"T":-6,"O":7,"J":45,"G":12,"C":17,"A":41,")":-7,"(":28,"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u20ac":40,"\u017e":25,"\u017d":3,"\u0178":-7,"\u0161":35,"\u0160":5,"\u0153":33,"\u0152":7,"\u00ff":26,"\u00fd":26,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f8":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00f1":36,"\u00ef":-16,"\u00ee":-15,"\u00ec":-18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":37,"\u00e6":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00dd":-7,"\u00dc":5,"\u00db":5,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":3,"\u00cf":-4,"\u00ce":-13,"\u00cb":3,"\u00ca":1,"\u00c7":17,"\u00c6":41,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"\u00bf":36,"\u00a2":11,"r":36,"q":42,"m":36,"\\":-12,"Q":7,"@":26,"?":-7,"9":14,"6":12,"4":34,"3":3,"2":5,"1":14,"0":17,"\/":38,"+":14}},"\u2019":{"d":"22,-254v-12,-7,-9,-30,7,-29v34,2,0,77,-7,76v-17,-4,5,-35,0,-47","w":57,"k":{"z":25,"y":26,"x":23,"w":24,"v":24,"u":27,"t":8,"s":35,"p":37,"o":33,"n":36,"g":40,"f":15,"e":36,"d":42,"c":37,"a":27,"]":-7,"[":28,"Y":-7,"W":-5,"V":-5,"T":-6,"O":7,"J":45,"G":12,"C":17,"A":41,")":-7,"(":28,"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u20ac":40,"\u017e":25,"\u017d":3,"\u0178":-7,"\u0161":35,"\u0160":5,"\u0153":33,"\u0152":7,"\u00ff":26,"\u00fd":26,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f8":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00f1":36,"\u00ef":-16,"\u00ee":-15,"\u00ec":-18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":37,"\u00e6":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00dd":-7,"\u00dc":5,"\u00db":5,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":3,"\u00cf":-4,"\u00ce":-13,"\u00cb":3,"\u00ca":1,"\u00c7":17,"\u00c6":41,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"\u00bf":36,"\u00a2":11,"r":36,"q":42,"m":36,"\\":-12,"Q":7,"@":26,"?":-7,"9":14,"6":12,"4":34,"3":3,"2":5,"1":14,"0":17,"\/":38,"+":14}},"\u201a":{"d":"22,-7v-12,-6,-9,-30,7,-29v34,3,0,77,-7,76v-17,-4,5,-36,0,-47","w":56,"k":{"\u00f8":7,"y":20,"w":14,"v":16,"u":10,"t":18,"o":7,"j":-35,"f":14,"e":7,"d":7,"c":5,"Y":19,"W":11,"V":17,"U":1,"T":31,"O":13,"G":4,"C":12,"\ufb04":14,"\ufb03":14,"\ufb00":14,"\u0178":19,"\u0153":7,"\u0152":13,"\u00ff":20,"\u00fd":20,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":5,"\u00dd":19,"\u00dc":1,"\u00db":1,"\u00da":1,"\u00d9":1,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c7":12,"q":7,"\\":44,"Q":13}},"\u201c":{"d":"35,-238v12,7,8,31,-7,30v-33,-4,0,-78,7,-77v19,4,-5,35,0,47xm85,-238v11,7,9,31,-7,30v-33,-4,0,-78,7,-77v19,4,-5,35,0,47","w":107,"k":{"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u20ac":40,"\u017e":25,"\u017d":3,"\u0178":-7,"\u0161":35,"\u0160":5,"\u0153":33,"\u0152":7,"\u00ff":26,"\u00fd":26,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f8":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00f1":36,"\u00ef":-16,"\u00ee":-15,"\u00ec":-18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":37,"\u00e6":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00dd":-7,"\u00dc":5,"\u00db":5,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":3,"\u00cf":-4,"\u00ce":-13,"\u00cb":3,"\u00ca":1,"\u00c7":17,"\u00c6":41,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"\u00bf":36,"\u00a2":11,"r":36,"q":42,"m":36,"\\":-12,"Q":7,"@":26,"?":-7,"9":14,"6":12,"4":34,"3":3,"2":5,"1":14,"0":17,"\/":38,"+":14,"C":17,"G":12,"T":-6,"V":-5,"W":-5,"Y":-7,"d":42,"f":15,"t":8,"u":27,"v":24,"w":24,"y":26,"c":37,"e":36,"o":33,"O":7,")":-7,"]":-7,"A":41,"J":45,"x":23,"a":27,"z":25,"g":40,"n":36,"p":37,"s":35,"(":28,"[":28}},"\u201d":{"d":"72,-254v-12,-7,-8,-29,7,-29v34,3,0,77,-7,76v-19,-3,6,-35,0,-47xm22,-254v-12,-7,-9,-30,7,-29v34,2,0,77,-7,76v-17,-4,5,-35,0,-47","w":107,"k":{"\ufb04":15,"\ufb03":15,"\ufb00":15,"\u20ac":40,"\u017e":25,"\u017d":3,"\u0178":-7,"\u0161":35,"\u0160":5,"\u0153":33,"\u0152":7,"\u00ff":26,"\u00fd":26,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f8":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u00f1":36,"\u00ef":-16,"\u00ee":-15,"\u00ec":-18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":37,"\u00e6":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00dd":-7,"\u00dc":5,"\u00db":5,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":3,"\u00cf":-4,"\u00ce":-13,"\u00cb":3,"\u00ca":1,"\u00c7":17,"\u00c6":41,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"\u00bf":36,"\u00a2":11,"r":36,"q":42,"m":36,"\\":-12,"Q":7,"@":26,"?":-7,"9":14,"6":12,"4":34,"3":3,"2":5,"1":14,"0":17,"\/":38,"+":14,"C":17,"G":12,"T":-6,"V":-5,"W":-5,"Y":-7,"d":42,"f":15,"t":8,"u":27,"v":24,"w":24,"y":26,"c":37,"e":36,"o":33,"O":7,")":-7,"]":-7,"A":41,"J":45,"x":23,"a":27,"z":25,"g":40,"n":36,"p":37,"s":35,"(":28,"[":28}},"\u201e":{"d":"72,-7v-12,-6,-8,-30,7,-29v34,3,0,77,-7,76v-19,-3,6,-36,0,-47xm22,-7v-12,-6,-9,-30,7,-29v34,3,0,77,-7,76v-17,-4,5,-36,0,-47","w":106,"k":{"\ufb04":14,"\ufb03":14,"\ufb00":14,"\u0178":19,"\u0153":7,"\u0152":13,"\u00ff":20,"\u00fd":20,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":5,"\u00dd":19,"\u00dc":1,"\u00db":1,"\u00da":1,"\u00d9":1,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c7":12,"q":7,"\\":44,"Q":13,"C":12,"G":4,"T":31,"V":17,"W":11,"Y":19,"d":7,"f":14,"t":18,"u":10,"v":16,"w":14,"y":20,"c":5,"e":7,"o":7,"\u00f8":7,"O":13,"j":-35,"U":1}},"\u2022":{"d":"18,-102v0,-13,9,-23,22,-23v15,0,23,10,23,23v0,13,-9,24,-23,24v-15,0,-22,-10,-22,-24","w":77},"\u2026":{"d":"16,-14v0,-9,6,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16xm72,-14v0,-9,6,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16xm129,-14v0,-9,6,-16,15,-16v11,0,16,7,16,16v0,9,-6,16,-16,16v-11,0,-15,-6,-15,-16","w":175,"k":{"\u00f8":7,"y":20,"w":14,"v":16,"u":10,"t":18,"o":7,"f":14,"e":7,"d":7,"c":5,"Y":19,"W":11,"V":17,"U":1,"T":31,"O":13,"G":4,"C":12,"\ufb04":14,"\ufb03":14,"\ufb00":14,"\u0178":19,"\u0153":7,"\u0152":13,"\u00ff":20,"\u00fd":20,"\u00fc":10,"\u00fb":10,"\u00fa":10,"\u00f9":10,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":5,"\u00dd":19,"\u00dc":1,"\u00db":1,"\u00da":1,"\u00d9":1,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c7":12,"q":7,"\\":44,"Q":13,"\/":-5}},"\u2030":{"d":"52,8v0,0,-12,-2,-12,-8v0,-7,156,-258,156,-258v0,0,12,3,12,9v0,2,-156,257,-156,257xm24,-190v0,-46,19,-66,51,-66v31,0,48,15,48,66v0,45,-18,66,-50,66v-31,0,-49,-9,-49,-66xm43,-189v0,40,11,49,30,49v19,0,31,-14,31,-50v0,-40,-10,-50,-29,-50v-19,0,-32,12,-32,51xm134,-62v0,-46,19,-66,51,-66v31,0,48,15,48,66v0,45,-18,66,-50,66v-31,0,-49,-9,-49,-66xm153,-60v0,40,11,48,30,48v19,0,31,-14,31,-50v0,-40,-10,-50,-29,-50v-19,0,-32,13,-32,52xm242,-62v0,-46,19,-66,51,-66v32,0,48,15,48,66v0,45,-18,66,-50,66v-31,0,-49,-9,-49,-66xm261,-60v0,40,11,48,30,48v19,0,32,-14,32,-50v0,-40,-11,-50,-30,-50v-19,0,-32,13,-32,52","w":356,"k":{"\u201d":27,"\u201c":27,"\"":27,"\u2019":27,"\u2018":27,"'":27}},"\u2039":{"d":"10,-90v0,-9,54,-90,54,-90v8,0,12,10,12,10v0,10,-47,80,-47,80v0,0,48,70,48,78v0,0,-4,12,-11,12v0,0,-56,-80,-56,-90","w":92,"k":{"\u0178":17,"\u00dd":17,"Y":17,"V":10,"T":24,"W":10}},"\u203a":{"d":"82,-90v0,10,-55,90,-55,90v0,0,-12,-3,-12,-12v0,-9,48,-78,48,-78v0,0,-46,-70,-46,-80v0,-7,12,-10,12,-10v0,0,53,81,53,90","w":92,"k":{"\u017e":11,"\u0178":20,"\u00ff":2,"\u00fd":2,"\u00dd":20,"\u00c6":5,"z":11,"y":2,"x":9,"w":2,"t":9,"f":11,"]":6,"Y":20,"X":10,"W":11,"V":14,"T":24,"J":13,"A":5,")":6,"\u2014":-7,"\u2013":-7,"\u017d":6,"\u0160":5,"\u00dc":5,"\u00db":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d1":5,"\u00cb":5,"\u00ca":5,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"v":6,"-":-7,"\u2212":-7,"Z":6}},"\u2044":{"d":"22,8v0,0,-12,-2,-12,-8v0,-7,157,-258,157,-258v0,0,11,3,11,9v0,2,-156,257,-156,257","w":186,"k":{"]":-9,")":-9}},"\u20ac":{"d":"109,-218v31,0,40,10,30,27v-31,-14,-65,-17,-75,47r59,0v3,32,-39,11,-61,17r-1,35r48,0v4,29,-29,11,-48,16v4,76,44,69,79,49v10,20,-8,32,-37,32v-32,0,-58,-8,-62,-81r-33,0v-3,-24,16,-14,32,-16r1,-35r-33,0v-4,-26,18,-15,35,-17v9,-66,40,-74,66,-74","k":{"\u2212":7,"\u2014":7,"\u2013":7,"]":9,"-":7,")":9}},"\u2122":{"d":"97,-138r0,-110v-1,-4,7,-4,11,-4r27,72r24,-68v-1,-4,8,-4,13,-4r0,111v0,4,-1,3,-13,3r2,-83r-23,60r-8,0r-22,-59r1,79v0,4,0,3,-12,3xm89,-252v3,21,-19,9,-31,12r0,99v0,3,0,3,-12,3r0,-102r-34,0v-1,-5,1,-13,4,-12r73,0","w":190,"k":{"\/":25}},"\u2212":{"d":"136,-93r-121,0v0,-13,0,-18,5,-18r121,0v0,14,0,18,-5,18","k":{"\ufb04":12,"\ufb03":12,"\ufb00":12,"\u017e":30,"\u017d":17,"\u0178":24,"\u0160":39,"\u00ff":14,"\u00fd":14,"\u00dd":24,"\u00c6":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\\":29,"T":39,"V":15,"W":12,"Y":24,"f":12,"t":12,"v":10,"w":9,"y":14,")":14,"]":14,"A":13,"J":43,"X":24,"x":32,"S":39,"z":30,"\u00bb":20,"\u203a":20,"Z":17}},"\ufb00":{"d":"109,-163r-56,0r0,158v1,5,-13,6,-20,5r0,-163r-28,0v-3,-28,12,-13,28,-17r0,-23v4,-77,58,-68,91,-48v14,-19,68,-15,75,-4v0,5,-1,8,-2,12v-32,-6,-66,-14,-68,38r0,25r38,0v5,33,-20,11,-38,17r0,158v1,5,-13,6,-20,5r0,-163xm53,-205r0,25r56,0v0,-22,0,-47,7,-59v-27,-12,-60,-21,-63,34","w":165,"k":{"\u201e":16,"\u201d":-46,"\u201c":-46,"w":-3,"u":1,"p":6,"o":5,"k":-2,"h":-2,"g":7,"f":11,"e":6,"d":6,"c":5,"b":-2,".":16,")":-41,"\"":-46,"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u2122":-36,"\u2030":-9,"\u2026":16,"\u201a":16,"\u2019":-46,"\u2018":-46,"\u017e":3,"\u0153":7,"\u00fc":1,"\u00fb":1,"\u00fa":1,"\u00f9":1,"\u00f8":9,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":5,"\u00ae":-22,"\u00a9":-23,"r":1,"q":9,"m":1,"]":-10,"\\":-40,"?":-33,"8":-4,",":16,"*":-10,"'":-46,"&":-7,"!":-28}},"\ufb03":{"d":"109,-163r-57,0r0,158v1,7,-12,5,-20,5r0,-163r-27,0v-4,-28,11,-13,27,-17r0,-23v5,-76,58,-69,92,-48v15,-19,71,-15,83,-5v0,5,-2,11,-3,15v-32,-8,-75,-20,-75,36r0,25r30,0v4,30,-14,12,-30,17r0,158v1,5,-13,6,-20,5r0,-163xm109,-180v0,-22,0,-46,7,-59v-26,-12,-61,-21,-64,34r0,25r57,0xm201,-180r0,175v0,5,0,5,-20,5r0,-170v0,-10,4,-10,20,-10","w":221},"\ufb04":{"d":"109,-163r-57,0r0,158v1,7,-12,5,-20,5r0,-163r-27,0v-4,-28,11,-13,27,-17r0,-23v5,-76,58,-69,92,-48v21,-22,61,-11,80,-3r0,249v0,5,1,5,-19,5r0,-244v-27,-4,-56,-12,-56,39r0,25r30,0v4,30,-14,12,-30,17r0,158v1,5,-13,6,-20,5r0,-163xm109,-180v0,-22,0,-46,7,-59v-26,-12,-61,-21,-64,34r0,25r57,0","w":225},"\u00a0":{"w":61}}});



