/* PLUGINS INCLUDED:
 *
 * hoverIntent r5
 * Cycle 2.75
 * jQuery validation 1.6
 * Superfish v1.4.8
 * CurvyCorners 2.0.4
 * Cufon
 * Cufon register font (Aller)
 *
 */
 
 
 // JavaScript Document

/**
* hoverIntent is similar to jQuery's built-in "hover" function except that
* instead of firing the onMouseOver event immediately, hoverIntent checks
* to see if the user's mouse has slowed down (beneath the sensitivity
* threshold) before firing the onMouseOver event.
* 
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* hoverIntent is currently available for use in all personal or commercial 
* projects under both MIT and GPL licenses. This means that you can choose 
* the license that best suits your project, and use it accordingly.
* 
* // basic usage (just like .hover) receives onMouseOver and onMouseOut functions
* $("ul li").hoverIntent( showNav , hideNav );
* 
* // advanced usage receives configuration object only
* $("ul li").hoverIntent({
*	sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
*	interval: 100,   // number = milliseconds of polling interval
*	over: showNav,  // function = onMouseOver callback (required)
*	timeout: 0,   // number = milliseconds delay before onMouseOut function call
*	out: hideNav    // function = onMouseOut callback (required)
* });
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($) {
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
})(jQuery);
 
 
 
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.73 (04-NOV-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.73';

// 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).each(function() {
		$(this).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[0]);
			});
			$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);

/*
 * jQuery validation plug-in 1.6
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2008 J?rn Zaefferer
 *
 * $Id: jquery.validate.js 6403 2009-06-17 14:27:16Z joern.zaefferer $
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(7($){$.H($.2O,{1d:7(d){l(!6.F){d&&d.24&&2Y.1H&&1H.52("3v 3o, 4N\'t 1d, 67 3v");8}p c=$.17(6[0],\'v\');l(c){8 c}c=2e $.v(d,6[0]);$.17(6[0],\'v\',c);l(c.q.3u){6.3r("1B, 3j").1n(".4G").3b(7(){c.3a=w});l(c.q.35){6.3r("1B, 3j").1n(":23").3b(7(){c.1V=6})}6.23(7(b){l(c.q.24)b.5N();7 2m(){l(c.q.35){l(c.1V){p a=$("<1B 1A=\'5v\'/>").1p("u",c.1V.u).2M(c.1V.Z).51(c.U)}c.q.35.11(c,c.U);l(c.1V){a.3A()}8 I}8 w}l(c.3a){c.3a=I;8 2m()}l(c.M()){l(c.1a){c.1l=w;8 I}8 2m()}16{c.2h();8 I}})}8 c},J:7(){l($(6[0]).2Z(\'M\')){8 6.1d().M()}16{p b=w;p a=$(6[0].M).1d();6.P(7(){b&=a.L(6)});8 b}},4F:7(c){p d={},$L=6;$.P(c.1O(/\\s/),7(a,b){d[b]=$L.1p(b);$L.6c(b)});8 d},1f:7(h,k){p f=6[0];l(h){p i=$.17(f.M,\'v\').q;p d=i.1f;p c=$.v.2D(f);22(h){1b"1e":$.H(c,$.v.1N(k));d[f.u]=c;l(k.G)i.G[f.u]=$.H(i.G[f.u],k.G);2K;1b"3A":l(!k){S d[f.u];8 c}p e={};$.P(k.1O(/\\s/),7(a,b){e[b]=c[b];S c[b]});8 e}}p g=$.v.42($.H({},$.v.3Y(f),$.v.3W(f),$.v.3U(f),$.v.2D(f)),f);l(g.14){p j=g.14;S g.14;g=$.H({14:j},g)}8 g}});$.H($.5s[":"],{5p:7(a){8!$.1q(""+a.Z)},5i:7(a){8!!$.1q(""+a.Z)},5f:7(a){8!a.4l}});$.v=7(b,a){6.q=$.H({},$.v.33,b);6.U=a;6.3I()};$.v.W=7(c,b){l(T.F==1)8 7(){p a=$.3D(T);a.4V(c);8 $.v.W.1Q(6,a)};l(T.F>2&&b.29!=3x){b=$.3D(T).4R(1)}l(b.29!=3x){b=[b]}$.P(b,7(i,n){c=c.1P(2e 3s("\\\\{"+i+"\\\\}","g"),n)});8 c};$.H($.v,{33:{G:{},2d:{},1f:{},19:"3p",26:"J",2C:"4Q",2h:w,3l:$([]),2A:$([]),3u:w,3i:[],3Q:I,4O:7(a){6.3e=a;l(6.q.4M&&!6.4J){6.q.1L&&6.q.1L.11(6,a,6.q.19,6.q.26);6.1K(a).2y()}},4E:7(a){l(!6.1D(a)&&(a.u V 6.1c||!6.K(a))){6.L(a)}},6b:7(a){l(a.u V 6.1c||a==6.4y){6.L(a)}},69:7(a){l(a.u V 6.1c)6.L(a);16 l(a.4v.u V 6.1c)6.L(a.4v)},38:7(a,c,b){$(a).1Y(c).2w(b)},1L:7(a,c,b){$(a).2w(c).1Y(b)}},65:7(a){$.H($.v.33,a)},G:{14:"61 4q 2Z 14.",1r:"N 2L 6 4q.",1I:"N O a J 1I 60.",1v:"N O a J 5X.",1u:"N O a J 1u.",2q:"N O a J 1u (5R).",1s:"N O a J 1s.",1U:"N O 5P 1U.",2c:"N O a J 5O 5M 1s.",2n:"N O 47 5I Z 5H.",44:"N O a Z 5C a J 5B.",18:$.v.W("N O 3X 5y 2X {0} 2W."),1z:$.v.W("N O 5x 5w {0} 2W."),2j:$.v.W("N O a Z 3V {0} 45 {1} 2W 5q."),2i:$.v.W("N O a Z 3V {0} 45 {1}."),1x:$.v.W("N O a Z 5k 2X 3L 3K 48 {0}."),1F:$.v.W("N O a Z 5d 2X 3L 3K 48 {0}.")},3J:I,5b:{3I:7(){6.2r=$(6.q.2A);6.4i=6.2r.F&&6.2r||$(6.U);6.2s=$(6.q.3l).1e(6.q.2A);6.1c={};6.55={};6.1a=0;6.1i={};6.1g={};6.21();p f=(6.2d={});$.P(6.q.2d,7(d,c){$.P(c.1O(/\\s/),7(a,b){f[b]=d})});p e=6.q.1f;$.P(e,7(b,a){e[b]=$.v.1N(a)});7 1C(a){p b=$.17(6[0].M,"v");b.q["4A"+a.1A]&&b.q["4A"+a.1A].11(b,6[0])}$(6.U).1C("3F 3E 4W",":3C, :4U, :4T, 2b, 4S",1C).1C("3b",":3B, :3z, 2b, 3y",1C);l(6.q.3w)$(6.U).2J("1g-M.1d",6.q.3w)},M:7(){6.3t();$.H(6.1c,6.1w);6.1g=$.H({},6.1w);l(!6.J())$(6.U).2H("1g-M",[6]);6.1m();8 6.J()},3t:7(){6.2G();Q(p i=0,13=(6.27=6.13());13[i];i++){6.28(13[i])}8 6.J()},L:7(a){a=6.2F(a);6.4y=a;6.2E(a);6.27=$(a);p b=6.28(a);l(b){S 6.1g[a.u]}16{6.1g[a.u]=w}l(!6.3q()){6.12=6.12.1e(6.2s)}6.1m();8 b},1m:7(b){l(b){$.H(6.1w,b);6.R=[];Q(p c V b){6.R.2a({1j:b[c],L:6.2f(c)[0]})}6.1k=$.3n(6.1k,7(a){8!(a.u V b)})}6.q.1m?6.q.1m.11(6,6.1w,6.R):6.3m()},2B:7(){l($.2O.2B)$(6.U).2B();6.1c={};6.2G();6.2T();6.13().2w(6.q.19)},3q:7(){8 6.2g(6.1g)},2g:7(a){p b=0;Q(p i V a)b++;8 b},2T:7(){6.2P(6.12).2y()},J:7(){8 6.3N()==0},3N:7(){8 6.R.F},2h:7(){l(6.q.2h){3O{$(6.3h()||6.R.F&&6.R[0].L||[]).1n(":4P").3g()}3f(e){}}},3h:7(){p a=6.3e;8 a&&$.3n(6.R,7(n){8 n.L.u==a.u}).F==1&&a},13:7(){p a=6,2U={};8 $([]).1e(6.U.13).1n(":1B").1R(":23, :21, :4L, [4K]").1R(6.q.3i).1n(7(){!6.u&&a.q.24&&2Y.1H&&1H.3p("%o 4I 3X u 4H",6);l(6.u V 2U||!a.2g($(6).1f()))8 I;2U[6.u]=w;8 w})},2F:7(a){8 $(a)[0]},2z:7(){8 $(6.q.2C+"."+6.q.19,6.4i)},21:7(){6.1k=[];6.R=[];6.1w={};6.1o=$([]);6.12=$([]);6.27=$([])},2G:7(){6.21();6.12=6.2z().1e(6.2s)},2E:7(a){6.21();6.12=6.1K(a)},28:7(d){d=6.2F(d);l(6.1D(d)){d=6.2f(d.u)[0]}p a=$(d).1f();p c=I;Q(Y V a){p b={Y:Y,2l:a[Y]};3O{p f=$.v.1T[Y].11(6,d.Z.1P(/\\r/g,""),d,b.2l);l(f=="1S-1Z"){c=w;4D}c=I;l(f=="1i"){6.12=6.12.1R(6.1K(d));8}l(!f){6.3c(d,b);8 I}}3f(e){6.q.24&&2Y.1H&&1H.4C("6g 6f 6e 6d L "+d.4z+", 28 47 \'"+b.Y+"\' Y",e);6a e;}}l(c)8;l(6.2g(a))6.1k.2a(d);8 w},4x:7(a,b){l(!$.1y)8;p c=6.q.39?$(a).1y()[6.q.39]:$(a).1y();8 c&&c.G&&c.G[b]},4w:7(a,b){p m=6.q.G[a];8 m&&(m.29==4u?m:m[b])},4t:7(){Q(p i=0;i<T.F;i++){l(T[i]!==20)8 T[i]}8 20},2x:7(a,b){8 6.4t(6.4w(a.u,b),6.4x(a,b),!6.q.3Q&&a.68||20,$.v.G[b],"<4s>66: 64 1j 63 Q "+a.u+"</4s>")},3c:7(b,a){p c=6.2x(b,a.Y),36=/\\$?\\{(\\d+)\\}/g;l(1h c=="7"){c=c.11(6,a.2l,b)}16 l(36.15(c)){c=2v.W(c.1P(36,\'{$1}\'),a.2l)}6.R.2a({1j:c,L:b});6.1w[b.u]=c;6.1c[b.u]=c},2P:7(a){l(6.q.2u)a=a.1e(a.4p(6.q.2u));8 a},3m:7(){Q(p i=0;6.R[i];i++){p a=6.R[i];6.q.38&&6.q.38.11(6,a.L,6.q.19,6.q.26);6.34(a.L,a.1j)}l(6.R.F){6.1o=6.1o.1e(6.2s)}l(6.q.1G){Q(p i=0;6.1k[i];i++){6.34(6.1k[i])}}l(6.q.1L){Q(p i=0,13=6.4o();13[i];i++){6.q.1L.11(6,13[i],6.q.19,6.q.26)}}6.12=6.12.1R(6.1o);6.2T();6.2P(6.1o).4n()},4o:7(){8 6.27.1R(6.4m())},4m:7(){8 $(6.R).3d(7(){8 6.L})},34:7(a,c){p b=6.1K(a);l(b.F){b.2w().1Y(6.q.19);b.1p("4k")&&b.4j(c)}16{b=$("<"+6.q.2C+"/>").1p({"Q":6.32(a),4k:w}).1Y(6.q.19).4j(c||"");l(6.q.2u){b=b.2y().4n().5Z("<"+6.q.2u+"/>").4p()}l(!6.2r.5Y(b).F)6.q.4h?6.q.4h(b,$(a)):b.5W(a)}l(!c&&6.q.1G){b.3C("");1h 6.q.1G=="1t"?b.1Y(6.q.1G):6.q.1G(b)}6.1o=6.1o.1e(b)},1K:7(a){p b=6.32(a);8 6.2z().1n(7(){8 $(6).1p(\'Q\')==b})},32:7(a){8 6.2d[a.u]||(6.1D(a)?a.u:a.4z||a.u)},1D:7(a){8/3B|3z/i.15(a.1A)},2f:7(d){p c=6.U;8 $(5V.5U(d)).3d(7(a,b){8 b.M==c&&b.u==d&&b||4g})},1M:7(a,b){22(b.4f.3k()){1b\'2b\':8 $("3y:3o",b).F;1b\'1B\':l(6.1D(b))8 6.2f(b.u).1n(\':4l\').F}8 a.F},4e:7(b,a){8 6.2I[1h b]?6.2I[1h b](b,a):w},2I:{"5Q":7(b,a){8 b},"1t":7(b,a){8!!$(b,a.M).F},"7":7(b,a){8 b(a)}},K:7(a){8!$.v.1T.14.11(6,$.1q(a.Z),a)&&"1S-1Z"},4d:7(a){l(!6.1i[a.u]){6.1a++;6.1i[a.u]=w}},4c:7(a,b){6.1a--;l(6.1a<0)6.1a=0;S 6.1i[a.u];l(b&&6.1a==0&&6.1l&&6.M()){$(6.U).23();6.1l=I}16 l(!b&&6.1a==0&&6.1l){$(6.U).2H("1g-M",[6]);6.1l=I}},2o:7(a){8 $.17(a,"2o")||$.17(a,"2o",{31:4g,J:w,1j:6.2x(a,"1r")})}},1J:{14:{14:w},1I:{1I:w},1v:{1v:w},1u:{1u:w},2q:{2q:w},4b:{4b:w},1s:{1s:w},4a:{4a:w},1U:{1U:w},2c:{2c:w}},49:7(a,b){a.29==4u?6.1J[a]=b:$.H(6.1J,a)},3W:7(b){p a={};p c=$(b).1p(\'5L\');c&&$.P(c.1O(\' \'),7(){l(6 V $.v.1J){$.H(a,$.v.1J[6])}});8 a},3U:7(c){p a={};p d=$(c);Q(Y V $.v.1T){p b=d.1p(Y);l(b){a[Y]=b}}l(a.18&&/-1|5K|5J/.15(a.18)){S a.18}8 a},3Y:7(a){l(!$.1y)8{};p b=$.17(a.M,\'v\').q.39;8 b?$(a).1y()[b]:$(a).1y()},2D:7(b){p a={};p c=$.17(b.M,\'v\');l(c.q.1f){a=$.v.1N(c.q.1f[b.u])||{}}8 a},42:7(d,e){$.P(d,7(c,b){l(b===I){S d[c];8}l(b.30||b.2t){p a=w;22(1h b.2t){1b"1t":a=!!$(b.2t,e.M).F;2K;1b"7":a=b.2t.11(e,e);2K}l(a){d[c]=b.30!==20?b.30:w}16{S d[c]}}});$.P(d,7(a,b){d[a]=$.46(b)?b(e):b});$.P([\'1z\',\'18\',\'1F\',\'1x\'],7(){l(d[6]){d[6]=2Q(d[6])}});$.P([\'2j\',\'2i\'],7(){l(d[6]){d[6]=[2Q(d[6][0]),2Q(d[6][1])]}});l($.v.3J){l(d.1F&&d.1x){d.2i=[d.1F,d.1x];S d.1F;S d.1x}l(d.1z&&d.18){d.2j=[d.1z,d.18];S d.1z;S d.18}}l(d.G){S d.G}8 d},1N:7(a){l(1h a=="1t"){p b={};$.P(a.1O(/\\s/),7(){b[6]=w});a=b}8 a},5G:7(c,a,b){$.v.1T[c]=a;$.v.G[c]=b!=20?b:$.v.G[c];l(a.F<3){$.v.49(c,$.v.1N(c))}},1T:{14:7(c,d,a){l(!6.4e(a,d))8"1S-1Z";22(d.4f.3k()){1b\'2b\':p b=$(d).2M();8 b&&b.F>0;1b\'1B\':l(6.1D(d))8 6.1M(c,d)>0;5F:8 $.1q(c).F>0}},1r:7(f,h,j){l(6.K(h))8"1S-1Z";p g=6.2o(h);l(!6.q.G[h.u])6.q.G[h.u]={};g.43=6.q.G[h.u].1r;6.q.G[h.u].1r=g.1j;j=1h j=="1t"&&{1v:j}||j;l(g.31!==f){g.31=f;p k=6;6.4d(h);p i={};i[h.u]=f;$.2R($.H(w,{1v:j,41:"2S",40:"1d"+h.u,5A:"5z",17:i,1G:7(d){k.q.G[h.u].1r=g.43;p b=d===w;l(b){p e=k.1l;k.2E(h);k.1l=e;k.1k.2a(h);k.1m()}16{p a={};p c=(g.1j=d||k.2x(h,"1r"));a[h.u]=$.46(c)?c(f):c;k.1m(a)}g.J=b;k.4c(h,b)}},j));8"1i"}16 l(6.1i[h.u]){8"1i"}8 g.J},1z:7(b,c,a){8 6.K(c)||6.1M($.1q(b),c)>=a},18:7(b,c,a){8 6.K(c)||6.1M($.1q(b),c)<=a},2j:7(b,d,a){p c=6.1M($.1q(b),d);8 6.K(d)||(c>=a[0]&&c<=a[1])},1F:7(b,c,a){8 6.K(c)||b>=a},1x:7(b,c,a){8 6.K(c)||b<=a},2i:7(b,c,a){8 6.K(c)||(b>=a[0]&&b<=a[1])},1I:7(a,b){8 6.K(b)||/^((([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^X`{\\|}~]|[\\y-\\x\\E-\\C\\A-\\B])+(\\.([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^X`{\\|}~]|[\\y-\\x\\E-\\C\\A-\\B])+)*)|((\\3T)((((\\2k|\\1X)*(\\2V\\3S))?(\\2k|\\1X)+)?(([\\3R-\\5u\\3P\\3M\\5t-\\5r\\3Z]|\\5D|[\\5E-\\5o]|[\\5n-\\5m]|[\\y-\\x\\E-\\C\\A-\\B])|(\\\\([\\3R-\\1X\\3P\\3M\\2V-\\3Z]|[\\y-\\x\\E-\\C\\A-\\B]))))*(((\\2k|\\1X)*(\\2V\\3S))?(\\2k|\\1X)+)?(\\3T)))@((([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])))\\.)+(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|[\\y-\\x\\E-\\C\\A-\\B])))\\.?$/i.15(a)},1v:7(a,b){8 6.K(b)||/^(5l?|5j):\\/\\/(((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:)*@)?(((\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5]))|((([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])))\\.)+(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|[\\y-\\x\\E-\\C\\A-\\B])))\\.?)(:\\d*)?)(\\/((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)+(\\/(([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)*)*)?)?(\\?((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)|[\\5h-\\5g]|\\/|\\?)*)?(\\#((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)|\\/|\\?)*)?$/i.15(a)},1u:7(a,b){8 6.K(b)||!/5e|5S/.15(2e 5T(a))},2q:7(a,b){8 6.K(b)||/^\\d{4}[\\/-]\\d{1,2}[\\/-]\\d{1,2}$/.15(a)},1s:7(a,b){8 6.K(b)||/^-?(?:\\d+|\\d{1,3}(?:,\\d{3})+)(?:\\.\\d+)?$/.15(a)},1U:7(a,b){8 6.K(b)||/^\\d+$/.15(a)},2c:7(b,e){l(6.K(e))8"1S-1Z";l(/[^0-9-]+/.15(b))8 I;p a=0,d=0,2p=I;b=b.1P(/\\D/g,"");Q(p n=b.F-1;n>=0;n--){p c=b.5c(n);p d=5a(c,10);l(2p){l((d*=2)>9)d-=9}a+=d;2p=!2p}8(a%10)==0},44:7(b,c,a){a=1h a=="1t"?a.1P(/,/g,\'|\'):"59|58?g|57";8 6.K(c)||b.62(2e 3s(".("+a+")$","i"))},2n:7(c,d,a){p b=$(a).56(".1d-2n").2J("4B.1d-2n",7(){$(d).J()});8 c==b.2M()}}});$.W=$.v.W})(2v);(7($){p c=$.2R;p d={};$.2R=7(a){a=$.H(a,$.H({},$.54,a));p b=a.40;l(a.41=="2S"){l(d[b]){d[b].2S()}8(d[b]=c.1Q(6,T))}8 c.1Q(6,T)}})(2v);(7($){$.P({3g:\'3F\',4B:\'3E\'},7(b,a){$.1E.37[a]={53:7(){l($.3H.4r)8 I;6.50(b,$.1E.37[a].2N,w)},4Z:7(){l($.3H.4r)8 I;6.4Y(b,$.1E.37[a].2N,w)},2N:7(e){T[0]=$.1E.2L(e);T[0].1A=a;8 $.1E.2m.1Q(6,T)}}});$.H($.2O,{1C:7(d,e,c){8 6.2J(d,7(a){p b=$(a.3G);l(b.2Z(e)){8 c.1Q(b,T)}})},4X:7(a,b){8 6.2H(a,[$.1E.2L({1A:a,3G:b})])}})})(2v);',62,389,'||||||this|function|return|||||||||||||if||||var|settings||||name|validator|true|uD7FF|u00A0||uFDF0|uFFEF|uFDCF||uF900|length|messages|extend|false|valid|optional|element|form|Please|enter|each|for|errorList|delete|arguments|currentForm|in|format|_|method|value||call|toHide|elements|required|test|else|data|maxlength|errorClass|pendingRequest|case|submitted|validate|add|rules|invalid|typeof|pending|message|successList|formSubmitted|showErrors|filter|toShow|attr|trim|remote|number|string|date|url|errorMap|max|metadata|minlength|type|input|delegate|checkable|event|min|success|console|email|classRuleSettings|errorsFor|unhighlight|getLength|normalizeRule|split|replace|apply|not|dependency|methods|digits|submitButton|da|x09|addClass|mismatch|undefined|reset|switch|submit|debug||validClass|currentElements|check|constructor|push|select|creditcard|groups|new|findByName|objectLength|focusInvalid|range|rangelength|x20|parameters|handle|equalTo|previousValue|bEven|dateISO|labelContainer|containers|depends|wrapper|jQuery|removeClass|defaultMessage|hide|errors|errorLabelContainer|resetForm|errorElement|staticRules|prepareElement|clean|prepareForm|triggerHandler|dependTypes|bind|break|fix|val|handler|fn|addWrapper|Number|ajax|abort|hideErrors|rulesCache|x0d|characters|than|window|is|param|old|idOrName|defaults|showLabel|submitHandler|theregex|special|highlight|meta|cancelSubmit|click|formatAndAdd|map|lastActive|catch|focus|findLastActive|ignore|button|toLowerCase|errorContainer|defaultShowErrors|grep|selected|error|numberOfInvalids|find|RegExp|checkForm|onsubmit|nothing|invalidHandler|Array|option|checkbox|remove|radio|text|makeArray|focusout|focusin|target|browser|init|autoCreateRanges|equal|or|x0c|size|try|x0b|ignoreTitle|x01|x0a|x22|attributeRules|between|classRules|no|metadataRules|x7f|port|mode|normalizeRules|originalMessage|accept|and|isFunction|the|to|addClassRules|numberDE|dateDE|stopRequest|startRequest|depend|nodeName|null|errorPlacement|errorContext|html|generated|checked|invalidElements|show|validElements|parent|field|msie|strong|findDefined|String|parentNode|customMessage|customMetaMessage|lastElement|id|on|blur|log|continue|onfocusout|removeAttrs|cancel|assigned|has|blockFocusCleanup|disabled|image|focusCleanup|can|onfocusin|visible|label|slice|textarea|file|password|unshift|keyup|triggerEvent|removeEventListener|teardown|addEventListener|appendTo|warn|setup|ajaxSettings|valueCache|unbind|gif|jpe|png|parseInt|prototype|charAt|greater|Invalid|unchecked|uF8FF|uE000|filled|ftp|less|https|x7e|x5d|x5b|blank|long|x1f|expr|x0e|x08|hidden|least|at|more|json|dataType|extension|with|x21|x23|default|addMethod|again|same|524288|2147483647|class|card|preventDefault|credit|only|boolean|ISO|NaN|Date|getElementsByName|document|insertAfter|URL|append|wrap|address|This|match|defined|No|setDefaults|Warning|returning|title|onclick|throw|onkeyup|removeAttr|checking|when|occured|exception'.split('|'),0,{}))


// JavaScript Document

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);

//CURVY CORNERS
function browserdetect(){var A=navigator.userAgent.toLowerCase();this.isIE=A.indexOf("msie")>-1;this.ieVer=this.isIE?/msie\s(\d\.\d)/.exec(A)[1]:0;this.isMoz=A.indexOf("firefox")!=-1;this.isSafari=A.indexOf("safari")!=-1;this.quirksMode=this.isIE&&(!document.compatMode||document.compatMode.indexOf("BackCompat")>-1);this.isOp="opera" in window;this.isWebKit=A.indexOf("webkit")!=-1;if(this.isIE){this.get_style=function(D,F){if(!(F in D.currentStyle)){return""}var C=/^([\d.]+)(\w*)/.exec(D.currentStyle[F]);if(!C){return D.currentStyle[F]}if(C[1]==0){return"0"}if(C[2]&&C[2]!=="px"){var B=D.style.left;var E=D.runtimeStyle.left;D.runtimeStyle.left=D.currentStyle.left;D.style.left=C[1]+C[2];C[0]=D.style.pixelLeft;D.style.left=B;D.runtimeStyle.left=E}return C[0]}}else{this.get_style=function(B,C){C=C.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();return document.defaultView.getComputedStyle(B,"").getPropertyValue(C)}}}var curvyBrowser=new browserdetect;if(curvyBrowser.isIE){try{document.execCommand("BackgroundImageCache",false,true)}catch(e){}}function curvyCnrSpec(A){this.selectorText=A;this.tlR=this.trR=this.blR=this.brR=0;this.tlu=this.tru=this.blu=this.bru="";this.antiAlias=true}curvyCnrSpec.prototype.setcorner=function(B,C,A,D){if(!B){this.tlR=this.trR=this.blR=this.brR=parseInt(A);this.tlu=this.tru=this.blu=this.bru=D}else{propname=B.charAt(0)+C.charAt(0);this[propname+"R"]=parseInt(A);this[propname+"u"]=D}};curvyCnrSpec.prototype.get=function(D){if(/^(t|b)(l|r)(R|u)$/.test(D)){return this[D]}if(/^(t|b)(l|r)Ru$/.test(D)){var C=D.charAt(0)+D.charAt(1);return this[C+"R"]+this[C+"u"]}if(/^(t|b)Ru?$/.test(D)){var B=D.charAt(0);B+=this[B+"lR"]>this[B+"rR"]?"l":"r";var A=this[B+"R"];if(D.length===3&&D.charAt(2)==="u"){A+=this[B="u"]}return A}throw new Error("Don't recognize property "+D)};curvyCnrSpec.prototype.radiusdiff=function(A){if(A!=="t"&&A!=="b"){throw new Error("Param must be 't' or 'b'")}return Math.abs(this[A+"lR"]-this[A+"rR"])};curvyCnrSpec.prototype.setfrom=function(A){this.tlu=this.tru=this.blu=this.bru="px";if("tl" in A){this.tlR=A.tl.radius}if("tr" in A){this.trR=A.tr.radius}if("bl" in A){this.blR=A.bl.radius}if("br" in A){this.brR=A.br.radius}if("antiAlias" in A){this.antiAlias=A.antiAlias}};curvyCnrSpec.prototype.cloneOn=function(G){var E=["tl","tr","bl","br"];var H=0;var C,A;for(C in E){if(!isNaN(C)){A=this[E[C]+"u"];if(A!==""&&A!=="px"){H=new curvyCnrSpec;break}}}if(!H){H=this}else{var B,D,F=curvyBrowser.get_style(G,"left");for(C in E){if(!isNaN(C)){B=E[C];A=this[B+"u"];D=this[B+"R"];if(A!=="px"){var F=G.style.left;G.style.left=D+A;D=G.style.pixelLeft;G.style.left=F}H[B+"R"]=D;H[B+"u"]="px"}}G.style.left=F}return H};curvyCnrSpec.prototype.radiusSum=function(A){if(A!=="t"&&A!=="b"){throw new Error("Param must be 't' or 'b'")}return this[A+"lR"]+this[A+"rR"]};curvyCnrSpec.prototype.radiusCount=function(A){var B=0;if(this[A+"lR"]){++B}if(this[A+"rR"]){++B}return B};curvyCnrSpec.prototype.cornerNames=function(){var A=[];if(this.tlR){A.push("tl")}if(this.trR){A.push("tr")}if(this.blR){A.push("bl")}if(this.brR){A.push("br")}return A};function operasheet(C){var A=document.styleSheets.item(C).ownerNode.text;A=A.replace(/\/\*(\n|\r|.)*?\*\//g,"");var D=new RegExp("^s*([\\w.#][-\\w.#, ]+)[\\n\\s]*\\{([^}]+border-((top|bottom)-(left|right)-)?radius[^}]*)\\}","mg");var G;this.rules=[];while((G=D.exec(A))!==null){var F=new RegExp("(..)border-((top|bottom)-(left|right)-)?radius:\\s*([\\d.]+)(in|em|px|ex|pt)","g");var E,B=new curvyCnrSpec(G[1]);while((E=F.exec(G[2]))!==null){if(E[1]!=="z-"){B.setcorner(E[3],E[4],E[5],E[6])}}this.rules.push(B)}}operasheet.contains_border_radius=function(A){return/border-((top|bottom)-(left|right)-)?radius/.test(document.styleSheets.item(A).ownerNode.text)};function curvyCorners(){var G,D,E,B,J;if(typeof arguments[0]!=="object"){throw curvyCorners.newError("First parameter of curvyCorners() must be an object.")}if(arguments[0] instanceof curvyCnrSpec){B=arguments[0];if(!B.selectorText&&typeof arguments[1]==="string"){B.selectorText=arguments[1]}}else{if(typeof arguments[1]!=="object"&&typeof arguments[1]!=="string"){throw curvyCorners.newError("Second parameter of curvyCorners() must be an object or a class name.")}D=arguments[1];if(typeof D!=="string"){D=""}if(D!==""&&D.charAt(0)!=="."&&"autoPad" in arguments[0]){D="."+D}B=new curvyCnrSpec(D);B.setfrom(arguments[0])}if(B.selectorText){J=0;var I=B.selectorText.replace(/\s+$/,"").split(/,\s*/);E=new Array;function A(M){var L=M.split("#");return(L.length===2?"#":"")+L.pop()}for(G=0;G<I.length;++G){var K=A(I[G]);var H=K.split(" ");switch(K.charAt(0)){case"#":D=H.length===1?K:H[0];D=document.getElementById(D.substr(1));if(D===null){curvyCorners.alert("No object with ID "+K+" exists yet.\nCall curvyCorners(settings, obj) when it is created.")}else{if(H.length===1){E.push(D)}else{E=E.concat(curvyCorners.getElementsByClass(H[1],D))}}break;default:if(H.length===1){E=E.concat(curvyCorners.getElementsByClass(K))}else{var C=curvyCorners.getElementsByClass(H[0]);for(D=0;D<C.length;++D){E=E.concat(curvyCorners.getElementsByClass(H[1],C))}}}}}else{J=1;E=arguments}for(G=J,D=E.length;G<D;++G){if(E[G]&&(!("IEborderRadius" in E[G].style)||E[G].style.IEborderRadius!="set")){if(E[G].className&&E[G].className.indexOf("curvyRedraw")!==-1){if(typeof curvyCorners.redrawList==="undefined"){curvyCorners.redrawList=new Array}curvyCorners.redrawList.push({node:E[G],spec:B,copy:E[G].cloneNode(false)})}E[G].style.IEborderRadius="set";var F=new curvyObject(B,E[G]);F.applyCorners()}}}curvyCorners.prototype.applyCornersToAll=function(){curvyCorners.alert("This function is now redundant. Just call curvyCorners(). See documentation.")};curvyCorners.redraw=function(){if(!curvyBrowser.isOp&&!curvyBrowser.isIE){return}if(!curvyCorners.redrawList){throw curvyCorners.newError("curvyCorners.redraw() has nothing to redraw.")}var E=curvyCorners.bock_redraw;curvyCorners.block_redraw=true;for(var A in curvyCorners.redrawList){if(isNaN(A)){continue}var D=curvyCorners.redrawList[A];if(!D.node.clientWidth){continue}var B=D.copy.cloneNode(false);for(var C=D.node.firstChild;C!=null;C=C.nextSibling){if(C.className==="autoPadDiv"){break}}if(!C){curvyCorners.alert("Couldn't find autoPad DIV");break}D.node.parentNode.replaceChild(B,D.node);while(C.firstChild){B.appendChild(C.removeChild(C.firstChild))}D=new curvyObject(D.spec,D.node=B);D.applyCorners()}curvyCorners.block_redraw=E};curvyCorners.adjust=function(obj,prop,newval){if(curvyBrowser.isOp||curvyBrowser.isIE){if(!curvyCorners.redrawList){throw curvyCorners.newError("curvyCorners.adjust() has nothing to adjust.")}var i,j=curvyCorners.redrawList.length;for(i=0;i<j;++i){if(curvyCorners.redrawList[i].node===obj){break}}if(i===j){throw curvyCorners.newError("Object not redrawable")}obj=curvyCorners.redrawList[i].copy}if(prop.indexOf(".")===-1){obj[prop]=newval}else{eval("obj."+prop+"='"+newval+"'")}};curvyCorners.handleWinResize=function(){if(!curvyCorners.block_redraw){curvyCorners.redraw()}};curvyCorners.setWinResize=function(A){curvyCorners.block_redraw=!A};curvyCorners.newError=function(A){return new Error("curvyCorners Error:\n"+A)};curvyCorners.alert=function(A){if(typeof curvyCornersVerbose==="undefined"||curvyCornersVerbose){alert(A)}};function curvyObject(){var U;this.box=arguments[1];this.settings=arguments[0];this.topContainer=this.bottomContainer=this.shell=U=null;var K=this.box.clientWidth;if(!K&&curvyBrowser.isIE){this.box.style.zoom=1;K=this.box.clientWidth}if(!K){if(!this.box.parentNode){throw this.newError("box has no parent!")}for(U=this.box;;U=U.parentNode){if(!U||U.tagName==="BODY"){this.applyCorners=function(){};curvyCorners.alert(this.errmsg("zero-width box with no accountable parent","warning"));return}if(U.style.display==="none"){break}}U.style.display="block";K=this.box.clientWidth}if(arguments[0] instanceof curvyCnrSpec){this.spec=arguments[0].cloneOn(this.box)}else{this.spec=new curvyCnrSpec("");this.spec.setfrom(this.settings)}var b=curvyBrowser.get_style(this.box,"borderTopWidth");var J=curvyBrowser.get_style(this.box,"borderBottomWidth");var D=curvyBrowser.get_style(this.box,"borderLeftWidth");var B=curvyBrowser.get_style(this.box,"borderRightWidth");var I=curvyBrowser.get_style(this.box,"borderTopColor");var G=curvyBrowser.get_style(this.box,"borderBottomColor");var A=curvyBrowser.get_style(this.box,"borderLeftColor");var E=curvyBrowser.get_style(this.box,"backgroundColor");var C=curvyBrowser.get_style(this.box,"backgroundImage");var Y=curvyBrowser.get_style(this.box,"backgroundRepeat");if(this.box.currentStyle&&this.box.currentStyle.backgroundPositionX){var R=curvyBrowser.get_style(this.box,"backgroundPositionX");var P=curvyBrowser.get_style(this.box,"backgroundPositionY")}else{var R=curvyBrowser.get_style(this.box,"backgroundPosition");R=R.split(" ");var P=R[1];R=R[0]}var O=curvyBrowser.get_style(this.box,"position");var Z=curvyBrowser.get_style(this.box,"paddingTop");var c=curvyBrowser.get_style(this.box,"paddingBottom");var Q=curvyBrowser.get_style(this.box,"paddingLeft");var a=curvyBrowser.get_style(this.box,"paddingRight");var S=curvyBrowser.get_style(this.box,"border");filter=curvyBrowser.ieVer>7?curvyBrowser.get_style(this.box,"filter"):null;var H=this.spec.get("tR");var M=this.spec.get("bR");var W=function(f){if(typeof f==="number"){return f}if(typeof f!=="string"){throw new Error("unexpected styleToNPx type "+typeof f)}var d=/^[-\d.]([a-z]+)$/.exec(f);if(d&&d[1]!="px"){throw new Error("Unexpected unit "+d[1])}if(isNaN(f=parseInt(f))){f=0}return f};var T=function(d){return d<=0?"0":d+"px"};try{this.borderWidth=W(b);this.borderWidthB=W(J);this.borderWidthL=W(D);this.borderWidthR=W(B);this.boxColour=curvyObject.format_colour(E);this.topPadding=W(Z);this.bottomPadding=W(c);this.leftPadding=W(Q);this.rightPadding=W(a);this.boxWidth=K;this.boxHeight=this.box.clientHeight;this.borderColour=curvyObject.format_colour(I);this.borderColourB=curvyObject.format_colour(G);this.borderColourL=curvyObject.format_colour(A);this.borderString=this.borderWidth+"px solid "+this.borderColour;this.borderStringB=this.borderWidthB+"px solid "+this.borderColourB;this.backgroundImage=((C!="none")?C:"");this.backgroundRepeat=Y}catch(X){throw this.newError("getMessage" in X?X.getMessage():X.message)}var F=this.boxHeight;var V=K;if(curvyBrowser.isOp){R=W(R);P=W(P);if(R){var N=V+this.borderWidthL+this.borderWidthR;if(R>N){R=N}R=(N/R*100)+"%"}if(P){var N=F+this.borderWidth+this.borderWidthB;if(P>N){P=N}P=(N/P*100)+"%"}}if(curvyBrowser.quirksMode){}else{this.boxWidth-=this.leftPadding+this.rightPadding;this.boxHeight-=this.topPadding+this.bottomPadding}this.contentContainer=document.createElement("div");if(filter){this.contentContainer.style.filter=filter}while(this.box.firstChild){this.contentContainer.appendChild(this.box.removeChild(this.box.firstChild))}if(O!="absolute"){this.box.style.position="relative"}this.box.style.padding="0";this.box.style.border=this.box.style.backgroundImage="none";this.box.style.backgroundColor="transparent";this.box.style.width=(V+this.borderWidthL+this.borderWidthR)+"px";this.box.style.height=(F+this.borderWidth+this.borderWidthB)+"px";var L=document.createElement("div");L.style.position="absolute";if(filter){L.style.filter=filter}if(curvyBrowser.quirksMode){L.style.width=(V+this.borderWidthL+this.borderWidthR)+"px"}else{L.style.width=V+"px"}L.style.height=T(F+this.borderWidth+this.borderWidthB-H-M);L.style.padding="0";L.style.top=H+"px";L.style.left="0";if(this.borderWidthL){L.style.borderLeft=this.borderWidthL+"px solid "+this.borderColourL}if(this.borderWidth&&!H){L.style.borderTop=this.borderWidth+"px solid "+this.borderColour}if(this.borderWidthR){L.style.borderRight=this.borderWidthR+"px solid "+this.borderColourL}if(this.borderWidthB&&!M){L.style.borderBottom=this.borderWidthB+"px solid "+this.borderColourB}L.style.backgroundColor=E;L.style.backgroundImage=this.backgroundImage;L.style.backgroundRepeat=this.backgroundRepeat;this.shell=this.box.appendChild(L);K=curvyBrowser.get_style(this.shell,"width");if(K===""||K==="auto"||K.indexOf("%")!==-1){throw this.newError("Shell width is "+K)}this.boxWidth=(K!=""&&K!="auto"&&K.indexOf("%")==-1)?parseInt(K):this.shell.clientWidth;this.applyCorners=function(){if(this.backgroundObject){var w=function(AO,i,t){if(AO===0){return 0}var k;if(AO==="right"||AO==="bottom"){return t-i}if(AO==="center"){return(t-i)/2}if(AO.indexOf("%")>0){return(t-i)*100/parseInt(AO)}return W(AO)};this.backgroundPosX=w(R,this.backgroundObject.width,V);this.backgroundPosY=w(P,this.backgroundObject.height,F)}else{if(this.backgroundImage){this.backgroundPosX=W(R);this.backgroundPosY=W(P)}}if(H){v=document.createElement("div");v.style.width=this.boxWidth+"px";v.style.fontSize="1px";v.style.overflow="hidden";v.style.position="absolute";v.style.paddingLeft=this.borderWidth+"px";v.style.paddingRight=this.borderWidth+"px";v.style.height=H+"px";v.style.top=-H+"px";v.style.left=-this.borderWidthL+"px";this.topContainer=this.shell.appendChild(v)}if(M){var v=document.createElement("div");v.style.width=this.boxWidth+"px";v.style.fontSize="1px";v.style.overflow="hidden";v.style.position="absolute";v.style.paddingLeft=this.borderWidthB+"px";v.style.paddingRight=this.borderWidthB+"px";v.style.height=M+"px";v.style.bottom=-M+"px";v.style.left=-this.borderWidthL+"px";this.bottomContainer=this.shell.appendChild(v)}var AG=this.spec.cornerNames();for(var AK in AG){if(!isNaN(AK)){var AC=AG[AK];var AD=this.spec[AC+"R"];var AE,AH,j,AF;if(AC=="tr"||AC=="tl"){AE=this.borderWidth;AH=this.borderColour;AF=this.borderWidth}else{AE=this.borderWidthB;AH=this.borderColourB;AF=this.borderWidthB}j=AD-AF;var u=document.createElement("div");u.style.height=this.spec.get(AC+"Ru");u.style.width=this.spec.get(AC+"Ru");u.style.position="absolute";u.style.fontSize="1px";u.style.overflow="hidden";var r,q,p;var n=filter?parseInt(/alpha\(opacity.(\d+)\)/.exec(filter)[1]):100;for(r=0;r<AD;++r){var m=(r+1>=j)?-1:Math.floor(Math.sqrt(Math.pow(j,2)-Math.pow(r+1,2)))-1;if(j!=AD){var h=(r>=j)?-1:Math.ceil(Math.sqrt(Math.pow(j,2)-Math.pow(r,2)));var f=(r+1>=AD)?-1:Math.floor(Math.sqrt(Math.pow(AD,2)-Math.pow((r+1),2)))-1}var d=(r>=AD)?-1:Math.ceil(Math.sqrt(Math.pow(AD,2)-Math.pow(r,2)));if(m>-1){this.drawPixel(r,0,this.boxColour,n,(m+1),u,true,AD)}if(j!=AD){if(this.spec.antiAlias){for(q=m+1;q<h;++q){if(this.backgroundImage!=""){var g=curvyObject.pixelFraction(r,q,j)*100;this.drawPixel(r,q,AH,n,1,u,g>=30,AD)}else{if(this.boxColour!=="transparent"){var AB=curvyObject.BlendColour(this.boxColour,AH,curvyObject.pixelFraction(r,q,j));this.drawPixel(r,q,AB,n,1,u,false,AD)}else{this.drawPixel(r,q,AH,n>>1,1,u,false,AD)}}}if(f>=h){if(h==-1){h=0}this.drawPixel(r,h,AH,n,(f-h+1),u,false,0)}p=AH;q=f}else{if(f>m){this.drawPixel(r,(m+1),AH,n,(f-m),u,false,0)}}}else{p=this.boxColour;q=m}if(this.spec.antiAlias){while(++q<d){this.drawPixel(r,q,p,(curvyObject.pixelFraction(r,q,AD)*n),1,u,AF<=0,AD)}}}for(var y=0,AJ=u.childNodes.length;y<AJ;++y){var s=u.childNodes[y];var AI=parseInt(s.style.top);var AM=parseInt(s.style.left);var AN=parseInt(s.style.height);if(AC=="tl"||AC=="bl"){s.style.left=(AD-AM-1)+"px"}if(AC=="tr"||AC=="tl"){s.style.top=(AD-AN-AI)+"px"}s.style.backgroundRepeat=this.backgroundRepeat;if(this.backgroundImage){switch(AC){case"tr":s.style.backgroundPosition=(this.backgroundPosX-this.borderWidthL+AD-V-AM)+"px "+(this.backgroundPosY+AN+AI+this.borderWidth-AD)+"px";break;case"tl":s.style.backgroundPosition=(this.backgroundPosX-AD+AM+this.borderWidthL)+"px "+(this.backgroundPosY-AD+AN+AI+this.borderWidth)+"px";break;case"bl":s.style.backgroundPosition=(this.backgroundPosX-AD+AM+1+this.borderWidthL)+"px "+(this.backgroundPosY-F-this.borderWidth+(curvyBrowser.quirksMode?AI:-AI)+AD)+"px";break;case"br":if(curvyBrowser.quirksMode){s.style.backgroundPosition=(this.backgroundPosX+this.borderWidthL-V+AD-AM)+"px "+(this.backgroundPosY-F-this.borderWidth+AI+AD)+"px"}else{s.style.backgroundPosition=(this.backgroundPosX-this.borderWidthL-V+AD-AM)+"px "+(this.backgroundPosY-F-this.borderWidth+AD-AI)+"px"}}}}switch(AC){case"tl":u.style.top=u.style.left="0";this.topContainer.appendChild(u);break;case"tr":u.style.top=u.style.right="0";this.topContainer.appendChild(u);break;case"bl":u.style.bottom=u.style.left="0";this.bottomContainer.appendChild(u);break;case"br":u.style.bottom=u.style.right="0";this.bottomContainer.appendChild(u)}}}var x={t:this.spec.radiusdiff("t"),b:this.spec.radiusdiff("b")};for(z in x){if(typeof z==="function"){continue}if(!this.spec.get(z+"R")){continue}if(x[z]){if(this.backgroundImage&&this.spec.radiusSum(z)!==x[z]){curvyCorners.alert(this.errmsg("Not supported: unequal non-zero top/bottom radii with background image"))}var AL=(this.spec[z+"lR"]<this.spec[z+"rR"])?z+"l":z+"r";var l=document.createElement("div");l.style.height=x[z]+"px";l.style.width=this.spec.get(AL+"Ru");l.style.position="absolute";l.style.fontSize="1px";l.style.overflow="hidden";l.style.backgroundColor=this.boxColour;switch(AL){case"tl":l.style.bottom=l.style.left="0";l.style.borderLeft=this.borderString;this.topContainer.appendChild(l);break;case"tr":l.style.bottom=l.style.right="0";l.style.borderRight=this.borderString;this.topContainer.appendChild(l);break;case"bl":l.style.top=l.style.left="0";l.style.borderLeft=this.borderStringB;this.bottomContainer.appendChild(l);break;case"br":l.style.top=l.style.right="0";l.style.borderRight=this.borderStringB;this.bottomContainer.appendChild(l)}}var o=document.createElement("div");if(filter){o.style.filter=filter}o.style.position="relative";o.style.fontSize="1px";o.style.overflow="hidden";o.style.width=this.fillerWidth(z);o.style.backgroundColor=this.boxColour;o.style.backgroundImage=this.backgroundImage;o.style.backgroundRepeat=this.backgroundRepeat;switch(z){case"t":if(this.topContainer){if(curvyBrowser.quirksMode){o.style.height=100+H+"px"}else{o.style.height=100+H-this.borderWidth+"px"}o.style.marginLeft=this.spec.tlR?(this.spec.tlR-this.borderWidthL)+"px":"0";o.style.borderTop=this.borderString;if(this.backgroundImage){var AA=this.spec.tlR?(this.backgroundPosX-(H-this.borderWidthL))+"px ":"0 ";o.style.backgroundPosition=AA+this.backgroundPosY+"px";this.shell.style.backgroundPosition=this.backgroundPosX+"px "+(this.backgroundPosY-H+this.borderWidthL)+"px"}this.topContainer.appendChild(o)}break;case"b":if(this.bottomContainer){if(curvyBrowser.quirksMode){o.style.height=M+"px"}else{o.style.height=M-this.borderWidthB+"px"}o.style.marginLeft=this.spec.blR?(this.spec.blR-this.borderWidthL)+"px":"0";o.style.borderBottom=this.borderStringB;if(this.backgroundImage){var AA=this.spec.blR?(this.backgroundPosX+this.borderWidthL-M)+"px ":this.backgroundPosX+"px ";o.style.backgroundPosition=AA+(this.backgroundPosY-F-this.borderWidth+M)+"px"}this.bottomContainer.appendChild(o)}}}this.contentContainer.style.position="absolute";this.contentContainer.className="autoPadDiv";this.contentContainer.style.left=this.borderWidthL+"px";this.contentContainer.style.paddingTop=this.topPadding+"px";this.contentContainer.style.top=this.borderWidth+"px";this.contentContainer.style.paddingLeft=this.leftPadding+"px";this.contentContainer.style.paddingRight=this.rightPadding+"px";z=V;if(!curvyBrowser.quirksMode){z-=this.leftPadding+this.rightPadding}this.contentContainer.style.width=z+"px";this.contentContainer.style.textAlign=curvyBrowser.get_style(this.box,"textAlign");this.box.style.textAlign="left";this.box.appendChild(this.contentContainer);if(U){U.style.display="none"}};if(this.backgroundImage){R=this.backgroundCheck(R);P=this.backgroundCheck(P);if(this.backgroundObject){this.backgroundObject.holdingElement=this;this.dispatch=this.applyCorners;this.applyCorners=function(){if(this.backgroundObject.complete){this.dispatch()}else{this.backgroundObject.onload=new Function("curvyObject.dispatch(this.holdingElement);")}}}}}curvyObject.prototype.backgroundCheck=function(B){if(B==="top"||B==="left"||parseInt(B)===0){return 0}if(!(/^[-\d.]+px$/.test(B))&&!this.backgroundObject){this.backgroundObject=new Image;var A=function(D){var C=/url\("?([^'"]+)"?\)/.exec(D);return(C?C[1]:D)};this.backgroundObject.src=A(this.backgroundImage)}return B};curvyObject.dispatch=function(A){if("dispatch" in A){A.dispatch()}else{throw A.newError("No dispatch function")}};curvyObject.prototype.drawPixel=function(J,G,A,F,H,I,C,E){var B=document.createElement("div");B.style.height=H+"px";B.style.width="1px";B.style.position="absolute";B.style.fontSize="1px";B.style.overflow="hidden";var D=this.spec.get("tR");B.style.backgroundColor=A;if(C&&this.backgroundImage!=""){B.style.backgroundImage=this.backgroundImage;B.style.backgroundPosition="-"+(this.boxWidth-(E-J)+this.borderWidth)+"px -"+((this.boxHeight+D+G)-this.borderWidth)+"px"}if(F!=100){curvyObject.setOpacity(B,F)}B.style.top=G+"px";B.style.left=J+"px";I.appendChild(B)};curvyObject.prototype.fillerWidth=function(A){var B=curvyBrowser.quirksMode?0:this.spec.radiusCount(A)*this.borderWidthL;return(this.boxWidth-this.spec.radiusSum(A)+B)+"px"};curvyObject.prototype.errmsg=function(C,D){var B="\ntag: "+this.box.tagName;if(this.box.id){B+="\nid: "+this.box.id}if(this.box.className){B+="\nclass: "+this.box.className}var A;if((A=this.box.parentNode)===null){B+="\n(box has no parent)"}else{B+="\nParent tag: "+A.tagName;if(A.id){B+="\nParent ID: "+A.id}if(A.className){B+="\nParent class: "+A.className}}if(D===undefined){D="warning"}return"curvyObject "+D+":\n"+C+B};curvyObject.prototype.newError=function(A){return new Error(this.errmsg(A,"exception"))};curvyObject.IntToHex=function(B){var A=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"];return A[B>>>4]+""+A[B&15]};curvyObject.BlendColour=function(L,J,G){if(L==="transparent"||J==="transparent"){throw this.newError("Cannot blend with transparent")}if(L.charAt(0)!=="#"){L=curvyObject.format_colour(L)}if(J.charAt(0)!=="#"){J=curvyObject.format_colour(J)}var D=parseInt(L.substr(1,2),16);var K=parseInt(L.substr(3,2),16);var F=parseInt(L.substr(5,2),16);var C=parseInt(J.substr(1,2),16);var I=parseInt(J.substr(3,2),16);var E=parseInt(J.substr(5,2),16);if(G>1||G<0){G=1}var H=Math.round((D*G)+(C*(1-G)));if(H>255){H=255}if(H<0){H=0}var B=Math.round((K*G)+(I*(1-G)));if(B>255){B=255}if(B<0){B=0}var A=Math.round((F*G)+(E*(1-G)));if(A>255){A=255}if(A<0){A=0}return"#"+curvyObject.IntToHex(H)+curvyObject.IntToHex(B)+curvyObject.IntToHex(A)};curvyObject.pixelFraction=function(H,G,A){var J;var E=A*A;var B=new Array(2);var F=new Array(2);var I=0;var C="";var D=Math.sqrt(E-Math.pow(H,2));if(D>=G&&D<(G+1)){C="Left";B[I]=0;F[I]=D-G;++I}D=Math.sqrt(E-Math.pow(G+1,2));if(D>=H&&D<(H+1)){C+="Top";B[I]=D-H;F[I]=1;++I}D=Math.sqrt(E-Math.pow(H+1,2));if(D>=G&&D<(G+1)){C+="Right";B[I]=1;F[I]=D-G;++I}D=Math.sqrt(E-Math.pow(G,2));if(D>=H&&D<(H+1)){C+="Bottom";B[I]=D-H;F[I]=0}switch(C){case"LeftRight":J=Math.min(F[0],F[1])+((Math.max(F[0],F[1])-Math.min(F[0],F[1]))/2);break;case"TopRight":J=1-(((1-B[0])*(1-F[1]))/2);break;case"TopBottom":J=Math.min(B[0],B[1])+((Math.max(B[0],B[1])-Math.min(B[0],B[1]))/2);break;case"LeftBottom":J=F[0]*B[1]/2;break;default:J=1}return J};curvyObject.rgb2Array=function(A){var B=A.substring(4,A.indexOf(")"));return B.split(", ")};curvyObject.rgb2Hex=function(B){try{var C=curvyObject.rgb2Array(B);var G=parseInt(C[0]);var E=parseInt(C[1]);var A=parseInt(C[2]);var D="#"+curvyObject.IntToHex(G)+curvyObject.IntToHex(E)+curvyObject.IntToHex(A)}catch(F){var H="getMessage" in F?F.getMessage():F.message;throw new Error("Error ("+H+") converting RGB value to Hex in rgb2Hex")}return D};curvyObject.setOpacity=function(F,C){C=(C==100)?99.999:C;if(curvyBrowser.isSafari&&F.tagName!="IFRAME"){var B=curvyObject.rgb2Array(F.style.backgroundColor);var E=parseInt(B[0]);var D=parseInt(B[1]);var A=parseInt(B[2]);F.style.backgroundColor="rgba("+E+", "+D+", "+A+", "+C/100+")"}else{if(typeof F.style.opacity!=="undefined"){F.style.opacity=C/100}else{if(typeof F.style.MozOpacity!=="undefined"){F.style.MozOpacity=C/100}else{if(typeof F.style.filter!="undefined"){F.style.filter="alpha(opacity="+C+")"}else{if(typeof F.style.KHTMLOpacity!="undefined"){F.style.KHTMLOpacity=C/100}}}}}};function addEvent(D,C,B,A){if(D.addEventListener){D.addEventListener(C,B,A);return true}if(D.attachEvent){return D.attachEvent("on"+C,B)}D["on"+C]=B;return false}curvyObject.getComputedColour=function(E){var F=document.createElement("DIV");F.style.backgroundColor=E;document.body.appendChild(F);if(window.getComputedStyle){var D=document.defaultView.getComputedStyle(F,null).getPropertyValue("background-color");F.parentNode.removeChild(F);if(D.substr(0,3)==="rgb"){D=curvyObject.rgb2Hex(D)}return D}else{var A=document.body.createTextRange();A.moveToElementText(F);A.execCommand("ForeColor",false,E);var B=A.queryCommandValue("ForeColor");var C="rgb("+(B&255)+", "+((B&65280)>>8)+", "+((B&16711680)>>16)+")";F.parentNode.removeChild(F);A=null;return curvyObject.rgb2Hex(C)}};curvyObject.format_colour=function(A){if(A!=""&&A!="transparent"){if(A.substr(0,3)==="rgb"){A=curvyObject.rgb2Hex(A)}else{if(A.charAt(0)!=="#"){A=curvyObject.getComputedColour(A)}else{if(A.length===4){A="#"+A.charAt(1)+A.charAt(1)+A.charAt(2)+A.charAt(2)+A.charAt(3)+A.charAt(3)}}}}return A};curvyCorners.getElementsByClass=function(H,F){var E=new Array;if(F===undefined){F=document}H=H.split(".");var A="*";if(H.length===1){A=H[0];H=false}else{if(H[0]){A=H[0]}H=H[1]}var D,C,B;if(A.charAt(0)==="#"){C=document.getElementById(A.substr(1));if(C){E.push(C)}}else{C=F.getElementsByTagName(A);B=C.length;if(H){var G=new RegExp("(^|\\s)"+H+"(\\s|$)");for(D=0;D<B;++D){if(G.test(C[D].className)){E.push(C[D])}}}else{for(D=0;D<B;++D){E.push(C[D])}}}return E};if(curvyBrowser.isMoz||curvyBrowser.isWebKit){var curvyCornersNoAutoScan=true}else{curvyCorners.scanStyles=function(){function B(F){var G=/^[\d.]+(\w+)$/.exec(F);return G[1]}var E,D,C;if(curvyBrowser.isIE){function A(L){var J=L.style;if(curvyBrowser.ieVer>6){var H=J["-webkit-border-radius"]||0;var K=J["-webkit-border-top-right-radius"]||0;var F=J["-webkit-border-top-left-radius"]||0;var G=J["-webkit-border-bottom-right-radius"]||0;var M=J["-webkit-border-bottom-left-radius"]||0}else{var H=J["webkit-border-radius"]||0;var K=J["webkit-border-top-right-radius"]||0;var F=J["webkit-border-top-left-radius"]||0;var G=J["webkit-border-bottom-right-radius"]||0;var M=J["webkit-border-bottom-left-radius"]||0}if(H||F||K||G||M){var I=new curvyCnrSpec(L.selectorText);if(H){I.setcorner(null,null,parseInt(H),B(H))}else{if(K){I.setcorner("t","r",parseInt(K),B(K))}if(F){I.setcorner("t","l",parseInt(F),B(F))}if(M){I.setcorner("b","l",parseInt(M),B(M))}if(G){I.setcorner("b","r",parseInt(G),B(G))}}curvyCorners(I)}}for(E=0;E<document.styleSheets.length;++E){if(document.styleSheets[E].imports){for(D=0;D<document.styleSheets[E].imports.length;++D){for(C=0;C<document.styleSheets[E].imports[D].rules.length;++C){A(document.styleSheets[E].imports[D].rules[C])}}}for(D=0;D<document.styleSheets[E].rules.length;++D){A(document.styleSheets[E].rules[D])}}}else{if(curvyBrowser.isOp){for(E=0;E<document.styleSheets.length;++E){if(operasheet.contains_border_radius(E)){C=new operasheet(E);for(D in C.rules){if(!isNaN(D)){curvyCorners(C.rules[D])}}}}}else{curvyCorners.alert("Scanstyles does nothing in Webkit/Firefox")}}};curvyCorners.init=function(){if(arguments.callee.done){return}arguments.callee.done=true;if(curvyBrowser.isWebKit&&curvyCorners.init.timer){clearInterval(curvyCorners.init.timer);curvyCorners.init.timer=null}curvyCorners.scanStyles()}}if(typeof curvyCornersNoAutoScan==="undefined"||curvyCornersNoAutoScan===false){if(curvyBrowser.isOp){document.addEventListener("DOMContentLoaded",curvyCorners.init,false)}else{addEvent(window,"load",curvyCorners.init,false)}};

/*!
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		}

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/\b./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement) {
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		function isContainerReady(el) {
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = data.glyphs;
		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		function onEnterLeave(e) {
			trigger(this, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				api.replace(el, hoverState ? merge(options, options.hover) : options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}

	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		var replace = !options.textless[name];
		var style = CSS.getStyle(attach(el, options)).extend(options);
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				el.replaceChild(process(font,
					CSS.whiteSpace(anchor.data, style, anchor, lastElement),
					style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		forceHitArea: false,
		hover: false,
		hoverables: {
			a: true
		},
		ignore: {
			applet: 1,
			canvas: 1,
			col: 1,
			colgroup: 1,
			head: 1,
			iframe: 1,
			map: 1,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		printable: true,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Description:
 * Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif
 * designed for easy screen readability. Trebuchet takes its inspiration from the
 * sans serifs of the 1930s which had large x heights and round features intended
 * to promote readability on signs. The typeface name is credited to a puzzle heard
 * at Microsoft, where the question was asked, "could you build a Trebuchet (a form
 * of medieval catapult) to launch a person from the main campus to the consumer
 * campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires
 * your messages across the Internet. "Launch your message with a Trebuchet page".
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Vincent Connare
 * 
 * Vendor URL:
 * http://www.microsoft.com
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":1074,"face":{"font-family":"Trebuchet MS","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 3 2 2 2 2 2 4","ascent":"1638","descent":"-410","x-height":"20","bbox":"-176 -1931 2216.01 537","underline-thickness":"127","underline-position":"-198","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":617,"k":{"Y":37,"T":37,"A":113}},"!":{"d":"413,-382r-71,0v-84,-543,-80,-645,-77,-1109r226,0v2,463,8,561,-78,1109xm234,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\"":{"d":"229,-1086r-133,0r-24,-381r184,0xm559,-1086r-133,0r-24,-381r184,0","w":665},"#":{"d":"879,-947r-99,393r161,0r0,128r-194,0r-124,446r-127,0r124,-446r-297,0r-124,446r-130,0r123,-446r-155,0r0,-128r188,0r99,-393r-172,0r0,-128r205,0r102,-412r131,0r-103,412r297,0r103,-412r127,0r-103,412r175,0r0,128r-207,0xm455,-947r-99,393r297,0r99,-393r-297,0"},"$":{"d":"961,-355v0,205,-165,342,-364,370r0,231r-139,0r0,-221v-79,-2,-272,-59,-318,-92r72,-184v58,44,194,96,290,96v187,0,316,-161,238,-337v-45,-102,-83,-101,-217,-166v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-197,143,-344,322,-372r0,-160r139,0r0,153v143,6,240,32,291,78r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-265,154,-198,309v46,109,180,145,304,207v186,93,300,198,300,449"},"%":{"d":"218,20r-127,0r883,-1511r126,0xm618,-1143v0,191,-104,339,-279,339v-185,0,-278,-119,-278,-358v0,-183,114,-331,287,-329v181,2,270,147,270,348xm345,-1389v-110,0,-158,111,-158,237v0,129,39,246,143,246v108,0,162,-82,162,-245v0,-159,-49,-238,-147,-238xm1158,-319v0,191,-104,339,-279,339v-185,0,-278,-119,-278,-358v0,-183,114,-331,287,-329v181,2,270,147,270,348xm885,-565v-110,0,-158,111,-158,237v0,129,39,246,143,246v108,0,162,-82,162,-245v0,-159,-49,-238,-147,-238","w":1229},"&":{"d":"1030,-388v3,163,22,238,165,238v36,0,78,-12,127,-37r27,177v-70,20,-150,30,-240,30v-62,0,-122,-24,-180,-71v-97,47,-213,71,-350,71v-284,1,-441,-182,-437,-473v2,-188,54,-268,161,-377v-94,-93,-141,-190,-141,-291v1,-216,188,-370,425,-370v137,0,243,30,318,91r-83,154v-76,-63,-144,-95,-204,-95v-177,0,-266,80,-266,240v0,87,39,160,116,220r372,0r0,-183r190,-73r0,259r249,0r0,160r-249,0r0,330xm851,-199v-24,-148,-5,-351,-11,-519r-403,0v-63,81,-95,167,-95,256v0,208,102,312,305,312v91,0,159,-16,204,-49","w":1446},"'":{"d":"229,-1086r-133,0r-24,-381r184,0","w":327},"(":{"d":"618,428v-261,-176,-425,-556,-425,-987v0,-340,201,-811,425,-916r0,83v-132,191,-198,469,-198,835v0,435,66,728,198,880r0,105","w":752},")":{"d":"193,-1475v224,105,425,576,425,916v0,431,-164,811,-425,987r0,-105v132,-152,198,-445,198,-880v0,-366,-66,-644,-198,-835r0,-83","w":752},"*":{"d":"597,-1127r-173,3r158,105r47,62r-122,104r-54,-70r-82,-159r-91,162r-43,64r-131,-101r50,-69r158,-83r-176,-27r-90,-32r72,-150r96,37r125,95r-63,-205r0,-79r176,0r0,76r-60,211r158,-107r74,-27r57,161","w":752},"+":{"d":"611,-706r349,0r0,141r-349,0r0,345r-141,0r0,-345r-348,0r0,-141r348,0r0,-343r141,0r0,343"},",":{"d":"373,-277v74,0,146,82,142,160v-14,257,-101,330,-291,480r-51,-72v115,-94,172,-174,172,-240v0,-29,-10,-59,-30,-88v-57,-27,-86,-67,-86,-118v-1,-73,67,-122,144,-122","w":752},"-":{"d":"159,-506r0,-175r428,0r0,175r-428,0","w":752},"\u2010":{"d":"159,-506r0,-175r428,0r0,175r-428,0","w":752},".":{"d":"204,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\/":{"d":"350,0r-161,0r531,-1471r159,0"},"0":{"d":"64,-777v0,-211,43,-382,128,-515v85,-133,205,-199,360,-199v153,0,269,55,346,166v77,111,115,304,115,580v0,237,-40,425,-121,561v-81,136,-199,204,-354,204v-155,0,-274,-55,-354,-165v-80,-110,-120,-321,-120,-632xm264,-759v0,406,87,609,260,609v99,0,172,-45,219,-135v47,-90,70,-248,70,-473v0,-155,-9,-269,-27,-342v-32,-128,-97,-221,-239,-221v-189,0,-283,187,-283,562"},"1":{"d":"200,-1124v141,-69,348,-229,438,-347r60,0r0,1471r-200,0r0,-1123r-298,186r0,-187"},"2":{"d":"433,-1491v263,0,449,123,449,373v0,110,-53,249,-158,416r-329,522r574,0r0,180r-900,0r0,-40r459,-703v96,-147,144,-272,144,-375v0,-135,-76,-203,-229,-203v-113,-1,-218,70,-255,150r-129,-106v45,-132,192,-214,374,-214"},"3":{"d":"941,-406v0,283,-197,426,-491,426v-131,0,-273,-60,-341,-124r96,-154v65,72,148,108,248,108v185,0,278,-91,278,-272v0,-172,-128,-288,-312,-279r0,-162v174,3,264,-72,263,-224v0,-156,-80,-234,-239,-234v-87,0,-156,29,-207,87r-89,-136v62,-81,166,-121,311,-121v237,0,434,142,434,365v0,160,-109,303,-226,342v156,49,275,181,275,378"},"4":{"d":"882,-399r0,399r-190,0r0,-399r-667,0r0,-114r787,-958r70,0r0,918r148,0r0,154r-148,0xm692,-1072r-430,519r430,0r0,-519"},"5":{"d":"542,-1000v280,0,419,181,419,469v0,367,-164,551,-491,551v-137,0,-250,-38,-340,-114r77,-167v91,74,178,111,262,111v188,0,282,-117,282,-352v0,-219,-93,-328,-278,-328v-89,0,-170,38,-241,115r-68,-47r0,-709r729,0r0,170r-539,0r0,356v49,-37,112,-55,188,-55"},"6":{"d":"989,-452v0,268,-171,477,-423,477v-321,0,-482,-213,-482,-639v0,-334,321,-826,588,-877r97,107v-99,25,-436,426,-439,547v55,-53,132,-80,231,-80v265,-1,428,189,428,465xm784,-442v0,-167,-85,-305,-236,-305v-169,0,-254,96,-254,289v0,209,86,313,257,313v153,0,233,-134,233,-297"},"7":{"d":"428,0r-222,0v104,-333,408,-980,569,-1281r-691,0r0,-190r950,0r0,78r-129,254r-136,283r-139,314v-45,107,-85,206,-119,297v-34,91,-62,173,-83,245"},"8":{"d":"89,-406v0,-175,131,-358,264,-409v-107,-55,-208,-178,-211,-323v-3,-220,172,-353,396,-353v239,0,397,127,397,354v0,138,-113,292,-209,342v176,99,264,228,264,389v0,273,-180,426,-457,426v-296,0,-444,-142,-444,-426xm734,-1142v0,-110,-84,-179,-196,-179v-131,0,-196,60,-196,181v0,89,85,177,256,263v91,-85,136,-174,136,-265xm533,-150v146,0,257,-110,257,-256v0,-54,-17,-104,-50,-152v-33,-48,-110,-105,-231,-170v-147,79,-220,187,-220,322v0,142,102,256,244,256"},"9":{"d":"74,-1014v0,-268,171,-477,423,-477v321,0,482,213,482,639v0,334,-321,826,-588,877r-97,-107v97,-25,438,-425,439,-546v-55,53,-132,79,-231,79v-265,1,-428,-189,-428,-465xm279,-1024v0,167,85,305,236,305v169,0,254,-96,254,-289v0,-209,-86,-313,-257,-313v-153,0,-233,134,-233,297"},":":{"d":"204,-941v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151xm204,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},";":{"d":"204,-941v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151xm373,-277v74,0,146,82,142,160v-14,257,-101,330,-291,480r-51,-72v115,-94,172,-174,172,-240v0,-29,-10,-59,-30,-88v-57,-27,-86,-67,-86,-118v-1,-73,67,-122,144,-122","w":752},"<":{"d":"889,-218r-739,-358r0,-123r739,-354r0,161r-571,255r571,258r0,161"},"=":{"d":"960,-876r0,141r-838,0r0,-141r838,0xm960,-536r0,141r-838,0r0,-141r838,0"},">":{"d":"889,-576r-739,358r0,-161r571,-258r-571,-255r0,-161r739,354r0,123"},"?":{"d":"341,-1491v192,0,353,122,349,312v-2,112,-43,196,-104,261r-146,156v-75,104,-109,188,-74,333r-132,0v-46,-123,-39,-168,-8,-284v24,-88,209,-269,246,-340v20,-38,32,-74,32,-109v0,-117,-71,-176,-213,-176v-68,0,-127,24,-178,73r-73,-143v67,-55,168,-83,301,-83xm174,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"@":{"d":"242,-581v0,346,221,593,563,593v154,0,278,-43,371,-128v31,11,76,31,135,58v-128,128,-297,192,-506,192v-421,0,-705,-294,-705,-715v0,-422,287,-744,705,-744v398,0,673,266,673,664v0,210,-123,407,-326,407v-106,0,-183,-23,-230,-70v-57,52,-124,78,-201,78v-137,0,-241,-82,-239,-216v3,-190,187,-259,400,-258v-10,-98,-49,-147,-118,-147v-70,0,-125,19,-166,56r-48,-99v55,-41,121,-61,200,-61v185,0,278,106,278,319r0,239v170,128,308,18,308,-251v0,-301,-229,-539,-531,-539v-340,0,-563,275,-563,622xm636,-467v0,72,60,126,133,124v42,0,80,-17,113,-50r0,-234v-148,-9,-246,35,-246,160","w":1578},"A":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0","w":1208,"k":{"\u2019":228,"y":84,"w":94,"v":113,"Y":218,"W":180,"V":180,"T":199," ":113}},"B":{"d":"1079,-423v3,269,-229,423,-511,423r-418,0r0,-1465v178,-9,306,-13,385,-13v267,-2,451,112,455,361v2,137,-131,269,-244,291v214,53,330,157,333,403xm350,-1305r0,421v42,4,94,6,156,6v189,0,284,-77,284,-231v0,-135,-87,-203,-261,-203v-67,0,-126,2,-179,7xm869,-455v-5,-213,-123,-278,-358,-279r-161,5r0,559v289,34,525,-6,519,-285","w":1159},"C":{"d":"80,-728v0,-405,245,-762,631,-762v159,0,284,26,374,79r-67,171v-64,-47,-165,-70,-302,-70v-281,0,-426,285,-426,594v0,300,155,561,428,561v137,0,243,-49,317,-146r110,153v-116,115,-265,173,-448,173v-401,2,-617,-333,-617,-753","w":1225},"D":{"d":"511,-1475v406,-5,665,277,665,683v0,528,-244,792,-731,792r-295,0r0,-1465v188,-7,308,-10,361,-10xm516,-180v306,-4,450,-259,450,-595v0,-347,-156,-520,-467,-520v-19,0,-68,3,-149,10r0,1095v45,7,100,10,166,10","w":1256},"E":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0","w":1097},"F":{"d":"350,-1285r0,407r515,0r0,170r-515,0r0,708r-200,0r0,-1465r905,0r0,180r-705,0","w":1075,"k":{"A":217,".":369,",":369}},"G":{"d":"80,-727v0,-440,275,-763,712,-763v153,0,277,42,373,127r-83,165v-101,-75,-199,-112,-296,-112v-319,-2,-496,258,-496,591v0,320,177,566,486,564v107,0,193,-32,259,-96r0,-343r-203,0r0,-170r403,0r0,638v-96,87,-321,151,-501,151v-416,0,-654,-322,-654,-752","w":1385},"H":{"d":"990,0r0,-708r-640,0r0,708r-200,0r0,-1465r200,0r0,587r640,0r0,-587r200,0r0,1465r-200,0","w":1340},"I":{"d":"185,0r0,-1465r200,0r0,1465r-200,0","w":570},"J":{"d":"826,-547v-6,377,-84,562,-442,567v-192,3,-327,-129,-335,-313r175,0v16,89,69,133,159,133v89,0,153,-20,189,-58v36,-38,54,-145,54,-321r0,-926r200,0r0,918","w":976},"K":{"d":"958,0r-413,-674r-195,277r0,397r-200,0r0,-1465r200,0r0,797r544,-797r223,0r-438,635r500,830r-221,0","w":1179,"k":{"w":64,"u":64,"o":64,"n":64,"i":64,"e":64}},"L":{"d":"150,0r0,-1465r200,0r0,1285r662,0r0,180r-862,0","w":1037,"k":{"\u2019":207,"y":170,"Y":265,"W":256,"V":284,"T":209," ":76}},"M":{"d":"1253,0r-174,-941r-320,961r-50,0r-329,-961r-170,941r-190,0r274,-1465r91,0r349,1069r322,-1069r90,0r297,1465r-190,0","w":1453},"N":{"d":"1097,20r-757,-1071r0,1051r-190,0r0,-1465r80,0r737,1013r0,-1013r190,0r0,1485r-60,0","w":1307},"O":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169","w":1380},"P":{"d":"350,-564r0,564r-200,0r0,-1465v151,-7,243,-10,274,-10v425,0,638,142,638,427v0,329,-188,494,-564,494v-23,0,-72,-3,-148,-10xm350,-1285r0,541v85,7,129,10,134,10v248,0,372,-98,372,-293v0,-179,-132,-268,-397,-268v-27,0,-63,3,-109,10","w":1142,"k":{"r":96,"o":96,"i":96,"h":96,"e":96,"a":96,"A":228,".":400,",":400," ":37}},"Q":{"d":"670,-1491v425,0,630,303,630,746v0,337,-101,568,-302,693v73,107,195,160,366,160r156,0r-30,195v-349,0,-578,-97,-687,-291v-469,91,-723,-301,-723,-757v0,-392,213,-746,590,-746xm670,-155v303,0,420,-259,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169","w":1384},"R":{"d":"1054,-1060v0,182,-138,356,-287,386r425,674r-229,0r-391,-629v-45,0,-115,-3,-212,-10r0,639r-200,0r0,-1465r366,-15v352,0,528,140,528,420xm844,-1064v0,-229,-238,-247,-484,-221r0,476v48,7,95,10,140,10v226,-3,344,-50,344,-265","w":1192,"k":{"u":59,"o":83,"e":83,"Y":131,"W":131,"V":94,"T":84}},"S":{"d":"904,-370v-2,238,-222,395,-487,395v-130,0,-241,-31,-333,-92r73,-184v61,47,190,94,289,96v146,3,266,-90,259,-227v-8,-164,-76,-198,-238,-276v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-222,184,-380,414,-380v162,0,275,26,338,79r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-270,157,-198,309v45,96,87,103,212,164v120,59,277,131,331,227v38,67,60,149,60,250","w":985},"T":{"d":"684,-1285r0,1285r-200,0r0,-1285r-466,0r0,-180r1153,0r0,180r-487,0","w":1189,"k":{"y":236,"w":283,"u":265,"s":246,"r":225,"o":255,"i":85,"e":255,"c":255,"a":255,"O":113,"A":199,";":227,":":227,".":340,"-":198,",":340," ":37}},"U":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471","w":1328},"V":{"d":"660,20r-101,0r-546,-1485r222,0r377,1079r363,-1079r215,0","w":1203,"k":{"y":76,"u":133,"r":123,"o":132,"i":37,"e":132,"a":161,"A":209,";":123,":":123,".":300,"-":151,",":300}},"W":{"d":"1276,20r-63,0r-349,-1010r-326,1010r-63,0r-462,-1485r208,0r294,1023r322,-1023r70,0r318,1021r299,-1021r208,0","w":1745,"k":{"y":37,"u":84,"r":103,"o":94,"i":28,"e":94,"a":114,"A":180,";":37,":":37,".":189,"-":141,",":189}},"X":{"d":"915,0r-364,-588r-336,588r-202,0r432,-760r-397,-706r197,1r313,554r345,-554r201,0r-455,709r478,756r-212,0","w":1140},"Y":{"d":"685,-656r0,656r-200,0r0,-656r-472,-809r206,0r365,640r365,-640r206,0","w":1168,"k":{"v":122,"u":151,"q":245,"p":190,"o":235,"i":114,"e":215,"a":190,"A":218,";":179,":":179,".":330,"-":250,",":330," ":37}},"Z":{"d":"100,0r0,-50r630,-1235r-620,0r0,-180r895,0r0,50r-632,1235r654,0r0,180r-927,0","w":1127},"[":{"d":"202,420r0,-1930r463,0r0,170r-263,0r0,1590r263,0r0,170r-463,0","w":752},"\\":{"d":"512,0r-515,-1471r142,0r516,1471r-143,0","w":728},"]":{"d":"550,420r-463,0r0,-170r263,0r0,-1590r-263,0r0,-170r463,0r0,1930","w":752},"^":{"d":"763,-907r-244,-448r-248,452r-122,0r318,-568r107,0r316,564r-127,0"},"_":{"d":"-8,254r0,-129r1085,0r0,129r-1085,0"},"`":{"d":"559,-1285r-226,-333r197,0r169,333r-140,0"},"a":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20","w":1076},"b":{"d":"558,20v-99,0,-214,-46,-261,-97r-67,97r-95,0r0,-1530r190,0r0,518v34,-49,160,-99,248,-99v294,0,493,239,493,536v0,338,-185,575,-508,575xm504,-931v-44,0,-163,57,-179,84r0,618v-2,22,149,97,179,89v272,-4,359,-122,362,-405v2,-233,-136,-386,-362,-386","w":1141},"c":{"d":"65,-525v0,-338,215,-566,555,-566v105,0,267,61,323,107r-94,134v-39,-39,-163,-82,-247,-81v-219,2,-337,173,-337,406v0,239,122,384,351,385v85,0,171,-33,258,-99r75,160v-102,66,-228,99,-379,99v-300,1,-505,-229,-505,-545","w":1014},"d":{"d":"75,-509v0,-294,212,-582,487,-582v111,0,195,26,252,78r0,-497r190,0r0,1509r-190,0r0,-79v-66,66,-162,99,-288,99v-280,1,-451,-231,-451,-528xm627,-140v56,0,172,-49,187,-89r0,-594v-48,-72,-114,-108,-197,-108v-210,-2,-342,185,-342,404v0,258,117,387,352,387","w":1141},"e":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0","w":1117},"f":{"d":"221,-1071v-5,-253,133,-438,368,-439v55,0,115,10,178,30r-53,140v-39,-13,-75,-20,-108,-20v-137,0,-224,137,-195,289r218,0r0,160r-218,0r0,911r-190,0r0,-911r-156,0r0,-160r156,0","w":757,"k":{"\u2019":48}},"g":{"d":"968,90v0,287,-396,394,-687,293v-76,-26,-138,-55,-185,-90r103,-152v111,74,213,111,306,111v139,0,278,-45,278,-155v0,-87,-63,-130,-188,-130v-42,0,-200,32,-247,32v-152,0,-228,-57,-228,-172v0,-86,102,-139,186,-158v-151,-71,-226,-193,-226,-368v0,-221,184,-392,406,-392v105,0,188,22,247,65r95,-114r124,117r-114,86v105,136,95,397,-28,520v-70,70,-156,113,-265,126v-86,10,-158,6,-232,37v-31,13,-47,29,-47,49v0,27,33,41,98,41v50,0,219,-31,269,-31v198,0,335,97,335,285xm714,-698v0,-126,-92,-240,-215,-240v-130,0,-224,111,-224,240v0,142,84,259,224,259v140,0,215,-114,215,-259","w":1028},"h":{"d":"622,-1091v235,0,363,174,363,418r0,673r-190,0r0,-673v1,-152,-78,-259,-225,-258v-99,0,-204,72,-245,135r0,796r-190,0r0,-1510r190,0r0,557v45,-75,177,-138,297,-138","w":1119},"i":{"d":"214,-1359v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118xm227,0r0,-911r-147,0r0,-160r337,0r0,1071r-190,0","w":584},"j":{"d":"311,-1359v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-64,0,-117,-54,-117,-118xm18,250v236,-3,341,-45,341,-255r0,-906r-213,0r0,-160r403,0r0,1062v-4,318,-193,428,-531,429r0,-170","w":751},"k":{"d":"827,0r-336,-536r-166,171r0,365r-190,0r0,-1510r190,0r0,937r410,-498r222,0r-343,407r419,664r-206,0","w":1033},"l":{"d":"340,-335v-2,111,71,186,179,185r0,170v-246,0,-369,-108,-369,-323r0,-1207r190,0r0,1175","w":604},"m":{"d":"1217,-1091v225,0,348,145,348,375r0,716r-190,0r0,-678v0,-169,-73,-253,-219,-253v-92,0,-186,72,-211,139r0,792r-190,0r0,-761v0,-112,-98,-170,-217,-170v-82,0,-186,81,-213,141r0,790r-190,0r0,-1071r124,0r63,124v73,-96,165,-144,275,-144v153,0,261,48,322,143v38,-79,179,-143,298,-143","w":1700},"n":{"d":"570,-931v-97,0,-205,70,-245,135r0,796r-190,0r0,-1071r130,0r60,138v63,-105,165,-158,307,-158v235,0,352,143,352,428r0,663r-190,0r0,-623v-3,-206,-39,-308,-224,-308","w":1119},"o":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398","w":1099},"p":{"d":"570,20v-78,0,-216,-36,-245,-79r0,479r-190,0r0,-1491r190,0r0,88v72,-72,159,-108,261,-108v322,2,482,216,482,558v0,319,-176,553,-498,553xm515,-931v-62,0,-157,54,-190,91r0,624v23,37,124,76,189,76v236,0,354,-133,354,-400v0,-263,-97,-391,-353,-391","w":1141},"q":{"d":"75,-533v0,-324,201,-559,509,-558v93,0,180,34,261,101r51,-81r115,0r0,1491r-190,0r0,-483v-55,55,-148,83,-278,83v-307,0,-468,-229,-468,-553xm275,-533v0,231,117,392,333,393v91,0,162,-23,213,-70r0,-639v-55,-55,-123,-82,-205,-82v-221,-2,-341,171,-341,398","w":1141},"r":{"d":"717,-888v-185,-134,-377,70,-377,274r0,614r-190,0r0,-1071r190,0r0,171v99,-171,233,-223,456,-173","w":796,"k":{"\u2019":28,".":273,",":292}},"s":{"d":"764,-287v-1,205,-161,307,-381,307v-113,0,-219,-28,-318,-84r67,-180v106,69,191,104,256,104v117,0,176,-49,176,-148v0,-71,-57,-130,-170,-182v-141,-66,-181,-78,-256,-162v-41,-46,-65,-101,-66,-179v-1,-184,155,-282,347,-280v78,0,176,25,295,74r-54,176v-75,-60,-151,-90,-227,-90v-80,0,-160,41,-161,113v0,69,40,119,117,156v172,81,377,137,375,375","w":829},"t":{"d":"505,20v-172,0,-302,-153,-302,-333r0,-608r-124,0r0,-150r124,0r0,-224r190,-73r0,297r294,0r0,150r-294,0r0,532v1,165,41,249,192,249v49,0,99,-12,151,-37r28,167v-79,20,-165,30,-259,30","w":812},"u":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168","w":1119},"v":{"d":"521,20r-50,0r-459,-1094r208,0r283,750r289,-750r199,0","w":1003,"k":{".":275,",":275}},"w":{"d":"1125,20r-50,0r-314,-729r-313,729r-50,0r-383,-1094r203,0r229,703r285,-703r50,0r294,703r246,-703r187,0","w":1524,"k":{".":217,",":217}},"x":{"d":"787,0r-292,-390r-261,390r-222,0r389,-548r-357,-523r214,0r240,368r269,-368r210,0r-389,523r426,548r-227,0","w":1026},"y":{"d":"124,250v136,4,289,-72,289,-191v0,-149,-66,-269,-111,-385r-290,-745r194,0r315,828r283,-828r194,0r-454,1253v-46,135,-234,241,-420,238r0,-170","w":1010,"k":{".":250,",":250}},"z":{"d":"338,-170r594,0r0,170r-892,0r0,-50r609,-851r-599,0r0,-170r876,0r0,54","w":972},"{":{"d":"431,-317v6,83,-63,283,-63,369v0,152,88,228,263,228r76,0r0,140r-139,0v-206,4,-391,-107,-395,-298v-2,-83,74,-348,74,-433v0,-132,-70,-203,-209,-212r0,-84v127,-8,209,-96,209,-229v0,-77,-74,-306,-74,-380v0,-182,191,-290,386,-286r148,0r0,133r-175,0v-109,0,-164,61,-164,184v0,78,63,254,63,330v0,105,-75,201,-225,288v111,44,216,128,225,250","w":752},"|":{"d":"462,276r0,-1681r146,0r0,1681r-146,0"},"}":{"d":"572,122v0,191,-190,302,-395,298r-139,0r0,-140r76,0v175,0,263,-76,263,-228v0,-87,-68,-286,-63,-369v8,-121,115,-207,225,-250v-150,-87,-225,-183,-225,-288v0,-76,63,-252,63,-330v0,-123,-55,-184,-164,-184r-175,0r0,-133r148,0v196,-4,386,104,386,286v0,74,-74,303,-74,380v0,133,82,221,209,229r0,84v-139,9,-209,80,-209,212v0,87,74,346,74,433","w":752},"~":{"d":"342,-716v91,-5,292,78,366,77v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-71,0,-305,-76,-355,-77v-47,0,-83,26,-108,77r-91,0v15,-97,82,-201,184,-207"},"\u00c4":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm273,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm746,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1208},"\u00c5":{"d":"838,-1605v0,100,-71,183,-155,203r521,1402r-222,0r-101,-309r-549,0r-104,309r-224,0r562,-1404v-81,-22,-151,-102,-151,-201v0,-113,98,-209,212,-209v114,0,211,96,211,209xm525,-1605v0,54,48,100,102,100v54,0,101,-46,101,-100v0,-54,-47,-99,-101,-99v-54,0,-102,45,-102,99xm616,-1101r-227,645r435,0","w":1208},"\u00c7":{"d":"80,-728v0,-405,245,-762,631,-762v159,0,284,26,374,79r-67,171v-64,-47,-165,-70,-302,-70v-281,0,-426,285,-426,594v0,300,155,561,428,561v137,0,243,-49,317,-146r110,153v-116,115,-265,173,-448,173v-401,2,-617,-333,-617,-753xm535,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1225},"\u00c9":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm802,-1918r-226,333r-140,0r169,-333r197,0","w":1097},"\u00d1":{"d":"1097,20r-757,-1071r0,1051r-190,0r0,-1465r80,0r737,1013r0,-1013r190,0r0,1485r-60,0xm294,-1585v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1307},"\u00d6":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm337,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm810,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1380},"\u00dc":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm289,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm762,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1328},"\u00e1":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm765,-1618r-226,333r-140,0r169,-333r197,0","w":1076},"\u00e0":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm505,-1285r-226,-333r197,0r169,333r-140,0","w":1076},"\u00e2":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm680,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1076},"\u00e4":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm163,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm636,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1076},"\u00e3":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm197,-1285v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1076},"\u00e5":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm302,-1495v0,-113,98,-209,212,-209v114,0,211,96,211,209v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210xm412,-1495v0,54,48,100,102,100v54,0,101,-46,101,-100v0,-54,-47,-99,-101,-99v-54,0,-102,45,-102,99","w":1076},"\u00e7":{"d":"65,-525v0,-338,215,-566,555,-566v105,0,267,61,323,107r-94,134v-39,-39,-163,-82,-247,-81v-219,2,-337,173,-337,406v0,239,122,384,351,385v85,0,171,-33,258,-99r75,160v-102,66,-228,99,-379,99v-300,1,-505,-229,-505,-545xm475,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1014},"\u00e9":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm824,-1618r-226,333r-140,0r169,-333r197,0","w":1117},"\u00e8":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm587,-1285r-226,-333r197,0r169,333r-140,0","w":1117},"\u00ea":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm729,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1117},"\u00eb":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm214,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm687,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1117},"\u00ed":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm540,-1618r-226,333r-140,0r169,-333r197,0","w":584},"\u00ec":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm288,-1285r-226,-333r197,0r169,333r-140,0","w":584},"\u00ee":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm443,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":584},"\u00ef":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm-60,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm413,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":584},"\u00f1":{"d":"570,-931v-97,0,-205,70,-245,135r0,796r-190,0r0,-1071r130,0r60,138v63,-105,165,-158,307,-158v235,0,352,143,352,428r0,663r-190,0r0,-623v-3,-206,-39,-308,-224,-308xm214,-1285v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1119},"\u00f3":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm774,-1618r-226,333r-140,0r169,-333r197,0","w":1099},"\u00f2":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm565,-1285r-226,-333r197,0r169,333r-140,0","w":1099},"\u00f4":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm709,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1099},"\u00f6":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm215,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm688,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1099},"\u00f5":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm244,-1285v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1099},"\u00fa":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm740,-1618r-226,333r-140,0r169,-333r197,0","w":1119},"\u00f9":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm547,-1285r-226,-333r197,0r169,333r-140,0","w":1119},"\u00fb":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm679,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1119},"\u00fc":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm181,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm654,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1119},"\u2020":{"d":"395,-931r-370,0r0,-140r370,0r0,-314r150,0r0,314r370,0r0,140r-370,0r0,1181r-74,88r-76,-88r0,-1181","w":940},"\u00b0":{"d":"719,-1282v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210v0,-113,98,-209,212,-209v114,0,211,96,211,209xm647,-1282v0,-74,-65,-139,-139,-139v-74,0,-139,65,-139,139v0,74,65,139,139,139v74,0,139,-65,139,-139"},"\u00a2":{"d":"694,-1217r102,0r-71,248v73,17,129,42,170,75r-78,113v-25,-25,-69,-44,-130,-56r-169,590v122,41,221,18,322,-59r60,136v-104,69,-270,100,-422,64r-74,258r-115,0r88,-300v-123,-73,-184,-200,-184,-379v0,-267,167,-452,431,-453xm583,-841v-135,19,-230,155,-230,314v0,93,24,166,72,218"},"\u00a3":{"d":"222,-1004v-5,-286,144,-487,407,-487v137,0,234,40,293,121r-94,133v-43,-57,-117,-86,-222,-86v-123,0,-184,104,-184,311r0,156r199,0r0,149r-199,0r0,527r223,0v101,0,179,-38,234,-113r142,111v-68,121,-216,182,-445,182r-444,0r0,-139v60,-20,90,-63,90,-129r0,-439r-82,0r0,-149r82,0r0,-148"},"\u00a7":{"d":"850,-322v2,229,-166,345,-400,345v-148,0,-264,-31,-349,-92r68,-186v73,67,163,100,270,100v134,0,201,-49,201,-147v0,-90,-76,-151,-229,-182v-91,-19,-164,-53,-220,-103v-56,-50,-84,-101,-84,-153v0,-91,32,-156,97,-197v-79,-45,-119,-126,-119,-243v0,-235,300,-372,545,-280v58,22,104,42,136,69r-62,184v-72,-69,-146,-103,-222,-103v-168,0,-231,104,-156,210v19,27,82,51,186,78v178,46,296,107,296,297v0,65,-27,126,-81,182v82,55,123,128,123,221xm355,-881v-68,46,-89,99,-35,161v65,75,132,71,276,108v22,-44,29,-132,-6,-172v-57,-68,-128,-70,-235,-97","w":929},"\u2022":{"d":"253,-574v0,-156,133,-289,289,-289v156,0,289,133,289,289v0,156,-133,289,-289,289v-156,0,-289,-133,-289,-289"},"\u00b6":{"d":"118,-1077v0,-215,103,-412,307,-412r507,0r0,1739r-154,0r0,-1616r-158,0r0,1616r-154,0r0,-893v-232,0,-348,-145,-348,-434"},"\u00df":{"d":"1039,-446v0,272,-119,465,-376,466v-51,0,-98,-8,-141,-23r36,-151v98,26,203,-14,240,-84v43,-82,58,-248,12,-340v-20,-41,-39,-70,-58,-86r-152,-125v-56,-45,-84,-94,-84,-146v0,-41,111,-109,127,-147v17,-26,26,-57,26,-96v0,-108,-56,-162,-169,-162v-64,0,-110,25,-136,75v-26,50,-39,133,-39,249r0,1016r-190,0r0,-1115v-4,-229,122,-393,339,-395v210,-2,370,89,370,278v0,85,-32,164,-95,237v-33,39,-44,50,-20,82v9,7,35,22,79,45v154,80,231,221,231,422","w":1119},"\u00ae":{"d":"780,14v-362,0,-675,-313,-675,-675v0,-362,313,-674,675,-674v362,0,674,312,674,674v0,362,-312,675,-674,675xm780,-96v304,0,564,-262,564,-565v0,-304,-260,-564,-564,-564v-304,0,-565,260,-565,564v0,304,262,565,565,565xm990,-254r-211,-357r-120,0r0,357r-119,0r0,-831r213,0v200,0,300,77,300,230v0,107,-54,182,-161,226r227,375r-129,0xm737,-705v141,0,189,-15,196,-142v7,-123,-127,-148,-274,-136r0,276v10,1,36,2,78,2","w":1460},"\u00a9":{"d":"780,14v-362,0,-675,-313,-675,-675v0,-362,313,-674,675,-674v362,0,674,312,674,674v0,362,-312,675,-674,675xm780,-96v304,0,564,-262,564,-565v0,-304,-260,-564,-564,-564v-304,0,-565,260,-565,564v0,304,262,565,565,565xm553,-657v0,170,88,317,243,318v78,0,138,-27,179,-82r63,86v-67,66,-151,99,-254,99v-227,1,-350,-187,-350,-427v0,-231,139,-434,358,-432v91,0,162,15,212,44r-38,97v-36,-26,-93,-39,-172,-39v-160,1,-241,161,-241,336","w":1460},"\u2122":{"d":"499,-1381r0,643r-100,0r0,-643r-208,0r0,-90r527,0r0,90r-219,0xm1254,-739r-83,-498r-147,503r-59,0r-155,-510r-77,505r-95,0r112,-732r75,0r169,567r167,-567r75,0r113,732r-95,0","w":1300},"\u00b4":{"d":"744,-1618r-226,333r-140,0r169,-333r197,0"},"\u00a8":{"d":"189,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm662,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113"},"\u2260":{"d":"822,-1051r139,0r-143,175r142,0r0,141r-257,0r-162,199r419,0r0,141r-534,0r-165,202r-138,0r165,-202r-166,0r0,-141r280,0r163,-199r-443,0r0,-141r557,0"},"\u00c6":{"d":"828,-307r-448,0r-139,307r-224,0r705,-1465r981,0r0,180r-675,0r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-307xm828,-1285r-384,829r384,0r0,-829","w":1775},"\u00d8":{"d":"1287,-745v0,450,-202,769,-630,770v-117,0,-220,-30,-307,-91r-67,91r-216,0r160,-211v-107,-143,-160,-329,-160,-559v0,-392,213,-746,590,-746v143,0,263,33,361,100r67,-100r202,0r-144,220v96,129,144,305,144,526xm913,-1229v-66,-55,-151,-82,-256,-82v-124,0,-216,52,-283,152v-120,180,-129,582,-20,792xm657,-155v303,0,422,-258,420,-590v0,-137,-19,-249,-58,-338r-562,856v56,48,123,72,200,72","w":1345},"\u221e":{"d":"1024,-671v0,141,-101,219,-246,219v-85,0,-165,-48,-241,-144v-76,96,-155,144,-238,144v-147,1,-247,-75,-247,-219v0,-126,106,-215,234,-215v97,0,180,43,250,129v70,-86,155,-129,255,-129v127,0,233,89,233,215xm598,-674v57,79,120,119,190,119v87,0,130,-39,130,-116v0,-77,-47,-116,-140,-116v-51,0,-111,38,-180,113xm479,-674v-69,-75,-129,-113,-180,-113v-93,0,-140,39,-140,116v0,77,43,116,130,116v70,0,133,-40,190,-119"},"\u00b1":{"d":"611,-706r349,0r0,141r-349,0r0,345r-141,0r0,-345r-348,0r0,-141r348,0r0,-343r141,0r0,343xm960,-121r0,141r-838,0r0,-141r838,0"},"\u2264":{"d":"150,-594r0,-123r739,-354r0,161r-571,255r571,258r0,161xm960,-121r0,141r-838,0r0,-141r838,0"},"\u2265":{"d":"932,-594r-739,358r0,-161r571,-258r-571,-255r0,-161r739,354r0,123xm122,-121r838,0r0,141r-838,0r0,-141"},"\u00a5":{"d":"932,-475r-254,0r0,475r-200,0r0,-475r-243,0r0,-131r243,0r0,-50r-439,-809r206,0r332,640r368,-640r197,0r-464,809r0,50r254,0r0,131","w":1168},"\u03bc":{"d":"795,-148v-41,95,-154,169,-287,168v-72,0,-133,-13,-183,-38r0,438r-190,0r0,-1491r190,0r0,623v0,201,78,302,235,302v111,0,206,-69,235,-149r0,-776r190,0r0,1071r-190,0r0,-148","w":1119},"\u2202":{"d":"1014,-549v4,314,-200,570,-509,570v-300,0,-450,-163,-450,-489v0,-174,57,-319,169,-436v112,-117,235,-175,368,-175v0,-37,-56,-97,-167,-179v-111,-82,-211,-122,-298,-122r44,-161v113,0,240,48,381,143v250,168,457,464,462,849xm515,-150v209,0,309,-178,309,-408v0,-171,-35,-291,-106,-362v-275,-7,-473,188,-473,452v0,192,90,318,270,318","w":1125},"\u2211":{"d":"329,-1285r399,546r-409,732r683,0r0,180r-914,0r0,-180r400,-732r-400,-566r0,-160r875,0r0,180r-634,0","w":1075},"\u220f":{"d":"365,-1285r-1,1455r-200,0r0,-1455r-130,0r0,-180r1050,0r0,180r-130,0r0,1455r-200,0r0,-1455r-389,0","w":1132},"\u03c0":{"d":"982,0r-193,0r0,-911r-337,0r0,911r-193,0r0,-911r-167,0r0,-160r1048,0r0,160r-158,0r0,911","w":1232},"\u222b":{"d":"624,-23v3,231,-123,443,-345,443v-119,0,-219,-41,-301,-123r100,-142v51,63,108,95,170,95v102,1,157,-133,157,-241r0,-1073v-7,-223,165,-446,381,-446v107,0,201,34,280,102r-124,142v-58,-79,-210,-109,-276,-19v-27,37,-42,120,-42,251r0,1011"},"\u00aa":{"d":"87,-1002v4,-189,193,-266,410,-248v-2,-85,-48,-127,-138,-127v-73,0,-131,21,-175,62r-58,-108v61,-45,134,-68,219,-68v192,0,288,89,288,267r0,225v0,53,18,88,53,107r0,67v-93,0,-150,-26,-173,-77v-50,52,-122,78,-216,78v-110,0,-211,-72,-210,-178xm221,-1017v0,55,62,84,123,84v61,0,113,-23,154,-69r0,-155v-140,-11,-277,25,-277,140","w":752},"\u00ba":{"d":"379,-824v-197,0,-313,-135,-313,-335v0,-191,125,-332,313,-332v200,0,312,131,312,332v0,199,-115,335,-312,335xm207,-1159v0,147,57,221,172,221v114,0,171,-74,171,-221v0,-145,-57,-218,-171,-218v-115,0,-172,73,-172,218","w":752},"\u03a9":{"d":"1295,-745v-1,262,-121,486,-289,595r289,0r0,150r-500,0r0,-152v181,-171,290,-300,290,-593v0,-377,-138,-566,-415,-566v-277,0,-385,260,-385,566v0,210,150,518,290,595r0,150r-500,0r0,-150r269,0v-179,-139,-269,-338,-269,-595v0,-392,218,-748,595,-746v425,3,628,302,625,746","w":1370},"\u00e6":{"d":"1226,-1091v288,0,488,196,485,478v0,31,-5,63,-15,96r-762,0v-4,214,122,378,327,377v117,0,208,-36,274,-109r80,152v-102,90,-206,117,-391,117v-113,0,-213,-32,-298,-95v3,33,7,65,11,95r-161,0r-35,-143v-76,95,-189,143,-339,143v-169,0,-324,-134,-322,-301v3,-259,234,-407,512,-402v37,0,81,7,132,22v0,-173,-78,-260,-233,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-107,332,-107v195,0,325,58,389,173v99,-115,221,-173,368,-173xm1532,-655v2,-168,-133,-276,-307,-276v-149,0,-292,144,-291,276r598,0xm724,-526v-204,-74,-454,53,-454,229v0,111,66,167,198,167v97,0,182,-46,256,-137r0,-259","w":1788},"\u00f8":{"d":"1030,-538v0,326,-173,559,-484,558v-108,0,-200,-26,-276,-78r-58,78r-151,0r119,-162v-79,-99,-119,-231,-119,-396v0,-312,186,-555,485,-553v110,0,203,25,278,76r56,-76r150,0r-117,159v78,97,117,229,117,394xm546,-926v-196,3,-295,171,-295,388v0,99,15,179,44,241r424,-575v-50,-36,-108,-54,-173,-54xm546,-135v198,0,294,-183,294,-403v0,-97,-14,-176,-43,-237r-424,576v46,43,104,64,173,64","w":1117},"\u00bf":{"d":"556,-940v0,80,-70,150,-150,150v-80,0,-150,-70,-150,-150v0,-80,70,-151,150,-151v80,0,150,71,150,151xm389,420v-192,0,-353,-122,-349,-312v2,-112,43,-196,104,-261r146,-156v75,-104,109,-188,74,-333r132,0v46,123,39,168,8,284v-24,88,-209,269,-246,340v-20,38,-32,74,-32,109v0,117,71,176,213,176v68,0,127,-24,178,-73r73,143v-67,55,-168,83,-301,83","w":752},"\u00a1":{"d":"534,-940v0,80,-70,150,-150,150v-80,0,-150,-70,-150,-150v0,-80,70,-151,150,-151v80,0,150,71,150,151xm413,-689v85,553,81,642,78,1109r-226,0v-2,-461,-8,-567,77,-1109r71,0","w":752},"\u00ac":{"d":"960,-886r0,486r-141,0r0,-345r-697,0r0,-141r838,0"},"\u221a":{"d":"751,-1349r-384,1349r-142,0r-209,-268r98,-83r150,194r374,-1314r450,0r0,122r-337,0"},"\u0192":{"d":"802,-1332v-205,-81,-320,18,-355,260v86,5,161,1,251,-8r-13,116v-111,16,-200,26,-265,29r-165,1008v-29,190,-179,313,-377,335v-18,-38,-40,-117,-54,-155v92,-16,227,-93,241,-180r166,-999v-29,0,-80,4,-151,13r30,-158r147,-1v59,-292,205,-438,439,-438v35,0,83,10,142,30","w":795},"\u2248":{"d":"342,-836v76,-5,300,77,366,77v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-69,0,-294,-77,-355,-77v-47,0,-83,26,-108,77r-91,0v14,-98,82,-201,184,-207xm342,-506v76,-5,300,77,366,77v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-69,0,-294,-77,-355,-77v-47,0,-83,26,-108,77r-91,0v14,-98,82,-201,184,-207"},"\u0394":{"d":"25,0r0,-124r526,-1341r144,0r480,1341r0,124r-1150,0xm619,-1216r-376,1046r725,0","w":1198},"\u00ab":{"d":"129,-535r0,-64r355,-244r0,125r-212,157r212,138r0,125xm528,-535r0,-64r355,-244r0,125r-212,157r212,138r0,125"},"\u00bb":{"d":"524,-535r-355,237r0,-125r212,-138r-212,-157r0,-125r355,244r0,64xm923,-535r-355,237r0,-125r212,-138r-212,-157r0,-125r355,244r0,64"},"\u2026":{"d":"250,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm752,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm1254,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150","w":1504},"\u00a0":{"w":617},"\u00c0":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm578,-1585r-226,-333r197,0r169,333r-140,0","w":1208},"\u00c3":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm296,-1585v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1208},"\u00d5":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm364,-1585v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1380},"\u0152":{"d":"67,-745v0,-392,213,-746,590,-746v180,0,323,52,430,156r0,-130r875,0r0,180r-675,0r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-138v-107,109,-251,163,-430,163v-391,0,-590,-358,-590,-770xm657,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-126,633,2,835v70,110,160,169,281,169","w":2034},"\u0153":{"d":"61,-538v0,-312,186,-553,485,-553v181,0,313,66,396,199v99,-133,229,-199,389,-199v288,0,488,196,485,478v0,31,-5,63,-15,96r-762,0v-4,215,121,378,327,377v112,0,203,-34,274,-101r80,152v-83,73,-213,109,-391,109v-169,0,-301,-64,-396,-193v-86,129,-215,193,-387,193v-315,0,-485,-234,-485,-558xm1637,-655v2,-168,-133,-276,-307,-276v-132,0,-298,143,-291,276r598,0xm546,-921v-197,0,-285,165,-285,383v0,259,95,388,285,388v200,0,284,-172,284,-388v0,-255,-95,-383,-284,-383","w":1893},"\u2013":{"d":"93,-532r0,-96r521,0r0,96r-521,0","w":752},"\u2014":{"d":"93,-532r0,-96r1309,0r0,96r-1309,0","w":1504},"\u201c":{"d":"819,-1242v0,55,98,137,98,194v0,98,-48,147,-145,147v-103,0,-155,-59,-155,-177v0,-177,88,-321,265,-432r67,89v-50,45,-130,93,-130,179xm369,-1242v0,55,98,137,98,194v0,98,-48,147,-145,147v-103,0,-155,-59,-155,-177v0,-177,88,-321,265,-432r67,89v-50,45,-130,93,-130,179"},"\u201d":{"d":"753,-1169v0,-55,-98,-137,-98,-194v0,-98,48,-147,145,-147v103,0,155,59,155,177v0,177,-88,321,-265,432r-67,-89v50,-45,130,-93,130,-179xm294,-1169v0,-55,-98,-137,-98,-194v0,-98,48,-147,145,-147v103,0,155,59,155,177v0,177,-88,321,-265,432r-67,-89v50,-45,130,-93,130,-179"},"\u2018":{"d":"423,-1242v0,55,98,137,98,194v0,98,-48,147,-145,147v-103,0,-155,-59,-155,-177v0,-177,88,-321,265,-432r67,89v-50,45,-130,93,-130,179","w":752,"k":{"\u2018":197}},"\u2019":{"d":"329,-1169v0,-55,-98,-137,-98,-194v0,-98,48,-147,145,-147v103,0,155,59,155,177v0,177,-88,321,-265,432r-67,-89v50,-45,130,-93,130,-179","w":752,"k":{"\u2019":197,"s":141," ":76}},"\u00f7":{"d":"544,-1150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm960,-705r0,141r-838,0r0,-141r838,0xm544,-400v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150"},"\u25ca":{"d":"549,-1422r418,713r-418,709r-111,0r-391,-709r391,-713r111,0xm495,-1325r-340,616r340,615r359,-615","w":1012},"\u00ff":{"d":"124,250v136,4,289,-72,289,-191v0,-149,-66,-269,-111,-385r-290,-745r194,0r315,828r283,-828r194,0r-454,1253v-46,135,-234,241,-420,238r0,-170xm151,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm624,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1010},"\u0178":{"d":"685,-656r0,656r-200,0r0,-656r-472,-809r206,0r365,640r365,-640r206,0xm241,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm714,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1168},"\u2044":{"d":"131,35r-127,0r973,-1526r126,0","w":1083},"\u2215":{"d":"131,35r-127,0r973,-1526r126,0","w":1083},"\u20ac":{"d":"146,-928v40,-291,246,-563,553,-562v167,0,284,31,353,93r-89,164v-67,-51,-154,-77,-259,-77v-208,0,-332,180,-358,382r459,0r-58,141r-414,0v-4,46,-4,84,-1,131r347,0r-49,141r-283,0v11,165,171,363,340,360v130,-2,279,-69,344,-143r0,217v-93,71,-215,106,-365,106v-296,0,-480,-255,-519,-540r-116,0r0,-141r98,0v-3,-45,-4,-89,-1,-131r-97,0r0,-141r115,0"},"\u2039":{"d":"171,-535r0,-64r355,-244r0,125r-212,157r212,138r0,125","w":752},"\u203a":{"d":"566,-535r-355,237r0,-125r212,-138r-212,-157r0,-125r355,244r0,64","w":752},"\ufb01":{"d":"399,-1071r637,0r0,1071r-193,0r0,-911r-444,0r0,911r-190,0r0,-911r-156,0r0,-160r156,0v-5,-253,133,-438,368,-439v55,0,115,10,178,30r-53,140v-192,-77,-340,74,-303,269xm800,-1359v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1187},"\ufb02":{"d":"221,-1071v-5,-253,133,-438,368,-439v98,0,174,16,227,47r0,-27r190,0r0,1155v0,123,46,185,139,185r0,170v-237,-3,-329,-85,-329,-323r0,-982v-33,-40,-133,-75,-210,-75v-137,0,-224,137,-195,289r188,0r0,160r-188,0r0,911r-190,0r0,-911r-156,0r0,-160r156,0","w":1230},"\u2021":{"d":"915,-381r0,140r-370,0r0,491r-76,94r-74,-94r0,-491r-370,0r0,-140r370,0r0,-550r-370,0r0,-140r370,0r0,-314r150,0r0,314r370,0r0,140r-370,0r0,550r370,0","w":940},"\u2219":{"d":"205,-651v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\u201a":{"d":"329,64v0,-55,-98,-137,-98,-194v0,-98,48,-147,145,-147v103,0,155,59,155,177v0,177,-88,321,-265,432r-67,-89v50,-45,130,-93,130,-179","w":752},"\u201e":{"d":"753,64v0,-55,-98,-137,-98,-194v0,-98,48,-147,145,-147v103,0,155,59,155,177v0,177,-88,321,-265,432r-67,-89v50,-45,130,-93,130,-179xm294,64v0,-55,-98,-137,-98,-194v0,-98,48,-147,145,-147v103,0,155,59,155,177v0,177,-88,321,-265,432r-67,-89v50,-45,130,-93,130,-179"},"\u2030":{"d":"218,20r-127,0r883,-1511r126,0xm618,-1143v0,191,-104,339,-279,339v-185,0,-278,-119,-278,-358v0,-183,114,-331,287,-329v181,2,270,147,270,348xm345,-1389v-110,0,-158,111,-158,237v0,129,39,246,143,246v108,0,162,-82,162,-245v0,-159,-49,-238,-147,-238xm1158,-319v0,191,-104,339,-279,339v-185,0,-278,-119,-278,-358v0,-183,114,-331,287,-329v181,2,270,147,270,348xm885,-565v-110,0,-158,111,-158,237v0,129,39,246,143,246v108,0,162,-82,162,-245v0,-159,-49,-238,-147,-238xm1808,-319v0,191,-104,339,-279,339v-185,0,-278,-119,-278,-358v0,-183,114,-331,287,-329v181,2,270,147,270,348xm1535,-565v-110,0,-158,111,-158,237v0,129,39,246,143,246v108,0,162,-82,162,-245v0,-159,-49,-238,-147,-238","w":1869},"\u00c2":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm778,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1208},"\u00ca":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm718,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1097},"\u00c1":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm859,-1918r-226,333r-140,0r169,-333r197,0","w":1208},"\u00cb":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm230,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm703,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1097},"\u00c8":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm592,-1585r-226,-333r197,0r169,333r-140,0","w":1097},"\u00cd":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm577,-1918r-226,333r-140,0r169,-333r197,0","w":570},"\u00ce":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm433,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":570},"\u00cf":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm-31,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm442,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":570},"\u00cc":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm329,-1585r-226,-333r197,0r169,333r-140,0","w":570},"\u00d3":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm889,-1918r-226,333r-140,0r169,-333r197,0","w":1380},"\u00d4":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm828,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1380},"\u00d2":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm718,-1585r-226,-333r197,0r169,333r-140,0","w":1380},"\u00da":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm854,-1918r-226,333r-140,0r169,-333r197,0","w":1328},"\u00db":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm792,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1328},"\u00d9":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm659,-1585r-226,-333r197,0r169,333r-140,0","w":1328},"\u0131":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0","w":584},"\u02c6":{"d":"682,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0"},"\u02dc":{"d":"204,-1285v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0"},"\u02c9":{"d":"913,-1426r0,141r-738,0r0,-141r738,0"},"\u02d8":{"d":"526,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171"},"\u02d9":{"d":"418,-1403v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118"},"\u02da":{"d":"296,-1495v0,-113,98,-209,212,-209v114,0,211,96,211,209v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210xm406,-1495v0,54,48,100,102,100v54,0,101,-46,101,-100v0,-54,-47,-99,-101,-99v-54,0,-102,45,-102,99"},"\u00b8":{"d":"423,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119"},"\u02dd":{"d":"540,-1568r-199,283r-140,0r142,-283r197,0xm910,-1568r-199,283r-140,0r142,-283r197,0"},"\u02db":{"d":"594,0v-72,39,-93,47,-98,133v-7,107,144,114,218,63r67,142v-64,23,-123,35,-178,35v-150,0,-272,-101,-272,-248v0,-116,68,-211,205,-286"},"\u02c7":{"d":"879,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0"},"\u0141":{"d":"485,-1045r0,131r-135,95r0,639r662,0r0,180r-862,0r0,-679r-152,106r0,-144r152,-102r0,-646r200,0r0,511","w":1037},"\u0142":{"d":"346,-335v-2,111,71,186,179,185r0,170v-246,0,-369,-108,-369,-323r0,-382r-107,74r0,-144r107,-72r0,-683r190,0r0,555r139,-90r0,131r-139,97r0,482","w":610},"\u0160":{"d":"904,-370v-2,238,-222,395,-487,395v-130,0,-241,-31,-333,-92r73,-184v61,47,190,94,289,96v146,3,266,-90,259,-227v-8,-164,-76,-198,-238,-276v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-222,184,-380,414,-380v162,0,275,26,338,79r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-270,157,-198,309v45,96,87,103,212,164v120,59,277,131,331,227v38,67,60,149,60,250xm859,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":985},"\u0161":{"d":"764,-287v-1,205,-161,307,-381,307v-113,0,-219,-28,-318,-84r67,-180v106,69,191,104,256,104v117,0,176,-49,176,-148v0,-71,-57,-130,-170,-182v-141,-66,-181,-78,-256,-162v-41,-46,-65,-101,-66,-179v-1,-184,155,-282,347,-280v78,0,176,25,295,74r-54,176v-75,-60,-151,-90,-227,-90v-80,0,-160,41,-161,113v0,69,40,119,117,156v172,81,377,137,375,375xm762,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":829},"\u017d":{"d":"100,0r0,-50r630,-1235r-620,0r0,-180r895,0r0,50r-632,1235r654,0r0,180r-927,0xm898,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1127},"\u017e":{"d":"338,-170r594,0r0,170r-892,0r0,-50r609,-851r-599,0r0,-170r876,0r0,54xm828,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":972},"\u00a6":{"d":"472,-694r0,-723r146,0r0,723r-146,0xm472,276r0,-723r146,0r0,723r-146,0"},"\u00d0":{"d":"511,-1475v406,-5,665,277,665,683v0,528,-244,792,-731,792r-295,0r0,-691r-135,0r0,-160r135,0r0,-614v188,-7,308,-10,361,-10xm516,-180v306,-4,450,-259,450,-595v0,-347,-156,-520,-467,-520v-19,0,-68,3,-149,10r0,434r149,0r0,160r-149,0r0,501v45,7,100,10,166,10","w":1256},"\u00f0":{"d":"61,-538v0,-359,254,-629,631,-535v-43,-75,-81,-136,-115,-183r-174,94r-46,-90r159,-84v-61,-73,-119,-131,-176,-174r251,0v19,20,46,51,80,92r173,-92r46,85r-159,86v123,189,203,341,241,457v38,116,58,230,58,344v0,322,-171,558,-484,558v-314,0,-485,-236,-485,-558xm546,-921v-200,0,-295,172,-295,383v0,259,98,388,295,388v201,0,294,-174,294,-388v0,-255,-98,-383,-294,-383","w":1125},"\u00dd":{"d":"685,-656r0,656r-200,0r0,-656r-472,-809r206,0r365,640r365,-640r206,0xm819,-1918r-226,333r-140,0r169,-333r197,0","w":1168},"\u00de":{"d":"1063,-828v0,334,-221,517,-564,514r-148,0r0,314r-201,0r0,-1465r201,0r0,190r74,0v425,0,638,149,638,447xm857,-807v0,-228,-142,-286,-397,-288r-109,0r0,601r134,0v248,0,372,-104,372,-313","w":1138},"\u00fe":{"d":"1068,-533v0,319,-176,553,-498,553v-111,0,-192,-26,-245,-79r0,479r-190,0r0,-1930r190,0r0,527v72,-72,159,-108,261,-108v322,2,482,216,482,558xm515,-921v-62,0,-157,54,-190,91r0,604v59,51,122,76,189,76v257,-2,354,-126,354,-390v0,-262,-96,-381,-353,-381","w":1133},"\u2212":{"d":"960,-706r0,141r-838,0r0,-141r838,0"},"\u00b9":{"d":"439,-595r0,-674r-188,112r0,-113v131,-66,225,-135,282,-208r36,0r0,883r-130,0","w":924},"\u00b2":{"d":"162,-1317v29,-89,127,-173,240,-173v176,0,264,75,264,224v0,80,-31,169,-93,266r-183,287r334,0r0,118r-540,0r0,-24r266,-414v57,-89,86,-164,86,-223v0,-81,-43,-122,-128,-122v-71,0,-128,41,-169,124","w":924},"\u00b3":{"d":"655,-1270v0,98,-64,179,-135,205v110,36,165,112,165,227v0,169,-98,253,-295,253v-86,0,-154,-24,-205,-72r59,-102v33,36,82,54,148,54v109,0,163,-47,163,-142v0,-103,-73,-168,-184,-163r0,-102v102,2,154,-44,154,-139v0,-79,-46,-119,-139,-119v-57,0,-98,15,-124,44r-54,-91v37,-49,100,-73,187,-73v143,0,260,87,260,220","w":929},"\u00bd":{"d":"336,35r-128,0r974,-1526r126,0xm289,-595r0,-674r-188,112r0,-113v131,-66,225,-135,282,-208r36,0r0,883r-130,0xm1002,-722v29,-89,127,-173,240,-173v176,0,264,75,264,224v0,80,-31,169,-93,266r-183,287r334,0r0,118r-540,0r0,-24r266,-414v57,-89,86,-164,86,-223v0,-81,-43,-122,-128,-122v-71,0,-128,41,-169,124","w":1668},"\u00bc":{"d":"349,35r-128,0r974,-1526r126,0xm259,-595r0,-664r-178,102r0,-113v131,-66,225,-135,282,-208r36,0r0,883r-140,0xm1400,-210r0,210r-130,0r0,-210r-404,0r0,-68r492,-605r42,0r0,571r89,0r0,102r-89,0xm1270,-623r-252,311r252,0r0,-311","w":1668},"\u00be":{"d":"429,35r-128,0r974,-1526r126,0xm595,-1270v0,98,-64,179,-135,205v110,36,165,112,165,227v0,169,-98,253,-295,253v-86,0,-154,-24,-205,-72r59,-102v33,36,82,54,148,54v109,0,163,-47,163,-142v0,-103,-73,-168,-184,-163r0,-102v102,2,154,-44,154,-139v0,-79,-46,-119,-139,-119v-57,0,-98,15,-124,44r-54,-91v37,-49,100,-73,187,-73v143,0,260,87,260,220xm1430,-210r0,210r-130,0r0,-210r-404,0r0,-68r492,-605r42,0r0,571r89,0r0,102r-89,0xm1300,-623r-252,311r252,0r0,-311","w":1668},"\u00b5":{"d":"795,-148v-41,95,-154,169,-287,168v-72,0,-133,-13,-183,-38r0,438r-190,0r0,-1491r190,0r0,623v0,201,78,302,235,302v111,0,206,-69,235,-149r0,-776r190,0r0,1071r-190,0r0,-148","w":1119},"\u2126":{"d":"1295,-745v-1,262,-121,486,-289,595r289,0r0,150r-500,0r0,-152v181,-171,290,-300,290,-593v0,-377,-138,-566,-415,-566v-277,0,-385,260,-385,566v0,210,150,518,290,595r0,150r-500,0r0,-150r269,0v-179,-139,-269,-338,-269,-595v0,-392,218,-748,595,-746v425,3,628,302,625,746","w":1370},"\u2206":{"d":"25,0r0,-124r526,-1341r144,0r480,1341r0,124r-1150,0xm619,-1216r-376,1046r725,0","w":1198},"\u00fd":{"d":"124,250v136,4,289,-72,289,-191v0,-149,-66,-269,-111,-385r-290,-745r194,0r315,828r283,-828r194,0r-454,1253v-46,135,-234,241,-420,238r0,-170xm755,-1618r-226,333r-140,0r169,-333r197,0","w":1010},"\u00d7":{"d":"544,-728r317,-317r100,99r-317,317r314,315r-100,100r-314,-315r-317,317r-100,-99r317,-317r-321,-321r100,-100"},"\u00ad":{"d":"159,-506r0,-175r428,0r0,175r-428,0","w":752},"\u20a3":{"d":"350,-1285r0,407r515,0r0,170r-515,0r0,207r149,0r0,160r-149,0r0,341r-200,0r0,-341r-135,0r0,-160r135,0r0,-964r905,0r0,180r-705,0","w":1075},"\u011e":{"d":"80,-727v0,-440,275,-763,712,-763v153,0,277,42,373,127r-83,165v-101,-75,-199,-112,-296,-112v-319,-2,-496,258,-496,591v0,320,177,566,486,564v107,0,193,-32,259,-96r0,-343r-203,0r0,-170r403,0r0,638v-96,87,-321,151,-501,151v-416,0,-654,-322,-654,-752xm716,-1739v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1385},"\u011f":{"d":"968,90v0,287,-396,394,-687,293v-76,-26,-138,-55,-185,-90r103,-152v111,74,213,111,306,111v139,0,278,-45,278,-155v0,-87,-63,-130,-188,-130v-42,0,-200,32,-247,32v-152,0,-228,-57,-228,-172v0,-86,102,-139,186,-158v-151,-71,-226,-193,-226,-368v0,-221,184,-392,406,-392v105,0,188,22,247,65r95,-114r124,117r-114,86v105,136,95,397,-28,520v-70,70,-156,113,-265,126v-86,10,-158,6,-232,37v-31,13,-47,29,-47,49v0,27,33,41,98,41v50,0,219,-31,269,-31v198,0,335,97,335,285xm714,-698v0,-126,-92,-240,-215,-240v-130,0,-224,111,-224,240v0,142,84,259,224,259v140,0,215,-114,215,-259xm466,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1028},"\u0130":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm166,-1703v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":570},"\u015e":{"d":"904,-370v-2,238,-222,395,-487,395v-130,0,-241,-31,-333,-92r73,-184v61,47,190,94,289,96v146,3,266,-90,259,-227v-8,-164,-76,-198,-238,-276v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-222,184,-380,414,-380v162,0,275,26,338,79r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-270,157,-198,309v45,96,87,103,212,164v120,59,277,131,331,227v38,67,60,149,60,250xm373,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":985},"\u015f":{"d":"764,-287v-1,205,-161,307,-381,307v-113,0,-219,-28,-318,-84r67,-180v106,69,191,104,256,104v117,0,176,-49,176,-148v0,-71,-57,-130,-170,-182v-141,-66,-181,-78,-256,-162v-41,-46,-65,-101,-66,-179v-1,-184,155,-282,347,-280v78,0,176,25,295,74r-54,176v-75,-60,-151,-90,-227,-90v-80,0,-160,41,-161,113v0,69,40,119,117,156v172,81,377,137,375,375xm293,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":829},"\u0106":{"d":"80,-728v0,-405,245,-762,631,-762v159,0,284,26,374,79r-67,171v-64,-47,-165,-70,-302,-70v-281,0,-426,285,-426,594v0,300,155,561,428,561v137,0,243,-49,317,-146r110,153v-116,115,-265,173,-448,173v-401,2,-617,-333,-617,-753xm954,-1918r-226,333r-140,0r169,-333r197,0","w":1225},"\u0107":{"d":"65,-525v0,-338,215,-566,555,-566v105,0,267,61,323,107r-94,134v-39,-39,-163,-82,-247,-81v-219,2,-337,173,-337,406v0,239,122,384,351,385v85,0,171,-33,258,-99r75,160v-102,66,-228,99,-379,99v-300,1,-505,-229,-505,-545xm834,-1618r-226,333r-140,0r169,-333r197,0","w":1014},"\u010c":{"d":"80,-728v0,-405,245,-762,631,-762v159,0,284,26,374,79r-67,171v-64,-47,-165,-70,-302,-70v-281,0,-426,285,-426,594v0,300,155,561,428,561v137,0,243,-49,317,-146r110,153v-116,115,-265,173,-448,173v-401,2,-617,-333,-617,-753xm1049,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1225},"\u010d":{"d":"65,-525v0,-338,215,-566,555,-566v105,0,267,61,323,107r-94,134v-39,-39,-163,-82,-247,-81v-219,2,-337,173,-337,406v0,239,122,384,351,385v85,0,171,-33,258,-99r75,160v-102,66,-228,99,-379,99v-300,1,-505,-229,-505,-545xm919,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1014},"\u0111":{"d":"75,-509v0,-294,212,-582,487,-582v111,0,195,26,252,78r0,-178r-249,0r0,-150r249,0r0,-169r190,0r0,169r119,0r0,150r-119,0r0,1190r-190,0r0,-79v-66,66,-162,99,-288,99v-280,1,-451,-231,-451,-528xm627,-150v54,0,181,-57,187,-89r0,-574v-48,-72,-114,-108,-197,-108v-213,0,-342,176,-342,394v0,251,117,377,352,377","w":1141},"\u00af":{"d":"-8,-1546r0,-129r1085,0r0,129r-1085,0"},"\u00b7":{"d":"205,-651v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\u0102":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm610,-1739v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1208},"\u0103":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm506,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1076},"\u0104":{"d":"1046,133v0,98,140,119,218,63r67,142v-64,23,-123,35,-178,35v-150,0,-272,-101,-272,-248v0,-75,27,-137,82,-184r-82,-250r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485v-104,-12,-158,34,-158,133xm824,-456r-208,-645r-227,645r435,0","w":1208},"\u0105":{"d":"468,-1091v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95v-21,0,-36,0,-47,-1v-43,25,-64,63,-64,115v0,107,144,114,218,63r67,142v-64,23,-123,35,-178,35v-150,0,-272,-101,-272,-248v0,-63,20,-120,61,-172v-17,-19,-30,-45,-41,-76v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20","w":1076},"\u010e":{"d":"512,-1475v406,-5,665,277,665,683v0,528,-244,792,-731,792r-295,0r0,-1465v188,-7,308,-10,361,-10xm517,-180v306,-4,450,-259,450,-595v0,-347,-156,-520,-467,-520v-19,0,-68,3,-149,10r0,1095v45,7,100,10,166,10xm940,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1256},"\u010f":{"d":"1280,-1271v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm75,-509v0,-294,212,-582,487,-582v111,0,195,26,252,78r0,-497r190,0r0,1509r-190,0r0,-79v-66,66,-162,99,-288,99v-280,1,-451,-231,-451,-528xm627,-140v56,0,172,-49,187,-89r0,-594v-48,-72,-114,-108,-197,-108v-210,-2,-342,185,-342,404v0,258,117,387,352,387","w":1416},"\u0110":{"d":"511,-1475v406,-5,665,277,665,683v0,528,-244,792,-731,792r-295,0r0,-691r-135,0r0,-160r135,0r0,-614v188,-7,308,-10,361,-10xm516,-180v306,-4,450,-259,450,-595v0,-347,-156,-520,-467,-520v-19,0,-68,3,-149,10r0,434r149,0r0,160r-149,0r0,501v45,7,100,10,166,10","w":1256},"\u0118":{"d":"865,373v-150,0,-275,-101,-272,-248v0,-44,11,-86,32,-125r-475,0r0,-1465r875,0r0,180r-674,0r0,407r483,0r0,170r-483,0r0,528r663,0r0,180r-158,0v-14,4,-89,49,-88,73v-27,81,0,154,101,154v36,0,72,-10,107,-31r67,142v-64,23,-123,35,-178,35","w":1097},"\u0119":{"d":"265,-517v-4,225,124,377,337,377v109,0,199,-32,272,-95r79,153v-81,61,-184,94,-309,100v-43,25,-64,63,-64,115v0,107,144,114,218,63r67,142v-64,23,-123,35,-178,35v-150,0,-275,-101,-272,-248v0,-31,7,-71,22,-121v-223,-53,-372,-252,-372,-527v0,-312,213,-568,502,-568v328,0,543,238,470,574r-772,0xm863,-655v1,-162,-120,-276,-287,-276v-165,0,-295,124,-306,276r593,0","w":1117},"\u011a":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm939,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1097},"\u011b":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm909,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1117},"\u0139":{"d":"150,0r0,-1465r200,0r0,1285r662,0r0,180r-862,0xm604,-1918r-226,333r-140,0r169,-333r197,0","w":1037},"\u013a":{"d":"340,-335v-2,111,71,186,179,185r0,170v-246,0,-369,-108,-369,-323r0,-1207r190,0r0,1175xm544,-1918r-226,333r-140,0r169,-333r197,0","w":604},"\u013d":{"d":"630,-1252v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm150,0r0,-1465r200,0r0,1285r662,0r0,180r-862,0","w":1037},"\u013e":{"d":"570,-1271v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm340,-335v-2,111,71,186,179,185r0,170v-246,0,-369,-108,-369,-323r0,-1207r190,0r0,1175","w":604},"\u013f":{"d":"150,0r0,-1465r200,0r0,1285r662,0r0,180r-862,0xm578,-733v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1037},"\u0140":{"d":"340,-335v-2,111,71,186,179,185r0,170v-246,0,-369,-108,-369,-323r0,-1207r190,0r0,1175xm518,-773v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":675},"\u0143":{"d":"1097,20r-757,-1071r0,1051r-190,0r0,-1465r80,0r737,1013r0,-1013r190,0r0,1485r-60,0xm864,-1918r-226,333r-140,0r169,-333r197,0","w":1307},"\u0144":{"d":"570,-931v-97,0,-205,70,-245,135r0,796r-190,0r0,-1071r130,0r60,138v63,-105,165,-158,307,-158v235,0,352,143,352,428r0,663r-190,0r0,-623v-3,-206,-39,-308,-224,-308xm794,-1618r-226,333r-140,0r169,-333r197,0","w":1119},"\u0147":{"d":"1097,20r-757,-1071r0,1051r-190,0r0,-1465r80,0r737,1013r0,-1013r190,0r0,1485r-60,0xm959,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1307},"\u0148":{"d":"570,-931v-97,0,-205,70,-245,135r0,796r-190,0r0,-1071r130,0r60,138v63,-105,165,-158,307,-158v235,0,352,143,352,428r0,663r-190,0r0,-623v-3,-206,-39,-308,-224,-308xm929,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1119},"\u0150":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm750,-1868r-199,283r-140,0r142,-283r197,0xm1120,-1868r-199,283r-140,0r142,-283r197,0","w":1380},"\u0151":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm620,-1568r-199,283r-140,0r142,-283r197,0xm990,-1568r-199,283r-140,0r142,-283r197,0","w":1099},"\u0154":{"d":"1054,-1060v0,182,-138,356,-287,386r425,674r-229,0r-391,-629v-45,0,-115,-3,-212,-10r0,639r-200,0r0,-1465r366,-15v352,0,528,140,528,420xm844,-1064v0,-229,-238,-247,-484,-221r0,476v48,7,95,10,140,10v226,-3,344,-50,344,-265xm744,-1918r-226,333r-140,0r169,-333r197,0","w":1192},"\u0155":{"d":"717,-888v-185,-134,-377,70,-377,274r0,614r-190,0r0,-1071r190,0r0,171v99,-171,233,-223,456,-173xm694,-1618r-226,333r-140,0r169,-333r197,0","w":796},"\u0158":{"d":"1054,-1060v0,182,-138,356,-287,386r425,674r-229,0r-391,-629v-45,0,-115,-3,-212,-10r0,639r-200,0r0,-1465r366,-15v352,0,528,140,528,420xm844,-1064v0,-229,-238,-247,-484,-221r0,476v48,7,95,10,140,10v226,-3,344,-50,344,-265xm920,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1192},"\u0159":{"d":"717,-888v-185,-134,-377,70,-377,274r0,614r-190,0r0,-1071r190,0r0,171v99,-171,233,-223,456,-173xm809,-1619r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":796},"\u015a":{"d":"904,-370v-2,238,-222,395,-487,395v-130,0,-241,-31,-333,-92r73,-184v61,47,190,94,289,96v146,3,266,-90,259,-227v-8,-164,-76,-198,-238,-276v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-222,184,-380,414,-380v162,0,275,26,338,79r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-270,157,-198,309v45,96,87,103,212,164v120,59,277,131,331,227v38,67,60,149,60,250xm760,-1918r-226,333r-140,0r169,-333r197,0","w":985},"\u015b":{"d":"764,-287v-1,205,-161,307,-381,307v-113,0,-219,-28,-318,-84r67,-180v106,69,191,104,256,104v117,0,176,-49,176,-148v0,-71,-57,-130,-170,-182v-141,-66,-181,-78,-256,-162v-41,-46,-65,-101,-66,-179v-1,-184,155,-282,347,-280v78,0,176,25,295,74r-54,176v-75,-60,-151,-90,-227,-90v-80,0,-160,41,-161,113v0,69,40,119,117,156v172,81,377,137,375,375xm654,-1618r-226,333r-140,0r169,-333r197,0","w":829},"\u021a":{"d":"548,349v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm684,-1285r0,1285r-200,0r0,-1285r-466,0r0,-180r1153,0r0,180r-487,0","w":1189},"\u021b":{"d":"430,349v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm505,20v-172,0,-302,-153,-302,-333r0,-608r-124,0r0,-150r124,0r0,-224r190,-73r0,297r294,0r0,150r-294,0r0,532v1,165,41,249,192,249v49,0,99,-12,151,-37r28,167v-79,20,-165,30,-259,30","w":812},"\u0164":{"d":"684,-1285r0,1285r-200,0r0,-1285r-466,0r0,-180r1153,0r0,180r-487,0xm949,-1919r-305,334r-107,0r-298,-338r172,0r178,192r163,-188r197,0","w":1189},"\u0165":{"d":"853,-1140v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm505,20v-172,0,-302,-153,-302,-333r0,-608r-124,0r0,-150r124,0r0,-224r190,-73r0,297r294,0r0,150r-294,0r0,532v1,165,41,249,192,249v49,0,99,-12,151,-37r28,167v-79,20,-165,30,-259,30","w":1016},"\u016e":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm466,-1695v0,-113,98,-209,212,-209v114,0,211,96,211,209v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210xm576,-1695v0,54,48,100,102,100v54,0,101,-46,101,-100v0,-54,-47,-99,-101,-99v-54,0,-102,45,-102,99","w":1328},"\u016f":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm376,-1495v0,-113,98,-209,212,-209v114,0,211,96,211,209v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210xm486,-1495v0,54,48,100,102,100v54,0,101,-46,101,-100v0,-54,-47,-99,-101,-99v-54,0,-102,45,-102,99","w":1119},"\u0170":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm720,-1868r-199,283r-140,0r142,-283r197,0xm1090,-1868r-199,283r-140,0r142,-283r197,0","w":1328},"\u0171":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm630,-1568r-199,283r-140,0r142,-283r197,0xm1000,-1568r-199,283r-140,0r142,-283r197,0","w":1119},"\u0179":{"d":"100,0r0,-50r630,-1235r-620,0r0,-180r895,0r0,50r-632,1235r654,0r0,180r-927,0xm703,-1918r-226,333r-140,0r169,-333r197,0","w":1127},"\u017a":{"d":"338,-170r594,0r0,170r-892,0r0,-50r609,-851r-599,0r0,-170r876,0r0,54xm673,-1618r-226,333r-140,0r169,-333r197,0","w":972},"\u017b":{"d":"100,0r0,-50r630,-1235r-620,0r0,-180r895,0r0,50r-632,1235r654,0r0,180r-927,0xm377,-1703v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1127},"\u017c":{"d":"338,-170r594,0r0,170r-892,0r0,-50r609,-851r-599,0r0,-170r876,0r0,54xm377,-1403v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":972},"\u00a4":{"d":"932,-246r-143,-144v-160,112,-345,112,-506,0r-143,144r-84,-88r143,-140v-109,-170,-110,-333,0,-503r-143,-140r84,-88r143,143v161,-111,346,-111,506,0r143,-143r85,88r-143,140v110,170,109,333,0,503r143,140xm535,-1025v-162,0,-299,137,-299,299v0,162,137,300,299,300v161,0,299,-139,299,-300v0,-162,-137,-299,-299,-299"},"\u037e":{"d":"204,-941v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151xm373,-277v74,0,146,82,142,160v-14,257,-101,330,-291,480r-51,-72v115,-94,172,-174,172,-240v0,-29,-10,-59,-30,-88v-57,-27,-86,-67,-86,-118v-1,-73,67,-122,144,-122","w":752},"\u0384":{"d":"731,-1618r-178,334r-158,0r111,-334r225,0","w":1073},"\u0385":{"d":"672,-1618r-117,354r-117,0r58,-354r176,0xm713,-1407v0,-62,48,-111,110,-111v63,0,117,49,117,111v0,61,-53,115,-115,115v-62,0,-112,-53,-112,-115xm246,-1518v64,0,111,54,114,111v3,62,-50,115,-112,115v-63,0,-115,-52,-115,-115v0,-62,51,-111,113,-111","w":1073},"\u0386":{"d":"981,0r-100,-309r-545,0r-109,309r-223,0r594,-1485r53,0r553,1485r-223,0xm616,-1102r-227,645r434,0xm373,-1464r-164,350r-154,0r101,-350r217,0","w":1208},"\u0387":{"d":"207,-653v0,-83,69,-152,149,-152v80,0,152,72,152,152v0,74,-69,151,-152,151v-80,0,-149,-70,-149,-151","w":754},"\u0388":{"d":"575,-1284r0,405r484,0r0,170r-484,0r0,529r664,0r0,180r-864,0r0,-1464r874,0r0,180r-674,0xm223,-1464r-164,350r-153,0r100,-350r217,0","w":1323},"\u0389":{"d":"1214,0r0,-709r-639,0r0,709r-200,0r0,-1464r200,0r0,585r639,0r0,-585r201,0r0,1464r-201,0xm223,-1464r-164,350r-153,0r100,-350r217,0","w":1565},"\u038a":{"d":"375,0r0,-1464r200,0r0,1464r-200,0xm223,-1464r-164,350r-153,0r100,-350r217,0","w":760},"\u038c":{"d":"772,25v-393,0,-590,-357,-590,-770v0,-293,116,-538,286,-656v86,-60,187,-90,304,-90v426,-2,631,306,631,746v0,447,-203,770,-631,770xm772,-156v305,0,420,-253,420,-589v0,-377,-140,-566,-420,-566v-121,0,-213,51,-280,149v-130,188,-127,630,-2,835v68,112,158,171,282,171xm223,-1464r-164,350r-153,0r100,-350r217,0","w":1483},"\u038e":{"d":"1004,-655r0,655r-199,0r0,-655r-473,-809r207,0r364,639r365,-639r207,0xm223,-1464r-164,350r-153,0r100,-350r217,0","w":1462},"\u038f":{"d":"811,-1499v394,0,620,297,614,700v-4,248,-121,488,-260,637v64,-7,158,-10,283,-10r0,172r-555,0r0,-51v103,-129,183,-253,238,-371v55,-118,83,-242,83,-371v0,-306,-124,-523,-405,-526v-265,-3,-401,238,-401,516v0,126,27,249,82,369v55,120,135,247,239,383r0,51r-555,0r0,-172v122,0,215,3,279,10v-171,-207,-256,-420,-256,-639v0,-380,240,-698,614,-698xm223,-1464r-164,350r-153,0r100,-350r217,0","w":1520},"\u0390":{"d":"483,18v-221,0,-331,-103,-331,-309r0,-780r192,0r0,756v0,109,46,167,139,174r0,159xm399,-1618r-118,354r-115,0r57,-354r176,0xm440,-1407v0,-62,49,-111,111,-111v62,0,115,49,115,111v0,61,-54,115,-115,115v-62,0,-111,-53,-111,-115xm-139,-1407v0,-61,51,-111,112,-111v62,0,113,49,113,111v0,62,-50,115,-113,115v-63,0,-112,-53,-112,-115","w":569},"\u0391":{"d":"981,0r-100,-309r-545,0r-109,309r-223,0r594,-1485r53,0r553,1485r-223,0xm616,-1102r-227,645r434,0","w":1208},"\u0392":{"d":"1079,-424v0,271,-227,424,-512,424r-417,0r0,-1464v166,-10,294,-15,385,-15v264,-1,451,112,454,363v1,134,-131,269,-244,291v223,49,334,183,334,401xm350,-1305r0,420v41,4,93,6,156,6v190,0,285,-77,285,-231v0,-135,-88,-203,-263,-203v-49,0,-109,3,-178,8xm868,-455v0,-204,-125,-278,-331,-279v-6,0,-68,2,-187,5r0,559v293,33,518,-4,518,-285","w":1159},"\u0393":{"d":"1004,-1284r-652,0r0,1284r-202,0r0,-1464r854,0r0,180","w":1044},"\u0395":{"d":"350,-1284r0,405r484,0r0,170r-484,0r0,529r664,0r0,180r-864,0r0,-1464r874,0r0,180r-674,0","w":1098},"\u0396":{"d":"100,0r0,-49r629,-1235r-618,0r0,-180r895,0r0,49r-633,1235r653,0r0,180r-926,0","w":1126},"\u0397":{"d":"989,0r0,-709r-639,0r0,709r-200,0r0,-1464r200,0r0,585r639,0r0,-585r201,0r0,1464r-201,0","w":1339},"\u0398":{"d":"705,25v-413,0,-630,-330,-625,-770v3,-286,114,-521,292,-645v182,-126,464,-131,663,-16v191,110,296,367,300,661v5,437,-229,770,-630,770xm707,-1315v-296,0,-420,246,-420,570v0,187,37,333,111,437v74,104,177,156,311,156v134,0,237,-48,310,-145v73,-97,109,-246,109,-448v0,-326,-125,-570,-421,-570xm997,-664r-579,0r0,-176r579,0r0,176","w":1415},"\u0399":{"d":"184,0r0,-1464r201,0r0,1464r-201,0","w":569},"\u039a":{"d":"958,0r-413,-674r-195,277r0,397r-200,0r0,-1464r200,0r0,796r545,-796r221,0r-436,635r500,829r-222,0","w":1180},"\u039b":{"d":"1192,0r-225,0r-359,-1071r-377,1071r-223,0r580,-1485r53,0","w":1200},"\u039c":{"d":"1253,0r-174,-940r-319,960r-51,0r-328,-960r-170,940r-191,0r275,-1464r90,0r348,1069r324,-1069r90,0r297,1464r-191,0","w":1452},"\u039d":{"d":"1098,20r-758,-1071r0,1051r-190,0r0,-1464r79,0r738,1011r0,-1011r190,0r0,1484r-59,0","w":1307},"\u039e":{"d":"1120,0r-1018,0r0,-170r412,0r0,-541r-299,0r0,-159r299,0r0,-426r-399,0r0,-168r993,0r0,168r-399,0r0,426r299,0r0,159r-299,0r0,541r411,0r0,170","w":1223},"\u039f":{"d":"670,25v-394,0,-590,-357,-590,-770v0,-393,213,-746,590,-746v425,0,630,306,630,746v0,447,-202,770,-630,770xm670,-156v305,0,420,-253,420,-589v0,-377,-140,-566,-420,-566v-121,0,-212,51,-280,149v-130,188,-127,638,0,838v69,109,159,168,280,168","w":1380},"\u03a0":{"d":"1151,0r-201,0r0,-1284r-600,0r0,1284r-200,0r0,-1464r1001,0r0,1464","w":1300},"\u03a1":{"d":"350,-563r0,563r-200,0r0,-1464v126,-7,217,-11,274,-11v426,0,639,142,639,426v0,329,-188,494,-565,494v-31,0,-81,-3,-148,-8xm350,-1284r0,541r133,10v249,0,373,-98,373,-293v0,-179,-132,-268,-397,-268v-35,0,-71,3,-109,10","w":1143},"\u03a3":{"d":"1040,-1284r-616,0r373,483r-441,621r676,0r0,180r-991,0r0,-49r522,-731r-483,-637r0,-47r960,0r0,180","w":1110},"\u03a4":{"d":"684,-1284r0,1284r-201,0r0,-1284r-465,0r0,-180r1153,0r0,180r-487,0","w":1190},"\u03a5":{"d":"709,-655r0,655r-199,0r0,-655r-473,-809r207,0r364,639r365,-639r207,0","w":1167},"\u03a6":{"d":"74,-737v0,-361,247,-628,606,-635r0,-152r199,0r0,152v351,9,606,263,606,618v0,360,-248,633,-606,639r0,152r-199,0r0,-152v-351,-9,-606,-267,-606,-622xm877,-270v262,-10,407,-204,407,-480v0,-267,-150,-459,-407,-467r0,947xm682,-1217v-263,10,-408,200,-408,476v0,267,151,463,408,471r0,-947","w":1561},"\u03a7":{"d":"915,0r-364,-588r-336,588r-203,0r432,-760r-397,-706r199,2r311,553r346,-553r201,0r-455,708r477,756r-211,0","w":1141},"\u03a8":{"d":"891,-514v222,-15,375,-165,375,-387r0,-563r198,0r0,557v-2,334,-244,529,-571,555r0,356r-199,0r0,-354v-334,-19,-575,-207,-575,-541r0,-573r198,0r0,555v1,228,154,382,379,395r0,-950r195,0r0,950","w":1583},"\u03aa":{"d":"184,0r0,-1464r201,0r0,1464r-201,0xm412,-1706v0,-62,48,-113,110,-113v62,0,115,52,115,113v0,63,-53,113,-115,113v-62,0,-110,-51,-110,-113xm-63,-1706v0,-61,51,-113,112,-113v62,0,113,52,113,113v0,63,-51,113,-113,113v-61,0,-112,-52,-112,-113","w":569},"\u03ab":{"d":"709,-655r0,655r-199,0r0,-655r-473,-809r207,0r364,639r365,-639r207,0xm733,-1706v0,-61,51,-113,113,-113v61,0,112,52,112,113v0,62,-50,113,-112,113v-62,0,-113,-52,-113,-113xm258,-1706v0,-63,51,-113,113,-113v61,0,114,52,114,113v0,61,-53,113,-114,113v-62,0,-113,-52,-113,-113","w":1167},"\u03ac":{"d":"1008,-279v0,111,24,158,104,183r0,114v-169,-2,-234,-26,-276,-145v-73,98,-173,147,-301,147v-293,-1,-455,-235,-455,-550v0,-314,192,-562,498,-562v99,0,189,37,268,111v52,-88,112,-110,254,-111r0,109v-71,29,-92,64,-92,164r0,540xm281,-532v0,225,109,391,309,391v87,0,162,-43,227,-129r0,-572v-63,-60,-132,-90,-207,-90v-218,-1,-329,171,-329,400xm825,-1618r-178,334r-158,0r111,-334r225,0","w":1192},"\u03ad":{"d":"287,-301v0,116,98,166,227,166v104,0,202,-38,293,-113r90,144v-125,83,-258,124,-401,124v-234,0,-412,-100,-412,-307v0,-121,77,-209,231,-266v-109,-25,-204,-106,-204,-223v0,-201,168,-316,391,-316v108,0,224,28,348,84r-70,154v-107,-55,-204,-82,-291,-82v-102,0,-181,52,-180,150v2,109,95,154,219,153v53,0,99,-1,138,-4r0,154v-36,-4,-87,-6,-154,-6v-132,-2,-225,65,-225,188xm743,-1618r-178,334r-157,0r110,-334r225,0","w":956},"\u03ae":{"d":"639,-1092v244,0,344,177,344,441r0,930r-188,47r0,-949v0,-206,-46,-309,-220,-309v-101,0,-199,77,-241,144r0,788r-191,0r0,-1071r129,0r60,133v76,-103,178,-154,307,-154xm834,-1618r-179,334r-157,0r110,-334r226,0","w":1126},"\u03af":{"d":"483,18v-221,0,-331,-103,-331,-309r0,-780r192,0r0,756v0,109,46,167,139,174r0,159xm489,-1618r-178,334r-157,0r110,-334r225,0","w":569},"\u03b0":{"d":"555,-135v185,0,243,-112,244,-311r0,-629r188,0r0,610v-1,331,-117,483,-432,483v-303,0,-420,-164,-420,-479r0,-614r191,0r0,624v0,211,76,316,229,316xm690,-1618r-119,354r-114,0r57,-354r176,0xm731,-1407v0,-62,49,-111,111,-111v62,0,114,49,114,111v0,61,-53,115,-114,115v-62,0,-111,-53,-111,-115xm152,-1407v0,-62,50,-111,112,-111v62,0,113,49,113,111v0,62,-52,115,-113,115v-63,0,-112,-53,-112,-115","w":1128},"\u03b1":{"d":"1008,-279v0,111,24,158,104,183r0,114v-169,-2,-234,-26,-276,-145v-73,98,-173,147,-301,147v-293,-1,-455,-235,-455,-550v0,-314,192,-562,498,-562v99,0,189,37,268,111v52,-88,112,-110,254,-111r0,109v-71,29,-92,64,-92,164r0,540xm281,-532v0,225,109,391,309,391v87,0,162,-43,227,-129r0,-572v-63,-60,-132,-90,-207,-90v-218,-1,-329,171,-329,400","w":1192},"\u03b2":{"d":"961,-1165v-2,155,-120,277,-250,317v214,39,358,175,362,408v5,262,-197,460,-459,460v-135,0,-238,-35,-309,-106r-69,104r-93,0r0,-1067v-2,-271,157,-467,426,-467v220,0,395,137,392,351xm565,-1364v-163,2,-237,128,-235,307r0,148r162,0v158,3,278,-100,278,-252v0,-120,-83,-205,-205,-203xm877,-434v-3,-214,-158,-333,-392,-328r-155,0r0,526v48,55,145,102,239,103v186,2,310,-117,308,-301","w":1155},"\u03b3":{"d":"1092,-1071r-428,1030r0,461r-195,0r0,-445v-71,-243,-135,-437,-193,-584v-58,-147,-102,-235,-133,-265v-31,-30,-69,-44,-114,-44r0,-161v164,1,233,29,297,127v100,154,186,459,254,702r309,-821r203,0","w":1112},"\u03b4":{"d":"74,-539v4,-294,152,-542,434,-542v35,0,67,3,98,10r-307,-385r0,-53r688,0r0,153r-399,0v30,23,102,99,208,233v174,218,238,296,246,588v9,316,-175,555,-485,555v-315,0,-487,-234,-483,-559xm557,-135v201,0,285,-187,285,-404v0,-159,-45,-289,-135,-389v-39,-12,-81,-18,-127,-18v-210,0,-308,184,-308,407v0,269,95,404,285,404","w":1133},"\u03b5":{"d":"287,-301v0,116,98,166,227,166v104,0,202,-38,293,-113r90,144v-125,83,-258,124,-401,124v-234,0,-412,-100,-412,-307v0,-121,77,-209,231,-266v-109,-25,-204,-106,-204,-223v0,-201,168,-316,391,-316v108,0,224,28,348,84r-70,154v-107,-55,-204,-82,-291,-82v-102,0,-181,52,-180,150v2,109,95,154,219,153v51,0,97,-1,138,-4r0,154v-36,-4,-87,-6,-154,-6v-132,-2,-225,65,-225,188","w":956},"\u03b6":{"d":"481,252v105,43,242,11,242,-107v0,-73,-54,-116,-113,-127v-30,-5,-76,-12,-139,-14v-241,-7,-397,-162,-397,-412v0,-136,40,-276,122,-422v82,-146,221,-321,418,-524r-397,0r0,-155r692,0r0,53v-214,229,-371,423,-473,582v-102,159,-153,306,-153,442v0,199,95,265,303,280v183,12,317,99,319,281v3,216,-228,337,-459,277","w":907},"\u03b7":{"d":"639,-1092v244,0,344,177,344,441r0,930r-188,47r0,-949v0,-206,-46,-309,-220,-309v-101,0,-199,77,-241,144r0,788r-191,0r0,-1071r129,0r60,133v76,-103,178,-154,307,-154","w":1126},"\u03b8":{"d":"561,-1516v145,0,253,69,341,198v162,238,157,905,2,1140v-85,129,-198,198,-351,198v-146,0,-255,-69,-342,-196v-162,-238,-156,-903,0,-1139v87,-131,199,-201,350,-201xm829,-854v-3,-145,-27,-265,-73,-362v-46,-97,-114,-146,-203,-146v-163,0,-253,169,-268,508r544,0xm831,-702r-548,0v9,379,101,569,278,569v175,0,265,-190,270,-569","w":1114},"\u03b9":{"d":"483,18v-221,0,-331,-103,-331,-309r0,-780r192,0r0,756v0,109,46,167,139,174r0,159","w":569},"\u03ba":{"d":"1075,0r-248,0r-331,-485r-160,178r0,307r-191,0r0,-1071r191,0r0,530r442,-530r242,0r-399,450","w":1116},"\u03bb":{"d":"1063,0r-211,0r-272,-868r-342,868r-211,0r465,-1090v-27,-93,-51,-162,-77,-204v-52,-84,-153,-77,-255,-27r-51,-160v160,-52,342,-54,431,47v48,55,88,131,119,226","w":1085},"\u03bd":{"d":"999,-1071r-469,1091r-49,0r-461,-1091r213,0r281,737r281,-737r204,0","w":1020},"\u03be":{"d":"336,-1149v2,169,144,248,330,246r143,0r0,155r-174,0v-175,-1,-360,147,-350,340v10,195,99,245,317,258v186,12,322,96,324,279v2,172,-155,291,-334,291v-52,0,-98,-5,-137,-14r34,-154v106,40,254,17,254,-107v0,-128,-126,-140,-254,-141v-239,-4,-413,-147,-411,-387v2,-226,143,-373,325,-436v-152,-25,-267,-142,-268,-311v-2,-242,197,-386,447,-386v106,0,208,20,305,60r-62,160v-75,-43,-159,-64,-252,-64v-141,-1,-238,74,-237,211","w":942},"\u03bf":{"d":"74,-539v0,-310,187,-553,485,-553v316,0,483,228,483,553v0,329,-177,558,-483,559v-315,1,-485,-232,-485,-559xm559,-936v-195,0,-287,182,-287,397v0,269,96,404,287,404v196,0,283,-189,283,-404v0,-265,-94,-397,-283,-397","w":1116},"\u03c1":{"d":"1087,-537v0,314,-178,557,-483,557v-120,0,-215,-28,-285,-83r0,483r-190,0r0,-877v0,-219,43,-379,128,-481v85,-102,200,-154,343,-154v312,0,487,236,487,555xm600,-936v-195,0,-276,204,-276,422r0,297v64,52,143,78,237,78v223,-1,326,-153,326,-389v0,-226,-89,-408,-287,-408","w":1169},"\u03c2":{"d":"74,-524v-3,-337,211,-571,540,-568v113,0,212,30,295,91r-84,137v-67,-45,-141,-68,-221,-68v-217,0,-332,176,-332,408v0,189,114,305,342,352v191,40,315,100,320,301v5,216,-227,337,-457,277r33,-154v105,41,250,14,242,-107v-8,-121,-70,-140,-215,-159v-277,-37,-460,-212,-463,-510","w":940},"\u03c3":{"d":"74,-510v0,-327,211,-561,532,-561r516,0r0,158r-319,0v129,96,242,239,246,430v6,285,-194,503,-486,503v-304,0,-489,-222,-489,-530xm571,-135v185,1,279,-156,277,-346v-2,-184,-118,-348,-238,-432v-224,-1,-338,158,-338,391v0,215,97,386,299,387","w":1167},"\u03c4":{"d":"580,18v-179,0,-273,-109,-273,-292r0,-637r-270,0r0,-160r825,0r0,160r-364,0r0,608v1,100,25,158,118,160v31,0,66,-8,107,-25r25,160v-57,17,-113,26,-168,26","w":905},"\u03c5":{"d":"559,-135v185,0,242,-110,242,-309r0,-627r190,0r0,604v0,323,-146,485,-438,485v-297,0,-416,-172,-416,-483r0,-606r191,0r0,622v0,209,77,314,231,314","w":1128},"\u03c6":{"d":"627,18v-335,-12,-551,-210,-551,-542v0,-264,132,-466,313,-570r103,131v-149,105,-224,254,-224,447v0,219,152,371,361,385r0,-565v-3,-244,96,-394,313,-398v268,-4,427,261,424,545v-4,332,-221,549,-549,567r0,402r-190,0r0,-402xm815,-129v217,-16,362,-167,361,-397v0,-117,-22,-216,-66,-296v-44,-80,-100,-120,-168,-120v-85,0,-127,71,-127,213r0,600","w":1446},"\u03c7":{"d":"1022,0r-236,0r-274,-410r-266,410r-226,0r398,-549r-365,-522r223,0r240,377r254,-377r215,0r-377,514","w":1042},"\u03c8":{"d":"834,-129v211,-20,321,-163,321,-393r0,-549r186,0r0,534v0,338,-183,532,-505,555r0,402r-191,0r0,-402v-341,-23,-512,-205,-512,-546r0,-543r191,0r0,547v0,226,114,374,323,393r0,-940r187,0r0,942","w":1475},"\u03c9":{"d":"866,-330v48,121,81,195,217,195v133,0,199,-114,199,-342v0,-199,-79,-367,-238,-504r134,-119v199,165,299,370,299,615v0,293,-131,504,-408,505v-132,0,-229,-65,-291,-196v-67,131,-165,196,-293,196v-271,0,-405,-207,-405,-493v0,-252,101,-461,303,-627r127,117v-133,108,-233,285,-236,502v-2,192,59,346,224,346v81,0,111,-35,152,-97v24,-38,36,-64,36,-75r0,-199v0,-107,-3,-196,-8,-268r196,0v-10,104,-8,307,-8,444","w":1556},"\u03ca":{"d":"483,18v-221,0,-331,-103,-331,-309r0,-780r192,0r0,756v0,109,46,167,139,174r0,159xm377,-1407v0,-61,51,-111,112,-111v62,0,113,49,113,111v0,63,-49,115,-113,115v-62,0,-112,-53,-112,-115xm-96,-1407v0,-61,51,-111,112,-111v62,0,111,49,111,111v0,62,-48,115,-111,115v-63,0,-112,-53,-112,-115","w":569},"\u03cb":{"d":"555,-135v185,0,243,-112,244,-311r0,-629r188,0r0,610v-1,331,-117,483,-432,483v-303,0,-420,-164,-420,-479r0,-614r191,0r0,624v0,211,76,316,229,316xm686,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-49,115,-112,115v-61,0,-113,-53,-113,-115xm213,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-50,115,-112,115v-63,0,-113,-53,-113,-115","w":1128},"\u03cc":{"d":"74,-539v0,-310,187,-553,485,-553v316,0,483,228,483,553v0,329,-177,558,-483,559v-315,1,-485,-232,-485,-559xm559,-936v-195,0,-287,182,-287,397v0,269,96,404,287,404v196,0,283,-189,283,-404v0,-265,-94,-397,-283,-397xm799,-1618r-178,334r-158,0r117,-334r219,0","w":1116},"\u03cd":{"d":"559,-135v185,0,242,-110,242,-309r0,-627r190,0r0,604v0,323,-146,485,-438,485v-297,0,-416,-172,-416,-483r0,-606r191,0r0,622v0,209,77,314,231,314xm809,-1618r-178,334r-162,0r102,-334r238,0","w":1128},"\u03ce":{"d":"866,-330v48,121,81,195,217,195v133,0,199,-114,199,-342v0,-198,-79,-366,-238,-504r134,-119v170,140,295,340,299,615v4,294,-130,504,-408,505v-132,0,-229,-65,-291,-196v-67,131,-165,196,-293,196v-271,0,-405,-207,-405,-493v0,-252,101,-461,303,-627r127,117v-133,108,-233,285,-236,502v-2,192,59,346,224,346v82,0,112,-33,152,-97v24,-39,36,-64,36,-75r0,-199v0,-107,-3,-196,-8,-268r196,0v-10,104,-8,307,-8,444xm1032,-1618r-178,334r-158,0r111,-334r225,0","w":1556},"\u0401":{"d":"350,-1284r0,405r484,0r0,170r-484,0r0,529r664,0r0,180r-864,0r0,-1464r874,0r0,180r-674,0xm686,-1700v0,-66,56,-111,113,-112v59,-1,112,50,112,112v0,61,-51,113,-112,113v-63,0,-113,-54,-113,-113xm287,-1700v0,-60,52,-112,112,-112v61,0,113,51,113,112v0,61,-50,113,-113,113v-62,0,-112,-54,-112,-113","w":1112},"\u0402":{"d":"907,-899v315,-2,514,152,514,463v0,311,-210,487,-536,438r0,-166v45,5,80,8,106,8v156,-2,223,-122,223,-297v0,-185,-116,-283,-305,-282v-85,0,-167,8,-247,24r0,711r-199,0r0,-1288r-406,0r0,-176r1078,0r0,176r-473,0r0,414v77,-17,158,-25,245,-25","w":1493},"\u0403":{"d":"1004,-1284r-652,0r0,1284r-202,0r0,-1464r854,0r0,180xm868,-1919r-225,334r-139,0r168,-334r196,0","w":1065},"\u0404":{"d":"283,-694v8,298,152,544,434,544v134,0,240,-50,317,-149r111,152v-115,115,-265,172,-449,172v-402,0,-616,-336,-616,-752v0,-408,242,-764,647,-764v130,0,249,27,358,80r-67,170v-181,-103,-449,-111,-583,45v-71,83,-121,194,-142,340r545,0r0,162r-555,0","w":1198},"\u0405":{"d":"907,-371v5,247,-232,396,-485,396v-130,0,-241,-31,-334,-93r74,-184v64,50,186,95,289,96v143,2,258,-87,258,-227v0,-109,-60,-174,-127,-216v-79,-49,-257,-121,-330,-171v-94,-66,-168,-172,-168,-340v0,-229,187,-381,414,-381v161,0,273,27,338,80r-60,174v-53,-42,-184,-83,-272,-84v-127,-2,-224,83,-219,209v7,179,123,216,262,278v206,92,355,177,360,463","w":993},"\u0406":{"d":"184,0r0,-1464r201,0r0,1464r-201,0","w":569},"\u0407":{"d":"184,0r0,-1464r201,0r0,1464r-201,0xm371,-1702v0,-58,52,-110,112,-110v60,0,113,49,113,110v0,59,-50,115,-113,115v-58,0,-112,-54,-112,-115xm-29,-1702v0,-59,52,-110,115,-110v60,0,111,50,111,110v0,61,-54,115,-111,115v-60,0,-115,-54,-115,-115","w":569},"\u0408":{"d":"821,-547v-3,392,-89,559,-440,567v-192,4,-328,-127,-336,-313r174,0v17,89,70,133,160,133v95,0,159,-20,193,-62v34,-42,51,-148,51,-317r0,-925r198,0r0,917","w":961},"\u0409":{"d":"1905,-465v0,291,-222,465,-516,465r-388,0r0,-1288r-270,0v-45,251,-97,475,-155,670v-58,195,-114,336,-172,421v-100,147,-169,202,-373,209r0,-182v53,0,100,-14,139,-44v39,-30,86,-100,136,-211v134,-298,193,-626,282,-1039r610,0r0,555v397,-56,707,79,707,444xm1704,-469v0,-196,-139,-288,-344,-287v-49,0,-104,4,-164,11r0,575v55,7,105,10,152,10v237,0,356,-103,356,-309","w":1989},"\u040a":{"d":"1786,-465v0,291,-221,465,-516,465r-387,0r0,-709r-537,0r0,709r-196,0r0,-1464r196,0r0,585r537,0r0,-585r196,0r0,555v397,-56,707,79,707,444xm1585,-469v-1,-195,-137,-289,-344,-287v-49,0,-104,4,-164,11r0,575v55,7,105,10,152,10v237,0,356,-103,356,-309","w":1870},"\u040b":{"d":"889,-899v303,-2,505,151,504,444r0,455r-203,0r0,-457v0,-185,-111,-279,-299,-278v-68,0,-144,8,-229,24r0,711r-199,0r0,-1288r-406,0r0,-176r1073,0r0,176r-468,0r0,414v79,-17,154,-25,227,-25","w":1520},"\u040c":{"d":"1161,6v-10,3,-35,4,-74,4v-195,0,-234,-100,-268,-286v-49,-269,-171,-410,-469,-412r0,688r-200,0r0,-1464r200,0r0,606v262,6,421,-115,461,-338v31,-175,73,-272,258,-277v26,0,49,2,70,5r0,172v-28,-4,-87,-3,-99,24v-14,17,-27,54,-39,113v-37,189,-168,336,-348,385v201,70,322,220,367,450v22,113,31,167,141,152r0,178xm907,-1919r-225,334r-139,0r168,-334r196,0","w":1253},"\u040e":{"d":"1169,-1464v-86,325,-186,606,-301,840v-115,234,-228,398,-340,494v-112,96,-243,144,-395,144r0,-194v161,0,289,-77,383,-230r-502,-1054r228,0r397,893v137,-278,241,-576,313,-893r217,0xm973,-1888v-45,205,-164,307,-359,307v-194,0,-313,-102,-358,-307r170,-39v25,137,87,205,188,205v113,0,179,-68,197,-203","w":1182},"\u040f":{"d":"1151,0r-408,0r0,420r-186,0r0,-420r-407,0r0,-1464r200,0r0,1286r600,0r0,-1286r201,0r0,1464","w":1300},"\u0410":{"d":"985,0r-100,-309r-545,0r-109,309r-223,0r594,-1485r53,0r553,1485r-223,0xm621,-1102r-228,645r434,0","w":1217},"\u0411":{"d":"1081,-453v2,291,-222,453,-520,453r-411,0r0,-1464r829,0r0,174r-629,0r0,405v75,-7,138,-10,191,-10v322,-2,538,138,540,442xm350,-170v91,7,147,10,168,10v235,0,352,-100,352,-299v0,-183,-114,-274,-342,-274v-59,0,-119,3,-178,10r0,553","w":1165},"\u0412":{"d":"1079,-424v0,271,-227,424,-512,424r-417,0r0,-1464v166,-10,294,-15,385,-15v264,-1,451,112,454,363v1,134,-131,269,-244,291v223,49,334,183,334,401xm350,-1305r0,420v41,4,93,6,156,6v190,0,285,-77,285,-231v0,-135,-88,-203,-263,-203v-49,0,-109,3,-178,8xm868,-455v0,-204,-125,-278,-331,-279v-6,0,-68,2,-187,5r0,559v293,33,518,-4,518,-285","w":1163},"\u0413":{"d":"1004,-1284r-652,0r0,1284r-202,0r0,-1464r854,0r0,180","w":1065},"\u0414":{"d":"115,-168v287,-385,391,-719,510,-1296r589,0r0,1296r156,0r0,588r-182,0r0,-420r-977,0r0,420r-182,0r0,-588r86,0xm1022,-168r0,-1128r-260,0v-89,469,-235,845,-440,1128r700,0","w":1415},"\u0415":{"d":"350,-1284r0,405r484,0r0,170r-484,0r0,529r664,0r0,180r-864,0r0,-1464r874,0r0,180r-674,0","w":1112},"\u0416":{"d":"1741,6v-11,3,-33,4,-68,4v-193,0,-227,-102,-260,-289v-47,-262,-128,-404,-395,-413r0,692r-197,0r0,-692v-274,7,-367,148,-409,413v-32,204,-97,310,-324,285r0,-178v52,10,89,4,109,-39v14,-29,25,-66,32,-113v40,-232,141,-367,330,-446v-175,-45,-277,-176,-315,-389v-13,-74,-17,-139,-94,-139v-24,0,-39,1,-44,2r0,-172v100,-15,197,5,244,62v37,45,66,115,82,212v38,224,140,335,389,338r0,-608r197,0r0,608v240,-2,349,-120,383,-338v31,-196,101,-302,321,-274r0,172v-28,-4,-84,-5,-98,23v-14,17,-28,55,-39,114v-34,187,-150,335,-319,385v196,83,297,210,338,450v14,87,31,179,137,152r0,178","w":1829},"\u0417":{"d":"944,-1112v-1,154,-123,283,-256,321v176,45,301,162,303,363v3,291,-228,453,-534,453v-170,0,-305,-32,-404,-97r74,-182v104,71,219,107,346,107v181,0,315,-102,315,-273v0,-195,-155,-292,-362,-289v-34,0,-76,1,-125,4r0,-167v53,3,100,4,143,4v173,2,308,-84,308,-246v1,-140,-117,-213,-263,-213v-101,0,-208,31,-321,92r-62,-166v121,-60,253,-90,394,-90v263,0,446,126,444,379","w":1075},"\u0418":{"d":"1227,0r-201,0r0,-1051r-823,1071r-53,0r0,-1484r200,0r0,1050r824,-1071r53,0r0,1485","w":1376},"\u0419":{"d":"1227,0r-201,0r0,-1051r-823,1071r-53,0r0,-1484r200,0r0,1050r824,-1071r53,0r0,1485xm1085,-1888v-45,205,-164,307,-358,307v-194,0,-313,-102,-358,-307r170,-39v25,137,87,205,188,205v113,0,178,-68,197,-203","w":1376},"\u041a":{"d":"1161,6v-10,3,-35,4,-74,4v-195,0,-234,-100,-268,-286v-49,-269,-171,-410,-469,-412r0,688r-200,0r0,-1464r200,0r0,606v262,6,421,-115,461,-338v31,-175,73,-272,258,-277v26,0,49,2,70,5r0,172v-28,-4,-87,-3,-99,24v-14,17,-27,54,-39,113v-37,189,-168,336,-348,385v201,70,322,220,367,450v22,113,31,167,141,152r0,178","w":1253},"\u041b":{"d":"1227,0r-201,0r0,-1288r-324,0v-48,457,-128,927,-346,1182v-81,94,-160,118,-325,120r0,-188v121,-4,165,-35,223,-124v176,-271,247,-736,295,-1166r678,0r0,1464","w":1376},"\u041c":{"d":"1282,0r-176,-946r-324,966r-51,0r-319,-966r-172,946r-191,0r285,-1464r88,0r340,1067r338,-1067r86,0r287,1464r-191,0","w":1522},"\u041d":{"d":"989,0r0,-709r-639,0r0,709r-200,0r0,-1464r200,0r0,585r639,0r0,-585r201,0r0,1464r-201,0","w":1339},"\u041e":{"d":"670,25v-394,0,-590,-357,-590,-770v0,-393,213,-746,590,-746v425,0,630,306,630,746v0,447,-202,770,-630,770xm670,-156v305,0,420,-253,420,-589v0,-377,-140,-566,-420,-566v-121,0,-212,51,-280,149v-130,188,-127,638,0,838v69,109,159,168,280,168","w":1380},"\u041f":{"d":"1151,0r-201,0r0,-1284r-600,0r0,1284r-200,0r0,-1464r1001,0r0,1464","w":1300},"\u0420":{"d":"350,-563r0,563r-200,0r0,-1464v126,-7,217,-11,274,-11v426,0,639,142,639,426v0,329,-188,494,-565,494v-31,0,-81,-3,-148,-8xm350,-1284r0,541r133,10v249,0,373,-98,373,-293v0,-179,-132,-268,-397,-268v-35,0,-71,3,-109,10","w":1143},"\u0421":{"d":"80,-727v0,-400,241,-764,631,-764v157,0,281,27,374,80r-67,172v-63,-48,-164,-72,-301,-72v-285,0,-426,293,-426,594v0,292,148,561,428,561v136,0,241,-48,315,-145r111,154v-117,115,-266,172,-449,172v-402,0,-616,-336,-616,-752","w":1206},"\u0422":{"d":"723,-1284r0,1284r-201,0r0,-1284r-465,0r0,-180r1153,0r0,180r-487,0","w":1268},"\u0423":{"d":"1169,-1464v-86,325,-186,606,-301,840v-115,234,-228,398,-340,494v-112,96,-243,144,-395,144r0,-194v161,0,289,-77,383,-230r-502,-1054r228,0r397,893v137,-278,241,-576,313,-893r217,0","w":1182},"\u0424":{"d":"74,-733v0,-334,246,-587,583,-592r0,-170r197,0r0,170v330,8,584,241,584,571v0,335,-247,591,-584,596r0,178r-197,0r0,-178v-330,-7,-583,-245,-583,-575xm852,-311v242,-6,391,-188,391,-437v0,-238,-154,-420,-391,-423r0,860xm659,-1171v-242,5,-391,185,-391,432v0,239,154,423,391,428r0,-860","w":1511},"\u0425":{"d":"924,0r-365,-588r-336,588r-203,0r433,-760r-398,-706r199,2r311,553r346,-553r201,0r-455,708r478,756r-211,0","w":1155},"\u0426":{"d":"1288,420r-182,0r0,-420r-956,0r0,-1464r200,0r0,1286r578,0r0,-1286r200,0r0,1286r160,0r0,598","w":1333},"\u0427":{"d":"322,-1047v-1,206,99,324,299,324v83,0,168,-11,253,-33r0,-708r199,0r0,1464r-199,0r0,-590v-95,22,-184,33,-268,33v-303,2,-487,-167,-487,-467r0,-440r203,0r0,417","w":1223},"\u0428":{"d":"1681,0r-1531,0r0,-1464r192,0r0,1294r477,0r0,-1294r193,0r0,1294r477,0r0,-1294r192,0r0,1464","w":1831},"\u0429":{"d":"1839,420r-180,0r0,-420r-1509,0r0,-1464r192,0r0,1294r477,0r0,-1294r193,0r0,1294r477,0r0,-1294r192,0r0,1294r158,0r0,590","w":1884},"\u042a":{"d":"1432,-465v2,293,-223,465,-521,465r-413,0r0,-1286r-441,0r0,-178r641,0r0,557v75,-7,140,-11,195,-11v322,-2,537,146,539,453xm1221,-469v-1,-197,-134,-286,-340,-285v-62,0,-123,4,-183,11r0,573v92,7,149,10,170,10v235,0,353,-103,353,-309","w":1516},"\u042b":{"d":"1452,0r-197,0r0,-1464r197,0r0,1464xm1069,-465v2,291,-221,465,-516,465r-403,0r0,-1464r196,0r0,555v73,-7,135,-11,186,-11v320,-3,535,149,537,455xm868,-469v-1,-196,-137,-291,-344,-289v-61,0,-121,3,-180,10r0,580v59,7,115,10,168,10v237,0,356,-104,356,-311","w":1602},"\u042c":{"d":"1096,-465v2,293,-223,465,-521,465r-425,0r0,-1464r200,0r0,557v75,-7,144,-11,207,-11v322,-2,537,146,539,453xm885,-469v-1,-196,-134,-287,-340,-285v-69,0,-134,4,-195,11r0,573v56,7,117,10,182,10v235,0,353,-103,353,-309","w":1180},"\u042d":{"d":"913,-856v-19,-248,-172,-461,-419,-461v-110,0,-211,31,-304,92r-84,-168v115,-65,245,-98,392,-98v403,0,624,332,624,750v0,420,-224,766,-635,766v-173,0,-318,-46,-434,-138r88,-176v99,93,207,139,326,139v297,0,443,-234,453,-544r-558,0r0,-162r551,0","w":1202},"\u042e":{"d":"1143,-1491v403,-1,588,324,588,746v0,307,-101,551,-274,677v-85,62,-192,93,-320,93v-169,0,-303,-66,-401,-197v-98,-131,-151,-311,-156,-539r-236,0r0,711r-194,0r0,-1464r194,0r0,585r244,0v23,-189,84,-337,182,-447v98,-110,222,-165,373,-165xm1141,-150v127,0,218,-54,287,-153v124,-179,129,-691,0,-868v-69,-95,-162,-146,-289,-146v-117,0,-203,54,-267,157v-123,197,-118,667,6,853v68,103,153,157,263,157","w":1810},"\u042f":{"d":"147,-1049v0,-292,229,-432,562,-432v97,0,219,6,366,19r0,1462r-198,0r0,-635v-154,-10,-288,12,-368,85v-65,59,-113,156,-136,294v-35,203,-94,281,-314,262r0,-178v95,15,103,-36,123,-133v40,-198,138,-328,297,-387v-128,-34,-215,-81,-262,-141v-47,-60,-70,-132,-70,-216xm664,-1307v-198,0,-312,82,-312,240v0,176,122,265,367,268r158,2r0,-497v-71,-9,-142,-13,-213,-13","w":1225},"\u0430":{"d":"985,18v-151,1,-220,-39,-256,-141v-77,95,-193,143,-348,143v-168,0,-314,-147,-311,-319v4,-277,340,-454,643,-363v0,-173,-78,-260,-234,-260v-117,0,-208,32,-274,97r-80,-158v60,-53,219,-111,334,-109v308,4,442,130,442,445r0,383v0,94,28,157,84,188r0,94xm586,-547v-169,-6,-326,103,-326,250v0,112,66,168,197,168v94,0,179,-46,256,-137r0,-260v-68,-14,-110,-21,-127,-21","w":1051},"\u0431":{"d":"575,20v-333,-2,-500,-276,-497,-632v3,-353,78,-615,300,-741v151,-86,409,-125,609,-175r41,176v-249,54,-402,89,-460,104v-124,35,-227,99,-278,216v-27,63,-49,149,-61,260v77,-133,201,-235,385,-238v283,-4,449,202,449,492v0,310,-183,540,-488,538xm281,-498v0,200,111,362,303,361v190,-1,276,-159,276,-361v0,-212,-80,-352,-274,-356v-183,-4,-305,170,-305,356","w":1128},"\u0432":{"d":"934,-793v0,107,-74,186,-160,218v137,44,205,134,205,270v0,202,-171,305,-408,305r-436,0r0,-1069v151,-8,290,-12,418,-12v221,-1,381,83,381,288xm748,-791v-1,-98,-76,-145,-181,-145v-110,0,-194,3,-252,8r0,293v11,1,87,2,230,2v135,0,203,-53,203,-158xm788,-319v0,-126,-102,-176,-243,-175v-102,0,-179,2,-230,5r0,337v75,5,153,7,234,7v159,0,239,-58,239,-174","w":1057},"\u0433":{"d":"825,-911r-499,0r0,911r-191,0r0,-1071r690,0r0,160","w":887},"\u0434":{"d":"123,-152v153,-173,257,-471,258,-780r0,-139r633,0r0,919r121,0r0,502r-168,0r0,-350r-758,0r0,350r-168,0r0,-502r82,0xm539,-920v0,295,-93,599,-232,768r524,0r0,-768r-292,0","w":1184},"\u0435":{"d":"567,-1092v326,0,548,241,469,576r-772,0v0,160,57,269,156,330v135,83,347,53,454,-50r78,154v-102,80,-208,101,-387,102v-296,3,-499,-235,-499,-542v0,-313,213,-570,501,-570xm862,-655v2,-164,-119,-277,-287,-277v-163,0,-296,129,-305,277r592,0","w":1120},"\u0436":{"d":"1427,6v-152,21,-250,-34,-270,-182v-28,-204,-97,-306,-307,-311r0,487r-180,0r0,-487v-222,5,-289,98,-320,311v-21,147,-115,204,-268,182r0,-166v52,11,95,1,104,-55v32,-190,124,-306,267,-350v-151,-39,-224,-124,-256,-291v-7,-39,-26,-59,-56,-59v-27,0,-42,1,-45,2r0,-164v149,-21,241,33,266,178v32,184,104,254,308,258r0,-430r180,0r0,430v195,-2,271,-82,301,-256v25,-146,113,-202,262,-180r0,164v-3,-1,-19,-2,-47,-2v-29,0,-47,20,-55,61v-29,152,-111,248,-246,289v156,59,229,160,260,352v9,55,54,64,102,53r0,166","w":1509},"\u0437":{"d":"459,-1092v197,0,372,115,372,306v0,110,-56,186,-169,227v133,49,200,136,200,262v-2,215,-185,317,-418,317v-142,0,-273,-40,-393,-120r96,-152v85,78,187,117,306,117v117,0,211,-56,211,-162v0,-128,-80,-192,-240,-192v-45,0,-85,2,-119,6r0,-152v12,1,54,2,125,2v115,1,207,-43,207,-145v0,-105,-77,-158,-188,-158v-90,0,-184,27,-281,82r-70,-154v123,-56,243,-84,361,-84","w":930},"\u0438":{"d":"1036,0r-190,0r0,-733r-668,762r-43,0r0,-1100r191,0r0,733r667,-762r43,0r0,1100","w":1171},"\u0439":{"d":"1036,0r-190,0r0,-733r-668,762r-43,0r0,-1100r191,0r0,733r667,-762r43,0r0,1100xm963,-1589v-45,205,-164,307,-359,307v-194,0,-313,-102,-358,-307r170,-39v25,137,87,205,188,205v113,0,178,-68,197,-203","w":1171},"\u043a":{"d":"979,6v-157,22,-266,-35,-285,-184v-27,-210,-134,-312,-368,-309r0,487r-191,0r0,-1071r191,0r0,428v214,6,327,-71,358,-252v25,-147,121,-204,277,-182r0,164v-9,-1,-25,-2,-50,-2v-30,0,-49,20,-57,61v-30,149,-119,246,-266,289v154,53,248,170,284,352v8,38,27,57,56,57v26,0,43,-1,51,-4r0,166","w":1057},"\u043b":{"d":"1024,0r-190,0r0,-920r-287,0v-5,281,-58,558,-157,734v-82,145,-157,192,-349,198r0,-174v119,0,203,-93,253,-278v59,-224,80,-399,75,-631r655,0r0,1071","w":1153},"\u043c":{"d":"1155,0r-113,-645r-323,663r-51,0r-322,-653r-110,635r-183,0r205,-1090r51,0r396,799r391,-799r49,0r201,1090r-191,0","w":1397},"\u043d":{"d":"1010,0r-191,0r0,-483r-493,0r0,483r-191,0r0,-1071r191,0r0,430r493,0r0,-430r191,0r0,1071","w":1145},"\u043e":{"d":"66,-539v0,-310,187,-553,485,-553v316,0,483,228,483,553v0,327,-176,558,-483,559v-316,1,-485,-232,-485,-559xm551,-936v-196,0,-287,182,-287,397v0,269,96,404,287,404v196,0,283,-189,283,-404v0,-265,-94,-397,-283,-397","w":1100},"\u043f":{"d":"983,0r-190,0r0,-911r-467,0r0,911r-191,0r0,-1071r848,0r0,1071","w":1118},"\u0440":{"d":"569,20v-76,0,-215,-36,-243,-79r0,479r-191,0r0,-1491r191,0r0,88v72,-73,159,-109,260,-109v320,2,481,219,481,560v0,320,-176,552,-498,552xm514,-932v-57,0,-161,58,-188,92r0,625v27,38,121,76,188,76v236,0,354,-134,354,-402v0,-267,-98,-388,-354,-391","w":1141},"\u0441":{"d":"68,-524v0,-343,216,-568,555,-568v107,0,268,61,321,109r-92,133v-45,-41,-158,-82,-248,-82v-219,0,-338,176,-338,408v0,235,121,386,352,385v85,0,172,-34,259,-101r73,160v-99,67,-226,100,-379,100v-298,2,-503,-230,-503,-544","w":1018},"\u0442":{"d":"866,-911r-307,0r0,911r-190,0r0,-911r-308,0r0,-160r805,0r0,160","w":928},"\u0443":{"d":"129,244v134,4,287,-73,289,-191v0,-63,-10,-121,-31,-174r-371,-956r195,0r313,827r285,-827r192,0r-452,1253v-46,134,-233,242,-420,238r0,-170","w":1018},"\u0444":{"d":"76,-528v0,-316,161,-566,465,-564v53,0,108,17,166,52r0,-469r184,0r0,467v55,-33,107,-50,158,-50v316,0,467,224,467,555v0,320,-159,557,-443,557v-61,0,-122,-15,-182,-45r0,445r-184,0r0,-445v-61,30,-122,45,-183,45v-298,2,-448,-238,-448,-548xm1327,-541v0,-223,-98,-396,-301,-399v-41,0,-86,10,-135,29r0,745v48,23,92,35,133,35v202,0,303,-137,303,-410xm264,-541v1,235,87,411,316,410v37,0,80,-10,127,-29r0,-743v-57,-25,-107,-37,-150,-37v-207,3,-294,171,-293,399","w":1591},"\u0445":{"d":"1022,0r-236,0r-274,-410r-266,410r-226,0r398,-549r-365,-522r223,0r240,377r254,-377r215,0r-377,514","w":1042},"\u0446":{"d":"1079,346r-172,0r0,-346r-772,0r0,-1071r191,0r0,913r438,0r0,-913r190,0r0,913r125,0r0,504","w":1128},"\u0447":{"d":"299,-786v-1,156,81,243,236,243v77,0,153,-8,229,-24r0,-504r188,0r0,1071r-190,0r0,-420v-87,22,-179,33,-277,33v-240,0,-376,-146,-376,-395r0,-289r190,0r0,285","w":1087},"\u0448":{"d":"1417,0r-1282,0r0,-1071r180,0r0,917r371,0r0,-917r180,0r0,917r371,0r0,-917r180,0r0,1071","w":1552},"\u0449":{"d":"1532,350r-168,0r0,-350r-1229,0r0,-1071r180,0r0,917r367,0r0,-917r178,0r0,917r367,0r0,-917r180,0r0,917r125,0r0,504","w":1581},"\u044a":{"d":"1178,-338v0,211,-173,338,-426,338r-383,0r0,-915r-312,0r0,-156r498,0r0,395v83,-9,150,-14,203,-14v258,-1,420,107,420,352xm987,-342v0,-137,-98,-200,-242,-199v-41,0,-104,5,-190,15r0,370v47,4,114,6,201,6v135,1,231,-62,231,-192","w":1247},"\u044b":{"d":"1268,0r-187,0r0,-1071r187,0r0,1071xm926,-338v0,222,-176,338,-426,338r-365,0r0,-1071r187,0r0,393v55,-8,115,-12,182,-12v259,-1,422,106,422,352xm737,-342v-3,-203,-201,-223,-415,-188r0,376v45,5,106,7,182,7v133,1,235,-66,233,-195","w":1403},"\u044c":{"d":"967,-338v0,211,-173,338,-426,338r-406,0r0,-1071r189,0r0,397v91,-11,166,-16,223,-16v258,-1,420,107,420,352xm549,-150v134,1,227,-63,227,-192v0,-133,-79,-199,-237,-199v-55,0,-126,6,-215,17r0,368v47,4,122,6,225,6","w":1036},"\u044d":{"d":"756,-629v-25,-184,-136,-307,-334,-309v-93,0,-178,29,-256,88r-80,-141v105,-67,225,-101,360,-101v312,0,504,235,504,553v0,342,-199,559,-542,559v-137,0,-252,-38,-345,-114r93,-146v132,133,380,146,508,17v58,-60,90,-146,96,-258r-434,0r0,-148r430,0","w":1018},"\u044e":{"d":"963,20v-288,0,-432,-212,-447,-505r-199,0r0,485r-182,0r0,-1071r182,0r0,432r203,0v29,-253,184,-453,443,-453v298,0,446,234,446,553v0,307,-159,559,-446,559xm963,-942v-189,0,-263,188,-261,399v0,134,22,236,68,307v46,71,111,107,195,107v193,0,256,-192,256,-408v0,-270,-86,-405,-258,-405","w":1479},"\u044f":{"d":"401,-492v-142,-20,-256,-118,-258,-264v-2,-148,97,-264,215,-298v159,-46,385,-28,580,-13r0,1067r-182,0r0,-436v-129,-4,-251,7,-316,62v-51,43,-88,112,-104,212v-22,137,-117,189,-264,168r0,-166v49,12,86,0,96,-55v24,-136,104,-228,233,-277xm567,-938v-137,0,-235,59,-235,174v0,191,222,198,424,193r0,-357v-67,-7,-130,-10,-189,-10","w":1073},"\u0451":{"d":"567,-1092v326,0,548,241,469,576r-772,0v0,160,57,269,156,330v135,83,347,53,454,-50r78,154v-102,80,-208,101,-387,102v-296,3,-499,-235,-499,-542v0,-313,213,-570,501,-570xm862,-655v2,-164,-119,-277,-287,-277v-163,0,-296,129,-305,277r592,0xm680,-1360v0,-60,52,-113,113,-113v58,0,112,52,112,113v0,61,-51,113,-112,113v-63,0,-113,-54,-113,-113xm281,-1360v0,-65,56,-112,112,-113v61,-2,113,52,113,113v0,60,-50,113,-113,113v-62,0,-112,-54,-112,-113","w":1120},"\u0452":{"d":"631,-1036v234,-1,362,171,362,413r0,623v0,283,-160,424,-479,424r0,-168v192,-5,287,-50,287,-256r0,-623v0,-167,-74,-251,-221,-251v-91,0,-173,46,-246,139r0,735r-193,0r0,-1190r-145,0r0,-139r145,0r0,-180r193,0r0,180r373,0r0,139r-373,0r0,293v73,-93,172,-139,297,-139","w":1122},"\u0453":{"d":"825,-911r-499,0r0,911r-191,0r0,-1071r690,0r0,160xm776,-1618r-227,334r-139,0r170,-334r196,0","w":887},"\u0454":{"d":"258,-479v13,213,141,346,360,346v90,0,178,-32,263,-96r69,149v-95,67,-222,100,-379,100v-304,0,-503,-237,-503,-544v0,-341,213,-568,555,-568v125,0,232,36,321,109r-94,133v-124,-113,-351,-120,-474,-4v-61,57,-99,132,-114,227r430,0r0,148r-434,0","w":1018},"\u0455":{"d":"768,-287v0,207,-165,309,-381,307v-109,0,-215,-28,-317,-83r65,-181v107,70,193,105,256,105v117,0,176,-50,176,-150v0,-31,-14,-59,-35,-89v-34,-49,-252,-143,-320,-190v-71,-48,-136,-125,-136,-243v0,-185,156,-283,348,-281v77,0,176,25,295,74r-55,176v-75,-60,-151,-90,-228,-90v-76,0,-162,41,-160,115v0,33,14,63,34,93v33,50,252,135,320,180v74,49,138,131,138,257","w":840},"\u0456":{"d":"174,-1358v0,-71,61,-133,133,-133v72,0,133,60,133,133v0,77,-63,130,-133,131v-75,1,-133,-59,-133,-131xm231,0r0,-911r-147,0r0,-160r338,0r0,1071r-191,0","w":578},"\u0457":{"d":"367,-1360v0,-60,52,-113,112,-113v59,0,113,51,113,113v0,61,-52,113,-113,113v-62,0,-112,-54,-112,-113xm-33,-1360v0,-60,52,-113,113,-113v61,0,113,52,113,113v0,60,-51,113,-113,113v-63,0,-113,-54,-113,-113xm422,0r-191,0r0,-911r-147,0r0,-160r338,0r0,1071","w":578},"\u0458":{"d":"223,-1358v0,-69,60,-133,133,-133v72,0,133,60,133,133v0,74,-60,131,-133,131v-75,0,-133,-59,-133,-131xm-55,250v233,-3,340,-45,340,-254r0,-907r-213,0r0,-160r403,0r0,1063v-1,321,-200,426,-530,428r0,-170","w":625},"\u0459":{"d":"1618,-338v0,224,-174,338,-424,338r-365,0r0,-920r-286,0v-12,297,-55,542,-157,730v-78,144,-159,196,-345,202r0,-174v132,-9,173,-74,224,-194v74,-173,112,-462,104,-715r647,0r0,393v55,-8,115,-12,182,-12v258,-1,420,107,420,352xm1430,-342v0,-137,-98,-200,-242,-199v-40,0,-97,4,-172,13r0,372v46,4,107,6,182,6v134,1,232,-62,232,-192","w":1688},"\u045a":{"d":"1546,-338v0,224,-173,338,-424,338r-364,0r0,-483r-432,0r0,483r-191,0r0,-1071r191,0r0,430r432,0r0,-430r186,0r0,393v55,-8,115,-12,182,-12v259,-1,420,106,420,352xm1358,-342v0,-137,-98,-200,-242,-199v-40,0,-97,4,-172,13r0,372v46,4,107,6,182,6v134,1,232,-62,232,-192","w":1616},"\u045b":{"d":"631,-1036v234,-1,362,171,362,413r0,623r-192,0r0,-623v0,-167,-74,-251,-221,-251v-91,0,-173,46,-246,139r0,735r-193,0r0,-1190r-145,0r0,-139r145,0r0,-180r193,0r0,180r373,0r0,139r-373,0r0,293v73,-93,172,-139,297,-139","w":1122},"\u045c":{"d":"979,6v-157,22,-266,-35,-285,-184v-27,-210,-134,-312,-368,-309r0,487r-191,0r0,-1071r191,0r0,428v214,6,327,-71,358,-252v25,-147,121,-204,277,-182r0,164v-9,-1,-25,-2,-50,-2v-30,0,-49,20,-57,61v-30,149,-119,246,-266,289v154,53,248,170,284,352v8,38,27,57,56,57v26,0,43,-1,51,-4r0,166xm817,-1618r-227,334r-139,0r170,-334r196,0","w":1057},"\u045e":{"d":"125,250v134,4,287,-73,289,-191v0,-63,-10,-121,-31,-174r-371,-956r195,0r313,827r285,-827r192,0r-452,1253v-46,134,-233,242,-420,238r0,-170xm891,-1591v-45,205,-164,307,-359,307v-194,0,-313,-102,-358,-307r170,-39v25,137,87,205,188,205v113,0,179,-68,197,-203","w":1018},"\u045f":{"d":"983,0r-340,0r0,350r-168,0r0,-350r-340,0r0,-1071r191,0r0,913r467,0r0,-913r190,0r0,1071","w":1118},"\u0490":{"d":"1004,-1284r-652,0r0,1284r-202,0r0,-1464r688,0r0,-318r166,0r0,498","w":1065},"\u0491":{"d":"825,-911r-499,0r0,911r-191,0r0,-1071r533,0r0,-268r157,0r0,428","w":887},"\u0100":{"d":"982,0r-101,-309r-545,0r-108,309r-224,0r595,-1485r53,0r552,1485r-222,0xm616,-1101r-227,645r435,0xm995,-1726r0,141r-738,0r0,-141r738,0","w":1208},"\u0101":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm863,-1426r0,141r-738,0r0,-141r738,0","w":1076},"\u0108":{"d":"80,-728v0,-405,245,-762,631,-762v159,0,284,26,374,79r-67,171v-64,-47,-165,-70,-302,-70v-281,0,-426,285,-426,594v0,300,155,561,428,561v137,0,243,-49,317,-146r110,153v-116,115,-265,173,-448,173v-401,2,-617,-333,-617,-753xm874,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1225},"\u0109":{"d":"65,-525v0,-338,215,-566,555,-566v105,0,267,61,323,107r-94,134v-39,-39,-163,-82,-247,-81v-219,2,-337,173,-337,406v0,239,122,384,351,385v85,0,171,-33,258,-99r75,160v-102,66,-228,99,-379,99v-300,1,-505,-229,-505,-545xm746,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1014},"\u010a":{"d":"80,-728v0,-405,245,-762,631,-762v159,0,284,26,374,79r-67,171v-64,-47,-165,-70,-302,-70v-281,0,-426,285,-426,594v0,300,155,561,428,561v137,0,243,-49,317,-146r110,153v-116,115,-265,173,-448,173v-401,2,-617,-333,-617,-753xm578,-1703v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1225},"\u010b":{"d":"65,-525v0,-338,215,-566,555,-566v105,0,267,61,323,107r-94,134v-39,-39,-163,-82,-247,-81v-219,2,-337,173,-337,406v0,239,122,384,351,385v85,0,171,-33,258,-99r75,160v-102,66,-228,99,-379,99v-300,1,-505,-229,-505,-545xm458,-1403v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1014},"\u0112":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm956,-1726r0,141r-738,0r0,-141r738,0","w":1097},"\u0113":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm936,-1426r0,141r-738,0r0,-141r738,0","w":1117},"\u0114":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm575,-1739v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1097},"\u0115":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm566,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1117},"\u0116":{"d":"350,-1285r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-1465r875,0r0,180r-675,0xm470,-1703v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1097},"\u0117":{"d":"567,-1091v328,-5,542,237,470,574r-772,0v-4,223,123,376,337,377v109,0,199,-32,272,-95r80,137v-75,71,-237,118,-389,118v-292,0,-500,-239,-500,-543v0,-310,210,-564,502,-568xm863,-655v1,-163,-120,-276,-287,-276v-165,0,-295,123,-306,276r593,0xm440,-1403v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1117},"\u011c":{"d":"80,-727v0,-440,275,-763,712,-763v153,0,277,42,373,127r-83,165v-101,-75,-199,-112,-296,-112v-319,-2,-496,258,-496,591v0,320,177,566,486,564v107,0,193,-32,259,-96r0,-343r-203,0r0,-170r403,0r0,638v-96,87,-321,151,-501,151v-416,0,-654,-322,-654,-752xm892,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1385},"\u011d":{"d":"968,90v0,287,-396,394,-687,293v-76,-26,-138,-55,-185,-90r103,-152v111,74,213,111,306,111v139,0,278,-45,278,-155v0,-87,-63,-130,-188,-130v-42,0,-200,32,-247,32v-152,0,-228,-57,-228,-172v0,-86,102,-139,186,-158v-151,-71,-226,-193,-226,-368v0,-221,184,-392,406,-392v105,0,188,22,247,65r95,-114r124,117r-114,86v105,136,95,397,-28,520v-70,70,-156,113,-265,126v-86,10,-158,6,-232,37v-31,13,-47,29,-47,49v0,27,33,41,98,41v50,0,219,-31,269,-31v198,0,335,97,335,285xm714,-698v0,-126,-92,-240,-215,-240v-130,0,-224,111,-224,240v0,142,84,259,224,259v140,0,215,-114,215,-259xm662,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1028},"\u0120":{"d":"80,-727v0,-440,275,-763,712,-763v153,0,277,42,373,127r-83,165v-101,-75,-199,-112,-296,-112v-319,-2,-496,258,-496,591v0,320,177,566,486,564v107,0,193,-32,259,-96r0,-343r-203,0r0,-170r403,0r0,638v-96,87,-321,151,-501,151v-416,0,-654,-322,-654,-752xm628,-1703v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1385},"\u0121":{"d":"968,90v0,287,-396,394,-687,293v-76,-26,-138,-55,-185,-90r103,-152v111,74,213,111,306,111v139,0,278,-45,278,-155v0,-87,-63,-130,-188,-130v-42,0,-200,32,-247,32v-152,0,-228,-57,-228,-172v0,-86,102,-139,186,-158v-151,-71,-226,-193,-226,-368v0,-221,184,-392,406,-392v105,0,188,22,247,65r95,-114r124,117r-114,86v105,136,95,397,-28,520v-70,70,-156,113,-265,126v-86,10,-158,6,-232,37v-31,13,-47,29,-47,49v0,27,33,41,98,41v50,0,219,-31,269,-31v198,0,335,97,335,285xm714,-698v0,-126,-92,-240,-215,-240v-130,0,-224,111,-224,240v0,142,84,259,224,259v140,0,215,-114,215,-259xm369,-1403v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118","w":1028},"\u0122":{"d":"80,-727v0,-440,275,-763,712,-763v153,0,277,42,373,127r-83,165v-101,-75,-199,-112,-296,-112v-319,-2,-496,258,-496,591v0,320,177,566,486,564v107,0,193,-32,259,-96r0,-343r-203,0r0,-170r403,0r0,638v-96,87,-321,151,-501,151v-416,0,-654,-322,-654,-752xm675,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1385},"\u0123":{"d":"586,-1661v-56,61,-78,60,-78,122v0,27,13,53,42,75v73,55,49,179,-64,179v-72,0,-108,-48,-108,-145v0,-112,51,-208,154,-288xm968,90v0,287,-396,394,-687,293v-76,-26,-138,-55,-185,-90r103,-152v111,74,213,111,306,111v139,0,278,-45,278,-155v0,-87,-63,-130,-188,-130v-42,0,-200,32,-247,32v-152,0,-228,-57,-228,-172v0,-86,102,-139,186,-158v-151,-71,-226,-193,-226,-368v0,-221,184,-392,406,-392v105,0,188,22,247,65r95,-114r124,117r-114,86v105,136,95,397,-28,520v-70,70,-156,113,-265,126v-86,10,-158,6,-232,37v-31,13,-47,29,-47,49v0,27,33,41,98,41v50,0,219,-31,269,-31v198,0,335,97,335,285xm714,-698v0,-126,-92,-240,-215,-240v-130,0,-224,111,-224,240v0,142,84,259,224,259v140,0,215,-114,215,-259","w":1028},"\u0124":{"d":"990,0r0,-708r-640,0r0,708r-200,0r0,-1465r200,0r0,587r640,0r0,-587r200,0r0,1465r-200,0xm828,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1340},"\u0125":{"d":"622,-1091v235,0,363,174,363,418r0,673r-190,0r0,-673v1,-152,-78,-259,-225,-258v-99,0,-204,72,-245,135r0,796r-190,0r0,-1510r190,0r0,557v45,-75,177,-138,297,-138xm718,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1119},"\u0126":{"d":"1373,-1101r-152,0r0,1101r-199,0r0,-696r-651,0r0,696r-199,0r0,-1101r-152,0r0,-139r152,0r0,-225r199,0r0,225r651,0r0,-225r199,0r0,225r152,0r0,139xm1022,-866r0,-235r-651,0r0,235r651,0","w":1395},"\u0127":{"d":"631,-1036v235,-1,362,169,362,413r0,623r-192,0r0,-623v0,-167,-74,-251,-221,-251v-106,0,-196,67,-246,139r0,735r-193,0r0,-1190r-145,0r0,-139r145,0r0,-181r193,0r0,181r373,0r0,139r-373,0r0,293v59,-82,169,-138,297,-139","w":1122},"\u0128":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm-33,-1585v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":570},"\u0129":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm-26,-1285v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":584},"\u012a":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm654,-1726r0,141r-738,0r0,-141r738,0","w":570},"\u012b":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm661,-1426r0,141r-738,0r0,-141r738,0","w":584},"\u012c":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm273,-1739v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":570},"\u012d":{"d":"227,0r0,-911r-147,0r0,-160r340,0r0,1071r-193,0xm282,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":584},"\u012e":{"d":"385,0v-67,35,-92,48,-97,133v-7,107,144,114,218,63r67,142v-64,23,-123,35,-178,35v-151,3,-272,-101,-272,-248v0,-64,21,-122,62,-173r0,-1417r200,0r0,1465","w":570},"\u012f":{"d":"332,-1477v61,0,117,56,117,117v0,64,-57,119,-117,119v-62,0,-119,-54,-119,-119v0,-62,56,-117,119,-117xm417,0v-67,35,-93,48,-98,133v-7,107,144,114,218,63r67,142v-63,23,-123,35,-178,35v-150,3,-274,-101,-272,-248v1,-69,25,-130,73,-184r0,-852r-147,0r0,-160r337,0r0,1071","w":584},"\u0132":{"d":"185,0r0,-1465r200,0r0,1465r-200,0xm1339,-547v-6,377,-84,562,-442,567v-192,3,-327,-129,-335,-313r175,0v16,89,69,133,159,133v89,0,153,-20,189,-58v36,-38,54,-145,54,-321r0,-926r200,0r0,918","w":1489},"\u0133":{"d":"214,-1359v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-63,0,-117,-55,-117,-118xm227,0r0,-911r-147,0r0,-160r337,0r0,1071r-190,0xm793,-1359v0,-64,53,-117,117,-117v63,0,118,54,118,117v0,64,-54,118,-118,118v-64,0,-117,-54,-117,-118xm500,250v236,-3,341,-45,341,-255r0,-906r-213,0r0,-160r403,0r0,1062v-4,318,-193,428,-531,429r0,-170","w":1233},"\u0134":{"d":"826,-547v-6,377,-84,562,-442,567v-192,3,-327,-129,-335,-313r175,0v16,89,69,133,159,133v89,0,153,-20,189,-58v36,-38,54,-145,54,-321r0,-926r200,0r0,918xm789,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":976},"\u0135":{"d":"18,250v236,-3,341,-45,341,-255r0,-906r-213,0r0,-160r403,0r0,1062v-4,318,-193,428,-531,429r0,-170xm534,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":751},"\u0136":{"d":"958,0r-413,-674r-195,277r0,397r-200,0r0,-1465r200,0r0,797r544,-797r223,0r-438,635r500,830r-221,0xm527,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1179},"\u0137":{"d":"827,0r-336,-536r-166,171r0,365r-190,0r0,-1510r190,0r0,937r410,-498r222,0r-343,407r419,664r-206,0xm472,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1033},"\u0138":{"d":"1075,0r-248,0r-331,-485r-160,178r0,307r-191,0r0,-1071r191,0r0,530r442,-530r242,0r-399,450","w":1116},"\u013b":{"d":"150,0r0,-1465r200,0r0,1285r662,0r0,180r-862,0xm491,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1037},"\u013c":{"d":"340,-335v-2,111,71,186,179,185r0,170v-246,0,-369,-108,-369,-323r0,-1207r190,0r0,1175xm310,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":604},"\u0145":{"d":"1097,20r-757,-1071r0,1051r-190,0r0,-1465r80,0r737,1013r0,-1013r190,0r0,1485r-60,0xm563,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1307},"\u0146":{"d":"570,-931v-97,0,-205,70,-245,135r0,796r-190,0r0,-1071r130,0r60,138v63,-105,165,-158,307,-158v235,0,352,143,352,428r0,663r-190,0r0,-623v-3,-206,-39,-308,-224,-308xm470,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1119},"\u0149":{"d":"111,-1271v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm751,-931v-97,0,-205,70,-245,135r0,796r-190,0r0,-1071r130,0r60,138v63,-105,165,-158,307,-158v235,0,352,143,352,428r0,663r-190,0r0,-623v-3,-206,-39,-308,-224,-308","w":1300},"\u014a":{"d":"1194,-907v0,277,34,673,-86,815v-62,73,-146,112,-258,112v-105,0,-189,-26,-251,-77r82,-146v97,80,264,67,293,-49v35,-138,20,-422,20,-606v0,-181,-28,-301,-85,-362v-57,-61,-140,-91,-250,-91v-112,0,-215,57,-309,172r0,1139r-200,0r0,-1465r118,0r82,134v96,-107,222,-160,379,-160v310,0,465,195,465,584","w":1337},"\u014b":{"d":"568,-931v-97,0,-203,69,-243,134r0,797r-190,0r0,-1071r130,0r60,137v61,-105,164,-157,307,-157v235,0,352,143,352,428r0,663v4,274,-173,420,-442,420r0,-170v170,-2,253,-73,252,-250r0,-622v-3,-205,-41,-309,-226,-309","w":1119},"\u014c":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm1039,-1726r0,141r-738,0r0,-141r738,0","w":1380},"\u014d":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm919,-1426r0,141r-738,0r0,-141r738,0","w":1099},"\u014e":{"d":"670,25v-391,1,-590,-358,-590,-770v0,-392,213,-746,590,-746v425,0,630,303,630,746v0,450,-202,768,-630,770xm670,-155v303,0,420,-257,420,-590v0,-377,-140,-566,-420,-566v-124,0,-217,52,-283,152v-129,194,-125,633,3,835v70,110,159,169,280,169xm670,-1739v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1380},"\u014f":{"d":"550,20v-315,0,-485,-234,-485,-558v0,-312,186,-553,485,-553v317,0,484,224,484,553v0,326,-173,558,-484,558xm550,-936v-194,0,-285,180,-285,398v0,269,95,403,285,403v197,0,284,-183,284,-403v0,-265,-95,-398,-284,-398xm550,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1099},"\u0156":{"d":"1054,-1060v0,182,-138,356,-287,386r425,674r-229,0r-391,-629v-45,0,-115,-3,-212,-10r0,639r-200,0r0,-1465r366,-15v352,0,528,140,528,420xm844,-1064v0,-229,-238,-247,-484,-221r0,476v48,7,95,10,140,10v226,-3,344,-50,344,-265xm523,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1192},"\u0157":{"d":"717,-888v-185,-134,-377,70,-377,274r0,614r-190,0r0,-1071r190,0r0,171v99,-171,233,-223,456,-173xm223,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":796},"\u015c":{"d":"904,-370v-2,238,-222,395,-487,395v-130,0,-241,-31,-333,-92r73,-184v61,47,190,94,289,96v146,3,266,-90,259,-227v-8,-164,-76,-198,-238,-276v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-222,184,-380,414,-380v162,0,275,26,338,79r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-270,157,-198,309v45,96,87,103,212,164v120,59,277,131,331,227v38,67,60,149,60,250xm642,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":985},"\u015d":{"d":"764,-287v-1,205,-161,307,-381,307v-113,0,-219,-28,-318,-84r67,-180v106,69,191,104,256,104v117,0,176,-49,176,-148v0,-71,-57,-130,-170,-182v-141,-66,-181,-78,-256,-162v-41,-46,-65,-101,-66,-179v-1,-184,155,-282,347,-280v78,0,176,25,295,74r-54,176v-75,-60,-151,-90,-227,-90v-80,0,-160,41,-161,113v0,69,40,119,117,156v172,81,377,137,375,375xm551,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":829},"\u0166":{"d":"1171,-1285r-487,0r0,505r317,0r0,147r-317,0r0,633r-200,0r0,-633r-315,0r0,-147r315,0r0,-505r-466,0r0,-180r1153,0r0,180","w":1189},"\u0167":{"d":"393,-389v1,166,42,250,193,250v48,0,98,-12,149,-37r29,166v-76,20,-162,30,-258,30v-173,0,-303,-152,-303,-333r0,-207r-154,0r0,-139r154,0r0,-262r-154,0r0,-150r154,0r0,-223r190,-74r0,297r313,0r0,150r-313,0r0,262r262,0r0,139r-262,0r0,131","w":812},"\u0168":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm346,-1585v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1328},"\u0169":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm242,-1285v15,-97,82,-206,184,-207v55,0,106,12,152,38v46,26,81,39,104,39v54,0,90,-26,108,-77r88,0v-35,138,-99,207,-192,207v-67,0,-195,-77,-245,-77v-47,0,-83,26,-108,77r-91,0","w":1119},"\u016a":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm1033,-1726r0,141r-738,0r0,-141r738,0","w":1328},"\u016b":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm929,-1426r0,141r-738,0r0,-141r738,0","w":1119},"\u016c":{"d":"662,25v-318,0,-513,-161,-512,-472r0,-1018r200,0r0,1003v-2,178,129,307,310,307v194,0,318,-120,318,-312r0,-998r200,0r0,1019v2,301,-209,471,-516,471xm651,-1739v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1328},"\u016d":{"d":"488,20v-238,0,-363,-146,-363,-388r0,-703r190,0r0,683v0,165,72,248,215,248v123,0,245,-88,275,-179r0,-752r190,0r0,1071r-190,0r0,-148v-36,79,-199,168,-317,168xm560,-1439v103,0,202,-76,201,-171r143,0v-1,166,-155,325,-344,325v-192,0,-320,-141,-319,-325r141,0v-6,82,90,171,178,171","w":1119},"\u0172":{"d":"659,-156v191,0,319,-118,319,-311r0,-998r200,0r0,1019v-6,272,-141,405,-396,462v-40,9,-67,57,-67,117v0,107,144,114,218,63r67,142v-64,23,-123,35,-178,35v-189,0,-328,-167,-251,-353v-281,-29,-421,-185,-421,-466r0,-1019r200,0r0,1002v-3,182,127,307,309,307","w":1328},"\u0173":{"d":"995,0v-68,35,-93,48,-98,133v-7,107,144,114,218,63r67,142v-64,23,-123,35,-178,35v-151,3,-272,-101,-272,-248v0,-69,24,-131,73,-186r0,-86v-33,77,-203,167,-318,167v-234,0,-362,-148,-362,-389r0,-702r190,0r0,684v0,165,72,248,215,248v116,0,248,-91,275,-180r0,-752r190,0r0,1071","w":1119},"\u0174":{"d":"1276,20r-63,0r-349,-1010r-326,1010r-63,0r-462,-1485r208,0r294,1023r322,-1023r70,0r318,1021r299,-1021r208,0xm1035,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1745},"\u0175":{"d":"1125,20r-50,0r-314,-729r-313,729r-50,0r-383,-1094r203,0r229,703r285,-703r50,0r294,703r246,-703r187,0xm920,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1524},"\u0176":{"d":"685,-656r0,656r-200,0r0,-656r-472,-809r206,0r365,640r365,-640r206,0xm747,-1585r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1168},"\u0177":{"d":"124,250v136,4,289,-72,289,-191v0,-149,-66,-269,-111,-385r-290,-745r194,0r315,828r283,-828r194,0r-454,1253v-46,135,-234,241,-420,238r0,-170xm668,-1285r-163,-189r-178,189r-172,0r298,-338r107,0r305,338r-197,0","w":1010},"\u017f":{"d":"152,-1058v-4,-269,125,-448,368,-452v55,0,114,9,178,28r-47,146v-38,-13,-76,-19,-114,-19v-161,0,-195,126,-195,326r0,1029r-190,0r0,-1058","w":678},"\u01fa":{"d":"1204,0r-222,0r-107,-309r-535,0r-112,309r-224,0r562,-1304v-101,-31,-151,-94,-151,-191v0,-92,44,-154,132,-185r99,-198r196,0r-134,198v87,32,130,94,130,185v0,101,-52,166,-155,193xm627,-1584v-55,-1,-102,35,-102,89v0,60,34,90,102,90v67,0,101,-30,101,-90v0,-59,-34,-89,-101,-89xm823,-456r-207,-595r-220,595r427,0","w":1208},"\u01fb":{"d":"996,19v-150,-1,-218,-35,-256,-142v-76,95,-192,143,-349,143v-167,0,-314,-146,-311,-319v4,-275,344,-458,642,-362v0,-173,-77,-260,-232,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-108,332,-107v312,2,444,132,444,443r0,384v0,94,28,157,84,188r0,95xm596,-546v-169,-6,-326,100,-326,249v0,111,66,167,197,167v96,0,181,-46,255,-137r0,-259v-60,-13,-102,-20,-126,-20xm302,-1345v0,-113,98,-209,212,-209v114,0,211,96,211,209v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210xm412,-1345v0,54,48,100,102,100v54,0,101,-46,101,-100v0,-54,-47,-99,-101,-99v-54,0,-102,45,-102,99xm765,-1931r-226,333r-140,0r169,-333r197,0","w":1076},"\u01fc":{"d":"828,-307r-448,0r-139,307r-224,0r705,-1465r981,0r0,180r-675,0r0,407r484,0r0,170r-484,0r0,528r664,0r0,180r-864,0r0,-307xm828,-1285r-384,829r384,0r0,-829xm1394,-1918r-226,333r-140,0r169,-333r197,0","w":1775},"\u01fd":{"d":"1226,-1091v288,0,488,196,485,478v0,31,-5,63,-15,96r-762,0v-4,214,122,378,327,377v117,0,208,-36,274,-109r80,152v-102,90,-206,117,-391,117v-113,0,-213,-32,-298,-95v3,33,7,65,11,95r-161,0r-35,-143v-76,95,-189,143,-339,143v-169,0,-324,-134,-322,-301v3,-259,234,-407,512,-402v37,0,81,7,132,22v0,-173,-78,-260,-233,-260v-119,0,-210,32,-274,96r-80,-159v64,-55,215,-107,332,-107v195,0,325,58,389,173v99,-115,221,-173,368,-173xm1532,-655v2,-168,-133,-276,-307,-276v-149,0,-292,144,-291,276r598,0xm724,-526v-204,-74,-454,53,-454,229v0,111,66,167,198,167v97,0,182,-46,256,-137r0,-259xm1160,-1618r-226,333r-140,0r169,-333r197,0","w":1788},"\u01fe":{"d":"1287,-745v0,450,-202,769,-630,770v-117,0,-220,-30,-307,-91r-67,91r-216,0r160,-211v-107,-143,-160,-329,-160,-559v0,-392,213,-746,590,-746v143,0,263,33,361,100r67,-100r202,0r-144,220v96,129,144,305,144,526xm913,-1229v-66,-55,-151,-82,-256,-82v-124,0,-216,52,-283,152v-120,180,-129,582,-20,792xm657,-155v303,0,422,-258,420,-590v0,-137,-19,-249,-58,-338r-562,856v56,48,123,72,200,72xm876,-1918r-226,333r-140,0r169,-333r197,0","w":1345},"\u01ff":{"d":"1030,-538v0,326,-173,559,-484,558v-108,0,-200,-26,-276,-78r-58,78r-151,0r119,-162v-79,-99,-119,-231,-119,-396v0,-312,186,-555,485,-553v110,0,203,25,278,76r56,-76r150,0r-117,159v78,97,117,229,117,394xm546,-926v-196,3,-295,171,-295,388v0,99,15,179,44,241r424,-575v-50,-36,-108,-54,-173,-54xm546,-135v198,0,294,-183,294,-403v0,-97,-14,-176,-43,-237r-424,576v46,43,104,64,173,64xm770,-1618r-226,333r-140,0r169,-333r197,0","w":1117},"\u1e80":{"d":"1276,20r-63,0r-349,-1010r-326,1010r-63,0r-462,-1485r208,0r294,1023r322,-1023r70,0r318,1021r299,-1021r208,0xm837,-1585r-226,-333r197,0r169,333r-140,0","w":1745},"\u1e81":{"d":"1125,20r-50,0r-314,-729r-313,729r-50,0r-383,-1094r203,0r229,703r285,-703r50,0r294,703r246,-703r187,0xm732,-1285r-226,-333r197,0r169,333r-140,0","w":1524},"\u1e82":{"d":"1276,20r-63,0r-349,-1010r-326,1010r-63,0r-462,-1485r208,0r294,1023r322,-1023r70,0r318,1021r299,-1021r208,0xm1133,-1918r-226,333r-140,0r169,-333r197,0","w":1745},"\u1e83":{"d":"1125,20r-50,0r-314,-729r-313,729r-50,0r-383,-1094r203,0r229,703r285,-703r50,0r294,703r246,-703r187,0xm1008,-1618r-226,333r-140,0r169,-333r197,0","w":1524},"\u1e84":{"d":"1276,20r-63,0r-349,-1010r-326,1010r-63,0r-462,-1485r208,0r294,1023r322,-1023r70,0r318,1021r299,-1021r208,0xm523,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm996,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1745},"\u1e85":{"d":"1125,20r-50,0r-314,-729r-313,729r-50,0r-383,-1094r203,0r229,703r285,-703r50,0r294,703r246,-703r187,0xm408,-1401v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-51,113,-112,113v-61,0,-113,-52,-113,-113xm881,-1401v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1524},"\u1ef2":{"d":"685,-656r0,656r-200,0r0,-656r-472,-809r206,0r365,640r365,-640r206,0xm575,-1585r-226,-333r197,0r169,333r-140,0","w":1168},"\u1ef3":{"d":"124,250v136,4,289,-72,289,-191v0,-149,-66,-269,-111,-385r-290,-745r194,0r315,828r283,-828r194,0r-454,1253v-46,135,-234,241,-420,238r0,-170xm481,-1285r-226,-333r197,0r169,333r-140,0","w":1010},"\u2015":{"d":"93,-532r0,-96r1309,0r0,96r-1309,0","w":1504},"\u2017":{"d":"1077,254r-1085,0r0,-129r1085,0r0,129xm1077,504r-1085,0r0,-129r1085,0r0,129"},"\u2032":{"d":"189,-1056r-133,0r116,-411r184,0","w":327},"\u2033":{"d":"189,-1056r-133,0r116,-411r184,0xm489,-1056r-133,0r116,-411r184,0","w":694},"\u203c":{"d":"413,-382r-71,0v-84,-543,-80,-645,-77,-1109r226,0v2,463,8,561,-78,1109xm234,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151xm905,-382r-71,0v-84,-543,-80,-645,-77,-1109r226,0v2,463,8,561,-78,1109xm726,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":1248},"\u203e":{"d":"785,-1471r0,122r-791,0r0,-122r791,0"},"\u207f":{"d":"563,-1208v-3,-121,-20,-170,-135,-170v-50,0,-98,23,-145,69r0,473r-136,0r0,-643r95,0r34,60v52,-48,116,-72,193,-72v153,0,229,86,229,258r0,397r-135,0r0,-372","w":801},"\u20a4":{"d":"222,-948v-17,-314,125,-542,408,-543v137,0,235,40,293,121r-95,133v-43,-57,-116,-86,-221,-86v-123,0,-184,104,-184,311r0,64r303,0r0,135r-303,0r0,156r303,0r0,135r-303,0r0,342r223,0v103,0,181,-38,234,-113r143,111v-70,121,-219,182,-447,182r-444,0r0,-139v60,-20,90,-63,90,-129r0,-254r-90,0r0,-135r90,0r0,-156r-90,0r0,-135r90,0"},"\u20a7":{"d":"1909,-931v-77,-1,-135,44,-135,119v0,63,38,116,115,160r212,122v77,61,115,142,115,243v1,206,-146,309,-361,307v-98,0,-185,-27,-262,-81v-56,54,-127,81,-213,81v-188,1,-293,-143,-293,-339r0,-605r-138,0v-40,275,-280,398,-615,359r0,565r-195,0r0,-1465v110,-7,197,-11,260,-11v363,0,550,135,560,405r128,0r0,-223r189,-74r0,297r229,0r0,147r-229,0r0,543v0,159,27,244,149,244v67,0,127,-43,181,-129v83,86,170,129,260,129v105,0,157,-51,157,-152v0,-59,-38,-111,-115,-154r-212,-122v-77,-61,-115,-141,-115,-241v0,-181,136,-287,322,-285v65,0,155,24,270,72r-53,178v-73,-60,-144,-90,-211,-90xm762,-1026v0,-181,-114,-271,-342,-271v-33,0,-61,3,-86,8r0,546v29,7,61,10,96,10v221,0,332,-98,332,-293","w":2281},"\u2105":{"d":"238,-1142v0,138,76,222,203,224v50,0,103,-20,159,-59r58,104v-72,46,-153,69,-242,69v-193,1,-319,-140,-319,-340v0,-200,139,-353,342,-353v85,0,157,22,215,65r-66,96v-46,-31,-96,-47,-151,-47v-127,2,-199,100,-199,241xm1334,-1497r-979,1538r-127,0r979,-1538r127,0xm1139,-662v203,0,311,137,311,345v0,199,-119,348,-313,348v-201,0,-313,-140,-313,-348v0,-192,128,-345,315,-345xm1309,-317v0,-154,-57,-231,-170,-231v-116,0,-174,77,-174,231v0,156,57,234,172,234v115,0,172,-78,172,-234","w":1546},"\u2113":{"d":"452,-466v-2,197,33,316,199,316v43,0,92,-28,146,-85r110,153v-39,49,-181,104,-269,102v-293,-6,-377,-165,-376,-486r-86,51r-59,-165v57,-32,105,-61,145,-88v-2,-199,7,-462,40,-569v52,-168,143,-254,285,-254v172,0,278,115,274,291v-5,210,-255,492,-409,626r0,108xm585,-1321v-102,-1,-133,208,-133,346r0,157v147,-147,220,-271,220,-372v0,-87,-29,-131,-87,-131","w":1073},"\u2116":{"d":"1487,-991v191,0,287,141,287,340v0,200,-100,346,-291,346v-187,0,-289,-150,-289,-346v0,-188,112,-340,293,-340xm1731,0r-490,0r0,-131r490,0r0,131xm1067,14r-66,0r-671,-1027r0,1013r-180,0r0,-1480r65,0r672,1027r0,-1012r180,0r0,1479xm1625,-651v0,-141,-47,-211,-142,-211v-93,0,-140,70,-140,211v0,145,48,217,144,217v92,0,138,-72,138,-217","w":1872},"\u212e":{"d":"61,-523v0,-312,213,-568,502,-568v301,0,503,265,500,554r-814,0r0,371v101,82,204,123,309,123v112,0,341,-76,386,-138r47,53v-109,99,-252,148,-430,148v-296,0,-500,-234,-500,-543xm250,-886r0,281r630,0r0,-281v-152,-190,-471,-189,-630,0","w":1125},"\u215b":{"d":"1495,-674v0,88,-64,173,-125,207v107,59,160,136,160,231v1,163,-109,256,-275,256v-177,0,-266,-85,-266,-256v0,-106,79,-213,160,-243v-85,-45,-127,-110,-127,-195v0,-136,106,-213,238,-213v136,0,236,78,235,213xm1308,-1491r-973,1526r-127,0r973,-1526r127,0xm419,-595r-130,0r0,-675r-188,113r0,-113v135,-66,229,-135,282,-208r36,0r0,883xm1365,-671v0,-69,-35,-104,-105,-104v-116,0,-138,116,-66,183v32,30,64,57,100,76v47,-46,71,-98,71,-155xm1400,-236v0,-69,-53,-133,-159,-192v-81,45,-122,109,-122,192v0,96,45,144,136,144v97,0,145,-48,145,-144","w":1668},"\u215c":{"d":"1505,-674v-1,90,-64,170,-125,207v105,59,158,136,158,231v1,165,-106,256,-272,256v-179,0,-269,-85,-269,-256v-1,-101,82,-215,160,-243v-85,-45,-127,-110,-127,-195v0,-132,102,-213,238,-213v137,0,238,76,237,213xm1354,-1491r-973,1526r-127,0r973,-1526r127,0xm567,-1270v0,97,-58,180,-135,205v111,37,166,108,166,213v0,177,-98,266,-295,266v-87,0,-156,-24,-205,-71r60,-104v33,37,82,55,147,55v109,0,163,-47,163,-142v1,-101,-76,-167,-183,-162r0,-102v101,2,152,-44,152,-139v0,-80,-46,-120,-138,-120v-56,0,-98,16,-125,47r-53,-93v37,-49,99,-74,186,-74v139,0,261,85,260,221xm1375,-671v0,-69,-36,-104,-107,-104v-72,0,-108,33,-108,98v0,56,48,110,145,161v47,-44,70,-96,70,-155xm1408,-236v0,-69,-53,-133,-159,-192v-81,45,-122,109,-122,192v0,96,46,144,139,144v95,0,142,-48,142,-144","w":1668},"\u215d":{"d":"1505,-674v0,88,-64,173,-125,207v107,59,160,136,160,231v1,162,-109,256,-274,256v-178,0,-267,-85,-267,-256v0,-106,79,-213,160,-243v-85,-45,-127,-110,-127,-195v0,-133,105,-213,238,-213v136,0,236,78,235,213xm1354,-1491r-973,1526r-127,0r973,-1526r127,0xm367,-1192v165,-1,266,110,266,279v0,218,-103,327,-309,327v-85,0,-153,-22,-206,-67r45,-112v50,39,104,59,161,59v119,0,179,-63,179,-189v0,-118,-59,-177,-177,-177v-59,0,-108,20,-149,61r-39,-28r0,-436r440,0r0,118r-322,0r0,198v28,-22,65,-33,111,-33xm1375,-671v0,-69,-35,-104,-105,-104v-117,0,-137,116,-64,183v31,28,62,56,99,76v47,-45,70,-97,70,-155xm1410,-236v0,-69,-53,-133,-159,-192v-81,45,-122,109,-122,192v0,96,46,144,137,144v96,0,144,-48,144,-144","w":1668},"\u215e":{"d":"1505,-674v0,88,-64,173,-125,207v107,59,160,136,160,231v1,162,-109,256,-274,256v-178,0,-267,-85,-267,-256v0,-106,79,-213,160,-243v-85,-45,-127,-110,-127,-195v0,-133,105,-213,238,-213v136,0,236,78,235,213xm1333,-1491r-973,1526r-127,0r973,-1526r127,0xm733,-1428r-117,234v-106,210,-182,393,-245,598r-154,0v49,-160,166,-414,350,-761r-403,0r0,-118r569,0r0,47xm1375,-671v0,-69,-35,-104,-105,-104v-117,0,-137,116,-64,183v31,28,62,56,99,76v47,-45,70,-97,70,-155xm1410,-236v0,-69,-53,-133,-159,-192v-81,45,-122,109,-122,192v0,96,46,144,137,144v96,0,144,-48,144,-144","w":1668},"\u25a1":{"d":"146,-944r944,0r0,944r-944,0r0,-944xm222,-868r0,792r792,0r0,-792r-792,0","w":1237},"\u25aa":{"d":"594,-908r0,463r-463,0r0,-463r463,0","w":726},"\u25ab":{"d":"594,-908r0,463r-463,0r0,-463r463,0xm518,-832r-311,0r0,311r311,0r0,-311","w":726},"\u25cf":{"d":"618,-136v-237,0,-441,-204,-441,-440v0,-238,204,-441,441,-441v237,0,440,204,440,441v0,236,-204,440,-440,440","w":1237},"\u25e6":{"d":"112,-677v0,-135,115,-251,251,-251v135,0,251,116,251,251v0,135,-116,251,-251,251v-135,0,-251,-116,-251,-251xm538,-677v0,-94,-81,-175,-175,-175v-94,0,-175,81,-175,175v0,94,81,175,175,175v94,0,175,-81,175,-175","w":726},"\u201b":{"d":"521,-1363v0,57,-98,139,-98,194v0,86,80,134,130,179r-67,89v-177,-111,-265,-255,-265,-432v0,-118,52,-177,155,-177v97,0,145,49,145,147","w":752},"\u0218":{"d":"448,349v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm904,-370v-2,238,-222,395,-487,395v-130,0,-241,-31,-333,-92r73,-184v61,47,190,94,289,96v146,3,266,-90,259,-227v-8,-164,-76,-198,-238,-276v-119,-57,-275,-128,-327,-221v-37,-66,-60,-141,-60,-231v0,-222,184,-380,414,-380v162,0,275,26,338,79r-59,174v-49,-37,-186,-83,-274,-83v-168,0,-270,157,-198,309v45,96,87,103,212,164v120,59,277,131,331,227v38,67,60,149,60,250","w":985},"\u0219":{"d":"370,348v5,-45,-69,-88,-69,-136v0,-69,34,-103,102,-103v72,0,108,41,108,124v0,125,-62,226,-185,303r-47,-63v66,-60,84,-56,91,-125xm764,-287v-1,205,-161,307,-381,307v-113,0,-219,-28,-318,-84r67,-180v106,69,191,104,256,104v117,0,176,-49,176,-148v0,-71,-57,-130,-170,-182v-141,-66,-181,-78,-256,-162v-41,-46,-65,-101,-66,-179v-1,-184,155,-282,347,-280v78,0,176,25,295,74r-54,176v-75,-60,-151,-90,-227,-90v-80,0,-160,41,-161,113v0,69,40,119,117,156v172,81,377,137,375,375","w":829},"\u0162":{"d":"684,-1285r0,1285r-200,0r0,-1285r-466,0r0,-180r1153,0r0,180r-487,0xm527,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":1189},"\u0163":{"d":"505,20v-172,0,-302,-153,-302,-333r0,-608r-124,0r0,-150r124,0r0,-224r190,-73r0,297r294,0r0,150r-294,0r0,532v1,165,41,249,192,249v49,0,99,-12,151,-37r28,167v-79,20,-165,30,-259,30xm340,61v123,-4,209,80,209,193v0,139,-122,203,-277,201r-24,-99v87,1,182,-28,182,-102v0,-49,-30,-74,-90,-74r0,-119","w":812}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Description:
 * Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif
 * designed for easy screen readability. Trebuchet takes its inspiration from the
 * sans serifs of the 1930s which had large x heights and round features intended
 * to promote readability on signs. The typeface name is credited to a puzzle heard
 * at Microsoft, where the question was asked, "could you build a Trebuchet (a form
 * of medieval catapult) to launch a person from the main campus to the consumer
 * campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires
 * your messages across the Internet. "Launch your message with a Trebuchet page".
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Vincent Connare
 * 
 * Vendor URL:
 * http://www.microsoft.com
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":1200,"face":{"font-family":"Trebuchet MS","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 3 2 2 2 2 2 4","ascent":"1638","descent":"-410","x-height":"20","bbox":"-206 -2008 2314 552","underline-thickness":"200","underline-position":"-161","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":617,"k":{"Y":37,"T":37,"A":113}},"!":{"d":"426,-382r-104,0v-85,-539,-81,-645,-78,-1109r260,0v2,460,8,572,-78,1109xm218,-144v0,-88,76,-164,164,-164v88,0,163,76,163,164v0,88,-75,164,-163,164v-88,0,-164,-76,-164,-164","w":752},"\"":{"d":"667,-1036r-189,0r-28,-431r248,0xm287,-1036r-189,0r-28,-431r248,0","w":751},"#":{"d":"1174,-910r-215,0r-84,320r154,0r0,181r-202,0r-120,429r-195,0r118,-429r-230,0r-118,429r-195,0r118,-429r-140,0r0,-181r189,0r83,-320r-157,0r0,-181r205,0r108,-396r193,0r-105,396r229,0r108,-396r193,0r-104,396r167,0r0,181xm769,-910r-237,0r-84,320r235,0"},"$":{"d":"1042,-383v0,209,-152,346,-340,388r0,230r-229,0r0,-212v-116,-8,-222,-43,-318,-104r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-158v0,-53,-24,-99,-59,-148v-59,-83,-375,-220,-444,-288v-70,-70,-122,-164,-122,-296v0,-197,142,-341,315,-379r0,-181r229,0r-1,171v123,12,214,42,274,90r-79,224v-91,-65,-188,-98,-289,-98v-112,0,-189,67,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179"},"%":{"d":"648,-1127v0,200,-119,355,-309,354v-205,0,-308,-124,-308,-373v0,-193,129,-347,317,-345v195,2,300,153,300,364xm217,-1136v0,108,30,208,113,208v88,0,132,-69,132,-207v0,-133,-39,-200,-117,-200v-85,0,-128,66,-128,199xm335,20r-196,0r918,-1511r195,0xm1348,-335v0,200,-119,356,-309,355v-205,0,-308,-124,-308,-373v0,-193,129,-347,317,-345v195,2,300,153,300,363xm917,-344v-1,108,28,208,113,208v88,0,132,-69,132,-207v0,-133,-39,-200,-117,-200v-85,0,-128,66,-128,199","w":1401},"&":{"d":"1060,-401v2,135,19,200,135,200v46,0,92,-10,138,-31r0,219v-140,40,-298,59,-408,-31v-100,43,-215,64,-346,64v-298,0,-469,-186,-467,-484v0,-141,50,-262,149,-362v-86,-87,-129,-181,-129,-280v1,-226,206,-385,455,-385v144,0,263,36,356,109r-106,182v-83,-59,-156,-89,-219,-89v-140,-2,-235,71,-236,202v0,71,32,132,96,183r332,0r0,-167r250,-93r0,263r249,0r0,211r-249,0r0,289xm817,-233v-15,-134,-4,-309,-7,-457r-358,0v-53,65,-80,137,-80,218v0,181,92,271,275,271v73,0,129,-11,170,-32","w":1446},"'":{"d":"337,-1036r-189,0r-28,-431r248,0","w":470},"(":{"d":"648,455v-294,-194,-481,-550,-485,-1013v-3,-369,227,-822,485,-936r0,138v-132,185,-198,451,-198,800v0,415,66,695,198,842r0,169","w":752},")":{"d":"163,-1494v258,115,488,567,485,936v-3,462,-192,820,-485,1013r0,-169v132,-147,198,-427,198,-842v0,-349,-66,-615,-198,-800r0,-138","w":752},"*":{"d":"671,-1102r-134,11r137,78r86,111r-193,144r-84,-122r-53,-128r-49,114r-111,136r-172,-154r118,-115r110,-57r-135,-12r-156,-62r98,-205r158,67r71,76r-54,-155r0,-136r236,1r0,131r-46,162r100,-89r142,-62r81,201","w":885},"+":{"d":"713,-535r0,355r-201,0r0,-355r-348,0r0,-201r348,0r0,-343r201,0r0,343r349,0r0,201r-349,0"},",":{"d":"373,-277v89,0,172,85,172,174v0,85,-19,161,-59,231v-40,70,-130,152,-269,246r-85,-109v122,-91,183,-163,183,-215v0,-20,-7,-40,-21,-59v-63,-31,-95,-74,-95,-129v-1,-84,84,-139,174,-139","w":752},"-":{"d":"109,-476r0,-235r529,0r0,235r-529,0","w":752},"\u2010":{"d":"109,-476r0,-235r529,0r0,235r-529,0","w":752},".":{"d":"354,50v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181","w":752},"\/":{"d":"241,0r-225,0r553,-1471r223,0","w":799},"0":{"d":"75,-777v0,-364,193,-714,538,-714v341,0,511,249,511,746v0,233,-46,418,-138,557v-92,139,-221,208,-387,208v-179,0,-311,-64,-396,-192v-85,-128,-128,-330,-128,-605xm345,-759v0,195,19,339,57,431v38,92,101,138,189,138v95,0,158,-44,203,-124v71,-125,78,-724,2,-854v-43,-73,-101,-113,-188,-113v-175,0,-263,174,-263,522"},"1":{"d":"569,0r0,-1056r-298,179r0,-250v191,-93,343,-207,454,-344r104,0r0,1471r-260,0"},"2":{"d":"549,-1491v277,0,478,128,479,387v0,111,-54,250,-163,416r-300,457r550,0r0,231r-960,0r0,-76r464,-683v93,-137,139,-252,139,-345v0,-111,-66,-166,-199,-166v-101,0,-183,54,-245,161r-175,-138v62,-130,223,-244,410,-244"},"3":{"d":"1043,-419v0,292,-216,439,-521,439v-148,0,-274,-48,-379,-143r130,-201v77,82,161,123,252,123v165,0,248,-78,248,-233v0,-161,-129,-254,-312,-239r0,-214v164,8,263,-49,263,-187v0,-131,-70,-196,-209,-196v-72,0,-142,34,-210,102r-122,-179v57,-74,216,-144,347,-144v271,0,463,125,464,380v0,143,-61,251,-184,326v155,75,233,197,233,366"},"4":{"d":"984,-383r0,383r-250,0r0,-383r-667,0r0,-149r803,-939r114,0r0,882r148,0r0,206r-148,0xm734,-1029r-376,440r376,0r0,-440"},"5":{"d":"614,-1018v292,-1,449,182,449,479v0,373,-174,559,-521,559v-144,0,-270,-44,-377,-131r103,-214v106,83,197,124,273,124v168,0,252,-103,252,-310v0,-192,-61,-284,-248,-286v-81,0,-159,40,-236,119r-103,-67r0,-726r789,0r0,221r-539,0r0,262v44,-20,97,-30,158,-30"},"6":{"d":"1097,-463v0,275,-188,483,-453,483v-341,0,-512,-213,-512,-639v0,-179,66,-360,198,-543v132,-183,275,-293,430,-332r138,146v-176,89,-371,275,-439,456v326,-151,638,83,638,429xm832,-453v0,-146,-74,-265,-206,-265v-149,0,-224,83,-224,250v0,178,76,267,227,267v134,0,203,-107,203,-252"},"7":{"d":"537,0r-285,0v109,-335,295,-745,560,-1231r-671,0r0,-240r1010,0r0,111r-132,249r-137,275r-140,304v-45,103,-85,200,-120,290v-35,90,-63,170,-85,242"},"8":{"d":"117,-419v1,-167,116,-317,235,-383v-92,-59,-180,-185,-182,-321v-3,-230,190,-368,426,-368v251,0,425,131,427,369v1,124,-114,287,-201,328v109,44,256,231,256,375v0,283,-198,439,-487,439v-294,0,-476,-150,-474,-439xm762,-1126v1,-91,-72,-144,-166,-144v-111,0,-166,48,-166,145v0,94,115,198,190,223v64,-24,142,-142,142,-224xm591,-201v126,0,227,-76,227,-198v0,-101,-83,-201,-250,-298v-127,72,-191,165,-191,278v0,123,90,218,214,218"},"9":{"d":"116,-1003v0,-276,188,-488,453,-488v341,0,512,215,512,644v0,179,-65,360,-197,543v-132,183,-276,293,-431,332r-138,-146v203,-112,346,-258,430,-439v-45,20,-102,30,-171,30v-277,2,-458,-192,-458,-476xm584,-1270v-134,0,-203,112,-203,257v0,147,74,265,206,265v149,0,224,-83,224,-250v0,-181,-76,-272,-227,-272"},":":{"d":"354,-760v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181xm354,50v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181","w":752},";":{"d":"354,-760v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181xm373,-277v89,0,172,85,172,174v0,85,-19,161,-59,231v-40,70,-130,152,-269,246r-85,-109v122,-91,183,-163,183,-215v0,-20,-7,-40,-21,-59v-63,-31,-95,-74,-95,-129v-1,-84,84,-139,174,-139","w":752},"<":{"d":"192,-557r0,-161r799,-383r0,228r-528,236r528,239r0,228"},"=":{"d":"179,-745r0,-201r898,0r0,201r-898,0xm179,-325r0,-201r898,0r0,201r-898,0"},">":{"d":"265,-170r0,-228r527,-239r-527,-236r0,-228r799,383r0,161"},"?":{"d":"821,-1162v0,330,-418,363,-324,718r-191,0v-4,-15,-36,-100,-35,-128v4,-93,32,-167,69,-230v31,-53,235,-251,235,-344v0,-93,-61,-140,-183,-140v-59,0,-121,30,-186,89r-103,-193v86,-67,199,-101,339,-101v205,0,379,127,379,329xm248,-144v0,-88,76,-164,164,-164v88,0,163,76,163,164v0,88,-75,164,-163,164v-88,0,-164,-76,-164,-164","w":897},"@":{"d":"1508,-658v0,220,-138,419,-356,419v-99,0,-175,-19,-230,-58v-57,44,-124,66,-201,66v-149,0,-269,-89,-269,-236v0,-168,132,-257,396,-266v-13,-63,-41,-94,-84,-94v-63,0,-127,19,-193,57r-59,-136v73,-53,153,-79,238,-79v205,0,308,112,308,335r0,215v147,97,248,-3,248,-226v0,-305,-193,-489,-501,-489v-319,0,-533,246,-533,568v0,322,211,545,533,541v186,-2,261,-40,366,-129r0,206v-115,65,-237,98,-366,98v-432,0,-735,-290,-735,-716v0,-427,306,-743,735,-743v439,0,703,236,703,667xm666,-472v0,89,128,118,186,59r0,-184v-116,-5,-186,35,-186,125","w":1578},"A":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0","w":1297,"k":{"\u2019":152,"y":37,"w":37,"v":37,"Y":183,"W":111,"V":152,"T":194," ":113}},"B":{"d":"1139,-435v0,280,-247,435,-541,435r-448,0r0,-1464v197,-9,336,-14,415,-14v279,-2,485,116,485,376v0,116,-61,208,-184,275v182,63,273,194,273,392xm410,-1256r0,351v40,3,82,4,126,4v169,0,254,-64,254,-191v0,-113,-77,-169,-231,-169v-41,0,-90,2,-149,5xm869,-466v4,-238,-200,-248,-459,-236r0,484v53,5,95,7,128,7v215,-2,328,-54,331,-255","w":1219},"C":{"d":"80,-728v0,-410,273,-762,671,-762v168,0,302,34,403,103r-107,215v-58,-58,-151,-87,-280,-87v-261,0,-417,260,-417,542v0,285,137,511,398,511v138,0,246,-49,324,-148r121,210v-106,113,-261,169,-466,169v-424,2,-647,-313,-647,-753","w":1253},"D":{"d":"541,-1475v417,-6,695,273,695,685v0,527,-254,790,-761,790r-325,0r0,-1464v207,-7,338,-11,391,-11xm546,-231v285,-3,420,-232,420,-543v0,-358,-202,-508,-556,-463r0,1000v42,4,87,6,136,6","w":1316},"E":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0","w":1165},"F":{"d":"410,-1234r0,343r515,0r0,221r-515,0r0,670r-260,0r0,-1465r965,0r0,231r-705,0","w":1195,"k":{"u":96,"o":96,"e":96,"a":96,"A":113,".":227,",":227}},"G":{"d":"80,-727v0,-445,295,-763,742,-763v161,0,297,48,410,144r-109,209v-49,-47,-213,-122,-307,-122v-298,0,-466,230,-466,539v0,297,168,516,456,514v93,0,169,-25,229,-76r0,-288r-203,0r0,-222r463,0r0,656v-112,96,-331,159,-531,161v-426,3,-684,-318,-684,-752","w":1375},"H":{"d":"993,0r0,-660r-583,0r0,660r-260,0r0,-1465r260,0r0,574r583,0r0,-574r257,0r0,1465r-257,0","w":1400},"I":{"d":"155,0r0,-1465r260,0r0,1465r-260,0","w":570},"J":{"d":"956,-554v-2,382,-146,572,-522,574v-239,2,-405,-135,-417,-359r232,0v22,85,93,128,214,128v190,0,233,-131,233,-335r0,-919r260,0r0,911","w":1091},"K":{"d":"981,0r-408,-624r-163,223r0,401r-260,0r0,-1465r260,0r0,701r498,-701r296,0r-459,640r547,825r-311,0","w":1264},"L":{"d":"150,0r0,-1465r260,0r0,1234r662,0r0,231r-922,0","w":1132,"k":{"\u2019":113,"y":76,"Y":152,"W":152,"V":152,"T":152," ":76}},"M":{"d":"1516,1r-252,0r-152,-790r-295,809r-93,0r-295,-809r-158,790r-251,0r295,-1466r138,0r317,987r310,-987r137,0","w":1526},"N":{"d":"1111,20r-711,-927r0,908r-250,0r0,-1466r125,0r692,884r0,-884r250,0r0,1485r-106,0","w":1367},"O":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515","w":1440},"P":{"d":"410,-539r0,539r-260,0r0,-1464v173,-7,275,-11,304,-11v231,0,401,36,508,107v107,71,160,181,160,332v0,336,-198,504,-594,504v-29,0,-69,-2,-118,-7xm410,-770v244,24,446,-12,446,-246v0,-152,-122,-228,-367,-228v-27,0,-54,2,-79,5r0,469","w":1202,"k":{"o":96,"e":96,"a":96,"A":152,".":264,",":264," ":37}},"Q":{"d":"700,-1491v436,0,660,301,660,751v0,350,-115,584,-344,701v73,80,193,120,362,120v62,0,116,-7,161,-20r0,242v-322,45,-599,-81,-720,-278v-482,69,-739,-305,-739,-765v0,-401,232,-751,620,-751xm700,-1259v-256,0,-351,236,-350,519v0,153,31,282,92,385v61,103,147,155,258,155v282,0,390,-233,390,-540v0,-346,-130,-519,-390,-519","w":1452},"R":{"d":"1114,-1048v1,183,-129,339,-271,388r433,660r-300,0r-391,-605v-39,-1,-94,-3,-165,-7r0,612r-270,0r0,-1465v15,0,71,-2,169,-7v98,-5,177,-8,237,-8v372,0,558,144,558,432xm844,-1051v-6,-171,-138,-190,-336,-194v-28,0,-57,2,-88,6r0,407v231,15,432,12,424,-219","w":1251,"k":{"Y":129,"W":89,"V":74,"T":83}},"S":{"d":"967,-383v-2,257,-234,408,-517,408v-137,0,-260,-35,-370,-106r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-160v0,-50,-22,-95,-54,-143v-54,-82,-385,-224,-450,-291v-69,-70,-120,-165,-121,-296v-3,-232,201,-394,444,-394v169,0,294,32,373,95r-79,224v-91,-65,-188,-98,-289,-98v-113,0,-189,65,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179","w":1047},"T":{"d":"746,-1234r0,1234r-260,0r0,-1234r-466,0r0,-231r1213,0r0,231r-487,0","w":1253,"k":{"y":154,"w":163,"u":185,"s":227,"r":210,"o":264,"i":76,"e":227,"c":227,"a":227,"O":122,"A":194,";":227,":":227,".":227,"-":159,",":227," ":37}},"U":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482","w":1388},"V":{"d":"696,20r-143,0r-548,-1485r286,0r339,990r358,-990r280,0","w":1273,"k":{"y":76,"u":109,"r":101,"o":138,"i":37,"e":113,"a":152,"A":152,";":76,":":76,".":188,"-":113,",":229}},"W":{"d":"1331,20r-107,0r-320,-924r-311,924r-107,0r-481,-1485r271,0r275,884r297,-884r114,0r298,884r274,-884r271,0","w":1810,"k":{"y":18,"u":37,"r":37,"o":37,"e":37,"a":76,"A":111,";":37,":":37,".":171,"-":37,",":179}},"X":{"d":"942,0r-346,-527r-320,527r-271,0r439,-759r-404,-707r266,1r297,495r327,-495r272,0r-464,710r487,755r-283,0","w":1230},"Y":{"d":"759,-601r0,601r-260,0r0,-601r-494,-864r276,0r347,625r348,-625r275,0","w":1256,"k":{"v":113,"u":113,"q":188,"p":152,"o":188,"i":76,"e":188,"a":152,"A":183,";":133,":":113,".":264,"-":188,",":264," ":37}},"Z":{"d":"80,0r0,-84r611,-1150r-601,0r0,-231r955,0r0,84r-613,1150r635,0r0,231r-987,0","w":1147},"[":{"d":"150,420r0,-1930r523,0r0,223r-263,0r0,1484r263,0r0,223r-523,0","w":823},"\\":{"d":"528,0r-536,-1471r206,0r537,1471r-207,0","w":728},"]":{"d":"673,420r-523,0r0,-223r263,0r0,-1484r-263,0r0,-223r523,0r0,1930","w":823},"^":{"d":"812,-907r-214,-358r-218,362r-192,0r358,-568r107,0r356,564r-197,0"},"_":{"d":"-8,334r0,-209r1215,0r0,209r-1215,0"},"`":{"d":"596,-1215r-226,-293r267,0r169,293r-210,0"},"a":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100","w":1091},"b":{"d":"1106,-562v0,345,-202,584,-538,582v-99,0,-185,-26,-256,-79r-56,79r-141,0r0,-1490r250,-60r0,500v67,-41,139,-61,218,-61v307,0,523,224,523,529xm514,-192v248,-2,332,-111,332,-361v0,-217,-104,-326,-312,-326v-74,0,-130,21,-169,63r0,559v37,43,86,65,149,65","w":1191},"c":{"d":"65,-526v0,-340,236,-565,585,-565v125,0,233,35,325,105r-107,187v-59,-55,-137,-83,-236,-83v-198,0,-307,147,-307,356v0,225,107,337,321,337v93,0,174,-31,245,-92r92,197v-132,81,-199,102,-383,104v-331,3,-535,-210,-535,-546","w":1048},"d":{"d":"85,-518v0,-319,213,-576,517,-573v81,0,155,17,222,50r0,-429r250,-60r0,1530r-250,0r0,-65v-42,47,-163,85,-258,85v-309,0,-481,-216,-481,-538xm667,-191v44,0,141,-38,157,-65r0,-559v-53,-43,-109,-64,-167,-64v-208,0,-312,137,-312,354v0,223,107,334,322,334","w":1189},"e":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235","w":1177},"f":{"d":"192,-1071v5,-244,157,-440,397,-439v59,0,132,13,217,39r-74,190v-55,-18,-97,-27,-126,-27v-107,2,-183,114,-169,237r222,0r0,206r-218,0r0,865r-250,0r0,-865r-156,0r0,-206r157,0","w":757,"k":{"\u2019":45}},"g":{"d":"998,73v0,231,-253,347,-498,347v-164,0,-312,-48,-445,-145r158,-195v87,80,185,120,292,120v115,1,244,-28,248,-120v7,-145,-282,-75,-405,-75v-172,0,-258,-62,-258,-185v1,-80,80,-154,143,-179v-122,-79,-183,-192,-183,-337v0,-230,202,-397,436,-397v96,0,176,18,241,54r98,-114r173,157r-119,87v41,63,62,137,62,222v0,273,-217,451,-506,391v-10,0,-113,42,-100,66v0,27,23,40,69,40v46,1,176,-30,229,-30v243,0,365,98,365,293xm499,-888v-112,0,-194,81,-194,193v0,122,74,210,194,210v122,0,185,-85,185,-210v0,-106,-78,-193,-185,-193","w":1028},"h":{"d":"656,-1091v269,-1,423,158,423,431r0,660r-251,0r0,-660v2,-131,-93,-219,-224,-219v-83,0,-184,57,-215,110r0,769r-254,0r0,-1470r254,-60r0,527v65,-59,154,-88,267,-88","w":1214},"i":{"d":"186,-1341v0,-78,67,-145,145,-145v78,0,145,67,145,145v0,78,-67,145,-145,145v-78,0,-145,-67,-145,-145xm202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0","w":611},"j":{"d":"301,-1341v0,-78,67,-145,145,-145v78,0,145,67,145,145v0,78,-67,145,-145,145v-78,0,-145,-67,-145,-145xm-12,197v232,-6,341,-19,341,-218r0,-844r-193,0r0,-206r443,0r0,1046v-6,338,-223,444,-591,445r0,-223","w":751},"k":{"d":"820,0r-315,-485r-120,127r0,358r-250,0r0,-1470r250,-60r0,870r357,-411r301,0r-362,406r436,665r-297,0","w":1122,"k":{"a":64}},"l":{"d":"178,-1470r250,-60r0,1204v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-1254","w":604},"m":{"d":"1247,-1091v237,0,378,148,378,384r0,707r-250,0r0,-671v0,-141,-63,-211,-189,-211v-76,0,-157,56,-181,109r0,773r-250,0r0,-710v0,-108,-74,-172,-187,-172v-68,0,-158,65,-183,112r0,770r-250,0r0,-1071r172,0r51,94v69,-76,159,-114,269,-114v142,0,249,39,321,116v55,-66,183,-116,299,-116","w":1760},"n":{"d":"662,-1091v258,-1,412,169,412,434r0,657r-250,0r0,-619v-1,-175,-56,-263,-224,-263v-82,0,-178,55,-215,108r0,774r-250,0r0,-1071r180,0r46,100v68,-80,168,-120,301,-120","w":1209},"o":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349","w":1159},"p":{"d":"1108,-527v0,341,-196,548,-528,547v-79,0,-150,-16,-215,-47r0,447r-250,0r0,-1491r250,0r0,72v63,-61,140,-92,231,-92v341,0,512,188,512,564xm848,-534v0,-248,-82,-341,-323,-345v-60,0,-113,23,-160,70r0,563v45,37,98,55,159,55v235,-1,324,-107,324,-343","w":1193},"q":{"d":"85,-525v0,-331,220,-568,539,-566v93,0,178,28,254,84r41,-64r162,0r0,1491r-250,0r0,-450v-60,33,-143,50,-248,50v-321,1,-498,-213,-498,-545xm656,-879v-199,-2,-311,149,-311,354v0,223,101,334,303,334v74,0,135,-17,183,-52r0,-574v-45,-41,-103,-62,-175,-62","w":1196},"r":{"d":"607,-882v-123,-1,-222,136,-222,272r0,610r-250,0r0,-1071r250,0r0,98v70,-79,163,-118,279,-118v85,0,151,13,196,39r-106,214v-45,-29,-94,-44,-147,-44","w":875,"k":{"a":64,".":242,",":231}},"s":{"d":"817,-300v0,214,-180,323,-411,320v-171,-2,-209,-24,-337,-89r89,-199v75,59,159,89,253,89v97,0,146,-35,146,-104v0,-41,-15,-74,-44,-100v-29,-26,-86,-57,-171,-92v-185,-77,-277,-184,-277,-322v0,-195,174,-294,377,-294v111,0,216,25,314,75r-72,194v-55,-47,-131,-70,-228,-70v-128,0,-173,115,-88,178v29,22,90,50,184,88v159,64,265,140,265,326","w":882},"t":{"d":"505,20v-215,1,-332,-130,-332,-348r0,-542r-124,0r0,-201r124,0r0,-218r250,-92r0,310r294,0r0,201r-294,0r0,469v2,143,29,210,162,210v60,0,116,-16,168,-49r0,230v-58,20,-141,30,-248,30","w":812},"u":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206","w":1210},"v":{"d":"579,20r-90,0r-484,-1091r274,0r256,654r275,-654r265,0","w":1080,"k":{"i":-64,".":270,",":270}},"w":{"d":"1187,20r-91,0r-294,-658r-293,658r-92,0r-404,-1091r263,0r215,639r262,-639r90,0r271,643r232,-643r246,0","w":1605,"k":{".":199,",":199}},"x":{"d":"823,0r-275,-349r-247,349r-296,0r411,-548r-378,-523r287,0r226,327r252,-327r285,0r-411,523r449,548r-303,0","w":1131},"y":{"d":"609,172v-55,148,-263,252,-478,248r0,-221v193,0,289,-48,289,-145v0,-64,-27,-162,-80,-294r-335,-831r259,0r292,740r263,-740r259,0","w":1093,"k":{".":227,",":227}},"z":{"d":"65,0r0,-85r581,-768r-571,0r0,-218r936,0r0,88r-560,765r566,0r0,218r-952,0","w":1082},"{":{"d":"534,-328v0,127,-121,363,-34,476v64,84,127,73,310,78r0,194r-169,0v-218,3,-425,-112,-425,-318v0,-84,74,-340,74,-424v0,-110,-70,-169,-209,-178r0,-136v139,-10,209,-75,209,-195v0,-75,-74,-298,-74,-373v0,-195,212,-310,416,-306r178,0r0,187r-205,0v-89,0,-134,50,-134,149v0,66,63,259,63,325v0,103,-64,194,-192,275v128,67,192,149,192,246","w":888},"|":{"d":"505,420r0,-1930r206,0r0,1930r-206,0"},"}":{"d":"675,-1204v0,75,-74,298,-74,373v0,120,70,185,209,195r0,136v-139,9,-209,68,-209,178v0,84,74,340,74,424v0,206,-208,322,-425,318r-169,0r0,-194v184,-5,245,6,309,-78v87,-114,-33,-347,-33,-476v0,-97,64,-179,192,-246v-128,-81,-192,-172,-192,-275v0,-66,63,-259,63,-325v0,-99,-45,-149,-134,-149r-205,0r0,-187r178,0v204,-4,416,111,416,306","w":888},"~":{"d":"909,-538v-113,134,-357,-18,-494,-18v-35,0,-64,26,-89,77r-146,0v26,-165,120,-310,316,-257v30,1,179,67,270,67v40,0,69,-26,87,-77r148,0v-25,99,-57,167,-92,208"},"\u00c4":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm189,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm809,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1297},"\u00c5":{"d":"648,-1793v129,0,252,85,252,211v0,97,-53,162,-158,196r550,1386r-287,0r-107,-297r-502,0r-102,297r-289,0r545,-1386v-103,-34,-154,-99,-154,-196v0,-122,128,-211,252,-211xm647,-1677v-58,0,-106,37,-106,96v0,64,35,96,106,96v71,0,106,-32,106,-96v0,-64,-35,-96,-106,-96xm822,-496r-176,-541r-176,541r352,0","w":1297},"\u00c7":{"d":"80,-728v0,-410,273,-762,671,-762v168,0,302,34,403,103r-107,215v-58,-58,-151,-87,-280,-87v-261,0,-417,260,-417,542v0,285,137,511,398,511v138,0,246,-49,324,-148r121,210v-106,113,-261,169,-466,169v-424,2,-647,-313,-647,-753xm868,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1253},"\u00c9":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm877,-1878r-226,293r-190,0r169,-293r247,0","w":1165},"\u00d1":{"d":"1111,20r-711,-927r0,908r-250,0r0,-1466r125,0r692,884r0,-884r250,0r0,1485r-106,0xm800,-1555v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1367},"\u00d6":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm275,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm895,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1440},"\u00dc":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm235,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm855,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1388},"\u00e1":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm787,-1508r-226,293r-190,0r169,-293r247,0","w":1091},"\u00e0":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm466,-1215r-226,-293r267,0r169,293r-210,0","w":1091},"\u00e2":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm724,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1091},"\u00e4":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm95,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm715,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1091},"\u00e3":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm640,-1185v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1091},"\u00e5":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm757,-1427v0,126,-124,211,-252,211v-132,0,-252,-82,-252,-211v0,-122,128,-211,252,-211v129,0,252,85,252,211xm504,-1522v-58,0,-106,37,-106,96v0,64,35,96,106,96v71,0,106,-32,106,-96v0,-64,-35,-96,-106,-96","w":1091},"\u00e7":{"d":"65,-526v0,-340,236,-565,585,-565v125,0,233,35,325,105r-107,187v-59,-55,-137,-83,-236,-83v-198,0,-307,147,-307,356v0,225,107,337,321,337v93,0,174,-31,245,-92r92,197v-132,81,-199,102,-383,104v-331,3,-535,-210,-535,-546xm708,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1048},"\u00e9":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm897,-1508r-226,293r-190,0r169,-293r247,0","w":1177},"\u00e8":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm576,-1215r-226,-293r267,0r169,293r-210,0","w":1177},"\u00ea":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm771,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1177},"\u00eb":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm135,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm755,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1177},"\u00ed":{"d":"207,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm552,-1508r-226,293r-190,0r169,-293r247,0","w":611},"\u00ec":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm291,-1215r-226,-293r267,0r169,293r-210,0","w":611},"\u00ee":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm474,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":611},"\u00ef":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm-155,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm465,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":611},"\u00f1":{"d":"662,-1091v258,-1,412,169,412,434r0,657r-250,0r0,-619v-1,-175,-56,-263,-224,-263v-82,0,-178,55,-215,108r0,774r-250,0r0,-1071r180,0r46,100v68,-80,168,-120,301,-120xm730,-1185v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1209},"\u00f3":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm817,-1508r-226,293r-190,0r169,-293r247,0","w":1159},"\u00f2":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm536,-1215r-226,-293r267,0r169,293r-210,0","w":1159},"\u00f4":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm724,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1159},"\u00f6":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm145,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm765,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1159},"\u00f5":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm720,-1185v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1159},"\u00fa":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm867,-1508r-226,293r-190,0r169,-293r247,0","w":1210},"\u00f9":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm556,-1215r-226,-293r267,0r169,293r-210,0","w":1210},"\u00fb":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm754,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1210},"\u00fc":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm155,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm775,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1210},"\u2020":{"d":"575,-888r0,1122r-103,120r-107,-119r0,-1123r-350,0r0,-194r350,0r0,-303r210,0r0,303r350,0r0,194r-350,0","w":940},"\u00b0":{"d":"629,-1042v-129,0,-242,-111,-242,-240v0,-129,113,-239,242,-239v129,0,241,110,241,239v0,129,-112,240,-241,240xm629,-1391v-58,0,-109,51,-109,109v0,58,51,109,109,109v58,0,109,-51,109,-109v0,-58,-51,-109,-109,-109"},"\u00a2":{"d":"224,-528v0,-272,192,-452,483,-433r48,-119r122,0r-58,144v40,14,77,34,110,60r-91,158v-25,-23,-53,-41,-86,-52r-188,467v109,37,212,16,293,-58r78,168v-118,84,-274,104,-441,65r-44,110r-123,0r63,-156v-111,-73,-166,-191,-166,-354xm473,-380r163,-405v-131,11,-197,97,-197,257v0,60,11,109,34,148"},"\u00a3":{"d":"645,-231v126,-3,163,-39,228,-121r187,141v-83,141,-244,211,-484,211r-474,0r0,-183v60,-19,90,-54,90,-103r0,-394r-82,0r0,-201r82,0r0,-113v-6,-294,163,-496,437,-497v147,0,257,48,330,145r-130,177v-53,-69,-128,-103,-223,-103v-103,0,-154,90,-154,270r0,121r199,0r0,201r-199,0r0,449r193,0","w":1074},"\u00a7":{"d":"880,-338v1,239,-182,361,-430,361v-155,0,-283,-36,-385,-107r91,-240v89,79,184,118,283,118v114,0,171,-37,171,-112v0,-71,-68,-120,-205,-147v-101,-20,-179,-56,-240,-102v-118,-89,-112,-268,-11,-361v-66,-57,-99,-135,-99,-235v1,-256,325,-394,589,-294v63,24,116,49,157,82r-103,218v-41,-47,-140,-102,-216,-102v-105,0,-157,34,-157,103v0,40,27,64,56,78v17,8,58,20,124,35v201,49,333,112,333,318v0,65,-22,122,-66,170v72,53,108,126,108,217xm359,-855v-51,30,-48,107,-6,144v21,20,98,46,230,79v1,-7,1,-33,1,-76v0,-27,-14,-55,-42,-84v-28,-29,-89,-50,-183,-63","w":929},"\u2022":{"d":"542,-255v-171,0,-319,-148,-319,-319v0,-171,148,-319,319,-319v171,0,319,148,319,319v0,171,-148,319,-319,319","w":1074},"\u00b6":{"d":"118,-1077v0,-215,103,-412,307,-412r507,0r0,1739r-154,0r0,-1616r-158,0r0,1616r-154,0r0,-893v-232,0,-348,-145,-348,-434","w":1074},"\u00df":{"d":"1069,-457v0,279,-135,478,-406,477v-55,0,-113,-11,-176,-32r48,-197v186,45,269,-38,274,-236v2,-79,-23,-139,-61,-183v-20,-23,-69,-63,-146,-120v-77,-57,-116,-117,-116,-180v0,-22,25,-54,76,-97v51,-43,77,-88,77,-137v0,-85,-46,-127,-139,-127v-53,0,-90,20,-112,60v-22,40,-33,114,-33,223r0,1007r-250,0r0,-1102v-4,-239,141,-409,369,-409v223,0,395,94,400,296v3,117,-74,219,-128,277v0,7,25,23,76,48v165,83,247,227,247,432","w":1119},"\u00ae":{"d":"780,44v-379,0,-705,-326,-705,-705v0,-379,326,-704,705,-704v379,0,704,325,704,704v0,379,-325,705,-704,705xm780,-1195v-288,0,-535,247,-535,534v0,287,249,535,535,535v287,0,534,-247,534,-535v0,-287,-247,-534,-534,-534xm940,-267r-190,-323r-66,0r0,323r-162,0r0,-805r220,0v198,0,297,78,297,235v0,97,-44,169,-133,216r214,354r-180,0xm684,-729v130,-1,186,10,193,-101v5,-83,-90,-103,-193,-96r0,197","w":1460},"\u00a9":{"d":"780,44v-379,0,-705,-326,-705,-705v0,-379,326,-704,705,-704v379,0,704,325,704,704v0,379,-325,705,-704,705xm780,-1195v-288,0,-535,247,-535,534v0,287,249,535,535,535v287,0,534,-247,534,-535v0,-287,-247,-534,-534,-534xm437,-663v0,-221,137,-417,350,-417v87,0,162,18,225,55r-56,142v-46,-34,-102,-51,-167,-51v-128,0,-191,133,-191,276v0,140,70,260,193,260v61,0,115,-31,162,-92r92,126v-77,75,-165,113,-265,113v-220,2,-343,-183,-343,-412","w":1460},"\u2122":{"d":"499,-1332r0,594r-160,0r0,-594r-218,0r0,-139r726,0r147,454r145,-454r123,0r122,732r-155,0r-66,-364r-117,369r-103,0r-123,-374r-61,369r-156,0r98,-593r-202,0","w":1319},"\u00b4":{"d":"817,-1508r-226,293r-190,0r169,-293r247,0"},"\u00a8":{"d":"145,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm765,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142"},"\u2260":{"d":"174,-325r0,-201r271,0r163,-219r-434,0r0,-201r584,0r116,-155r189,0r-116,155r125,0r0,201r-275,0r-163,219r438,0r0,201r-588,0r-121,162r-188,0r120,-162r-121,0"},"\u00c6":{"d":"1180,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-297r-446,0r-183,297r-289,0r888,-1465r965,0r0,231r-675,0xm920,-496r0,-581r-352,581r352,0","w":1915},"\u00d8":{"d":"60,-745v0,-395,241,-746,630,-746v161,0,294,39,398,116r85,-116r167,0r-155,211v103,129,155,308,155,535v0,451,-230,773,-670,770v-144,0,-264,-38,-360,-113r-83,113r-167,0r154,-210v-103,-137,-154,-323,-154,-560xm690,-1260v-256,0,-360,235,-360,515v0,132,18,242,53,330r557,-758v-61,-58,-145,-87,-250,-87xm670,-206v287,0,402,-223,400,-539v0,-127,-17,-231,-50,-310r-560,763v55,57,125,86,210,86","w":1400},"\u221e":{"d":"1122,-671v0,163,-122,269,-286,269v-87,0,-167,-42,-241,-127v-75,85,-158,127,-248,127v-158,0,-277,-110,-277,-269v0,-141,134,-265,274,-265v95,0,179,38,250,113v71,-75,156,-113,255,-113v153,0,273,112,273,265xm956,-671v1,-63,-55,-108,-120,-106v-49,2,-118,69,-141,105v58,71,108,107,151,107v73,0,110,-35,110,-106xm498,-672v-73,-72,-72,-105,-141,-105v-80,0,-120,35,-120,106v0,71,37,106,110,106v43,0,94,-36,151,-107"},"\u00b1":{"d":"713,-535r0,334r349,0r0,201r-898,0r0,-201r348,0r0,-334r-348,0r0,-201r348,0r0,-343r201,0r0,343r349,0r0,201r-349,0"},"\u2264":{"d":"192,-627r0,-161r799,-383r0,228r-528,236r528,239r0,228xm1062,-201r0,201r-898,0r0,-201r898,0"},"\u2265":{"d":"1034,-627r-799,387r0,-228r528,-239r-528,-236r0,-228r799,383r0,161xm1062,0r-898,0r0,-201r898,0r0,201"},"\u00a5":{"d":"251,-520r204,0r0,-81r-494,-864r275,0r348,625r348,-625r275,0r-492,864r0,81r210,0r0,194r-210,0r0,326r-260,0r0,-326r-204,0r0,-194","w":1168},"\u03bc":{"d":"525,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-86,73,-185,109,-297,109v-57,0,-104,-14,-143,-43r0,443r-250,0r0,-1491r250,0r0,676v0,137,62,206,185,206","w":1120},"\u2202":{"d":"90,-479v0,-332,242,-578,555,-589v-53,-97,-332,-269,-492,-260r60,-213v137,0,277,47,422,139v254,162,469,464,474,845v4,324,-217,578,-539,578v-304,0,-480,-195,-480,-500xm580,-201v187,-1,279,-158,279,-364v0,-149,-30,-255,-89,-320v-249,-6,-430,167,-430,406v0,161,88,279,240,278"},"\u2211":{"d":"58,173r0,-210r395,-697r-395,-539r0,-192r935,0r0,232r-605,0r376,495r-394,679r662,0r0,232r-974,0","w":1075},"\u220f":{"d":"1124,-1233r0,1403r-260,0r0,-1403r-430,0r0,1403r-260,0r0,-1403r-130,0r0,-232r1210,0r0,232r-130,0","w":1304},"\u03c0":{"d":"1025,-863r0,863r-253,0r0,-863r-277,0r0,863r-253,0r0,-863r-167,0r0,-208r1108,0r0,208r-158,0","w":1232},"\u222b":{"d":"624,-23v3,231,-123,443,-345,443v-119,0,-219,-41,-301,-123r100,-142v51,63,108,95,170,95v102,1,157,-133,157,-241r0,-1073v-7,-223,165,-446,381,-446v107,0,201,34,280,102r-124,142v-58,-79,-210,-109,-276,-19v-27,37,-42,120,-42,251r0,1011","w":1074},"\u00aa":{"d":"531,-1225v1,-78,-59,-132,-137,-131v-54,0,-105,12,-152,35r-40,-126v107,-55,286,-62,382,-1v46,29,77,71,94,126v17,55,25,166,25,334v0,71,19,121,58,148v-30,31,-68,46,-113,46v-43,0,-73,-29,-92,-87v-23,47,-111,87,-180,87v-129,0,-228,-77,-228,-204v0,-181,189,-253,383,-227xm533,-1111v-112,-18,-215,14,-215,96v0,61,28,91,85,91v114,0,140,-72,130,-187","w":879},"\u00ba":{"d":"429,-794v-202,0,-324,-145,-324,-350v0,-197,129,-347,324,-347v205,0,323,140,323,347v0,204,-121,350,-323,350xm291,-1144v0,131,46,197,138,197v91,0,137,-66,137,-197v0,-129,-46,-194,-137,-194v-92,0,-138,65,-138,194","w":879},"\u03a9":{"d":"670,-1491v437,0,655,297,655,746v0,225,-78,406,-233,543r233,0r0,202r-560,0r0,-188v180,-164,290,-277,290,-557v0,-343,-128,-515,-385,-515v-255,0,-355,234,-355,515v0,202,150,484,290,556r0,189r-560,0r0,-202r218,0v-145,-139,-218,-320,-218,-543v0,-395,236,-746,625,-746","w":1370},"\u00e6":{"d":"692,-504v-33,-9,-65,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm1217,-1091v341,0,590,273,494,632r-775,0v7,169,136,270,316,270v113,0,200,-30,260,-89r97,191v-87,71,-219,107,-394,107v-127,0,-216,-22,-268,-66r3,46r-198,0v-9,-23,-21,-58,-36,-105v-44,75,-173,125,-295,125v-222,0,-371,-118,-371,-332v0,-273,237,-400,536,-396v34,0,69,5,104,15v0,-127,-80,-190,-239,-190v-93,0,-171,16,-236,48r-54,-194v86,-41,188,-62,307,-62v189,0,319,49,389,147v100,-98,220,-147,360,-147xm1221,-882v-151,0,-249,101,-276,235r536,0v-17,-157,-103,-235,-260,-235","w":1767},"\u00f8":{"d":"65,-538v0,-315,204,-553,515,-553v108,0,201,22,278,67r51,-67r185,0r-123,162v82,97,123,228,123,391v0,330,-191,561,-514,558v-107,0,-200,-23,-277,-69r-53,69r-185,0r125,-165v-83,-100,-125,-231,-125,-393xm580,-887v-174,0,-255,154,-255,349v0,73,8,135,23,185r376,-494v-38,-27,-86,-40,-144,-40xm580,-184v176,0,254,-155,254,-354v0,-71,-8,-131,-23,-180r-376,494v38,27,86,40,145,40","w":1159},"\u00bf":{"d":"677,-927v0,88,-76,164,-164,164v-88,0,-163,-76,-163,-164v0,-88,75,-164,163,-164v88,0,164,76,164,164xm619,-627v4,15,35,100,34,128v-4,92,-32,168,-67,229v-29,51,-237,254,-237,345v0,93,61,140,183,140v60,0,122,-30,187,-89r102,193v-85,67,-198,101,-339,101v-204,0,-387,-129,-379,-329v6,-165,58,-218,174,-335v115,-116,153,-145,164,-299v0,-11,-5,-39,-14,-84r192,0","w":897},"\u00a1":{"d":"545,-927v0,88,-75,164,-163,164v-88,0,-164,-76,-164,-164v0,-88,76,-164,164,-164v88,0,163,76,163,164xm504,420r-260,0v-2,-460,-8,-571,78,-1109r104,0v85,538,81,646,78,1109","w":752},"\u00ac":{"d":"1062,-966r0,556r-201,0r0,-355r-697,0r0,-201r898,0"},"\u221a":{"d":"790,-1296r-384,1296r-179,0r-236,-290r146,-119r131,167r364,-1229r582,0r0,175r-424,0"},"\u0192":{"d":"-206,205v89,-15,228,-77,241,-156r160,-933v-46,1,-97,8,-153,20r43,-220r148,-1v65,-283,219,-425,463,-425v39,0,98,13,178,39r-51,201v-69,-24,-115,-36,-139,-36v-107,0,-174,74,-202,222v61,2,144,-2,250,-13r-20,171v-116,16,-205,26,-266,30r-161,955v-27,204,-213,329,-406,350v-50,-20,-64,-123,-82,-178v-3,-10,-3,-19,-3,-26","w":795},"\u2248":{"d":"898,-676v-116,129,-355,-20,-492,-20v-35,0,-64,26,-89,77r-146,0v26,-165,120,-310,316,-257v30,1,179,67,270,67v40,0,69,-26,87,-77r148,0v-27,103,-59,171,-94,210xm898,-286v-116,129,-355,-20,-492,-20v-35,0,-64,26,-89,77r-146,0v26,-165,120,-310,316,-257v30,1,179,67,270,67v40,0,69,-26,87,-77r148,0v-27,103,-59,171,-94,210"},"\u0394":{"d":"-5,0r0,-153r536,-1312r185,0r489,1312r0,153r-1210,0xm616,-1076r-330,855r640,0","w":1198},"\u00ab":{"d":"99,-519r0,-96r415,-285r0,197r-189,140r189,124r0,197xm588,-519r0,-96r415,-285r0,197r-189,140r189,124r0,197"},"\u00bb":{"d":"139,-242r0,-197r189,-124r-189,-140r0,-197r415,285r0,96xm628,-242r0,-197r189,-124r-189,-140r0,-197r415,285r0,96"},"\u2026":{"d":"250,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm752,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm1254,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150","w":1504},"\u00a0":{"w":617},"\u00c0":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm576,-1585r-226,-293r267,0r169,293r-210,0","w":1297},"\u00c3":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm790,-1555v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1297},"\u00d5":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm840,-1555v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1440},"\u0152":{"d":"60,-745v0,-395,241,-746,630,-746v153,0,280,35,380,105r0,-79r925,0r0,231r-675,0r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-914,0r0,-95v-106,80,-239,120,-400,120v-418,0,-610,-329,-610,-770xm690,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515","w":2055},"\u0153":{"d":"1336,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-87,71,-219,107,-394,107v-173,0,-306,-53,-401,-158v-93,105,-220,158,-383,158v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v175,0,307,57,398,171v105,-114,234,-171,388,-171xm550,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm1074,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235","w":1886},"\u2013":{"d":"63,-502r0,-201r581,0r0,201r-581,0","w":752},"\u2014":{"d":"63,-502r0,-201r1369,0r0,201r-1369,0","w":1504},"\u201c":{"d":"376,-866v-110,1,-170,-79,-170,-192v0,-184,95,-335,284,-452r83,111v-62,47,-101,82,-114,105v-36,62,-27,108,28,161v33,33,49,68,49,105v0,108,-53,162,-160,162xm836,-866v-110,1,-170,-79,-170,-192v0,-184,95,-335,284,-452r83,111v-62,47,-101,82,-114,105v-36,62,-27,108,28,161v33,33,49,68,49,105v0,108,-53,162,-160,162"},"\u201d":{"d":"376,-1510v110,-1,170,79,170,192v0,184,-95,335,-284,452r-83,-111v62,-47,101,-82,114,-105v36,-62,27,-108,-28,-161v-33,-33,-49,-68,-49,-105v0,-108,53,-162,160,-162xm836,-1510v110,-1,170,79,170,192v0,184,-95,335,-284,452r-83,-111v62,-47,101,-82,114,-105v36,-62,27,-108,-28,-161v-33,-33,-49,-68,-49,-105v0,-108,53,-162,160,-162"},"\u2018":{"d":"376,-866v-110,1,-170,-79,-170,-192v0,-184,95,-335,284,-452r83,111v-62,47,-101,82,-114,105v-36,62,-27,108,28,161v33,33,49,68,49,105v0,108,-53,162,-160,162","w":752,"k":{"\u2018":176}},"\u2019":{"d":"376,-1510v110,-1,170,79,170,192v0,184,-95,335,-284,452r-83,-111v62,-47,101,-82,114,-105v36,-62,27,-108,-28,-161v-33,-33,-49,-68,-49,-105v0,-108,53,-162,160,-162","w":752,"k":{"\u2019":176,"s":144," ":76}},"\u00f7":{"d":"613,-1170v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm1062,-736r0,201r-898,0r0,-201r898,0xm613,-380v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150"},"\u25ca":{"d":"613,-18r-618,-617r618,-617r617,617xm613,-1004r-369,369r369,369r368,-369","w":1229},"\u00ff":{"d":"609,172v-55,148,-263,252,-478,248r0,-221v193,0,289,-48,289,-145v0,-64,-27,-162,-80,-294r-335,-831r259,0r292,740r263,-740r259,0xm87,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm707,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1093},"\u0178":{"d":"759,-601r0,601r-260,0r0,-601r-494,-864r276,0r347,625r348,-625r275,0xm185,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm805,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1256},"\u2044":{"d":"236,35r-168,0r884,-1526r166,0"},"\u2215":{"d":"236,35r-168,0r884,-1526r166,0"},"\u20ac":{"d":"191,-947v59,-292,268,-541,590,-543v153,0,276,34,369,103r-98,215v-53,-58,-139,-87,-256,-87v-170,0,-286,104,-349,312r513,0r-55,151r-487,0v-4,53,-4,107,0,159r423,0r-54,151r-341,0v57,187,167,280,332,280v133,0,232,-48,295,-143r0,274v-79,67,-183,100,-314,100v-327,-2,-513,-214,-568,-511r-127,0r0,-151r107,0v-4,-56,-4,-109,-1,-159r-106,0r0,-151r127,0"},"\u2039":{"d":"141,-519r0,-96r415,-285r0,197r-189,140r189,124r0,197","w":752},"\u203a":{"d":"181,-242r0,-197r189,-124r-189,-140r0,-197r415,285r0,96","w":752},"\ufb01":{"d":"606,-1308v-107,2,-183,114,-169,237r703,0r0,1071r-253,0r0,-865r-446,0r0,865r-250,0r0,-865r-156,0r0,-206r157,0v5,-244,157,-440,397,-439v59,0,132,13,217,39r-74,190v-55,-18,-97,-27,-126,-27xm871,-1341v0,-78,67,-145,145,-145v78,0,145,67,145,145v0,78,-67,145,-145,145v-78,0,-145,-67,-145,-145","w":1274},"\ufb02":{"d":"192,-1071v9,-289,199,-471,510,-435v60,7,121,22,176,35r250,-59r0,1204v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-1044v-110,-57,-294,-76,-378,16v-40,44,-63,101,-63,173r222,0r0,206r-218,0r0,865r-250,0r0,-865r-156,0r0,-206r157,0","w":1304},"\u2021":{"d":"575,-221r0,455r-107,128r-103,-128r0,-455r-350,0r0,-194r350,0r0,-473r-350,0r0,-194r350,0r0,-303r210,0r0,303r350,0r0,194r-350,0r0,473r350,0r0,194r-350,0","w":940},"\u2219":{"d":"354,-560v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181","w":752},"\u201a":{"d":"376,-277v110,-1,170,79,170,192v0,184,-95,335,-284,452r-83,-111v62,-47,101,-82,114,-105v36,-62,27,-108,-28,-161v-33,-33,-49,-68,-49,-105v0,-108,53,-162,160,-162","w":752},"\u201e":{"d":"326,-277v110,-1,170,79,170,192v0,184,-95,335,-284,452r-83,-111v62,-47,101,-82,114,-105v36,-62,27,-108,-28,-161v-33,-33,-49,-68,-49,-105v0,-108,53,-162,160,-162xm786,-277v110,-1,170,79,170,192v0,184,-95,335,-284,452r-83,-111v62,-47,101,-82,114,-105v36,-62,27,-108,-28,-161v-33,-33,-49,-68,-49,-105v0,-108,53,-162,160,-162","w":1074},"\u2030":{"d":"648,-1127v0,200,-119,355,-309,354v-205,0,-308,-124,-308,-373v0,-193,129,-347,317,-345v195,2,300,153,300,364xm217,-1136v0,108,30,208,113,208v88,0,132,-69,132,-207v0,-133,-39,-200,-117,-200v-85,0,-128,66,-128,199xm335,20r-196,0r918,-1511r195,0xm1348,-335v0,200,-119,356,-309,355v-205,0,-308,-124,-308,-373v0,-193,129,-347,317,-345v195,2,300,153,300,363xm917,-344v-1,108,28,208,113,208v88,0,132,-69,132,-207v0,-133,-39,-200,-117,-200v-85,0,-128,66,-128,199xm2068,-335v0,200,-119,356,-309,355v-205,0,-308,-124,-308,-373v0,-193,129,-347,317,-345v195,2,300,153,300,363xm1637,-344v-1,108,28,208,113,208v88,0,132,-69,132,-207v0,-133,-39,-200,-117,-200v-85,0,-128,66,-128,199","w":2121},"\u00c2":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm824,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1297},"\u00ca":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm764,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1165},"\u00c1":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm937,-1878r-226,293r-190,0r169,-293r247,0","w":1297},"\u00cb":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm155,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm775,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1165},"\u00c8":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm566,-1585r-226,-293r267,0r169,293r-210,0","w":1165},"\u00cd":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm571,-1878r-226,293r-190,0r169,-293r247,0","w":570},"\u00ce":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm434,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":570},"\u00cf":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm-145,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm475,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":570},"\u00cc":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm241,-1585r-226,-293r267,0r169,293r-210,0","w":570},"\u00d3":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm997,-1878r-226,293r-190,0r169,-293r247,0","w":1440},"\u00d4":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm884,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1440},"\u00d2":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm666,-1585r-226,-293r267,0r169,293r-210,0","w":1440},"\u00da":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm977,-1878r-226,293r-190,0r169,-293r247,0","w":1388},"\u00db":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm837,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1388},"\u00d9":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm646,-1585r-226,-293r267,0r169,293r-210,0","w":1388},"\u0131":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0","w":611},"\u02c6":{"d":"724,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0"},"\u02dc":{"d":"720,-1185v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54"},"\u02c9":{"d":"971,-1396r0,181r-738,0r0,-181r738,0"},"\u02d8":{"d":"584,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141"},"\u02d9":{"d":"428,-1366v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151"},"\u02da":{"d":"857,-1427v0,126,-124,211,-252,211v-132,0,-252,-82,-252,-211v0,-122,128,-211,252,-211v129,0,252,85,252,211xm604,-1522v-58,0,-106,37,-106,96v0,64,35,96,106,96v71,0,106,-32,106,-96v0,-64,-35,-96,-106,-96"},"\u00b8":{"d":"818,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207"},"\u02dd":{"d":"617,-1508r-226,293r-190,0r169,-293r247,0xm1037,-1508r-226,293r-190,0r169,-293r247,0"},"\u02db":{"d":"714,394v-148,0,-264,-78,-264,-214v0,-150,70,-258,210,-323r74,143v-52,15,-104,79,-102,148v1,98,153,140,219,64r65,124v-52,39,-119,58,-202,58"},"\u02c7":{"d":"991,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0"},"\u0141":{"d":"545,-923r-135,91r0,601r662,0r0,231r-922,0r0,-657r-129,87r0,-174r129,-84r0,-637r260,0r0,469r135,-88r0,161","w":1132},"\u0142":{"d":"567,-912r-139,93r0,493v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-437r-135,90r0,-174r135,-88r0,-645r250,-60r0,543r139,-90r0,165","w":604},"\u0160":{"d":"967,-383v-2,257,-234,408,-517,408v-137,0,-260,-35,-370,-106r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-160v0,-50,-22,-95,-54,-143v-54,-82,-385,-224,-450,-291v-69,-70,-120,-165,-121,-296v-3,-232,201,-394,444,-394v169,0,294,32,373,95r-79,224v-91,-65,-188,-98,-289,-98v-113,0,-189,65,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179xm931,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1047},"\u0161":{"d":"861,-300v0,214,-180,323,-411,320v-171,-2,-209,-24,-337,-89r89,-199v75,59,159,89,253,89v97,0,146,-35,146,-104v0,-41,-15,-74,-44,-100v-29,-26,-86,-57,-171,-92v-185,-77,-277,-184,-277,-322v0,-195,174,-294,377,-294v111,0,216,25,314,75r-72,194v-55,-47,-131,-70,-228,-70v-128,0,-173,115,-88,178v29,22,90,50,184,88v159,64,265,140,265,326xm895,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":882},"\u017d":{"d":"80,0r0,-84r611,-1150r-601,0r0,-231r955,0r0,84r-613,1150r635,0r0,231r-987,0xm991,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1147},"\u017e":{"d":"65,0r0,-85r581,-768r-571,0r0,-218r936,0r0,88r-560,765r566,0r0,218r-952,0xm961,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1082},"\u00a6":{"d":"504,-673r0,-837r206,0r0,837r-206,0xm504,420r0,-837r206,0r0,837r-206,0"},"\u00d0":{"d":"541,-1475v417,-6,695,273,695,685v0,527,-254,790,-761,790r-325,0r0,-694r-124,0r0,-204r124,0r0,-566v207,-7,338,-11,391,-11xm546,-231v285,-3,420,-232,420,-543v0,-358,-202,-508,-556,-463r0,339r137,0r0,204r-137,0r0,457v42,4,87,6,136,6","w":1316},"\u00f0":{"d":"65,-546v0,-342,233,-596,602,-545v-27,-43,-58,-89,-94,-140r-148,78r-58,-102r136,-67v-63,-70,-136,-133,-219,-188r354,0v24,24,49,51,75,81r162,-88r58,96r-153,82v122,181,204,332,248,451v44,119,66,233,66,342v0,330,-188,566,-514,566v-326,0,-515,-235,-515,-566xm580,-885v-179,0,-265,148,-265,339v0,230,88,345,265,345v182,0,264,-152,264,-345v0,-226,-88,-339,-264,-339","w":1159},"\u00dd":{"d":"759,-601r0,601r-260,0r0,-601r-494,-864r276,0r347,625r348,-625r275,0xm917,-1878r-226,293r-190,0r169,-293r247,0","w":1256},"\u00de":{"d":"380,-329r0,329r-260,0r0,-1464r260,-2r0,202v237,-7,443,31,552,106v106,72,160,181,160,332v0,336,-198,504,-594,504v-29,0,-69,-2,-118,-7xm380,-560v244,24,446,-12,446,-246v0,-152,-122,-228,-367,-228v-27,0,-54,2,-79,5r0,469","w":1142},"\u00fe":{"d":"1108,-527v0,341,-196,548,-528,547v-79,0,-150,-16,-215,-47r0,447r-250,0r0,-1890r250,-60r0,531v63,-61,140,-92,231,-92v341,0,512,188,512,564xm848,-534v0,-248,-82,-341,-323,-345v-60,0,-113,23,-160,70r0,563v45,37,98,55,159,55v235,-1,324,-107,324,-343","w":1193},"\u2212":{"d":"1062,-736r0,201r-898,0r0,-201r898,0"},"\u00b9":{"d":"409,-565r0,-651r-188,112r0,-184v139,-70,238,-143,297,-220r81,0r0,943r-190,0","w":924},"\u00b2":{"d":"402,-1520v174,0,293,92,294,254v0,51,-14,112,-44,184v-30,72,-99,185,-207,339r309,0r0,178r-600,0r0,-63r271,-421v54,-84,81,-153,81,-207v0,-50,-63,-92,-118,-92v-70,0,-125,34,-166,101r-109,-103v49,-113,145,-170,289,-170","w":924},"\u00b3":{"d":"715,-838v1,187,-132,285,-325,283v-94,0,-175,-32,-243,-96r92,-159v45,50,96,75,153,75v89,0,133,-37,133,-112v0,-103,-69,-141,-184,-133r0,-162v95,6,154,-23,154,-109v0,-59,-36,-89,-109,-89v-47,0,-90,22,-129,65r-85,-144v51,-67,126,-101,223,-101v158,0,291,100,290,250v0,85,-33,152,-99,202v86,51,129,127,129,230","w":929},"\u00bd":{"d":"273,-565r0,-651r-188,112r0,-184v138,-70,237,-143,297,-220r81,0r0,943r-190,0xm380,35r-168,0r884,-1526r166,0xm1256,-955v174,0,293,92,294,254v0,51,-14,112,-44,184v-30,72,-99,185,-207,339r309,0r0,178r-600,0r0,-63r271,-421v54,-84,81,-153,81,-207v1,-49,-64,-92,-118,-92v-70,0,-125,34,-166,101r-109,-103v49,-113,145,-170,289,-170","w":1668},"\u00bc":{"d":"470,-565r-190,0r0,-651r-188,112r0,-184v137,-69,236,-143,297,-220r81,0r0,943xm1329,-1491r-882,1526r-168,0r884,-1526r166,0xm1482,-230r0,230r-190,0r0,-230r-400,0r0,-111r490,-602r100,0r0,559r89,0r0,154r-89,0xm1292,-642r-198,258r198,0r0,-258","w":1668},"\u00be":{"d":"631,-838v1,186,-133,285,-325,283v-94,0,-175,-32,-243,-96r91,-159v45,50,97,75,154,75v89,0,133,-37,133,-112v0,-103,-69,-141,-184,-133r0,-162v95,6,154,-23,154,-109v0,-59,-36,-89,-109,-89v-48,0,-91,22,-129,65r-86,-144v52,-67,127,-101,224,-101v157,0,292,100,290,250v0,85,-33,152,-99,202v86,51,129,127,129,230xm1363,-1491r-882,1526r-168,0r884,-1526r166,0xm1517,-230r0,230r-190,0r0,-230r-400,0r0,-111r490,-602r100,0r0,559r89,0r0,154r-89,0xm1327,-642r-198,258r198,0r0,-258","w":1668},"\u00b5":{"d":"525,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-86,73,-185,109,-297,109v-57,0,-104,-14,-143,-43r0,443r-250,0r0,-1491r250,0r0,676v0,137,62,206,185,206","w":1120},"\u2126":{"d":"670,-1491v437,0,655,297,655,746v0,225,-78,406,-233,543r233,0r0,202r-560,0r0,-188v180,-164,290,-277,290,-557v0,-343,-128,-515,-385,-515v-255,0,-355,234,-355,515v0,202,150,484,290,556r0,189r-560,0r0,-202r218,0v-145,-139,-218,-320,-218,-543v0,-395,236,-746,625,-746","w":1370},"\u2206":{"d":"-5,0r0,-153r536,-1312r185,0r489,1312r0,153r-1210,0xm616,-1076r-330,855r640,0","w":1198},"\u00fd":{"d":"609,172v-55,148,-263,252,-478,248r0,-221v193,0,289,-48,289,-145v0,-64,-27,-162,-80,-294r-335,-831r259,0r292,740r263,-740r259,0xm817,-1508r-226,293r-190,0r169,-293r247,0","w":1093},"\u00d7":{"d":"759,-629r314,315r-143,142r-314,-315r-317,317r-142,-141r317,-317r-321,-321r142,-142r321,321r317,-317r143,141"},"\u00ad":{"d":"109,-476r0,-235r529,0r0,235r-529,0","w":752},"\u20a3":{"d":"692,-520r0,194r-282,0r0,326r-260,0r0,-326r-112,0r0,-194r112,0r0,-945r965,0r0,231r-705,0r0,343r515,0r0,221r-515,0r0,150r282,0","w":1195},"\u011e":{"d":"80,-727v0,-445,295,-763,742,-763v161,0,297,48,410,144r-109,209v-49,-47,-213,-122,-307,-122v-298,0,-466,230,-466,539v0,297,168,516,456,514v93,0,169,-25,229,-76r0,-288r-203,0r0,-222r463,0r0,656v-112,96,-331,159,-531,161v-426,3,-684,-318,-684,-752xm744,-1769v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1375},"\u011f":{"d":"998,73v0,231,-253,347,-498,347v-164,0,-312,-48,-445,-145r158,-195v87,80,185,120,292,120v115,1,244,-28,248,-120v7,-145,-282,-75,-405,-75v-172,0,-258,-62,-258,-185v1,-80,80,-154,143,-179v-122,-79,-183,-192,-183,-337v0,-230,202,-397,436,-397v96,0,176,18,241,54r98,-114r173,157r-119,87v41,63,62,137,62,222v0,273,-217,451,-506,391v-10,0,-113,42,-100,66v0,27,23,40,69,40v46,1,176,-30,229,-30v243,0,365,98,365,293xm499,-888v-112,0,-194,81,-194,193v0,122,74,210,194,210v122,0,185,-85,185,-210v0,-106,-78,-193,-185,-193xm464,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1028},"\u0130":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm136,-1736v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":570},"\u015e":{"d":"967,-383v-2,257,-234,408,-517,408v-137,0,-260,-35,-370,-106r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-160v0,-50,-22,-95,-54,-143v-54,-82,-385,-224,-450,-291v-69,-70,-120,-165,-121,-296v-3,-232,201,-394,444,-394v169,0,294,32,373,95r-79,224v-91,-65,-188,-98,-289,-98v-113,0,-189,65,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179xm668,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1047},"\u015f":{"d":"817,-300v0,214,-180,323,-411,320v-171,-2,-209,-24,-337,-89r89,-199v75,59,159,89,253,89v97,0,146,-35,146,-104v0,-41,-15,-74,-44,-100v-29,-26,-86,-57,-171,-92v-185,-77,-277,-184,-277,-322v0,-195,174,-294,377,-294v111,0,216,25,314,75r-72,194v-55,-47,-131,-70,-228,-70v-128,0,-173,115,-88,178v29,22,90,50,184,88v159,64,265,140,265,326xm688,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":882},"\u0106":{"d":"80,-728v0,-410,273,-762,671,-762v168,0,302,34,403,103r-107,215v-58,-58,-151,-87,-280,-87v-261,0,-417,260,-417,542v0,285,137,511,398,511v138,0,246,-49,324,-148r121,210v-106,113,-261,169,-466,169v-424,2,-647,-313,-647,-753xm997,-1878r-226,293r-190,0r169,-293r247,0","w":1253},"\u0107":{"d":"65,-526v0,-340,236,-565,585,-565v125,0,233,35,325,105r-107,187v-59,-55,-137,-83,-236,-83v-198,0,-307,147,-307,356v0,225,107,337,321,337v93,0,174,-31,245,-92r92,197v-132,81,-199,102,-383,104v-331,3,-535,-210,-535,-546xm837,-1508r-226,293r-190,0r169,-293r247,0","w":1048},"\u010c":{"d":"80,-728v0,-410,273,-762,671,-762v168,0,302,34,403,103r-107,215v-58,-58,-151,-87,-280,-87v-261,0,-417,260,-417,542v0,285,137,511,398,511v138,0,246,-49,324,-148r121,210v-106,113,-261,169,-466,169v-424,2,-647,-313,-647,-753xm1151,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1253},"\u010d":{"d":"65,-526v0,-340,236,-565,585,-565v125,0,233,35,325,105r-107,187v-59,-55,-137,-83,-236,-83v-198,0,-307,147,-307,356v0,225,107,337,321,337v93,0,174,-31,245,-92r92,197v-132,81,-199,102,-383,104v-331,3,-535,-210,-535,-546xm991,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1048},"\u0111":{"d":"85,-518v0,-319,213,-576,517,-573v81,0,155,17,222,50r0,-180r-292,0r0,-141r292,0r0,-108r250,-60r0,168r79,0r0,141r-79,0r0,1221r-250,0r0,-65v-42,47,-163,85,-258,85v-309,0,-481,-216,-481,-538xm667,-191v44,0,141,-38,157,-65r0,-559v-53,-43,-109,-64,-167,-64v-208,0,-312,137,-312,354v0,223,107,334,322,334","w":1189},"\u00af":{"d":"-8,-1466r0,-209r1215,0r0,209r-1215,0"},"\u00b7":{"d":"385,-560v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181","w":752},"\u0102":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm614,-1769v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1297},"\u0103":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm484,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1091},"\u0104":{"d":"1227,394v-148,0,-263,-78,-264,-214v0,-72,14,-133,41,-182r-106,-295r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-45,0v-40,6,-106,83,-102,148v7,97,153,140,219,64r65,124v-52,39,-119,58,-202,58xm646,-1037r-176,541r352,0","w":1297},"\u0105":{"d":"944,394v-148,0,-263,-78,-264,-214v0,-99,26,-176,79,-233v-13,-19,-23,-37,-28,-54v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-32,52,-52,68,-113,77v-45,32,-67,75,-67,130v1,98,153,140,219,64r65,124v-52,39,-119,58,-202,58xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100","w":1091},"\u010e":{"d":"541,-1475v417,-6,695,273,695,685v0,527,-254,790,-761,790r-325,0r0,-1464v207,-7,338,-11,391,-11xm546,-231v285,-3,420,-232,420,-543v0,-358,-202,-508,-556,-463r0,1000v42,4,87,6,136,6xm1021,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1316},"\u010f":{"d":"1245,-1256v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm65,-518v0,-319,213,-576,517,-573v81,0,155,17,222,50r0,-429r250,-60r0,1530r-250,0r0,-65v-42,47,-163,85,-258,85v-309,0,-481,-216,-481,-538xm647,-191v44,0,141,-38,157,-65r0,-559v-53,-43,-109,-64,-167,-64v-208,0,-312,137,-312,354v0,223,107,334,322,334","w":1502},"\u0110":{"d":"541,-1475v417,-6,695,273,695,685v0,527,-254,790,-761,790r-325,0r0,-694r-124,0r0,-204r124,0r0,-566v207,-7,338,-11,391,-11xm546,-231v285,-3,420,-232,420,-543v0,-358,-202,-508,-556,-463r0,339r137,0r0,204r-137,0r0,457v42,4,87,6,136,6","w":1316},"\u0118":{"d":"954,394v-148,0,-263,-78,-264,-214v0,-71,14,-131,41,-180r-581,0r0,-1465r935,0r0,231r-675,0r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-100,0v-40,6,-106,83,-102,148v7,97,153,140,219,64r65,124v-52,39,-119,58,-202,58","w":1165},"\u0119":{"d":"734,394v-154,0,-264,-79,-264,-224v0,-58,11,-110,33,-156v-273,-33,-438,-231,-438,-538v0,-317,233,-567,532,-567v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-63,51,-150,84,-261,99v-51,30,-76,75,-76,136v1,98,153,140,219,64r65,124v-52,39,-119,58,-202,58xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235","w":1177},"\u011a":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm1041,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1165},"\u011b":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm1021,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1177},"\u0139":{"d":"150,0r0,-1465r260,0r0,1234r662,0r0,231r-922,0xm667,-1878r-226,293r-190,0r169,-293r247,0","w":1132},"\u013a":{"d":"178,-1470r250,-60r0,1204v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-1254xm597,-1878r-226,293r-190,0r169,-293r247,0","w":604},"\u013d":{"d":"775,-1256v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm150,0r0,-1465r260,0r0,1234r662,0r0,231r-922,0","w":1132},"\u013e":{"d":"635,-1256v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm178,-1470r250,-60r0,1204v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-1254","w":773},"\u013f":{"d":"150,0r0,-1465r260,0r0,1234r662,0r0,231r-922,0xm834,-560v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181","w":1132},"\u0140":{"d":"178,-1470r250,-60r0,1204v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-1254xm744,-560v-97,0,-180,-84,-180,-181v0,-97,83,-180,180,-180v97,0,180,83,180,180v0,97,-83,181,-180,181","w":894},"\u0143":{"d":"1111,20r-711,-927r0,908r-250,0r0,-1466r125,0r692,884r0,-884r250,0r0,1485r-106,0xm947,-1878r-226,293r-190,0r169,-293r247,0","w":1367},"\u0144":{"d":"662,-1091v258,-1,412,169,412,434r0,657r-250,0r0,-619v-1,-175,-56,-263,-224,-263v-82,0,-178,55,-215,108r0,774r-250,0r0,-1071r180,0r46,100v68,-80,168,-120,301,-120xm897,-1508r-226,293r-190,0r169,-293r247,0","w":1209},"\u0147":{"d":"1111,20r-711,-927r0,908r-250,0r0,-1466r125,0r692,884r0,-884r250,0r0,1485r-106,0xm1101,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1367},"\u0148":{"d":"662,-1091v258,-1,412,169,412,434r0,657r-250,0r0,-619v-1,-175,-56,-263,-224,-263v-82,0,-178,55,-215,108r0,774r-250,0r0,-1071r180,0r46,100v68,-80,168,-120,301,-120xm1021,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1209},"\u0150":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm797,-1878r-226,293r-190,0r169,-293r247,0xm1217,-1878r-226,293r-190,0r169,-293r247,0","w":1440},"\u0151":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm657,-1508r-226,293r-190,0r169,-293r247,0xm1077,-1508r-226,293r-190,0r169,-293r247,0","w":1159},"\u0154":{"d":"1114,-1048v1,183,-129,339,-271,388r433,660r-300,0r-391,-605v-39,-1,-94,-3,-165,-7r0,612r-270,0r0,-1465v15,0,71,-2,169,-7v98,-5,177,-8,237,-8v372,0,558,144,558,432xm844,-1051v-6,-171,-138,-190,-336,-194v-28,0,-57,2,-88,6r0,407v231,15,432,12,424,-219xm837,-1878r-226,293r-190,0r169,-293r247,0","w":1251},"\u0155":{"d":"607,-882v-123,-1,-222,136,-222,272r0,610r-250,0r0,-1071r250,0r0,98v70,-79,163,-118,279,-118v85,0,151,13,196,39r-106,214v-45,-29,-94,-44,-147,-44xm767,-1508r-226,293r-190,0r169,-293r247,0","w":875},"\u0158":{"d":"1114,-1048v1,183,-129,339,-271,388r433,660r-300,0r-391,-605v-39,-1,-94,-3,-165,-7r0,612r-270,0r0,-1465v15,0,71,-2,169,-7v98,-5,177,-8,237,-8v372,0,558,144,558,432xm844,-1051v-6,-171,-138,-190,-336,-194v-28,0,-57,2,-88,6r0,407v231,15,432,12,424,-219xm1001,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1251},"\u0159":{"d":"607,-882v-123,-1,-222,136,-222,272r0,610r-250,0r0,-1071r250,0r0,98v70,-79,163,-118,279,-118v85,0,151,13,196,39r-106,214v-45,-29,-94,-44,-147,-44xm941,-1530r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":875},"\u015a":{"d":"967,-383v-2,257,-234,408,-517,408v-137,0,-260,-35,-370,-106r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-160v0,-50,-22,-95,-54,-143v-54,-82,-385,-224,-450,-291v-69,-70,-120,-165,-121,-296v-3,-232,201,-394,444,-394v169,0,294,32,373,95r-79,224v-91,-65,-188,-98,-289,-98v-113,0,-189,65,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179xm787,-1878r-226,293r-190,0r169,-293r247,0","w":1047},"\u015b":{"d":"817,-300v0,214,-180,323,-411,320v-171,-2,-209,-24,-337,-89r89,-199v75,59,159,89,253,89v97,0,146,-35,146,-104v0,-41,-15,-74,-44,-100v-29,-26,-86,-57,-171,-92v-185,-77,-277,-184,-277,-322v0,-195,174,-294,377,-294v111,0,216,25,314,75r-72,194v-55,-47,-131,-70,-228,-70v-128,0,-173,115,-88,178v29,22,90,50,184,88v159,64,265,140,265,326xm677,-1508r-226,293r-190,0r169,-293r247,0","w":882},"\u021a":{"d":"565,344v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm746,-1234r0,1234r-260,0r0,-1234r-466,0r0,-231r1213,0r0,231r-487,0","w":1253},"\u021b":{"d":"425,344v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm505,20v-215,1,-332,-130,-332,-348r0,-542r-124,0r0,-201r124,0r0,-218r250,-92r0,310r294,0r0,201r-294,0r0,469v2,143,29,210,162,210v60,0,116,-16,168,-49r0,230v-58,20,-141,30,-248,30","w":812},"\u0164":{"d":"746,-1234r0,1234r-260,0r0,-1234r-466,0r0,-231r1213,0r0,231r-487,0xm1041,-1900r-368,315r-107,0r-355,-315r267,0r139,149r157,-149r267,0","w":1253},"\u0165":{"d":"918,-1125v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm505,20v-215,1,-332,-130,-332,-348r0,-542r-124,0r0,-201r124,0r0,-218r250,-92r0,310r294,0r0,201r-294,0r0,469v2,143,29,210,162,210v60,0,116,-16,168,-49r0,230v-58,20,-141,30,-248,30","w":1117},"\u016e":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm947,-1797v0,126,-124,211,-252,211v-132,0,-252,-82,-252,-211v0,-122,128,-211,252,-211v129,0,252,85,252,211xm694,-1892v-58,0,-106,37,-106,96v0,64,35,96,106,96v71,0,106,-32,106,-96v0,-64,-35,-96,-106,-96","w":1388},"\u016f":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm857,-1427v0,126,-124,211,-252,211v-132,0,-252,-82,-252,-211v0,-122,128,-211,252,-211v129,0,252,85,252,211xm604,-1522v-58,0,-106,37,-106,96v0,64,35,96,106,96v71,0,106,-32,106,-96v0,-64,-35,-96,-106,-96","w":1210},"\u0170":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm767,-1878r-226,293r-190,0r169,-293r247,0xm1187,-1878r-226,293r-190,0r169,-293r247,0","w":1388},"\u0171":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm667,-1508r-226,293r-190,0r169,-293r247,0xm1087,-1508r-226,293r-190,0r169,-293r247,0","w":1210},"\u0179":{"d":"80,0r0,-84r611,-1150r-601,0r0,-231r955,0r0,84r-613,1150r635,0r0,231r-987,0xm817,-1878r-226,293r-190,0r169,-293r247,0","w":1147},"\u017a":{"d":"65,0r0,-85r581,-768r-571,0r0,-218r936,0r0,88r-560,765r566,0r0,218r-952,0xm797,-1508r-226,293r-190,0r169,-293r247,0","w":1082},"\u017b":{"d":"80,0r0,-84r611,-1150r-601,0r0,-231r955,0r0,84r-613,1150r635,0r0,231r-987,0xm418,-1736v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1147},"\u017c":{"d":"65,0r0,-85r581,-768r-571,0r0,-218r936,0r0,88r-560,765r566,0r0,218r-952,0xm368,-1366v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1082},"\u00a4":{"d":"987,-203r-147,-148v-156,100,-343,100,-499,0r-147,148r-126,-132r147,-144v-97,-162,-98,-331,0,-493r-147,-144r126,-132r148,148v155,-100,343,-100,498,-1r147,-147r127,132r-147,144v99,162,98,331,0,493r147,144xm590,-995v-147,0,-269,123,-269,269v0,147,122,270,269,270v144,0,269,-125,269,-270v0,-145,-124,-269,-269,-269"},"\u037e":{"d":"354,-760v-95,0,-180,-85,-180,-180v0,-98,82,-180,180,-180v99,0,181,82,181,180v0,96,-85,180,-181,180xm373,-276v91,0,172,82,172,174v0,81,-19,156,-56,226v-37,70,-128,154,-272,251r-86,-111v123,-90,184,-162,184,-215v0,-17,-7,-36,-20,-57v-64,-31,-96,-74,-96,-129v0,-86,86,-139,174,-139","w":752},"\u0384":{"d":"784,-1610r-176,330r-192,0r108,-330r260,0"},"\u0385":{"d":"690,-1550r-31,336r-122,0r-35,-336r188,0xm784,-1366v0,-78,64,-141,142,-141v76,0,145,64,145,141v0,75,-68,143,-143,143v-76,0,-144,-67,-144,-143xm272,-1507v81,0,141,67,144,141v3,76,-65,143,-142,143v-76,0,-145,-67,-145,-143v0,-78,65,-141,143,-141"},"\u0386":{"d":"1026,0r-108,-297r-502,0r-101,297r-290,0r585,-1485r113,0r590,1485r-287,0xm666,-1036r-177,540r353,0xm385,-1464r-160,366r-188,0r100,-366r248,0","w":1317},"\u0387":{"d":"354,-559v-97,0,-180,-87,-180,-182v0,-96,85,-181,180,-181v96,0,181,85,181,181v0,96,-84,182,-181,182","w":752},"\u0388":{"d":"655,-1235r0,344r486,0r0,221r-486,0r0,439r664,0r0,231r-924,0r0,-1464r936,0r0,229r-676,0xm244,-1464r-160,366r-188,0r100,-366r248,0","w":1411},"\u0389":{"d":"1239,0r0,-659r-584,0r0,659r-260,0r0,-1464r260,0r0,573r584,0r0,-573r256,0r0,1464r-256,0xm244,-1464r-160,366r-188,0r100,-366r248,0","w":1647},"\u038a":{"d":"395,0r0,-1464r260,0r0,1464r-260,0xm244,-1464r-160,366r-188,0r100,-366r248,0","w":809},"\u038c":{"d":"829,25v-420,0,-610,-330,-610,-770v0,-297,131,-537,307,-655v90,-61,199,-91,324,-91v434,0,649,294,649,746v0,455,-229,770,-670,770xm850,-1260v-257,0,-361,234,-361,515v0,178,30,313,89,403v59,90,142,135,251,135v289,0,400,-219,400,-538v0,-343,-126,-515,-379,-515xm244,-1464r-160,366r-188,0r100,-366r248,0","w":1579},"\u038e":{"d":"1092,-600r0,600r-261,0r0,-600r-495,-864r276,0r349,624r348,-624r274,0xm244,-1464r-160,366r-188,0r100,-366r248,0","w":1587},"\u038f":{"d":"893,-1501v411,0,643,283,637,700v-3,236,-107,450,-230,600v81,-13,167,-20,259,-20r0,221r-590,0r0,-80v156,-205,286,-397,291,-715v4,-277,-119,-473,-375,-475v-247,-2,-378,207,-373,465v6,314,138,511,295,725r0,80r-594,0r0,-223v83,0,169,7,256,22v-151,-191,-227,-391,-227,-600v0,-389,261,-700,651,-700xm244,-1464r-160,366r-188,0r100,-366r248,0","w":1626},"\u0390":{"d":"406,-338v1,140,35,209,141,242v-42,76,-112,114,-211,114v-121,0,-182,-80,-182,-241r0,-848r252,0r0,733xm373,-1550r-33,336r-123,0r-33,-336r189,0xm461,-1366v0,-78,63,-141,141,-141v77,0,143,64,143,141v0,75,-68,143,-143,143v-77,0,-141,-67,-141,-143xm-188,-1366v0,-79,64,-141,143,-141v78,0,141,63,141,141v0,76,-65,143,-141,143v-78,0,-143,-65,-143,-143","w":594},"\u0391":{"d":"1006,0r-109,-297r-502,0r-100,297r-291,0r586,-1485r112,0r590,1485r-286,0xm645,-1036r-176,540r352,0","w":1296},"\u0392":{"d":"1139,-434v0,280,-247,434,-541,434r-448,0r0,-1464v230,-10,368,-15,415,-15v278,-2,484,117,486,377v0,116,-62,208,-185,275v182,63,273,194,273,393xm410,-1255r0,350v52,3,94,4,127,4v169,0,254,-64,254,-191v0,-113,-77,-170,-232,-170v-40,0,-90,2,-149,7xm868,-467v-6,-191,-109,-237,-327,-238v-47,0,-90,1,-131,3r0,485v251,20,466,0,458,-250","w":1219},"\u0393":{"d":"1061,-1235r-651,0r0,1235r-260,0r0,-1464r911,0r0,229","w":1116},"\u0395":{"d":"410,-1235r0,344r485,0r0,221r-485,0r0,439r663,0r0,231r-923,0r0,-1464r935,0r0,229r-675,0","w":1165},"\u0396":{"d":"80,0r0,-84r610,-1151r-600,0r0,-229r954,0r0,84r-612,1149r635,0r0,231r-987,0","w":1147},"\u0397":{"d":"993,0r0,-659r-583,0r0,659r-260,0r0,-1464r260,0r0,573r583,0r0,-573r256,0r0,1464r-256,0","w":1401},"\u0398":{"d":"725,25v-437,0,-645,-331,-645,-770v0,-399,253,-746,665,-746v426,0,646,305,646,746v0,429,-236,770,-666,770xm739,-1266v-272,0,-397,244,-397,521v0,316,106,544,389,544v286,0,398,-239,397,-544v0,-347,-130,-521,-389,-521xm1012,-637r-553,0r0,-223r553,0r0,223","w":1470},"\u0399":{"d":"156,0r0,-1464r260,0r0,1464r-260,0","w":569},"\u039a":{"d":"981,0r-408,-625r-163,224r0,401r-260,0r0,-1464r260,0r0,700r497,-700r297,0r-459,639r547,825r-311,0","w":1264},"\u039b":{"d":"1280,0r-299,0r-342,-989r-338,989r-293,0r574,-1485r120,0","w":1288},"\u039c":{"d":"1516,0r-252,0r-152,-788r-295,808r-92,0r-297,-808r-158,788r-250,0r295,-1464r138,0r317,987r309,-987r138,0","w":1526},"\u039d":{"d":"1110,20r-711,-927r0,907r-249,0r0,-1464r124,0r693,882r0,-882r250,0r0,1484r-107,0","w":1366},"\u039e":{"d":"1190,0r-1088,0r0,-219r418,0r0,-459r-305,0r0,-207r305,0r0,-362r-405,0r0,-217r1063,0r0,217r-406,0r0,362r305,0r0,207r-305,0r0,459r418,0r0,219","w":1292},"\u039f":{"d":"690,25v-420,0,-610,-330,-610,-770v0,-394,242,-746,631,-746v434,0,649,294,649,746v0,455,-229,770,-670,770xm711,-1260v-258,0,-361,233,-361,515v0,178,29,313,88,403v59,90,143,135,252,135v289,0,400,-219,400,-538v0,-343,-126,-515,-379,-515","w":1440},"\u03a0":{"d":"1210,0r-260,0r0,-1235r-540,0r0,1235r-260,0r0,-1464r1060,0r0,1464","w":1360},"\u03a1":{"d":"410,-539r0,539r-260,0r0,-1464v191,-7,293,-11,305,-11v228,0,397,35,505,106v108,71,162,182,162,333v0,336,-198,504,-594,504v-30,0,-69,-2,-118,-7xm410,-770v247,21,446,-11,446,-246v0,-151,-122,-227,-367,-227v-37,0,-63,1,-79,4r0,469","w":1202},"\u03a3":{"d":"1112,-1235r-571,0r338,430r-410,574r637,0r0,231r-1047,0r0,-84r521,-696r-482,-602r0,-82r1014,0r0,229","w":1192},"\u03a4":{"d":"745,-1235r0,1235r-260,0r0,-1235r-465,0r0,-229r1213,0r0,229r-488,0","w":1253},"\u03a5":{"d":"760,-600r0,600r-260,0r0,-600r-496,-864r277,0r348,624r348,-624r274,0","w":1255},"\u03a6":{"d":"76,-739v0,-365,252,-616,610,-633r0,-152r258,0r0,152v368,17,608,242,608,618v0,365,-250,613,-608,631r0,152r-258,0r0,-152v-367,-17,-610,-241,-610,-616xm690,-324r0,-850v-240,31,-360,174,-360,429v-1,240,139,397,360,421xm940,-322v239,-30,358,-173,358,-428v0,-241,-137,-397,-358,-421r0,849","w":1628},"\u03a7":{"d":"942,0r-346,-526r-320,526r-272,0r440,-760r-403,-706r264,2r297,493r328,-493r272,0r-465,708r488,756r-283,0","w":1231},"\u03a8":{"d":"961,-539v201,-20,327,-160,327,-370r0,-555r256,0r0,551v-2,348,-245,554,-579,587r0,330r-258,0r0,-328v-343,-27,-584,-223,-584,-573r0,-567r256,0r0,546v0,217,126,358,332,377r0,-923r250,0r0,925","w":1667},"\u03aa":{"d":"156,0r0,-1464r260,0r0,1464r-260,0xm438,-1729v0,-77,64,-141,142,-141v75,0,143,66,143,141v0,76,-68,144,-143,144v-77,0,-142,-68,-142,-144xm-150,-1729v0,-79,65,-141,144,-141v77,0,141,64,141,141v0,76,-65,144,-141,144v-78,0,-144,-66,-144,-144","w":569},"\u03ab":{"d":"760,-600r0,600r-260,0r0,-600r-496,-864r277,0r348,624r348,-624r274,0xm805,-1729v0,-77,63,-141,141,-141v76,0,144,65,144,141v0,76,-69,144,-144,144v-77,0,-141,-68,-141,-144xm184,-1729v0,-79,65,-141,144,-141v77,0,141,64,141,141v0,76,-65,144,-141,144v-78,0,-144,-66,-144,-144","w":1255},"\u03ac":{"d":"72,-530v0,-311,201,-562,512,-562v117,0,207,35,268,105v42,-70,92,-105,149,-105v73,0,123,25,148,76v-71,33,-107,117,-107,254r0,434v0,145,37,235,111,269v-24,53,-77,79,-158,79v-64,0,-119,-39,-164,-116v-69,77,-169,116,-301,116v-296,-1,-458,-232,-458,-550xm326,-530v4,190,79,342,264,344v74,0,143,-34,207,-101r0,-532v-55,-44,-116,-66,-185,-66v-180,-1,-290,165,-286,355xm874,-1610r-176,330r-190,0r108,-330r258,0","w":1217},"\u03ad":{"d":"369,-309v0,96,88,131,198,131v120,0,227,-36,320,-107r98,191v-133,78,-286,117,-459,117v-223,0,-417,-100,-417,-308v0,-128,93,-220,200,-262v-104,-25,-179,-112,-180,-233v0,-75,36,-148,109,-214v159,-144,472,-116,700,-26r-70,201v-106,-48,-213,-72,-321,-72v-85,0,-160,41,-160,119v0,92,87,129,201,129v58,0,115,-2,172,-6r0,192v-68,-4,-130,-6,-185,-6v-114,0,-206,53,-206,154xm836,-1610r-177,330r-190,0r109,-330r258,0","w":1040},"\u03ae":{"d":"666,-1092v251,-1,405,173,405,435r0,933r-250,60r0,-954v0,-177,-55,-265,-217,-265v-84,0,-171,53,-211,115r0,768r-250,0r0,-1071r181,0r47,106v72,-85,170,-127,295,-127xm918,-1610r-177,330r-190,0r108,-330r259,0","w":1210},"\u03af":{"d":"406,-338v1,140,35,209,141,242v-42,76,-112,114,-211,114v-121,0,-182,-80,-182,-241r0,-848r252,0r0,733xm520,-1610r-176,330r-190,0r108,-330r258,0","w":594},"\u03b0":{"d":"594,-190v157,0,204,-90,205,-259r0,-622r250,0r0,594v1,313,-153,495,-459,495v-303,0,-455,-164,-455,-491r0,-598r250,0r0,616v0,177,70,265,209,265xm678,-1550r-33,336r-123,0r-33,-336r189,0xm772,-1366v0,-78,64,-141,141,-141v76,0,144,64,144,141v0,75,-69,143,-144,143v-76,0,-141,-67,-141,-143xm117,-1366v0,-78,65,-141,143,-141v78,0,141,63,141,141v0,76,-65,143,-141,143v-78,0,-143,-65,-143,-143","w":1184},"\u03b1":{"d":"72,-530v0,-311,201,-562,512,-562v117,0,207,35,268,105v42,-70,92,-105,149,-105v73,0,123,25,148,76v-71,33,-107,117,-107,254r0,434v0,145,37,235,111,269v-24,53,-77,79,-158,79v-64,0,-119,-39,-164,-116v-69,77,-169,116,-301,116v-296,-1,-458,-232,-458,-550xm326,-530v4,190,79,342,264,344v74,0,143,-34,207,-101r0,-532v-55,-44,-116,-66,-185,-66v-180,-1,-290,165,-286,355","w":1217},"\u03b2":{"d":"1024,-1161v-1,163,-97,280,-227,325v190,47,327,179,331,394v6,258,-229,462,-493,462v-127,0,-226,-28,-297,-83r-55,83r-142,0r0,-1030v-4,-294,171,-508,459,-508v230,0,426,138,424,357xm782,-1143v0,-104,-77,-176,-188,-176v-138,0,-207,97,-207,291r0,108r148,0v145,2,248,-82,247,-223xm874,-428v0,-196,-148,-304,-356,-301r-131,0r0,459v37,60,107,90,209,90v167,0,278,-88,278,-248"},"\u03b3":{"d":"1151,-1071r-432,1048r0,443r-254,0r0,-432v-63,-206,-123,-383,-181,-530v-58,-147,-101,-238,-131,-274v-33,-39,-64,-56,-114,-54r0,-209v164,-2,267,30,333,131v89,136,182,427,236,635r279,-758r264,0","w":1161},"\u03b4":{"d":"584,20v-329,0,-512,-227,-512,-559v0,-210,93,-385,226,-470v94,-59,188,-86,308,-60r-293,-361r0,-79r736,0r0,200v-235,0,-362,-3,-381,-8r-2,6v25,15,89,85,191,211v102,126,168,230,198,312v30,82,45,164,45,247v3,325,-192,561,-516,561xm604,-905v-186,-1,-272,167,-272,364v0,238,85,357,254,357v179,0,255,-164,254,-357v-1,-158,-36,-253,-113,-340v-15,-16,-56,-24,-123,-24","w":1171},"\u03b5":{"d":"369,-309v0,96,88,131,198,131v120,0,227,-36,320,-107r98,191v-133,78,-286,117,-459,117v-223,0,-417,-100,-417,-308v0,-128,93,-220,200,-262v-104,-25,-179,-112,-180,-233v0,-75,36,-148,109,-214v159,-144,472,-116,700,-26r-70,201v-106,-48,-213,-72,-321,-72v-85,0,-160,41,-160,119v0,92,87,129,201,129v58,0,115,-2,172,-6r0,192v-68,-4,-130,-6,-185,-6v-114,0,-206,53,-206,154","w":1040},"\u03b6":{"d":"596,238v72,1,129,-40,129,-107v0,-45,-15,-76,-47,-93v-32,-17,-100,-30,-203,-34v-245,-10,-402,-133,-403,-377v0,-299,179,-612,538,-938r-2,-6v-19,5,-146,8,-381,8r0,-200r740,0r0,79v-187,204,-339,390,-454,559v-115,169,-173,324,-173,465v0,174,88,198,293,217v209,20,328,107,334,293v6,187,-168,316,-363,316v-55,0,-104,-5,-147,-14r28,-183v33,10,70,15,111,15","w":954},"\u03b7":{"d":"666,-1092v251,-1,405,173,405,435r0,933r-250,60r0,-954v-1,-176,-54,-265,-217,-265v-84,0,-171,53,-211,115r0,768r-250,0r0,-1071r181,0r47,106v72,-85,170,-127,295,-127","w":1210},"\u03b8":{"d":"221,-174v-170,-235,-163,-911,1,-1143v91,-129,211,-199,374,-199v155,0,277,65,364,196v87,131,130,319,130,564v0,255,-42,449,-128,580v-86,131,-211,196,-376,196v-157,0,-274,-68,-365,-194xm346,-872r490,0v-17,-294,-101,-441,-250,-441v-143,0,-223,147,-240,441xm342,-674v11,328,96,492,254,492v153,0,235,-164,244,-492r-498,0","w":1182},"\u03b9":{"d":"406,-338v1,140,35,209,141,242v-42,76,-112,114,-211,114v-121,0,-182,-80,-182,-241r0,-848r252,0r0,733","w":594},"\u03ba":{"d":"844,0r-301,-453r-150,164r0,289r-250,0r0,-1071r250,0r0,481r406,-481r301,0r-398,442r455,629r-313,0","w":1176},"\u03bb":{"d":"496,-1098v-32,-106,-58,-204,-174,-206v-41,0,-86,12,-134,35r-67,-209v204,-67,415,-55,516,103v34,53,66,117,92,195r395,1180r-276,0r-240,-793r-305,793r-278,0","w":1145},"\u03bd":{"d":"582,20r-90,0r-482,-1091r281,0r258,672r266,-672r266,0","w":1092},"\u03be":{"d":"588,-1315v-116,0,-201,72,-199,185v3,215,248,206,473,206r0,205r-192,0v-159,-2,-342,130,-332,299v10,163,89,211,283,230v185,18,285,54,339,182v98,231,-109,428,-342,428v-55,0,-104,-5,-147,-14r29,-183v33,10,70,15,110,15v70,2,129,-41,129,-107v0,-41,-15,-70,-44,-89v-29,-19,-103,-34,-220,-38v-234,-9,-407,-155,-403,-393v3,-215,152,-355,327,-424v-152,-25,-270,-147,-270,-315v-1,-242,213,-390,471,-390v109,0,223,21,340,64r-70,203v-93,-43,-187,-64,-282,-64","w":987},"\u03bf":{"d":"586,20v-326,0,-514,-228,-514,-559v0,-229,104,-407,252,-489v76,-43,164,-64,262,-64v327,0,514,224,514,553v0,334,-194,559,-514,559xm586,-887v-173,0,-254,153,-254,348v0,237,85,355,254,355v175,0,254,-153,254,-355v0,-232,-85,-348,-254,-348","w":1171},"\u03c1":{"d":"1139,-545v0,321,-202,565,-525,565v-85,0,-163,-18,-235,-55r0,455r-250,0r0,-909v-3,-341,174,-603,504,-603v311,0,506,234,506,547xm625,-887v-169,0,-244,157,-244,355r0,278v45,35,142,66,215,66v198,0,283,-140,283,-353v0,-196,-86,-346,-254,-346","w":1210},"\u03c2":{"d":"72,-512v1,-335,202,-580,557,-580v123,0,229,34,319,103r-106,186v-65,-53,-145,-80,-238,-80v-171,1,-275,164,-272,351v3,178,116,278,274,311v137,29,234,69,288,119v54,50,81,118,81,206v0,187,-165,316,-361,316v-55,0,-104,-5,-147,-14r29,-183v91,30,239,22,239,-88v0,-76,-49,-122,-147,-139v-237,-38,-356,-87,-452,-252v-43,-74,-64,-160,-64,-256","w":981},"\u03c3":{"d":"72,-510v0,-333,230,-561,563,-561r534,0r0,209r-268,-4v134,119,201,247,201,383v0,306,-200,499,-514,503v-316,4,-516,-216,-516,-530xm598,-184v163,0,246,-135,244,-303v-2,-162,-102,-303,-211,-379v-200,0,-299,136,-299,342v0,188,88,340,266,340","w":1223},"\u03c4":{"d":"604,18v-194,1,-299,-120,-299,-317r0,-561r-266,0r0,-211r879,0r0,211r-361,0r0,534v0,91,33,136,100,136v35,0,74,-8,115,-25r0,215v-61,12,-117,18,-168,18","w":965},"\u03c5":{"d":"594,-190v157,0,204,-90,205,-259r0,-622r250,0r0,594v1,313,-153,495,-459,495v-303,0,-455,-164,-455,-491r0,-598r250,0r0,616v0,177,70,265,209,265","w":1184},"\u03c6":{"d":"647,18v-346,-12,-575,-209,-575,-548v0,-269,142,-462,334,-566r118,156v-137,98,-205,228,-205,391v0,212,131,357,330,371r0,-477v-6,-278,108,-431,340,-439v284,-9,483,257,479,545v-4,338,-239,549,-579,567r0,402r-242,0r0,-402xm1001,-899v-91,0,-115,59,-114,182r0,541v197,-12,335,-146,334,-350v0,-109,-21,-198,-65,-268v-44,-70,-96,-105,-155,-105","w":1540},"\u03c7":{"d":"817,0r-252,-369r-258,369r-291,0r422,-545r-393,-526r289,0r237,340r238,-340r281,0r-392,514r424,557r-305,0","w":1141},"\u03c8":{"d":"1452,-563v0,357,-179,551,-537,581r0,402r-241,0r0,-402v-362,-25,-543,-216,-543,-573r0,-516r244,0r0,526v0,214,104,347,301,365r0,-891r237,0r0,893v199,-23,299,-143,299,-361r0,-532r240,0r0,508","w":1583},"\u03c9":{"d":"332,-492v0,165,47,306,184,306v47,0,88,-18,120,-55v32,-37,48,-61,48,-72r0,-193v0,-107,-3,-196,-8,-268r252,0v-4,89,-6,177,-6,262r0,186v39,93,100,140,182,140v112,0,168,-100,168,-299v0,-180,-74,-329,-223,-447r153,-168v190,126,321,327,324,615v4,296,-143,505,-426,505v-133,0,-232,-50,-299,-149v-72,99,-173,149,-303,149v-279,0,-420,-204,-420,-495v0,-252,108,-460,323,-625r154,168v-149,115,-223,262,-223,440","w":1604},"\u03ca":{"d":"406,-338v1,140,35,209,141,242v-42,76,-112,114,-211,114v-121,0,-182,-80,-182,-241r0,-848r252,0r0,733xm406,-1366v0,-78,63,-141,141,-141v77,0,143,64,143,141v0,75,-68,143,-143,143v-77,0,-141,-67,-141,-143xm-135,-1366v0,-78,65,-141,143,-141v78,0,142,63,142,141v0,76,-67,143,-142,143v-77,0,-143,-65,-143,-143","w":594},"\u03cb":{"d":"594,-190v157,0,204,-90,205,-259r0,-622r250,0r0,594v1,313,-153,495,-459,495v-303,0,-455,-164,-455,-491r0,-598r250,0r0,616v0,177,70,265,209,265xm727,-1366v0,-78,63,-141,141,-141v76,0,144,64,144,141v0,75,-68,143,-144,143v-76,0,-141,-67,-141,-143xm180,-1366v0,-80,65,-141,144,-141v77,0,141,63,141,141v0,75,-67,143,-141,143v-78,0,-144,-65,-144,-143","w":1184},"\u03cc":{"d":"586,20v-326,0,-514,-228,-514,-559v0,-229,104,-407,252,-489v76,-43,164,-64,262,-64v327,0,514,224,514,553v0,334,-194,559,-514,559xm586,-887v-173,0,-254,153,-254,348v0,237,85,355,254,355v175,0,254,-153,254,-355v0,-232,-85,-348,-254,-348xm850,-1610r-176,330r-191,0r109,-330r258,0","w":1171},"\u03cd":{"d":"594,-190v157,0,204,-90,205,-259r0,-622r250,0r0,594v1,313,-153,495,-459,495v-303,0,-455,-164,-455,-491r0,-598r250,0r0,616v0,177,70,265,209,265xm860,-1610r-176,330r-190,0r108,-330r258,0","w":1184},"\u03ce":{"d":"332,-492v0,165,47,306,184,306v47,0,88,-18,120,-55v32,-37,48,-61,48,-72r0,-193v0,-107,-3,-196,-8,-268r252,0v-4,89,-6,177,-6,262r0,186v39,93,100,140,182,140v112,0,168,-100,168,-299v0,-180,-74,-329,-223,-447r153,-168v190,126,320,327,324,615v4,295,-144,505,-426,505v-133,0,-232,-50,-299,-149v-72,99,-173,149,-303,149v-279,0,-420,-204,-420,-495v0,-252,108,-460,323,-625r154,168v-149,115,-223,262,-223,440xm1079,-1610r-176,330r-190,0r108,-330r258,0","w":1604},"\u0401":{"d":"410,-1235r0,344r485,0r0,221r-485,0r0,439r663,0r0,231r-923,0r0,-1464r935,0r0,229r-675,0xm721,-1729v0,-76,62,-137,137,-137v73,0,135,65,135,137v0,74,-61,140,-135,140v-73,0,-137,-67,-137,-140xm272,-1729v0,-76,60,-137,136,-137v73,0,137,65,137,137v0,73,-64,140,-137,140v-73,0,-136,-66,-136,-140","w":1180},"\u0402":{"d":"946,-903v318,-1,514,162,514,487v0,296,-224,469,-538,418r0,-215v173,34,274,-30,274,-219v0,-170,-111,-263,-283,-262v-55,0,-123,7,-204,22r0,672r-260,0r0,-1239r-400,0r0,-225r1118,0r0,225r-458,0r0,358v85,-15,164,-22,237,-22","w":1546},"\u0403":{"d":"1061,-1235r-649,0r0,1235r-262,0r0,-1464r911,0r0,229xm928,-1919r-223,330r-199,0r168,-330r254,0","w":1126},"\u0404":{"d":"338,-657v7,254,154,453,401,454v133,0,246,-45,340,-135r131,207v-131,104,-294,156,-487,156v-418,0,-643,-320,-643,-752v0,-427,262,-764,686,-764v135,0,268,32,399,96r-116,226v-159,-125,-418,-134,-561,5v-71,69,-116,165,-134,292r537,0r0,215r-553,0","w":1253},"\u0405":{"d":"971,-383v-2,258,-233,408,-516,408v-138,0,-262,-36,-371,-107r96,-231v101,71,202,106,303,106v153,0,230,-53,230,-160v0,-45,-16,-89,-49,-135v-33,-46,-110,-98,-228,-160v-182,-96,-245,-116,-316,-264v-24,-49,-32,-107,-32,-170v-3,-233,199,-395,442,-395v170,0,294,32,373,96r-78,224v-92,-66,-188,-99,-288,-99v-112,0,-190,70,-191,172v0,83,93,171,281,262v134,65,225,132,273,202v48,70,71,153,71,251","w":1051},"\u0406":{"d":"156,0r0,-1464r260,0r0,1464r-260,0","w":569},"\u0407":{"d":"156,0r0,-1464r260,0r0,1464r-260,0xm381,-1729v0,-76,62,-137,137,-137v73,0,135,65,135,137v0,75,-60,140,-135,140v-73,0,-137,-67,-137,-140xm-68,-1729v0,-76,59,-137,136,-137v73,0,137,65,137,137v0,74,-64,140,-137,140v-73,0,-136,-66,-136,-140","w":569},"\u0408":{"d":"983,-555v0,387,-151,572,-522,575v-238,2,-405,-134,-418,-360r233,0v21,86,92,129,213,129v189,0,234,-134,234,-336r0,-917r260,0r0,909","w":1118},"\u0409":{"d":"1978,-459v-2,294,-224,459,-538,459r-422,0r0,-1243r-285,0v-44,425,-128,886,-325,1115v-83,96,-209,142,-375,142r0,-239v117,-3,164,-22,219,-103v166,-243,237,-748,280,-1136r738,0r0,549v399,-57,711,83,708,456xm1720,-473v0,-170,-117,-249,-309,-246v-32,0,-79,3,-141,10r0,494v70,4,114,6,131,6v217,2,319,-76,319,-264","w":2060},"\u040a":{"d":"1862,-459v-3,292,-219,459,-539,459r-422,0r0,-659r-500,0r0,659r-251,0r0,-1464r251,0r0,573r500,0r0,-573r252,0r0,549v400,-57,713,83,709,456xm1604,-473v0,-170,-118,-249,-310,-246v-32,0,-79,3,-141,10r0,494v70,4,114,6,131,6v218,2,320,-76,320,-264","w":1944},"\u040b":{"d":"938,-903v306,-2,504,158,504,457r0,446r-264,0r0,-426v2,-175,-105,-268,-277,-268v-62,0,-126,7,-192,22r0,672r-260,0r0,-1239r-400,0r0,-225r1110,0r0,225r-450,0r0,358v83,-15,160,-22,229,-22","w":1573},"\u040c":{"d":"1221,6v-104,17,-239,-3,-293,-60v-44,-47,-79,-116,-97,-216v-47,-257,-144,-392,-423,-394r0,664r-258,0r0,-1464r258,0r0,579v251,4,375,-99,417,-313v35,-181,84,-273,285,-277v37,0,67,2,92,5r0,231v-29,-4,-96,-4,-106,19v-12,14,-24,47,-35,98v-36,174,-165,308,-340,346v201,62,300,193,350,420v22,99,17,127,111,133v14,0,27,-1,39,-4r0,233xm975,-1919r-223,330r-199,0r168,-330r254,0","w":1311},"\u040e":{"d":"1260,-1464v-83,299,-187,573,-312,824v-125,251,-245,422,-360,515v-115,93,-266,139,-455,139r0,-239v203,14,321,-57,406,-183r-525,-1056r289,0r385,852v119,-241,220,-525,303,-852r269,0xm1040,-1892v-35,188,-164,307,-374,307v-210,0,-336,-120,-371,-307r209,-43v15,120,71,180,166,180v101,0,156,-59,166,-178","w":1272},"\u040f":{"d":"1210,0r-413,0r0,420r-234,0r0,-420r-413,0r0,-1464r258,0r0,1237r544,0r0,-1237r258,0r0,1464","w":1300},"\u0410":{"d":"1010,0r-109,-297r-502,0r-100,297r-291,0r586,-1485r113,0r589,1485r-286,0xm649,-1036r-176,540r352,0","w":1305},"\u0411":{"d":"1139,-444v0,290,-228,444,-541,444r-448,0r0,-1464r884,0r0,225r-626,0r0,348v72,-7,135,-10,190,-10v322,-2,541,148,541,457xm870,-459v0,-169,-109,-236,-313,-233v-47,0,-96,3,-149,8r0,467v54,4,101,6,141,6v206,1,321,-66,321,-248","w":1225},"\u0412":{"d":"1139,-434v0,280,-247,434,-541,434r-448,0r0,-1464v230,-10,368,-15,415,-15v278,-2,484,117,486,377v0,117,-62,209,-185,275v182,63,273,194,273,393xm410,-1255r0,350v52,3,94,4,127,4v169,0,254,-64,254,-191v0,-113,-77,-170,-232,-170v-40,0,-90,2,-149,7xm868,-467v-6,-191,-109,-237,-327,-238v-47,0,-90,1,-131,3r0,485v251,20,466,0,458,-250","w":1223},"\u0413":{"d":"1061,-1235r-649,0r0,1235r-262,0r0,-1464r911,0r0,229","w":1126},"\u0414":{"d":"1448,420r-229,0r0,-420r-959,0r0,420r-229,0r0,-635r100,0v80,-103,161,-248,243,-433v82,-185,159,-457,230,-816r680,0r0,1249r164,0r0,635xm1034,-215r0,-1036r-250,0v-59,374,-202,800,-376,1036r626,0","w":1493},"\u0415":{"d":"410,-1235r0,344r485,0r0,221r-485,0r0,439r663,0r0,231r-923,0r0,-1464r935,0r0,229r-675,0","w":1180},"\u0416":{"d":"1819,6v-99,17,-224,-2,-275,-62v-41,-48,-74,-117,-90,-216v-42,-263,-166,-394,-371,-394r0,666r-247,0r0,-666v-215,0,-341,130,-383,390v-29,179,-91,288,-277,288v-38,0,-66,-2,-84,-6r0,-231v35,9,88,3,105,-18v13,-16,26,-52,36,-111v34,-200,155,-355,328,-418v-175,-29,-278,-144,-319,-344v-15,-76,-16,-127,-92,-127v-23,0,-36,1,-41,2r0,-229v23,-3,53,-5,90,-5v185,4,234,103,264,275v37,211,160,317,373,317r0,-581r247,0r0,581v214,-1,334,-121,367,-313v30,-175,76,-275,262,-279v37,0,67,2,90,5r0,229v-29,-5,-88,-3,-100,21v-13,16,-25,49,-35,100v-32,168,-149,307,-311,344v175,59,283,198,321,418v18,108,37,147,142,133r0,231","w":1911},"\u0417":{"d":"999,-1114v0,153,-89,271,-206,313v155,55,262,177,262,371v0,300,-239,455,-559,455v-174,0,-322,-38,-445,-113r113,-227v105,77,219,116,344,116v162,0,280,-79,280,-229v0,-187,-136,-265,-335,-264v-59,0,-109,2,-150,6r0,-213v52,5,104,8,156,8v160,1,276,-60,278,-207v1,-119,-106,-173,-231,-172v-91,0,-191,29,-301,88r-90,-215v147,-63,284,-94,411,-94v269,0,472,124,473,377","w":1141},"\u0418":{"d":"1286,0r-260,0r0,-985r-766,1008r-110,0r0,-1487r260,0r0,985r766,-1008r110,0r0,1487","w":1438},"\u0419":{"d":"1286,0r-260,0r0,-985r-766,1008r-110,0r0,-1487r260,0r0,985r766,-1008r110,0r0,1487xm1120,-1892v-35,188,-164,307,-375,307v-209,0,-336,-120,-370,-307r209,-43v15,120,71,180,166,180v100,0,155,-59,165,-178","w":1473},"\u041a":{"d":"1221,6v-104,17,-239,-3,-293,-60v-44,-47,-79,-116,-97,-216v-47,-257,-144,-392,-423,-394r0,664r-258,0r0,-1464r258,0r0,579v251,4,375,-99,417,-313v35,-181,84,-273,285,-277v37,0,67,2,92,5r0,231v-29,-4,-96,-4,-106,19v-12,14,-24,47,-35,98v-36,174,-165,308,-340,346v201,62,300,193,350,420v22,99,17,127,111,133v14,0,27,-1,39,-4r0,233","w":1311},"\u041b":{"d":"1278,0r-256,0r0,-1243r-283,0v-35,350,-112,761,-242,991v-103,182,-215,260,-464,266r0,-239v117,-3,165,-21,221,-102v167,-242,239,-750,283,-1137r741,0r0,1464","w":1430},"\u041c":{"d":"1544,0r-252,0r-151,-788r-295,808r-92,0r-297,-808r-158,788r-250,0r295,-1464r137,0r318,987r309,-987r137,0","w":1593},"\u041d":{"d":"993,0r0,-659r-583,0r0,659r-260,0r0,-1464r260,0r0,573r583,0r0,-573r256,0r0,1464r-256,0","w":1401},"\u041e":{"d":"690,25v-420,0,-610,-330,-610,-770v0,-394,242,-746,631,-746v434,0,649,294,649,746v0,455,-229,770,-670,770xm711,-1260v-258,0,-361,233,-361,515v0,178,29,313,88,403v59,90,143,135,252,135v289,0,400,-219,400,-538v0,-343,-126,-515,-379,-515","w":1440},"\u041f":{"d":"1210,0r-260,0r0,-1235r-540,0r0,1235r-260,0r0,-1464r1060,0r0,1464","w":1362},"\u0420":{"d":"410,-539r0,539r-260,0r0,-1464v191,-7,293,-11,305,-11v228,0,397,35,505,106v108,71,162,182,162,333v0,336,-198,504,-594,504v-30,0,-69,-2,-118,-7xm410,-770v247,21,446,-11,446,-246v0,-151,-122,-227,-367,-227v-37,0,-63,1,-79,4r0,469","w":1206},"\u0421":{"d":"80,-727v0,-408,270,-764,672,-764v165,0,299,35,401,105r-106,215v-59,-59,-152,-89,-279,-89v-266,0,-418,268,-418,543v0,277,134,511,398,510v138,0,246,-49,323,-147r123,211v-107,112,-262,168,-467,168v-426,0,-647,-313,-647,-752","w":1253},"\u0422":{"d":"784,-1235r0,1235r-260,0r0,-1235r-465,0r0,-229r1213,0r0,229r-488,0","w":1331},"\u0423":{"d":"1260,-1464v-83,299,-187,573,-312,824v-125,251,-245,422,-360,515v-115,93,-266,139,-455,139r0,-239v203,14,321,-57,406,-183r-525,-1056r289,0r385,852v119,-241,220,-525,303,-852r269,0","w":1272},"\u0424":{"d":"84,-735v-1,-355,252,-603,600,-621r0,-157r252,0r0,157v356,24,598,241,598,608v1,355,-250,606,-598,623r0,158r-252,0r0,-158v-356,-24,-600,-242,-600,-610xm932,-317v228,-26,360,-177,360,-428v0,-240,-140,-393,-360,-418r0,846xm688,-1163v-230,25,-362,175,-362,426v0,239,143,394,362,420r0,-846","w":1618},"\u0425":{"d":"954,0r-346,-526r-319,526r-273,0r441,-760r-404,-706r264,2r297,493r328,-493r272,0r-464,708r487,756r-283,0","w":1253},"\u0426":{"d":"1348,420r-234,0r0,-420r-964,0r0,-1464r258,0r0,1237r516,0r0,-1237r256,0r0,1237r168,0r0,647","w":1393},"\u0427":{"d":"393,-1028v-1,171,97,263,269,262v71,0,146,-10,223,-29r0,-669r260,0r0,1464r-260,0r0,-582v-87,19,-173,29,-258,29v-307,2,-504,-159,-504,-459r0,-452r270,0r0,436","w":1296},"\u0428":{"d":"1753,0r-1603,0r0,-1464r247,0r0,1247r432,0r0,-1247r248,0r0,1247r432,0r0,-1247r244,0r0,1464","w":1905},"\u0429":{"d":"1917,420r-231,0r0,-420r-1536,0r0,-1464r247,0r0,1247r432,0r0,-1247r248,0r0,1247r432,0r0,-1247r244,0r0,1241r164,0r0,643","w":1962},"\u042a":{"d":"1507,-459v-1,294,-222,459,-536,459r-449,0r0,-1237r-469,0r0,-227r725,0r0,551v65,-9,132,-13,199,-13v323,-2,530,155,530,467xm913,-211v227,1,330,-66,330,-262v0,-163,-106,-244,-317,-244v-35,0,-84,3,-148,10r0,490v73,4,118,6,135,6","w":1589},"\u042b":{"d":"1122,-459v-1,294,-224,459,-538,459r-434,0r0,-1464r253,0r0,551v81,-9,143,-13,185,-13v323,-2,534,156,534,467xm862,-473v0,-219,-216,-272,-459,-234r0,490v73,4,118,6,134,6v221,4,325,-79,325,-262xm1567,0r-256,0r0,-1464r256,0r0,1464","w":1718},"\u042c":{"d":"1159,-457v-1,294,-226,457,-541,457r-468,0r0,-1464r260,0r0,549v85,-9,155,-13,208,-13v323,-3,541,160,541,471xm891,-471v0,-168,-130,-249,-316,-246v-37,0,-92,3,-165,10r0,490v56,4,106,6,151,6v220,0,330,-87,330,-260","w":1241},"\u042d":{"d":"915,-872v-23,-224,-145,-394,-372,-394v-122,0,-234,36,-336,107r-111,-215v133,-78,287,-117,461,-117v417,-1,627,318,627,754v0,445,-248,762,-680,762v-171,0,-322,-44,-451,-131r113,-226v181,161,473,180,633,13v73,-76,113,-190,123,-338r-551,0r0,-215r544,0","w":1264},"\u042e":{"d":"1219,29v-386,0,-565,-303,-580,-691r-236,0r0,662r-253,0r0,-1464r253,0r0,575r244,0v49,-333,243,-594,592,-598v410,-5,606,325,606,746v0,433,-211,770,-626,770xm1225,-197v121,0,210,-49,269,-149v59,-100,89,-232,89,-395v0,-347,-117,-521,-350,-521v-113,0,-195,53,-257,152v-118,188,-110,603,0,774v59,92,142,139,249,139","w":1929},"\u042f":{"d":"506,-694v-217,-50,-336,-138,-336,-357v0,-121,47,-222,141,-305v94,-83,235,-125,424,-125v125,0,267,6,424,19r0,1462r-258,0r0,-608v-284,-13,-406,104,-455,346v-35,174,-96,274,-282,274v-41,0,-70,-2,-88,-6r0,-231v42,9,91,2,108,-27v13,-21,26,-52,35,-96v35,-167,130,-282,287,-346xm711,-1270v-153,-1,-284,68,-283,215v0,154,111,233,332,236r143,2r0,-443v-53,-7,-117,-10,-192,-10","w":1311},"\u0430":{"d":"889,20v-75,1,-137,-68,-156,-126v-39,71,-185,126,-295,126v-224,0,-374,-115,-370,-331v4,-269,223,-405,534,-398v29,0,64,6,105,17v0,-127,-79,-191,-238,-191v-93,0,-173,16,-238,47r-53,-192v85,-43,187,-64,307,-64v359,0,471,148,473,535r0,229v0,143,29,232,86,269v-35,63,-69,77,-155,79xm709,-504v-43,-8,-76,-12,-97,-12v-197,0,-295,64,-295,192v0,97,55,146,166,146v151,0,226,-75,226,-225r0,-101","w":1094},"\u0431":{"d":"612,20v-347,0,-528,-274,-528,-641v0,-364,91,-615,321,-745v157,-89,418,-118,627,-164r53,221v-268,51,-425,81,-471,91v-106,25,-215,86,-266,180v-29,54,-52,125,-63,215v78,-108,207,-202,366,-205v294,-5,477,204,477,502v0,314,-195,546,-516,546xm342,-514v0,180,112,334,281,334v174,0,258,-145,258,-328v0,-190,-83,-324,-258,-326v-169,-3,-281,147,-281,320","w":1194},"\u0432":{"d":"989,-788v0,106,-74,185,-162,217v139,50,209,140,209,270v0,211,-178,301,-422,301r-479,0r0,-1069v201,-9,356,-14,467,-14v221,0,387,97,387,295xm750,-776v-1,-78,-66,-119,-152,-119v-88,0,-162,3,-221,8r0,234v26,1,96,2,209,2v109,0,164,-42,164,-125xm791,-332v0,-100,-93,-141,-195,-141r-219,2r0,276v87,3,160,5,219,5v130,0,195,-47,195,-142","w":1116},"\u0433":{"d":"879,-860r-492,0r0,860r-252,0r0,-1071r744,0r0,211","w":946},"\u0434":{"d":"147,-197v133,-172,223,-450,224,-737r0,-137r708,0r0,874r148,0r0,570r-215,0r0,-373r-752,0r0,373r-215,0r0,-570r102,0xm848,-197r0,-680r-270,0v-13,287,-77,513,-191,680r461,0","w":1280},"\u0435":{"d":"602,-1092v342,0,587,274,494,633r-766,0v6,170,129,272,307,271v113,0,199,-30,260,-91r96,193v-90,71,-221,106,-393,106v-330,1,-530,-205,-530,-544v0,-319,233,-568,532,-568xm340,-647r524,0v-17,-157,-103,-236,-260,-236v-141,0,-229,79,-264,236","w":1184},"\u0436":{"d":"1518,6v-170,26,-288,-19,-308,-186v-23,-190,-123,-285,-295,-285r0,465r-225,0r0,-465v-180,0,-285,93,-309,281v-22,167,-132,217,-303,190r0,-205v50,12,92,0,102,-61v24,-155,118,-255,269,-303v-143,-25,-227,-109,-254,-250v-11,-61,-42,-75,-101,-61r0,-203v180,-24,272,14,297,174v25,163,114,236,299,237r0,-405r225,0r0,405v169,0,265,-78,287,-233v17,-123,82,-184,197,-184v15,0,49,2,102,6r0,203v-60,-13,-88,-6,-102,61v-29,133,-113,216,-252,248v149,39,242,143,270,311v10,58,53,66,101,55r0,205","w":1595},"\u0437":{"d":"485,-1094v211,0,392,112,392,301v0,115,-57,193,-172,234v105,31,202,120,202,240v0,240,-197,342,-454,342v-164,0,-301,-40,-410,-119r123,-197v85,73,186,109,303,109v120,0,180,-44,180,-133v0,-96,-71,-144,-213,-144v-53,0,-101,2,-143,6r0,-196v25,1,79,2,162,2v113,0,170,-40,170,-119v0,-81,-67,-121,-158,-121v-95,0,-188,27,-279,82r-90,-197v129,-60,258,-90,387,-90","w":989},"\u0438":{"d":"1096,0r-250,0r0,-647r-643,672r-68,0r0,-1096r250,0r0,647r643,-672r68,0r0,1096","w":1231},"\u0439":{"d":"1096,0r-250,0r0,-647r-643,672r-68,0r0,-1096r250,0r0,647r643,-672r68,0r0,1096xm1010,-1589v-31,185,-170,307,-373,307v-210,0,-336,-120,-371,-307r209,-43v15,120,71,180,168,180v99,0,154,-59,164,-178","w":1231},"\u043a":{"d":"1044,6v-35,4,-74,6,-116,6v-125,0,-198,-64,-217,-192v-28,-189,-136,-283,-328,-281r0,461r-248,0r0,-1071r248,0r0,403v188,3,295,-73,319,-231v19,-123,89,-184,211,-184v19,0,56,2,113,6r0,203v-59,-12,-87,-5,-102,57v-32,136,-123,220,-273,252v161,43,263,146,291,311v10,60,55,65,102,55r0,205","w":1118},"\u043b":{"d":"1092,0r-244,0r0,-874r-264,0v-17,364,-78,741,-326,852v-55,25,-127,34,-213,34r0,-221v67,0,124,-21,166,-69v119,-138,167,-495,158,-793r723,0r0,1071","w":1227},"\u043c":{"d":"1419,0r-256,0v-54,-303,-82,-472,-85,-507v-3,-35,-5,-60,-5,-73r-10,0v-14,47,-26,80,-37,101r-252,499r-88,0r-186,-365v-69,-140,-78,-146,-105,-235r-10,0v-9,184,-60,401,-86,580r-244,0r203,-1092r96,0r389,764r383,-764r91,0","w":1475},"\u043d":{"d":"1079,0r-250,0r0,-459r-444,0r0,459r-250,0r0,-1071r250,0r0,405r444,0r0,-405r250,0r0,1071","w":1214},"\u043e":{"d":"584,20v-326,0,-514,-228,-514,-559v0,-314,203,-553,514,-553v327,0,514,224,514,553v0,334,-194,559,-514,559xm584,-887v-173,0,-254,153,-254,348v0,237,85,355,254,355v175,0,254,-153,254,-355v0,-232,-85,-348,-254,-348","w":1167},"\u043f":{"d":"1061,0r-250,0r0,-860r-426,0r0,860r-250,0r0,-1071r926,0r0,1071","w":1196},"\u0440":{"d":"1128,-526v0,338,-197,547,-528,546v-76,0,-148,-16,-215,-47r0,447r-250,0r0,-1491r250,0r0,72v63,-62,140,-93,231,-93v341,0,512,189,512,566xm868,-535v0,-241,-81,-342,-323,-344v-60,0,-113,23,-160,70r0,563v45,37,99,56,160,56v231,-1,323,-110,323,-345","w":1198},"\u0441":{"d":"70,-526v0,-343,232,-566,583,-566v126,0,235,36,326,107r-107,186v-60,-56,-138,-84,-235,-84v-199,1,-307,145,-307,357v0,225,106,338,319,338v95,0,177,-31,246,-93r92,197v-135,82,-199,102,-383,104v-328,3,-534,-209,-534,-546","w":1057},"\u0442":{"d":"625,-860r0,860r-252,0r0,-860r-307,0r0,-211r866,0r0,211r-307,0","w":997},"\u0443":{"d":"621,172v-56,150,-258,253,-478,248r0,-221v193,0,289,-49,289,-146v0,-63,-27,-161,-80,-293r-336,-831r260,0r291,739r264,-739r259,0","w":1108},"\u0444":{"d":"82,-528v0,-319,152,-560,442,-564v59,0,117,14,174,41r0,-419r240,-60r0,481v55,-29,112,-43,170,-43v303,0,442,235,442,555v0,317,-147,557,-424,557v-67,0,-130,-12,-188,-36r0,436r-240,0r0,-440v-63,27,-128,40,-194,40v-285,-3,-422,-236,-422,-548xm1309,-547v0,-199,-57,-352,-230,-352v-43,0,-91,9,-143,27r0,673v240,77,373,-38,373,-348xm700,-201r0,-669v-229,-86,-376,17,-376,323v0,312,137,427,376,346","w":1632},"\u0445":{"d":"821,0r-252,-369r-258,369r-291,0r422,-545r-393,-526r289,0r237,340r238,-340r281,0r-392,514r424,557r-305,0","w":1147},"\u0446":{"d":"1180,373r-219,0r0,-373r-826,0r0,-1071r248,0r0,866r401,0r0,-866r248,0r0,866r148,0r0,578","w":1233},"\u0447":{"d":"506,-367v-255,1,-398,-139,-397,-393r0,-311r253,0r0,289v0,138,67,207,201,207v67,0,138,-9,213,-27r0,-469r250,0r0,1071r-250,0r0,-403v-103,24,-193,36,-270,36","w":1161},"\u0448":{"d":"1493,0r-1358,0r0,-1071r242,0r0,868r315,0r0,-868r242,0r0,868r317,0r0,-868r242,0r0,1071","w":1628},"\u0449":{"d":"1630,373r-219,0r0,-373r-1276,0r0,-1071r242,0r0,868r311,0r0,-868r242,0r0,868r311,0r0,-868r242,0r0,868r147,0r0,576","w":1683},"\u044a":{"d":"1260,-340v0,234,-158,340,-422,340r-447,0r0,-864r-321,0r0,-207r567,0r0,383v61,-5,129,-8,203,-8v249,-2,420,117,420,356xm1010,-352v0,-98,-81,-152,-195,-152v-41,0,-100,2,-178,6r0,301v57,3,116,4,176,4v140,0,197,-51,197,-159","w":1333},"\u044b":{"d":"569,-696v249,-2,416,118,416,356v0,227,-139,340,-418,340r-432,0r0,-1071r244,0r0,383v59,-5,122,-8,190,-8xm737,-352v0,-98,-79,-154,-190,-154v-35,0,-91,2,-168,6r0,305v55,3,111,5,166,5v133,0,192,-50,192,-162xm1393,0r-246,0r0,-1071r246,0r0,1071","w":1528},"\u044c":{"d":"1032,-340v0,237,-163,340,-436,340r-461,0r0,-1071r248,0r0,383v65,-5,138,-8,219,-8v251,-2,430,117,430,356xm780,-350v0,-102,-79,-154,-202,-154v-37,0,-102,2,-195,6r0,301v67,3,131,4,192,4v137,0,205,-52,205,-157","w":1106},"\u044d":{"d":"1004,-545v0,352,-227,568,-578,568v-140,0,-259,-38,-358,-115r116,-189v119,110,348,133,472,25v53,-47,84,-114,94,-201r-406,0r0,-192r401,0v-26,-159,-128,-238,-307,-238v-92,0,-173,27,-243,82r-105,-182v105,-71,233,-107,385,-107v322,0,529,224,529,549","w":1073},"\u044e":{"d":"1022,20v-295,0,-441,-199,-467,-481r-180,0r0,461r-240,0r0,-1071r240,0r0,407r186,0v35,-235,198,-428,461,-428v311,0,469,237,469,553v0,324,-171,559,-469,559xm1020,-887v-156,0,-225,174,-225,348v0,237,75,355,225,355v164,0,225,-159,225,-355v0,-232,-75,-348,-225,-348","w":1565},"\u044f":{"d":"139,-766v0,-217,169,-317,432,-317v90,0,237,5,441,16r0,1067r-246,0r0,-406v-221,-13,-361,59,-381,242v-16,153,-147,196,-313,170r0,-205v45,11,91,2,100,-55v19,-117,113,-205,227,-233v-173,-32,-260,-125,-260,-279xm571,-895v-110,0,-178,49,-178,145v0,102,99,155,215,156r158,2r0,-295v-53,-5,-118,-8,-195,-8","w":1147},"\u0451":{"d":"600,-1092v341,0,587,274,494,633r-766,0v6,170,129,272,307,271v113,0,199,-30,260,-91r96,193v-90,71,-221,106,-393,106v-330,1,-530,-205,-530,-544v0,-319,233,-568,532,-568xm338,-647r524,0v-17,-157,-103,-236,-260,-236v-141,0,-229,79,-264,236xm707,-1346v0,-76,62,-137,137,-137v73,0,135,65,135,137v0,74,-61,140,-135,140v-73,0,-137,-67,-137,-140xm258,-1346v0,-76,59,-137,135,-137v74,0,137,64,137,137v0,74,-63,140,-137,140v-74,0,-135,-66,-135,-140","w":1184},"\u0452":{"d":"668,-1036v269,-1,422,160,422,432r0,532v-2,344,-176,485,-519,494r0,-217v187,-2,269,-90,269,-281r0,-536v1,-128,-93,-219,-226,-219v-86,0,-185,58,-217,110r0,721r-250,0r0,-1184r-151,0r0,-159r151,0r0,-130r250,-59r0,189r391,0r0,159r-391,0r0,236v68,-59,158,-88,271,-88","w":1227},"\u0453":{"d":"879,-860r-492,0r0,860r-252,0r0,-1071r744,0r0,211xm821,-1573r-223,330r-199,0r168,-330r254,0","w":946},"\u0454":{"d":"322,-457v16,172,139,272,327,271v99,0,185,-30,256,-90r99,192v-110,71,-243,107,-400,107v-332,0,-534,-216,-534,-549v0,-155,52,-285,144,-400v152,-189,556,-228,767,-63r-119,178v-112,-88,-317,-109,-432,-13v-52,43,-85,101,-98,175r397,0r0,192r-407,0","w":1073},"\u0455":{"d":"821,-299v0,212,-181,322,-411,319v-163,-2,-222,-30,-336,-90r88,-198v77,60,161,90,254,90v97,0,145,-35,145,-105v0,-37,-14,-70,-41,-97v-27,-27,-85,-58,-174,-95v-184,-76,-276,-183,-276,-322v0,-316,448,-359,690,-219r-72,195v-56,-48,-132,-72,-227,-72v-139,0,-174,134,-72,190v40,22,96,48,168,78v158,65,264,134,264,326","w":893},"\u0456":{"d":"190,-1341v0,-76,67,-146,146,-146v77,0,143,66,143,146v0,78,-66,145,-143,145v-78,0,-146,-69,-146,-145xm217,0r0,-866r-137,0r0,-205r389,0r0,1071r-252,0","w":616},"\u0457":{"d":"217,0r0,-866r-137,0r0,-205r389,0r0,1071r-252,0xm379,-1346v0,-76,62,-137,137,-137v73,0,135,65,135,137v0,75,-60,140,-135,140v-73,0,-137,-67,-137,-140xm-70,-1346v0,-76,60,-137,136,-137v73,0,137,65,137,137v0,73,-64,140,-137,140v-73,0,-136,-66,-136,-140","w":616},"\u0458":{"d":"260,-1341v0,-80,70,-146,146,-146v77,0,145,69,145,146v0,74,-67,145,-145,145v-77,0,-146,-68,-146,-145xm-53,197v230,-6,342,-19,342,-217r0,-844r-195,0r0,-207r445,0r0,1046v-7,337,-221,444,-592,445r0,-223","w":680},"\u0459":{"d":"1710,-340v0,235,-157,340,-422,340r-440,0r0,-874r-264,0v-17,364,-78,741,-326,852v-55,25,-127,34,-213,34r0,-221v67,0,124,-21,166,-69v119,-138,167,-495,158,-793r723,0r0,383v61,-5,127,-8,198,-8v249,-2,420,117,420,356xm1462,-352v0,-98,-83,-154,-196,-154v-39,0,-97,2,-174,6r0,305v57,3,115,5,172,5v136,0,198,-50,198,-162","w":1784},"\u045a":{"d":"1647,-340v0,234,-158,340,-422,340r-441,0r0,-459r-403,0r0,459r-246,0r0,-1071r246,0r0,405r403,0r0,-405r244,0r0,383v62,-5,128,-8,199,-8v249,-2,420,117,420,356xm1399,-352v0,-98,-83,-154,-197,-154v-39,0,-97,2,-174,6r0,305v58,3,115,5,172,5v136,0,199,-50,199,-162","w":1720},"\u045b":{"d":"668,-1036v269,-1,422,160,422,432r0,604r-250,0r0,-612v1,-128,-93,-219,-226,-219v-86,0,-185,58,-217,110r0,721r-250,0r0,-1184r-151,0r0,-159r151,0r0,-130r250,-59r0,189r391,0r0,159r-391,0r0,236v68,-59,158,-88,271,-88","w":1227},"\u045c":{"d":"1044,6v-35,4,-74,6,-116,6v-125,0,-198,-64,-217,-192v-28,-189,-136,-283,-328,-281r0,461r-248,0r0,-1071r248,0r0,403v188,3,295,-73,319,-231v19,-123,89,-184,211,-184v19,0,56,2,113,6r0,203v-59,-12,-87,-5,-102,57v-32,136,-123,220,-273,252v161,43,263,146,291,311v10,60,55,65,102,55r0,205xm879,-1573r-224,330r-198,0r168,-330r254,0","w":1118},"\u045e":{"d":"621,172v-56,150,-258,253,-478,248r0,-221v193,0,289,-49,289,-146v0,-63,-27,-161,-80,-293r-336,-831r260,0r291,739r264,-739r259,0xm944,-1589v-31,185,-170,307,-373,307v-209,0,-336,-120,-370,-307r209,-43v15,120,71,180,168,180v99,0,153,-59,163,-178","w":1108},"\u045f":{"d":"1061,0r-352,0r0,373r-222,0r0,-373r-352,0r0,-1071r250,0r0,862r426,0r0,-862r250,0r0,1071","w":1208},"\u0490":{"d":"1061,-1237r-649,0r0,1237r-262,0r0,-1464r692,0r0,-322r219,0r0,549","w":1126},"\u0491":{"d":"879,-862r-492,0r0,862r-252,0r0,-1071r545,0r0,-270r199,0r0,479","w":940},"\u0100":{"d":"1005,0r-107,-297r-502,0r-102,297r-289,0r584,-1485r114,0r589,1485r-287,0xm646,-1037r-176,541r352,0xm1001,-1766r0,181r-738,0r0,-181r738,0","w":1297},"\u0101":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm871,-1396r0,181r-738,0r0,-181r738,0","w":1091},"\u0108":{"d":"80,-728v0,-410,273,-762,671,-762v168,0,302,34,403,103r-107,215v-58,-58,-151,-87,-280,-87v-261,0,-417,260,-417,542v0,285,137,511,398,511v138,0,246,-49,324,-148r121,210v-106,113,-261,169,-466,169v-424,2,-647,-313,-647,-753xm884,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1253},"\u0109":{"d":"65,-526v0,-340,236,-565,585,-565v125,0,233,35,325,105r-107,187v-59,-55,-137,-83,-236,-83v-198,0,-307,147,-307,356v0,225,107,337,321,337v93,0,174,-31,245,-92r92,197v-132,81,-199,102,-383,104v-331,3,-535,-210,-535,-546xm744,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1048},"\u010a":{"d":"80,-728v0,-410,273,-762,671,-762v168,0,302,34,403,103r-107,215v-58,-58,-151,-87,-280,-87v-261,0,-417,260,-417,542v0,285,137,511,398,511v138,0,246,-49,324,-148r121,210v-106,113,-261,169,-466,169v-424,2,-647,-313,-647,-753xm588,-1736v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1253},"\u010b":{"d":"65,-526v0,-340,236,-565,585,-565v125,0,233,35,325,105r-107,187v-59,-55,-137,-83,-236,-83v-198,0,-307,147,-307,356v0,225,107,337,321,337v93,0,174,-31,245,-92r92,197v-132,81,-199,102,-383,104v-331,3,-535,-210,-535,-546xm448,-1366v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1048},"\u0112":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm1011,-1766r0,181r-738,0r0,-181r738,0","w":1165},"\u0113":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm971,-1396r0,181r-738,0r0,-181r738,0","w":1177},"\u0114":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm634,-1769v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1165},"\u0115":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm584,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1177},"\u0116":{"d":"410,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-1465r935,0r0,231r-675,0xm478,-1736v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1165},"\u0117":{"d":"597,-1091v344,0,589,274,494,632r-765,0v8,170,126,271,306,270v114,0,201,-30,260,-89r97,191v-88,71,-219,107,-394,107v-329,0,-530,-210,-530,-544v0,-317,233,-567,532,-567xm335,-647r526,0v-17,-157,-104,-235,-260,-235v-143,0,-231,78,-266,235xm428,-1366v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1177},"\u011c":{"d":"80,-727v0,-445,295,-763,742,-763v161,0,297,48,410,144r-109,209v-49,-47,-213,-122,-307,-122v-298,0,-466,230,-466,539v0,297,168,516,456,514v93,0,169,-25,229,-76r0,-288r-203,0r0,-222r463,0r0,656v-112,96,-331,159,-531,161v-426,3,-684,-318,-684,-752xm901,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1375},"\u011d":{"d":"998,73v0,231,-253,347,-498,347v-164,0,-312,-48,-445,-145r158,-195v87,80,185,120,292,120v115,1,244,-28,248,-120v7,-145,-282,-75,-405,-75v-172,0,-258,-62,-258,-185v1,-80,80,-154,143,-179v-122,-79,-183,-192,-183,-337v0,-230,202,-397,436,-397v96,0,176,18,241,54r98,-114r173,157r-119,87v41,63,62,137,62,222v0,273,-217,451,-506,391v-10,0,-113,42,-100,66v0,27,23,40,69,40v46,1,176,-30,229,-30v243,0,365,98,365,293xm499,-888v-112,0,-194,81,-194,193v0,122,74,210,194,210v122,0,185,-85,185,-210v0,-106,-78,-193,-185,-193xm604,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1028},"\u0120":{"d":"80,-727v0,-445,295,-763,742,-763v161,0,297,48,410,144r-109,209v-49,-47,-213,-122,-307,-122v-298,0,-466,230,-466,539v0,297,168,516,456,514v93,0,169,-25,229,-76r0,-288r-203,0r0,-222r463,0r0,656v-112,96,-331,159,-531,161v-426,3,-684,-318,-684,-752xm588,-1736v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1375},"\u0121":{"d":"998,73v0,231,-253,347,-498,347v-164,0,-312,-48,-445,-145r158,-195v87,80,185,120,292,120v115,1,244,-28,248,-120v7,-145,-282,-75,-405,-75v-172,0,-258,-62,-258,-185v1,-80,80,-154,143,-179v-122,-79,-183,-192,-183,-337v0,-230,202,-397,436,-397v96,0,176,18,241,54r98,-114r173,157r-119,87v41,63,62,137,62,222v0,273,-217,451,-506,391v-10,0,-113,42,-100,66v0,27,23,40,69,40v46,1,176,-30,229,-30v243,0,365,98,365,293xm499,-888v-112,0,-194,81,-194,193v0,122,74,210,194,210v122,0,185,-85,185,-210v0,-106,-78,-193,-185,-193xm308,-1366v0,-81,71,-151,152,-151v80,0,151,71,151,151v0,80,-71,151,-151,151v-81,0,-152,-70,-152,-151","w":1028},"\u0122":{"d":"80,-727v0,-445,295,-763,742,-763v161,0,297,48,410,144r-109,209v-49,-47,-213,-122,-307,-122v-298,0,-466,230,-466,539v0,297,168,516,456,514v93,0,169,-25,229,-76r0,-288r-203,0r0,-222r463,0r0,656v-112,96,-331,159,-531,161v-426,3,-684,-318,-684,-752xm905,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1375},"\u0123":{"d":"622,-1343v2,76,-60,128,-136,128v-85,0,-128,-58,-128,-175v0,-122,62,-231,187,-328r82,97v-59,65,-77,66,-89,122v0,18,14,41,42,67v28,26,42,56,42,89xm998,73v0,231,-253,347,-498,347v-164,0,-312,-48,-445,-145r158,-195v87,80,185,120,292,120v115,1,244,-28,248,-120v7,-145,-282,-75,-405,-75v-172,0,-258,-62,-258,-185v1,-80,80,-154,143,-179v-122,-79,-183,-192,-183,-337v0,-230,202,-397,436,-397v96,0,176,18,241,54r98,-114r173,157r-119,87v41,63,62,137,62,222v0,273,-217,451,-506,391v-10,0,-113,42,-100,66v0,27,23,40,69,40v46,1,176,-30,229,-30v243,0,365,98,365,293xm499,-888v-112,0,-194,81,-194,193v0,122,74,210,194,210v122,0,185,-85,185,-210v0,-106,-78,-193,-185,-193","w":1028},"\u0124":{"d":"993,0r0,-660r-583,0r0,660r-260,0r0,-1465r260,0r0,574r583,0r0,-574r257,0r0,1465r-257,0xm857,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1400},"\u0125":{"d":"656,-1091v269,-1,423,158,423,431r0,660r-251,0r0,-660v2,-131,-93,-219,-224,-219v-83,0,-184,57,-215,110r0,769r-254,0r0,-1470r254,-60r0,527v65,-59,154,-88,267,-88xm774,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1214},"\u0126":{"d":"1411,-1103r-139,0r0,1103r-256,0r0,-659r-592,0r0,659r-260,0r0,-1103r-139,0r0,-155r139,0r0,-207r260,0r0,207r592,0r0,-207r256,0r0,207r139,0r0,155xm1016,-891r0,-212r-592,0r0,212r592,0","w":1436},"\u0127":{"d":"668,-1036v269,-1,422,160,422,432r0,604r-250,0r0,-612v2,-131,-95,-219,-226,-219v-89,0,-184,56,-217,110r0,721r-250,0r0,-1184r-151,0r0,-159r151,0r0,-130r250,-59r0,189r391,0r0,159r-391,0r0,236v67,-59,158,-88,271,-88","w":1227},"\u0128":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm409,-1555v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":570},"\u0129":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm432,-1185v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":611},"\u012a":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm654,-1766r0,181r-738,0r0,-181r738,0","w":570},"\u012b":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm681,-1396r0,181r-738,0r0,-181r738,0","w":611},"\u012c":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm272,-1769v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":570},"\u012d":{"d":"202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm294,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":611},"\u012e":{"d":"301,148v0,97,153,140,219,64r65,124v-52,39,-119,58,-202,58v-145,0,-266,-77,-264,-214v0,-69,15,-129,44,-180r-8,0r0,-1465r260,0r0,1465v-71,5,-114,80,-114,148","w":570},"\u012f":{"d":"331,-1487v78,0,143,67,143,146v0,78,-66,145,-143,145v-79,0,-146,-70,-146,-145v0,-78,68,-146,146,-146xm348,148v0,97,153,140,219,64r65,124v-52,39,-119,58,-202,58v-145,0,-266,-77,-264,-214v0,-69,15,-129,44,-180r-8,0r0,-866r-137,0r0,-205r389,0r0,1071v-61,11,-106,81,-106,148","w":611},"\u0132":{"d":"155,0r0,-1465r260,0r0,1465r-260,0xm1486,-554v-2,382,-146,572,-522,574v-239,2,-405,-135,-417,-359r232,0v22,85,93,128,214,128v190,0,233,-131,233,-335r0,-919r260,0r0,911","w":1621},"\u0133":{"d":"186,-1341v0,-78,67,-145,145,-145v78,0,145,67,145,145v0,78,-67,145,-145,145v-78,0,-145,-67,-145,-145xm202,0r0,-866r-137,0r0,-205r390,0r0,1071r-253,0xm824,-1341v0,-78,67,-145,145,-145v78,0,145,67,145,145v0,78,-67,145,-145,145v-78,0,-145,-67,-145,-145xm511,197v232,-6,341,-19,341,-218r0,-844r-193,0r0,-206r443,0r0,1046v-6,338,-223,444,-591,445r0,-223","w":1274},"\u0134":{"d":"956,-554v-2,382,-146,572,-522,574v-239,2,-405,-135,-417,-359r232,0v22,85,93,128,214,128v190,0,233,-131,233,-335r0,-919r260,0r0,911xm853,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1091},"\u0135":{"d":"-12,197v232,-6,341,-19,341,-218r0,-844r-193,0r0,-206r443,0r0,1046v-6,338,-223,444,-591,445r0,-223xm524,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":751},"\u0136":{"d":"981,0r-408,-624r-163,223r0,401r-260,0r0,-1465r260,0r0,701r498,-701r296,0r-459,640r547,825r-311,0xm804,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1264},"\u0137":{"d":"820,0r-315,-485r-120,127r0,358r-250,0r0,-1470r250,-60r0,870r357,-411r301,0r-362,406r436,665r-297,0xm744,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1122},"\u0138":{"d":"844,0r-301,-453r-150,164r0,289r-250,0r0,-1071r250,0r0,481r406,-481r301,0r-398,442r455,629r-313,0","w":1176},"\u013b":{"d":"150,0r0,-1465r260,0r0,1234r662,0r0,231r-922,0xm804,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1132},"\u013c":{"d":"178,-1470r250,-60r0,1204v0,132,39,211,118,236v-39,73,-105,110,-198,110v-113,0,-170,-79,-170,-236r0,-1254xm528,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":604},"\u0145":{"d":"1111,20r-711,-927r0,908r-250,0r0,-1466r125,0r692,884r0,-884r250,0r0,1485r-106,0xm858,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1367},"\u0146":{"d":"662,-1091v258,-1,412,169,412,434r0,657r-250,0r0,-619v-1,-175,-56,-263,-224,-263v-82,0,-178,55,-215,108r0,774r-250,0r0,-1071r180,0r46,100v68,-80,168,-120,301,-120xm778,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1209},"\u0149":{"d":"96,-1256v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm852,-1091v258,-1,412,169,412,434r0,657r-250,0r0,-619v-1,-175,-56,-263,-224,-263v-82,0,-178,55,-215,108r0,774r-250,0r0,-1071r180,0r46,100v68,-80,168,-120,301,-120","w":1399},"\u014a":{"d":"754,-1491v309,-2,499,211,499,530r0,558v2,258,-126,434,-374,434v-86,0,-194,-45,-236,-90r100,-183v36,31,75,47,117,47v89,0,133,-60,133,-180r0,-532v-2,-236,-72,-353,-297,-353v-111,0,-238,75,-286,146r0,1114r-260,0r0,-1465r174,0r51,126v97,-101,224,-152,379,-152","w":1397},"\u014b":{"d":"662,-1092v259,0,413,174,413,435r0,583v0,329,-157,495,-471,498r0,-217v146,0,219,-87,219,-260r0,-565v-1,-177,-54,-263,-223,-265v-83,0,-180,58,-215,109r0,774r-250,0r0,-1071r180,0r45,100v68,-81,169,-121,302,-121","w":1209},"\u014c":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm1079,-1766r0,181r-738,0r0,-181r738,0","w":1440},"\u014d":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm949,-1396r0,181r-738,0r0,-181r738,0","w":1159},"\u014e":{"d":"690,25v-418,-1,-610,-329,-610,-770v0,-395,241,-746,630,-746v436,0,650,296,650,746v0,451,-230,772,-670,770xm710,-1260v-256,0,-360,235,-360,515v0,171,29,304,87,398v58,94,142,141,253,141v287,0,400,-223,400,-539v0,-343,-127,-515,-380,-515xm710,-1769v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1440},"\u014f":{"d":"580,20v-327,0,-515,-230,-515,-558v0,-315,204,-553,515,-553v329,0,514,220,514,553v0,330,-191,558,-514,558xm580,-887v-174,0,-255,154,-255,349v0,236,85,354,255,354v176,0,254,-155,254,-354v0,-233,-85,-349,-254,-349xm580,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1159},"\u0156":{"d":"1114,-1048v1,183,-129,339,-271,388r433,660r-300,0r-391,-605v-39,-1,-94,-3,-165,-7r0,612r-270,0r0,-1465v15,0,71,-2,169,-7v98,-5,177,-8,237,-8v372,0,558,144,558,432xm844,-1051v-6,-171,-138,-190,-336,-194v-28,0,-57,2,-88,6r0,407v231,15,432,12,424,-219xm804,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1251},"\u0157":{"d":"607,-882v-123,-1,-222,136,-222,272r0,610r-250,0r0,-1071r250,0r0,98v70,-79,163,-118,279,-118v85,0,151,13,196,39r-106,214v-45,-29,-94,-44,-147,-44xm468,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":875},"\u015c":{"d":"967,-383v-2,257,-234,408,-517,408v-137,0,-260,-35,-370,-106r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-160v0,-50,-22,-95,-54,-143v-54,-82,-385,-224,-450,-291v-69,-70,-120,-165,-121,-296v-3,-232,201,-394,444,-394v169,0,294,32,373,95r-79,224v-91,-65,-188,-98,-289,-98v-113,0,-189,65,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179xm684,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1047},"\u015d":{"d":"817,-300v0,214,-180,323,-411,320v-171,-2,-209,-24,-337,-89r89,-199v75,59,159,89,253,89v97,0,146,-35,146,-104v0,-41,-15,-74,-44,-100v-29,-26,-86,-57,-171,-92v-185,-77,-277,-184,-277,-322v0,-195,174,-294,377,-294v111,0,216,25,314,75r-72,194v-55,-47,-131,-70,-228,-70v-128,0,-173,115,-88,178v29,22,90,50,184,88v159,64,265,140,265,326xm584,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":882},"\u0166":{"d":"1233,-1236r-488,0r0,456r318,0r0,164r-318,0r0,616r-260,0r0,-616r-317,0r0,-164r317,0r0,-456r-465,0r0,-229r1213,0r0,229","w":1253},"\u0167":{"d":"424,-401v2,147,29,211,162,211v58,0,114,-17,168,-50r0,230v-58,20,-141,30,-248,30v-223,0,-334,-116,-334,-348r0,-170r-123,0r0,-155r123,0r0,-217r-123,0r0,-201r123,0r0,-217r252,-92r0,309r293,0r0,201r-293,0r0,217r242,0r0,155r-242,0r0,97","w":812},"\u0168":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm818,-1555v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1388},"\u0169":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm730,-1185v-61,0,-203,-76,-245,-77v-35,0,-64,26,-89,77r-145,0v21,-129,88,-247,219,-257v76,-6,208,77,256,77v41,0,70,-26,87,-77r148,0v-25,99,-56,167,-93,203v-37,36,-83,54,-138,54","w":1210},"\u016a":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm1063,-1766r0,181r-738,0r0,-181r738,0","w":1388},"\u016b":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm974,-1396r0,181r-738,0r0,-181r738,0","w":1210},"\u016c":{"d":"682,25v-328,0,-532,-164,-532,-483r0,-1007r260,0r0,993v-1,158,107,266,270,266v180,0,298,-98,298,-271r0,-988r260,0r0,1008v2,310,-236,482,-556,482xm681,-1769v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1388},"\u016d":{"d":"570,-189v109,0,226,-70,255,-146r0,-736r250,0r0,1072r-250,0r0,-90v-60,54,-208,109,-317,109v-249,0,-373,-132,-373,-396r0,-695r250,0r0,676v0,137,62,206,185,206xm592,-1399v107,0,200,-44,201,-141r143,0v2,187,-151,325,-344,325v-193,0,-321,-132,-319,-325r141,0v-2,88,88,141,178,141","w":1210},"\u0172":{"d":"680,-207v179,0,299,-100,299,-270r0,-987r258,0r0,1007v4,274,-183,441,-433,474v-45,31,-68,75,-68,131v0,97,153,140,219,64r65,124v-52,39,-119,58,-202,58v-145,0,-266,-77,-264,-214v0,-60,11,-113,34,-160v-270,-25,-438,-190,-438,-479r0,-1005r260,0r0,993v-2,161,109,264,270,264","w":1388},"\u0173":{"d":"958,148v0,98,153,139,219,64r65,124v-52,39,-119,58,-202,58v-145,0,-266,-77,-264,-214v0,-73,16,-133,49,-180r0,-89v-61,55,-206,109,-317,109v-249,0,-373,-132,-373,-397r0,-694r250,0r0,676v0,138,61,207,184,207v107,0,227,-69,256,-148r0,-735r250,0r0,1071r-15,0v-55,15,-102,81,-102,148","w":1210},"\u0174":{"d":"1331,20r-107,0r-320,-924r-311,924r-107,0r-481,-1485r271,0r275,884r297,-884r114,0r298,884r274,-884r271,0xm1062,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1810},"\u0175":{"d":"1187,20r-91,0r-294,-658r-293,658r-92,0r-404,-1091r263,0r215,639r262,-639r90,0r271,643r232,-643r246,0xm955,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1605},"\u0176":{"d":"759,-601r0,601r-260,0r0,-601r-494,-864r276,0r347,625r348,-625r275,0xm776,-1585r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1256},"\u0177":{"d":"609,172v-55,148,-263,252,-478,248r0,-221v193,0,289,-48,289,-145v0,-64,-27,-162,-80,-294r-335,-831r259,0r292,740r263,-740r259,0xm689,-1215r-157,-149r-139,149r-267,0r355,-315r107,0r368,315r-267,0","w":1093},"\u017f":{"d":"154,-1068v-3,-262,142,-444,397,-442v71,0,143,13,217,39r-68,190v-49,-19,-93,-29,-133,-29v-117,2,-165,87,-164,215r0,1095r-249,0r0,-1068","w":739},"\u01fa":{"d":"1292,0r-287,0r-107,-297r-502,0r-102,297r-289,0r545,-1290v-103,-34,-154,-96,-154,-186v0,-87,48,-148,145,-183r125,-219r247,0r-175,213v108,29,162,92,162,189v0,90,-53,152,-158,186xm647,-1561v-54,0,-106,35,-106,86v0,57,35,86,106,86v71,0,106,-29,106,-86v0,-57,-35,-86,-106,-86xm822,-496r-176,-488r-176,488r352,0","w":1297},"\u01fb":{"d":"886,20v-74,2,-138,-70,-155,-127v-42,74,-177,127,-295,127v-222,0,-374,-115,-371,-332v3,-275,230,-400,536,-396v29,0,64,5,104,15v0,-126,-80,-189,-239,-189v-94,0,-173,16,-236,47r-54,-194v86,-41,188,-62,307,-62v359,0,472,144,473,534r0,229v0,143,29,232,86,269v-36,64,-73,77,-156,79xm707,-504v-43,-9,-75,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm757,-1377v0,126,-124,211,-252,211v-132,0,-252,-82,-252,-211v0,-122,128,-211,252,-211v129,0,252,85,252,211xm504,-1472v-58,0,-106,37,-106,96v0,64,35,96,106,96v71,0,106,-32,106,-96v0,-64,-35,-96,-106,-96xm787,-1931r-226,293r-190,0r169,-293r247,0","w":1091},"\u01fc":{"d":"1180,-1234r0,343r484,0r0,221r-484,0r0,439r664,0r0,231r-924,0r0,-297r-446,0r-183,297r-289,0r888,-1465r965,0r0,231r-675,0xm920,-496r0,-581r-352,581r352,0xm1497,-1878r-226,293r-190,0r169,-293r247,0","w":1915},"\u01fd":{"d":"692,-504v-33,-9,-65,-13,-96,-13v-197,0,-296,65,-296,194v0,96,56,144,167,144v150,0,225,-75,225,-225r0,-100xm1217,-1091v341,0,590,273,494,632r-775,0v7,169,136,270,316,270v113,0,200,-30,260,-89r97,191v-87,71,-219,107,-394,107v-127,0,-216,-22,-268,-66r3,46r-198,0v-9,-23,-21,-58,-36,-105v-44,75,-173,125,-295,125v-222,0,-371,-118,-371,-332v0,-273,237,-400,536,-396v34,0,69,5,104,15v0,-127,-80,-190,-239,-190v-93,0,-171,16,-236,48r-54,-194v86,-41,188,-62,307,-62v189,0,319,49,389,147v100,-98,220,-147,360,-147xm1221,-882v-151,0,-249,101,-276,235r536,0v-17,-157,-103,-235,-260,-235xm1147,-1508r-226,293r-190,0r169,-293r247,0","w":1767},"\u01fe":{"d":"60,-745v0,-395,241,-746,630,-746v161,0,294,39,398,116r85,-116r167,0r-155,211v103,129,155,308,155,535v0,451,-230,773,-670,770v-144,0,-264,-38,-360,-113r-83,113r-167,0r154,-210v-103,-137,-154,-323,-154,-560xm690,-1260v-256,0,-360,235,-360,515v0,132,18,242,53,330r557,-758v-61,-58,-145,-87,-250,-87xm670,-206v287,0,402,-223,400,-539v0,-127,-17,-231,-50,-310r-560,763v55,57,125,86,210,86xm977,-1878r-226,293r-190,0r169,-293r247,0","w":1400},"\u01ff":{"d":"65,-538v0,-315,204,-553,515,-553v108,0,201,22,278,67r51,-67r185,0r-123,162v82,97,123,228,123,391v0,330,-191,561,-514,558v-107,0,-200,-23,-277,-69r-53,69r-185,0r125,-165v-83,-100,-125,-231,-125,-393xm580,-887v-174,0,-255,154,-255,349v0,73,8,135,23,185r376,-494v-38,-27,-86,-40,-144,-40xm580,-184v176,0,254,-155,254,-354v0,-71,-8,-131,-23,-180r-376,494v38,27,86,40,145,40xm817,-1508r-226,293r-190,0r169,-293r247,0","w":1159},"\u1e80":{"d":"1331,20r-107,0r-320,-924r-311,924r-107,0r-481,-1485r271,0r275,884r297,-884r114,0r298,884r274,-884r271,0xm848,-1585r-226,-293r267,0r169,293r-210,0","w":1810},"\u1e81":{"d":"1187,20r-91,0r-294,-658r-293,658r-92,0r-404,-1091r263,0r215,639r262,-639r90,0r271,643r232,-643r246,0xm753,-1215r-226,-293r267,0r169,293r-210,0","w":1605},"\u1e82":{"d":"1331,20r-107,0r-320,-924r-311,924r-107,0r-481,-1485r271,0r275,884r297,-884r114,0r298,884r274,-884r271,0xm1188,-1878r-226,293r-190,0r169,-293r247,0","w":1810},"\u1e83":{"d":"1187,20r-91,0r-294,-658r-293,658r-92,0r-404,-1091r263,0r215,639r262,-639r90,0r271,643r232,-643r246,0xm1069,-1508r-226,293r-190,0r169,-293r247,0","w":1605},"\u1e84":{"d":"1331,20r-107,0r-320,-924r-311,924r-107,0r-481,-1485r271,0r275,884r297,-884r114,0r298,884r274,-884r271,0xm452,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm1072,-1727v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1810},"\u1e85":{"d":"1187,20r-91,0r-294,-658r-293,658r-92,0r-404,-1091r263,0r215,639r262,-639r90,0r271,643r232,-643r246,0xm345,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142xm965,-1357v0,-77,67,-143,143,-143v77,0,142,67,142,143v0,77,-65,142,-142,142v-77,0,-143,-65,-143,-142","w":1605},"\u1ef2":{"d":"759,-601r0,601r-260,0r0,-601r-494,-864r276,0r347,625r348,-625r275,0xm585,-1585r-226,-293r267,0r169,293r-210,0","w":1256},"\u1ef3":{"d":"609,172v-55,148,-263,252,-478,248r0,-221v193,0,289,-48,289,-145v0,-64,-27,-162,-80,-294r-335,-831r259,0r292,740r263,-740r259,0xm472,-1215r-226,-293r267,0r169,293r-210,0","w":1093},"\u2015":{"d":"63,-502r0,-201r1369,0r0,201r-1369,0","w":1504},"\u2017":{"d":"-8,254r0,-129r1214,0r0,129r-1214,0xm-8,504r0,-129r1214,0r0,129r-1214,0"},"\u2032":{"d":"239,-1056r-193,0r116,-411r244,0","w":406},"\u2033":{"d":"239,-1056r-193,0r116,-411r244,0xm599,-1056r-193,0r116,-411r244,0","w":766},"\u203c":{"d":"426,-382r-104,0v-85,-539,-81,-645,-78,-1109r260,0v2,460,8,572,-78,1109xm218,-144v0,-88,76,-164,164,-164v88,0,163,76,163,164v0,88,-75,164,-163,164v-88,0,-164,-76,-164,-164xm926,-382r-104,0v-85,-539,-81,-645,-78,-1109r260,0v2,460,8,572,-78,1109xm718,-144v0,-88,76,-164,164,-164v88,0,163,76,163,164v0,88,-75,164,-163,164v-88,0,-164,-76,-164,-164","w":1248},"\u203e":{"d":"785,-1471r0,175r-791,0r0,-175r791,0","w":1074},"\u207f":{"d":"459,-1491v162,-1,258,109,258,274r0,408r-168,0r0,-395v0,-100,-42,-150,-127,-150v-49,0,-90,23,-123,70r0,475r-168,0r0,-670r119,0r24,64v45,-51,107,-76,185,-76","w":831},"\u20a4":{"d":"193,-950v-17,-323,147,-541,436,-541v145,0,255,48,329,145r-129,177v-54,-69,-128,-103,-223,-103v-102,0,-153,90,-153,271r0,51r307,0r0,143r-307,0r0,150r307,0r0,143r-307,0r0,283r192,0v92,0,168,-40,227,-121r189,141v-83,141,-245,211,-486,211r-473,0r0,-182v61,-21,91,-56,91,-105r0,-227r-91,0r0,-143r91,0r0,-150r-91,0r0,-143r91,0","w":1073},"\u20a7":{"d":"1602,-793v0,-197,156,-300,352,-299v114,0,216,25,307,74r-68,191v-66,-47,-140,-70,-221,-70v-120,0,-159,117,-82,182v33,28,217,109,234,119v127,67,190,166,190,297v0,204,-174,319,-391,319v-96,0,-184,-27,-264,-81v-64,54,-139,81,-225,81v-208,0,-312,-116,-312,-348r0,-544r-131,0v-57,257,-279,370,-596,333r0,539r-256,0r0,-1465v95,-7,190,-11,283,-11v340,-2,560,117,586,407r114,0r0,-220r248,-92r0,312r174,0r0,197r-174,0r0,485v2,133,20,197,139,197v59,0,115,-32,170,-97v77,73,161,109,254,109v87,0,131,-36,131,-109v0,-97,-74,-127,-162,-168v-60,-28,-98,-46,-114,-55v-124,-69,-186,-163,-186,-283xm395,-766v215,27,359,-36,359,-250v0,-175,-147,-251,-359,-228r0,478","w":2380},"\u2105":{"d":"463,-1367v-122,-1,-181,92,-180,220v0,139,63,208,190,208v54,0,107,-23,158,-68r72,147v-73,49,-160,74,-260,74v-216,2,-346,-142,-346,-359v0,-223,152,-375,372,-375v89,0,165,25,228,74r-82,140v-47,-41,-98,-61,-152,-61xm1335,-1491r-884,1526r-168,0r884,-1526r168,0xm1178,-678v211,0,335,149,335,365v0,215,-129,368,-335,368v-207,0,-336,-154,-336,-368v0,-206,131,-365,336,-365xm1178,-98v102,0,149,-92,149,-215v0,-141,-50,-212,-149,-212v-100,0,-150,71,-150,212v0,143,50,215,150,215","w":1610},"\u2113":{"d":"686,-1491v174,0,291,118,291,291v0,157,-128,347,-383,568r0,187v0,175,46,263,139,263v61,0,112,-21,152,-63r104,163v-39,49,-181,104,-269,102v-293,-6,-377,-165,-376,-486r-86,51r-81,-186r167,-100v-5,-248,18,-520,76,-631v54,-104,139,-159,266,-159xm754,-1188v0,-67,-20,-101,-60,-101v-33,0,-55,14,-71,39v-34,52,-29,222,-29,329v107,-106,160,-195,160,-267"},"\u2116":{"d":"1575,-1012v197,0,307,140,307,348v0,211,-107,352,-307,353v-194,1,-311,-151,-311,-353v0,-198,119,-348,311,-348xm1837,6r-524,0r0,-170r524,0r0,170xm1130,18r-104,0r-637,-918r0,900r-239,0r0,-1484r104,0r637,917r0,-898r239,0r0,1483xm1708,-664v0,-131,-46,-196,-137,-196v-90,0,-135,65,-135,194v0,134,46,201,139,201v89,0,133,-66,133,-199","w":1978},"\u212e":{"d":"61,-523v0,-312,213,-568,502,-568v301,0,503,265,500,554r-814,0r0,371v101,82,204,123,309,123v112,0,341,-76,386,-138r47,53v-109,99,-252,148,-430,148v-296,0,-500,-234,-500,-543xm250,-886r0,281r630,0r0,-281v-152,-190,-471,-189,-630,0","w":1125},"\u215b":{"d":"1427,-461v90,41,166,126,168,236v3,179,-124,280,-309,280v-203,0,-305,-93,-305,-280v0,-115,63,-189,158,-242v-69,-45,-123,-109,-125,-207v-3,-150,121,-235,274,-235v160,0,278,83,277,235v-1,94,-67,179,-138,213xm1309,-1491r-883,1526r-168,0r885,-1526r166,0xm469,-565r-188,0r0,-652r-189,113r0,-184v135,-69,234,-142,297,-219r80,0r0,942xm1303,-537v38,-17,81,-78,81,-129v0,-56,-32,-84,-96,-84v-104,0,-122,100,-60,159v26,25,50,44,75,54xm1163,-233v-1,73,50,124,123,124v86,0,129,-37,129,-112v0,-59,-48,-115,-143,-170v-73,41,-109,94,-109,158","w":1668},"\u215c":{"d":"1436,-461v88,40,166,129,168,236v3,180,-125,280,-310,280v-203,0,-305,-93,-305,-280v0,-115,63,-189,158,-242v-69,-45,-123,-109,-125,-207v-3,-150,121,-235,274,-235v160,0,278,83,277,235v-1,93,-68,180,-137,213xm1335,-1491r-882,1526r-168,0r882,-1526r168,0xm295,-1520v157,0,291,100,289,250v0,84,-33,152,-99,203v86,49,129,126,129,229v1,188,-132,284,-325,283v-93,0,-174,-32,-242,-96r90,-160v45,51,96,76,154,76v89,0,133,-38,133,-113v0,-104,-69,-141,-184,-133r0,-162v95,6,155,-23,155,-108v0,-59,-37,-88,-110,-88v-48,0,-91,21,-129,63r-86,-143v53,-67,128,-101,225,-101xm1311,-537v37,-16,82,-79,82,-129v0,-56,-32,-84,-97,-84v-104,0,-122,100,-60,159v26,25,50,44,75,54xm1171,-233v-1,73,50,124,123,124v86,0,129,-37,129,-112v0,-59,-48,-115,-143,-170v-73,41,-109,94,-109,158","w":1668},"\u215d":{"d":"1436,-461v88,40,166,129,168,236v3,180,-125,280,-310,280v-203,0,-305,-93,-305,-280v0,-115,63,-189,158,-242v-69,-45,-123,-109,-125,-207v-3,-150,121,-235,274,-235v160,0,278,83,277,235v-1,93,-68,180,-137,213xm1335,-1491r-882,1526r-168,0r882,-1526r168,0xm272,-1196v208,-48,365,79,365,281v0,219,-120,361,-334,360v-88,0,-169,-31,-244,-92r84,-166v59,55,114,82,164,82v87,0,131,-56,131,-168v0,-101,-43,-152,-129,-152v-48,0,-94,23,-137,68r-84,-51r0,-469r510,0r0,168r-326,0r0,139xm1311,-537v37,-16,82,-79,82,-129v0,-56,-32,-84,-97,-84v-104,0,-122,100,-60,159v26,25,50,44,75,54xm1171,-233v-1,73,50,124,123,124v86,0,129,-37,129,-112v0,-59,-48,-115,-143,-170v-73,41,-109,94,-109,158","w":1668},"\u215e":{"d":"1427,-461v90,41,166,126,168,236v3,179,-124,280,-309,280v-203,0,-305,-93,-305,-280v0,-115,63,-189,158,-242v-69,-45,-123,-109,-125,-207v-3,-150,121,-235,274,-235v160,0,278,83,277,235v-1,94,-67,179,-138,213xm1296,-1491r-882,1526r-168,0r884,-1526r166,0xm764,-1415r-82,155v-96,183,-241,489,-297,693r-211,0v63,-217,179,-472,348,-764r-397,0r0,-172r639,0r0,88xm1303,-537v38,-17,81,-78,81,-129v0,-56,-32,-84,-96,-84v-104,0,-122,100,-60,159v26,25,50,44,75,54xm1163,-233v-1,73,50,124,123,124v86,0,129,-37,129,-112v0,-59,-48,-115,-143,-170v-73,41,-109,94,-109,158","w":1668},"\u25a1":{"d":"146,-944r944,0r0,944r-944,0r0,-944xm222,-868r0,792r792,0r0,-792r-792,0","w":1237},"\u25aa":{"d":"594,-908r0,463r-463,0r0,-463r463,0","w":726},"\u25ab":{"d":"594,-908r0,463r-463,0r0,-463r463,0xm518,-832r-311,0r0,311r311,0r0,-311","w":726},"\u25cf":{"d":"618,-136v-237,0,-441,-204,-441,-440v0,-238,204,-441,441,-441v237,0,440,204,440,441v0,236,-204,440,-440,440","w":1237},"\u25e6":{"d":"112,-677v0,-135,115,-251,251,-251v135,0,251,116,251,251v0,135,-116,251,-251,251v-135,0,-251,-116,-251,-251xm538,-677v0,-94,-81,-175,-175,-175v-94,0,-175,81,-175,175v0,94,81,175,175,175v94,0,175,-81,175,-175","w":726},"\u201b":{"d":"411,-1154v10,89,57,115,135,177r-83,111v-189,-117,-284,-268,-284,-452v0,-128,57,-192,170,-192v107,0,160,54,160,162v0,60,-103,145,-98,194","w":752},"\u0218":{"d":"449,344v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm967,-383v-2,257,-234,408,-517,408v-137,0,-260,-35,-370,-106r96,-233v103,72,204,108,303,108v153,0,229,-53,229,-160v0,-50,-22,-95,-54,-143v-54,-82,-385,-224,-450,-291v-69,-70,-120,-165,-121,-296v-3,-232,201,-394,444,-394v169,0,294,32,373,95r-79,224v-91,-65,-188,-98,-289,-98v-113,0,-189,65,-189,171v0,84,94,170,279,262v166,83,245,131,311,274v24,53,34,113,34,179","w":1047},"\u0219":{"d":"389,344v4,-39,-69,-86,-69,-136v0,-79,39,-118,117,-118v82,0,123,46,123,139v0,131,-68,238,-204,323r-63,-85v63,-53,89,-55,96,-123xm817,-300v0,214,-180,323,-411,320v-171,-2,-209,-24,-337,-89r89,-199v75,59,159,89,253,89v97,0,146,-35,146,-104v0,-41,-15,-74,-44,-100v-29,-26,-86,-57,-171,-92v-185,-77,-277,-184,-277,-322v0,-195,174,-294,377,-294v111,0,216,25,314,75r-72,194v-55,-47,-131,-70,-228,-70v-128,0,-173,115,-88,178v29,22,90,50,184,88v159,64,265,140,265,326","w":882},"\u0162":{"d":"746,-1234r0,1234r-260,0r0,-1234r-466,0r0,-231r1213,0r0,231r-487,0xm812,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":1253},"\u0163":{"d":"505,20v-215,1,-332,-130,-332,-348r0,-542r-124,0r0,-201r124,0r0,-218r250,-92r0,310r294,0r0,201r-294,0r0,469v2,143,29,210,162,210v60,0,116,-16,168,-49r0,230v-58,20,-141,30,-248,30xm594,231v0,167,-181,235,-353,194r-41,-127v23,6,46,9,70,9v87,0,131,-30,131,-91v0,-45,-34,-95,-72,-103r85,-89v120,25,180,94,180,207","w":812}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Description:
 * Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif
 * designed for easy screen readability. Trebuchet takes its inspiration from the
 * sans serifs of the 1930s which had large x heights and round features intended
 * to promote readability on signs. The typeface name is credited to a puzzle heard
 * at Microsoft, where the question was asked, "could you build a Trebuchet (a form
 * of medieval catapult) to launch a person from the main campus to the consumer
 * campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires
 * your messages across the Internet. "Launch your message with a Trebuchet page".
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Vincent Connare
 * 
 * Vendor URL:
 * http://www.microsoft.com
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":1074,"face":{"font-family":"Trebuchet MS","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 3 2 2 2 9 2 4","ascent":"1638","descent":"-410","x-height":"20","bbox":"-225 -1937 2269 528","underline-thickness":"127","underline-position":"-198","slope":"-10","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":617,"k":{"Y":37,"A":76}},"!":{"d":"351,-382r-71,0v4,-243,10,-406,18,-490v23,-237,65,-403,100,-619r226,0v-78,459,-88,561,-273,1109xm132,-121v0,-77,65,-142,142,-142v77,0,142,65,142,142v0,77,-65,141,-142,141v-77,0,-142,-64,-142,-141","w":752},"\"":{"d":"326,-1086r-133,0r43,-381r184,0xm656,-1086r-133,0r43,-381r184,0","w":665},"#":{"d":"937,-947r-99,393r161,0r0,128r-194,0r-124,446r-127,0r124,-446r-297,0r-124,446r-130,0r123,-446r-155,0r0,-128r188,0r99,-393r-172,0r0,-128r205,0r102,-412r131,0r-103,412r297,0r103,-412r127,0r-103,412r175,0r0,128r-207,0xm513,-947r-99,393r297,0r99,-393r-297,0"},"$":{"d":"715,-1320v-160,0,-277,72,-276,225v1,73,42,128,87,167v27,23,82,64,164,127v141,108,242,202,242,414v0,253,-172,388,-415,409r-28,159r-156,0r28,-162v-102,-13,-184,-35,-245,-66r60,-192v54,44,193,82,293,82v148,0,264,-76,263,-218v0,-57,-19,-105,-54,-150v-67,-87,-314,-241,-378,-337v-92,-136,-68,-377,38,-488v68,-71,154,-118,266,-134r36,-202r156,0r-35,198v119,7,195,20,228,37r-57,194v-35,-30,-148,-63,-217,-63","w":985},"%":{"d":"143,20r-127,0r1149,-1511r126,0xm697,-1246v0,226,-124,442,-348,442v-151,0,-226,-81,-226,-243v0,-117,28,-221,84,-310v56,-89,147,-134,272,-134v145,0,218,82,218,245xm458,-1389v-135,1,-208,175,-208,325v0,105,36,158,108,158v76,0,130,-38,164,-113v34,-75,51,-151,51,-227v0,-95,-38,-143,-115,-143xm1226,-425v0,223,-123,442,-349,442v-151,0,-226,-81,-226,-242v0,-119,28,-222,84,-311v56,-89,147,-134,272,-134v146,0,219,82,219,245xm986,-568v-135,0,-208,182,-208,325v0,105,36,158,108,158v76,0,130,-38,164,-113v34,-75,51,-151,51,-227v0,-95,-38,-143,-115,-143","w":1229},"&":{"d":"787,-1341v-188,-2,-314,103,-313,287v0,67,27,125,82,173r372,0r32,-183r197,-29r-40,215r249,0r-28,160r-249,0r-39,189v-18,85,-31,162,-31,250v0,86,38,129,115,129v53,0,102,-17,148,-52r0,182v-52,27,-127,40,-224,40v-77,0,-139,-24,-188,-71v-105,47,-219,71,-342,71v-224,0,-386,-129,-386,-348v0,-201,80,-368,240,-502v-64,-76,-96,-152,-96,-227v-2,-278,211,-434,496,-434v116,0,199,16,250,48r-54,186v-59,-56,-123,-84,-191,-84xm347,-371v-1,145,110,223,259,221v91,0,161,-16,212,-49v-1,-41,2,-71,10,-115r71,-404r-398,0v-103,107,-154,222,-154,347","w":1446},"'":{"d":"325,-1086r-133,0r43,-381r184,0","w":327},"(":{"d":"460,428v-165,-123,-286,-414,-286,-705v0,-223,59,-457,176,-701v117,-244,258,-409,421,-497r0,83v-256,277,-393,769,-392,1305v0,165,27,301,81,410r0,105","w":752},")":{"d":"346,-1475v190,76,295,437,295,715v0,225,-58,451,-174,679v-116,228,-263,398,-442,509r0,-105v236,-165,410,-861,410,-1273v0,-179,-30,-327,-89,-442r0,-83","w":752},"*":{"d":"714,-1127r-173,3r158,105r47,62r-122,104r-54,-70r-82,-159r-91,162r-43,64r-131,-101r50,-69r158,-83r-176,-27r-90,-32r72,-150r96,37r125,95r-63,-205r0,-79r176,1r0,75r-60,211r158,-107r74,-27r57,161","w":752},"+":{"d":"611,-706r349,0r0,141r-349,0r0,345r-141,0r0,-345r-348,0r0,-141r348,0r0,-343r141,0r0,343"},",":{"d":"370,-290v81,0,145,77,145,158v0,89,-24,169,-73,242v-49,73,-135,148,-260,225r-44,-76v129,-88,193,-168,193,-239v0,-23,-8,-48,-23,-75v-51,-30,-76,-69,-76,-116v-1,-72,64,-119,138,-119","w":752},"-":{"d":"144,-506r30,-175r428,0r-30,175r-428,0","w":752},"\u2010":{"d":"144,-506r30,-175r428,0r-30,175r-428,0","w":752},".":{"d":"165,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\/":{"d":"350,0r-161,0r531,-1471r159,0"},"0":{"d":"443,20v-250,0,-375,-176,-375,-436v0,-321,58,-580,172,-778v114,-198,275,-297,483,-297v245,0,368,140,368,420v0,341,-56,608,-167,801v-111,193,-272,290,-481,290xm268,-453v0,202,64,303,191,303v137,0,244,-86,319,-260v75,-174,112,-388,112,-642v0,-179,-67,-269,-201,-269v-127,0,-228,93,-305,277v-77,184,-116,381,-116,591"},"1":{"d":"444,0r195,-1101r-296,151r28,-192v232,-107,389,-217,472,-329r60,0r-259,1471r-200,0"},"2":{"d":"588,-1491v236,0,406,108,409,325v0,66,-16,136,-55,208v-120,221,-406,553,-573,778r544,0r-32,180r-818,0r0,-90r483,-618v95,-123,159,-214,192,-273v33,-59,49,-117,49,-173v1,-109,-108,-164,-223,-164v-92,0,-168,44,-228,133r-140,-92v63,-143,194,-214,392,-214"},"3":{"d":"933,-485v0,361,-196,505,-573,505v-133,0,-238,-42,-313,-127r91,-166v43,61,155,123,255,123v194,0,331,-134,331,-328v0,-149,-89,-223,-268,-223r28,-162v206,0,309,-90,309,-269v1,-122,-80,-190,-204,-189v-77,0,-142,23,-197,69r-90,-118v76,-81,187,-121,332,-121v211,0,377,124,375,332v-2,180,-144,330,-292,375v144,49,216,149,216,299"},"4":{"d":"882,-399r-70,399r-200,0r70,-399r-657,0r20,-114r956,-958r70,0r-162,918r148,0r-27,154r-148,0xm799,-1065r-510,512r420,0"},"5":{"d":"760,-584v0,-140,-95,-246,-232,-246v-91,0,-163,25,-217,74r-103,0r125,-715r729,0r-30,170r-539,0r-63,356v54,-37,120,-55,197,-55v200,0,349,149,349,348v0,448,-200,672,-600,672v-128,0,-227,-35,-296,-104r82,-177v78,74,159,111,243,111v237,1,355,-188,355,-434"},"6":{"d":"1023,-566v0,299,-224,591,-518,591v-261,0,-391,-139,-391,-417v0,-149,28,-289,84,-420v100,-237,407,-621,680,-679r79,107v-117,31,-508,428,-536,547v65,-53,146,-80,245,-80v219,-2,357,132,357,351xm623,-747v-206,0,-314,170,-314,384v0,145,70,218,211,218v178,0,293,-194,293,-380v0,-127,-67,-222,-190,-222"},"7":{"d":"342,0r-242,0v122,-251,384,-678,785,-1281r-701,0r33,-190r957,0r0,78v-345,486,-623,950,-832,1393"},"8":{"d":"84,-329v3,-251,149,-408,346,-486v-84,-46,-159,-170,-159,-292v-2,-238,194,-384,443,-384v187,0,362,117,362,298v0,176,-137,356,-277,398v109,60,202,181,202,336v0,340,-167,476,-518,479v-219,2,-402,-138,-399,-349xm684,-1321v-174,0,-278,210,-158,337v36,38,78,69,129,90v95,-20,214,-155,214,-268v0,-91,-92,-159,-185,-159xm289,-364v0,122,97,214,214,214v197,0,296,-97,296,-292v0,-133,-105,-233,-205,-283v-132,25,-305,202,-305,361"},"9":{"d":"694,-1491v242,0,391,173,391,417v0,258,-88,497,-265,716v-177,219,-343,347,-500,383r-78,-107v116,-31,508,-427,535,-546v-63,53,-145,79,-245,79v-201,0,-356,-165,-356,-371v0,-329,195,-571,518,-571xm575,-719v206,0,314,-169,314,-384v0,-129,-79,-218,-210,-218v-194,0,-293,175,-293,380v0,127,67,222,189,222"},":":{"d":"292,-921v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151xm204,-131v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},";":{"d":"292,-921v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151xm370,-290v81,0,145,77,145,158v0,89,-24,169,-73,242v-49,73,-135,148,-260,225r-44,-76v129,-88,193,-168,193,-239v0,-23,-8,-48,-23,-75v-51,-30,-76,-69,-76,-116v-1,-72,64,-119,138,-119","w":752},"<":{"d":"889,-218r-739,-358r0,-123r739,-354r0,161r-571,255r571,258r0,161"},"=":{"d":"960,-876r0,141r-838,0r0,-141r838,0xm960,-536r0,141r-838,0r0,-141r838,0"},">":{"d":"993,-576r-739,358r0,-161r571,-258r-571,-255r0,-161r739,354r0,123"},"?":{"d":"539,-1491v179,0,300,105,300,283v0,118,-35,232,-131,316r-233,203v-73,65,-133,142,-132,260r-98,0v-33,-142,-10,-253,94,-354r193,-187v59,-57,116,-131,116,-230v0,-92,-55,-138,-166,-138v-80,0,-145,20,-195,60r-63,-130v61,-55,166,-83,315,-83xm146,-121v0,-76,66,-142,142,-142v75,0,142,67,142,142v0,75,-67,141,-142,141v-76,0,-142,-65,-142,-141","w":752},"@":{"d":"1131,-254v-81,0,-180,-42,-202,-101v-28,54,-143,112,-225,112v-142,0,-240,-84,-239,-227v2,-264,235,-530,537,-460v25,6,74,24,145,55v-55,241,-82,379,-82,413v0,68,27,102,82,102v174,-1,250,-220,250,-410v0,-259,-187,-433,-446,-433v-382,0,-685,371,-685,756v0,286,185,459,471,459v154,0,285,-43,393,-128r96,72v-139,119,-310,178,-511,178v-353,0,-593,-209,-593,-559v0,-471,383,-900,851,-900v335,0,569,191,569,521v0,263,-157,550,-411,550xm896,-845v-153,0,-271,210,-271,364v0,84,37,126,112,126v100,1,185,-87,203,-175r55,-270v-27,-30,-60,-45,-99,-45","w":1578},"A":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0","w":1251,"k":{"\u2019":258,"y":79,"w":150,"v":167,"Y":247,"W":202,"V":252,"T":230," ":76}},"B":{"d":"1138,-1142v0,151,-135,310,-274,321v163,30,244,142,244,336v0,165,-59,289,-174,373v-169,124,-509,141,-847,112r259,-1465v99,-15,191,-22,275,-22v345,0,517,115,517,345xm524,-1305r-66,406v58,5,105,7,141,7v223,0,335,-86,335,-257v0,-110,-87,-165,-260,-165v-33,0,-83,3,-150,9xm324,-170v270,42,577,-45,577,-293v0,-184,-117,-276,-351,-276v-39,0,-81,2,-126,7","w":1159},"C":{"d":"643,25v-327,2,-502,-222,-502,-556v0,-268,73,-495,219,-681v146,-186,333,-278,564,-278v116,0,209,16,280,47r-55,195v-56,-43,-135,-64,-237,-64v-157,0,-290,79,-398,236v-108,157,-161,326,-161,508v0,275,114,413,343,413v118,0,233,-48,344,-145r-16,212v-82,75,-209,113,-381,113","w":1225},"D":{"d":"1247,-898v0,540,-350,898,-860,898r-320,0r258,-1465v82,-15,165,-23,249,-23v410,-1,673,189,673,590xm1032,-909v0,-277,-252,-456,-540,-384r-186,1104v461,69,726,-287,726,-720","w":1256},"E":{"d":"484,-1285r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-874,0r259,-1465r885,0r-33,180r-674,0","w":1097},"F":{"d":"492,-1285r-72,407r515,0r-30,170r-515,0r-125,708r-210,0r262,-1465r911,0r-31,180r-705,0","w":1075,"k":{"A":230,".":400,",":400," ":37}},"G":{"d":"112,-539v0,-536,342,-951,864,-951v144,0,244,28,300,84r-60,191v-85,-63,-178,-95,-278,-95v-372,0,-613,342,-613,732v0,282,133,423,399,423v107,0,199,-32,276,-96r61,-343r-203,0r30,-170r403,0r-113,638v-138,101,-314,151,-527,151v-359,0,-539,-188,-539,-564","w":1385},"H":{"d":"913,0r125,-708r-640,0r-125,708r-206,0r259,-1465r206,0r-104,587r640,0r104,-587r204,0r-259,1465r-204,0","w":1340},"I":{"d":"75,0r259,-1465r204,0r-259,1465r-204,0","w":570},"J":{"d":"267,20v-185,0,-305,-118,-280,-313r175,0v0,89,45,133,135,133v86,0,151,-18,196,-54v45,-36,83,-145,114,-325r163,-926r200,0r-161,918v-37,211,-92,357,-166,441v-74,84,-199,126,-376,126","w":976},"K":{"d":"869,0r-284,-674r-244,277r-70,397r-202,0r258,-1465r202,0r-132,758r666,-758r233,0r-550,635r354,830r-231,0","w":1179},"L":{"d":"84,0r259,-1465r204,0r-227,1285r662,0r-32,180r-866,0","w":1037,"k":{"\u2019":217,"y":89,"Y":249,"W":171,"V":174,"T":213," ":37}},"M":{"d":"1247,0r-20,-906r-487,926r-50,0r-158,-934r-338,914r-190,0r522,-1465r101,0r159,1028r516,-1028r105,0r41,1465r-201,0","w":1559},"N":{"d":"1003,20r-572,-1040r-172,1020r-200,0r259,-1465r80,0r560,998r169,-998r198,0r-262,1485r-60,0","w":1307},"O":{"d":"587,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm327,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502","w":1380},"P":{"d":"1167,-1059v0,399,-395,591,-805,495r-100,564r-208,0r267,-1465v124,-13,222,-20,294,-20v368,0,552,142,552,426xm556,-717v223,2,398,-107,398,-322v0,-179,-97,-269,-290,-269v-55,0,-113,8,-175,23r-95,541v37,18,91,27,162,27","w":1113,"k":{"A":245,".":400,",":400," ":76}},"Q":{"d":"1359,-956v0,376,-172,816,-441,912v51,209,406,289,594,142r87,151v-50,65,-225,123,-353,123v-267,0,-468,-147,-512,-370v-51,15,-105,23,-161,23v-319,1,-473,-231,-473,-563v0,-257,69,-481,206,-670v137,-189,315,-283,534,-283v338,-1,519,194,519,535xm313,-566v0,227,85,411,292,411v166,0,297,-78,395,-233v98,-155,147,-337,147,-547v0,-251,-108,-377,-324,-377v-145,0,-267,80,-364,240v-97,160,-146,328,-146,506","w":1380},"R":{"d":"1171,-1159v0,247,-174,453,-381,495r273,664r-229,0r-230,-629v-51,0,-122,-3,-211,-10r-112,639r-210,0r258,-1465r359,-15v155,0,274,28,358,83v84,55,125,135,125,238xm957,-1076v5,-224,-219,-233,-450,-209r-84,476v260,41,530,-32,534,-267","w":1192,"k":{"Y":137,"W":89,"V":115,"T":98}},"S":{"d":"903,-387v9,332,-324,470,-662,390v-65,-15,-117,-31,-154,-50r60,-192v54,44,193,82,293,82v148,0,264,-76,263,-218v0,-57,-20,-105,-55,-150v-68,-87,-314,-240,-377,-337v-37,-57,-60,-123,-60,-205v0,-262,190,-423,450,-423v150,0,250,13,299,39r-57,194v-35,-30,-148,-63,-217,-63v-160,0,-277,72,-276,225v1,73,42,128,87,167v27,23,83,64,165,127v141,108,235,202,241,414","w":985},"T":{"d":"828,-1285r-226,1285r-205,0r226,-1285r-466,0r32,-180r1153,0r-32,180r-482,0","w":1189,"k":{"y":195,"w":221,"u":221,"s":223,"r":213,"o":240,"i":53,"e":249,"c":249,"a":249,"O":98,"A":230,";":150,":":150,".":300,"-":230,",":300}},"U":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471","w":1328},"V":{"d":"563,20r-101,0r-284,-1485r220,0r186,1069r544,-1069r227,0","w":1203,"k":{"y":46,"u":80,"r":124,"o":163,"i":54,"e":137,"a":137,"A":250,";":37,":":37,".":273,"-":111,",":273}},"W":{"d":"1187,20r-63,0r-169,-989r-506,989r-63,0r-200,-1485r208,0r119,990r497,-990r70,0r147,985r460,-985r218,0","w":1745,"k":{"i":35,"e":132,"a":98,"A":176,".":197,"-":98,",":258}},"X":{"d":"818,0r-244,-565r-416,565r-232,0r565,-770r-271,-696r207,1r200,536r418,-536r231,0r-568,720r334,745r-224,0","w":1140},"Y":{"d":"714,-656r-116,656r-200,0r116,-656r-332,-809r209,0r249,625r461,-625r226,0","w":1168,"k":{"v":111,"u":163,"q":226,"p":165,"o":208,"i":63,"e":217,"a":213,"A":261,";":76,":":76,".":300,"-":230,",":300," ":37}},"Z":{"d":"80,0r0,-50r817,-1235r-620,0r31,-180r876,0r0,50r-789,1235r614,0r-32,180r-897,0","w":1127},"[":{"d":"22,420r340,-1930r473,0r-30,170r-263,0r-280,1590r263,0r-30,170r-473,0","w":752},"\\":{"d":"490,0r-305,-1471r142,0r306,1471r-143,0","w":728},"]":{"d":"466,420r-473,0r30,-170r263,0r280,-1590r-263,0r30,-170r473,0","w":752},"^":{"d":"906,-907r-244,-448r-248,452r-122,0r318,-568r107,0r316,564r-127,0"},"_":{"d":"-8,254r0,-129r1085,0r0,129r-1085,0"},"`":{"d":"661,-1225r-156,-333r197,0r59,333r-100,0"},"a":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262","w":1076},"b":{"d":"1088,-621v0,328,-274,641,-608,641v-109,0,-184,-41,-227,-123r-101,123r-125,0v43,-125,81,-269,110,-435r192,-1095r184,0r-89,552v50,-89,139,-133,267,-133v243,0,397,207,397,470xm474,-136v221,0,408,-255,408,-469v0,-217,-96,-326,-288,-326v-76,0,-142,49,-197,147r-100,521v14,60,97,127,177,127","w":1141},"c":{"d":"90,-395v0,-380,236,-699,596,-696v103,0,183,18,242,54r-35,163v-48,-38,-112,-57,-193,-57v-253,0,-411,241,-411,503v0,155,105,285,241,285v97,0,189,-30,278,-89r-21,194v-87,39,-183,58,-287,58v-258,0,-410,-163,-410,-415","w":942},"d":{"d":"82,-377v0,-386,233,-714,598,-712v101,0,179,42,233,126r101,-547r181,0r-261,1510r-188,0r23,-123v-77,95,-183,142,-317,142v-234,0,-370,-159,-370,-396xm697,-929v-251,0,-410,240,-410,511v0,189,78,283,233,283v169,0,285,-194,314,-371r44,-268v-19,-61,-90,-155,-181,-155","w":1141},"e":{"d":"1065,-829v3,247,-252,377,-511,377v-96,0,-177,-18,-243,-54v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-107,35,-201,53,-283,53v-276,0,-414,-155,-414,-464v0,-351,263,-647,612,-647v194,0,348,81,349,262xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287","w":1100},"f":{"d":"899,-1332v-51,-19,-90,-28,-118,-28v-121,0,-198,96,-231,289r248,0r-16,131r-251,0r-169,1010v-29,189,-191,314,-387,338r-17,-117v80,-13,184,-137,199,-221r177,-1010r-151,0r22,-131r147,0v59,-293,206,-439,441,-439v56,0,103,10,142,30","w":822,"k":{"\u2019":37}},"g":{"d":"877,31v0,379,-630,507,-890,269r90,-140v122,61,223,92,303,92v151,1,308,-53,308,-186v0,-135,-191,-113,-306,-143v-71,-19,-107,-54,-107,-109v0,-44,57,-88,171,-133v-183,19,-326,-130,-328,-297v-4,-275,205,-475,480,-475v101,0,180,24,238,72r90,-102r105,108r-99,103v19,27,29,70,29,129v2,235,-137,406,-315,467v-94,33,-140,64,-140,93v-2,58,82,26,121,26v167,0,250,75,250,226xm761,-762v0,-107,-70,-176,-177,-176v-152,0,-272,147,-272,300v0,145,55,218,165,218v149,0,284,-192,284,-342","w":1028},"h":{"d":"762,-1091v229,0,331,179,289,418r-119,673r-196,0r119,-673v28,-148,-26,-263,-173,-258v-103,3,-218,74,-269,135r-141,796r-194,0r261,-1510r189,0r-88,557v57,-72,197,-138,322,-138","w":1141},"i":{"d":"312,-1358v0,-72,61,-133,133,-133v72,0,133,61,133,133v0,71,-62,132,-133,132v-71,0,-133,-61,-133,-132xm138,0r162,-911r-142,0r35,-157r327,0r-189,1068r-193,0","w":628},"j":{"d":"448,-1358v0,-71,62,-133,133,-133v71,0,133,62,133,133v0,71,-62,132,-133,132v-71,0,-133,-61,-133,-132xm-139,415r8,-168v230,0,361,-84,393,-252r172,-906r-141,0r34,-160r329,0r-193,1055v-58,307,-238,429,-602,431","w":751},"k":{"d":"441,-473r-75,65r-70,408r-190,0r253,-1510r185,0r-137,878v251,-235,405,-393,463,-474r128,115v-107,119,-244,257,-409,414r404,577r-224,0","w":1033},"l":{"d":"489,-120r-22,140v-214,0,-321,-79,-321,-238v0,-48,17,-155,50,-321r192,-971r198,0r-183,912v-38,189,-57,308,-57,356v0,81,48,122,143,122","w":656},"m":{"d":"1015,-948v51,-77,199,-143,324,-143v231,0,322,149,282,375r-127,716r-195,0r120,-678v28,-144,-22,-258,-170,-253v-95,3,-196,72,-232,139r-140,792r-195,0r135,-761v17,-115,-48,-169,-186,-170v-86,1,-197,83,-233,141r-140,790r-194,0r138,-781v12,-76,6,-216,-14,-274r185,-35v12,51,19,98,21,140v48,-84,193,-142,325,-141v153,0,251,48,296,143","w":1700},"n":{"d":"728,0r112,-623v10,-55,15,-101,15,-138v0,-113,-59,-170,-177,-170v-102,1,-220,73,-269,135r-139,796r-192,0r144,-812v12,-78,2,-180,-16,-243r184,-36v18,97,27,150,26,159v81,-106,199,-159,352,-159v193,0,290,99,290,296v0,39,-4,83,-13,132r-115,663r-202,0","w":1119},"o":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258","w":1099},"p":{"d":"490,25v-69,0,-210,-35,-231,-79r-84,479r-190,0r210,-1176v18,-101,19,-201,-1,-299r191,-36v3,9,9,54,18,137v51,-68,188,-137,299,-137v266,0,396,131,399,397v4,382,-238,714,-611,714xm899,-663v-1,-177,-89,-262,-266,-263v-80,-1,-211,75,-243,125r-103,590v20,41,115,76,176,76v292,0,438,-222,436,-528","w":1141},"q":{"d":"79,-381v0,-375,254,-710,621,-710v95,0,176,34,243,101r51,-81r158,0v-41,133,-68,239,-82,318r-209,1173r-190,0r85,-483v-65,55,-162,83,-293,83v-216,0,-384,-189,-384,-401xm283,-427v0,179,98,288,274,287v91,0,166,-23,225,-70r113,-639v-45,-55,-108,-82,-191,-82v-254,0,-421,244,-421,504","w":1141},"r":{"d":"835,-883v-109,-81,-237,-55,-333,45v-60,63,-100,137,-115,224r-109,614r-190,0r189,-1071r190,0r-30,171v92,-127,206,-191,343,-191v23,0,60,5,109,14","w":853,"k":{"\u2019":11,".":269,"-":150,",":269}},"s":{"d":"753,-352v0,235,-200,372,-441,372v-113,0,-214,-28,-303,-84r99,-180v40,44,160,104,237,104v113,2,211,-67,205,-178v-5,-85,-60,-105,-136,-151v-115,-69,-269,-116,-271,-292v-3,-204,191,-330,401,-330v78,0,172,25,282,74r-85,176v-65,-60,-136,-90,-211,-90v-91,0,-189,53,-184,140v5,89,60,107,138,153v115,67,269,111,269,286","w":829},"t":{"d":"425,20v-177,0,-271,-149,-232,-333r128,-608r-124,0r32,-150r124,0r44,-224r217,-82r-71,306r294,0r-32,150r-294,0r-112,532v-36,136,-1,249,139,249v49,0,102,-12,159,-37r-7,167v-55,20,-143,30,-265,30","w":860},"u":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171","w":1140},"v":{"d":"460,20r-50,0r-311,-1094r198,0r192,737r407,-737r219,0","w":1003,"k":{".":250,",":250}},"w":{"d":"1042,20r-50,0r-199,-697r-428,697r-50,0r-200,-1094r193,0r117,681r399,-681r50,0r192,686r336,-686r197,0","w":1524,"k":{".":234,",":234}},"x":{"d":"701,0r-188,-376r-295,376r-232,0r441,-557r-270,-514r224,0r177,372r272,-372r250,0r-427,530r295,541r-247,0","w":1026},"y":{"d":"31,420r0,-191v235,0,320,-60,376,-224v-94,0,-156,-93,-187,-278r-134,-798r207,0r118,777v11,77,39,115,82,115r386,-892r216,0r-537,1199v-99,208,-216,291,-527,292","w":1010,"k":{".":239,",":239}},"z":{"d":"336,-170r533,0r-30,170r-831,0r0,-50r657,-851r-549,0r30,-170r836,0r0,54","w":972},"{":{"d":"394,-344v0,81,-145,361,-136,453v16,159,118,172,304,171r-24,140r-139,0v-178,2,-347,-82,-347,-249v0,-109,159,-421,159,-530v0,-101,-59,-156,-176,-164r15,-84v157,-9,255,-135,255,-304v0,-47,-18,-192,-18,-238v0,-220,214,-357,441,-353r148,0r-23,133r-175,0v-137,0,-202,109,-202,254v0,39,16,157,16,195v0,70,-21,133,-62,188v-41,55,-114,110,-219,165v122,54,183,128,183,223","w":752},"|":{"d":"462,276r0,-1681r146,0r0,1681r-146,0"},"}":{"d":"463,29v0,250,-198,395,-455,391r-139,0r24,-140v280,-2,379,-68,387,-317v1,-39,-12,-162,-12,-201v0,-149,92,-258,276,-329v-119,-77,-178,-159,-178,-246v0,-89,130,-331,130,-425v0,-87,-46,-131,-137,-131r-175,0r23,-133r148,0v169,-2,340,82,340,242v0,91,-150,380,-150,475v0,109,58,169,174,178r-15,84v-170,11,-255,115,-255,311v0,47,14,194,14,241","w":752},"~":{"d":"947,-735v-26,114,-116,238,-243,238v-63,0,-127,-19,-191,-59v-64,-40,-114,-60,-151,-60v-91,0,-155,27,-194,80r-40,-20v16,-113,124,-226,247,-226v75,0,147,22,213,66v66,44,110,67,132,67v103,-4,124,-27,178,-103"},"\u00c4":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm507,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm980,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1251},"\u00c5":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm1075,-1746v0,114,-101,178,-222,178v-124,0,-222,-60,-222,-178v0,-98,119,-177,222,-177v113,0,222,69,222,177xm988,-1746v0,-119,-269,-117,-269,0v0,60,45,90,134,90v66,1,135,-29,135,-90","w":1251},"\u00c7":{"d":"643,25v-327,2,-502,-222,-502,-556v0,-268,73,-495,219,-681v146,-186,333,-278,564,-278v116,0,209,16,280,47r-55,195v-56,-43,-135,-64,-237,-64v-157,0,-290,79,-398,236v-108,157,-161,326,-161,508v0,275,114,413,343,413v118,0,233,-48,344,-145r-16,212v-82,75,-209,113,-381,113xm653,56v109,-2,179,59,180,161v1,158,-154,240,-320,238r-8,-99v100,1,206,-34,206,-122v0,-39,-26,-58,-79,-58","w":1225},"\u00c9":{"d":"484,-1285r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-874,0r259,-1465r885,0r-33,180r-674,0xm975,-1918r-226,333r-140,0r169,-333r197,0","w":1097},"\u00d1":{"d":"1003,20r-572,-1040r-172,1020r-200,0r259,-1465r80,0r560,998r169,-998r198,0r-262,1485r-60,0xm449,-1585v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0","w":1307},"\u00d6":{"d":"600,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm340,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502xm538,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm1011,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1380},"\u00dc":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471xm477,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm950,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1328},"\u00e1":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm1008,-1558r-226,333r-140,0r169,-333r197,0","w":1076},"\u00e0":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm657,-1225r-156,-333r197,0r59,333r-100,0","w":1076},"\u00e2":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm868,-1222r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1076},"\u00e4":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm382,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm855,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1076},"\u00e3":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm412,-1225v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0","w":1076},"\u00e5":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm991,-1400v0,114,-101,178,-222,178v-124,0,-222,-60,-222,-178v0,-98,119,-177,222,-177v113,0,222,69,222,177xm904,-1400v0,-119,-269,-117,-269,0v0,60,45,90,134,90v66,1,135,-29,135,-90","w":1076},"\u00e7":{"d":"90,-395v0,-380,236,-699,596,-696v103,0,183,18,242,54r-35,163v-48,-38,-112,-57,-193,-57v-253,0,-411,241,-411,503v0,155,105,285,241,285v97,0,189,-30,278,-89r-21,194v-87,39,-183,58,-287,58v-258,0,-410,-163,-410,-415xm496,56v109,-2,179,59,180,161v1,158,-154,240,-320,238r-8,-99v100,1,206,-34,206,-122v0,-39,-26,-58,-79,-58","w":942},"\u00e9":{"d":"1065,-829v3,247,-252,377,-511,377v-96,0,-177,-18,-243,-54v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-107,35,-201,53,-283,53v-276,0,-414,-155,-414,-464v0,-351,263,-647,612,-647v194,0,348,81,349,262xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287xm987,-1558r-226,333r-140,0r169,-333r197,0","w":1100},"\u00e8":{"d":"1065,-829v3,247,-252,377,-511,377v-96,0,-177,-18,-243,-54v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-107,35,-201,53,-283,53v-276,0,-414,-155,-414,-464v0,-351,263,-647,612,-647v194,0,348,81,349,262xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287xm701,-1225r-156,-333r197,0r59,333r-100,0","w":1100},"\u00ea":{"d":"1065,-829v3,247,-252,377,-511,377v-96,0,-177,-18,-243,-54v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-107,35,-201,53,-283,53v-276,0,-414,-155,-414,-464v0,-351,263,-647,612,-647v194,0,348,81,349,262xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287xm860,-1222r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1100},"\u00eb":{"d":"1065,-829v3,247,-252,377,-511,377v-96,0,-177,-18,-243,-54v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-107,35,-201,53,-283,53v-276,0,-414,-155,-414,-464v0,-351,263,-647,612,-647v194,0,348,81,349,262xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287xm377,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm850,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1100},"\u00ed":{"d":"138,0r162,-911r-142,0r35,-157r327,0r-189,1068r-193,0xm613,-1558r-226,333r-140,0r169,-333r197,0","w":628},"\u00ec":{"d":"138,0r162,-911r-142,0r35,-157r327,0r-189,1068r-193,0xm360,-1225r-156,-333r197,0r59,333r-100,0","w":628},"\u00ee":{"d":"238,0r162,-911r-142,0r35,-157r327,0r-189,1068r-193,0xm651,-1222r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":628},"\u00ef":{"d":"138,0r162,-911r-142,0r35,-157r327,0r-189,1068r-193,0xm138,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm611,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":628},"\u00f1":{"d":"728,0r112,-623v10,-55,15,-101,15,-138v0,-113,-59,-170,-177,-170v-102,1,-220,73,-269,135r-139,796r-192,0r144,-812v12,-78,2,-180,-16,-243r184,-36v18,97,27,150,26,159v81,-106,199,-159,352,-159v193,0,290,99,290,296v0,39,-4,83,-13,132r-115,663r-202,0xm369,-1225v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0","w":1119},"\u00f3":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258xm917,-1558r-226,333r-140,0r169,-333r197,0","w":1099},"\u00f2":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258xm661,-1225r-156,-333r197,0r59,333r-100,0","w":1099},"\u00f4":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258xm810,-1222r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1099},"\u00f6":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258xm357,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm830,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1099},"\u00f5":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258xm349,-1225v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0","w":1099},"\u00fa":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171xm937,-1558r-226,333r-140,0r169,-333r197,0","w":1140},"\u00f9":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171xm681,-1225r-156,-333r197,0r59,333r-100,0","w":1140},"\u00fb":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171xm860,-1222r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1140},"\u00fc":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171xm377,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm850,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1140},"\u2020":{"d":"481,-931r-370,0r25,-140r370,0r55,-314r150,0r-55,314r370,0r-25,140r-370,0r-208,1181r-89,88r-61,-88","w":940},"\u00b0":{"d":"864,-1282v0,113,-98,210,-211,210v-114,0,-212,-97,-212,-210v0,-113,98,-209,212,-209v113,0,211,96,211,209xm792,-1282v0,-74,-65,-139,-139,-139v-75,0,-139,65,-139,139v0,74,64,139,139,139v74,0,139,-65,139,-139"},"\u00a2":{"d":"177,-425v0,-304,193,-537,484,-535r76,-257r102,0r-77,269v62,19,115,45,158,78r-36,142v-47,-42,-100,-72,-159,-89r-168,586v101,5,184,-20,271,-68r-19,150v-88,32,-181,49,-288,44r-74,257r-115,0r83,-279v-100,-10,-238,-180,-238,-298xm620,-819v-159,9,-262,188,-262,369v0,73,48,169,97,187"},"\u00a3":{"d":"666,84v-139,0,-262,-68,-386,-66v-47,0,-104,5,-172,15r-28,-151v8,-3,36,-24,84,-64v99,-81,187,-326,171,-512r-177,0r26,-149r151,0v-4,-430,119,-627,511,-637v88,-2,199,33,237,78r-95,152v-59,-41,-123,-62,-194,-62v-173,0,-259,135,-259,405v0,21,1,42,2,64r211,0r-26,149r-185,0v6,143,-61,477,-146,530v71,45,164,68,279,68v96,0,224,-72,260,-135r115,127v-38,89,-246,188,-379,188","w":1084},"\u00a7":{"d":"164,-718v-2,-86,66,-200,134,-219v-55,-35,-82,-95,-82,-180v-2,-248,195,-373,452,-373v90,0,226,51,272,99r-89,152v-40,-47,-110,-71,-210,-71v-141,0,-211,51,-211,152v0,41,23,67,52,85v59,36,198,66,274,102v172,82,136,318,-5,428v60,45,90,100,90,165v0,245,-216,401,-467,401v-147,0,-258,-31,-332,-92r91,-176v47,45,174,90,262,90v130,0,230,-57,230,-180v0,-69,-66,-119,-200,-149v-123,-27,-257,-104,-261,-234xm439,-881v-93,43,-111,138,-36,195v30,23,107,47,229,74v39,-55,57,-140,10,-190v-52,-55,-105,-45,-203,-79","w":929},"\u2022":{"d":"253,-574v0,-156,133,-289,289,-289v156,0,289,133,289,289v0,156,-133,289,-289,289v-156,0,-289,-133,-289,-289"},"\u00b6":{"d":"1236,-1384r0,134r-154,0r-179,946v39,0,91,-12,158,-35r25,134v-77,29,-147,44,-211,44v-43,199,-95,338,-158,418v-63,80,-141,120,-234,120v-147,0,-243,-24,-290,-72r55,-150v53,35,118,52,195,52v117,0,199,-124,247,-373v-130,5,-250,-38,-360,-130v-110,-92,-164,-215,-164,-370v0,-189,70,-346,211,-472v141,-126,322,-201,543,-224r13,-103r174,0r-10,86v61,-3,107,-5,139,-5xm900,-1218v-188,59,-374,288,-374,525v0,187,68,311,203,370","w":1226},"\u00df":{"d":"537,-154v216,50,337,-145,337,-349v0,-152,-104,-207,-181,-283v-70,-70,-92,-140,-11,-206v81,-65,152,-104,152,-236v0,-75,-49,-112,-146,-112v-54,0,-100,20,-138,62v-38,42,-69,129,-92,262r-199,1127v-26,164,-195,284,-371,300r-13,-120v117,-32,187,-127,215,-286r203,-1164v33,-142,117,-260,229,-313v186,-87,504,-30,496,189v-4,118,-51,190,-120,265v-85,94,-94,83,15,150v109,67,166,170,166,317v0,336,-248,662,-604,548","w":1119},"\u00ae":{"d":"780,14v-362,0,-675,-313,-675,-675v0,-362,313,-674,675,-674v362,0,674,312,674,674v0,362,-312,675,-674,675xm780,-96v304,0,564,-262,564,-565v0,-304,-260,-564,-564,-564v-304,0,-565,260,-565,564v0,304,262,565,565,565xm990,-254r-211,-357r-120,0r0,357r-119,0r0,-831r213,0v200,0,300,77,300,230v0,107,-54,182,-161,226r227,375r-129,0xm737,-705v141,0,189,-15,196,-142v7,-123,-127,-148,-274,-136r0,276v10,1,36,2,78,2","w":1460},"\u00a9":{"d":"780,14v-362,0,-675,-313,-675,-675v0,-362,313,-674,675,-674v362,0,674,312,674,674v0,362,-312,675,-674,675xm780,-96v304,0,564,-262,564,-565v0,-304,-260,-564,-564,-564v-304,0,-565,260,-565,564v0,304,262,565,565,565xm553,-657v0,170,88,317,243,318v78,0,138,-27,179,-82r63,86v-67,66,-151,99,-254,99v-227,1,-350,-187,-350,-427v0,-231,139,-434,358,-432v91,0,162,15,212,44r-38,97v-36,-26,-93,-39,-172,-39v-160,1,-241,161,-241,336","w":1460},"\u2122":{"d":"499,-1381r0,643r-100,0r0,-643r-208,0r0,-90r527,0r0,90r-219,0xm1254,-739r-83,-498r-147,503r-59,0r-155,-510r-77,505r-95,0r112,-732r75,0r169,567r167,-567r75,0r113,732r-95,0","w":1300},"\u00b4":{"d":"917,-1558r-226,333r-140,0r169,-333r197,0"},"\u00a8":{"d":"377,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm850,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113"},"\u2260":{"d":"836,-1051r139,0r-143,175r142,0r0,141r-257,0r-162,199r419,0r0,141r-534,0r-165,202r-138,0r165,-202r-166,0r0,-141r280,0r163,-199r-443,0r0,-141r557,0"},"\u00c6":{"d":"782,-307r-438,0r-193,307r-234,0r963,-1465r981,0r-33,180r-666,0r-69,407r474,0r-30,170r-474,0r-94,528r654,0r-31,180r-864,0xm948,-1252r-514,796r374,0","w":1775},"\u00d8":{"d":"1537,-1491r-211,241v40,80,60,178,60,294v0,285,-70,520,-209,704v-139,184,-332,277,-577,277v-120,0,-220,-36,-300,-107r-89,102r-213,0r203,-230v-49,-93,-74,-203,-74,-328v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v155,0,277,39,365,118r104,-118r200,0xm361,-390r734,-827v-54,-63,-136,-95,-245,-95v-149,0,-273,80,-367,244v-122,213,-176,425,-122,678xm1163,-1065r-726,827v49,55,114,83,195,83v166,0,298,-77,396,-231v115,-183,170,-417,135,-679","w":1380},"\u221e":{"d":"1082,-671v0,141,-101,219,-246,219v-85,0,-165,-48,-241,-144v-76,96,-155,144,-238,144v-148,1,-247,-76,-247,-219v0,-126,106,-215,234,-215v97,0,180,43,250,129v70,-86,155,-129,255,-129v127,0,233,90,233,215xm656,-674v57,79,120,119,190,119v87,0,130,-39,130,-116v0,-77,-47,-116,-140,-116v-51,0,-111,38,-180,113xm537,-674v-69,-75,-129,-113,-180,-113v-93,0,-140,39,-140,116v0,77,43,116,130,116v70,0,133,-40,190,-119"},"\u00b1":{"d":"640,-706r349,0r0,141r-349,0r0,345r-141,0r0,-345r-348,0r0,-141r348,0r0,-343r141,0r0,343xm989,-121r0,141r-838,0r0,-141r838,0"},"\u2264":{"d":"150,-594r0,-123r739,-354r0,161r-571,255r571,258r0,161xm960,-121r0,141r-838,0r0,-141r838,0"},"\u2265":{"d":"961,-594r-739,358r0,-161r571,-258r-571,-255r0,-161r739,354r0,123xm151,-121r838,0r0,141r-838,0r0,-141"},"\u00a5":{"d":"714,-656r-19,110r251,0r-24,131r-251,0r-73,415r-200,0r73,-415r-246,0r24,-131r246,0r19,-110r-332,-809r209,0r249,625r461,-625r226,0","w":1140},"\u03bc":{"d":"723,-148v-56,94,-178,167,-317,168v-72,0,-131,-13,-176,-38r-77,438r-190,0r262,-1491r190,0r-109,623v-7,42,-11,78,-11,107v0,130,64,195,192,195v77,0,140,-21,187,-64v47,-43,73,-71,75,-85r136,-776r190,0r-188,1071r-190,0","w":1140},"\u2202":{"d":"77,-332v0,-400,288,-736,677,-730v-13,-73,-74,-124,-136,-176v-112,-94,-118,-93,-294,-157r79,-156v369,52,686,418,686,829v0,413,-233,743,-635,743v-228,0,-377,-132,-377,-353xm474,-150v258,0,416,-293,416,-560v0,-94,-19,-164,-57,-210v-288,-24,-561,251,-561,543v0,121,86,227,202,227","w":1125},"\u2211":{"d":"500,-1285r302,546r-529,732r642,0r0,180r-894,0r0,-180r541,-732r-300,-566r0,-160r872,0r0,180r-634,0","w":1075},"\u220f":{"d":"535,-1285r-257,1455r-200,0r256,-1455r-210,0r32,-180r1180,0r-32,180r-180,0r-256,1455r-200,0r256,-1455r-389,0","w":1132},"\u03c0":{"d":"1150,-162r-21,161v-47,15,-91,22,-132,22v-156,0,-234,-72,-234,-215v0,-43,2,-78,6,-104r99,-613r-337,0r-160,911r-193,0r160,-911r-167,0r28,-160r1048,0r-28,160r-158,0r-101,604v-21,99,-6,180,98,177v29,0,60,-11,92,-32","w":1232},"\u222b":{"d":"-176,312r116,-159v66,111,215,137,295,23v36,-51,61,-105,72,-167r190,-1073v38,-239,205,-446,459,-446v107,0,195,34,262,102r-106,147v-45,-53,-111,-79,-196,-79v-101,0,-170,102,-206,306r-178,1011v-41,243,-170,443,-423,443v-118,0,-213,-36,-285,-108"},"\u00aa":{"d":"220,-967v0,-255,194,-524,450,-524v120,0,206,20,259,61r-92,436v-15,97,-3,208,56,274r-133,0v-29,-29,-46,-56,-53,-83v-49,60,-128,90,-236,90v-154,1,-251,-98,-251,-254xm657,-1372v-150,0,-277,208,-277,391v0,99,44,149,133,149v99,0,168,-81,207,-243r64,-267v-13,-20,-55,-30,-127,-30","w":927},"\u00ba":{"d":"553,-714v-180,0,-300,-111,-300,-290v0,-281,155,-488,427,-488v180,0,290,104,290,284v0,285,-143,494,-417,494xm661,-1383v-179,1,-258,177,-258,370v0,102,69,190,169,190v168,0,248,-200,248,-380v0,-120,-53,-180,-159,-180","w":940},"\u03a9":{"d":"1387,-950v0,367,-170,656,-414,800r289,0r-26,149r-510,1r27,-152v153,-119,261,-240,326,-362v65,-122,97,-260,97,-415v0,-255,-111,-382,-334,-382v-147,0,-266,66,-357,197v-91,131,-136,284,-136,459v0,192,79,428,193,505r-26,150r-500,-1r26,-149r268,0v-106,-91,-177,-305,-177,-501v0,-453,294,-840,741,-840v342,0,513,180,513,541","w":1370},"\u00e6":{"d":"1714,-829v2,247,-252,377,-512,377v-95,0,-176,-18,-243,-54v-41,216,64,366,273,366v79,0,158,-29,238,-87r-21,194v-220,74,-417,87,-549,-67v-3,39,-6,73,-9,100r-188,1v1,-27,8,-78,21,-154v-51,96,-184,174,-327,173v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v139,0,253,14,340,41r-11,71v103,-75,221,-112,354,-112v193,0,348,82,349,262xm829,-904v-197,-70,-344,-26,-453,140v-76,115,-114,253,-114,416v0,142,60,213,180,213v145,0,274,-115,317,-364xm992,-644v185,77,533,28,533,-174v0,-75,-70,-113,-210,-113v-157,0,-277,155,-323,287","w":1730},"\u00f8":{"d":"73,-394v0,-359,245,-697,595,-697v115,0,207,28,274,84r81,-84r168,0r-172,179v80,159,56,365,-11,546v-76,205,-264,388,-536,386v-111,0,-200,-27,-267,-82r-79,82r-182,0r179,-184v-33,-63,-50,-140,-50,-230xm641,-936v-253,0,-362,276,-368,529v0,29,2,56,7,81r530,-546v-38,-43,-94,-64,-169,-64xm500,-135v258,0,360,-285,368,-541v0,-27,-2,-51,-5,-73r-526,549v39,43,93,65,163,65","w":1099},"\u00bf":{"d":"658,-950v0,76,-66,142,-142,142v-75,0,-142,-67,-142,-142v0,-75,67,-141,142,-141v76,0,142,65,142,141xm559,-642v17,80,19,169,-19,242v-23,45,-51,89,-90,127r-186,179v-71,75,-107,150,-107,223v0,92,55,138,165,138v80,0,145,-20,195,-60r64,130v-62,55,-167,83,-316,83v-179,0,-302,-105,-299,-283v3,-158,64,-258,162,-344r210,-182v85,-80,126,-164,123,-253r98,0","w":752},"\u00a1":{"d":"624,-950v0,77,-65,142,-142,142v-77,0,-142,-65,-142,-142v0,-77,65,-141,142,-141v77,0,142,64,142,141xm477,-689v-4,237,-10,399,-18,483v-22,236,-66,409,-101,626r-226,0v78,-459,88,-561,274,-1109r71,0","w":752},"\u00ac":{"d":"960,-886r0,486r-141,0r0,-345r-697,0r0,-141r838,0"},"\u221a":{"d":"751,-1349r-384,1349r-142,0r-209,-268r98,-83r150,194r374,-1314r450,0r0,122r-337,0"},"\u0192":{"d":"899,-1332v-51,-19,-90,-28,-118,-28v-121,0,-198,96,-231,289r248,0r-16,131r-251,0r-169,1010v-29,189,-191,314,-387,338r-17,-117v80,-13,184,-137,199,-221r177,-1010r-151,0r22,-131r147,0v59,-293,206,-439,441,-439v56,0,103,10,142,30","w":822},"\u2248":{"d":"1067,-835v-26,114,-116,238,-243,238v-63,0,-127,-19,-191,-59v-64,-40,-114,-60,-151,-60v-91,0,-155,27,-194,80r-40,-20v16,-113,124,-226,247,-226v75,0,147,22,213,66v66,44,110,67,132,67v103,-4,124,-27,178,-103xm937,-465v-26,114,-116,238,-243,238v-63,0,-127,-19,-191,-59v-64,-40,-114,-60,-151,-60v-91,0,-155,27,-194,80r-40,-20v16,-113,124,-226,247,-226v75,0,147,22,213,66v66,44,110,67,132,67v103,-4,124,-27,178,-103"},"\u0394":{"d":"25,0r22,-124r762,-1341r144,0r244,1341r-22,124r-1150,0xm820,-1123r-527,953r675,0","w":1198},"\u00ab":{"d":"123,-535r11,-64r398,-244r-22,125r-240,157r188,138r-22,125xm535,-535r11,-64r398,-244r-22,125r-240,157r188,138r-22,125"},"\u00bb":{"d":"568,-535r-397,237r22,-125r236,-138r-184,-157r22,-125r312,244xm970,-535r-397,237r22,-125r236,-138r-184,-157r22,-125r312,244"},"\u2026":{"d":"250,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm752,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm1254,-281v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150","w":1504},"\u00a0":{"w":617},"\u00c0":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm811,-1585r-156,-333r197,0r59,333r-100,0","w":1251},"\u00c3":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm519,-1585v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0","w":1251},"\u00d5":{"d":"587,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm327,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502xm599,-1585v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0","w":1380},"\u0152":{"d":"523,25v-307,0,-473,-246,-473,-563v0,-285,70,-515,212,-690v142,-175,318,-263,529,-263v180,0,314,52,402,156r23,-130r875,0r-32,180r-675,0r-71,407r484,0r-30,170r-484,0r-94,528r664,0r-31,180r-864,0r24,-138v-101,109,-254,163,-459,163xm263,-566v0,208,97,411,292,411v165,0,297,-72,395,-215v98,-143,147,-331,147,-565v0,-251,-113,-376,-338,-376v-138,0,-255,73,-351,219v-96,146,-145,321,-145,526","w":2034},"\u0153":{"d":"1036,-506v-44,214,64,366,272,366v79,0,158,-29,238,-87r-20,194v-260,95,-548,71,-646,-144v-109,131,-250,197,-425,197v-256,1,-399,-155,-399,-414v0,-358,244,-697,595,-697v173,0,291,61,354,184v116,-123,261,-184,436,-184v193,0,348,82,349,262v2,247,-252,377,-512,377v-95,0,-175,-18,-242,-54xm624,-936v-235,0,-368,284,-368,530v0,181,76,271,227,271v112,0,201,-54,268,-163v67,-109,100,-236,100,-380v0,-172,-76,-258,-227,-258xm1069,-644v185,77,533,28,533,-174v0,-75,-70,-113,-210,-113v-158,0,-276,151,-323,287","w":1825},"\u2013":{"d":"85,-532r22,-132r522,0r-23,132r-521,0","w":752},"\u2014":{"d":"85,-532r21,-132r1308,0r-20,132r-1309,0","w":1504},"\u201c":{"d":"1083,-1421v-55,46,-135,95,-145,179v-7,55,90,136,81,194v-15,97,-61,147,-158,147v-105,0,-150,-65,-140,-177v16,-177,117,-321,303,-432xm624,-1421v-55,46,-135,95,-145,179v-7,55,90,136,81,194v-15,97,-61,147,-158,147v-105,0,-150,-65,-140,-177v16,-177,117,-321,303,-432"},"\u201d":{"d":"1077,-1364v0,211,-110,339,-304,463r-59,-89v55,-46,137,-94,146,-179v6,-55,-89,-136,-81,-194v14,-97,60,-147,157,-147v94,0,141,49,141,146xm618,-1364v0,211,-110,339,-304,463r-59,-89v55,-46,137,-94,146,-179v6,-55,-89,-136,-81,-194v14,-97,60,-147,157,-147v94,0,141,49,141,146"},"\u2018":{"d":"681,-1421v-55,46,-135,95,-145,179v-7,55,90,136,81,194v-15,97,-61,147,-158,147v-105,0,-150,-65,-140,-177v16,-177,117,-321,303,-432","w":752,"k":{"\u2018":197}},"\u2019":{"d":"666,-1364v0,211,-110,339,-304,463r-59,-89v55,-46,137,-94,146,-179v6,-55,-89,-136,-81,-194v14,-97,60,-147,157,-147v94,0,141,49,141,146","w":752,"k":{"\u2019":197,"t":174,"s":141," ":113}},"\u00f7":{"d":"582,-1150v81,0,150,69,150,150v0,81,-69,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150xm998,-705r0,141r-838,0r0,-141r838,0xm582,-400v81,0,150,69,150,150v0,81,-69,151,-150,151v-80,0,-150,-71,-150,-151v0,-80,70,-150,150,-150"},"\u25ca":{"d":"549,-1422r418,713r-418,709r-111,0r-391,-709r391,-713r111,0xm495,-1325r-340,616r340,615r359,-615","w":1012},"\u00ff":{"d":"31,420r0,-191v235,0,320,-60,376,-224v-94,0,-156,-93,-187,-278r-134,-798r207,0r118,777v11,77,39,115,82,115r386,-892r216,0r-537,1199v-99,208,-216,291,-527,292xm339,-1341v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm812,-1341v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1010},"\u0178":{"d":"714,-656r-116,656r-200,0r116,-656r-332,-809r209,0r249,625r461,-625r226,0xm429,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm902,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1168},"\u2044":{"d":"131,35r-127,0r973,-1526r126,0","w":1083},"\u2215":{"d":"131,35r-127,0r973,-1526r126,0","w":1083},"\u20ac":{"d":"280,-937v74,-286,289,-531,616,-533v101,0,198,23,291,70r-95,174v-57,-43,-126,-65,-207,-65v-178,0,-336,196,-378,354r426,0r-41,150r-431,0v-9,40,-16,80,-21,120r414,0r-40,151r-380,0v0,240,94,360,282,360v95,0,190,-49,287,-147r0,214v-72,76,-183,114,-332,114v-297,0,-457,-230,-453,-541r-125,0r0,-151r132,0v4,-42,10,-82,17,-120r-149,0r0,-150r187,0"},"\u2039":{"d":"165,-535r11,-64r398,-244r-22,125r-240,157r188,138r-22,125","w":752},"\u203a":{"d":"560,-535r-397,237r22,-125r236,-138r-184,-157r22,-125r312,244","w":752},"\ufb01":{"d":"835,0r163,-940r-467,0r-169,1010v-29,189,-191,314,-387,338r-17,-117v80,-13,184,-137,199,-221r177,-1010r-151,0r22,-131r147,0v59,-293,206,-439,441,-439v56,0,103,10,142,30r-36,148v-51,-19,-90,-28,-118,-28v-120,0,-197,96,-231,289r662,0r-184,1071r-193,0xm1009,-1358v0,-72,61,-133,133,-133v72,0,133,61,133,133v0,71,-62,132,-133,132v-71,0,-133,-61,-133,-132","w":1303},"\ufb02":{"d":"1053,-292v1,122,29,169,142,172r-22,140v-213,0,-320,-79,-320,-238v0,-47,16,-154,49,-321r140,-707v-37,-65,-139,-117,-241,-114v-149,4,-226,141,-251,289r248,0r-16,131r-251,0r-169,1010v-29,189,-191,314,-387,338r-17,-117v80,-13,184,-137,199,-221r177,-1010r-151,0r22,-131r147,0v48,-254,189,-433,461,-439v99,-2,225,48,267,102r15,-102r201,0r-187,912v-37,182,-56,284,-56,306","w":1377},"\u2021":{"d":"890,-381r-24,140r-370,0r-87,491r-93,94r-57,-94r87,-491r-370,0r24,-140r370,0r97,-550r-370,0r25,-140r370,0r55,-314r150,0r-55,314r370,0r-25,140r-370,0r-97,550r370,0","w":940},"\u2219":{"d":"205,-651v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\u201a":{"d":"483,-132v0,212,-110,339,-304,464r-59,-89v55,-46,137,-94,146,-179v6,-55,-89,-136,-81,-194v14,-97,60,-147,157,-147v94,0,141,48,141,145","w":752},"\u201e":{"d":"894,-130v0,208,-110,339,-305,462r-59,-89v55,-46,137,-94,146,-179v6,-55,-90,-136,-81,-194v15,-97,61,-147,158,-147v94,0,141,49,141,147xm434,-130v0,208,-110,339,-305,462r-59,-89v55,-46,137,-94,146,-179v6,-55,-90,-136,-81,-194v15,-97,61,-147,158,-147v94,0,141,49,141,147"},"\u2030":{"d":"153,20r-127,0r1150,-1511r126,0xm768,-1246v0,221,-139,442,-348,442v-151,0,-226,-81,-226,-243v0,-228,139,-444,356,-444v143,0,218,97,218,245xm429,-906v149,1,214,-169,214,-340v0,-95,-38,-143,-114,-143v-131,0,-208,179,-208,325v0,105,36,158,108,158xm1163,-422v0,222,-139,442,-349,442v-151,0,-226,-81,-226,-243v0,-228,139,-444,357,-444v143,0,218,97,218,245xm823,-82v150,2,215,-169,215,-340v0,-95,-38,-143,-114,-143v-133,0,-209,180,-209,325v0,105,36,158,108,158xm1813,-422v0,222,-139,442,-349,442v-151,0,-226,-81,-226,-243v0,-228,139,-444,357,-444v143,0,218,97,218,245xm1473,-82v150,2,215,-169,215,-340v0,-95,-38,-143,-114,-143v-133,0,-209,180,-209,325v0,105,36,158,108,158","w":1869},"\u00c2":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm1000,-1582r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1251},"\u00ca":{"d":"484,-1285r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-874,0r259,-1465r885,0r-33,180r-674,0xm916,-1582r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1097},"\u00c1":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm1057,-1918r-226,333r-140,0r169,-333r197,0","w":1251},"\u00cb":{"d":"484,-1285r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-874,0r259,-1465r885,0r-33,180r-674,0xm448,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm921,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":1097},"\u00c8":{"d":"484,-1285r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-874,0r259,-1465r885,0r-33,180r-674,0xm774,-1585r-156,-333r197,0r59,333r-100,0","w":1097},"\u00cd":{"d":"75,0r259,-1465r204,0r-259,1465r-204,0xm750,-1918r-226,333r-140,0r169,-333r197,0","w":570},"\u00ce":{"d":"75,0r259,-1465r204,0r-259,1465r-204,0xm616,-1582r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":570},"\u00cf":{"d":"75,0r259,-1465r204,0r-259,1465r-204,0xm113,-1701v0,-61,52,-112,113,-112v61,0,112,51,112,112v0,61,-52,113,-112,113v-61,0,-113,-52,-113,-113xm586,-1701v0,-61,51,-112,112,-112v61,0,113,51,113,112v0,61,-52,113,-113,113v-61,0,-112,-52,-112,-113","w":570},"\u00cc":{"d":"75,0r259,-1465r204,0r-259,1465r-204,0xm431,-1585r-156,-333r197,0r59,333r-100,0","w":570},"\u00d3":{"d":"587,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm327,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502xm1142,-1918r-226,333r-140,0r169,-333r197,0","w":1380},"\u00d4":{"d":"587,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm327,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502xm1066,-1582r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1380},"\u00d2":{"d":"587,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm327,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502xm923,-1585r-156,-333r197,0r59,333r-100,0","w":1380},"\u00da":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471xm1117,-1918r-226,333r-140,0r169,-333r197,0","w":1328},"\u00db":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471xm1020,-1582r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0","w":1328},"\u00d9":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471xm851,-1585r-156,-333r197,0r59,333r-100,0","w":1328},"\u0131":{"d":"138,0r162,-911r-142,0r35,-157r327,0r-189,1068r-193,0","w":628},"\u02c6":{"d":"810,-1222r-130,-192r-211,192r-172,0r361,-341r107,0r242,341r-197,0"},"\u02dc":{"d":"359,-1225v31,-92,114,-207,221,-207v51,0,99,10,143,38v96,61,169,48,221,-38r88,0v-60,138,-136,207,-229,207v-65,0,-182,-78,-231,-77v-47,0,-88,26,-122,77r-91,0"},"\u02c9":{"d":"1041,-1366r-25,141r-738,0r25,-141r738,0"},"\u02d8":{"d":"1087,-1550v-38,217,-169,325,-392,325v-213,0,-305,-123,-271,-325r141,0v-27,111,24,171,158,171v127,0,201,-57,221,-171r143,0"},"\u02d9":{"d":"621,-1343v0,-64,53,-117,117,-117v62,0,118,55,118,117v0,63,-55,118,-118,118v-64,0,-117,-54,-117,-118"},"\u02da":{"d":"895,-1400v0,114,-101,178,-222,178v-124,0,-222,-60,-222,-178v0,-98,119,-177,222,-177v113,0,222,69,222,177xm808,-1400v0,-119,-269,-117,-269,0v0,60,45,90,134,90v66,1,135,-29,135,-90"},"\u00b8":{"d":"441,56v109,-2,179,59,180,161v1,158,-154,240,-320,238r-8,-99v100,1,206,-34,206,-122v0,-39,-26,-58,-79,-58"},"\u02dd":{"d":"728,-1508r-199,283r-140,0r142,-283r197,0xm1098,-1508r-199,283r-140,0r142,-283r197,0"},"\u02db":{"d":"585,373v-128,2,-233,-78,-233,-202v0,-135,87,-245,260,-332r30,161v-82,37,-123,87,-123,150v0,51,32,77,96,77v44,0,90,-13,139,-38r0,149v-69,23,-125,35,-169,35"},"\u02c7":{"d":"1069,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0"},"\u0141":{"d":"51,-775r182,-67r110,-623r204,0r-96,542r150,-56r0,132r-175,64r-106,603r662,0r-32,180r-866,0r125,-704r-158,57r0,-128","w":1037},"\u0142":{"d":"332,-292v1,122,29,169,142,172r-22,140v-213,0,-320,-79,-320,-238v0,-69,65,-402,91,-532r-156,69r0,-115r180,-79r127,-635r201,0r-110,539r136,-68r0,116r-162,76r-51,249v-37,182,-56,284,-56,306","w":604},"\u0160":{"d":"903,-387v9,332,-324,470,-662,390v-65,-15,-117,-31,-154,-50r60,-192v54,44,193,82,293,82v148,0,264,-76,263,-218v0,-57,-20,-105,-55,-150v-68,-87,-314,-240,-377,-337v-37,-57,-60,-123,-60,-205v0,-262,190,-423,450,-423v150,0,250,13,299,39r-57,194v-35,-30,-148,-63,-217,-63v-160,0,-277,72,-276,225v1,73,42,128,87,167v27,23,83,64,165,127v141,108,235,202,241,414xm1042,-1862r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":985},"\u0161":{"d":"753,-352v0,235,-200,372,-441,372v-113,0,-214,-28,-303,-84r99,-180v40,44,160,104,237,104v113,2,211,-67,205,-178v-5,-85,-60,-105,-136,-151v-115,-69,-269,-116,-271,-292v-3,-204,191,-330,401,-330v78,0,172,25,282,74r-85,176v-65,-60,-136,-90,-211,-90v-91,0,-189,53,-184,140v5,89,60,107,138,153v115,67,269,111,269,286xm995,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":829},"\u017d":{"d":"80,0r0,-50r817,-1235r-620,0r31,-180r876,0r0,50r-789,1235r614,0r-32,180r-897,0xm1138,-1862r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1127},"\u017e":{"d":"336,-170r533,0r-30,170r-831,0r0,-50r657,-851r-549,0r30,-170r836,0r0,54xm1050,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":972},"\u00a6":{"d":"501,-694r0,-723r146,0r0,723r-146,0xm501,276r0,-723r146,0r0,723r-146,0"},"\u00d0":{"d":"1247,-898v0,540,-350,898,-860,898r-320,0r124,-704r-159,0r28,-163r159,0r106,-598v82,-15,165,-23,249,-23v410,-1,673,189,673,590xm1032,-909v0,-277,-252,-456,-540,-384r-72,426r231,0r-28,163r-230,0r-87,515v461,69,726,-287,726,-720","w":1256},"\u00f0":{"d":"61,-395v0,-386,234,-700,606,-696v23,0,70,10,142,30v-23,-59,-53,-124,-92,-195r-178,90r-43,-86r174,-84v-19,-29,-64,-87,-137,-176r205,-38v24,29,58,73,102,132r174,-88r51,71r-179,96v91,148,175,404,177,629v3,407,-211,730,-602,730v-258,0,-400,-158,-400,-415xm637,-921v-241,0,-385,265,-385,515v0,171,80,256,239,256v241,1,367,-259,367,-516v0,-170,-74,-255,-221,-255","w":1125},"\u00dd":{"d":"714,-656r-116,656r-200,0r116,-656r-332,-809r209,0r249,625r461,-625r226,0xm1012,-1858r-226,333r-140,0r169,-333r197,0","w":1168},"\u00de":{"d":"476,-1275v340,-62,642,75,642,401v0,389,-199,584,-596,584v-71,0,-143,-8,-216,-24r-55,314r-201,0r258,-1465r201,0xm526,-463v239,2,380,-146,380,-385v0,-179,-98,-268,-294,-268v-53,0,-109,7,-168,21r-106,601v61,21,124,31,188,31","w":1113},"\u00fe":{"d":"490,25v-69,0,-210,-35,-231,-79r-84,479r-190,0r330,-1935r199,0r-103,560v53,-69,179,-135,291,-136v266,0,399,132,399,397v0,382,-238,714,-611,714xm463,-135v292,0,436,-222,436,-528v0,-175,-89,-263,-266,-263v-80,0,-211,75,-243,125r-103,590v20,41,115,76,176,76","w":1141},"\u2212":{"d":"960,-706r0,141r-838,0r0,-141r838,0"},"\u00b9":{"d":"416,-595r122,-674r-208,112r20,-113v143,-66,249,-135,319,-208r36,0r-156,883r-133,0","w":924},"\u00b2":{"d":"341,-1317v42,-86,152,-173,270,-173v153,0,229,58,229,175v0,92,-48,197,-144,315r-234,287r334,0r-21,118r-540,0r4,-24r339,-414v85,-104,128,-187,128,-250v0,-63,-36,-95,-109,-95v-71,0,-134,41,-190,124","w":924},"\u00b3":{"d":"741,-886v0,182,-130,301,-344,301v-86,0,-150,-24,-192,-72r77,-102v26,36,72,54,138,54v111,1,191,-65,191,-176v0,-89,-55,-132,-158,-129r18,-102v108,3,181,-63,181,-167v0,-114,-199,-111,-252,-47r-38,-91v45,-49,112,-73,200,-73v126,0,223,66,224,182v1,113,-87,214,-174,243v86,30,129,90,129,179","w":924},"\u00bd":{"d":"296,-595r122,-674r-208,112r20,-113v143,-66,249,-135,319,-208r36,0r-156,883r-133,0xm393,35r-127,0r973,-1526r126,0xm1049,-722v42,-86,152,-173,270,-173v153,0,229,58,229,175v0,92,-48,197,-144,315r-234,287r334,0r-21,118r-540,0r4,-24r339,-414v85,-104,128,-187,128,-250v0,-63,-36,-95,-109,-95v-71,0,-134,41,-190,124","w":1668},"\u00bc":{"d":"1412,-210r-37,210r-130,0r37,-210r-404,0r12,-68r599,-605r42,0r-101,571r90,0r-19,102r-89,0xm1358,-622r-310,310r252,0xm282,-595r122,-674r-208,112r20,-113v143,-66,249,-135,319,-208r36,0r-156,883r-133,0xm378,35r-127,0r973,-1526r126,0","w":1668},"\u00be":{"d":"1476,-210r-37,210r-130,0r37,-210r-404,0r12,-68r599,-605r42,0r-101,571r90,0r-19,102r-89,0xm1422,-622r-310,310r252,0xm671,-886v0,182,-130,301,-344,301v-86,0,-150,-24,-192,-72r77,-102v26,36,72,54,138,54v111,1,191,-65,191,-176v0,-89,-55,-132,-158,-129r18,-102v108,3,181,-63,181,-167v0,-114,-199,-111,-252,-47r-38,-91v45,-49,112,-73,200,-73v126,0,223,66,224,182v1,113,-87,214,-174,243v86,30,129,90,129,179xm515,35r-127,0r973,-1526r126,0","w":1668},"\u00b5":{"d":"723,-148v-56,94,-178,167,-317,168v-72,0,-131,-13,-176,-38r-77,438r-190,0r262,-1491r190,0r-109,623v-7,42,-11,78,-11,107v0,130,64,195,192,195v77,0,140,-21,187,-64v47,-43,73,-71,75,-85r136,-776r190,0r-188,1071r-190,0","w":1140},"\u2126":{"d":"1387,-950v0,367,-170,656,-414,800r289,0r-26,149r-510,1r27,-152v153,-119,261,-240,326,-362v65,-122,97,-260,97,-415v0,-255,-111,-382,-334,-382v-147,0,-266,66,-357,197v-91,131,-136,284,-136,459v0,192,79,428,193,505r-26,150r-500,-1r26,-149r268,0v-106,-91,-177,-305,-177,-501v0,-453,294,-840,741,-840v342,0,513,180,513,541","w":1370},"\u2206":{"d":"-27,0r22,-124r762,-1341r144,0r244,1341r-22,124r-1150,0xm768,-1123r-527,953r675,0","w":1198},"\u00fd":{"d":"31,420r0,-191v235,0,320,-60,376,-224v-94,0,-156,-93,-187,-278r-134,-798r207,0r118,777v11,77,39,115,82,115r386,-892r216,0r-537,1199v-99,208,-216,291,-527,292xm897,-1558r-226,333r-140,0r169,-333r197,0","w":1010},"\u00d7":{"d":"544,-728r317,-317r100,99r-317,317r314,315r-100,100r-314,-315r-317,317r-100,-99r317,-317r-321,-321r100,-100"},"\u00ad":{"d":"144,-506r30,-175r428,0r-30,175r-428,0","w":752},"\u20a3":{"d":"492,-1285r-72,407r515,0r-30,170r-515,0r-125,708r-210,0r262,-1465r911,0r-31,180r-705,0xm1910,-883v-109,-81,-237,-55,-333,45v-60,63,-100,137,-115,224r-109,614r-190,0r189,-1071r190,0r-30,171v92,-127,206,-191,343,-191v23,0,60,5,109,14","w":1928},"\u011e":{"d":"112,-539v0,-536,342,-951,864,-951v144,0,244,28,300,84r-60,191v-85,-63,-178,-95,-278,-95v-372,0,-613,342,-613,732v0,282,133,423,399,423v107,0,199,-32,276,-96r61,-343r-203,0r30,-170r403,0r-113,638v-138,101,-314,151,-527,151v-359,0,-539,-188,-539,-564xm1297,-1910v-38,217,-169,325,-392,325v-213,0,-305,-123,-271,-325r141,0v-27,111,24,171,158,171v127,0,201,-57,221,-171r143,0","w":1385},"\u011f":{"d":"877,31v0,379,-630,507,-890,269r90,-140v122,61,223,92,303,92v151,1,308,-53,308,-186v0,-135,-191,-113,-306,-143v-71,-19,-107,-54,-107,-109v0,-44,57,-88,171,-133v-183,19,-326,-130,-328,-297v-4,-275,205,-475,480,-475v101,0,180,24,238,72r90,-102r105,108r-99,103v19,27,29,70,29,129v2,235,-137,406,-315,467v-94,33,-140,64,-140,93v-2,58,82,26,121,26v167,0,250,75,250,226xm761,-762v0,-107,-70,-176,-177,-176v-152,0,-272,147,-272,300v0,145,55,218,165,218v149,0,284,-192,284,-342xm1120,-1550v-38,217,-169,325,-392,325v-213,0,-305,-123,-271,-325r141,0v-27,111,24,171,158,171v127,0,201,-57,221,-171r143,0","w":1028},"\u0130":{"d":"75,0r259,-1465r204,0r-259,1465r-204,0xm326,-1643v0,-64,53,-117,117,-117v62,0,118,55,118,117v0,63,-55,118,-118,118v-64,0,-117,-54,-117,-118","w":570},"\u015e":{"d":"903,-387v9,332,-324,470,-662,390v-65,-15,-117,-31,-154,-50r60,-192v54,44,193,82,293,82v148,0,264,-76,263,-218v0,-57,-20,-105,-55,-150v-68,-87,-314,-240,-377,-337v-37,-57,-60,-123,-60,-205v0,-262,190,-423,450,-423v150,0,250,13,299,39r-57,194v-35,-30,-148,-63,-217,-63v-160,0,-277,72,-276,225v1,73,42,128,87,167v27,23,83,64,165,127v141,108,235,202,241,414xm235,56v109,-2,179,59,180,161v1,158,-154,240,-320,238r-8,-99v100,1,206,-34,206,-122v0,-39,-26,-58,-79,-58","w":985},"\u015f":{"d":"753,-352v0,235,-200,372,-441,372v-113,0,-214,-28,-303,-84r99,-180v40,44,160,104,237,104v113,2,211,-67,205,-178v-5,-85,-60,-105,-136,-151v-115,-69,-269,-116,-271,-292v-3,-204,191,-330,401,-330v78,0,172,25,282,74r-85,176v-65,-60,-136,-90,-211,-90v-91,0,-189,53,-184,140v5,89,60,107,138,153v115,67,269,111,269,286xm238,56v109,-2,179,59,180,161v1,158,-154,240,-320,238r-8,-99v100,1,206,-34,206,-122v0,-39,-26,-58,-79,-58","w":829},"\u0106":{"d":"643,25v-327,2,-502,-222,-502,-556v0,-268,73,-495,219,-681v146,-186,333,-278,564,-278v116,0,209,16,280,47r-55,195v-56,-43,-135,-64,-237,-64v-157,0,-290,79,-398,236v-108,157,-161,326,-161,508v0,275,114,413,343,413v118,0,233,-48,344,-145r-16,212v-82,75,-209,113,-381,113xm1127,-1918r-226,333r-140,0r169,-333r197,0","w":1225},"\u0107":{"d":"90,-395v0,-380,236,-699,596,-696v103,0,183,18,242,54r-35,163v-48,-38,-112,-57,-193,-57v-253,0,-411,241,-411,503v0,155,105,285,241,285v97,0,189,-30,278,-89r-21,194v-87,39,-183,58,-287,58v-258,0,-410,-163,-410,-415xm909,-1558r-226,333r-140,0r169,-333r197,0","w":942},"\u010c":{"d":"643,25v-327,2,-502,-222,-502,-556v0,-268,73,-495,219,-681v146,-186,333,-278,564,-278v116,0,209,16,280,47r-55,195v-56,-43,-135,-64,-237,-64v-157,0,-290,79,-398,236v-108,157,-161,326,-161,508v0,275,114,413,343,413v118,0,233,-48,344,-145r-16,212v-82,75,-209,113,-381,113xm1279,-1922r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1225},"\u010d":{"d":"90,-395v0,-380,236,-699,596,-696v103,0,183,18,242,54r-35,163v-48,-38,-112,-57,-193,-57v-253,0,-411,241,-411,503v0,155,105,285,241,285v97,0,189,-30,278,-89r-21,194v-87,39,-183,58,-287,58v-258,0,-410,-163,-410,-415xm1021,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":942},"\u0111":{"d":"82,-377v0,-389,233,-713,597,-712v101,0,179,42,233,126r44,-237r-305,0r22,-131r307,0r33,-179r181,0r-31,179r113,0r-26,131r-110,0r-207,1200r-188,0r23,-123v-77,95,-182,142,-316,142v-235,2,-370,-157,-370,-396xm696,-929v-251,0,-409,240,-409,511v0,189,77,283,232,283v170,0,285,-194,314,-371r44,-268v-18,-63,-91,-155,-181,-155","w":1141},"\u00af":{"d":"-8,-1546r0,-129r1085,0r0,129r-1085,0"},"\u00b7":{"d":"205,-651v0,-80,70,-150,150,-150v80,0,150,70,150,150v0,80,-70,151,-150,151v-80,0,-150,-71,-150,-151","w":752},"\u0102":{"d":"936,0r-46,-309r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-232,0xm779,-1082r-335,626r425,0xm1217,-1910v-38,217,-169,325,-392,325v-213,0,-305,-123,-271,-325r141,0v-27,111,24,171,158,171v127,0,201,-57,221,-171r143,0","w":1251},"\u0103":{"d":"397,20v-216,0,-335,-138,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v172,0,295,29,370,87r-131,623v-21,129,1,271,41,381r-194,0v-11,-21,-22,-57,-34,-108v-60,75,-201,128,-337,128xm842,-893v-18,-29,-79,-43,-182,-43v-105,0,-198,56,-278,168v-80,112,-120,252,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,98,-155,121,-262xm1129,-1550v-38,217,-169,325,-392,325v-213,0,-305,-123,-271,-325r141,0v-27,111,24,171,158,171v127,0,201,-57,221,-171r143,0","w":1076},"\u0104":{"d":"991,373v-129,2,-232,-77,-232,-202v0,-103,54,-194,162,-273r-31,-207r-525,0r-173,309r-224,0r857,-1485r53,0r290,1485r-120,0v-10,0,-32,17,-69,44v-71,52,-85,183,42,183v45,0,91,-13,139,-38r0,149v-68,23,-124,35,-169,35xm869,-456r-90,-626r-335,626r425,0","w":1251},"\u0105":{"d":"419,20v-218,-1,-335,-136,-335,-362v0,-196,58,-370,174,-522v116,-152,264,-227,446,-227v171,0,295,29,370,87r-132,623v-22,140,3,240,61,381v-43,-3,-39,9,-90,44v-72,50,-85,183,42,183v44,0,90,-13,139,-38r0,149v-69,23,-125,35,-169,35v-128,2,-234,-78,-233,-202v0,-83,30,-156,90,-220v-13,-17,-22,-37,-27,-59v-59,75,-201,128,-336,128xm863,-893v-18,-29,-78,-43,-181,-43v-106,0,-198,56,-278,168v-80,112,-120,253,-120,420v0,142,63,213,190,213v66,0,128,-35,186,-103v58,-68,97,-155,120,-262","w":1076},"\u010e":{"d":"1247,-898v0,540,-350,898,-860,898r-320,0r258,-1465v82,-15,165,-23,249,-23v410,-1,673,189,673,590xm1032,-909v0,-277,-252,-456,-540,-384r-186,1104v461,69,726,-287,726,-720xm1100,-1922r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1256},"\u010f":{"d":"1332,-1284v4,-34,-55,-87,-55,-123v0,-69,32,-103,97,-103v74,0,111,38,111,115v0,139,-110,255,-217,303r-40,-68v75,-56,96,-52,104,-124xm64,-377v0,-386,233,-714,598,-712v101,0,179,42,233,126r101,-547r181,0r-261,1510r-188,0r23,-123v-77,95,-183,142,-317,142v-234,0,-370,-159,-370,-396xm679,-929v-251,0,-410,240,-410,511v0,189,78,283,233,283v169,0,285,-194,314,-371r44,-268v-19,-61,-90,-155,-181,-155","w":1416},"\u0110":{"d":"1247,-898v0,540,-350,898,-860,898r-320,0r124,-704r-159,0r28,-163r159,0r106,-598v82,-15,165,-23,249,-23v410,-1,673,189,673,590xm1032,-909v0,-277,-252,-456,-540,-384r-72,426r231,0r-28,163r-230,0r-87,515v461,69,726,-287,726,-720","w":1256},"\u0118":{"d":"685,373v-128,2,-234,-78,-233,-202v0,-61,19,-118,58,-171r-463,0r259,-1465r885,0r-32,180r-675,0r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-179,0v-10,0,-32,17,-69,44v-71,52,-85,183,42,183v44,0,90,-13,139,-38r0,149v-69,23,-125,35,-169,35","w":1097},"\u0119":{"d":"311,-506v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-79,26,-143,42,-190,48v-61,32,-92,77,-92,135v0,51,32,77,96,77v44,0,90,-13,139,-38r0,149v-69,23,-125,35,-169,35v-128,2,-234,-78,-233,-202v0,-63,16,-117,47,-163v-197,-42,-295,-193,-295,-452v0,-351,263,-647,612,-647v194,0,348,81,349,262v2,247,-252,377,-512,377v-95,0,-176,-18,-242,-54xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287","w":1100},"\u011a":{"d":"484,-1285r-72,407r484,0r-30,170r-484,0r-93,528r664,0r-32,180r-874,0r259,-1465r885,0r-33,180r-674,0xm1159,-1922r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1097},"\u011b":{"d":"1065,-829v3,247,-252,377,-511,377v-96,0,-177,-18,-243,-54v-43,215,63,366,272,366v79,0,158,-29,238,-87r-20,194v-107,35,-201,53,-283,53v-276,0,-414,-155,-414,-464v0,-351,263,-647,612,-647v194,0,348,81,349,262xm344,-644v184,74,533,35,533,-164v0,-82,-57,-123,-170,-123v-173,0,-294,96,-363,287xm1119,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1100},"\u0139":{"d":"84,0r259,-1465r204,0r-227,1285r662,0r-32,180r-866,0xm777,-1918r-226,333r-140,0r169,-333r197,0","w":1037},"\u013a":{"d":"489,-120r-22,140v-214,0,-321,-79,-321,-238v0,-48,17,-155,50,-321r192,-971r198,0r-183,912v-38,189,-57,308,-57,356v0,81,48,122,143,122xm787,-1918r-226,333r-140,0r169,-333r197,0","w":656},"\u013d":{"d":"870,-1265v4,-34,-55,-87,-55,-123v0,-69,32,-103,97,-103v74,0,111,38,111,115v0,139,-110,255,-217,303r-40,-68v75,-56,96,-52,104,-124xm84,0r259,-1465r204,0r-227,1285r662,0r-32,180r-866,0","w":1037},"\u013e":{"d":"736,-1284v4,-34,-55,-87,-55,-123v0,-69,32,-103,97,-103v74,0,111,38,111,115v0,139,-110,255,-217,303r-40,-68v75,-56,96,-52,104,-124xm475,-120r-22,140v-214,0,-321,-79,-321,-238v0,-48,17,-155,50,-321r192,-971r198,0r-183,912v-38,189,-57,308,-57,356v0,81,48,122,143,122","w":656},"\u013f":{"d":"84,0r259,-1465r204,0r-227,1285r662,0r-32,180r-866,0xm747,-673v0,-64,53,-117,117,-117v62,0,118,55,118,117v0,63,-55,118,-118,118v-64,0,-117,-54,-117,-118","w":1037},"\u0140":{"d":"489,-120r-22,140v-214,0,-321,-79,-321,-238v0,-48,17,-155,50,-321r192,-971r198,0r-183,912v-38,189,-57,308,-57,356v0,81,48,122,143,122xm725,-713v0,-64,53,-117,117,-117v62,0,118,55,118,117v0,63,-55,118,-118,118v-64,0,-117,-54,-117,-118","w":1037},"\u0143":{"d":"1003,20r-572,-1040r-172,1020r-200,0r259,-1465r80,0r560,998r169,-998r198,0r-262,1485r-60,0xm1037,-1918r-226,333r-140,0r169,-333r197,0","w":1307},"\u0144":{"d":"728,0r112,-623v10,-55,15,-101,15,-138v0,-113,-59,-170,-177,-170v-102,1,-220,73,-269,135r-139,796r-192,0r144,-812v12,-78,2,-180,-16,-243r184,-36v18,97,27,150,26,159v81,-106,199,-159,352,-159v193,0,290,99,290,296v0,39,-4,83,-13,132r-115,663r-202,0xm1024,-1558r-226,333r-140,0r169,-333r197,0","w":1119},"\u0147":{"d":"1003,20r-572,-1040r-172,1020r-200,0r259,-1465r80,0r560,998r169,-998r198,0r-262,1485r-60,0xm1229,-1922r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1307},"\u0148":{"d":"728,0r112,-623v10,-55,15,-101,15,-138v0,-113,-59,-170,-177,-170v-102,1,-220,73,-269,135r-139,796r-192,0r144,-812v12,-78,2,-180,-16,-243r184,-36v18,97,27,150,26,159v81,-106,199,-159,352,-159v193,0,290,99,290,296v0,39,-4,83,-13,132r-115,663r-202,0xm1126,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1119},"\u0150":{"d":"587,25v-304,0,-473,-249,-473,-563v0,-257,69,-481,206,-670v137,-189,316,-283,535,-283v339,-1,518,194,518,535v0,285,-70,519,-209,704v-139,185,-331,277,-577,277xm327,-566v0,227,85,411,292,411v166,0,297,-77,395,-231v98,-154,147,-337,147,-549v0,-251,-108,-377,-324,-377v-149,0,-272,81,-367,244v-95,163,-143,331,-143,502xm971,-1868r-199,283r-140,0r142,-283r197,0xm1341,-1868r-199,283r-140,0r142,-283r197,0","w":1380},"\u0151":{"d":"472,20v-258,0,-399,-155,-399,-414v0,-359,245,-697,595,-697v259,0,402,147,401,405v0,103,-20,209,-61,320v-75,205,-264,386,-536,386xm641,-936v-253,0,-368,277,-368,530v0,181,76,271,227,271v113,0,202,-55,268,-164v66,-109,100,-236,100,-379v0,-172,-76,-258,-227,-258xm778,-1508r-199,283r-140,0r142,-283r197,0xm1148,-1508r-199,283r-140,0r142,-283r197,0","w":1099},"\u0154":{"d":"1171,-1159v0,247,-174,453,-381,495r273,664r-229,0r-230,-629v-51,0,-122,-3,-211,-10r-112,639r-210,0r258,-1465r359,-15v155,0,274,28,358,83v84,55,125,135,125,238xm957,-1076v5,-224,-219,-233,-450,-209r-84,476v260,41,530,-32,534,-267xm961,-1918r-226,333r-140,0r169,-333r197,0","w":1192},"\u0155":{"d":"835,-883v-109,-81,-237,-55,-333,45v-60,63,-100,137,-115,224r-109,614r-190,0r189,-1071r190,0r-30,171v92,-127,206,-191,343,-191v23,0,60,5,109,14xm929,-1558r-226,333r-140,0r169,-333r197,0","w":853},"\u0158":{"d":"1171,-1159v0,247,-174,453,-381,495r273,664r-229,0r-230,-629v-51,0,-122,-3,-211,-10r-112,639r-210,0r258,-1465r359,-15v155,0,274,28,358,83v84,55,125,135,125,238xm957,-1076v5,-224,-219,-233,-450,-209r-84,476v260,41,530,-32,534,-267xm1124,-1922r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1192},"\u0159":{"d":"835,-883v-109,-81,-237,-55,-333,45v-60,63,-100,137,-115,224r-109,614r-190,0r189,-1071r190,0r-30,171v92,-127,206,-191,343,-191v23,0,60,5,109,14xm1010,-1562r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":853},"\u015a":{"d":"903,-387v9,332,-324,470,-662,390v-65,-15,-117,-31,-154,-50r60,-192v54,44,193,82,293,82v148,0,264,-76,263,-218v0,-57,-20,-105,-55,-150v-68,-87,-314,-240,-377,-337v-37,-57,-60,-123,-60,-205v0,-262,190,-423,450,-423v150,0,250,13,299,39r-57,194v-35,-30,-148,-63,-217,-63v-160,0,-277,72,-276,225v1,73,42,128,87,167v27,23,83,64,165,127v141,108,235,202,241,414xm933,-1918r-226,333r-140,0r169,-333r197,0","w":985},"\u015b":{"d":"753,-352v0,235,-200,372,-441,372v-113,0,-214,-28,-303,-84r99,-180v40,44,160,104,237,104v113,2,211,-67,205,-178v-5,-85,-60,-105,-136,-151v-115,-69,-269,-116,-271,-292v-3,-204,191,-330,401,-330v78,0,172,25,282,74r-85,176v-65,-60,-136,-90,-211,-90v-91,0,-189,53,-184,140v5,89,60,107,138,153v115,67,269,111,269,286xm883,-1558r-226,333r-140,0r169,-333r197,0","w":829},"\u021a":{"d":"425,336v4,-34,-55,-87,-55,-123v0,-69,32,-103,97,-103v74,0,111,38,111,115v0,139,-110,255,-217,303r-40,-68v75,-56,96,-52,104,-124xm828,-1285r-226,1285r-205,0r226,-1285r-466,0r32,-180r1153,0r-32,180r-482,0","w":1189},"\u021b":{"d":"278,336v4,-34,-55,-87,-55,-123v0,-69,32,-103,97,-103v74,0,111,38,111,115v0,139,-110,255,-217,303r-40,-68v75,-56,96,-52,104,-124xm425,20v-177,0,-271,-149,-232,-333r128,-608r-124,0r32,-150r124,0r44,-224r217,-82r-71,306r294,0r-32,150r-294,0r-112,532v-36,136,-1,249,139,249v49,0,102,-12,159,-37r-7,167v-55,20,-143,30,-265,30","w":860},"\u0164":{"d":"828,-1285r-226,1285r-205,0r226,-1285r-466,0r32,-180r1153,0r-32,180r-482,0xm1156,-1862r-367,337r-107,0r-235,-337r172,0r144,188r196,-188r197,0","w":1189},"\u0165":{"d":"1011,-1153v4,-34,-55,-87,-55,-123v0,-69,32,-103,97,-103v74,0,111,38,111,115v0,139,-110,255,-217,303r-40,-68v75,-56,96,-52,104,-124xm425,20v-177,0,-271,-149,-232,-333r128,-608r-124,0r32,-150r124,0r44,-224r217,-82r-71,306r294,0r-32,150r-294,0r-112,532v-36,136,-1,249,139,249v49,0,102,-12,159,-37r-7,167v-55,20,-143,30,-265,30","w":1016},"\u016e":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471xm1075,-1760v0,114,-101,178,-222,178v-124,0,-222,-60,-222,-178v0,-98,119,-177,222,-177v113,0,222,69,222,177xm988,-1760v0,-119,-269,-117,-269,0v0,60,45,90,134,90v66,1,135,-29,135,-90","w":1328},"\u016f":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171xm935,-1400v0,114,-101,178,-222,178v-124,0,-222,-60,-222,-178v0,-98,119,-177,222,-177v113,0,222,69,222,177xm848,-1400v0,-119,-269,-117,-269,0v0,60,45,90,134,90v66,1,135,-29,135,-90","w":1140},"\u0170":{"d":"573,25v-288,0,-482,-171,-429,-472r180,-1018r210,0r-180,1003v-34,183,74,307,249,307v204,0,331,-130,364,-312r179,-998r206,0r-180,1019v-46,285,-274,471,-599,471xm908,-1868r-199,283r-140,0r142,-283r197,0xm1278,-1868r-199,283r-140,0r142,-283r197,0","w":1328},"\u0171":{"d":"362,20v-207,0,-293,-171,-255,-388r124,-703r200,0r-125,683v-30,142,17,248,166,248v147,0,299,-138,324,-271r122,-660r200,0r-196,1071r-200,0r28,-151v-75,114,-204,171,-388,171xm788,-1508r-199,283r-140,0r142,-283r197,0xm1158,-1508r-199,283r-140,0r142,-283r197,0","w":1140},"\u0179":{"d":"80,0r0,-50r817,-1235r-620,0r31,-180r876,0r0,50r-789,1235r614,0r-32,180r-897,0xm1036,-1918r-226,333r-140,0r169,-333r197,0","w":1127},"\u017a":{"d":"336,-170r533,0r-30,170r-831,0r0,-50r657,-851r-549,0r30,-170r836,0r0,54xm878,-1558r-226,333r-140,0r169,-333r197,0","w":972},"\u017b":{"d":"80,0r0,-50r817,-1235r-620,0r31,-180r876,0r0,50r-789,1235r614,0r-32,180r-897,0xm662,-1703v0,-64,53,-117,117,-117v62,0,118,55,118,117v0,63,-55,118,-118,118v-64,0,-117,-54,-117,-118","w":1127},"\u017c":{"d":"336,-170r533,0r-30,170r-831,0r0,-50r657,-851r-549,0r30,-170r836,0r0,54xm521,-1343v0,-64,53,-117,117,-117v62,0,118,55,118,117v0,63,-55,118,-118,118v-64,0,-117,-54,-117,-118","w":972},"\u00a4":{"d":"983,-246r-143,-144v-160,112,-345,112,-506,0r-143,144r-84,-88r143,-140v-109,-170,-110,-333,0,-503r-143,-140r84,-88r143,143v161,-111,346,-111,506,0r143,-143r85,88r-143,140v110,170,109,333,0,503r143,140xm586,-1025v-161,0,-299,137,-299,299v0,162,137,300,299,300v162,0,299,-139,299,-300v0,-162,-137,-299,-299,-299"},"\u037e":{"d":"293,-922v0,-76,67,-149,149,-149v79,0,150,69,150,149v0,81,-69,152,-150,152v-82,0,-149,-70,-149,-152xm371,-291v79,0,143,80,143,160v0,88,-24,168,-71,240v-47,72,-134,148,-261,227r-45,-78v130,-89,195,-168,195,-238v0,-23,-8,-48,-25,-75v-51,-32,-76,-70,-76,-115v0,-72,71,-121,140,-121","w":752},"\u0384":{"d":"942,-1618r-197,334r-161,0r139,-334r219,0","w":1073},"\u0385":{"d":"899,-1618r-147,354r-111,0r84,-354r174,0xm926,-1407v0,-62,48,-111,110,-111v62,0,115,49,115,111v0,61,-53,115,-115,115v-62,0,-110,-53,-110,-115xm338,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-50,115,-112,115v-64,0,-113,-52,-113,-115","w":1073},"\u0386":{"d":"936,0r-45,-309r-526,0r-172,309r-226,0r858,-1485r54,0r288,1485r-231,0xm778,-1081r-334,624r424,0xm494,-1464r-205,350r-156,0r141,-350r220,0","w":1251},"\u0387":{"d":"205,-651v0,-79,70,-150,149,-150v81,0,152,69,152,150v0,82,-70,151,-152,151v-79,0,-149,-71,-149,-151","w":752},"\u0388":{"d":"709,-1284r-72,405r485,0r-30,170r-484,0r-94,529r664,0r-31,180r-875,0r258,-1464r887,0r-35,180r-673,0xm373,-1464r-205,350r-156,0r142,-350r219,0","w":1323},"\u0389":{"d":"1118,0r125,-709r-641,0r-125,709r-205,0r258,-1464r207,0r-104,585r639,0r104,-585r205,0r-260,1464r-203,0xm373,-1464r-205,350r-156,0r142,-350r219,0","w":1544},"\u038a":{"d":"274,0r258,-1464r205,0r-260,1464r-203,0xm373,-1464r-205,350r-156,0r142,-350r219,0","w":768},"\u038c":{"d":"711,25v-306,0,-473,-249,-473,-564v0,-255,68,-477,204,-667v136,-190,314,-285,535,-285v338,-1,518,193,518,535v0,286,-70,521,-209,705v-139,184,-330,276,-575,276xm451,-565v-1,225,83,409,290,409v168,0,300,-78,397,-232v97,-154,146,-337,146,-548v0,-251,-108,-377,-323,-377v-96,0,-181,37,-260,107v-138,122,-248,399,-250,641xm373,-1464r-205,350r-156,0r142,-350r219,0","w":1503},"\u038e":{"d":"1010,-655r-117,655r-201,0r117,-655r-332,-809r209,0r248,624r463,-624r225,0xm373,-1464r-205,350r-156,0r142,-350r219,0","w":1462},"\u038f":{"d":"1006,-1499v331,0,524,217,524,551v0,330,-191,624,-375,786v64,-7,155,-10,272,-10r-32,172r-549,0r0,-51v189,-190,314,-353,377,-488v63,-135,94,-270,94,-405v0,-228,-107,-375,-324,-375v-306,0,-512,314,-504,657v6,269,81,432,197,611r0,51r-563,0r33,-172v121,0,214,3,278,10v-105,-163,-158,-329,-158,-497v0,-439,310,-840,730,-840xm373,-1464r-205,350r-156,0r142,-350r219,0","w":1554},"\u0390":{"d":"492,-1071v-79,406,-122,631,-130,676v-29,157,-3,282,64,395r-213,0v-81,-144,-77,-264,-38,-465r118,-606r199,0xm598,-1618r-147,354r-111,0r84,-354r174,0xm625,-1407v0,-61,49,-111,110,-111v62,0,115,49,115,111v0,62,-53,115,-115,115v-62,0,-110,-53,-110,-115xm37,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-50,115,-112,115v-64,0,-113,-52,-113,-115","w":551},"\u0391":{"d":"936,0r-45,-309r-526,0r-172,309r-226,0r858,-1485r54,0r288,1485r-231,0xm778,-1081r-334,624r424,0","w":1251},"\u0392":{"d":"1139,-1143v0,149,-136,313,-275,322v163,31,244,143,244,336v0,165,-58,287,-172,372v-167,124,-511,142,-850,113r260,-1464v103,-15,194,-23,275,-23v345,0,518,115,518,344xm524,-1305r-65,406v57,4,104,6,139,6v224,0,336,-85,336,-256v0,-111,-87,-166,-260,-166v-25,0,-75,3,-150,10xm324,-170v273,42,577,-46,577,-293v0,-184,-117,-276,-350,-276v-45,0,-87,3,-127,8","w":1159},"\u0393":{"d":"1180,-1464r-31,180r-647,0r-228,1284r-206,0r258,-1464r854,0","w":1055},"\u0395":{"d":"483,-1284r-71,405r485,0r-31,170r-483,0r-94,529r663,0r-30,180r-875,0r258,-1464r887,0r-35,180r-674,0","w":1098},"\u0396":{"d":"80,0r0,-49r817,-1235r-621,0r31,-180r877,0r0,49r-789,1235r615,0r-33,180r-897,0","w":1126},"\u0397":{"d":"913,0r125,-709r-641,0r-125,709r-204,0r258,-1464r206,0r-104,585r639,0r104,-585r205,0r-260,1464r-203,0","w":1339},"\u0398":{"d":"604,25v-317,0,-491,-239,-489,-564v2,-341,158,-672,367,-823v116,-84,244,-129,388,-129v340,-2,537,197,537,537v0,277,-73,510,-217,698v-144,188,-339,281,-586,281xm1198,-936v1,-237,-110,-379,-340,-379v-151,0,-278,79,-380,237v-102,158,-152,329,-152,513v-1,238,86,411,305,411v171,0,309,-79,412,-236v103,-157,155,-339,155,-546xm1063,-840r-35,176r-567,0r35,-176r567,0","w":1415},"\u0399":{"d":"76,0r258,-1464r205,0r-260,1464r-203,0","w":569},"\u039a":{"d":"868,0r-282,-674r-244,277r-72,397r-200,0r258,-1464r200,0r-131,757r666,-757r233,0r-551,635r355,829r-232,0","w":1180},"\u039b":{"d":"1118,0r-231,0r-162,-1063r-565,1063r-234,0r846,-1485r53,0","w":1204},"\u039c":{"d":"1247,0r-20,-905r-488,925r-49,0r-158,-933r-337,913r-191,0r522,-1464r101,0r159,1028r517,-1028r104,0r41,1464r-201,0","w":1559},"\u039d":{"d":"1004,20r-574,-1040r-172,1020r-199,0r258,-1464r80,0r561,997r168,-997r199,0r-262,1484r-59,0","w":1307},"\u039e":{"d":"1300,-1464r-30,168r-408,0r-74,426r308,0r-29,159r-307,0r-94,541r417,0r-30,170r-1033,0r31,-170r418,0r94,-541r-307,0r29,-159r307,0r74,-426r-408,0r31,-168r1011,0","w":1233},"\u039f":{"d":"588,25v-306,0,-473,-249,-473,-564v0,-255,67,-477,203,-667v136,-190,315,-285,536,-285v338,-1,518,193,518,535v0,286,-69,521,-208,705v-139,184,-331,276,-576,276xm328,-565v-1,224,84,409,290,409v168,0,301,-78,398,-232v97,-154,145,-337,145,-548v0,-251,-108,-377,-323,-377v-96,0,-181,37,-260,107v-138,122,-248,399,-250,641","w":1380},"\u03a0":{"d":"1339,-1464r-258,1464r-204,0r227,-1284r-604,0r-228,1284r-204,0r258,-1464r1013,0","w":1303},"\u03a1":{"d":"1167,-1059v0,399,-388,588,-805,496r-100,563r-209,0r269,-1464v117,-14,214,-21,292,-21v369,0,553,142,553,426xm555,-717v227,2,399,-106,399,-321v0,-181,-97,-271,-290,-271v-55,0,-113,8,-175,25r-96,541v35,17,89,26,162,26","w":1112},"\u03a3":{"d":"1208,-1464r-30,180r-623,0r297,506r-535,598r670,0r-33,180r-991,0r0,-49r660,-731r-371,-637r0,-47r956,0","w":1110},"\u03a4":{"d":"827,-1284r-225,1284r-205,0r226,-1284r-465,0r30,-180r1153,0r-30,180r-484,0","w":1190},"\u03a5":{"d":"715,-655r-117,655r-201,0r117,-655r-332,-809r209,0r248,624r463,-624r225,0","w":1167},"\u03a6":{"d":"621,-113v-302,-13,-519,-212,-512,-518v10,-428,307,-720,737,-743r26,-150r199,0r-27,150v304,16,509,201,510,508v0,187,-66,356,-196,508v-130,152,-310,233,-539,245r-26,150r-199,0xm819,-1221v-309,3,-507,289,-508,590v0,217,128,354,340,363xm846,-266v159,-9,283,-74,372,-196v89,-122,134,-256,134,-402v0,-221,-113,-340,-338,-355","w":1569},"\u03a7":{"d":"817,0r-244,-565r-415,565r-232,0r566,-770r-273,-696r207,2r201,534r417,-534r232,0r-567,719r333,745r-225,0","w":1141},"\u03a8":{"d":"657,-350v-316,-27,-540,-212,-479,-559r98,-555r203,0r-106,602v-18,217,86,330,315,348r168,-950r199,0r-168,950v238,-16,405,-178,444,-401r96,-549r203,0r-96,552v-60,347,-300,527,-674,560r-63,356r-203,0","w":1554},"\u03aa":{"d":"76,0r258,-1464r205,0r-260,1464r-203,0xm582,-1700v0,-62,48,-112,110,-112v62,0,115,50,115,112v0,63,-53,113,-115,113v-62,0,-110,-51,-110,-113xm106,-1700v0,-61,52,-112,113,-112v62,0,113,50,113,112v0,63,-51,113,-113,113v-61,0,-113,-51,-113,-113","w":569},"\u03ab":{"d":"715,-655r-117,655r-201,0r117,-655r-332,-809r209,0r248,624r463,-624r225,0xm893,-1700v0,-63,48,-112,111,-112v61,0,114,51,114,112v0,64,-51,113,-114,113v-63,0,-111,-51,-111,-113xm418,-1700v0,-61,51,-112,112,-112v62,0,113,50,113,112v0,63,-51,113,-113,113v-62,0,-112,-51,-112,-113","w":1167},"\u03ac":{"d":"98,-342v0,-372,261,-752,623,-752v164,0,287,30,369,90r-131,620v-30,146,-7,252,49,384r-195,0v-25,-41,-42,-88,-51,-141v-89,107,-199,161,-330,161v-207,0,-334,-138,-334,-362xm879,-893v-21,-30,-81,-45,-181,-45v-105,0,-197,56,-278,168v-81,112,-121,253,-121,422v0,139,61,209,182,209v101,0,217,-72,251,-132v17,-30,33,-85,50,-165xm1008,-1618r-197,334r-162,0r139,-334r220,0","w":1120},"\u03ad":{"d":"188,-762v0,-189,213,-330,439,-330v132,0,242,27,329,82r-75,154v-85,-55,-176,-82,-271,-82v-126,0,-219,62,-219,176v0,86,61,129,184,129v54,0,102,-1,144,-4r-27,154v-35,-4,-82,-6,-143,-6v-149,0,-272,88,-273,223v0,89,62,133,187,133v105,0,210,-40,317,-121r82,154v-128,80,-270,120,-426,120v-203,0,-359,-81,-362,-268v-3,-169,151,-276,284,-315v-100,-19,-170,-88,-170,-199xm924,-1618r-197,334r-162,0r140,-334r219,0","w":952},"\u03ae":{"d":"674,328r172,-951v9,-55,14,-101,14,-139v0,-113,-59,-170,-176,-170v-104,1,-221,78,-266,135r-139,797r-193,0r143,-811v15,-78,4,-168,-14,-244r182,-37v18,95,27,148,27,160v81,-107,198,-160,350,-160v193,0,289,97,289,291v0,38,-5,84,-14,137r-168,940xm1018,-1618r-197,334r-162,0r140,-334r219,0","w":1133},"\u03af":{"d":"492,-1071v-79,406,-122,631,-130,676v-29,157,-3,282,64,395r-213,0v-81,-144,-77,-264,-38,-465r118,-606r199,0xm674,-1618r-197,334r-162,0r140,-334r219,0","w":551},"\u03b0":{"d":"485,18v-225,1,-359,-124,-358,-348v0,-49,10,-117,29,-206r114,-535r199,0r-97,450v-34,174,-46,177,-46,287v0,131,62,197,186,197v82,0,154,-40,216,-121v62,-81,107,-194,132,-341v33,-194,42,-316,35,-472r197,0v21,354,-61,752,-254,940v-99,96,-214,149,-353,149xm864,-1618r-147,354r-111,0r84,-354r174,0xm891,-1407v0,-61,49,-111,110,-111v62,0,115,49,115,111v0,62,-53,115,-115,115v-61,0,-110,-54,-110,-115xm303,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-50,115,-112,115v-63,0,-113,-53,-113,-115","w":1126},"\u03b1":{"d":"98,-342v0,-372,261,-752,623,-752v164,0,287,30,369,90r-131,620v-30,146,-7,252,49,384r-195,0v-25,-41,-42,-88,-51,-141v-78,95,-176,161,-330,161v-207,0,-334,-138,-334,-362xm879,-893v-21,-30,-81,-45,-181,-45v-105,0,-197,56,-278,168v-81,112,-121,253,-121,422v0,139,61,209,182,209v101,0,217,-72,251,-132v17,-30,33,-85,50,-165","w":1120},"\u03b2":{"d":"1112,-1221v0,187,-158,323,-309,369v170,31,299,158,299,344v0,400,-387,605,-810,500v-76,-19,-128,-35,-154,-51v-35,-22,-45,-33,-38,-70r164,-913v45,-265,212,-469,500,-474v190,-3,348,115,348,295xm913,-1200v1,-100,-62,-165,-163,-164v-151,1,-239,119,-275,234v-11,36,-24,108,-43,215r135,0v182,7,345,-123,346,-285xm899,-502v0,-179,-132,-268,-326,-266r-167,0r-99,557v24,49,132,78,213,78v221,0,379,-171,379,-369","w":1155},"\u03b3":{"d":"193,268v178,-28,191,-166,194,-387v3,-259,-55,-582,-155,-741v-26,-41,-74,-59,-138,-60r37,-157v211,-7,264,63,324,213v51,127,104,406,106,588v189,-316,320,-581,393,-795r213,0v-169,402,-369,750,-600,1044v-19,162,-20,213,-83,309v-51,78,-137,129,-255,144","w":1077},"\u03b4":{"d":"88,-401v6,-357,204,-680,551,-680v48,0,84,3,109,10r-244,-385r0,-53r684,0r-27,153r-395,0v41,43,104,132,190,266v86,134,129,271,129,408v0,359,-233,702,-593,702v-260,0,-409,-161,-404,-421xm821,-928v-339,-99,-534,211,-534,535v0,172,75,258,225,258v119,0,210,-61,276,-181v66,-120,99,-242,99,-366v0,-103,-22,-185,-66,-246","w":1120},"\u03b5":{"d":"188,-762v0,-189,213,-330,439,-330v132,0,242,27,329,82r-75,154v-85,-55,-176,-82,-271,-82v-126,0,-219,62,-219,176v0,86,61,129,184,129v54,0,102,-1,144,-4r-27,154v-35,-4,-82,-6,-143,-6v-149,0,-272,88,-273,223v0,89,62,133,187,133v105,0,210,-40,317,-121r82,154v-128,80,-270,120,-426,120v-203,0,-362,-80,-362,-268v0,-145,95,-250,284,-315v-100,-19,-170,-88,-170,-199","w":952},"\u03b6":{"d":"412,4v-204,0,-333,-110,-332,-311v0,-180,76,-365,228,-556v152,-191,305,-354,462,-491r-381,0r31,-155r663,0r0,53v-279,275,-480,500,-603,674v-123,174,-185,323,-185,444v0,135,59,170,201,180v136,9,228,36,276,81v48,45,72,98,72,161v0,191,-166,336,-375,336v-51,0,-96,-5,-133,-14r41,-158v41,15,80,22,117,22v94,2,164,-59,161,-147v-3,-111,-112,-119,-243,-119","w":903},"\u03b7":{"d":"674,328r172,-951v9,-55,14,-101,14,-139v0,-113,-59,-170,-176,-170v-104,1,-221,78,-266,135r-139,797r-193,0r143,-811v15,-78,4,-168,-14,-244r182,-37v18,95,27,148,27,160v81,-107,198,-160,350,-160v193,0,289,97,289,291v0,38,-5,84,-14,137r-168,940","w":1133},"\u03b8":{"d":"516,20v-267,0,-371,-198,-369,-491v0,-143,27,-304,81,-484v54,-180,128,-318,224,-414v96,-96,207,-144,332,-144v262,0,365,202,365,491v0,143,-26,304,-79,484v-53,180,-126,318,-221,414v-95,96,-206,144,-333,144xm944,-854v32,-233,43,-508,-180,-508v-167,0,-292,169,-373,508r553,0xm920,-702r-558,0v-16,105,-24,192,-24,262v0,205,66,307,197,307v178,0,306,-190,385,-569","w":1159},"\u03b9":{"d":"492,-1071v-79,406,-122,631,-130,676v-29,157,-3,282,64,395r-213,0v-81,-144,-77,-264,-38,-465r118,-606r199,0","w":551},"\u03ba":{"d":"524,-477r-198,166r-56,311r-190,0r188,-1071r191,0r-92,526v334,-289,531,-473,591,-553r125,123v-100,115,-238,244,-413,387r342,588r-230,0","w":1100},"\u03bb":{"d":"993,0r-207,0r-112,-858r-494,858r-225,0r668,-1096v-14,-114,-32,-186,-59,-214v-62,-63,-145,-52,-245,-9r-47,-160v149,-49,334,-60,430,36v50,49,84,132,103,251","w":1081},"\u03bd":{"d":"1112,-1071v-141,356,-357,720,-649,1091r-51,0r-306,-1091r211,0r187,774v174,-265,305,-523,393,-774r215,0","w":1026},"\u03be":{"d":"270,-1090v0,-245,233,-426,508,-426v103,0,201,20,293,60r-72,160v-68,-43,-147,-64,-237,-64v-155,0,-288,108,-285,256v3,145,123,198,285,197r145,0r-30,157r-152,0v-213,-13,-443,213,-438,410v4,139,62,171,209,182v136,11,228,36,276,81v48,45,72,98,72,161v0,191,-166,336,-375,336v-51,0,-96,-5,-133,-14r41,-158v41,15,80,22,117,22v94,2,164,-59,161,-147v-3,-111,-112,-119,-243,-119v-210,0,-344,-113,-340,-319v5,-262,200,-429,422,-512v-131,-22,-224,-118,-224,-263","w":930},"\u03bf":{"d":"485,20v-257,0,-397,-153,-397,-413v0,-361,245,-699,594,-699v257,0,401,147,401,406v0,362,-234,706,-598,706xm287,-406v0,181,76,271,227,271v113,0,202,-55,269,-167v67,-112,100,-237,100,-376v0,-172,-76,-258,-228,-258v-111,0,-200,55,-267,164v-67,109,-101,231,-101,366","w":1114},"\u03c1":{"d":"1141,-655v0,356,-235,675,-584,675v-117,0,-209,-29,-274,-88r-86,488r-195,0r152,-864v45,-251,120,-421,223,-512v103,-91,221,-136,354,-136v260,0,410,175,410,437xm942,-668v0,-159,-73,-268,-223,-268v-176,0,-260,135,-313,274v-46,121,-67,300,-95,445v60,53,135,80,224,80v271,0,407,-260,407,-531","w":1182},"\u03c2":{"d":"518,270v95,2,158,-62,158,-151v0,-77,-58,-119,-174,-129v-228,-19,-404,-157,-404,-410v0,-166,57,-319,170,-460v113,-141,267,-212,461,-212v119,0,219,29,299,88r-78,158v-71,-57,-149,-86,-235,-86v-236,0,-410,253,-410,488v0,156,92,247,275,274v188,28,282,114,282,256v0,244,-232,379,-497,320r38,-158v42,15,80,22,115,22","w":967},"\u03c3":{"d":"500,20v-249,0,-406,-170,-406,-419v0,-257,157,-498,334,-593v203,-109,526,-70,825,-79r-28,158r-312,0v112,101,168,219,168,354v0,309,-257,579,-581,579xm520,-135v208,0,363,-216,363,-422v0,-155,-54,-273,-162,-356v-267,-2,-429,239,-430,497v-1,159,78,281,229,281","w":1178},"\u03c4":{"d":"961,-1071r-29,160r-320,0v-87,403,-131,622,-131,657v0,79,36,119,109,119v47,0,96,-12,147,-35r-6,166v-46,16,-101,24,-164,24v-192,0,-288,-83,-288,-249v0,-35,6,-83,19,-144r116,-538r-289,0r29,-160r807,0","w":885},"\u03c5":{"d":"485,18v-225,1,-359,-124,-358,-348v0,-49,10,-117,29,-206r114,-535r199,0r-97,450v-34,174,-46,177,-46,287v0,131,62,197,186,197v82,0,154,-40,216,-121v62,-81,107,-194,132,-341v33,-194,42,-316,35,-472r197,0v21,354,-61,752,-254,940v-99,96,-214,149,-353,149","w":1126},"\u03c6":{"d":"600,-963v-158,106,-311,315,-311,551v0,170,96,263,289,279r83,-463v41,-205,41,-261,129,-376v56,-73,148,-122,269,-122v222,0,342,181,342,426v0,391,-274,671,-660,686r-69,402r-193,0r70,-402v-278,-6,-453,-155,-453,-426v0,-312,194,-544,412,-684xm1208,-676v0,-142,-39,-266,-164,-266v-118,0,-152,108,-175,233r-103,578v281,-24,442,-236,442,-545","w":1436},"\u03c7":{"d":"731,0r-192,-414r-314,414r-243,0r471,-557r-265,-514r222,0r176,377r291,-377r233,0r-442,522r288,549r-225,0","w":1053},"\u03c8":{"d":"596,18v-293,-22,-488,-196,-429,-516r105,-573r193,0r-113,637v-18,187,72,279,273,301r166,-938r188,0r-166,940v216,-23,351,-142,388,-353r102,-587r194,0r-103,573v-50,328,-258,495,-606,516r-69,402r-193,0","w":1516},"\u03c9":{"d":"635,-975v-189,136,-333,339,-342,623v-6,184,109,257,248,196v57,-26,142,-140,152,-189r32,-159v21,-99,34,-187,41,-264r197,0v-10,37,-21,75,-29,114r-64,335v0,25,12,62,38,111v26,49,70,73,132,73v78,0,144,-45,199,-134v55,-89,82,-199,82,-329v0,-159,-52,-290,-156,-391r140,-113v139,121,208,288,208,500v0,329,-166,622,-491,622v-137,0,-224,-66,-262,-198v-78,132,-187,198,-326,198v-216,1,-336,-149,-334,-370v4,-340,195,-599,416,-752","w":1561},"\u03ca":{"d":"492,-1071v-79,406,-122,631,-130,676v-29,157,-3,282,64,395r-213,0v-81,-144,-77,-264,-38,-465r118,-606r199,0xm555,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-49,115,-112,115v-61,0,-113,-53,-113,-115xm82,-1407v0,-62,51,-111,113,-111v61,0,112,50,112,111v0,62,-50,115,-112,115v-64,0,-113,-52,-113,-115","w":551},"\u03cb":{"d":"485,18v-225,1,-359,-124,-358,-348v0,-49,10,-117,29,-206r114,-535r199,0r-97,450v-34,174,-46,177,-46,287v0,131,62,197,186,197v82,0,154,-40,216,-121v62,-81,107,-194,132,-341v33,-194,42,-316,35,-472r197,0v21,354,-61,752,-254,940v-99,96,-214,149,-353,149xm827,-1407v0,-62,51,-111,113,-111v62,0,113,49,113,111v0,62,-50,115,-113,115v-61,0,-113,-53,-113,-115xm354,-1407v0,-62,51,-111,113,-111v62,0,113,49,113,111v0,62,-52,115,-113,115v-63,0,-113,-53,-113,-115","w":1126},"\u03cc":{"d":"485,20v-257,0,-397,-153,-397,-413v0,-361,245,-699,594,-699v257,0,401,147,401,406v0,362,-234,706,-598,706xm287,-406v0,181,76,271,227,271v113,0,202,-55,269,-167v67,-112,100,-237,100,-376v0,-172,-76,-258,-228,-258v-111,0,-200,55,-267,164v-67,109,-101,231,-101,366xm987,-1618r-196,334r-162,0r139,-334r219,0","w":1114},"\u03cd":{"d":"485,18v-225,1,-359,-124,-358,-348v0,-49,10,-117,29,-206r114,-535r199,0r-97,450v-34,174,-46,177,-46,287v0,131,62,197,186,197v82,0,154,-40,216,-121v62,-81,107,-194,132,-341v33,-194,42,-316,35,-472r197,0v21,354,-61,752,-254,940v-99,96,-214,149,-353,149xm958,-1618r-196,334r-162,0r139,-334r219,0","w":1126},"\u03ce":{"d":"635,-975v-189,136,-333,339,-342,623v-6,184,109,257,248,196v57,-26,142,-140,152,-189r32,-159v21,-99,34,-187,41,-264r197,0v-10,37,-21,75,-29,114r-64,335v0,25,12,62,38,111v26,49,70,73,132,73v78,0,144,-45,199,-134v55,-89,82,-199,82,-329v0,-159,-52,-290,-156,-391r140,-113v139,121,208,288,208,500v0,329,-166,622,-491,622v-137,0,-224,-66,-262,-198v-79,132,-187,198,-326,198v-216,1,-336,-149,-334,-370v4,-340,195,-599,416,-752xm1192,-1618r-197,334r-164,0r140,-334r221,0","w":1561},"\u0401":{"d":"504,-1284r-72,405r486,0r-31,170r-484,0r-94,529r664,0r-31,180r-874,0r258,-1464r886,0r-34,180r-674,0xm903,-1702v0,-57,51,-110,111,-110v61,0,114,53,114,110v0,59,-55,115,-114,115v-57,0,-111,-53,-111,-115xm504,-1702v0,-60,53,-110,112,-110v61,0,113,52,113,110v0,61,-54,115,-113,115v-56,0,-112,-53,-112,-115","w":1120},"\u0402":{"d":"1196,-520v-1,-146,-100,-216,-254,-215v-74,0,-152,9,-233,28r-125,707r-203,0r227,-1288r-405,0r30,-176r1078,0r-31,176r-469,0r-72,414v79,-17,155,-25,228,-25v253,-3,435,122,436,360v0,72,-17,153,-47,244v-67,205,-295,346,-582,297r31,-166v102,16,210,9,275,-50v44,-40,76,-89,92,-152v16,-63,24,-115,24,-154","w":1477},"\u0403":{"d":"1180,-1464r-31,180r-647,0r-228,1284r-206,0r258,-1464r854,0xm1055,-1919r-226,334r-141,0r170,-334r197,0","w":1063},"\u0404":{"d":"621,25v-329,0,-502,-220,-502,-555v0,-261,71,-486,213,-676v142,-190,332,-285,569,-285v114,0,208,16,281,47r-56,195v-56,-44,-135,-66,-237,-66v-271,0,-434,231,-512,455r518,0r-29,168r-530,0v-5,36,-8,78,-8,125v0,275,114,413,342,413v120,0,236,-48,348,-145r-17,211v-81,75,-207,113,-380,113","w":1159},"\u0405":{"d":"887,-387v0,345,-328,465,-669,389v-65,-14,-114,-32,-148,-49r61,-193v59,48,188,82,293,82v149,0,262,-75,262,-217v0,-59,-20,-110,-58,-155v-78,-94,-318,-244,-376,-337v-35,-57,-57,-121,-57,-200v0,-262,188,-424,450,-424v149,0,248,14,299,41r-57,193v-38,-31,-149,-64,-217,-64v-155,0,-278,75,-277,225v0,47,14,86,42,120v28,34,88,87,183,157v96,71,166,137,207,202v41,65,62,141,62,230","w":977},"\u0406":{"d":"96,0r258,-1464r205,0r-260,1464r-203,0","w":569},"\u0407":{"d":"76,0r258,-1464r205,0r-260,1464r-203,0xm549,-1702v0,-58,50,-110,113,-110v59,0,112,50,112,110v0,63,-56,115,-112,115v-57,0,-113,-52,-113,-115xm150,-1702v0,-58,51,-110,112,-110v61,0,113,50,113,110v0,63,-56,115,-113,115v-58,0,-112,-54,-112,-115","w":569},"\u0408":{"d":"291,20v-184,0,-306,-121,-279,-313r174,0v0,89,45,133,136,133v109,0,181,-25,216,-76v35,-51,66,-152,93,-303r164,-925r200,0r-161,917v-38,213,-94,360,-168,443v-74,83,-199,124,-375,124","w":956},"\u0409":{"d":"1935,-549v-6,348,-267,551,-637,549r-358,0r238,-1290r-316,0v-109,412,-274,920,-524,1171v-103,103,-189,130,-377,133r35,-190v124,-5,179,-37,250,-121v227,-269,372,-756,491,-1167r666,0r-103,557v333,-55,640,49,635,358xm1300,-156v241,4,426,-139,426,-372v0,-155,-100,-232,-299,-232v-57,0,-110,5,-157,15r-103,581v57,5,101,8,133,8","w":2009},"\u040a":{"d":"1800,-549v-5,348,-268,551,-637,549r-358,0r125,-709r-537,0r-125,709r-200,0r258,-1464r200,0r-102,585r537,0r104,-585r201,0r-101,557v332,-55,640,50,635,358xm1165,-156v241,4,426,-139,426,-372v0,-155,-100,-232,-299,-232v-57,0,-110,5,-157,15r-103,581v57,5,101,8,133,8","w":1874},"\u040b":{"d":"1196,-524v-1,-144,-101,-212,-254,-211v-74,0,-152,9,-233,28r-125,707r-203,0r227,-1288r-405,0r30,-176r1074,0r-31,176r-465,0r-72,414v79,-17,155,-25,228,-25v278,0,477,152,426,438r-82,461r-203,0r65,-364v15,-88,23,-141,23,-160","w":1526},"\u040c":{"d":"799,-258v-2,-304,-96,-434,-406,-430r-121,688r-204,0r258,-1464r204,0r-106,606v317,-1,440,-123,530,-375v62,-174,143,-259,369,-235r-31,172v-31,-5,-87,-3,-104,26v-17,18,-37,57,-60,117v-77,211,-216,338,-417,383v189,75,283,200,286,459v1,97,-1,143,74,143v16,0,32,-1,47,-4r-33,178v-11,3,-34,4,-71,4v-170,-4,-213,-83,-215,-268xm1096,-1919r-226,334r-141,0r170,-334r197,0","w":1253},"\u040e":{"d":"1341,-1464v-133,318,-257,574,-371,770v-114,196,-216,344,-308,440v-163,170,-305,261,-594,268r38,-194v179,0,329,-77,449,-232r-362,-1052r217,0r288,884v157,-247,298,-542,422,-884r221,0xm684,-1907v-33,118,36,191,150,191v112,0,179,-70,200,-209r158,45v-51,199,-180,299,-385,299v-201,0,-339,-130,-295,-340","w":1188},"\u040f":{"d":"1343,-1464r-258,1464r-411,0r-66,373r-194,0r65,-373r-411,0r258,-1464r204,0r-225,1284r608,0r226,-1284r204,0","w":1307},"\u0410":{"d":"920,0r-46,-309r-526,0r-172,309r-225,0r858,-1485r53,0r289,1485r-231,0xm762,-1081r-334,624r424,0","w":1251},"\u0411":{"d":"1092,-522v0,329,-260,522,-625,522r-399,0r258,-1464r829,0r-31,174r-626,0r-72,407v57,-8,122,-12,195,-12v264,-4,471,126,471,373xm463,-160v242,4,413,-124,414,-348v0,-151,-98,-227,-295,-227v-75,0,-138,5,-187,14r-94,551v87,7,141,10,162,10","w":1167},"\u0412":{"d":"1120,-1141v0,173,-125,296,-276,334v164,52,246,161,246,326v0,154,-59,273,-174,362v-171,132,-508,148,-848,119r260,-1464v103,-15,197,-23,282,-23v340,0,510,115,510,346xm500,-1309r-70,414v58,4,108,6,150,6v223,0,335,-86,335,-258v0,-115,-87,-172,-260,-172v-29,0,-80,3,-155,10xm881,-473v0,-198,-130,-261,-344,-262v-52,0,-99,3,-140,8r-98,557v182,30,383,3,475,-78v70,-62,107,-136,107,-225","w":1167},"\u0413":{"d":"1180,-1464r-31,180r-647,0r-228,1284r-206,0r258,-1464r854,0","w":1063},"\u0414":{"d":"57,-168v353,-394,512,-721,715,-1296r623,0r-232,1296r156,0r-102,588r-187,0r74,-420r-973,0r-74,420r-186,0r102,-588r84,0xm1169,-1296r-276,0v-165,475,-369,851,-612,1128r686,0","w":1401},"\u0415":{"d":"504,-1284r-72,405r486,0r-31,170r-484,0r-94,529r664,0r-31,180r-874,0r258,-1464r886,0r-34,180r-674,0","w":1120},"\u0416":{"d":"340,-1473v167,2,207,90,209,265v2,240,95,351,336,352r110,-608r197,0r-111,608v217,0,366,-115,443,-348v62,-186,135,-290,370,-264r-30,172v-31,-4,-90,-4,-106,23v-16,17,-36,55,-58,116v-80,217,-210,346,-389,389v175,77,262,230,262,459v0,95,-6,141,65,141v15,0,30,-1,45,-4r-30,178v-10,3,-31,4,-62,4v-171,-3,-210,-86,-211,-268v-2,-286,-74,-425,-327,-434r-123,692r-197,0r123,-692v-118,0,-216,34,-294,100v-78,66,-141,174,-191,324v-34,101,-76,170,-116,215v-48,54,-167,72,-259,59r33,-178v46,9,76,4,103,-26v18,-20,39,-62,63,-128v84,-235,223,-385,417,-450v-167,-56,-250,-186,-250,-389v0,-89,1,-133,-69,-133v-26,0,-42,1,-47,2r33,-172v21,-3,41,-5,61,-5","w":1819},"\u0417":{"d":"856,-1153v0,-117,-100,-174,-225,-174v-105,0,-215,28,-328,84r-53,-182v142,-44,278,-66,409,-66v220,0,390,109,390,317v0,196,-170,347,-312,388v141,37,242,138,242,301v0,314,-254,511,-594,510v-143,0,-266,-26,-371,-78r64,-191v96,65,209,97,338,97v195,0,359,-132,356,-326v-4,-206,-206,-255,-438,-232r31,-167v51,3,94,4,131,4v193,0,360,-110,360,-285","w":1061},"\u0418":{"d":"1411,-1489r-262,1489r-205,0r178,-1022r-1001,1047r-53,0r262,-1489r205,0r-179,1022r1002,-1047r53,0","w":1374},"\u0419":{"d":"1411,-1489r-262,1489r-205,0r178,-1022r-1001,1047r-53,0r262,-1489r205,0r-179,1022r1002,-1047r53,0xm780,-1907v-33,117,37,191,150,191v112,0,179,-70,200,-209r158,45v-51,199,-180,299,-385,299v-201,0,-339,-130,-295,-340","w":1374},"\u041a":{"d":"799,-258v-2,-304,-96,-434,-406,-430r-121,688r-204,0r258,-1464r204,0r-106,606v317,-1,440,-123,530,-375v62,-174,143,-259,369,-235r-31,172v-31,-5,-87,-3,-104,26v-17,18,-37,57,-60,117v-77,211,-216,338,-417,383v189,75,283,200,286,459v1,97,-1,143,74,143v16,0,32,-1,47,-4r-33,178v-11,3,-34,4,-71,4v-170,-4,-213,-83,-215,-268","w":1247},"\u041b":{"d":"1419,-1464r-260,1464r-203,0r232,-1288r-322,0v-75,291,-204,663,-334,898v-67,121,-128,210,-186,266v-108,103,-193,135,-385,138r35,-190v124,-5,177,-38,249,-122v226,-266,375,-761,494,-1166r680,0","w":1382},"\u041c":{"d":"1217,0r-21,-905r-487,925r-50,0r-159,-940r-334,920r-193,0r523,-1464r104,0r164,1028r518,-1028r94,0r41,1464r-200,0","w":1540},"\u041d":{"d":"913,0r125,-709r-641,0r-125,709r-204,0r258,-1464r206,0r-104,585r639,0r104,-585r205,0r-260,1464r-203,0","w":1339},"\u041e":{"d":"588,25v-306,0,-473,-249,-473,-564v0,-255,67,-477,203,-667v136,-190,315,-285,536,-285v338,-1,518,193,518,535v0,286,-69,521,-208,705v-139,184,-331,276,-576,276xm328,-565v-1,224,84,409,290,409v168,0,301,-78,398,-232v97,-154,145,-337,145,-548v0,-251,-108,-377,-323,-377v-96,0,-181,37,-260,107v-138,122,-248,399,-250,641","w":1382},"\u041f":{"d":"1339,-1464r-258,1464r-204,0r227,-1284r-604,0r-228,1284r-204,0r258,-1464r1013,0","w":1303},"\u0420":{"d":"1182,-1059v0,399,-388,588,-805,496r-101,563r-208,0r268,-1464v117,-14,215,-21,293,-21v369,0,553,142,553,426xm569,-717v227,2,400,-106,400,-321v0,-181,-97,-271,-291,-271v-55,0,-113,8,-174,25r-96,541v35,17,89,26,161,26","w":1149},"\u0421":{"d":"621,25v-329,0,-502,-220,-502,-555v0,-261,71,-486,213,-676v142,-190,332,-285,569,-285v114,0,208,16,281,47r-56,197v-56,-44,-135,-66,-237,-66v-157,0,-289,79,-397,237v-108,158,-162,327,-162,509v0,274,115,411,344,411v117,0,232,-48,344,-143r-17,211v-81,75,-207,113,-380,113","w":1155},"\u0422":{"d":"872,-1284r-225,1284r-205,0r226,-1284r-465,0r30,-180r1153,0r-30,180r-484,0","w":1268},"\u0423":{"d":"1341,-1464v-133,318,-257,574,-371,770v-114,196,-216,344,-308,440v-163,170,-305,261,-594,268r38,-194v179,0,329,-77,449,-232r-362,-1052r217,0r288,884v157,-247,298,-542,422,-884r221,0","w":1188},"\u0424":{"d":"616,-158v-286,-7,-493,-189,-493,-471v0,-177,65,-335,195,-473v130,-138,297,-212,503,-223r31,-170r201,0r-31,170v285,7,494,186,494,467v0,179,-64,337,-192,476v-128,139,-297,213,-507,224r-33,178r
