/*!
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){

var 
	// Will speed up references to window, and allows munging its name.
	window = this,
	// Will speed up references to undefined, and allows munging its name.
	undefined,
	// Map over jQuery in case of overwrite
	_jQuery = window.jQuery,
	// Map over the $ in case of overwrite
	_$ = window.$,

	jQuery = window.jQuery = window.$ = function( selector, context ) {
		// The jQuery object is actually just the init constructor 'enhanced'
		return new jQuery.fn.init( selector, context );
	},

	// A simple way to check for HTML strings or ID strings
	// (both of which we optimize for)
	quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
	// Is it a simple selector
	isSimple = /^.[^:#\[\.,]*$/;

jQuery.fn = jQuery.prototype = {
	init: function( selector, context ) {
		// Make sure that a selection was provided
		selector = selector || document;

		// Handle $(DOMElement)
		if ( selector.nodeType ) {
			this[0] = selector;
			this.length = 1;
			this.context = selector;
			return this;
		}
		// Handle HTML strings
		if ( typeof selector === "string" ) {
			// Are we dealing with HTML string or an ID?
			var match = quickExpr.exec( selector );

			// Verify a match, and that no context was specified for #id
			if ( match && (match[1] || !context) ) {

				// HANDLE: $(html) -> $(array)
				if ( match[1] )
					selector = jQuery.clean( [ match[1] ], context );

				// HANDLE: $("#id")
				else {
					var elem = document.getElementById( match[3] );

					// Handle the case where IE and Opera return items
					// by name instead of ID
					if ( elem && elem.id != match[3] )
						return jQuery().find( selector );

					// Otherwise, we inject the element directly into the jQuery object
					var ret = jQuery( elem || [] );
					ret.context = document;
					ret.selector = selector;
					return ret;
				}

			// HANDLE: $(expr, [context])
			// (which is just equivalent to: $(content).find(expr)
			} else
				return jQuery( context ).find( selector );

		// HANDLE: $(function)
		// Shortcut for document ready
		} else if ( jQuery.isFunction( selector ) )
			return jQuery( document ).ready( selector );

		// Make sure that old selector state is passed along
		if ( selector.selector && selector.context ) {
			this.selector = selector.selector;
			this.context = selector.context;
		}

		return this.setArray(jQuery.isArray( selector ) ?
			selector :
			jQuery.makeArray(selector));
	},

	// Start with an empty selector
	selector: "",

	// The current version of jQuery being used
	jquery: "1.3.2",

	// The number of elements contained in the matched element set
	size: function() {
		return this.length;
	},

	// Get the Nth element in the matched element set OR
	// Get the whole matched element set as a clean array
	get: function( num ) {
		return num === undefined ?

			// Return a 'clean' array
			Array.prototype.slice.call( this ) :

			// Return just the object
			this[ num ];
	},

	// Take an array of elements and push it onto the stack
	// (returning the new matched element set)
	pushStack: function( elems, name, selector ) {
		// Build a new jQuery matched element set
		var ret = jQuery( elems );

		// Add the old object onto the stack (as a reference)
		ret.prevObject = this;

		ret.context = this.context;

		if ( name === "find" )
			ret.selector = this.selector + (this.selector ? " " : "") + selector;
		else if ( name )
			ret.selector = this.selector + "." + name + "(" + selector + ")";

		// Return the newly-formed element set
		return ret;
	},

	// Force the current matched set of elements to become
	// the specified array of elements (destroying the stack in the process)
	// You should use pushStack() in order to do this, but maintain the stack
	setArray: function( elems ) {
		// Resetting the length to 0, then using the native Array push
		// is a super-fast way to populate an object with array-like properties
		this.length = 0;
		Array.prototype.push.apply( this, elems );

		return this;
	},

	// Execute a callback for every element in the matched set.
	// (You can seed the arguments with an array of args, but this is
	// only used internally.)
	each: function( callback, args ) {
		return jQuery.each( this, callback, args );
	},

	// Determine the position of an element within
	// the matched set of elements
	index: function( elem ) {
		// Locate the position of the desired element
		return jQuery.inArray(
			// If it receives a jQuery object, the first element is used
			elem && elem.jquery ? elem[0] : elem
		, this );
	},

	attr: function( name, value, type ) {
		var options = name;

		// Look for the case where we're accessing a style value
		if ( typeof name === "string" )
			if ( value === undefined )
				return this[0] && jQuery[ type || "attr" ]( this[0], name );

			else {
				options = {};
				options[ name ] = value;
			}

		// Check to see if we're setting style values
		return this.each(function(i){
			// Set all the styles
			for ( name in options )
				jQuery.attr(
					type ?
						this.style :
						this,
					name, jQuery.prop( this, options[ name ], type, i, name )
				);
		});
	},

	css: function( key, value ) {
		// ignore negative width and height values
		if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
			value = undefined;
		return this.attr( key, value, "curCSS" );
	},

	text: function( text ) {
		if ( typeof text !== "object" && text != null )
			return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );

		var ret = "";

		jQuery.each( text || this, function(){
			jQuery.each( this.childNodes, function(){
				if ( this.nodeType != 8 )
					ret += this.nodeType != 1 ?
						this.nodeValue :
						jQuery.fn.text( [ this ] );
			});
		});

		return ret;
	},

	wrapAll: function( html ) {
		if ( this[0] ) {
			// The elements to wrap the target around
			var wrap = jQuery( html, this[0].ownerDocument ).clone();

			if ( this[0].parentNode )
				wrap.insertBefore( this[0] );

			wrap.map(function(){
				var elem = this;

				while ( elem.firstChild )
					elem = elem.firstChild;

				return elem;
			}).append(this);
		}

		return this;
	},

	wrapInner: function( html ) {
		return this.each(function(){
			jQuery( this ).contents().wrapAll( html );
		});
	},

	wrap: function( html ) {
		return this.each(function(){
			jQuery( this ).wrapAll( html );
		});
	},

	append: function() {
		return this.domManip(arguments, true, function(elem){
			if (this.nodeType == 1)
				this.appendChild( elem );
		});
	},

	prepend: function() {
		return this.domManip(arguments, true, function(elem){
			if (this.nodeType == 1)
				this.insertBefore( elem, this.firstChild );
		});
	},

	before: function() {
		return this.domManip(arguments, false, function(elem){
			this.parentNode.insertBefore( elem, this );
		});
	},

	after: function() {
		return this.domManip(arguments, false, function(elem){
			this.parentNode.insertBefore( elem, this.nextSibling );
		});
	},

	end: function() {
		return this.prevObject || jQuery( [] );
	},

	// For internal use only.
	// Behaves like an Array's method, not like a jQuery method.
	push: [].push,
	sort: [].sort,
	splice: [].splice,

	find: function( selector ) {
		if ( this.length === 1 ) {
			var ret = this.pushStack( [], "find", selector );
			ret.length = 0;
			jQuery.find( selector, this[0], ret );
			return ret;
		} else {
			return this.pushStack( jQuery.unique(jQuery.map(this, function(elem){
				return jQuery.find( selector, elem );
			})), "find", selector );
		}
	},

	clone: function( events ) {
		// Do the clone
		var ret = this.map(function(){
			if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
				// IE copies events bound via attachEvent when
				// using cloneNode. Calling detachEvent on the
				// clone will also remove the events from the orignal
				// In order to get around this, we use innerHTML.
				// Unfortunately, this means some modifications to
				// attributes in IE that are actually only stored
				// as properties will not be copied (such as the
				// the name attribute on an input).
				var html = this.outerHTML;
				if ( !html ) {
					var div = this.ownerDocument.createElement("div");
					div.appendChild( this.cloneNode(true) );
					html = div.innerHTML;
				}

				return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")])[0];
			} else
				return this.cloneNode(true);
		});

		// Copy the events from the original to the clone
		if ( events === true ) {
			var orig = this.find("*").andSelf(), i = 0;

			ret.find("*").andSelf().each(function(){
				if ( this.nodeName !== orig[i].nodeName )
					return;

				var events = jQuery.data( orig[i], "events" );

				for ( var type in events ) {
					for ( var handler in events[ type ] ) {
						jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
					}
				}

				i++;
			});
		}

		// Return the cloned set
		return ret;
	},

	filter: function( selector ) {
		return this.pushStack(
			jQuery.isFunction( selector ) &&
			jQuery.grep(this, function(elem, i){
				return selector.call( elem, i );
			}) ||

			jQuery.multiFilter( selector, jQuery.grep(this, function(elem){
				return elem.nodeType === 1;
			}) ), "filter", selector );
	},

	closest: function( selector ) {
		var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null,
			closer = 0;

		return this.map(function(){
			var cur = this;
			while ( cur && cur.ownerDocument ) {
				if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) ) {
					jQuery.data(cur, "closest", closer);
					return cur;
				}
				cur = cur.parentNode;
				closer++;
			}
		});
	},

	not: function( selector ) {
		if ( typeof selector === "string" )
			// test special case where just one selector is passed in
			if ( isSimple.test( selector ) )
				return this.pushStack( jQuery.multiFilter( selector, this, true ), "not", selector );
			else
				selector = jQuery.multiFilter( selector, this );

		var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
		return this.filter(function() {
			return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
		});
	},

	add: function( selector ) {
		return this.pushStack( jQuery.unique( jQuery.merge(
			this.get(),
			typeof selector === "string" ?
				jQuery( selector ) :
				jQuery.makeArray( selector )
		)));
	},

	is: function( selector ) {
		return !!selector && jQuery.multiFilter( selector, this ).length > 0;
	},

	hasClass: function( selector ) {
		return !!selector && this.is( "." + selector );
	},

	val: function( value ) {
		if ( value === undefined ) {			
			var elem = this[0];

			if ( elem ) {
				if( jQuery.nodeName( elem, 'option' ) )
					return (elem.attributes.value || {}).specified ? elem.value : elem.text;
				
				// We need to handle select boxes special
				if ( jQuery.nodeName( elem, "select" ) ) {
					var index = elem.selectedIndex,
						values = [],
						options = elem.options,
						one = elem.type == "select-one";

					// Nothing was selected
					if ( index < 0 )
						return null;

					// Loop through all the selected options
					for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
						var option = options[ i ];

						if ( option.selected ) {
							// Get the specifc value for the option
							value = jQuery(option).val();

							// We don't need an array for one selects
							if ( one )
								return value;

							// Multi-Selects return an array
							values.push( value );
						}
					}

					return values;				
				}

				// Everything else, we just grab the value
				return (elem.value || "").replace(/\r/g, "");

			}

			return undefined;
		}

		if ( typeof value === "number" )
			value += '';

		return this.each(function(){
			if ( this.nodeType != 1 )
				return;

			if ( jQuery.isArray(value) && /radio|checkbox/.test( this.type ) )
				this.checked = (jQuery.inArray(this.value, value) >= 0 ||
					jQuery.inArray(this.name, value) >= 0);

			else if ( jQuery.nodeName( this, "select" ) ) {
				var values = jQuery.makeArray(value);

				jQuery( "option", this ).each(function(){
					this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
						jQuery.inArray( this.text, values ) >= 0);
				});

				if ( !values.length )
					this.selectedIndex = -1;

			} else
				this.value = value;
		});
	},

	html: function( value ) {
		return value === undefined ?
			(this[0] ?
				this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g, "") :
				null) :
			this.empty().append( value );
	},

	replaceWith: function( value ) {
		return this.after( value ).remove();
	},

	eq: function( i ) {
		return this.slice( i, +i + 1 );
	},

	slice: function() {
		return this.pushStack( Array.prototype.slice.apply( this, arguments ),
			"slice", Array.prototype.slice.call(arguments).join(",") );
	},

	map: function( callback ) {
		return this.pushStack( jQuery.map(this, function(elem, i){
			return callback.call( elem, i, elem );
		}));
	},

	andSelf: function() {
		return this.add( this.prevObject );
	},

	domManip: function( args, table, callback ) {
		if ( this[0] ) {
			var fragment = (this[0].ownerDocument || this[0]).createDocumentFragment(),
				scripts = jQuery.clean( args, (this[0].ownerDocument || this[0]), fragment ),
				first = fragment.firstChild;

			if ( first )
				for ( var i = 0, l = this.length; i < l; i++ )
					callback.call( root(this[i], first), this.length > 1 || i > 0 ?
							fragment.cloneNode(true) : fragment );
		
			if ( scripts )
				jQuery.each( scripts, evalScript );
		}

		return this;
		
		function root( elem, cur ) {
			return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
				(elem.getElementsByTagName("tbody")[0] ||
				elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
				elem;
		}
	}
};

// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;

function evalScript( i, elem ) {
	if ( elem.src )
		jQuery.ajax({
			url: elem.src,
			async: false,
			dataType: "script"
		});

	else
		jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );

	if ( elem.parentNode )
		elem.parentNode.removeChild( elem );
}

function now(){
	return +new Date;
}

jQuery.extend = jQuery.fn.extend = function() {
	// copy reference to target object
	var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;

	// Handle a deep copy situation
	if ( typeof target === "boolean" ) {
		deep = target;
		target = arguments[1] || {};
		// skip the boolean and the target
		i = 2;
	}

	// Handle case when target is a string or something (possible in deep copy)
	if ( typeof target !== "object" && !jQuery.isFunction(target) )
		target = {};

	// extend jQuery itself if only one argument is passed
	if ( length == i ) {
		target = this;
		--i;
	}

	for ( ; i < length; i++ )
		// Only deal with non-null/undefined values
		if ( (options = arguments[ i ]) != null )
			// Extend the base object
			for ( var name in options ) {
				var src = target[ name ], copy = options[ name ];

				// Prevent never-ending loop
				if ( target === copy )
					continue;

				// Recurse if we're merging object values
				if ( deep && copy && typeof copy === "object" && !copy.nodeType )
					target[ name ] = jQuery.extend( deep, 
						// Never move original objects, clone them
						src || ( copy.length != null ? [ ] : { } )
					, copy );

				// Don't bring in undefined values
				else if ( copy !== undefined )
					target[ name ] = copy;

			}

	// Return the modified object
	return target;
};

// exclude the following css properties to add px
var	exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
	// cache defaultView
	defaultView = document.defaultView || {},
	toString = Object.prototype.toString;

jQuery.extend({
	noConflict: function( deep ) {
		window.$ = _$;

		if ( deep )
			window.jQuery = _jQuery;

		return jQuery;
	},

	// See test/unit/core.js for details concerning isFunction.
	// Since version 1.3, DOM methods and functions like alert
	// aren't supported. They return false on IE (#2968).
	isFunction: function( obj ) {
		return toString.call(obj) === "[object Function]";
	},

	isArray: function( obj ) {
		return toString.call(obj) === "[object Array]";
	},

	// check if an element is in a (or is an) XML document
	isXMLDoc: function( elem ) {
		return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
			!!elem.ownerDocument && jQuery.isXMLDoc( elem.ownerDocument );
	},

	// Evalulates a script in a global context
	globalEval: function( data ) {
		if ( data && /\S/.test(data) ) {
			// Inspired by code by Andrea Giammarchi
			// http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
			var head = document.getElementsByTagName("head")[0] || document.documentElement,
				script = document.createElement("script");

			script.type = "text/javascript";
			if ( jQuery.support.scriptEval )
				script.appendChild( document.createTextNode( data ) );
			else
				script.text = data;

			// Use insertBefore instead of appendChild  to circumvent an IE6 bug.
			// This arises when a base node is used (#2709).
			head.insertBefore( script, head.firstChild );
			head.removeChild( script );
		}
	},

	nodeName: function( elem, name ) {
		return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
	},

	// args is for internal usage only
	each: function( object, callback, args ) {
		var name, i = 0, length = object.length;

		if ( args ) {
			if ( length === undefined ) {
				for ( name in object )
					if ( callback.apply( object[ name ], args ) === false )
						break;
			} else
				for ( ; i < length; )
					if ( callback.apply( object[ i++ ], args ) === false )
						break;

		// A special, fast, case for the most common use of each
		} else {
			if ( length === undefined ) {
				for ( name in object )
					if ( callback.call( object[ name ], name, object[ name ] ) === false )
						break;
			} else
				for ( var value = object[0];
					i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
		}

		return object;
	},

	prop: function( elem, value, type, i, name ) {
		// Handle executable functions
		if ( jQuery.isFunction( value ) )
			value = value.call( elem, i );

		// Handle passing in a number to a CSS property
		return typeof value === "number" && type == "curCSS" && !exclude.test( name ) ?
			value + "px" :
			value;
	},

	className: {
		// internal only, use addClass("class")
		add: function( elem, classNames ) {
			jQuery.each((classNames || "").split(/\s+/), function(i, className){
				if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
					elem.className += (elem.className ? " " : "") + className;
			});
		},

		// internal only, use removeClass("class")
		remove: function( elem, classNames ) {
			if (elem.nodeType == 1)
				elem.className = classNames !== undefined ?
					jQuery.grep(elem.className.split(/\s+/), function(className){
						return !jQuery.className.has( classNames, className );
					}).join(" ") :
					"";
		},

		// internal only, use hasClass("class")
		has: function( elem, className ) {
			return elem && jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
		}
	},

	// A method for quickly swapping in/out CSS properties to get correct calculations
	swap: function( elem, options, callback ) {
		var old = {};
		// Remember the old values, and insert the new ones
		for ( var name in options ) {
			old[ name ] = elem.style[ name ];
			elem.style[ name ] = options[ name ];
		}

		callback.call( elem );

		// Revert the old values
		for ( var name in options )
			elem.style[ name ] = old[ name ];
	},

	css: function( elem, name, force, extra ) {
		if ( name == "width" || name == "height" ) {
			var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];

			function getWH() {
				val = name == "width" ? elem.offsetWidth : elem.offsetHeight;

				if ( extra === "border" )
					return;

				jQuery.each( which, function() {
					if ( !extra )
						val -= parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
					if ( extra === "margin" )
						val += parseFloat(jQuery.curCSS( elem, "margin" + this, true)) || 0;
					else
						val -= parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
				});
			}

			if ( elem.offsetWidth !== 0 )
				getWH();
			else
				jQuery.swap( elem, props, getWH );

			return Math.max(0, Math.round(val));
		}

		return jQuery.curCSS( elem, name, force );
	},

	curCSS: function( elem, name, force ) {
		var ret, style = elem.style;

		// We need to handle opacity special in IE
		if ( name == "opacity" && !jQuery.support.opacity ) {
			ret = jQuery.attr( style, "opacity" );

			return ret == "" ?
				"1" :
				ret;
		}

		// Make sure we're using the right name for getting the float value
		if ( name.match( /float/i ) )
			name = styleFloat;

		if ( !force && style && style[ name ] )
			ret = style[ name ];

		else if ( defaultView.getComputedStyle ) {

			// Only "float" is needed here
			if ( name.match( /float/i ) )
				name = "float";

			name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();

			var computedStyle = defaultView.getComputedStyle( elem, null );

			if ( computedStyle )
				ret = computedStyle.getPropertyValue( name );

			// We should always get a number back from opacity
			if ( name == "opacity" && ret == "" )
				ret = "1";

		} else if ( elem.currentStyle ) {
			var camelCase = name.replace(/\-(\w)/g, function(all, letter){
				return letter.toUpperCase();
			});

			ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];

			// From the awesome hack by Dean Edwards
			// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291

			// If we're not dealing with a regular pixel number
			// but a number that has a weird ending, we need to convert it to pixels
			if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
				// Remember the original values
				var left = style.left, rsLeft = elem.runtimeStyle.left;

				// Put in the new values to get a computed value out
				elem.runtimeStyle.left = elem.currentStyle.left;
				style.left = ret || 0;
				ret = style.pixelLeft + "px";

				// Revert the changed values
				style.left = left;
				elem.runtimeStyle.left = rsLeft;
			}
		}

		return ret;
	},

	clean: function( elems, context, fragment ) {
		context = context || document;

		// !context.createElement fails in IE with an error but returns typeof 'object'
		if ( typeof context.createElement === "undefined" )
			context = context.ownerDocument || context[0] && context[0].ownerDocument || document;

		// If a single string is passed in and it's a single tag
		// just do a createElement and skip the rest
		if ( !fragment && elems.length === 1 && typeof elems[0] === "string" ) {
			var match = /^<(\w+)\s*\/?>$/.exec(elems[0]);
			if ( match )
				return [ context.createElement( match[1] ) ];
		}

		var ret = [], scripts = [], div = context.createElement("div");

		jQuery.each(elems, function(i, elem){
			if ( typeof elem === "number" )
				elem += '';

			if ( !elem )
				return;

			// Convert html string into DOM nodes
			if ( typeof elem === "string" ) {
				// Fix "XHTML"-style tags in all browsers
				elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
					return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
						all :
						front + "></" + tag + ">";
				});

				// Trim whitespace, otherwise indexOf won't work as expected
				var tags = elem.replace(/^\s+/, "").substring(0, 10).toLowerCase();

				var wrap =
					// option or optgroup
					!tags.indexOf("<opt") &&
					[ 1, "<select multiple='multiple'>", "</select>" ] ||

					!tags.indexOf("<leg") &&
					[ 1, "<fieldset>", "</fieldset>" ] ||

					tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
					[ 1, "<table>", "</table>" ] ||

					!tags.indexOf("<tr") &&
					[ 2, "<table><tbody>", "</tbody></table>" ] ||

				 	// <thead> matched above
					(!tags.indexOf("<td") || !tags.indexOf("<th")) &&
					[ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||

					!tags.indexOf("<col") &&
					[ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||

					// IE can't serialize <link> and <script> tags normally
					!jQuery.support.htmlSerialize &&
					[ 1, "div<div>", "</div>" ] ||

					[ 0, "", "" ];

				// Go to html and back, then peel off extra wrappers
				div.innerHTML = wrap[1] + elem + wrap[2];

				// Move to the right depth
				while ( wrap[0]-- )
					div = div.lastChild;

				// Remove IE's autoinserted <tbody> from table fragments
				if ( !jQuery.support.tbody ) {

					// String was a <table>, *may* have spurious <tbody>
					var hasBody = /<tbody/i.test(elem),
						tbody = !tags.indexOf("<table") && !hasBody ?
							div.firstChild && div.firstChild.childNodes :

						// String was a bare <thead> or <tfoot>
						wrap[1] == "<table>" && !hasBody ?
							div.childNodes :
							[];

					for ( var j = tbody.length - 1; j >= 0 ; --j )
						if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
							tbody[ j ].parentNode.removeChild( tbody[ j ] );

					}

				// IE completely kills leading whitespace when innerHTML is used
				if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) )
					div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
				
				elem = jQuery.makeArray( div.childNodes );
			}

			if ( elem.nodeType )
				ret.push( elem );
			else
				ret = jQuery.merge( ret, elem );

		});

		if ( fragment ) {
			for ( var i = 0; ret[i]; i++ ) {
				if ( jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
					scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
				} else {
					if ( ret[i].nodeType === 1 )
						ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
					fragment.appendChild( ret[i] );
				}
			}
			
			return scripts;
		}

		return ret;
	},

	attr: function( elem, name, value ) {
		// don't set attributes on text and comment nodes
		if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
			return undefined;

		var notxml = !jQuery.isXMLDoc( elem ),
			// Whether we are setting (or getting)
			set = value !== undefined;

		// Try to normalize/fix the name
		name = notxml && jQuery.props[ name ] || name;

		// Only do all the following if this is a node (faster for style)
		// IE elem.getAttribute passes even for style
		if ( elem.tagName ) {

			// These attributes require special treatment
			var special = /href|src|style/.test( name );

			// Safari mis-reports the default selected property of a hidden option
			// Accessing the parent's selectedIndex property fixes it
			if ( name == "selected" && elem.parentNode )
				elem.parentNode.selectedIndex;

			// If applicable, access the attribute via the DOM 0 way
			if ( name in elem && notxml && !special ) {
				if ( set ){
					// We can't allow the type property to be changed (since it causes problems in IE)
					if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
						throw "type property can't be changed";

					elem[ name ] = value;
				}

				// browsers index elements by id/name on forms, give priority to attributes.
				if( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) )
					return elem.getAttributeNode( name ).nodeValue;

				// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
				if ( name == "tabIndex" ) {
					var attributeNode = elem.getAttributeNode( "tabIndex" );
					return attributeNode && attributeNode.specified
						? attributeNode.value
						: elem.nodeName.match(/(button|input|object|select|textarea)/i)
							? 0
							: elem.nodeName.match(/^(a|area)$/i) && elem.href
								? 0
								: undefined;
				}

				return elem[ name ];
			}

			if ( !jQuery.support.style && notxml &&  name == "style" )
				return jQuery.attr( elem.style, "cssText", value );

			if ( set )
				// convert the value to a string (all browsers do this but IE) see #1070
				elem.setAttribute( name, "" + value );

			var attr = !jQuery.support.hrefNormalized && notxml && special
					// Some attributes require a special call on IE
					? elem.getAttribute( name, 2 )
					: elem.getAttribute( name );

			// Non-existent attributes return null, we normalize to undefined
			return attr === null ? undefined : attr;
		}

		// elem is actually elem.style ... set the style

		// IE uses filters for opacity
		if ( !jQuery.support.opacity && name == "opacity" ) {
			if ( set ) {
				// IE has trouble with opacity if it does not have layout
				// Force it by setting the zoom level
				elem.zoom = 1;

				// Set the alpha filter to set the opacity
				elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
					(parseInt( value ) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
			}

			return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
				(parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100) + '':
				"";
		}

		name = name.replace(/-([a-z])/ig, function(all, letter){
			return letter.toUpperCase();
		});

		if ( set )
			elem[ name ] = value;

		return elem[ name ];
	},

	trim: function( text ) {
		return (text || "").replace( /^\s+|\s+$/g, "" );
	},

	makeArray: function( array ) {
		var ret = [];

		if( array != null ){
			var i = array.length;
			// The window, strings (and functions) also have 'length'
			if( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval )
				ret[0] = array;
			else
				while( i )
					ret[--i] = array[i];
		}

		return ret;
	},

	inArray: function( elem, array ) {
		for ( var i = 0, length = array.length; i < length; i++ )
		// Use === because on IE, window == document
			if ( array[ i ] === elem )
				return i;

		return -1;
	},

	merge: function( first, second ) {
		// We have to loop this way because IE & Opera overwrite the length
		// expando of getElementsByTagName
		var i = 0, elem, pos = first.length;
		// Also, we need to make sure that the correct elements are being returned
		// (IE returns comment nodes in a '*' query)
		if ( !jQuery.support.getAll ) {
			while ( (elem = second[ i++ ]) != null )
				if ( elem.nodeType != 8 )
					first[ pos++ ] = elem;

		} else
			while ( (elem = second[ i++ ]) != null )
				first[ pos++ ] = elem;

		return first;
	},

	unique: function( array ) {
		var ret = [], done = {};

		try {

			for ( var i = 0, length = array.length; i < length; i++ ) {
				var id = jQuery.data( array[ i ] );

				if ( !done[ id ] ) {
					done[ id ] = true;
					ret.push( array[ i ] );
				}
			}

		} catch( e ) {
			ret = array;
		}

		return ret;
	},

	grep: function( elems, callback, inv ) {
		var ret = [];

		// Go through the array, only saving the items
		// that pass the validator function
		for ( var i = 0, length = elems.length; i < length; i++ )
			if ( !inv != !callback( elems[ i ], i ) )
				ret.push( elems[ i ] );

		return ret;
	},

	map: function( elems, callback ) {
		var ret = [];

		// Go through the array, translating each of the items to their
		// new value (or values).
		for ( var i = 0, length = elems.length; i < length; i++ ) {
			var value = callback( elems[ i ], i );

			if ( value != null )
				ret[ ret.length ] = value;
		}

		return ret.concat.apply( [], ret );
	}
});

// Use of jQuery.browser is deprecated.
// It's included for backwards compatibility and plugins,
// although they should work to migrate away.

var userAgent = navigator.userAgent.toLowerCase();

// Figure out what browser is being used
jQuery.browser = {
	version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
	safari: /webkit/.test( userAgent ),
	opera: /opera/.test( userAgent ),
	msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
	mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
};

jQuery.each({
	parent: function(elem){return elem.parentNode;},
	parents: function(elem){return jQuery.dir(elem,"parentNode");},
	next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
	prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
	nextAll: function(elem){return jQuery.dir(elem,"nextSibling");},
	prevAll: function(elem){return jQuery.dir(elem,"previousSibling");},
	siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
	children: function(elem){return jQuery.sibling(elem.firstChild);},
	contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}
}, function(name, fn){
	jQuery.fn[ name ] = function( selector ) {
		var ret = jQuery.map( this, fn );

		if ( selector && typeof selector == "string" )
			ret = jQuery.multiFilter( selector, ret );

		return this.pushStack( jQuery.unique( ret ), name, selector );
	};
});

jQuery.each({
	appendTo: "append",
	prependTo: "prepend",
	insertBefore: "before",
	insertAfter: "after",
	replaceAll: "replaceWith"
}, function(name, original){
	jQuery.fn[ name ] = function( selector ) {
		var ret = [], insert = jQuery( selector );

		for ( var i = 0, l = insert.length; i < l; i++ ) {
			var elems = (i > 0 ? this.clone(true) : this).get();
			jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
			ret = ret.concat( elems );
		}

		return this.pushStack( ret, name, selector );
	};
});

jQuery.each({
	removeAttr: function( name ) {
		jQuery.attr( this, name, "" );
		if (this.nodeType == 1)
			this.removeAttribute( name );
	},

	addClass: function( classNames ) {
		jQuery.className.add( this, classNames );
	},

	removeClass: function( classNames ) {
		jQuery.className.remove( this, classNames );
	},

	toggleClass: function( classNames, state ) {
		if( typeof state !== "boolean" )
			state = !jQuery.className.has( this, classNames );
		jQuery.className[ state ? "add" : "remove" ]( this, classNames );
	},

	remove: function( selector ) {
		if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
			// Prevent memory leaks
			jQuery( "*", this ).add([this]).each(function(){
				jQuery.event.remove(this);
				jQuery.removeData(this);
			});
			if (this.parentNode)
				this.parentNode.removeChild( this );
		}
	},

	empty: function() {
		// Remove element nodes and prevent memory leaks
		jQuery(this).children().remove();

		// Remove any remaining nodes
		while ( this.firstChild )
			this.removeChild( this.firstChild );
	}
}, function(name, fn){
	jQuery.fn[ name ] = function(){
		return this.each( fn, arguments );
	};
});

// Helper function used by the dimensions and offset modules
function num(elem, prop) {
	return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
}
var expando = "jQuery" + now(), uuid = 0, windowData = {};

jQuery.extend({
	cache: {},

	data: function( elem, name, data ) {
		elem = elem == window ?
			windowData :
			elem;

		var id = elem[ expando ];

		// Compute a unique ID for the element
		if ( !id )
			id = elem[ expando ] = ++uuid;

		// Only generate the data cache if we're
		// trying to access or manipulate it
		if ( name && !jQuery.cache[ id ] )
			jQuery.cache[ id ] = {};

		// Prevent overriding the named cache with undefined values
		if ( data !== undefined )
			jQuery.cache[ id ][ name ] = data;

		// Return the named cache data, or the ID for the element
		return name ?
			jQuery.cache[ id ][ name ] :
			id;
	},

	removeData: function( elem, name ) {
		elem = elem == window ?
			windowData :
			elem;

		var id = elem[ expando ];

		// If we want to remove a specific section of the element's data
		if ( name ) {
			if ( jQuery.cache[ id ] ) {
				// Remove the section of cache data
				delete jQuery.cache[ id ][ name ];

				// If we've removed all the data, remove the element's cache
				name = "";

				for ( name in jQuery.cache[ id ] )
					break;

				if ( !name )
					jQuery.removeData( elem );
			}

		// Otherwise, we want to remove all of the element's data
		} else {
			// Clean up the element expando
			try {
				delete elem[ expando ];
			} catch(e){
				// IE has trouble directly removing the expando
				// but it's ok with using removeAttribute
				if ( elem.removeAttribute )
					elem.removeAttribute( expando );
			}

			// Completely remove the data cache
			delete jQuery.cache[ id ];
		}
	},
	queue: function( elem, type, data ) {
		if ( elem ){
	
			type = (type || "fx") + "queue";
	
			var q = jQuery.data( elem, type );
	
			if ( !q || jQuery.isArray(data) )
				q = jQuery.data( elem, type, jQuery.makeArray(data) );
			else if( data )
				q.push( data );
	
		}
		return q;
	},

	dequeue: function( elem, type ){
		var queue = jQuery.queue( elem, type ),
			fn = queue.shift();
		
		if( !type || type === "fx" )
			fn = queue[0];
			
		if( fn !== undefined )
			fn.call(elem);
	}
});

jQuery.fn.extend({
	data: function( key, value ){
		var parts = key.split(".");
		parts[1] = parts[1] ? "." + parts[1] : "";

		if ( value === undefined ) {
			var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);

			if ( data === undefined && this.length )
				data = jQuery.data( this[0], key );

			return data === undefined && parts[1] ?
				this.data( parts[0] ) :
				data;
		} else
			return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function(){
				jQuery.data( this, key, value );
			});
	},

	removeData: function( key ){
		return this.each(function(){
			jQuery.removeData( this, key );
		});
	},
	queue: function(type, data){
		if ( typeof type !== "string" ) {
			data = type;
			type = "fx";
		}

		if ( data === undefined )
			return jQuery.queue( this[0], type );

		return this.each(function(){
			var queue = jQuery.queue( this, type, data );
			
			 if( type == "fx" && queue.length == 1 )
				queue[0].call(this);
		});
	},
	dequeue: function(type){
		return this.each(function(){
			jQuery.dequeue( this, type );
		});
	}
});/*!
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){

var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,
	done = 0,
	toString = Object.prototype.toString;

var Sizzle = function(selector, context, results, seed) {
	results = results || [];
	context = context || document;

	if ( context.nodeType !== 1 && context.nodeType !== 9 )
		return [];
	
	if ( !selector || typeof selector !== "string" ) {
		return results;
	}

	var parts = [], m, set, checkSet, check, mode, extra, prune = true;
	
	// Reset the position of the chunker regexp (start from head)
	chunker.lastIndex = 0;
	
	while ( (m = chunker.exec(selector)) !== null ) {
		parts.push( m[1] );
		
		if ( m[2] ) {
			extra = RegExp.rightContext;
			break;
		}
	}

	if ( parts.length > 1 && origPOS.exec( selector ) ) {
		if ( parts.length === 2 && Expr.relative[ parts[0] ] ) {
			set = posProcess( parts[0] + parts[1], context );
		} else {
			set = Expr.relative[ parts[0] ] ?
				[ context ] :
				Sizzle( parts.shift(), context );

			while ( parts.length ) {
				selector = parts.shift();

				if ( Expr.relative[ selector ] )
					selector += parts.shift();

				set = posProcess( selector, set );
			}
		}
	} else {
		var ret = seed ?
			{ expr: parts.pop(), set: makeArray(seed) } :
			Sizzle.find( parts.pop(), parts.length === 1 && context.parentNode ? context.parentNode : context, isXML(context) );
		set = Sizzle.filter( ret.expr, ret.set );

		if ( parts.length > 0 ) {
			checkSet = makeArray(set);
		} else {
			prune = false;
		}

		while ( parts.length ) {
			var cur = parts.pop(), pop = cur;

			if ( !Expr.relative[ cur ] ) {
				cur = "";
			} else {
				pop = parts.pop();
			}

			if ( pop == null ) {
				pop = context;
			}

			Expr.relative[ cur ]( checkSet, pop, isXML(context) );
		}
	}

	if ( !checkSet ) {
		checkSet = set;
	}

	if ( !checkSet ) {
		throw "Syntax error, unrecognized expression: " + (cur || selector);
	}

	if ( toString.call(checkSet) === "[object Array]" ) {
		if ( !prune ) {
			results.push.apply( results, checkSet );
		} else if ( context.nodeType === 1 ) {
			for ( var i = 0; checkSet[i] != null; i++ ) {
				if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && contains(context, checkSet[i])) ) {
					results.push( set[i] );
				}
			}
		} else {
			for ( var i = 0; checkSet[i] != null; i++ ) {
				if ( checkSet[i] && checkSet[i].nodeType === 1 ) {
					results.push( set[i] );
				}
			}
		}
	} else {
		makeArray( checkSet, results );
	}

	if ( extra ) {
		Sizzle( extra, context, results, seed );

		if ( sortOrder ) {
			hasDuplicate = false;
			results.sort(sortOrder);

			if ( hasDuplicate ) {
				for ( var i = 1; i < results.length; i++ ) {
					if ( results[i] === results[i-1] ) {
						results.splice(i--, 1);
					}
				}
			}
		}
	}

	return results;
};

Sizzle.matches = function(expr, set){
	return Sizzle(expr, null, null, set);
};

Sizzle.find = function(expr, context, isXML){
	var set, match;

	if ( !expr ) {
		return [];
	}

	for ( var i = 0, l = Expr.order.length; i < l; i++ ) {
		var type = Expr.order[i], match;
		
		if ( (match = Expr.match[ type ].exec( expr )) ) {
			var left = RegExp.leftContext;

			if ( left.substr( left.length - 1 ) !== "\\" ) {
				match[1] = (match[1] || "").replace(/\\/g, "");
				set = Expr.find[ type ]( match, context, isXML );
				if ( set != null ) {
					expr = expr.replace( Expr.match[ type ], "" );
					break;
				}
			}
		}
	}

	if ( !set ) {
		set = context.getElementsByTagName("*");
	}

	return {set: set, expr: expr};
};

Sizzle.filter = function(expr, set, inplace, not){
	var old = expr, result = [], curLoop = set, match, anyFound,
		isXMLFilter = set && set[0] && isXML(set[0]);

	while ( expr && set.length ) {
		for ( var type in Expr.filter ) {
			if ( (match = Expr.match[ type ].exec( expr )) != null ) {
				var filter = Expr.filter[ type ], found, item;
				anyFound = false;

				if ( curLoop == result ) {
					result = [];
				}

				if ( Expr.preFilter[ type ] ) {
					match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );

					if ( !match ) {
						anyFound = found = true;
					} else if ( match === true ) {
						continue;
					}
				}

				if ( match ) {
					for ( var i = 0; (item = curLoop[i]) != null; i++ ) {
						if ( item ) {
							found = filter( item, match, i, curLoop );
							var pass = not ^ !!found;

							if ( inplace && found != null ) {
								if ( pass ) {
									anyFound = true;
								} else {
									curLoop[i] = false;
								}
							} else if ( pass ) {
								result.push( item );
								anyFound = true;
							}
						}
					}
				}

				if ( found !== undefined ) {
					if ( !inplace ) {
						curLoop = result;
					}

					expr = expr.replace( Expr.match[ type ], "" );

					if ( !anyFound ) {
						return [];
					}

					break;
				}
			}
		}

		// Improper expression
		if ( expr == old ) {
			if ( anyFound == null ) {
				throw "Syntax error, unrecognized expression: " + expr;
			} else {
				break;
			}
		}

		old = expr;
	}

	return curLoop;
};

var Expr = Sizzle.selectors = {
	order: [ "ID", "NAME", "TAG" ],
	match: {
		ID: /#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,
		CLASS: /\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,
		NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,
		ATTR: /\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,
		TAG: /^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,
		CHILD: /:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,
		POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,
		PSEUDO: /:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/
	},
	attrMap: {
		"class": "className",
		"for": "htmlFor"
	},
	attrHandle: {
		href: function(elem){
			return elem.getAttribute("href");
		}
	},
	relative: {
		"+": function(checkSet, part, isXML){
			var isPartStr = typeof part === "string",
				isTag = isPartStr && !/\W/.test(part),
				isPartStrNotTag = isPartStr && !isTag;

			if ( isTag && !isXML ) {
				part = part.toUpperCase();
			}

			for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {
				if ( (elem = checkSet[i]) ) {
					while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}

					checkSet[i] = isPartStrNotTag || elem && elem.nodeName === part ?
						elem || false :
						elem === part;
				}
			}

			if ( isPartStrNotTag ) {
				Sizzle.filter( part, checkSet, true );
			}
		},
		">": function(checkSet, part, isXML){
			var isPartStr = typeof part === "string";

			if ( isPartStr && !/\W/.test(part) ) {
				part = isXML ? part : part.toUpperCase();

				for ( var i = 0, l = checkSet.length; i < l; i++ ) {
					var elem = checkSet[i];
					if ( elem ) {
						var parent = elem.parentNode;
						checkSet[i] = parent.nodeName === part ? parent : false;
					}
				}
			} else {
				for ( var i = 0, l = checkSet.length; i < l; i++ ) {
					var elem = checkSet[i];
					if ( elem ) {
						checkSet[i] = isPartStr ?
							elem.parentNode :
							elem.parentNode === part;
					}
				}

				if ( isPartStr ) {
					Sizzle.filter( part, checkSet, true );
				}
			}
		},
		"": function(checkSet, part, isXML){
			var doneName = done++, checkFn = dirCheck;

			if ( !part.match(/\W/) ) {
				var nodeCheck = part = isXML ? part : part.toUpperCase();
				checkFn = dirNodeCheck;
			}

			checkFn("parentNode", part, doneName, checkSet, nodeCheck, isXML);
		},
		"~": function(checkSet, part, isXML){
			var doneName = done++, checkFn = dirCheck;

			if ( typeof part === "string" && !part.match(/\W/) ) {
				var nodeCheck = part = isXML ? part : part.toUpperCase();
				checkFn = dirNodeCheck;
			}

			checkFn("previousSibling", part, doneName, checkSet, nodeCheck, isXML);
		}
	},
	find: {
		ID: function(match, context, isXML){
			if ( typeof context.getElementById !== "undefined" && !isXML ) {
				var m = context.getElementById(match[1]);
				return m ? [m] : [];
			}
		},
		NAME: function(match, context, isXML){
			if ( typeof context.getElementsByName !== "undefined" ) {
				var ret = [], results = context.getElementsByName(match[1]);

				for ( var i = 0, l = results.length; i < l; i++ ) {
					if ( results[i].getAttribute("name") === match[1] ) {
						ret.push( results[i] );
					}
				}

				return ret.length === 0 ? null : ret;
			}
		},
		TAG: function(match, context){
			return context.getElementsByTagName(match[1]);
		}
	},
	preFilter: {
		CLASS: function(match, curLoop, inplace, result, not, isXML){
			match = " " + match[1].replace(/\\/g, "") + " ";

			if ( isXML ) {
				return match;
			}

			for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) {
				if ( elem ) {
					if ( not ^ (elem.className && (" " + elem.className + " ").indexOf(match) >= 0) ) {
						if ( !inplace )
							result.push( elem );
					} else if ( inplace ) {
						curLoop[i] = false;
					}
				}
			}

			return false;
		},
		ID: function(match){
			return match[1].replace(/\\/g, "");
		},
		TAG: function(match, curLoop){
			for ( var i = 0; curLoop[i] === false; i++ ){}
			return curLoop[i] && isXML(curLoop[i]) ? match[1] : match[1].toUpperCase();
		},
		CHILD: function(match){
			if ( match[1] == "nth" ) {
				// parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'
				var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec(
					match[2] == "even" && "2n" || match[2] == "odd" && "2n+1" ||
					!/\D/.test( match[2] ) && "0n+" + match[2] || match[2]);

				// calculate the numbers (first)n+(last) including if they are negative
				match[2] = (test[1] + (test[2] || 1)) - 0;
				match[3] = test[3] - 0;
			}

			// TODO: Move to normal caching system
			match[0] = done++;

			return match;
		},
		ATTR: function(match, curLoop, inplace, result, not, isXML){
			var name = match[1].replace(/\\/g, "");
			
			if ( !isXML && Expr.attrMap[name] ) {
				match[1] = Expr.attrMap[name];
			}

			if ( match[2] === "~=" ) {
				match[4] = " " + match[4] + " ";
			}

			return match;
		},
		PSEUDO: function(match, curLoop, inplace, result, not){
			if ( match[1] === "not" ) {
				// If we're dealing with a complex expression, or a simple one
				if ( match[3].match(chunker).length > 1 || /^\w/.test(match[3]) ) {
					match[3] = Sizzle(match[3], null, null, curLoop);
				} else {
					var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not);
					if ( !inplace ) {
						result.push.apply( result, ret );
					}
					return false;
				}
			} else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {
				return true;
			}
			
			return match;
		},
		POS: function(match){
			match.unshift( true );
			return match;
		}
	},
	filters: {
		enabled: function(elem){
			return elem.disabled === false && elem.type !== "hidden";
		},
		disabled: function(elem){
			return elem.disabled === true;
		},
		checked: function(elem){
			return elem.checked === true;
		},
		selected: function(elem){
			// Accessing this property makes selected-by-default
			// options in Safari work properly
			elem.parentNode.selectedIndex;
			return elem.selected === true;
		},
		parent: function(elem){
			return !!elem.firstChild;
		},
		empty: function(elem){
			return !elem.firstChild;
		},
		has: function(elem, i, match){
			return !!Sizzle( match[3], elem ).length;
		},
		header: function(elem){
			return /h\d/i.test( elem.nodeName );
		},
		text: function(elem){
			return "text" === elem.type;
		},
		radio: function(elem){
			return "radio" === elem.type;
		},
		checkbox: function(elem){
			return "checkbox" === elem.type;
		},
		file: function(elem){
			return "file" === elem.type;
		},
		password: function(elem){
			return "password" === elem.type;
		},
		submit: function(elem){
			return "submit" === elem.type;
		},
		image: function(elem){
			return "image" === elem.type;
		},
		reset: function(elem){
			return "reset" === elem.type;
		},
		button: function(elem){
			return "button" === elem.type || elem.nodeName.toUpperCase() === "BUTTON";
		},
		input: function(elem){
			return /input|select|textarea|button/i.test(elem.nodeName);
		}
	},
	setFilters: {
		first: function(elem, i){
			return i === 0;
		},
		last: function(elem, i, match, array){
			return i === array.length - 1;
		},
		even: function(elem, i){
			return i % 2 === 0;
		},
		odd: function(elem, i){
			return i % 2 === 1;
		},
		lt: function(elem, i, match){
			return i < match[3] - 0;
		},
		gt: function(elem, i, match){
			return i > match[3] - 0;
		},
		nth: function(elem, i, match){
			return match[3] - 0 == i;
		},
		eq: function(elem, i, match){
			return match[3] - 0 == i;
		}
	},
	filter: {
		PSEUDO: function(elem, match, i, array){
			var name = match[1], filter = Expr.filters[ name ];

			if ( filter ) {
				return filter( elem, i, match, array );
			} else if ( name === "contains" ) {
				return (elem.textContent || elem.innerText || "").indexOf(match[3]) >= 0;
			} else if ( name === "not" ) {
				var not = match[3];

				for ( var i = 0, l = not.length; i < l; i++ ) {
					if ( not[i] === elem ) {
						return false;
					}
				}

				return true;
			}
		},
		CHILD: function(elem, match){
			var type = match[1], node = elem;
			switch (type) {
				case 'only':
				case 'first':
					while (node = node.previousSibling)  {
						if ( node.nodeType === 1 ) return false;
					}
					if ( type == 'first') return true;
					node = elem;
				case 'last':
					while (node = node.nextSibling)  {
						if ( node.nodeType === 1 ) return false;
					}
					return true;
				case 'nth':
					var first = match[2], last = match[3];

					if ( first == 1 && last == 0 ) {
						return true;
					}
					
					var doneName = match[0],
						parent = elem.parentNode;
	
					if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) {
						var count = 0;
						for ( node = parent.firstChild; node; node = node.nextSibling ) {
							if ( node.nodeType === 1 ) {
								node.nodeIndex = ++count;
							}
						} 
						parent.sizcache = doneName;
					}
					
					var diff = elem.nodeIndex - last;
					if ( first == 0 ) {
						return diff == 0;
					} else {
						return ( diff % first == 0 && diff / first >= 0 );
					}
			}
		},
		ID: function(elem, match){
			return elem.nodeType === 1 && elem.getAttribute("id") === match;
		},
		TAG: function(elem, match){
			return (match === "*" && elem.nodeType === 1) || elem.nodeName === match;
		},
		CLASS: function(elem, match){
			return (" " + (elem.className || elem.getAttribute("class")) + " ")
				.indexOf( match ) > -1;
		},
		ATTR: function(elem, match){
			var name = match[1],
				result = Expr.attrHandle[ name ] ?
					Expr.attrHandle[ name ]( elem ) :
					elem[ name ] != null ?
						elem[ name ] :
						elem.getAttribute( name ),
				value = result + "",
				type = match[2],
				check = match[4];

			return result == null ?
				type === "!=" :
				type === "=" ?
				value === check :
				type === "*=" ?
				value.indexOf(check) >= 0 :
				type === "~=" ?
				(" " + value + " ").indexOf(check) >= 0 :
				!check ?
				value && result !== false :
				type === "!=" ?
				value != check :
				type === "^=" ?
				value.indexOf(check) === 0 :
				type === "$=" ?
				value.substr(value.length - check.length) === check :
				type === "|=" ?
				value === check || value.substr(0, check.length + 1) === check + "-" :
				false;
		},
		POS: function(elem, match, i, array){
			var name = match[2], filter = Expr.setFilters[ name ];

			if ( filter ) {
				return filter( elem, i, match, array );
			}
		}
	}
};

var origPOS = Expr.match.POS;

for ( var type in Expr.match ) {
	Expr.match[ type ] = RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source );
}

var makeArray = function(array, results) {
	array = Array.prototype.slice.call( array );

	if ( results ) {
		results.push.apply( results, array );
		return results;
	}
	
	return array;
};

// Perform a simple check to determine if the browser is capable of
// converting a NodeList to an array using builtin methods.
try {
	Array.prototype.slice.call( document.documentElement.childNodes );

// Provide a fallback method if it does not work
} catch(e){
	makeArray = function(array, results) {
		var ret = results || [];

		if ( toString.call(array) === "[object Array]" ) {
			Array.prototype.push.apply( ret, array );
		} else {
			if ( typeof array.length === "number" ) {
				for ( var i = 0, l = array.length; i < l; i++ ) {
					ret.push( array[i] );
				}
			} else {
				for ( var i = 0; array[i]; i++ ) {
					ret.push( array[i] );
				}
			}
		}

		return ret;
	};
}

var sortOrder;

if ( document.documentElement.compareDocumentPosition ) {
	sortOrder = function( a, b ) {
		var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
} else if ( "sourceIndex" in document.documentElement ) {
	sortOrder = function( a, b ) {
		var ret = a.sourceIndex - b.sourceIndex;
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
} else if ( document.createRange ) {
	sortOrder = function( a, b ) {
		var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
		aRange.selectNode(a);
		aRange.collapse(true);
		bRange.selectNode(b);
		bRange.collapse(true);
		var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
}

// Check to see if the browser returns elements by name when
// querying by getElementById (and provide a workaround)
(function(){
	// We're going to inject a fake input element with a specified name
	var form = document.createElement("form"),
		id = "script" + (new Date).getTime();
	form.innerHTML = "<input name='" + id + "'/>";

	// Inject it into the root element, check its status, and remove it quickly
	var root = document.documentElement;
	root.insertBefore( form, root.firstChild );

	// The workaround has to do additional checks after a getElementById
	// Which slows things down for other browsers (hence the branching)
	if ( !!document.getElementById( id ) ) {
		Expr.find.ID = function(match, context, isXML){
			if ( typeof context.getElementById !== "undefined" && !isXML ) {
				var m = context.getElementById(match[1]);
				return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : [];
			}
		};

		Expr.filter.ID = function(elem, match){
			var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
			return elem.nodeType === 1 && node && node.nodeValue === match;
		};
	}

	root.removeChild( form );
})();

(function(){
	// Check to see if the browser returns only elements
	// when doing getElementsByTagName("*")

	// Create a fake element
	var div = document.createElement("div");
	div.appendChild( document.createComment("") );

	// Make sure no comments are found
	if ( div.getElementsByTagName("*").length > 0 ) {
		Expr.find.TAG = function(match, context){
			var results = context.getElementsByTagName(match[1]);

			// Filter out possible comments
			if ( match[1] === "*" ) {
				var tmp = [];

				for ( var i = 0; results[i]; i++ ) {
					if ( results[i].nodeType === 1 ) {
						tmp.push( results[i] );
					}
				}

				results = tmp;
			}

			return results;
		};
	}

	// Check to see if an attribute returns normalized href attributes
	div.innerHTML = "<a href='#'></a>";
	if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" &&
			div.firstChild.getAttribute("href") !== "#" ) {
		Expr.attrHandle.href = function(elem){
			return elem.getAttribute("href", 2);
		};
	}
})();

if ( document.querySelectorAll ) (function(){
	var oldSizzle = Sizzle, div = document.createElement("div");
	div.innerHTML = "<p class='TEST'></p>";

	// Safari can't handle uppercase or unicode characters when
	// in quirks mode.
	if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
		return;
	}
	
	Sizzle = function(query, context, extra, seed){
		context = context || document;

		// Only use querySelectorAll on non-XML documents
		// (ID selectors don't work in non-HTML documents)
		if ( !seed && context.nodeType === 9 && !isXML(context) ) {
			try {
				return makeArray( context.querySelectorAll(query), extra );
			} catch(e){}
		}
		
		return oldSizzle(query, context, extra, seed);
	};

	Sizzle.find = oldSizzle.find;
	Sizzle.filter = oldSizzle.filter;
	Sizzle.selectors = oldSizzle.selectors;
	Sizzle.matches = oldSizzle.matches;
})();

if ( document.getElementsByClassName && document.documentElement.getElementsByClassName ) (function(){
	var div = document.createElement("div");
	div.innerHTML = "<div class='test e'></div><div class='test'></div>";

	// Opera can't find a second classname (in 9.6)
	if ( div.getElementsByClassName("e").length === 0 )
		return;

	// Safari caches class attributes, doesn't catch changes (in 3.2)
	div.lastChild.className = "e";

	if ( div.getElementsByClassName("e").length === 1 )
		return;

	Expr.order.splice(1, 0, "CLASS");
	Expr.find.CLASS = function(match, context, isXML) {
		if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) {
			return context.getElementsByClassName(match[1]);
		}
	};
})();

function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
	var sibDir = dir == "previousSibling" && !isXML;
	for ( var i = 0, l = checkSet.length; i < l; i++ ) {
		var elem = checkSet[i];
		if ( elem ) {
			if ( sibDir && elem.nodeType === 1 ){
				elem.sizcache = doneName;
				elem.sizset = i;
			}
			elem = elem[dir];
			var match = false;

			while ( elem ) {
				if ( elem.sizcache === doneName ) {
					match = checkSet[elem.sizset];
					break;
				}

				if ( elem.nodeType === 1 && !isXML ){
					elem.sizcache = doneName;
					elem.sizset = i;
				}

				if ( elem.nodeName === cur ) {
					match = elem;
					break;
				}

				elem = elem[dir];
			}

			checkSet[i] = match;
		}
	}
}

function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
	var sibDir = dir == "previousSibling" && !isXML;
	for ( var i = 0, l = checkSet.length; i < l; i++ ) {
		var elem = checkSet[i];
		if ( elem ) {
			if ( sibDir && elem.nodeType === 1 ) {
				elem.sizcache = doneName;
				elem.sizset = i;
			}
			elem = elem[dir];
			var match = false;

			while ( elem ) {
				if ( elem.sizcache === doneName ) {
					match = checkSet[elem.sizset];
					break;
				}

				if ( elem.nodeType === 1 ) {
					if ( !isXML ) {
						elem.sizcache = doneName;
						elem.sizset = i;
					}
					if ( typeof cur !== "string" ) {
						if ( elem === cur ) {
							match = true;
							break;
						}

					} else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {
						match = elem;
						break;
					}
				}

				elem = elem[dir];
			}

			checkSet[i] = match;
		}
	}
}

var contains = document.compareDocumentPosition ?  function(a, b){
	return a.compareDocumentPosition(b) & 16;
} : function(a, b){
	return a !== b && (a.contains ? a.contains(b) : true);
};

var isXML = function(elem){
	return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
		!!elem.ownerDocument && isXML( elem.ownerDocument );
};

var posProcess = function(selector, context){
	var tmpSet = [], later = "", match,
		root = context.nodeType ? [context] : context;

	// Position selectors must be done after the filter
	// And so must :not(positional) so we move all PSEUDOs to the end
	while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
		later += match[0];
		selector = selector.replace( Expr.match.PSEUDO, "" );
	}

	selector = Expr.relative[selector] ? selector + "*" : selector;

	for ( var i = 0, l = root.length; i < l; i++ ) {
		Sizzle( selector, root[i], tmpSet );
	}

	return Sizzle.filter( later, tmpSet );
};

// EXPOSE
jQuery.find = Sizzle;
jQuery.filter = Sizzle.filter;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.filters;

Sizzle.selectors.filters.hidden = function(elem){
	return elem.offsetWidth === 0 || elem.offsetHeight === 0;
};

Sizzle.selectors.filters.visible = function(elem){
	return elem.offsetWidth > 0 || elem.offsetHeight > 0;
};

Sizzle.selectors.filters.animated = function(elem){
	return jQuery.grep(jQuery.timers, function(fn){
		return elem === fn.elem;
	}).length;
};

jQuery.multiFilter = function( expr, elems, not ) {
	if ( not ) {
		expr = ":not(" + expr + ")";
	}

	return Sizzle.matches(expr, elems);
};

jQuery.dir = function( elem, dir ){
	var matched = [], cur = elem[dir];
	while ( cur && cur != document ) {
		if ( cur.nodeType == 1 )
			matched.push( cur );
		cur = cur[dir];
	}
	return matched;
};

jQuery.nth = function(cur, result, dir, elem){
	result = result || 1;
	var num = 0;

	for ( ; cur; cur = cur[dir] )
		if ( cur.nodeType == 1 && ++num == result )
			break;

	return cur;
};

jQuery.sibling = function(n, elem){
	var r = [];

	for ( ; n; n = n.nextSibling ) {
		if ( n.nodeType == 1 && n != elem )
			r.push( n );
	}

	return r;
};

return;

window.Sizzle = Sizzle;

})();
/*
 * A number of helper functions used for managing events.
 * Many of the ideas behind this code originated from
 * Dean Edwards' addEvent library.
 */
jQuery.event = {

	// Bind an event to an element
	// Original by Dean Edwards
	add: function(elem, types, handler, data) {
		if ( elem.nodeType == 3 || elem.nodeType == 8 )
			return;

		// For whatever reason, IE has trouble passing the window object
		// around, causing it to be cloned in the process
		if ( elem.setInterval && elem != window )
			elem = window;

		// Make sure that the function being executed has a unique ID
		if ( !handler.guid )
			handler.guid = this.guid++;

		// if data is passed, bind to handler
		if ( data !== undefined ) {
			// Create temporary function pointer to original handler
			var fn = handler;

			// Create unique handler function, wrapped around original handler
			handler = this.proxy( fn );

			// Store data in unique handler
			handler.data = data;
		}

		// Init the element's event structure
		var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}),
			handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function(){
				// Handle the second event of a trigger and when
				// an event is called after a page has unloaded
				return typeof jQuery !== "undefined" && !jQuery.event.triggered ?
					jQuery.event.handle.apply(arguments.callee.elem, arguments) :
					undefined;
			});
		// Add elem as a property of the handle function
		// This is to prevent a memory leak with non-native
		// event in IE.
		handle.elem = elem;

		// Handle multiple events separated by a space
		// jQuery(...).bind("mouseover mouseout", fn);
		jQuery.each(types.split(/\s+/), function(index, type) {
			// Namespaced event handlers
			var namespaces = type.split(".");
			type = namespaces.shift();
			handler.type = namespaces.slice().sort().join(".");

			// Get the current list of functions bound to this event
			var handlers = events[type];
			
			if ( jQuery.event.specialAll[type] )
				jQuery.event.specialAll[type].setup.call(elem, data, namespaces);

			// Init the event handler queue
			if (!handlers) {
				handlers = events[type] = {};

				// Check for a special event handler
				// Only use addEventListener/attachEvent if the special
				// events handler returns false
				if ( !jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
					// Bind the global event handler to the element
					if (elem.addEventListener)
						elem.addEventListener(type, handle, false);
					else if (elem.attachEvent)
						elem.attachEvent("on" + type, handle);
				}
			}

			// Add the function to the element's handler list
			handlers[handler.guid] = handler;

			// Keep track of which events have been used, for global triggering
			jQuery.event.global[type] = true;
		});

		// Nullify elem to prevent memory leaks in IE
		elem = null;
	},

	guid: 1,
	global: {},

	// Detach an event or set of events from an element
	remove: function(elem, types, handler) {
		// don't do events on text and comment nodes
		if ( elem.nodeType == 3 || elem.nodeType == 8 )
			return;

		var events = jQuery.data(elem, "events"), ret, index;

		if ( events ) {
			// Unbind all events for the element
			if ( types === undefined || (typeof types === "string" && types.charAt(0) == ".") )
				for ( var type in events )
					this.remove( elem, type + (types || "") );
			else {
				// types is actually an event object here
				if ( types.type ) {
					handler = types.handler;
					types = types.type;
				}

				// Handle multiple events seperated by a space
				// jQuery(...).unbind("mouseover mouseout", fn);
				jQuery.each(types.split(/\s+/), function(index, type){
					// Namespaced event handlers
					var namespaces = type.split(".");
					type = namespaces.shift();
					var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");

					if ( events[type] ) {
						// remove the given handler for the given type
						if ( handler )
							delete events[type][handler.guid];

						// remove all handlers for the given type
						else
							for ( var handle in events[type] )
								// Handle the removal of namespaced events
								if ( namespace.test(events[type][handle].type) )
									delete events[type][handle];
									
						if ( jQuery.event.specialAll[type] )
							jQuery.event.specialAll[type].teardown.call(elem, namespaces);

						// remove generic event handler if no more handlers exist
						for ( ret in events[type] ) break;
						if ( !ret ) {
							if ( !jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
								if (elem.removeEventListener)
									elem.removeEventListener(type, jQuery.data(elem, "handle"), false);
								else if (elem.detachEvent)
									elem.detachEvent("on" + type, jQuery.data(elem, "handle"));
							}
							ret = null;
							delete events[type];
						}
					}
				});
			}

			// Remove the expando if it's no longer used
			for ( ret in events ) break;
			if ( !ret ) {
				var handle = jQuery.data( elem, "handle" );
				if ( handle ) handle.elem = null;
				jQuery.removeData( elem, "events" );
				jQuery.removeData( elem, "handle" );
			}
		}
	},

	// bubbling is internal
	trigger: function( event, data, elem, bubbling ) {
		// Event object or event type
		var type = event.type || event;

		if( !bubbling ){
			event = typeof event === "object" ?
				// jQuery.Event object
				event[expando] ? event :
				// Object literal
				jQuery.extend( jQuery.Event(type), event ) :
				// Just the event type (string)
				jQuery.Event(type);

			if ( type.indexOf("!") >= 0 ) {
				event.type = type = type.slice(0, -1);
				event.exclusive = true;
			}

			// Handle a global trigger
			if ( !elem ) {
				// Don't bubble custom events when global (to avoid too much overhead)
				event.stopPropagation();
				// Only trigger if we've ever bound an event for it
				if ( this.global[type] )
					jQuery.each( jQuery.cache, function(){
						if ( this.events && this.events[type] )
							jQuery.event.trigger( event, data, this.handle.elem );
					});
			}

			// Handle triggering a single element

			// don't do events on text and comment nodes
			if ( !elem || elem.nodeType == 3 || elem.nodeType == 8 )
				return undefined;
			
			// Clean up in case it is reused
			event.result = undefined;
			event.target = elem;
			
			// Clone the incoming data, if any
			data = jQuery.makeArray(data);
			data.unshift( event );
		}

		event.currentTarget = elem;

		// Trigger the event, it is assumed that "handle" is a function
		var handle = jQuery.data(elem, "handle");
		if ( handle )
			handle.apply( elem, data );

		// Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
		if ( (!elem[type] || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
			event.result = false;

		// Trigger the native events (except for clicks on links)
		if ( !bubbling && elem[type] && !event.isDefaultPrevented() && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
			this.triggered = true;
			try {
				elem[ type ]();
			// prevent IE from throwing an error for some hidden elements
			} catch (e) {}
		}

		this.triggered = false;

		if ( !event.isPropagationStopped() ) {
			var parent = elem.parentNode || elem.ownerDocument;
			if ( parent )
				jQuery.event.trigger(event, data, parent, true);
		}
	},

	handle: function(event) {
		// returned undefined or false
		var all, handlers;

		event = arguments[0] = jQuery.event.fix( event || window.event );
		event.currentTarget = this;
		
		// Namespaced event handlers
		var namespaces = event.type.split(".");
		event.type = namespaces.shift();

		// Cache this now, all = true means, any handler
		all = !namespaces.length && !event.exclusive;
		
		var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");

		handlers = ( jQuery.data(this, "events") || {} )[event.type];

		for ( var j in handlers ) {
			var handler = handlers[j];

			// Filter the functions by class
			if ( all || namespace.test(handler.type) ) {
				// Pass in a reference to the handler function itself
				// So that we can later remove it
				event.handler = handler;
				event.data = handler.data;

				var ret = handler.apply(this, arguments);

				if( ret !== undefined ){
					event.result = ret;
					if ( ret === false ) {
						event.preventDefault();
						event.stopPropagation();
					}
				}

				if( event.isImmediatePropagationStopped() )
					break;

			}
		}
	},

	props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),

	fix: function(event) {
		if ( event[expando] )
			return event;

		// store a copy of the original event object
		// and "clone" to set read-only properties
		var originalEvent = event;
		event = jQuery.Event( originalEvent );

		for ( var i = this.props.length, prop; i; ){
			prop = this.props[ --i ];
			event[ prop ] = originalEvent[ prop ];
		}

		// Fix target property, if necessary
		if ( !event.target )
			event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either

		// check if target is a textnode (safari)
		if ( event.target.nodeType == 3 )
			event.target = event.target.parentNode;

		// Add relatedTarget, if necessary
		if ( !event.relatedTarget && event.fromElement )
			event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;

		// Calculate pageX/Y if missing and clientX/Y available
		if ( event.pageX == null && event.clientX != null ) {
			var doc = document.documentElement, body = document.body;
			event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0);
			event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0);
		}

		// Add which for key events
		if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )
			event.which = event.charCode || event.keyCode;

		// Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
		if ( !event.metaKey && event.ctrlKey )
			event.metaKey = event.ctrlKey;

		// Add which for click: 1 == left; 2 == middle; 3 == right
		// Note: button is not normalized, so don't use it
		if ( !event.which && event.button )
			event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));

		return event;
	},

	proxy: function( fn, proxy ){
		proxy = proxy || function(){ return fn.apply(this, arguments); };
		// Set the guid of unique handler to the same of original handler, so it can be removed
		proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
		// So proxy can be declared as an argument
		return proxy;
	},

	special: {
		ready: {
			// Make sure the ready event is setup
			setup: bindReady,
			teardown: function() {}
		}
	},
	
	specialAll: {
		live: {
			setup: function( selector, namespaces ){
				jQuery.event.add( this, namespaces[0], liveHandler );
			},
			teardown:  function( namespaces ){
				if ( namespaces.length ) {
					var remove = 0, name = RegExp("(^|\\.)" + namespaces[0] + "(\\.|$)");
					
					jQuery.each( (jQuery.data(this, "events").live || {}), function(){
						if ( name.test(this.type) )
							remove++;
					});
					
					if ( remove < 1 )
						jQuery.event.remove( this, namespaces[0], liveHandler );
				}
			}
		}
	}
};

jQuery.Event = function( src ){
	// Allow instantiation without the 'new' keyword
	if( !this.preventDefault )
		return new jQuery.Event(src);
	
	// Event object
	if( src && src.type ){
		this.originalEvent = src;
		this.type = src.type;
	// Event type
	}else
		this.type = src;

	// timeStamp is buggy for some events on Firefox(#3843)
	// So we won't rely on the native value
	this.timeStamp = now();
	
	// Mark it as fixed
	this[expando] = true;
};

function returnFalse(){
	return false;
}
function returnTrue(){
	return true;
}

// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
	preventDefault: function() {
		this.isDefaultPrevented = returnTrue;

		var e = this.originalEvent;
		if( !e )
			return;
		// if preventDefault exists run it on the original event
		if (e.preventDefault)
			e.preventDefault();
		// otherwise set the returnValue property of the original event to false (IE)
		e.returnValue = false;
	},
	stopPropagation: function() {
		this.isPropagationStopped = returnTrue;

		var e = this.originalEvent;
		if( !e )
			return;
		// if stopPropagation exists run it on the original event
		if (e.stopPropagation)
			e.stopPropagation();
		// otherwise set the cancelBubble property of the original event to true (IE)
		e.cancelBubble = true;
	},
	stopImmediatePropagation:function(){
		this.isImmediatePropagationStopped = returnTrue;
		this.stopPropagation();
	},
	isDefaultPrevented: returnFalse,
	isPropagationStopped: returnFalse,
	isImmediatePropagationStopped: returnFalse
};
// Checks if an event happened on an element within another element
// Used in jQuery.event.special.mouseenter and mouseleave handlers
var withinElement = function(event) {
	// Check if mouse(over|out) are still within the same parent element
	var parent = event.relatedTarget;
	// Traverse up the tree
	while ( parent && parent != this )
		try { parent = parent.parentNode; }
		catch(e) { parent = this; }
	
	if( parent != this ){
		// set the correct event type
		event.type = event.data;
		// handle event if we actually just moused on to a non sub-element
		jQuery.event.handle.apply( this, arguments );
	}
};
	
jQuery.each({ 
	mouseover: 'mouseenter', 
	mouseout: 'mouseleave'
}, function( orig, fix ){
	jQuery.event.special[ fix ] = {
		setup: function(){
			jQuery.event.add( this, orig, withinElement, fix );
		},
		teardown: function(){
			jQuery.event.remove( this, orig, withinElement );
		}
	};			   
});

jQuery.fn.extend({
	bind: function( type, data, fn ) {
		return type == "unload" ? this.one(type, data, fn) : this.each(function(){
			jQuery.event.add( this, type, fn || data, fn && data );
		});
	},

	one: function( type, data, fn ) {
		var one = jQuery.event.proxy( fn || data, function(event) {
			jQuery(this).unbind(event, one);
			return (fn || data).apply( this, arguments );
		});
		return this.each(function(){
			jQuery.event.add( this, type, one, fn && data);
		});
	},

	unbind: function( type, fn ) {
		return this.each(function(){
			jQuery.event.remove( this, type, fn );
		});
	},

	trigger: function( type, data ) {
		return this.each(function(){
			jQuery.event.trigger( type, data, this );
		});
	},

	triggerHandler: function( type, data ) {
		if( this[0] ){
			var event = jQuery.Event(type);
			event.preventDefault();
			event.stopPropagation();
			jQuery.event.trigger( event, data, this[0] );
			return event.result;
		}		
	},

	toggle: function( fn ) {
		// Save reference to arguments for access in closure
		var args = arguments, i = 1;

		// link all the functions, so any of them can unbind this click handler
		while( i < args.length )
			jQuery.event.proxy( fn, args[i++] );

		return this.click( jQuery.event.proxy( fn, function(event) {
			// Figure out which function to execute
			this.lastToggle = ( this.lastToggle || 0 ) % i;

			// Make sure that clicks stop
			event.preventDefault();

			// and execute the function
			return args[ this.lastToggle++ ].apply( this, arguments ) || false;
		}));
	},

	hover: function(fnOver, fnOut) {
		return this.mouseenter(fnOver).mouseleave(fnOut);
	},

	ready: function(fn) {
		// Attach the listeners
		bindReady();

		// If the DOM is already ready
		if ( jQuery.isReady )
			// Execute the function immediately
			fn.call( document, jQuery );

		// Otherwise, remember the function for later
		else
			// Add the function to the wait list
			jQuery.readyList.push( fn );

		return this;
	},
	
	live: function( type, fn ){
		var proxy = jQuery.event.proxy( fn );
		proxy.guid += this.selector + type;

		jQuery(document).bind( liveConvert(type, this.selector), this.selector, proxy );

		return this;
	},
	
	die: function( type, fn ){
		jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
		return this;
	}
});

function liveHandler( event ){
	var check = RegExp("(^|\\.)" + event.type + "(\\.|$)"),
		stop = true,
		elems = [];

	jQuery.each(jQuery.data(this, "events").live || [], function(i, fn){
		if ( check.test(fn.type) ) {
			var elem = jQuery(event.target).closest(fn.data)[0];
			if ( elem )
				elems.push({ elem: elem, fn: fn });
		}
	});

	elems.sort(function(a,b) {
		return jQuery.data(a.elem, "closest") - jQuery.data(b.elem, "closest");
	});
	
	jQuery.each(elems, function(){
		if ( this.fn.call(this.elem, event, this.fn.data) === false )
			return (stop = false);
	});

	return stop;
}

function liveConvert(type, selector){
	return ["live", type, selector.replace(/\./g, "`").replace(/ /g, "|")].join(".");
}

jQuery.extend({
	isReady: false,
	readyList: [],
	// Handle when the DOM is ready
	ready: function() {
		// Make sure that the DOM is not already loaded
		if ( !jQuery.isReady ) {
			// Remember that the DOM is ready
			jQuery.isReady = true;

			// If there are functions bound, to execute
			if ( jQuery.readyList ) {
				// Execute all of them
				jQuery.each( jQuery.readyList, function(){
					this.call( document, jQuery );
				});

				// Reset the list of functions
				jQuery.readyList = null;
			}

			// Trigger any bound ready events
			jQuery(document).triggerHandler("ready");
		}
	}
});

var readyBound = false;

function bindReady(){
	if ( readyBound ) return;
	readyBound = true;

	// Mozilla, Opera and webkit nightlies currently support this event
	if ( document.addEventListener ) {
		// Use the handy event callback
		document.addEventListener( "DOMContentLoaded", function(){
			document.removeEventListener( "DOMContentLoaded", arguments.callee, false );
			jQuery.ready();
		}, false );

	// If IE event model is used
	} else if ( document.attachEvent ) {
		// ensure firing before onload,
		// maybe late but safe also for iframes
		document.attachEvent("onreadystatechange", function(){
			if ( document.readyState === "complete" ) {
				document.detachEvent( "onreadystatechange", arguments.callee );
				jQuery.ready();
			}
		});

		// If IE and not an iframe
		// continually check to see if the document is ready
		if ( document.documentElement.doScroll && window == window.top ) (function(){
			if ( jQuery.isReady ) return;

			try {
				// If IE is used, use the trick by Diego Perini
				// http://javascript.nwbox.com/IEContentLoaded/
				document.documentElement.doScroll("left");
			} catch( error ) {
				setTimeout( arguments.callee, 0 );
				return;
			}

			// and execute any waiting functions
			jQuery.ready();
		})();
	}

	// A fallback to window.onload, that will always work
	jQuery.event.add( window, "load", jQuery.ready );
}

jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
	"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave," +
	"change,select,submit,keydown,keypress,keyup,error").split(","), function(i, name){

	// Handle event binding
	jQuery.fn[name] = function(fn){
		return fn ? this.bind(name, fn) : this.trigger(name);
	};
});

// Prevent memory leaks in IE
// And prevent errors on refresh with events like mouseover in other browsers
// Window isn't included so as not to unbind existing unload events
jQuery( window ).bind( 'unload', function(){ 
	for ( var id in jQuery.cache )
		// Skip the window
		if ( id != 1 && jQuery.cache[ id ].handle )
			jQuery.event.remove( jQuery.cache[ id ].handle.elem );
}); 
(function(){

	jQuery.support = {};

	var root = document.documentElement,
		script = document.createElement("script"),
		div = document.createElement("div"),
		id = "script" + (new Date).getTime();

	div.style.display = "none";
	div.innerHTML = '   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';

	var all = div.getElementsByTagName("*"),
		a = div.getElementsByTagName("a")[0];

	// Can't get basic test support
	if ( !all || !all.length || !a ) {
		return;
	}

	jQuery.support = {
		// IE strips leading whitespace when .innerHTML is used
		leadingWhitespace: div.firstChild.nodeType == 3,
		
		// Make sure that tbody elements aren't automatically inserted
		// IE will insert them into empty tables
		tbody: !div.getElementsByTagName("tbody").length,
		
		// Make sure that you can get all elements in an <object> element
		// IE 7 always returns no results
		objectAll: !!div.getElementsByTagName("object")[0]
			.getElementsByTagName("*").length,
		
		// Make sure that link elements get serialized correctly by innerHTML
		// This requires a wrapper element in IE
		htmlSerialize: !!div.getElementsByTagName("link").length,
		
		// Get the style information from getAttribute
		// (IE uses .cssText insted)
		style: /red/.test( a.getAttribute("style") ),
		
		// Make sure that URLs aren't manipulated
		// (IE normalizes it by default)
		hrefNormalized: a.getAttribute("href") === "/a",
		
		// Make sure that element opacity exists
		// (IE uses filter instead)
		opacity: a.style.opacity === "0.5",
		
		// Verify style float existence
		// (IE uses styleFloat instead of cssFloat)
		cssFloat: !!a.style.cssFloat,

		// Will be defined later
		scriptEval: false,
		noCloneEvent: true,
		boxModel: null
	};
	
	script.type = "text/javascript";
	try {
		script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
	} catch(e){}

	root.insertBefore( script, root.firstChild );
	
	// Make sure that the execution of code works by injecting a script
	// tag with appendChild/createTextNode
	// (IE doesn't support this, fails, and uses .text instead)
	if ( window[ id ] ) {
		jQuery.support.scriptEval = true;
		delete window[ id ];
	}

	root.removeChild( script );

	if ( div.attachEvent && div.fireEvent ) {
		div.attachEvent("onclick", function(){
			// Cloning a node shouldn't copy over any
			// bound event handlers (IE does this)
			jQuery.support.noCloneEvent = false;
			div.detachEvent("onclick", arguments.callee);
		});
		div.cloneNode(true).fireEvent("onclick");
	}

	// Figure out if the W3C box model works as expected
	// document.body must exist before we can do this
	jQuery(function(){
		var div = document.createElement("div");
		div.style.width = div.style.paddingLeft = "1px";

		document.body.appendChild( div );
		jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
		document.body.removeChild( div ).style.display = 'none';
	});
})();

var styleFloat = jQuery.support.cssFloat ? "cssFloat" : "styleFloat";

jQuery.props = {
	"for": "htmlFor",
	"class": "className",
	"float": styleFloat,
	cssFloat: styleFloat,
	styleFloat: styleFloat,
	readonly: "readOnly",
	maxlength: "maxLength",
	cellspacing: "cellSpacing",
	rowspan: "rowSpan",
	tabindex: "tabIndex"
};
jQuery.fn.extend({
	// Keep a copy of the old load
	_load: jQuery.fn.load,

	load: function( url, params, callback ) {
		if ( typeof url !== "string" )
			return this._load( url );

		var off = url.indexOf(" ");
		if ( off >= 0 ) {
			var selector = url.slice(off, url.length);
			url = url.slice(0, off);
		}

		// Default to a GET request
		var type = "GET";

		// If the second parameter was provided
		if ( params )
			// If it's a function
			if ( jQuery.isFunction( params ) ) {
				// We assume that it's the callback
				callback = params;
				params = null;

			// Otherwise, build a param string
			} else if( typeof params === "object" ) {
				params = jQuery.param( params );
				type = "POST";
			}

		var self = this;

		// Request the remote document
		jQuery.ajax({
			url: url,
			type: type,
			dataType: "html",
			data: params,
			complete: function(res, status){
				// If successful, inject the HTML into all the matched elements
				if ( status == "success" || status == "notmodified" )
					// See if a selector was specified
					self.html( selector ?
						// Create a dummy div to hold the results
						jQuery("<div/>")
							// inject the contents of the document in, removing the scripts
							// to avoid any 'Permission Denied' errors in IE
							.append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))

							// Locate the specified elements
							.find(selector) :

						// If not, just inject the full result
						res.responseText );

				if( callback )
					self.each( callback, [res.responseText, status, res] );
			}
		});
		return this;
	},

	serialize: function() {
		return jQuery.param(this.serializeArray());
	},
	serializeArray: function() {
		return this.map(function(){
			return this.elements ? jQuery.makeArray(this.elements) : this;
		})
		.filter(function(){
			return this.name && !this.disabled &&
				(this.checked || /select|textarea/i.test(this.nodeName) ||
					/text|hidden|password|search/i.test(this.type));
		})
		.map(function(i, elem){
			var val = jQuery(this).val();
			return val == null ? null :
				jQuery.isArray(val) ?
					jQuery.map( val, function(val, i){
						return {name: elem.name, value: val};
					}) :
					{name: elem.name, value: val};
		}).get();
	}
});

// Attach a bunch of functions for handling common AJAX events
jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
	jQuery.fn[o] = function(f){
		return this.bind(o, f);
	};
});

var jsc = now();

jQuery.extend({
  
	get: function( url, data, callback, type ) {
		// shift arguments if data argument was ommited
		if ( jQuery.isFunction( data ) ) {
			callback = data;
			data = null;
		}

		return jQuery.ajax({
			type: "GET",
			url: url,
			data: data,
			success: callback,
			dataType: type
		});
	},

	getScript: function( url, callback ) {
		return jQuery.get(url, null, callback, "script");
	},

	getJSON: function( url, data, callback ) {
		return jQuery.get(url, data, callback, "json");
	},

	post: function( url, data, callback, type ) {
		if ( jQuery.isFunction( data ) ) {
			callback = data;
			data = {};
		}

		return jQuery.ajax({
			type: "POST",
			url: url,
			data: data,
			success: callback,
			dataType: type
		});
	},

	ajaxSetup: function( settings ) {
		jQuery.extend( jQuery.ajaxSettings, settings );
	},

	ajaxSettings: {
		url: location.href,
		global: true,
		type: "GET",
		contentType: "application/x-www-form-urlencoded",
		processData: true,
		async: true,
		/*
		timeout: 0,
		data: null,
		username: null,
		password: null,
		*/
		// Create the request object; Microsoft failed to properly
		// implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
		// This function can be overriden by calling jQuery.ajaxSetup
		xhr:function(){
			return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
		},
		accepts: {
			xml: "application/xml, text/xml",
			html: "text/html",
			script: "text/javascript, application/javascript",
			json: "application/json, text/javascript",
			text: "text/plain",
			_default: "*/*"
		}
	},

	// Last-Modified header cache for next request
	lastModified: {},

	ajax: function( s ) {
		// Extend the settings, but re-extend 's' so that it can be
		// checked again later (in the test suite, specifically)
		s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));

		var jsonp, jsre = /=\?(&|$)/g, status, data,
			type = s.type.toUpperCase();

		// convert data if not already a string
		if ( s.data && s.processData && typeof s.data !== "string" )
			s.data = jQuery.param(s.data);

		// Handle JSONP Parameter Callbacks
		if ( s.dataType == "jsonp" ) {
			if ( type == "GET" ) {
				if ( !s.url.match(jsre) )
					s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
			} else if ( !s.data || !s.data.match(jsre) )
				s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
			s.dataType = "json";
		}

		// Build temporary JSONP function
		if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
			jsonp = "jsonp" + jsc++;

			// Replace the =? sequence both in the query string and the data
			if ( s.data )
				s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
			s.url = s.url.replace(jsre, "=" + jsonp + "$1");

			// We need to make sure
			// that a JSONP style response is executed properly
			s.dataType = "script";

			// Handle JSONP-style loading
			window[ jsonp ] = function(tmp){
				data = tmp;
				success();
				complete();
				// Garbage collect
				window[ jsonp ] = undefined;
				try{ delete window[ jsonp ]; } catch(e){}
				if ( head )
					head.removeChild( script );
			};
		}

		if ( s.dataType == "script" && s.cache == null )
			s.cache = false;

		if ( s.cache === false && type == "GET" ) {
			var ts = now();
			// try replacing _= if it is there
			var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
			// if nothing was replaced, add timestamp to the end
			s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
		}

		// If data is available, append data to url for get requests
		if ( s.data && type == "GET" ) {
			s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;

			// IE likes to send both get and post data, prevent this
			s.data = null;
		}

		// Watch for a new set of requests
		if ( s.global && ! jQuery.active++ )
			jQuery.event.trigger( "ajaxStart" );

		// Matches an absolute URL, and saves the domain
		var parts = /^(\w+:)?\/\/([^\/?#]+)/.exec( s.url );

		// If we're requesting a remote document
		// and trying to load JSON or Script with a GET
		if ( s.dataType == "script" && type == "GET" && parts
			&& ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){

			var head = document.getElementsByTagName("head")[0];
			var script = document.createElement("script");
			script.src = s.url;
			if (s.scriptCharset)
				script.charset = s.scriptCharset;

			// Handle Script loading
			if ( !jsonp ) {
				var done = false;

				// Attach handlers for all browsers
				script.onload = script.onreadystatechange = function(){
					if ( !done && (!this.readyState ||
							this.readyState == "loaded" || this.readyState == "complete") ) {
						done = true;
						success();
						complete();

						// Handle memory leak in IE
						script.onload = script.onreadystatechange = null;
						head.removeChild( script );
					}
				};
			}

			head.appendChild(script);

			// We handle everything using the script element injection
			return undefined;
		}

		var requestDone = false;

		// Create the request object
		var xhr = s.xhr();

		// Open the socket
		// Passing null username, generates a login popup on Opera (#2865)
		if( s.username )
			xhr.open(type, s.url, s.async, s.username, s.password);
		else
			xhr.open(type, s.url, s.async);

		// Need an extra try/catch for cross domain requests in Firefox 3
		try {
			// Set the correct header, if data is being sent
			if ( s.data )
				xhr.setRequestHeader("Content-Type", s.contentType);

			// Set the If-Modified-Since header, if ifModified mode.
			if ( s.ifModified )
				xhr.setRequestHeader("If-Modified-Since",
					jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );

			// Set header so the called script knows that it's an XMLHttpRequest
			xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");

			// Set the Accepts header for the server, depending on the dataType
			xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
				s.accepts[ s.dataType ] + ", */*" :
				s.accepts._default );
		} catch(e){}

		// Allow custom headers/mimetypes and early abort
		if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
			// Handle the global AJAX counter
			if ( s.global && ! --jQuery.active )
				jQuery.event.trigger( "ajaxStop" );
			// close opended socket
			xhr.abort();
			return false;
		}

		if ( s.global )
			jQuery.event.trigger("ajaxSend", [xhr, s]);

		// Wait for a response to come back
		var onreadystatechange = function(isTimeout){
			// The request was aborted, clear the interval and decrement jQuery.active
			if (xhr.readyState == 0) {
				if (ival) {
					// clear poll interval
					clearInterval(ival);
					ival = null;
					// Handle the global AJAX counter
					if ( s.global && ! --jQuery.active )
						jQuery.event.trigger( "ajaxStop" );
				}
			// The transfer is complete and the data is available, or the request timed out
			} else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
				requestDone = true;

				// clear poll interval
				if (ival) {
					clearInterval(ival);
					ival = null;
				}

				status = isTimeout == "timeout" ? "timeout" :
					!jQuery.httpSuccess( xhr ) ? "error" :
					s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
					"success";

				if ( status == "success" ) {
					// Watch for, and catch, XML document parse errors
					try {
						// process the data (runs the xml through httpData regardless of callback)
						data = jQuery.httpData( xhr, s.dataType, s );
					} catch(e) {
						status = "parsererror";
					}
				}

				// Make sure that the request was successful or notmodified
				if ( status == "success" ) {
					// Cache Last-Modified header, if ifModified mode.
					var modRes;
					try {
						modRes = xhr.getResponseHeader("Last-Modified");
					} catch(e) {} // swallow exception thrown by FF if header is not available

					if ( s.ifModified && modRes )
						jQuery.lastModified[s.url] = modRes;

					// JSONP handles its own success callback
					if ( !jsonp )
						success();
				} else
					jQuery.handleError(s, xhr, status);

				// Fire the complete handlers
				complete();

				if ( isTimeout )
					xhr.abort();

				// Stop memory leaks
				if ( s.async )
					xhr = null;
			}
		};

		if ( s.async ) {
			// don't attach the handler to the request, just poll it instead
			var ival = setInterval(onreadystatechange, 13);

			// Timeout checker
			if ( s.timeout > 0 )
				setTimeout(function(){
					// Check to see if the request is still happening
					if ( xhr && !requestDone )
						onreadystatechange( "timeout" );
				}, s.timeout);
		}

		// Send the data
		try {
			xhr.send(s.data);
		} catch(e) {
			jQuery.handleError(s, xhr, null, e);
		}

		// firefox 1.5 doesn't fire statechange for sync requests
		if ( !s.async )
			onreadystatechange();

		function success(){
			// If a local callback was specified, fire it and pass it the data
			if ( s.success )
				s.success( data, status );

			// Fire the global callback
			if ( s.global )
				jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
		}

		function complete(){
			// Process result
			if ( s.complete )
				s.complete(xhr, status);

			// The request was completed
			if ( s.global )
				jQuery.event.trigger( "ajaxComplete", [xhr, s] );

			// Handle the global AJAX counter
			if ( s.global && ! --jQuery.active )
				jQuery.event.trigger( "ajaxStop" );
		}

		// return XMLHttpRequest to allow aborting the request etc.
		return xhr;
	},

	handleError: function( s, xhr, status, e ) {
		// If a local callback was specified, fire it
		if ( s.error ) s.error( xhr, status, e );

		// Fire the global callback
		if ( s.global )
			jQuery.event.trigger( "ajaxError", [xhr, s, e] );
	},

	// Counter for holding the number of active queries
	active: 0,

	// Determines if an XMLHttpRequest was successful or not
	httpSuccess: function( xhr ) {
		try {
			// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
			return !xhr.status && location.protocol == "file:" ||
				( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
		} catch(e){}
		return false;
	},

	// Determines if an XMLHttpRequest returns NotModified
	httpNotModified: function( xhr, url ) {
		try {
			var xhrRes = xhr.getResponseHeader("Last-Modified");

			// Firefox always returns 200. check Last-Modified date
			return xhr.status == 304 || xhrRes == jQuery.lastModified[url];
		} catch(e){}
		return false;
	},

	httpData: function( xhr, type, s ) {
		var ct = xhr.getResponseHeader("content-type"),
			xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
			data = xml ? xhr.responseXML : xhr.responseText;

		if ( xml && data.documentElement.tagName == "parsererror" )
			throw "parsererror";
			
		// Allow a pre-filtering function to sanitize the response
		// s != null is checked to keep backwards compatibility
		if( s && s.dataFilter )
			data = s.dataFilter( data, type );

		// The filter can actually parse the response
		if( typeof data === "string" ){

			// If the type is "script", eval it in global context
			if ( type == "script" )
				jQuery.globalEval( data );

			// Get the JavaScript object, if JSON is used.
			if ( type == "json" )
				data = window["eval"]("(" + data + ")");
		}
		
		return data;
	},

	// Serialize an array of form elements or a set of
	// key/values into a query string
	param: function( a ) {
		var s = [ ];

		function add( key, value ){
			s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
		};

		// If an array was passed in, assume that it is an array
		// of form elements
		if ( jQuery.isArray(a) || a.jquery )
			// Serialize the form elements
			jQuery.each( a, function(){
				add( this.name, this.value );
			});

		// Otherwise, assume that it's an object of key/value pairs
		else
			// Serialize the key/values
			for ( var j in a )
				// If the value is an array then the key names need to be repeated
				if ( jQuery.isArray(a[j]) )
					jQuery.each( a[j], function(){
						add( j, this );
					});
				else
					add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );

		// Return the resulting serialization
		return s.join("&").replace(/%20/g, "+");
	}

});
var elemdisplay = {},
	timerId,
	fxAttrs = [
		// height animations
		[ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ],
		// width animations
		[ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
		// opacity animations
		[ "opacity" ]
	];

function genFx( type, num ){
	var obj = {};
	jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){
		obj[ this ] = type;
	});
	return obj;
}

jQuery.fn.extend({
	show: function(speed,callback){
		if ( speed ) {
			return this.animate( genFx("show", 3), speed, callback);
		} else {
			for ( var i = 0, l = this.length; i < l; i++ ){
				var old = jQuery.data(this[i], "olddisplay");
				
				this[i].style.display = old || "";
				
				if ( jQuery.css(this[i], "display") === "none" ) {
					var tagName = this[i].tagName, display;
					
					if ( elemdisplay[ tagName ] ) {
						display = elemdisplay[ tagName ];
					} else {
						var elem = jQuery("<" + tagName + " />").appendTo("body");
						
						display = elem.css("display");
						if ( display === "none" )
							display = "block";
						
						elem.remove();
						
						elemdisplay[ tagName ] = display;
					}
					
					jQuery.data(this[i], "olddisplay", display);
				}
			}

			// Set the display of the elements in a second loop
			// to avoid the constant reflow
			for ( var i = 0, l = this.length; i < l; i++ ){
				this[i].style.display = jQuery.data(this[i], "olddisplay") || "";
			}
			
			return this;
		}
	},

	hide: function(speed,callback){
		if ( speed ) {
			return this.animate( genFx("hide", 3), speed, callback);
		} else {
			for ( var i = 0, l = this.length; i < l; i++ ){
				var old = jQuery.data(this[i], "olddisplay");
				if ( !old && old !== "none" )
					jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
			}

			// Set the display of the elements in a second loop
			// to avoid the constant reflow
			for ( var i = 0, l = this.length; i < l; i++ ){
				this[i].style.display = "none";
			}

			return this;
		}
	},

	// Save the old toggle function
	_toggle: jQuery.fn.toggle,

	toggle: function( fn, fn2 ){
		var bool = typeof fn === "boolean";

		return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
			this._toggle.apply( this, arguments ) :
			fn == null || bool ?
				this.each(function(){
					var state = bool ? fn : jQuery(this).is(":hidden");
					jQuery(this)[ state ? "show" : "hide" ]();
				}) :
				this.animate(genFx("toggle", 3), fn, fn2);
	},

	fadeTo: function(speed,to,callback){
		return this.animate({opacity: to}, speed, callback);
	},

	animate: function( prop, speed, easing, callback ) {
		var optall = jQuery.speed(speed, easing, callback);

		return this[ optall.queue === false ? "each" : "queue" ](function(){
		
			var opt = jQuery.extend({}, optall), p,
				hidden = this.nodeType == 1 && jQuery(this).is(":hidden"),
				self = this;
	
			for ( p in prop ) {
				if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
					return opt.complete.call(this);

				if ( ( p == "height" || p == "width" ) && this.style ) {
					// Store display property
					opt.display = jQuery.css(this, "display");

					// Make sure that nothing sneaks out
					opt.overflow = this.style.overflow;
				}
			}

			if ( opt.overflow != null )
				this.style.overflow = "hidden";

			opt.curAnim = jQuery.extend({}, prop);

			jQuery.each( prop, function(name, val){
				var e = new jQuery.fx( self, opt, name );

				if ( /toggle|show|hide/.test(val) )
					e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
				else {
					var parts = val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),
						start = e.cur(true) || 0;

					if ( parts ) {
						var end = parseFloat(parts[2]),
							unit = parts[3] || "px";

						// We need to compute starting value
						if ( unit != "px" ) {
							self.style[ name ] = (end || 1) + unit;
							start = ((end || 1) / e.cur(true)) * start;
							self.style[ name ] = start + unit;
						}

						// If a +=/-= token was provided, we're doing a relative animation
						if ( parts[1] )
							end = ((parts[1] == "-=" ? -1 : 1) * end) + start;

						e.custom( start, end, unit );
					} else
						e.custom( start, val, "" );
				}
			});

			// For JS strict compliance
			return true;
		});
	},

	stop: function(clearQueue, gotoEnd){
		var timers = jQuery.timers;

		if (clearQueue)
			this.queue([]);

		this.each(function(){
			// go in reverse order so anything added to the queue during the loop is ignored
			for ( var i = timers.length - 1; i >= 0; i-- )
				if ( timers[i].elem == this ) {
					if (gotoEnd)
						// force the next step to be the last
						timers[i](true);
					timers.splice(i, 1);
				}
		});

		// start the next in the queue if the last step wasn't forced
		if (!gotoEnd)
			this.dequeue();

		return this;
	}

});

// Generate shortcuts for custom animations
jQuery.each({
	slideDown: genFx("show", 1),
	slideUp: genFx("hide", 1),
	slideToggle: genFx("toggle", 1),
	fadeIn: { opacity: "show" },
	fadeOut: { opacity: "hide" }
}, function( name, props ){
	jQuery.fn[ name ] = function( speed, callback ){
		return this.animate( props, speed, callback );
	};
});

jQuery.extend({

	speed: function(speed, easing, fn) {
		var opt = typeof speed === "object" ? speed : {
			complete: fn || !fn && easing ||
				jQuery.isFunction( speed ) && speed,
			duration: speed,
			easing: fn && easing || easing && !jQuery.isFunction(easing) && easing
		};

		opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
			jQuery.fx.speeds[opt.duration] || jQuery.fx.speeds._default;

		// Queueing
		opt.old = opt.complete;
		opt.complete = function(){
			if ( opt.queue !== false )
				jQuery(this).dequeue();
			if ( jQuery.isFunction( opt.old ) )
				opt.old.call( this );
		};

		return opt;
	},

	easing: {
		linear: function( p, n, firstNum, diff ) {
			return firstNum + diff * p;
		},
		swing: function( p, n, firstNum, diff ) {
			return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
		}
	},

	timers: [],

	fx: function( elem, options, prop ){
		this.options = options;
		this.elem = elem;
		this.prop = prop;

		if ( !options.orig )
			options.orig = {};
	}

});

jQuery.fx.prototype = {

	// Simple function for setting a style value
	update: function(){
		if ( this.options.step )
			this.options.step.call( this.elem, this.now, this );

		(jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );

		// Set display property to block for height/width animations
		if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style )
			this.elem.style.display = "block";
	},

	// Get the current size
	cur: function(force){
		if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) )
			return this.elem[ this.prop ];

		var r = parseFloat(jQuery.css(this.elem, this.prop, force));
		return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
	},

	// Start an animation from one number to another
	custom: function(from, to, unit){
		this.startTime = now();
		this.start = from;
		this.end = to;
		this.unit = unit || this.unit || "px";
		this.now = this.start;
		this.pos = this.state = 0;

		var self = this;
		function t(gotoEnd){
			return self.step(gotoEnd);
		}

		t.elem = this.elem;

		if ( t() && jQuery.timers.push(t) && !timerId ) {
			timerId = setInterval(function(){
				var timers = jQuery.timers;

				for ( var i = 0; i < timers.length; i++ )
					if ( !timers[i]() )
						timers.splice(i--, 1);

				if ( !timers.length ) {
					clearInterval( timerId );
					timerId = undefined;
				}
			}, 13);
		}
	},

	// Simple 'show' function
	show: function(){
		// Remember where we started, so that we can go back to it later
		this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
		this.options.show = true;

		// Begin the animation
		// Make sure that we start at a small width/height to avoid any
		// flash of content
		this.custom(this.prop == "width" || this.prop == "height" ? 1 : 0, this.cur());

		// Start by showing the element
		jQuery(this.elem).show();
	},

	// Simple 'hide' function
	hide: function(){
		// Remember where we started, so that we can go back to it later
		this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
		this.options.hide = true;

		// Begin the animation
		this.custom(this.cur(), 0);
	},

	// Each step of an animation
	step: function(gotoEnd){
		var t = now();

		if ( gotoEnd || t >= this.options.duration + this.startTime ) {
			this.now = this.end;
			this.pos = this.state = 1;
			this.update();

			this.options.curAnim[ this.prop ] = true;

			var done = true;
			for ( var i in this.options.curAnim )
				if ( this.options.curAnim[i] !== true )
					done = false;

			if ( done ) {
				if ( this.options.display != null ) {
					// Reset the overflow
					this.elem.style.overflow = this.options.overflow;

					// Reset the display
					this.elem.style.display = this.options.display;
					if ( jQuery.css(this.elem, "display") == "none" )
						this.elem.style.display = "block";
				}

				// Hide the element if the "hide" operation was done
				if ( this.options.hide )
					jQuery(this.elem).hide();

				// Reset the properties, if the item has been hidden or shown
				if ( this.options.hide || this.options.show )
					for ( var p in this.options.curAnim )
						jQuery.attr(this.elem.style, p, this.options.orig[p]);
					
				// Execute the complete function
				this.options.complete.call( this.elem );
			}

			return false;
		} else {
			var n = t - this.startTime;
			this.state = n / this.options.duration;

			// Perform the easing function, defaults to swing
			this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
			this.now = this.start + ((this.end - this.start) * this.pos);

			// Perform the next step of the animation
			this.update();
		}

		return true;
	}

};

jQuery.extend( jQuery.fx, {
	speeds:{
		slow: 600,
 		fast: 200,
 		// Default speed
 		_default: 400
	},
	step: {

		opacity: function(fx){
			jQuery.attr(fx.elem.style, "opacity", fx.now);
		},

		_default: function(fx){
			if ( fx.elem.style && fx.elem.style[ fx.prop ] != null )
				fx.elem.style[ fx.prop ] = fx.now + fx.unit;
			else
				fx.elem[ fx.prop ] = fx.now;
		}
	}
});
if ( document.documentElement["getBoundingClientRect"] )
	jQuery.fn.offset = function() {
		if ( !this[0] ) return { top: 0, left: 0 };
		if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
		var box  = this[0].getBoundingClientRect(), doc = this[0].ownerDocument, body = doc.body, docElem = doc.documentElement,
			clientTop = docElem.clientTop || body.clientTop || 0, clientLeft = docElem.clientLeft || body.clientLeft || 0,
			top  = box.top  + (self.pageYOffset || jQuery.boxModel && docElem.scrollTop  || body.scrollTop ) - clientTop,
			left = box.left + (self.pageXOffset || jQuery.boxModel && docElem.scrollLeft || body.scrollLeft) - clientLeft;
		return { top: top, left: left };
	};
else 
	jQuery.fn.offset = function() {
		if ( !this[0] ) return { top: 0, left: 0 };
		if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
		jQuery.offset.initialized || jQuery.offset.initialize();

		var elem = this[0], offsetParent = elem.offsetParent, prevOffsetParent = elem,
			doc = elem.ownerDocument, computedStyle, docElem = doc.documentElement,
			body = doc.body, defaultView = doc.defaultView,
			prevComputedStyle = defaultView.getComputedStyle(elem, null),
			top = elem.offsetTop, left = elem.offsetLeft;

		while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {
			computedStyle = defaultView.getComputedStyle(elem, null);
			top -= elem.scrollTop, left -= elem.scrollLeft;
			if ( elem === offsetParent ) {
				top += elem.offsetTop, left += elem.offsetLeft;
				if ( jQuery.offset.doesNotAddBorder && !(jQuery.offset.doesAddBorderForTableAndCells && /^t(able|d|h)$/i.test(elem.tagName)) )
					top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
					left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
				prevOffsetParent = offsetParent, offsetParent = elem.offsetParent;
			}
			if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )
				top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
				left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
			prevComputedStyle = computedStyle;
		}

		if ( prevComputedStyle.position === "relative" || prevComputedStyle.position === "static" )
			top  += body.offsetTop,
			left += body.offsetLeft;

		if ( prevComputedStyle.position === "fixed" )
			top  += Math.max(docElem.scrollTop, body.scrollTop),
			left += Math.max(docElem.scrollLeft, body.scrollLeft);

		return { top: top, left: left };
	};

jQuery.offset = {
	initialize: function() {
		if ( this.initialized ) return;
		var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
			html = '<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';

		rules = { position: 'absolute', top: 0, left: 0, margin: 0, border: 0, width: '1px', height: '1px', visibility: 'hidden' };
		for ( prop in rules ) container.style[prop] = rules[prop];

		container.innerHTML = html;
		body.insertBefore(container, body.firstChild);
		innerDiv = container.firstChild, checkDiv = innerDiv.firstChild, td = innerDiv.nextSibling.firstChild.firstChild;

		this.doesNotAddBorder = (checkDiv.offsetTop !== 5);
		this.doesAddBorderForTableAndCells = (td.offsetTop === 5);

		innerDiv.style.overflow = 'hidden', innerDiv.style.position = 'relative';
		this.subtractsBorderForOverflowNotVisible = (checkDiv.offsetTop === -5);

		body.style.marginTop = '1px';
		this.doesNotIncludeMarginInBodyOffset = (body.offsetTop === 0);
		body.style.marginTop = bodyMarginTop;

		body.removeChild(container);
		this.initialized = true;
	},

	bodyOffset: function(body) {
		jQuery.offset.initialized || jQuery.offset.initialize();
		var top = body.offsetTop, left = body.offsetLeft;
		if ( jQuery.offset.doesNotIncludeMarginInBodyOffset )
			top  += parseInt( jQuery.curCSS(body, 'marginTop',  true), 10 ) || 0,
			left += parseInt( jQuery.curCSS(body, 'marginLeft', true), 10 ) || 0;
		return { top: top, left: left };
	}
};


jQuery.fn.extend({
	position: function() {
		var left = 0, top = 0, results;

		if ( this[0] ) {
			// Get *real* offsetParent
			var offsetParent = this.offsetParent(),

			// Get correct offsets
			offset       = this.offset(),
			parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0 } : offsetParent.offset();

			// Subtract element margins
			// note: when an element has margin: auto the offsetLeft and marginLeft 
			// are the same in Safari causing offset.left to incorrectly be 0
			offset.top  -= num( this, 'marginTop'  );
			offset.left -= num( this, 'marginLeft' );

			// Add offsetParent borders
			parentOffset.top  += num( offsetParent, 'borderTopWidth'  );
			parentOffset.left += num( offsetParent, 'borderLeftWidth' );

			// Subtract the two offsets
			results = {
				top:  offset.top  - parentOffset.top,
				left: offset.left - parentOffset.left
			};
		}

		return results;
	},

	offsetParent: function() {
		var offsetParent = this[0].offsetParent || document.body;
		while ( offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static') )
			offsetParent = offsetParent.offsetParent;
		return jQuery(offsetParent);
	}
});


// Create scrollLeft and scrollTop methods
jQuery.each( ['Left', 'Top'], function(i, name) {
	var method = 'scroll' + name;
	
	jQuery.fn[ method ] = function(val) {
		if (!this[0]) return null;

		return val !== undefined ?

			// Set the scroll offset
			this.each(function() {
				this == window || this == document ?
					window.scrollTo(
						!i ? val : jQuery(window).scrollLeft(),
						 i ? val : jQuery(window).scrollTop()
					) :
					this[ method ] = val;
			}) :

			// Return the scroll offset
			this[0] == window || this[0] == document ?
				self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
					jQuery.boxModel && document.documentElement[ method ] ||
					document.body[ method ] :
				this[0][ method ];
	};
});
// Create innerHeight, innerWidth, outerHeight and outerWidth methods
jQuery.each([ "Height", "Width" ], function(i, name){

	var tl = i ? "Left"  : "Top",  // top or left
		br = i ? "Right" : "Bottom", // bottom or right
		lower = name.toLowerCase();

	// innerHeight and innerWidth
	jQuery.fn["inner" + name] = function(){
		return this[0] ?
			jQuery.css( this[0], lower, false, "padding" ) :
			null;
	};

	// outerHeight and outerWidth
	jQuery.fn["outer" + name] = function(margin) {
		return this[0] ?
			jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
			null;
	};
	
	var type = name.toLowerCase();

	jQuery.fn[ type ] = function( size ) {
		// Get window width or height
		return this[0] == window ?
			// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
			document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
			document.body[ "client" + name ] :

			// Get document width or height
			this[0] == document ?
				// Either scroll[Width/Height] or offset[Width/Height], whichever is greater
				Math.max(
					document.documentElement["client" + name],
					document.body["scroll" + name], document.documentElement["scroll" + name],
					document.body["offset" + name], document.documentElement["offset" + name]
				) :

				// Get or set width or height on the element
				size === undefined ?
					// Get width or height on the element
					(this.length ? jQuery.css( this[0], type ) : null) :

					// Set the width or height on the element (default to pixels if value is unitless)
					this.css( type, typeof size === "string" ? size : size + "px" );
	};

});
})();
;// $Id: drupal.js,v 1.41.2.3 2008/06/25 09:06:57 goba Exp $

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper to address the mod_rewrite url encoding bug
 * (equivalent of drupal_urlencode() in PHP).
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;// $Id: thickbox.js,v 1.8.2.19 2010/03/09 07:10:48 frjo Exp $

/*
 * Thickbox 3.1 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/


// Initialize Thickbox.
Drupal.behaviors.initThickbox = function (context) {
  $('a,area,input', context).filter('.thickbox:not(.initThickbox-processed)').addClass('initThickbox-processed').click(function() {
    var t = this.title || this.name || null;
    var a = this.href || this.alt;
    var g = this.rel || false;
    tb_show(t,a,g);
    this.blur();
    return false;
  });
};

function tb_show(caption, url, imageGroup) { //function called when the user clicks on a thickbox link

  var settings = Drupal.settings.thickbox;
  tb_setBrowserExtra();

  try {
    if (typeof document.body.style.maxHeight === 'undefined') { //if IE 6
      $('body','html').css({height: '100%', width: '100%'});
      $('html').css('overflow','hidden');
      if (document.getElementById('TB_HideSelect') === null) { //iframe to hide select elements in ie6
        $('body').append('<iframe id="TB_HideSelect"></iframe><div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }
    else { //all others
      if (document.getElementById('TB_overlay') === null) {
        $('body').append('<div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }

    if ($.browserextra.macfirefox) {
      $('#TB_overlay').addClass('TB_overlayMacFFBGHack'); //use png overlay so hide flash
    }
    else {
      $('#TB_overlay').addClass('TB_overlayBG'); //use background and opacity
    }

    if (caption === null) {
      caption = '';
    }
    $('body').append('<div id="TB_load"></div>'); //add loader to the page
    $('#TB_load').show(); //show loader

    var baseURL;
    if (url.indexOf('?')!==-1) { //ff there is a query string involved
      baseURL = url.substr(0, url.indexOf('?'));
    }
    else {
      baseURL = url;
    }

    var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
    var urlType = baseURL.toLowerCase().match(urlString);

    if (urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp') { //code to show images
      TB_PrevCaption = '';
      TB_PrevURL = '';
      TB_PrevHTML = '';
      TB_NextCaption = '';
      TB_NextURL = '';
      TB_NextHTML = '';
      TB_imageCount = '';
      TB_FoundURL = false;
      if (imageGroup) {
        TB_TempArray = $('a[rel=' + imageGroup + ']').get();
        for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === '')); TB_Counter++) {
          var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
          if (!(TB_TempArray[TB_Counter].href == url)) {
            if (TB_FoundURL) {
              TB_NextCaption = TB_TempArray[TB_Counter].title;
              TB_NextURL = TB_TempArray[TB_Counter].href;
              TB_NextHTML = '<span id="TB_next">&nbsp;&nbsp;<a href="#">' + settings.next + '</a></span>';
            }
            else {
              TB_PrevCaption = TB_TempArray[TB_Counter].title;
              TB_PrevURL = TB_TempArray[TB_Counter].href;
              TB_PrevHTML = '<span id="TB_prev">&nbsp;&nbsp;<a href="#">' + settings.prev + '</a></span>';
            }
          }
          else {
            TB_FoundURL = true;
            if (TB_TempArray.length > 1) { // Don't show "Image 1 of 1".
              TB_imageCount = settings.image_count.replace(/\!current/, (TB_Counter + 1)).replace(/\!total/, TB_TempArray.length);
            }
          }
        }
      }

      // Modified to preload previous and next image.
      imgPreloader = new Image();
      prevImg = new Image();
      nextImg = new Image();
      imgPreloader.onload = function() {
        imgPreloader.onload = null;

        var TB_Links = $('a[class*="thickbox"]');
        var i = -1;
        TB_Links.each(function(n) { if (this.href == imgPreloader.src) { i = n; } });
        if (i != -1) {
          if (i > 0) { prevImg.src = TB_Links[i - 1].href; }
          if (i + 1 < TB_Links.length) { nextImg.src = TB_Links[i + 1].href; }
        }

        // Resizing large images - orginal by Christian Montoya edited by me.
        var pagesize = tb_getPageSize();
        var x = pagesize[0] - 100;
        var y = pagesize[1] - 100;
        var imageWidth = imgPreloader.width;
        var imageHeight = imgPreloader.height;
        if (imageWidth > x) {
          imageHeight = imageHeight * (x / imageWidth);
          imageWidth = x;
          if (imageHeight > y) {
            imageWidth = imageWidth * (y / imageHeight);
            imageHeight = y;
          }
        }
        else if (imageHeight > y) {
          imageWidth = imageWidth * (y / imageHeight);
          imageHeight = y;
          if (imageWidth > x) {
            imageHeight = imageHeight * (x / imageWidth);
            imageWidth = x;
          }
        }
        // End Resizing

        TB_WIDTH = imageWidth < 320 ? 350 : imageWidth + 30;
        TB_HEIGHT = imageHeight + 60;
        $('#TB_window').append('<a href="" id="TB_ImageOff" title="' + settings.next_close + '"><img id="TB_Image" src="' + url + '" width="' + imageWidth + '" height="' + imageHeight + '" alt="' + caption + '" /></a><div id="TB_caption">' + caption + '<div id="TB_secondLine">' + TB_imageCount + TB_PrevHTML + TB_NextHTML + '</div></div><div id="TB_closeWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div>');
        $('#TB_closeWindowButton').click(tb_remove);

        if (!(TB_PrevHTML === '')) {
          function goPrev() {
            if ($(document).unbind('click',goPrev)) {$(document).unbind('click',goPrev);}
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
            return false;
          }
          $('#TB_prev').click(goPrev);
        }

        if (!(TB_NextHTML === '')) {
          function goNext() {
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_NextCaption, TB_NextURL, imageGroup);
            return false;
          }
          $('#TB_next').click(goNext);
          $('#TB_ImageOff').click(goNext);
        }
        else {
          $('#TB_ImageOff').click(tb_remove);
        }

        document.onkeydown = function(e) {
          if (e == null) { // ie
            keycode = event.keyCode;
            escapeKey = 27;
          }
          else if ($.browser.safari || $.browser.opera) { // safari or opera
            keycode = e.which;
            escapeKey = 27;
          }
          else { // mozilla
            keycode = e.keyCode;
            escapeKey = e.DOM_VK_ESCAPE;
          }
          key = String.fromCharCode(keycode).toLowerCase();
          if (key == 'x' || key == 'c' || keycode == escapeKey) { // close
            tb_remove();
          }
          else if (key == 'n' || keycode == 39) { // display previous image
            if (!(TB_NextHTML == '')) {
              document.onkeydown = '';
              goNext();
            }
          }
          else if (key == 'p' || keycode == 37) { // display next image
            if (!(TB_PrevHTML == '')) {
              document.onkeydown = '';
              goPrev();
            }
          }
        };

        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400); //for safari using css instead of show
      };

      imgPreloader.src = url;
    }
    else { //code to show html

      var queryString = url.replace(/^[^\?]+\??/,'');
      var params = tb_parseQuery( queryString );

      TB_WIDTH = (params['width']*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
      TB_HEIGHT = (params['height']*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
      ajaxContentW = TB_WIDTH - 30;
      ajaxContentH = TB_HEIGHT - 45;

      if (url.indexOf('TB_iframe') != -1) { // either iframe or ajax window
        urlNoQuery = url.split('TB_');
        $('#TB_iframeContent').remove();
        if (params['modal'] != 'true') { //iframe no modal
          $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
        else { //iframe modal
          $('#TB_overlay').unbind();
          $('#TB_window').append('<iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
      }
      else { // not an iframe, ajax
        if ($('#TB_window').css('display') != 'block') {
          if (params['modal'] != 'true') { //ajax no modal
            $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><div id="TB_ajaxContent" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px"></div>');
            window.setTimeout("tb_focusFirstFormElement()", 1000);
          }
          else { //ajax modal
            $('#TB_overlay').unbind();
            $('#TB_window').append('<div id="TB_ajaxContent" class="TB_modal" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px;"></div>');
          }
        }
        else { //this means the window is already up, we are just loading new content via ajax
          $('#TB_ajaxContent')[0].style.width = ajaxContentW + 'px';
          $('#TB_ajaxContent')[0].style.height = ajaxContentH + 'px';
          $('#TB_ajaxContent')[0].scrollTop = 0;
          $('#TB_ajaxWindowTitle').html(caption);
        }
      }

      $('#TB_closeWindowButton').click(tb_remove);

      if (url.indexOf('TB_inline') != -1) {
        $('#TB_ajaxContent').append($('#' + params['inlineId']).children());
        $('#TB_window').unload(function () {
          $('#' + params['inlineId']).append($('#TB_ajaxContent').children()); // move elements back when you're finished
        });
        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
      }
      else if (url.indexOf('TB_iframe') != -1) {
        tb_position();
        if ($.browser.safari || $.browserextra.iphone) { //safari needs help because it will not fire iframe onload
          $('#TB_load').remove();
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        }
      }
      else {
        $('#TB_ajaxContent').load(url += '&random=' + (new Date().getTime()),function() { //to do a post change this load method
          tb_position();
          $('#TB_load').remove();
          Drupal.attachBehaviors('#TB_ajaxContent');
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        });
      }
    }

    if (!params['modal']) {
      document.onkeyup = function(e) {
        if (e == null) { // ie
          keycode = event.keyCode;
          escapeKey = 27;
        }
        else if ($.browser.safari || $.browser.opera) { // safari or opera
          keycode = e.which;
          escapeKey = 27;
        }
        else { // mozilla
          keycode = e.keyCode;
          escapeKey = e.DOM_VK_ESCAPE;
        }
        key = String.fromCharCode(keycode).toLowerCase();
        if (keycode == escapeKey) { // close
          tb_remove();
        }
      };
    }

  }
  catch(e) {
    //nothing here
  }
}

//helper functions below
function tb_showIframe() {
  $('#TB_load').remove();
  $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
}

function tb_remove() {
  $('#TB_imageOff').unbind('click');
  $('#TB_overlay').unbind('click');
  $('#TB_closeWindowButton').unbind('click');
  $('#TB_window').fadeOut(400,function() {$('#TB_window,#TB_overlay,#TB_HideSelect').trigger('unload').unbind().remove();});
  $('#TB_load').remove();
  if (typeof document.body.style.maxHeight == 'undefined') { //if IE 6
    $('body','html').css({height: 'auto', width: 'auto'});
    $('html').css('overflow','');
  }
  document.onkeydown = '';
  document.onkeyup = '';
  return false;
}

function tb_position() {
  $('#TB_window').css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
  if (!($.browserextra.msie6)) { // take away IE6
    $('#TB_window').css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
  }
}

function tb_parseQuery( query ) {
  var Params = {};
  if ( ! query ) {return Params;}// return empty object
  var Pairs = query.split(/[;&]/);
  for ( var i = 0; i < Pairs.length; i++ ) {
    var KeyVal = Pairs[i].split('=');
    if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
    var key = unescape( KeyVal[0] );
    var val = unescape( KeyVal[1] );
    val = val.replace(/\+/g, ' ');
    Params[key] = val;
  }
  return Params;
}

function tb_getPageSize() {
  var de = document.documentElement;
  var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
  arrayPageSize = [w,h];
  return arrayPageSize;
}

function tb_setBrowserExtra() {
  // Return if already set.
  if ($.browserextra) {
    return;
  }

  // Add iPhone, IE 6 and Mac Firefox browser detection.
  // msie6 fixes the fact that IE 7 now reports itself as MSIE 6.0 compatible
  var userAgent = navigator.userAgent.toLowerCase();
  $.browserextra = {
    iphone: /iphone/.test( userAgent ),
    msie6: /msie/.test( userAgent ) && !/opera/.test( userAgent ) && /msie 6\.0/.test( userAgent ) && !/msie 7\.0/.test( userAgent ) && !/msie 8\.0/.test( userAgent ),
    macfirefox: /mac/.test( userAgent ) && /firefox/.test( userAgent )
  };
}

function tb_focusFirstFormElement() {
  $('#TB_window form input[type=text]:first').focus();
}
;jQuery(document).ready(function(){
	if (jQuery("#block-locale-0 li.last a").hasClass("active")) {
			jQuery("#block-locale-0 ul li.en a").css({'border-bottom' : 'none'});
		}
	if (jQuery("#block-locale-0 li.first a").hasClass("active")) {
		jQuery("#block-locale-0 ul li.en a").css({'border-top' : 'none'});
	}
});;//SLIDE HEADER
function slideSwitch() {
	
	//Slide des DIV
	var $active_div = $('.view-slide-header .views-row.active');
	
	if ($('.view-slide-header .views-row').length != 1) {
		var $next_div = $active_div.next('.view-slide-header .views-row').length ? $active_div.next('.view-slide-header .views-row') : $('.view-slide-header .views-row:first');
	
		$active_div.addClass('last-active');
		
		$next_div.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 2000, function (){
				$active_div.removeClass('active last-active');	
			});	
	}		
			
}

$(document).ready(function(){

	//Definition d'une class active pour la premiere image du diaporama
	$('.view-slide-header .views-row:first').addClass('active');
	
	//Appel de la fonction slideSwitch() a intervalles regulieres de 5s
	setInterval("slideSwitch()", 5000);
	
});
;/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1991, 1999, 2000 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Lithos is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * LithosPro-Regular
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":126,"face":{"font-family":"Lithos","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"4 2 5 5 3 14 2 2 10 4","ascent":"262","descent":"-98","x-height":"5","bbox":"-62 -331 483 91","underline-thickness":"18","underline-position":"-18","stemh":"22","stemv":"31","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":108},"!":{"d":"31,0r0,-35r36,0r0,35r-36,0xm60,-81r-20,3v-1,-51,0,-137,-2,-176r39,2v-4,30,-14,122,-17,171","w":108},"\"":{"d":"66,-258r30,0r-7,72r-16,0xm14,-258r30,0r-7,72r-16,0","w":109,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\u03ce":-6,"\ue016":-6,"\u03c9":8,"\ue015":8,"\u03c4":-15,"\ue022":-15,"\u03cd":-6,"\ue028":-6,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\ue007":8,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u038f":-8,"\u2126":8,"\u03a9":8,"\u03cc":-6,"\ue018":-6,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"\u03a4":-15,"\u038e":-8,"\u03a5":-10,"\u03ab":-10,"\ue013":17,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u03bc":17,"\u039c":18,"\u0388":-8,"\u0389":-8,"\u038a":-8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"\u038c":-8}},"#":{"d":"170,-143r-33,0r-7,50r31,0r0,24r-35,0r-9,69r-23,0r9,-69r-36,0r-10,69r-23,0r9,-69r-30,0r0,-24r34,0r6,-50r-31,0r0,-23r35,0r9,-68r23,0r-9,68r37,0r9,-68r23,0r-9,68r30,0r0,23xm113,-143r-36,0r-7,50r37,0","w":182},"$":{"d":"153,-83v0,-37,-87,-52,-87,-93v0,-26,27,-45,44,-55r-1,-52r26,0r-1,41v6,-3,31,-10,37,-10r4,28v-28,0,-74,19,-74,42v-2,38,87,43,87,91v0,30,-36,57,-54,65r1,57r-26,0r1,-48v-9,3,-29,8,-35,9r-5,-28v51,-4,83,-29,83,-47","w":254},"%":{"d":"83,-116v-46,0,-69,-30,-69,-65v0,-31,26,-71,75,-71v40,0,67,23,67,68v0,23,-19,68,-73,68xm84,-136v24,0,45,-18,45,-48v0,-33,-20,-48,-42,-48v-61,2,-60,95,-3,96xm252,0v-46,0,-68,-31,-68,-66v0,-31,25,-70,74,-70v40,0,67,22,67,67v0,23,-19,69,-73,69xm253,-19v24,0,45,-17,45,-47v0,-33,-20,-49,-42,-49v-60,2,-59,95,-3,96xm82,-8r156,-252r23,13v-34,49,-117,185,-157,255","w":339},"&":{"d":"39,-58v0,51,83,43,109,8v-30,-23,-62,-50,-76,-64v-18,14,-33,33,-33,56xm229,-24r-19,24v-10,-8,-26,-19,-43,-33v-35,48,-161,59,-161,-20v0,-34,31,-63,49,-78v-57,-54,9,-113,76,-127r8,27v-22,4,-73,21,-73,51v11,46,62,73,103,109v15,-19,24,-33,30,-41r23,17v-9,12,-20,26,-34,40","w":221},"\u2019":{"d":"4,-189r20,-69r29,13r-35,62","w":57,"k":{"\u03ac":13,"\ue001":13,"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\u03ce":-6,"\ue016":-6,"\u03c9":8,"\ue015":8,"\u2019":11,"\u201d":11,"\u03c4":-26,"\ue022":-26,"\u03cd":-6,"\ue028":-6,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\ue007":8,"\u0386":14,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u038f":-8,"\u2126":8,"\u03a9":8,"\u03cc":-6,"\ue018":-6,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"\u03a4":-29,"\u038e":-8,"\u03a5":-10,"\u03ab":-10,"t":-23,"\u0165":-23,"\u0163":-23,"\u021b":-23,"v":-20,"w":-20,"\uf776":-20,"\uf777":-20,"T":-25,"\u0164":-25,"\u0162":-25,"\u021a":-25,"V":-22,"W":-22,"\ue013":17,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u03bc":17,"\u039c":18,"\u0388":-8,"\u0389":-8,"\u038a":-8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"m":17,"\uf76d":17,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"M":18,"\u038c":-8,"\u0398":8,"\u039f":8,"s":13,"\u0161":13,"\u015b":13,"\u015f":13,"\u0219":13,"\uf773":13,"\uf6fd":13,"S":14,"\u0160":14,"\u015a":14,"\u015e":14,"\u0218":14}},"(":{"d":"89,-279r18,21v-18,9,-64,56,-64,136v0,66,39,115,64,128r-18,23v-27,-18,-75,-71,-75,-148v0,-84,48,-141,75,-160","w":108,"k":{"\u03ce":-6,"\ue016":-6,"\u03c9":-10,"\ue015":-10,"\u03c4":-3,"\ue022":-3,"\u03cd":-6,"\ue028":-6,"\u038f":-8,"\u2126":-10,"\u03a9":-10,"\u03cc":-6,"\ue018":-6,"\u03a4":-4,"\u038e":-8,"t":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"\uf774":-3,"T":-4,"\u0164":-4,"\u0162":-4,"\u021a":-4,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u0388":-8,"\u0389":-8,"\u038a":-8,"\u038c":-8}},")":{"d":"19,29r-18,-22v18,-9,64,-55,64,-135v0,-66,-39,-115,-64,-128r18,-23v27,18,75,70,75,147v0,84,-48,142,-75,161","w":108},"*":{"d":"113,-219r1,22v-5,0,-35,-3,-36,-2v1,2,20,27,23,31r-22,11v-2,-8,-14,-47,-15,-50v10,-2,40,-10,49,-12xm25,-245r20,-15v3,6,17,35,18,36v1,-2,12,-29,15,-36r21,14v-4,5,-34,35,-36,38v-7,-8,-33,-33,-38,-37xm46,-157r-21,-10v4,-5,21,-30,22,-32v-2,0,-30,2,-35,3r1,-24v6,2,45,12,48,13v-3,9,-13,41,-15,50"},"+":{"d":"95,-192r25,0r0,84r80,0r0,24r-80,0r0,84r-25,0r0,-84r-81,0r0,-24r81,0r0,-84","w":214},",":{"d":"19,36r24,-81r35,15r-44,73","w":97},"-":{"d":"10,-110r-1,-27v18,0,101,1,107,1r1,23v-6,-1,-93,2,-107,3","k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},".":{"d":"28,0r0,-40r41,0r0,40r-41,0","w":97},"\/":{"d":"-28,-8r153,-243r24,14v-33,45,-115,177,-154,244","w":122},"0":{"d":"123,-6v-54,0,-110,-40,-110,-120v0,-73,56,-120,117,-120v64,0,112,47,112,117v0,63,-47,123,-119,123xm128,-34v36,0,82,-31,82,-96v0,-47,-36,-88,-83,-88v-47,0,-82,39,-82,94v0,42,28,90,83,90","w":254},"1":{"d":"153,0r-34,0r2,-197v-10,12,-39,39,-49,50r-16,-19v8,-6,87,-82,99,-93","w":254},"2":{"d":"202,-28r0,31v-14,-2,-128,-4,-176,-3r-1,-4v48,-33,128,-92,128,-150v0,-50,-58,-73,-100,-75r6,-29v82,10,129,53,129,101v0,58,-62,105,-94,131v30,6,74,-3,108,-2","w":254},"3":{"d":"68,-232r4,-28v42,2,109,25,109,68v1,27,-29,49,-45,59v28,7,53,23,53,52v0,49,-70,88,-136,90r-2,-29v41,3,101,-17,101,-59v0,-32,-49,-45,-76,-46r0,-10v29,-3,71,-23,71,-51v0,-30,-42,-46,-79,-46","w":254},"4":{"d":"180,-263r0,179r39,-1r-3,27r-37,-1r1,59r-32,0r2,-59r-128,0r-1,-3r156,-201r3,0xm150,-84r0,-107v-12,18,-67,89,-80,107r80,0","w":254},"5":{"d":"97,-225r-7,39v182,30,73,174,-30,194r-8,-28v39,-7,101,-37,101,-84v0,-31,-36,-52,-93,-57r15,-90v11,0,97,-4,116,-5r-1,32","w":254},"6":{"d":"121,6v-46,0,-74,-34,-73,-84v0,-71,57,-148,106,-183r19,24v-18,11,-54,42,-72,79v60,-2,106,31,106,76v0,52,-44,88,-86,88xm90,-133v-19,34,-12,112,33,112v30,0,50,-25,50,-54v0,-40,-41,-61,-83,-58","w":254},"7":{"d":"46,-225r-2,-30v27,2,134,1,166,4v-6,9,-93,237,-101,257r-31,-16v8,-11,88,-205,92,-214","w":254},"8":{"d":"127,-234v-63,0,-57,91,-1,92v26,0,46,-18,46,-47v0,-30,-21,-45,-45,-45xm131,-258v79,0,102,94,33,125v69,30,58,136,-39,139v-95,2,-99,-104,-37,-136v-66,-30,-45,-128,43,-128xm126,-18v28,0,48,-19,48,-48v0,-32,-21,-52,-48,-52v-60,0,-62,101,0,100","w":254},"9":{"d":"102,9r-18,-24v18,-11,51,-42,70,-82v-61,3,-106,-29,-106,-74v0,-48,41,-87,84,-87v46,0,75,35,75,82v0,76,-56,150,-105,185xm165,-121v15,-35,10,-111,-35,-111v-28,0,-49,26,-49,54v0,42,41,61,84,57","w":254},":":{"d":"29,-14r0,-39r39,0r0,39r-39,0xm29,-140r0,-38r39,0r0,38r-39,0","w":97,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u038f":-5,"\u03cc":-5,"\ue018":-5,"\u038e":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},";":{"d":"20,22r17,-78r33,15r-37,68xm29,-140r0,-38r39,0r0,38r-39,0","w":97,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u038f":-5,"\u03cc":-5,"\ue018":-5,"\u038e":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},"<":{"d":"23,-85r0,-22r169,-85r0,28r-139,69r139,68r0,27","w":214},"=":{"d":"200,-121r-186,0r0,-23r186,0r0,23xm200,-49r-186,0r0,-24r186,0r0,24","w":214},">":{"d":"192,-107r0,23r-169,84r0,-27r140,-69r-140,-68r0,-28","w":214},"?":{"d":"12,-231r8,-28v58,11,116,40,116,82v0,53,-61,84,-87,96r-11,-23v23,-8,63,-31,63,-66v0,-41,-50,-57,-89,-61xm39,0r0,-35r36,0r0,35r-36,0","w":154},"@":{"d":"122,-115r42,-1v-3,-5,-20,-37,-21,-40v-3,4,-18,36,-21,41xm219,-56v-25,1,-38,-25,-47,-42r-58,2v-3,5,-13,29,-16,34r-22,-12v10,-17,60,-110,65,-117r5,0v14,24,46,82,55,97v6,11,12,17,20,17v14,0,19,-17,19,-44v0,-55,-42,-100,-95,-100v-59,0,-99,50,-99,109v0,83,93,125,157,81r10,20v-82,45,-193,-3,-193,-100v0,-71,55,-129,126,-129v69,0,119,50,119,117v1,35,-16,66,-46,67","w":284},"A":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"B":{"d":"52,2r2,-175v0,-11,-1,-71,-2,-79v19,0,36,1,50,2v73,7,83,35,83,55v0,14,-8,38,-46,56v25,4,57,25,57,57v1,44,-57,85,-144,84xm85,-121r0,97v39,-4,75,-22,75,-56v0,-25,-30,-43,-75,-41xm85,-229r0,88v40,-1,66,-26,66,-50v0,-32,-41,-37,-66,-38","w":230,"k":{"v":6,"w":6,"y":10,"\u00fd":10,"\u00ff":10,"\ue03b":10,"\ue03c":10,"\ue03d":10,"V":5,"W":5,"Y":9,"\u00dd":9,"\u0178":9,"\ue02a":9,"\ue02d":9,"\ue02b":9,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"b":6,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"\u0141":5,"\u00de":5,"\u00c9":5,"\u00ca":5,"\u00cb":5,"\u00c8":5,"\u00cd":5,"\u00ce":5,"\u00cf":5,"\u00cc":5,"\u00d1":5,"\u010e":5,"\u011a":5,"\u0116":5,"\u0112":5,"\u0118":5,"\u012a":5,"\u012e":5,"\u0136":5,"\u0139":5,"\u013d":5,"\u013b":5,"\u0143":5,"\u0147":5,"\u0145":5,"\u0154":5,"\u0158":5,"\u0156":5,"\u0130":5}},"C":{"d":"220,-27r4,29v-11,2,-27,4,-49,4v-123,0,-153,-74,-153,-107v0,-59,54,-134,181,-157r5,30v-82,9,-150,59,-150,121v0,44,35,85,121,85v14,0,29,-2,41,-5","w":237,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"Y":2,"\u00dd":2,"\u0178":2,"\ue02a":2,"\ue02d":2,"\ue02b":2,"c":8,"g":8,"o":8,"q":8,"\u00f8":8,"\u0153":8,"\u00e7":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"\u0107":8,"\u010d":8,"\u011f":8,"\u0123":8,"\u0151":8,"\u014d":8,"C":7,"G":7,"O":7,"Q":7,"\u00d8":7,"\u0152":7,"\u00c7":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"\u0106":7,"\u010c":7,"\u011e":7,"\u0122":7,"\u0150":7,"\u014c":7}},"D":{"d":"52,2r2,-160v0,-8,-1,-84,-2,-94v21,0,61,0,92,4v117,15,132,67,132,92v0,112,-142,158,-224,158xm86,-225r0,195v98,-9,154,-67,154,-117v0,-55,-61,-79,-154,-78","w":297,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"E":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1","w":206},"F":{"d":"87,0r-36,0v5,-85,3,-166,2,-252v9,0,99,-4,113,-5r2,27r-82,2r0,92v6,0,58,-2,75,-3r1,27r-76,-1","w":192,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,",":9,".":9}},"G":{"d":"234,-110r1,104v-16,6,-49,12,-79,12v-82,0,-134,-46,-134,-105v0,-41,42,-123,178,-160r7,31v-82,16,-150,72,-150,129v0,48,75,96,145,74r-1,-85r33,0","w":266},"H":{"d":"88,0r-35,0r-1,-252r36,0r-2,114r161,-6r-1,-108r36,0r-3,150v0,5,1,95,2,102r-36,0r2,-121r-161,7","w":333,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"I":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"J":{"d":"102,-252v-2,12,-2,108,-2,143v0,78,-35,115,-72,132r-16,-26v70,-20,55,-149,54,-249r36,0","w":146},"K":{"d":"88,4r-36,0v3,-47,2,-208,0,-260r36,0r-2,144v0,28,1,109,2,116xm240,-24r-24,25v-4,-5,-112,-116,-127,-133v6,-6,109,-108,117,-117r21,24v-14,13,-79,71,-98,90v11,14,97,98,111,111","w":259,"k":{"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"c":6,"g":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0107":6,"\u010d":6,"\u011f":6,"\u0123":6,"\u0151":6,"\u014d":6,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u011e":5,"\u0122":5,"\u0150":5,"\u014c":5,"s":4,"\u0161":4,"\u015b":4,"\u015f":4,"\u0219":4,"S":4,"\u0160":4,"\u015a":4,"\u015e":4,"\u0218":4}},"L":{"d":"53,-252r36,0v-3,36,-3,167,-3,226v9,0,51,0,86,-1r0,31v-5,0,-112,-4,-121,-4v5,-85,3,-166,2,-252","w":191,"k":{"\u2019":2,"\u201d":2,"t":6,"\u0165":6,"\u0163":6,"\u021b":6,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":8,"w":8,"y":12,"\u00fd":12,"\u00ff":12,"\ue03b":12,"\ue03c":12,"\ue03d":12,"T":5,"\u0164":5,"\u0162":5,"\u021a":5,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":7,"W":7,"Y":11,"\u00dd":11,"\u0178":11,"\ue02a":11,"\ue02d":11,"\ue02b":11,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"M":{"d":"45,9r-30,-11v8,-15,82,-249,87,-256v11,23,78,156,89,174v14,-20,85,-153,95,-163v13,30,78,205,93,243r-31,13v-9,-27,-64,-178,-70,-191v-13,20,-77,133,-92,156v-21,-39,-66,-126,-80,-159v-7,22,-57,180,-61,194","w":393,"k":{"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"v":6,"w":6,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":18,"\u0164":18,"\u0162":18,"\u021a":18,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"V":5,"W":5,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"N":{"d":"76,3r-34,-3v3,-27,9,-231,14,-266v10,12,184,192,196,204v0,-10,3,-180,3,-192r33,2v-1,22,-9,169,-10,260v-11,-10,-192,-198,-200,-206v0,13,-2,189,-2,201","w":329,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"O":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"P":{"d":"53,-252v62,-2,146,15,146,74v0,49,-45,89,-113,103r0,75r-33,0r0,-252xm86,-225r0,125v45,-10,79,-33,79,-73v0,-11,-6,-51,-79,-52","w":221,"k":{"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"\u0102":18,"\u0100":18,"\u0104":18,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,",":18,".":18,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4}},"Q":{"d":"291,2r-7,31r-143,-28v-9,0,-55,-2,-86,-33v-76,-79,-11,-230,108,-230v69,0,121,45,121,119v0,47,-24,103,-87,131v34,3,69,8,94,10xm161,-232v-142,0,-134,212,-14,212v59,0,102,-48,102,-116v0,-64,-46,-96,-88,-96","w":305,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"R":{"d":"86,-228r2,228r-35,0r-1,-252v17,0,47,2,75,4v98,7,90,95,25,129v9,12,73,93,83,104r-27,21r-96,-126v18,-10,54,-32,54,-67v0,-16,-12,-40,-80,-41","w":249,"k":{"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"S":{"d":"69,-180v0,45,90,46,90,96v0,35,-37,74,-106,90r-10,-27v35,-7,80,-25,80,-54v0,-40,-99,-55,-89,-99v0,-38,54,-73,103,-84r7,27v-22,4,-75,21,-75,51","w":189,"k":{"m":2,"M":2}},"T":{"d":"138,0r-39,0v3,-20,2,-167,2,-225v-41,0,-93,2,-102,3r0,-31v82,7,154,7,236,0r0,31v-5,-1,-72,-3,-102,-3","w":234,"k":{"\u2019":-29,"\u201d":-29,"v":-4,"w":-4,"y":-6,"\u00fd":-6,"\u00ff":-6,"\ue03b":-6,"\ue03c":-6,"\ue03d":-6,"V":-4,"W":-4,"Y":-5,"\u00dd":-5,"\u0178":-5,"\ue02a":-5,"\ue02d":-5,"\ue02b":-5,")":-4,"]":-4,"}":-4,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"m":16,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"\u0102":18,"\u0100":18,"\u0104":18,"M":14,"c":14,"g":14,"o":14,"q":14,"\u00f8":14,"\u0153":14,"\u00e7":14,"\u00f3":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u00f5":14,"\u0107":14,"\u010d":14,"\u011f":14,"\u0123":14,"\u0151":14,"\u014d":14,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u011e":13,"\u0122":13,"\u0150":13,"\u014c":13,",":16,".":16,":":-7,";":-7,"\u037e":-7,"\u0387":-7}},"U":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"V":{"d":"236,-258r29,18v-14,19,-120,229,-136,252v-8,-11,-113,-235,-124,-252r31,-18v6,16,90,193,97,204v6,-9,99,-192,103,-204","w":264,"k":{"\u2019":-23,"\u201d":-23,"t":-14,"\u0165":-14,"\u0163":-14,"\u021b":-14,"v":-4,"w":-4,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,"T":-13,"\u0164":-13,"\u0162":-13,"\u021a":-13,"V":-4,"W":-4,"Y":-2,"\u00dd":-2,"\u0178":-2,"\ue02a":-2,"\ue02d":-2,"\ue02b":-2,")":-4,"]":-4,"}":-4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":-2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":-2,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2,",":25,".":25,":":-11,";":-11,"\u037e":-11,"\u0387":-11,"-":-11,"\u00ad":-11}},"W":{"d":"352,-252r30,13v-5,9,-89,220,-102,239v-13,-25,-77,-131,-86,-149r-90,162v-11,-29,-74,-214,-89,-255r32,-14v12,41,60,183,66,202r83,-152r83,144v6,-18,66,-170,73,-190","w":385,"k":{"\u2019":-23,"\u201d":-23,"t":-14,"\u0165":-14,"\u0163":-14,"\u021b":-14,"v":-4,"w":-4,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,"T":-13,"\u0164":-13,"\u0162":-13,"\u021a":-13,"V":-4,"W":-4,"Y":-2,"\u00dd":-2,"\u0178":-2,"\ue02a":-2,"\ue02d":-2,"\ue02b":-2,")":-4,"]":-4,"}":-4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":-2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":-2,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2,",":25,".":25,":":-11,";":-11,"\u037e":-11,"\u0387":-11,"-":-11,"\u00ad":-11}},"X":{"d":"43,6r-23,-23v9,-8,86,-99,97,-112r-85,-100r26,-24v9,13,55,70,81,102v12,-14,76,-89,86,-102r24,24v-13,12,-84,87,-92,99v11,12,84,95,97,111r-26,25v-8,-12,-84,-104,-93,-114","w":272,"k":{"\u2019":-4,"\u201d":-4,"x":4,"X":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"Y":{"d":"250,-230v-63,22,-121,92,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,60,-100,112,-120","w":246,"k":{"\u2019":-17,"\u201d":-17,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-6,"w":-6,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"V":-5,"W":-5,")":-7,"]":-7,"}":-7,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":12,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":11,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"Z":{"d":"33,-231r2,-28v23,3,192,7,199,10v-17,18,-156,220,-160,225v19,0,139,-1,149,-2r-1,30v-9,-1,-189,-2,-206,-5v16,-16,154,-215,163,-227v-14,0,-136,-3,-146,-3","w":247},"[":{"d":"38,-275r80,-8r2,25r-50,2r-2,135v0,42,1,85,2,127r48,0r2,25r-82,-3r2,-173v0,-43,-1,-87,-2,-130","k":{"\u03ce":-6,"\ue016":-6,"\u03c9":-10,"\ue015":-10,"\u03c4":-3,"\ue022":-3,"\u03cd":-6,"\ue028":-6,"\u038f":-8,"\u2126":-10,"\u03a9":-10,"\u03cc":-6,"\ue018":-6,"\u03a4":-4,"\u038e":-8,"t":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"\uf774":-3,"T":-4,"\u0164":-4,"\u0162":-4,"\u021a":-4,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u0388":-8,"\u0389":-8,"\u038a":-8,"\u038c":-8}},"\\":{"d":"-3,-251r153,243r-23,15r-77,-128v-32,-51,-67,-102,-77,-116","w":122},"]":{"d":"88,23r-80,8r-2,-25r50,-2r2,-135v0,-42,-1,-85,-2,-127r-48,0r-2,-25r82,3r-2,173v0,43,1,87,2,130"},"^":{"d":"194,-67r-28,0r-59,-138r-59,138r-27,0r74,-167r25,0","w":214},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"34,-258r20,69r-14,6r-35,-62","w":57,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\u03ce":-13,"\ue016":-13,"\u03c8":-6,"\ue01c":-6,"\u2018":11,"\u201c":11,"\u03c4":-26,"\ue022":-26,"\u03cd":-13,"\ue028":-13,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u038f":-15,"\u03a8":-5,"\u03cc":-13,"\ue018":-13,"\u03a4":-29,"\u038e":-15,"\u03a5":-10,"\u03ab":-10,"t":-26,"\u0165":-26,"\u0163":-26,"\u021b":-26,"v":-18,"w":-18,"y":-9,"\u00fd":-9,"\u00ff":-9,"\ue03b":-9,"\ue03c":-9,"\ue03d":-9,"\uf774":-26,"\uf776":-18,"\uf777":-18,"\uf779":-9,"\uf7fd":-9,"\uf7ff":-9,"\ue02f":-9,"\ue02c":-9,"\ue02e":-9,"T":-29,"\u0164":-29,"\u0162":-29,"\u021a":-29,"V":-20,"W":-20,"Y":-10,"\u00dd":-10,"\u0178":-10,"\ue02a":-10,"\ue02d":-10,"\ue02b":-10,"\ue013":17,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03bc":17,"\u039c":18,"\u0388":-15,"\u0389":-15,"\u038a":-15,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"\u038c":-15,"j":3,"\uf76a":3,"J":4}},"a":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"b":{"d":"46,2r2,-149v0,-9,-1,-61,-2,-67v17,0,39,0,52,1v66,5,76,30,76,47v0,13,-12,33,-44,49v24,3,54,20,54,47v1,42,-55,74,-138,72xm78,-102r0,80v36,-3,72,-15,72,-46v0,-24,-31,-36,-72,-34xm78,-193r0,72v36,0,64,-20,64,-41v0,-27,-41,-31,-64,-31","w":208,"k":{"v":5,"w":5,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"b":5,"m":3}},"c":{"d":"197,-24r3,27v-6,1,-21,2,-41,2v-112,0,-139,-61,-139,-91v0,-52,49,-114,161,-134r5,28v-71,9,-132,48,-132,101v0,36,30,70,108,70v13,0,27,-1,35,-3","w":211,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"c":6,"g":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0107":6,"\u010d":6,"\u011f":6,"\u0123":6,"\u0151":6,"\u014d":6}},"d":{"d":"45,1r3,-136v0,-6,-1,-70,-2,-79v19,0,52,0,80,2v107,8,117,59,117,80v0,98,-112,133,-198,133xm78,-190r0,165v88,-6,132,-55,132,-100v0,-47,-50,-66,-132,-65","w":259,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"e":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1","w":190},"f":{"d":"80,0r-35,0v5,-73,3,-141,1,-214v8,0,90,-4,109,-5r2,26r-78,1r0,75v6,0,52,-2,71,-3r2,26r-73,-1","w":178,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,",":8,".":8}},"g":{"d":"210,-94r0,89v-15,5,-45,10,-72,10v-74,0,-118,-39,-118,-90v0,-36,38,-104,158,-135r7,28v-71,13,-132,59,-132,108v-10,41,67,81,126,61r-2,-71r33,0","w":236},"h":{"d":"80,0r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0r-2,96r138,-6r-1,-90r35,0r-1,214r-34,0r1,-102r-138,6","w":296,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"i":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"j":{"d":"93,-214v-2,9,-2,91,-2,121v0,67,-33,101,-66,115r-16,-25v64,-16,50,-125,49,-211r35,0","w":131},"k":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm219,-22r-23,25v-4,-4,-101,-101,-115,-116v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75v10,12,88,81,101,93","w":236,"k":{"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"c":5,"g":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u011f":5,"\u0123":5,"\u0151":5,"\u014d":5,"s":3,"\u0161":3,"\u015b":3,"\u015f":3,"\u0219":3}},"l":{"d":"46,-214r36,0v-3,29,-3,140,-3,190v8,0,47,-1,82,-2r0,29v-10,0,-108,-3,-116,-3v5,-73,3,-141,1,-214","w":177,"k":{"\u2019":2,"\u201d":2,"t":5,"\u0165":5,"\u0163":5,"\u021b":5,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":6,"w":6,"y":10,"\u00fd":10,"\u00ff":10,"\ue03b":10,"\ue03c":10,"\ue03d":10,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"m":{"d":"40,8r-29,-9v6,-13,70,-212,75,-218r79,148r84,-139r80,207r-30,11v-8,-23,-53,-148,-57,-160r-82,133v-18,-34,-57,-106,-71,-134v-6,19,-46,149,-49,161","w":338,"k":{"t":17,"\u0165":17,"\u0163":17,"\u021b":17,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"v":5,"w":5,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"n":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165","w":289,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"o":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"p":{"d":"47,-214v56,-3,136,11,136,62v0,44,-44,78,-105,89r1,63r-33,0xm78,-190r0,103v39,-8,71,-26,71,-61v0,-11,-7,-41,-71,-42","w":201,"k":{"a":17,"\u00e6":17,"\u00e1":17,"\u00e2":17,"\u00e4":17,"\u00e0":17,"\u00e5":17,"\u00e3":17,"\u0103":17,"\u0101":17,"\u0105":17,",":17,".":17,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3}},"q":{"d":"259,30r-129,-25v-8,0,-51,-3,-79,-29v-69,-67,-12,-195,97,-195v63,0,110,38,110,101v0,41,-23,89,-77,111v29,3,61,6,84,7xm147,-195v-128,1,-120,174,-13,176v53,0,91,-40,91,-97v0,-55,-41,-79,-78,-79","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"r":{"d":"79,-191r2,191r-34,0r-1,-214v15,0,44,0,71,2v87,7,83,82,22,112v8,11,67,75,76,84r-25,22v-4,-4,-78,-95,-88,-108v16,-8,49,-25,49,-56v0,-14,-11,-33,-72,-33","w":221,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"s":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42","w":172,"k":{"m":2}},"t":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3","w":203,"k":{"\u2019":-26,"\u201d":-26,"v":-3,"w":-3,"y":-5,"\u00fd":-5,"\u00ff":-5,"\ue03b":-5,"\ue03c":-5,"\ue03d":-5,")":-3,"]":-3,"}":-3,"a":17,"\u00e6":17,"\u00e1":17,"\u00e2":17,"\u00e4":17,"\u00e0":17,"\u00e5":17,"\u00e3":17,"\u0103":17,"\u0101":17,"\u0105":17,"m":13,"c":12,"g":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u011f":12,"\u0123":12,"\u0151":12,"\u014d":12,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"u":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"v":{"d":"207,-220r29,16v-11,16,-108,194,-122,214v-6,-10,-102,-200,-111,-214r30,-16v5,14,78,163,84,173v5,-8,86,-163,90,-173","w":235,"k":{"\u2019":-21,"\u201d":-21,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-3,"w":-3,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,")":-3,"]":-3,"}":-3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":-2,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,",":23,".":23,":":-10,";":-10,"\u037e":-10,"\u0387":-10,"-":-10,"\u00ad":-10}},"w":{"d":"309,-216r30,13v-4,8,-79,187,-91,203v-12,-22,-68,-109,-77,-124v-15,23,-61,115,-80,135v-10,-24,-67,-182,-80,-217r31,-12v10,35,52,153,57,169r74,-128v20,35,57,93,74,122v5,-15,57,-144,62,-161","w":340,"k":{"\u2019":-21,"\u201d":-21,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-3,"w":-3,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,")":-3,"]":-3,"}":-3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":-2,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,",":23,".":23,":":-10,";":-10,"\u037e":-10,"\u0387":-10,"-":-10,"\u00ad":-10}},"x":{"d":"35,6r-22,-21v9,-7,77,-83,87,-95v-13,-15,-63,-69,-76,-83r24,-23v9,11,48,60,72,87v11,-12,68,-76,77,-87r22,22v-10,10,-75,73,-83,83v10,11,75,82,88,95r-25,22v-9,-10,-74,-88,-82,-97v-4,5,-76,91,-82,97","w":237,"k":{"\u2019":-3,"\u201d":-3,"x":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"y":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100","w":210,"k":{"\u2019":-16,"\u201d":-16,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"v":-5,"w":-5,")":-6,"]":-6,"}":-6,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":10,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"z":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2","w":216},"{":{"d":"98,-281r15,21v-50,14,-16,111,-65,131v47,15,13,125,65,138r-15,22v-31,-14,-48,-37,-50,-102v-1,-42,-14,-46,-37,-46r0,-20v23,0,36,-4,37,-44v2,-63,19,-84,50,-100","k":{"\u03ce":-6,"\ue016":-6,"\u03c9":-10,"\ue015":-10,"\u03c4":-3,"\ue022":-3,"\u03cd":-6,"\ue028":-6,"\u038f":-8,"\u2126":-10,"\u03a9":-10,"\u03cc":-6,"\ue018":-6,"\u03a4":-4,"\u038e":-8,"t":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"\uf774":-3,"T":-4,"\u0164":-4,"\u0162":-4,"\u021a":-4,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u0388":-8,"\u0389":-8,"\u038a":-8,"\u038c":-8}},"|":{"d":"58,90r-27,0r0,-360r27,0r0,360","w":88},"}":{"d":"27,31r-14,-22v51,-14,18,-114,65,-133v-47,-18,-13,-121,-65,-136r14,-21v32,14,49,37,51,100v1,42,14,46,37,46r0,20v-23,0,-36,4,-37,44v-2,65,-19,86,-51,102"},"~":{"d":"155,-73v-23,5,-70,-31,-93,-32v-12,0,-20,8,-21,30r-24,0v-1,-38,19,-56,45,-56v22,0,70,32,93,31v12,0,19,-10,19,-30r24,0v2,42,-20,57,-43,57","w":214},"\u00a1":{"d":"77,-252r0,35r-36,0r0,-35r36,0xm48,-171r20,-3v1,51,0,137,2,176r-39,-2v4,-30,14,-122,17,-171","w":108},"\u00a2":{"d":"125,6r0,-59v-94,-33,-64,-119,0,-154r0,-64r26,0r-1,52v11,-5,25,-8,40,-11r4,29v-64,6,-94,42,-94,76v0,41,54,60,99,49r3,28v-16,3,-37,2,-52,1r1,53r-26,0","w":254},"\u00a3":{"d":"203,-27r0,29v-13,0,-121,-2,-143,-2v11,-37,16,-70,21,-102v-13,1,-26,1,-38,2r0,-24v13,0,27,-1,41,-2v8,-77,52,-121,113,-132r7,30v-45,0,-78,30,-88,100r67,-5r-2,26v-17,0,-43,2,-69,3v-4,24,-10,50,-18,79v23,0,66,-1,109,-2","w":254},"\u2044":{"d":"-62,-8r155,-252r23,13v-24,34,-137,218,-156,255","w":54},"\u00a5":{"d":"141,0r-33,0r1,-80r-59,0r-1,-24v8,0,30,1,60,1v-26,-39,-67,-104,-87,-132r27,-19v19,32,53,89,78,127v24,-38,64,-99,80,-127r26,17v-13,17,-65,95,-93,134v28,0,49,-1,59,-1r1,24v-9,0,-32,-1,-61,-1","w":254},"\u0192":{"d":"118,0r-32,0r5,-138v10,-75,55,-109,107,-120r6,32v-29,-4,-80,23,-83,105v17,0,53,-3,67,-4r-1,26v-14,0,-53,2,-67,3","w":254},"\u00a7":{"d":"67,-181v13,40,88,26,89,76v0,13,-6,26,-30,38v33,48,-13,82,-88,91r-6,-27v42,-2,74,-13,74,-34v0,-36,-92,-33,-88,-79v0,-12,6,-27,29,-38v-35,-44,20,-77,78,-94r8,28v-41,7,-66,22,-66,39xm112,-78v26,-17,24,-36,-15,-49v-11,-4,-29,-13,-35,-17v-27,12,-16,39,7,46v15,4,33,14,43,20","w":173},"\u00a4":{"d":"179,-189r-29,26v15,17,16,71,0,87r27,26r-17,18r-25,-28v-22,20,-61,20,-83,1r-25,27r-17,-18r27,-25v-17,-19,-16,-70,0,-88r-27,-26r17,-18r25,28v20,-18,64,-19,83,0r26,-28xm134,-120v0,-25,-15,-48,-41,-48v-25,0,-41,22,-41,49v0,65,80,66,82,-1","w":187},"'":{"d":"21,-186r-8,-72r32,0r-9,72r-15,0","w":57,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\u03ce":-6,"\ue016":-6,"\u03c9":8,"\ue015":8,"\u03c4":-15,"\ue022":-15,"\u03cd":-6,"\ue028":-6,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\ue007":8,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u038f":-8,"\u2126":8,"\u03a9":8,"\u03cc":-6,"\ue018":-6,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"\u03a4":-15,"\u038e":-8,"\u03a5":-10,"\u03ab":-10,"\ue013":17,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u03bc":17,"\u039c":18,"\u0388":-8,"\u0389":-8,"\u038a":-8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"\u038c":-8}},"\u201c":{"d":"31,-258r29,59r-14,8r-41,-49xm82,-258r24,69r-15,6r-36,-61","w":109,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\u03ce":-13,"\ue016":-13,"\u03c8":-6,"\ue01c":-6,"\u2018":11,"\u201c":11,"\u03c4":-26,"\ue022":-26,"\u03cd":-13,"\ue028":-13,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u038f":-15,"\u03a8":-5,"\u03cc":-13,"\ue018":-13,"\u03a4":-29,"\u038e":-15,"\u03a5":-10,"\u03ab":-10,"t":-26,"\u0165":-26,"\u0163":-26,"\u021b":-26,"v":-18,"w":-18,"y":-9,"\u00fd":-9,"\u00ff":-9,"\ue03b":-9,"\ue03c":-9,"\ue03d":-9,"\uf774":-26,"\uf776":-18,"\uf777":-18,"\uf779":-9,"\uf7fd":-9,"\uf7ff":-9,"\ue02f":-9,"\ue02c":-9,"\ue02e":-9,"T":-29,"\u0164":-29,"\u0162":-29,"\u021a":-29,"V":-20,"W":-20,"Y":-10,"\u00dd":-10,"\u0178":-10,"\ue02a":-10,"\ue02d":-10,"\ue02b":-10,"\ue013":17,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03bc":17,"\u039c":18,"\u0388":-15,"\u0389":-15,"\u038a":-15,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"\u038c":-15,"j":3,"\uf76a":3,"J":4}},"\u00ab":{"d":"67,-184r18,17v-8,7,-32,33,-40,45v10,11,31,35,44,47r-18,17v-8,-10,-46,-51,-56,-63xm136,-194r18,18v-12,13,-41,42,-49,54v10,11,36,38,48,50r-17,19v-9,-11,-51,-56,-61,-68v12,-15,49,-57,61,-73","w":176,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u2039":{"d":"75,-194r18,18v-12,13,-41,42,-49,54v10,11,36,38,48,50r-17,19v-9,-11,-51,-56,-61,-68v12,-15,49,-57,61,-73","w":115,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u203a":{"d":"40,-53r-18,-18v12,-13,41,-42,49,-54v-10,-11,-36,-38,-48,-50r17,-19v9,11,52,56,62,68v-12,15,-50,57,-62,73","w":115,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\ufb01":{"d":"80,0r-35,0v5,-73,3,-141,1,-214v8,0,90,-4,109,-5r2,26r-78,1r0,75v6,0,52,-2,71,-3r2,26r-73,-1xm259,-214v-3,32,-2,177,-1,214r-33,0r-1,-214r35,0","w":304},"\ufb02":{"d":"80,0r-35,0v5,-73,3,-141,1,-214v8,0,90,-4,109,-5r2,26r-78,1r0,75v6,0,52,-2,71,-3r2,26r-73,-1xm224,-214r36,0v-3,29,-3,140,-3,190v8,0,47,-1,82,-2r0,29v-10,0,-108,-3,-116,-3v5,-73,3,-141,1,-214","w":355},"\u2013":{"d":"0,-110r0,-25r180,0r0,25r-180,0","w":180},"\u2020":{"d":"167,-141r-63,-3r3,162r-33,0r3,-162r-62,3r0,-29r62,3r-3,-76r33,0r-3,76r63,-3r0,29","w":181},"\u2021":{"d":"167,-52r-62,-3r2,73r-32,0r2,-73r-62,3r0,-29r62,3r0,-70r-62,3r0,-29r62,3r-2,-72r32,0r-2,72r62,-3r0,29r-62,-3r0,70r62,-3r0,29","w":181},"\u00b7":{"d":"28,-101r0,-40r41,0r0,40r-41,0","w":97},"\u00b6":{"d":"169,-244r-1,261r-26,0r1,-237r-25,2r0,235r-26,0r1,-110v-38,-6,-79,-25,-79,-65v0,-61,73,-86,155,-86","w":205},"\u2022":{"d":"22,-135v15,-8,28,-17,37,-23v10,15,18,29,27,39v-18,11,-31,19,-44,29v-7,-17,-13,-31,-20,-45","w":108},"\u201a":{"d":"4,27r20,-69r29,13r-35,62","w":57,"k":{"\u03b1":-6,"\u03bb":-6,"\ue000":-6,"\ue012":-6,"\u03ce":-10,"\ue016":-10,"\u03c9":-10,"\ue015":-10,"\u03c8":13,"\ue01c":13,"\u03c4":13,"\ue022":13,"\u03cd":13,"\ue028":13,"\u03c5":13,"\u03cb":13,"\ue024":13,"\ue026":13,"\u0391":-8,"\u039b":-8,"\u038f":-10,"\u2126":-10,"\u03a9":-10,"\u03a8":15,"\u03a4":15,"\u038e":15,"\u03a5":15,"\u03ab":15,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"T":15,"\u0164":15,"\u0162":15,"\u021a":15}},"\u201e":{"d":"50,17r29,-59r26,18r-42,49xm4,27r23,-69r28,14r-37,62","w":109,"k":{"\u03ce":-8,"\ue016":-8,"\u03c9":-8,"\ue015":-8,"\u03c4":13,"\ue022":13,"\u03cd":13,"\ue028":13,"\u03c5":13,"\u03cb":13,"\ue024":13,"\ue026":13,"\u038f":-8,"\u2126":-8,"\u03a9":-8,"\u03a4":15,"\u038e":15,"\u03a5":15,"\u03ab":15,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"\uf774":13,"T":15,"\u0164":15,"\u0162":15,"\u021a":15}},"\u201d":{"d":"50,-199r29,-59r26,18r-42,49xm4,-189r23,-69r28,14r-37,62","w":109,"k":{"\u03ac":13,"\ue001":13,"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\u03ce":-6,"\ue016":-6,"\u03c9":8,"\ue015":8,"\u2019":11,"\u201d":11,"\u03c4":-26,"\ue022":-26,"\u03cd":-6,"\ue028":-6,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\ue007":8,"\u0386":14,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u038f":-8,"\u2126":8,"\u03a9":8,"\u03cc":-6,"\ue018":-6,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"\u03a4":-29,"\u038e":-8,"\u03a5":-10,"\u03ab":-10,"t":-23,"\u0165":-23,"\u0163":-23,"\u021b":-23,"v":-20,"w":-20,"\uf776":-20,"\uf777":-20,"T":-25,"\u0164":-25,"\u0162":-25,"\u021a":-25,"V":-22,"W":-22,"\ue013":17,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u03bc":17,"\u039c":18,"\u0388":-8,"\u0389":-8,"\u038a":-8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"m":17,"\uf76d":17,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"M":18,"\u038c":-8,"\u0398":8,"\u039f":8,"s":13,"\u0161":13,"\u015b":13,"\u015f":13,"\u0219":13,"\uf773":13,"\uf6fd":13,"S":14,"\u0160":14,"\u015a":14,"\u015e":14,"\u0218":14}},"\u00bb":{"d":"40,-53r-18,-18v12,-13,41,-42,49,-54v-10,-11,-36,-38,-48,-50r17,-19v9,11,52,56,62,68v-12,15,-50,57,-62,73xm110,-63r-18,-17v8,-7,32,-33,40,-45v-10,-11,-32,-35,-45,-47r19,-17v8,10,45,51,55,63","w":176,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u2026":{"d":"41,0r0,-37r37,0r0,37r-37,0xm161,0r0,-37r37,0r0,37r-37,0xm281,0r0,-37r37,0r0,37r-37,0","w":360},"\u2030":{"d":"83,-116v-46,0,-69,-30,-69,-65v0,-31,26,-71,75,-71v40,0,67,23,67,68v0,23,-19,68,-73,68xm84,-136v24,0,45,-18,45,-48v0,-33,-20,-48,-42,-48v-61,2,-60,95,-3,96xm252,0v-46,0,-68,-31,-68,-66v0,-31,25,-70,74,-70v40,0,67,22,67,67v0,23,-19,69,-73,69xm253,-19v24,0,45,-17,45,-47v0,-33,-20,-49,-42,-49v-60,2,-59,95,-3,96xm411,0v-46,0,-69,-31,-69,-66v0,-31,26,-70,75,-70v40,0,66,22,66,67v0,23,-18,69,-72,69xm411,-19v24,0,45,-17,45,-47v0,-33,-19,-49,-41,-49v-61,2,-60,95,-4,96xm82,-8r156,-252r23,13v-34,49,-117,185,-157,255","w":497},"\u00bf":{"d":"143,-21r-8,28v-58,-11,-116,-40,-116,-82v0,-53,61,-84,87,-96r11,23v-23,8,-63,31,-63,66v0,41,50,57,89,61xm116,-252r0,35r-36,0r0,-35r36,0","w":154},"`":{"d":"127,-326r49,43r-9,12r-57,-29","w":306},"\u00b4":{"d":"137,-283r49,-43r18,25r-57,31","w":306},"\u02c6":{"d":"101,-289r54,-36r50,36r-15,17r-36,-30r-40,30","w":306},"\u02dc":{"d":"178,-275v-24,0,-54,-30,-68,1r-15,-11v9,-15,21,-28,33,-28v27,2,53,31,69,-1r14,12v-9,14,-21,27,-33,27","w":306},"\u00af":{"d":"103,-277r3,-20r97,-1r-2,23","w":306},"\u02d8":{"d":"194,-316r13,15v-25,34,-83,33,-108,1r14,-16v15,23,66,28,81,0","w":306},"\u02d9":{"d":"153,-275r-26,-26r26,-25r26,25","w":306},"\u00a8":{"d":"113,-275r-23,-23r23,-23r23,23xm193,-275r-23,-23r23,-23r23,23","w":306},"\u02da":{"d":"151,-272v-18,0,-35,-11,-35,-28v-2,-40,74,-39,74,-4v0,20,-18,32,-39,32xm153,-285v9,0,17,-5,17,-17v0,-8,-7,-15,-17,-15v-8,0,-17,5,-17,16v0,9,8,16,17,16","w":306},"\u00b8":{"d":"148,0r22,0r-13,19v13,4,26,14,26,27v0,18,-27,35,-58,38r-4,-16v37,1,46,-35,11,-44","w":306},"\u02dd":{"d":"146,-281r40,-50r20,19r-48,41xm99,-281r32,-49r21,18r-41,41","w":306},"\u02db":{"d":"121,42v0,-17,27,-46,60,-41v-38,23,-49,49,-1,63r-5,16v-27,-5,-54,-19,-54,-38","w":306},"\u02c7":{"d":"155,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":306},"\u2014":{"d":"0,-110r0,-25r360,0r0,25r-360,0","w":360},"\u00c6":{"d":"303,-27r1,31v-13,0,-125,-4,-132,-4r2,-100r-87,1v-8,11,-63,94,-69,105r-27,-21v20,-22,148,-202,175,-237v8,0,119,-6,131,-7r1,29v-12,0,-86,1,-92,1r0,103v6,0,63,-2,81,-4r1,28v-8,0,-75,-1,-82,-1r0,77v9,0,67,1,97,-1xm102,-121r72,-2v-2,-32,4,-71,-2,-99","w":336},"\u00aa":{"d":"37,-124r-23,-12v9,-14,66,-116,72,-124v18,27,65,107,76,121r-23,15v-4,-7,-21,-35,-23,-38r-61,3v-2,3,-15,29,-18,35xm64,-178r43,-2v-3,-4,-19,-32,-22,-37v-4,6,-19,36,-21,39","w":175},"\u0141":{"d":"172,-27r0,31v-5,0,-112,-4,-121,-4v3,-23,3,-96,3,-109v-15,5,-28,11,-38,15r-7,-23v9,-3,25,-9,45,-16r-1,-119r36,0v-1,7,-2,64,-2,107v21,-8,42,-15,52,-20r7,24v-13,5,-36,11,-60,20r0,95v9,0,51,0,86,-1","w":191,"k":{"\u2019":2,"\u201d":2,"t":6,"\u0165":6,"\u0163":6,"\u021b":6,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":8,"w":8,"y":12,"\u00fd":12,"\u00ff":12,"\ue03b":12,"\ue03c":12,"\ue03d":12,"T":5,"\u0164":5,"\u0162":5,"\u021a":5,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":7,"W":7,"Y":11,"\u00dd":11,"\u0178":11,"\ue02a":11,"\ue02d":11,"\ue02b":11,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00d8":{"d":"284,-135v0,54,-36,141,-139,141v-35,0,-60,-9,-79,-25v-10,10,-21,20,-31,31r-17,-19r30,-30v-65,-88,0,-221,117,-221v29,0,55,8,75,25r31,-31r19,17v-10,10,-21,20,-32,32v17,20,26,47,26,80xm87,-42v65,51,164,7,162,-91v0,-22,-2,-43,-14,-59xm160,-231v-85,-3,-129,99,-89,170r148,-150v-17,-15,-37,-20,-59,-20","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u0152":{"d":"363,-141r1,28r-84,-1r0,88v10,0,69,1,99,-1r2,31v-13,0,-126,-4,-133,-4v-1,-6,3,-26,0,-45v-23,34,-61,51,-109,51v-74,0,-117,-61,-117,-120v0,-74,51,-144,142,-144v31,0,64,11,85,37r-1,-31v9,0,113,-6,125,-7r2,29r-95,1r0,92v8,0,65,-2,83,-4xm147,-21v56,-1,104,-45,104,-116v0,-60,-44,-94,-92,-94v-75,0,-103,66,-103,112v0,49,31,98,91,98","w":412},"\u00ba":{"d":"77,-126v-38,0,-62,-29,-62,-61v0,-33,26,-71,76,-71v36,0,64,22,64,61v0,27,-20,71,-78,71xm80,-146v26,0,46,-17,46,-49v0,-27,-19,-43,-39,-43v-54,-2,-56,91,-7,92","w":170},"\u00e6":{"d":"270,-24r1,27v-12,0,-114,-3,-120,-3r2,-84r-76,2v-6,9,-49,72,-59,88r-25,-18v17,-20,129,-172,153,-202v7,0,109,-5,119,-6r1,26v-10,0,-79,1,-83,1r0,85v5,0,56,-2,72,-4r1,26v-7,0,-68,-1,-73,-1r0,64v6,0,60,1,87,-1xm93,-104r60,-2v-1,-26,2,-57,-1,-81v-23,32,-53,75,-59,83","w":299},"\u0131":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0"},"\u0142":{"d":"81,-130v19,-8,37,-15,45,-19r7,21v-10,4,-30,11,-52,19r0,85v8,0,46,-1,81,-2r0,29v-10,0,-108,-3,-116,-3v3,-23,3,-82,3,-97v-14,5,-24,9,-33,13r-7,-19v9,-3,22,-8,40,-16r-1,-95r36,0v-1,9,-3,62,-3,84","w":178,"k":{"\u2019":2,"\u201d":2,"t":5,"\u0165":5,"\u0163":5,"\u021b":5,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":6,"w":6,"y":10,"\u00fd":10,"\u00ff":10,"\ue03b":10,"\ue03c":10,"\ue03d":10,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00f8":{"d":"132,5v-32,0,-55,-8,-73,-21v-10,8,-18,17,-28,26r-17,-18v9,-7,20,-16,29,-24v-59,-76,2,-187,107,-187v26,0,51,7,69,21v10,-10,20,-21,28,-30r17,18v-10,9,-19,17,-29,27v51,71,20,188,-103,188xm80,-36v56,43,148,7,146,-77v0,-18,-1,-36,-11,-50xm145,-196v-75,-2,-115,81,-81,144r135,-128v-15,-12,-33,-16,-54,-16","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u0153":{"d":"330,-121r1,26r-75,-1r0,73v8,0,62,1,89,-1r1,27v-12,0,-113,-3,-121,-3v-1,-5,3,-24,0,-40v-20,30,-54,45,-98,45v-68,0,-107,-51,-107,-102v0,-63,47,-122,129,-122v29,-1,57,12,77,33r-1,-28v9,0,105,-5,115,-6r1,26r-85,1r0,76v6,0,58,-2,74,-4xm134,-19v55,0,93,-39,93,-103v0,-44,-38,-73,-82,-73v-68,0,-92,55,-92,94v0,41,28,82,81,82","w":374},"\u00df":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42xm235,-153v9,38,84,37,84,82v0,32,-36,64,-100,77r-9,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42","w":345},"\u00b9":{"d":"83,-99r-27,0v1,-14,3,-85,2,-115v-7,7,-26,24,-31,29r-12,-16v4,-4,61,-48,69,-57"},"\u00ac":{"d":"14,-145r186,0r0,103r-25,0r0,-79r-161,0r0,-24","w":214},"\u00b5":{"d":"29,-181r35,0v6,60,-24,159,41,159v67,0,45,-94,48,-159r32,0r0,181r-32,0v-1,-8,2,-21,-1,-27v-15,33,-65,44,-88,13v-3,19,2,55,0,83r-35,0r0,-250","w":214},"\u2122":{"d":"64,-132r-24,0r1,-102v-14,0,-36,2,-41,3r0,-23v30,4,69,2,104,0r0,23v-3,-1,-32,-3,-41,-3xm108,-127r-21,-7v4,-8,36,-117,42,-126v5,10,21,53,31,77v6,-14,25,-65,33,-74v5,12,34,104,40,121r-19,9v-6,-13,-18,-66,-25,-75v-7,12,-19,51,-32,66r-28,-66v-5,19,-17,61,-21,75","w":241},"\u00d0":{"d":"18,-112r-1,-24v7,0,19,-1,37,-2r-2,-114v21,0,61,0,92,4v117,15,132,67,132,92v0,112,-142,158,-224,158v1,-17,2,-106,2,-116v-17,1,-29,1,-36,2xm143,-143r0,25v-16,0,-37,1,-57,2r0,86v98,-8,154,-70,154,-117v0,-53,-61,-79,-154,-78r0,85v20,-1,43,-2,57,-3","w":297},"\u00bd":{"d":"288,2v-8,-4,-92,2,-118,-4v32,-21,81,-58,81,-93v0,-27,-34,-40,-62,-39r4,-24v55,5,86,33,86,62v0,37,-45,65,-57,78r66,-5r0,25xm54,-8r156,-252r23,13v-25,33,-139,218,-157,255xm78,-258v2,18,-4,133,0,159r-27,0v1,-14,3,-85,2,-115v-7,7,-26,24,-31,29r-12,-16v4,-4,60,-48,68,-57","w":311},"\u00b1":{"d":"95,-206r25,0r0,68r80,0r0,24r-80,0r0,70r-25,0r0,-70r-81,0r0,-24r81,0r0,-68xm14,-24r186,0r0,24r-186,0r0,-24","w":214},"\u00de":{"d":"86,-209v58,0,113,22,113,69v0,44,-45,84,-113,94r0,46r-33,0r0,-252r34,0xm86,-184r0,112v45,-6,79,-29,79,-63v0,-10,-6,-49,-79,-49","w":224},"\u00bc":{"d":"278,-54r-2,21r-23,-1r0,34r-25,0r1,-34v-26,-2,-58,4,-80,-2r102,-123r2,0r0,105r25,0xm230,-54r0,-53v-10,13,-33,41,-43,53r43,0xm57,-8r155,-252r23,13v-34,49,-117,185,-157,255xm82,-258v2,18,-4,133,0,159r-27,0r1,-115v-7,7,-26,24,-31,29r-11,-16v4,-4,60,-48,68,-57","w":293},"\u00f7":{"d":"107,-138v-12,0,-20,-9,-20,-21v0,-13,9,-21,21,-21v12,0,20,8,20,21v0,12,-8,21,-21,21xm200,-84r-185,0r0,-24r185,0r0,24xm107,-12v-12,0,-20,-9,-20,-21v0,-13,9,-21,21,-21v12,0,20,8,20,21v0,12,-8,21,-21,21","w":214},"\u00a6":{"d":"58,-117r-27,0r0,-126r27,0r0,126xm58,63r-27,0r0,-126r27,0r0,126","w":88},"\u00b0":{"d":"108,-199v0,29,-23,49,-49,49v-29,0,-49,-21,-49,-47v0,-28,21,-50,50,-50v30,0,48,23,48,48xm87,-198v0,-14,-8,-30,-28,-30v-18,0,-28,15,-28,30v0,16,12,30,28,30v16,0,28,-13,28,-30","w":117},"\u00fe":{"d":"78,-163r0,100v42,-3,71,-27,71,-57v0,-14,-9,-43,-71,-43xm79,-186v53,-2,103,23,104,63v0,41,-40,78,-105,83r1,50r-33,0r1,-234r33,0v-1,13,-1,26,-1,38","w":203},"\u00be":{"d":"283,-54r-2,21r-23,-1r0,34r-25,0r1,-34v-26,-2,-58,4,-80,-2r102,-123r2,0r0,105r25,0xm235,-54r0,-53v-10,13,-33,41,-43,53r43,0xm65,-8r156,-252r22,13v-24,34,-137,218,-156,255xm116,-148v0,30,-50,53,-98,54r-1,-22v29,2,69,-8,69,-31v0,-18,-28,-27,-51,-29r0,-4v17,-1,47,-14,47,-32v0,-17,-28,-26,-53,-25r3,-20v31,1,78,14,78,41v0,15,-19,31,-32,36v21,4,38,14,38,32","w":298},"\u00b2":{"d":"124,-121r0,24v-8,-3,-89,0,-118,-3v32,-21,81,-58,81,-93v0,-27,-33,-40,-61,-39r4,-24v55,5,86,32,86,61v0,37,-41,64,-58,78","w":140},"\u00ae":{"d":"152,6v-74,0,-130,-56,-130,-130v0,-76,57,-134,133,-134v76,0,130,54,130,130v0,76,-57,134,-133,134xm152,-14v63,0,107,-49,107,-112v0,-61,-45,-112,-103,-112v-63,0,-108,49,-108,112v0,61,46,112,104,112xm109,-193v35,0,88,-1,89,30v0,15,-11,27,-26,36v4,6,37,44,42,49r-20,14v-2,-3,-42,-55,-47,-63v25,-11,51,-51,-15,-49r2,109r-24,0","w":306},"\u2212":{"d":"14,-108r186,0r0,24r-186,0r0,-24","w":214},"\u00f0":{"d":"49,-97v-15,1,-26,2,-32,2r-2,-22v6,0,17,0,34,-1r-1,-96v19,0,53,-1,81,2v108,10,115,58,115,81v0,94,-106,132,-197,132xm80,-99r0,74v88,-7,131,-52,131,-99v0,-49,-49,-67,-131,-66r0,70v18,-1,39,-1,54,-2r0,22v-16,0,-36,0,-54,1","w":261},"\u00d7":{"d":"14,-172r18,-18r75,78r76,-78r17,18r-75,77r75,78r-17,17r-76,-77r-75,77r-18,-17r76,-78","w":214},"\u00b3":{"d":"29,-237r3,-20v31,1,78,14,78,41v0,15,-19,31,-32,36v21,4,38,14,38,32v0,30,-50,53,-98,54r-1,-22v29,2,69,-8,69,-31v0,-18,-28,-27,-51,-29r0,-4v17,-1,47,-14,47,-32v0,-17,-28,-26,-53,-25","w":135},"\u00a9":{"d":"152,6v-74,0,-130,-56,-130,-130v0,-76,57,-134,133,-134v76,0,130,54,130,130v0,76,-57,134,-133,134xm152,-14v63,0,107,-49,107,-112v0,-61,-45,-112,-103,-112v-63,0,-108,49,-108,112v0,61,46,112,104,112xm193,-88r1,22v-5,1,-13,2,-24,2v-72,0,-77,-48,-77,-54v0,-31,27,-69,91,-80r2,23v-39,3,-67,29,-67,54v-7,19,38,45,74,33","w":306},"\u00c1":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm107,-288r49,-42r17,25r-57,30","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u00c2":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm87,-289r53,-36r51,36r-15,17r-37,-30r-39,30","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u00c4":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm101,-275r-23,-23r23,-23r23,23xm180,-275r-23,-23r23,-23r23,23","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u00c0":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm118,-330r49,42r-9,13r-57,-30","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u00c5":{"d":"89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm143,-296v-8,0,-18,6,-18,17v0,9,8,15,17,15v9,0,17,-5,17,-17v0,-8,-6,-15,-16,-15xm37,7r-30,-19v18,-32,107,-205,125,-239v-15,-3,-27,-13,-27,-27v-2,-40,74,-41,74,-5v0,18,-14,29,-31,32v34,57,111,202,134,237r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u00c3":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm166,-275v-25,0,-54,-31,-69,1r-15,-11v9,-15,22,-28,34,-28v27,0,52,31,68,-1r15,12v-9,14,-21,27,-33,27","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u00c7":{"d":"220,-27r4,29v-19,4,-67,7,-90,0r-12,17v13,4,27,14,27,27v0,18,-28,35,-59,38r-3,-16v37,1,46,-35,11,-44r17,-25v-73,-19,-93,-73,-93,-100v0,-59,54,-134,181,-157r5,30v-82,9,-150,59,-150,121v0,44,35,85,121,85v14,0,29,-2,41,-5","w":237,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"Y":2,"\u00dd":2,"\u0178":2,"\ue02a":2,"\ue02d":2,"\ue02b":2,"c":8,"g":8,"o":8,"q":8,"\u00f8":8,"\u0153":8,"\u00e7":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"\u0107":8,"\u010d":8,"\u011f":8,"\u0123":8,"\u0151":8,"\u014d":8,"C":7,"G":7,"O":7,"Q":7,"\u00d8":7,"\u0152":7,"\u00c7":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"\u0106":7,"\u010c":7,"\u011e":7,"\u0122":7,"\u0150":7,"\u014c":7}},"\u00c9":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm87,-287r50,-42r17,25r-57,30","w":206},"\u00ca":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm59,-289r53,-36r51,36r-15,17r-37,-30r-39,30","w":206},"\u00cb":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm71,-279r-23,-23r23,-23r23,23xm150,-279r-23,-23r23,-23r23,23","w":206},"\u00c8":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm84,-329r49,42r-8,13r-58,-30","w":206},"\u00cd":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm51,-283r49,-43r17,25r-57,31","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00ce":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm18,-289r54,-36r50,36r-14,17r-37,-30r-40,30","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00cf":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm31,-275r-23,-23r23,-23r23,23xm110,-275r-23,-23r23,-23r23,23","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00cc":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm44,-326r49,43r-9,12r-57,-29","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00d1":{"d":"76,3r-34,-3v3,-27,9,-231,14,-266v10,12,184,192,196,204v0,-10,3,-180,3,-192r33,2v-1,22,-9,169,-10,260v-11,-10,-192,-198,-200,-206v0,13,-2,189,-2,201xm199,-272v-25,0,-53,-29,-68,1r-15,-10v9,-15,21,-28,33,-28v27,1,52,30,68,-1r15,12v-9,14,-21,26,-33,26","w":329,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00d3":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm137,-283r49,-43r18,25r-57,31","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u00d4":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm101,-289r54,-36r50,36r-15,17r-36,-30r-40,30","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u00d6":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm113,-275r-23,-23r23,-23r23,23xm193,-275r-23,-23r23,-23r23,23","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u00d2":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm127,-326r49,43r-9,12r-57,-29","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u00d5":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm178,-281v-25,0,-53,-29,-68,1r-15,-10v9,-15,21,-28,33,-28v28,1,52,29,69,-1r14,12v-9,14,-21,26,-33,26","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u0160":{"d":"69,-180v0,45,90,46,90,96v0,35,-37,74,-106,90r-10,-27v35,-7,80,-25,80,-54v0,-40,-99,-55,-89,-99v0,-38,54,-73,103,-84r7,27v-22,4,-75,21,-75,51xm97,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":189,"k":{"m":2,"M":2}},"\u00da":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm134,-283r50,-43r17,25r-57,31","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00db":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm104,-289r53,-36r51,36r-15,17r-37,-30r-39,30","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00dc":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm114,-275r-23,-23r23,-23r23,23xm193,-275r-23,-23r23,-23r23,23","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00d9":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm124,-326r49,43r-9,12r-57,-29","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00dd":{"d":"250,-230v-63,22,-121,92,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,60,-100,112,-120xm114,-283r50,-43r17,25r-57,31","w":246,"k":{"\u2019":-17,"\u201d":-17,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-6,"w":-6,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"V":-5,"W":-5,")":-7,"]":-7,"}":-7,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":12,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":11,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u0178":{"d":"250,-230v-63,22,-121,92,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,60,-100,112,-120xm89,-275r-23,-23r23,-23r23,23xm168,-275r-23,-23r23,-23r23,23","w":246,"k":{"\u2019":-17,"\u201d":-17,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-6,"w":-6,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"V":-5,"W":-5,")":-7,"]":-7,"}":-7,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":12,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":11,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u017d":{"d":"33,-231r2,-28v23,3,192,7,199,10v-17,18,-156,220,-160,225v19,0,139,-1,149,-2r-1,30v-9,-1,-189,-2,-206,-5v16,-16,154,-215,163,-227v-14,0,-136,-3,-146,-3xm133,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":247},"\u00e1":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm101,-255r47,-41r16,24r-54,29","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u00e2":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm76,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u00e4":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm88,-248r-22,-22r22,-21r22,21xm163,-248r-22,-22r22,-21r22,21","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u00e0":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm101,-296r47,41r-8,12r-55,-28","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u00e5":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm160,-275v1,37,-70,42,-71,4v-2,-38,73,-38,71,-4xm124,-257v9,0,17,-6,17,-17v0,-8,-6,-14,-16,-14v-8,0,-17,6,-17,16v0,9,7,15,16,15","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u00e3":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm149,-248v-24,-1,-50,-28,-65,1r-14,-9v17,-38,48,-25,77,-13v8,0,15,-7,20,-15r14,11v-9,13,-21,25,-32,25","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u00e7":{"d":"128,4r-12,18v12,4,25,13,25,25v0,18,-27,33,-56,36r-3,-15v36,1,43,-33,11,-42r17,-26v-66,-14,-90,-56,-90,-86v0,-52,49,-114,161,-134r5,28v-71,9,-132,48,-132,101v0,36,30,70,108,70v13,0,27,-1,35,-3r3,27v-11,2,-52,3,-72,1","w":211,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"c":6,"g":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0107":6,"\u010d":6,"\u011f":6,"\u0123":6,"\u0151":6,"\u014d":6}},"\u00e9":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm76,-255r46,-41r17,24r-55,29","w":190},"\u00ea":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm50,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":190},"\u00eb":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm59,-248r-22,-22r22,-21r22,21xm134,-248r-22,-22r22,-21r22,21","w":190},"\u00e8":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm77,-296r47,41r-8,12r-54,-28","w":190},"\u00ed":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm40,-255r47,-41r16,24r-54,29","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00ee":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm15,-261r51,-34r48,34r-14,17r-35,-29r-38,29","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00ef":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm23,-248r-21,-22r21,-21r22,21xm99,-248r-22,-22r22,-21r22,21","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00ec":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm39,-296r46,41r-8,12r-54,-28","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00f1":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165xm172,-248v-24,-1,-50,-28,-65,1r-14,-9v17,-38,47,-25,76,-13v8,0,15,-7,20,-15r14,11v-9,13,-20,25,-31,25","w":289,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00f3":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm120,-255r47,-41r16,24r-54,29","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u00f4":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm91,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u00f6":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm103,-248r-22,-22r22,-21r22,21xm179,-248r-22,-22r22,-21r21,21","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u00f2":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm113,-296r46,41r-8,12r-54,-28","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u00f5":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm166,-248v-24,-1,-50,-28,-65,1r-14,-9v17,-38,48,-25,77,-13v8,0,15,-7,20,-15r14,11v-9,13,-21,25,-32,25","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u0161":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42xm91,-244r-51,-34r14,-16r37,28r35,-28r13,16","w":172,"k":{"m":2}},"\u00fa":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm114,-255r47,-41r16,24r-55,29","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00fb":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm85,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00fc":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm97,-248r-22,-22r22,-21r22,21xm172,-248r-22,-22r22,-21r22,21","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00f9":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm110,-296r47,41r-8,12r-55,-28","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00fd":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm86,-255r47,-41r16,24r-54,29","w":210,"k":{"\u2019":-16,"\u201d":-16,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"v":-5,"w":-5,")":-6,"]":-6,"}":-6,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":10,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\u00ff":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm69,-248r-21,-22r21,-21r22,21xm145,-248r-22,-22r22,-21r21,21","w":210,"k":{"\u2019":-16,"\u201d":-16,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"v":-5,"w":-5,")":-6,"]":-6,"}":-6,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":10,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\u017e":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2xm111,-244r-51,-34r14,-16r38,28r34,-28r13,16","w":216},"\ue035":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm63,-248r-24,-24r24,-24r24,24","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\uf726":{"d":"41,-49v0,42,74,35,97,6v-27,-19,-56,-41,-68,-53v-17,12,-29,26,-29,47xm210,-21r-16,23v-9,-6,-22,-18,-38,-30v-31,42,-147,49,-147,-17v0,-32,27,-55,44,-67v-50,-46,10,-99,70,-108r7,26v-28,4,-65,15,-65,41v9,40,56,61,92,92v13,-15,24,-31,28,-38r21,18v-9,10,-17,22,-30,34v16,13,27,21,34,26","w":219},"\uf721":{"d":"28,0r0,-32r34,0r0,32r-34,0xm55,-68r-20,2v0,-43,-1,-116,-2,-153r38,1v-3,29,-12,108,-16,150","w":98},"\uf7a1":{"d":"69,-214r0,31r-34,0r0,-31r34,0xm42,-146r20,-2v0,43,1,116,2,153r-38,-1v3,-29,12,-108,16,-150","w":98},"\uf73f":{"d":"9,-198r8,-26v53,9,105,34,105,71v0,45,-56,77,-80,86r-9,-22v22,-7,55,-27,55,-57v0,-36,-44,-47,-79,-52xm32,0r0,-32r35,0r0,32r-35,0","w":136},"\uf7bf":{"d":"128,-16r-8,26v-53,-9,-105,-34,-105,-71v0,-45,55,-77,79,-86r10,22v-22,7,-55,27,-55,57v0,36,44,47,79,52xm104,-214r0,31r-34,0r0,-31r34,0","w":136},"\uf730":{"d":"118,-5v-49,0,-99,-34,-99,-102v0,-62,51,-103,106,-103v58,0,101,41,101,101v0,53,-43,104,-108,104xm123,-30v32,0,72,-26,72,-81v0,-40,-32,-74,-73,-74v-41,0,-72,33,-72,80v0,36,24,75,73,75","w":244},"\uf731":{"d":"100,0r-33,0r2,-165v-9,10,-34,33,-43,42r-15,-18v8,-5,75,-71,90,-79","w":144},"\uf732":{"d":"159,-25r0,28v-12,-2,-115,-4,-158,-3r-1,-4v44,-28,114,-78,114,-127v0,-43,-51,-60,-90,-62r7,-26v73,8,116,44,116,85v0,51,-62,90,-83,112","w":187},"\uf733":{"d":"28,-197r4,-25v37,1,99,21,99,57v0,22,-25,44,-40,51v24,6,47,22,47,46v0,41,-64,75,-123,76r-2,-26v37,1,91,-14,91,-49v0,-28,-44,-37,-68,-38r0,-12v26,-2,63,-18,63,-42v0,-25,-38,-38,-71,-38","w":160},"\uf734":{"d":"145,-224r0,152r35,-1r-2,25r-34,-1r1,49r-30,0r1,-49r-115,0r-1,-3r141,-172r4,0xm117,-72r-1,-89v-11,15,-57,74,-69,89r70,0","w":191},"\uf735":{"d":"58,-191r-6,33v70,11,86,41,86,66v0,46,-61,89,-115,100r-7,-26v35,-6,90,-30,90,-69v0,-28,-32,-45,-83,-49r14,-79v10,0,87,-3,104,-4r-1,28r-82,0","w":162},"\uf736":{"d":"85,5v-41,0,-67,-30,-67,-72v0,-60,52,-127,97,-157r18,22v-17,10,-49,36,-65,67v54,-2,95,26,95,65v0,44,-40,75,-78,75xm58,-113v-17,30,-10,95,29,95v27,0,44,-22,44,-46v0,-33,-35,-51,-73,-49","w":182},"\uf737":{"d":"7,-191r-2,-27v23,2,121,1,149,4v-6,9,-83,202,-90,220r-30,-13v7,-10,80,-176,84,-184r-111,0","w":157},"\uf738":{"d":"99,-199v-56,-1,-50,77,-2,77v23,0,41,-15,41,-40v0,-26,-17,-37,-39,-37xm102,-221v71,0,92,81,30,108v64,26,54,117,-36,119v-86,2,-91,-88,-34,-117v-59,-26,-39,-110,40,-110xm98,-15v25,0,43,-15,43,-40v0,-27,-19,-44,-43,-44v-27,0,-42,21,-42,45v0,20,16,39,42,39","w":197},"\uf739":{"d":"69,9r-18,-22v17,-10,48,-35,66,-69v-57,3,-98,-26,-98,-65v0,-41,37,-73,77,-73v43,0,69,30,69,70v0,64,-51,129,-96,159xm94,-197v-26,0,-43,21,-43,45v0,36,35,51,76,48v14,-30,8,-93,-33,-93","w":183},"\uf724":{"d":"103,-71v2,-31,-86,-43,-79,-78v0,-22,25,-39,40,-47r-1,-45r26,0r-2,35v5,-3,28,-9,33,-9r3,26v-26,0,-66,15,-66,34v-1,32,79,37,79,78v0,25,-33,49,-49,55r2,48r-26,0r1,-40v-7,3,-25,7,-31,7r-4,-25v46,-4,74,-24,74,-39","w":160},"\uf7a2":{"d":"75,5r0,-50v-84,-27,-58,-102,0,-131r0,-54r25,0r-1,44v10,-4,23,-6,36,-9r4,26v-59,5,-85,35,-85,63v0,35,51,50,89,40r2,25v-14,2,-33,2,-46,1r1,45r-25,0","w":160},"\u2074":{"d":"132,-153r-2,21r-23,-1r1,34r-22,0r1,-34v-26,-2,-60,4,-82,-2r100,-123r3,0r0,106xm87,-152r0,-60v-10,16,-37,50,-47,60r47,0","w":147},"\uf6c3":{"d":"131,81r17,-62r27,12r-34,55","w":306},"\uf761":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\uf762":{"d":"46,2r2,-149v0,-9,-1,-61,-2,-67v17,0,39,0,52,1v66,5,76,30,76,47v0,13,-12,33,-44,49v24,3,54,20,54,47v1,42,-55,74,-138,72xm78,-102r0,80v36,-3,72,-15,72,-46v0,-24,-31,-36,-72,-34xm78,-193r0,72v36,0,64,-20,64,-41v0,-27,-41,-31,-64,-31","w":208,"k":{"\uf776":5,"\uf777":5,"\uf779":8,"\uf7fd":8,"\uf7ff":8,"\ue02f":8,"\ue02c":8,"\ue02e":8,"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,"\uf76d":3,"\uf762":5,"\uf764":5,"\uf765":5,"\uf766":5,"\uf768":5,"\uf769":5,"\uf76b":5,"\uf76c":5,"\uf76e":5,"\uf770":5,"\uf772":5,"\uf7fe":5,"\uf7e9":5,"\uf7ea":5,"\uf7eb":5,"\uf7e8":5,"\uf7ed":5,"\uf7ee":5,"\uf7ef":5,"\uf7ec":5,"\uf6f9":5,"\uf7f1":5}},"\uf763":{"d":"197,-24r3,27v-6,1,-21,2,-41,2v-112,0,-139,-61,-139,-91v0,-52,49,-114,161,-134r5,28v-71,9,-132,48,-132,101v0,36,30,70,108,70v13,0,27,-1,35,-3","w":211,"k":{"\uf779":2,"\uf7fd":2,"\uf7ff":2,"\ue02f":2,"\ue02c":2,"\ue02e":2,"\uf763":6,"\uf767":6,"\uf76f":6,"\uf771":6,"\uf7f8":6,"\uf6fa":6,"\uf7e7":6,"\uf7f3":6,"\uf7f4":6,"\uf7f6":6,"\uf7f2":6,"\uf7f5":6}},"\uf764":{"d":"45,1r3,-136v0,-6,-1,-70,-2,-79v19,0,52,0,80,2v107,8,117,59,117,80v0,98,-112,133,-198,133xm78,-190r0,165v88,-6,132,-55,132,-100v0,-47,-50,-66,-132,-65","w":259,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf765":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1","w":190},"\uf766":{"d":"80,0r-35,0v5,-73,3,-141,1,-214v8,0,90,-4,109,-5r2,26r-78,1r0,75v6,0,52,-2,71,-3r2,26r-73,-1","w":178,"k":{"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,",":8,".":8}},"\uf767":{"d":"210,-94r0,89v-15,5,-45,10,-72,10v-74,0,-118,-39,-118,-90v0,-36,38,-104,158,-135r7,28v-71,13,-132,59,-132,108v-10,41,67,81,126,61r-2,-71r33,0","w":236},"\uf768":{"d":"80,0r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0r-2,96r138,-6r-1,-90r35,0r-1,214r-34,0r1,-102r-138,6","w":296,"k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf769":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0","k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf76a":{"d":"93,-214v-2,9,-2,91,-2,121v0,67,-33,101,-66,115r-16,-25v64,-16,50,-125,49,-211r35,0","w":131},"\uf76b":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm219,-22r-23,25v-4,-4,-101,-101,-115,-116v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75v10,12,88,81,101,93","w":236,"k":{"\uf779":3,"\uf7fd":3,"\uf7ff":3,"\ue02f":3,"\ue02c":3,"\ue02e":3,"\uf763":5,"\uf767":5,"\uf76f":5,"\uf771":5,"\uf7f8":5,"\uf6fa":5,"\uf7e7":5,"\uf7f3":5,"\uf7f4":5,"\uf7f6":5,"\uf7f2":5,"\uf7f5":5,"\uf773":3,"\uf6fd":3}},"\uf76c":{"d":"46,-214r36,0v-3,29,-3,140,-3,190v8,0,47,-1,82,-2r0,29v-10,0,-108,-3,-116,-3v5,-73,3,-141,1,-214","w":177,"k":{"\u2019":2,"\u201d":2,"\uf774":5,"\uf775":2,"\uf7fa":2,"\uf7fb":2,"\uf7fc":2,"\uf7f9":2,"\uf776":6,"\uf777":6,"\uf779":10,"\uf7fd":10,"\uf7ff":10,"\ue02f":10,"\ue02c":10,"\ue02e":10,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf76d":{"d":"40,8r-29,-9v6,-13,70,-212,75,-218r79,148r84,-139r80,207r-30,11v-8,-23,-53,-148,-57,-160r-82,133v-18,-34,-57,-106,-71,-134v-6,19,-46,149,-49,161","w":338,"k":{"\uf774":17,"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf776":5,"\uf777":5,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf76e":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165","w":289,"k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf76f":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf770":{"d":"47,-214v56,-3,136,11,136,62v0,44,-44,78,-105,89r1,63r-33,0xm78,-190r0,103v39,-8,71,-26,71,-61v0,-11,-7,-41,-71,-42","w":201,"k":{"\uf761":17,"\uf7e6":17,"\uf7e1":17,"\uf7e2":17,"\uf7e4":17,"\uf7e0":17,"\uf7e5":17,"\uf7e3":17,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,",":17,".":17}},"\uf771":{"d":"259,30r-129,-25v-8,0,-51,-3,-79,-29v-69,-67,-12,-195,97,-195v63,0,110,38,110,101v0,41,-23,89,-77,111v29,3,61,6,84,7xm147,-195v-128,1,-120,174,-13,176v53,0,91,-40,91,-97v0,-55,-41,-79,-78,-79","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf772":{"d":"79,-191r2,191r-34,0r-1,-214v15,0,44,0,71,2v87,7,83,82,22,112v8,11,67,75,76,84r-25,22v-4,-4,-78,-95,-88,-108v16,-8,49,-25,49,-56v0,-14,-11,-33,-72,-33","w":221,"k":{"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf773":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42","w":172,"k":{"\uf76d":2}},"\uf774":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3","w":203,"k":{"\u2019":-26,"\u201d":-26,"\uf776":-3,"\uf777":-3,"\uf779":-5,"\uf7fd":-5,"\uf7ff":-5,"\ue02f":-5,"\ue02c":-5,"\ue02e":-5,")":-3,"]":-3,"}":-3,"\uf761":17,"\uf7e6":17,"\uf7e1":17,"\uf7e2":17,"\uf7e4":17,"\uf7e0":17,"\uf7e5":17,"\uf7e3":17,"\uf76d":13,"\uf763":12,"\uf767":12,"\uf76f":12,"\uf771":12,"\uf7f8":12,"\uf6fa":12,"\uf7e7":12,"\uf7f3":12,"\uf7f4":12,"\uf7f6":12,"\uf7f2":12,"\uf7f5":12,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"\uf775":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0","w":266,"k":{"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,"\uf76d":3,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf776":{"d":"207,-220r29,16v-11,16,-108,194,-122,214v-6,-10,-102,-200,-111,-214r30,-16v5,14,78,163,84,173v5,-8,86,-163,90,-173","w":235,"k":{"\u2019":-21,"\u201d":-21,"\uf774":-12,"\uf776":-3,"\uf777":-3,"\uf779":-2,"\uf7fd":-2,"\uf7ff":-2,"\ue02f":-2,"\ue02c":-2,"\ue02e":-2,")":-3,"]":-3,"}":-3,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":-2,"\uf763":2,"\uf767":2,"\uf76f":2,"\uf771":2,"\uf7f8":2,"\uf6fa":2,"\uf7e7":2,"\uf7f3":2,"\uf7f4":2,"\uf7f6":2,"\uf7f2":2,"\uf7f5":2,",":23,".":23,":":-10,";":-10,"\u037e":-10,"\u0387":-10,"-":-10,"\u00ad":-10}},"\uf777":{"d":"309,-216r30,13v-4,8,-79,187,-91,203v-12,-22,-68,-109,-77,-124v-15,23,-61,115,-80,135v-10,-24,-67,-182,-80,-217r31,-12v10,35,52,153,57,169r74,-128v20,35,57,93,74,122v5,-15,57,-144,62,-161","w":340,"k":{"\u2019":-21,"\u201d":-21,"\uf774":-12,"\uf776":-3,"\uf777":-3,"\uf779":-2,"\uf7fd":-2,"\uf7ff":-2,"\ue02f":-2,"\ue02c":-2,"\ue02e":-2,")":-3,"]":-3,"}":-3,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":-2,"\uf763":2,"\uf767":2,"\uf76f":2,"\uf771":2,"\uf7f8":2,"\uf6fa":2,"\uf7e7":2,"\uf7f3":2,"\uf7f4":2,"\uf7f6":2,"\uf7f2":2,"\uf7f5":2,",":23,".":23,":":-10,";":-10,"\u037e":-10,"\u0387":-10,"-":-10,"\u00ad":-10}},"\uf778":{"d":"35,6r-22,-21v9,-7,77,-83,87,-95v-13,-15,-63,-69,-76,-83r24,-23v9,11,48,60,72,87v11,-12,68,-76,77,-87r22,22v-10,10,-75,73,-83,83v10,11,75,82,88,95r-25,22v-9,-10,-74,-88,-82,-97v-4,5,-76,91,-82,97","w":237,"k":{"\u2019":-3,"\u201d":-3,"\uf778":3,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf779":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100","w":210,"k":{"\u2019":-16,"\u201d":-16,"\uf774":-10,"\uf776":-5,"\uf777":-5,")":-6,"]":-6,"}":-6,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":10,"\uf763":13,"\uf767":13,"\uf76f":13,"\uf771":13,"\uf7f8":13,"\uf6fa":13,"\uf7e7":13,"\uf7f3":13,"\uf7f4":13,"\uf7f6":13,"\uf7f2":13,"\uf7f5":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\uf77a":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2","w":216},"\uf7f8":{"d":"132,5v-32,0,-55,-8,-73,-21v-10,8,-18,17,-28,26r-17,-18v9,-7,20,-16,29,-24v-59,-76,2,-187,107,-187v26,0,51,7,69,21v10,-10,20,-21,28,-30r17,18v-10,9,-19,17,-29,27v51,71,20,188,-103,188xm80,-36v56,43,148,7,146,-77v0,-18,-1,-36,-11,-50xm145,-196v-75,-2,-115,81,-81,144r135,-128v-15,-12,-33,-16,-54,-16","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf7f0":{"d":"49,-97v-15,1,-26,2,-32,2r-2,-22v6,0,17,0,34,-1r-1,-96v19,0,53,-1,81,2v108,10,115,58,115,81v0,94,-106,132,-197,132xm80,-99r0,74v88,-7,131,-52,131,-99v0,-49,-49,-67,-131,-66r0,70v18,-1,39,-1,54,-2r0,22v-16,0,-36,0,-54,1","w":261},"\uf7fe":{"d":"78,-163r0,100v42,-3,71,-27,71,-57v0,-14,-9,-43,-71,-43xm79,-186v53,-2,103,23,104,63v0,41,-40,78,-105,83r1,50r-33,0r1,-234r33,0v-1,13,-1,26,-1,38","w":203},"\uf7e6":{"d":"270,-24r1,27v-12,0,-114,-3,-120,-3r2,-84r-76,2v-6,9,-49,72,-59,88r-25,-18v17,-20,129,-172,153,-202v7,0,109,-5,119,-6r1,26v-10,0,-79,1,-83,1r0,85v5,0,56,-2,72,-4r1,26v-7,0,-68,-1,-73,-1r0,64v6,0,60,1,87,-1xm93,-104r60,-2v-1,-26,2,-57,-1,-81v-23,32,-53,75,-59,83","w":299},"\uf6fa":{"d":"330,-121r1,26r-75,-1r0,73v8,0,62,1,89,-1r1,27v-12,0,-113,-3,-121,-3v-1,-5,3,-24,0,-40v-20,30,-54,45,-98,45v-68,0,-107,-51,-107,-102v0,-63,47,-122,129,-122v29,-1,57,12,77,33r-1,-28v9,0,105,-5,115,-6r1,26r-85,1r0,76v6,0,58,-2,74,-4xm134,-19v55,0,93,-39,93,-103v0,-44,-38,-73,-82,-73v-68,0,-92,55,-92,94v0,41,28,82,81,82","w":374},"\u0102":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm185,-316r13,15v-25,34,-83,33,-108,1r14,-16v15,23,66,28,81,0","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u0100":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm94,-277r3,-20r97,-1r-2,23","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u0104":{"d":"89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251v-31,19,-93,60,-24,78r-4,16v-27,-5,-55,-19,-55,-38v0,-14,16,-28,47,-45v-10,-19,-40,-79,-44,-84r-125,5v-4,7,-34,77,-40,89","w":288,"k":{"\u2019":14,"\u201d":14,"t":24,"\u0165":24,"\u0163":24,"\u021b":24,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":26,"w":26,"x":2,"y":30,"\u00fd":30,"\u00ff":30,"\ue03b":30,"\ue03c":30,"\ue03d":30,"T":22,"\u0164":22,"\u0162":22,"\u021a":22,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":23,"W":23,"X":2,"Y":27,"\u00dd":27,"\u0178":27,"\ue02a":27,"\ue02d":27,"\ue02b":27}},"\u0106":{"d":"220,-27r4,29v-11,2,-27,4,-49,4v-123,0,-153,-74,-153,-107v0,-59,54,-134,181,-157r5,30v-82,9,-150,59,-150,121v0,44,35,85,121,85v14,0,29,-2,41,-5xm139,-283r49,-43r18,25r-58,31","w":237,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"Y":2,"\u00dd":2,"\u0178":2,"\ue02a":2,"\ue02d":2,"\ue02b":2,"c":8,"g":8,"o":8,"q":8,"\u00f8":8,"\u0153":8,"\u00e7":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"\u0107":8,"\u010d":8,"\u011f":8,"\u0123":8,"\u0151":8,"\u014d":8,"C":7,"G":7,"O":7,"Q":7,"\u00d8":7,"\u0152":7,"\u00c7":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"\u0106":7,"\u010c":7,"\u011e":7,"\u0122":7,"\u0150":7,"\u014c":7}},"\u010c":{"d":"220,-27r4,29v-11,2,-27,4,-49,4v-123,0,-153,-74,-153,-107v0,-59,54,-134,181,-157r5,30v-82,9,-150,59,-150,121v0,44,35,85,121,85v14,0,29,-2,41,-5xm164,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":237,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"Y":2,"\u00dd":2,"\u0178":2,"\ue02a":2,"\ue02d":2,"\ue02b":2,"c":8,"g":8,"o":8,"q":8,"\u00f8":8,"\u0153":8,"\u00e7":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"\u0107":8,"\u010d":8,"\u011f":8,"\u0123":8,"\u0151":8,"\u014d":8,"C":7,"G":7,"O":7,"Q":7,"\u00d8":7,"\u0152":7,"\u00c7":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"\u0106":7,"\u010c":7,"\u011e":7,"\u0122":7,"\u0150":7,"\u014c":7}},"\u010e":{"d":"52,2r2,-160v0,-8,-1,-84,-2,-94v21,0,61,0,92,4v117,15,132,67,132,92v0,112,-142,158,-224,158xm86,-225r0,195v98,-9,154,-67,154,-117v0,-55,-61,-79,-154,-78xm136,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":297,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u0110":{"d":"18,-112r-1,-24v7,0,19,-1,37,-2r-2,-114v21,0,61,0,92,4v117,15,132,67,132,92v0,112,-142,158,-224,158v1,-17,2,-106,2,-116v-17,1,-29,1,-36,2xm143,-143r0,25v-16,0,-37,1,-57,2r0,86v98,-8,154,-70,154,-117v0,-53,-61,-79,-154,-78r0,85v20,-1,43,-2,57,-3","w":297},"\u011a":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm116,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":206},"\u0116":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm114,-275r-25,-26r25,-25r26,25","w":206},"\u0112":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm61,-277r3,-20r96,-1r-1,23","w":206},"\u0118":{"d":"173,-27r1,31v0,0,-1,-1,-7,-1v-35,23,-43,48,3,61r-5,16v-27,-5,-54,-19,-54,-38v0,-15,17,-29,36,-39v-22,-1,-88,-3,-94,-3r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1","w":206},"\u011e":{"d":"234,-110r1,104v-16,6,-49,12,-79,12v-82,0,-134,-46,-134,-105v0,-41,42,-123,178,-160r7,31v-82,16,-150,72,-150,129v0,48,75,96,145,74r-1,-85r33,0xm203,-316r13,15v-25,34,-83,33,-108,1r14,-16v15,23,66,28,81,0","w":266},"\u0122":{"d":"234,-110r1,104v-16,6,-49,12,-79,12v-82,0,-134,-46,-134,-105v0,-41,42,-123,178,-160r7,31v-82,16,-150,72,-150,129v0,48,75,96,145,74r-1,-85r33,0xm111,81r18,-62r26,12r-33,55","w":266},"\u012a":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm21,-277r2,-20r97,-1r-2,23","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u012e":{"d":"81,64r-5,16v-27,-5,-54,-19,-54,-38v0,-15,17,-29,40,-42r-9,0r-1,-252r36,0v-3,39,-2,209,0,252v-45,16,-57,51,-7,64","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0136":{"d":"88,4r-36,0v3,-47,2,-208,0,-260r36,0r-2,144v0,28,1,109,2,116xm240,-24r-24,25v-4,-5,-112,-116,-127,-133v6,-6,109,-108,117,-117r21,24v-14,13,-79,71,-98,90v11,14,97,98,111,111xm108,74r17,-62r27,12r-34,55","w":259,"k":{"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"c":6,"g":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0107":6,"\u010d":6,"\u011f":6,"\u0123":6,"\u0151":6,"\u014d":6,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u011e":5,"\u0122":5,"\u0150":5,"\u014c":5,"s":4,"\u0161":4,"\u015b":4,"\u015f":4,"\u0219":4,"S":4,"\u0160":4,"\u015a":4,"\u015e":4,"\u0218":4}},"\u0139":{"d":"53,-252r36,0v-3,36,-3,167,-3,226v9,0,51,0,86,-1r0,31v-5,0,-112,-4,-121,-4v5,-85,3,-166,2,-252xm50,-283r50,-43r17,25r-57,31","w":191,"k":{"\u2019":2,"\u201d":2,"t":6,"\u0165":6,"\u0163":6,"\u021b":6,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":8,"w":8,"y":12,"\u00fd":12,"\u00ff":12,"\ue03b":12,"\ue03c":12,"\ue03d":12,"T":5,"\u0164":5,"\u0162":5,"\u021a":5,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":7,"W":7,"Y":11,"\u00dd":11,"\u0178":11,"\ue02a":11,"\ue02d":11,"\ue02b":11,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u013d":{"d":"53,-252r36,0v-3,36,-3,167,-3,226v9,0,51,0,86,-1r0,31v-5,0,-112,-4,-121,-4v5,-85,3,-166,2,-252xm124,-190r17,-62r27,12r-33,55","w":191,"k":{"\u2019":2,"\u201d":2,"t":6,"\u0165":6,"\u0163":6,"\u021b":6,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":8,"w":8,"y":12,"\u00fd":12,"\u00ff":12,"\ue03b":12,"\ue03c":12,"\ue03d":12,"T":5,"\u0164":5,"\u0162":5,"\u021a":5,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":7,"W":7,"Y":11,"\u00dd":11,"\u0178":11,"\ue02a":11,"\ue02d":11,"\ue02b":11,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u013b":{"d":"53,-252r36,0v-3,36,-3,167,-3,226v9,0,51,0,86,-1r0,31v-5,0,-112,-4,-121,-4v5,-85,3,-166,2,-252xm81,81r17,-62r27,12r-34,55","w":191,"k":{"\u2019":2,"\u201d":2,"t":6,"\u0165":6,"\u0163":6,"\u021b":6,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":8,"w":8,"y":12,"\u00fd":12,"\u00ff":12,"\ue03b":12,"\ue03c":12,"\ue03d":12,"T":5,"\u0164":5,"\u0162":5,"\u021a":5,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":7,"W":7,"Y":11,"\u00dd":11,"\u0178":11,"\ue02a":11,"\ue02d":11,"\ue02b":11,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0143":{"d":"76,3r-34,-3v3,-27,9,-231,14,-266v10,12,184,192,196,204v0,-10,3,-180,3,-192r33,2v-1,22,-9,169,-10,260v-11,-10,-192,-198,-200,-206v0,13,-2,189,-2,201xm149,-276r49,-43r18,26r-58,30","w":329,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0147":{"d":"76,3r-34,-3v3,-27,9,-231,14,-266v10,12,184,192,196,204v0,-10,3,-180,3,-192r33,2v-1,22,-9,169,-10,260v-11,-10,-192,-198,-200,-206v0,13,-2,189,-2,201xm167,-265r-54,-35r14,-17r40,29r36,-29r14,17","w":329,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0145":{"d":"76,3r-34,-3v3,-27,9,-231,14,-266v10,12,184,192,196,204v0,-10,3,-180,3,-192r33,2v-1,22,-9,169,-10,260v-11,-10,-192,-198,-200,-206v0,13,-2,189,-2,201xm143,74r17,-62r27,12r-34,55","w":329,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0150":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm160,-281r41,-50r20,19r-49,41xm113,-281r32,-49r22,18r-41,41","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u014c":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm111,-277r2,-20r97,-1r-2,23","w":306,"k":{"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"x":6,"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4,"X":5,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"b":4,"m":12,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"M":11,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u00de":4,"\u00c9":4,"\u00ca":4,"\u00cb":4,"\u00c8":4,"\u00cd":4,"\u00ce":4,"\u00cf":4,"\u00cc":4,"\u00d1":4,"\u010e":4,"\u011a":4,"\u0116":4,"\u0112":4,"\u0118":4,"\u012a":4,"\u012e":4,"\u0136":4,"\u0139":4,"\u013d":4,"\u013b":4,"\u0143":4,"\u0147":4,"\u0145":4,"\u0154":4,"\u0158":4,"\u0156":4,"\u0130":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"h":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\ue035":4,"\u012b":4,"\u012f":4,"j":4,"J":4,"d":4,"\u010f":4,"f":4,"k":4,"\u0137":4,"l":4,"\u0142":4,"\u013a":4,"\u013e":4,"\u013c":4,"n":4,"\u00f1":4,"\u0144":4,"\u0148":4,"\u0146":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4}},"\u0154":{"d":"86,-228r2,228r-35,0r-1,-252v17,0,47,2,75,4v98,7,90,95,25,129v9,12,73,93,83,104r-27,21r-96,-126v18,-10,54,-32,54,-67v0,-16,-12,-40,-80,-41xm109,-283r49,-43r17,25r-57,31","w":249,"k":{"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0158":{"d":"86,-228r2,228r-35,0r-1,-252v17,0,47,2,75,4v98,7,90,95,25,129v9,12,73,93,83,104r-27,21r-96,-126v18,-10,54,-32,54,-67v0,-16,-12,-40,-80,-41xm126,-272r-53,-35r14,-17r40,29r36,-29r14,17","w":249,"k":{"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0156":{"d":"86,-228r2,228r-35,0r-1,-252v17,0,47,2,75,4v98,7,90,95,25,129v9,12,73,93,83,104r-27,21r-96,-126v18,-10,54,-32,54,-67v0,-16,-12,-40,-80,-41xm102,81r18,-62r27,12r-34,55","w":249,"k":{"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u015a":{"d":"69,-180v0,45,90,46,90,96v0,35,-37,74,-106,90r-10,-27v35,-7,80,-25,80,-54v0,-40,-99,-55,-89,-99v0,-38,54,-73,103,-84r7,27v-22,4,-75,21,-75,51xm82,-283r50,-43r17,25r-57,31","w":189,"k":{"m":2,"M":2}},"\u015e":{"d":"69,-180v0,45,90,46,90,96v0,22,-15,46,-48,68r-18,35v13,4,26,14,26,27v0,18,-28,35,-59,38r-3,-16v37,1,46,-35,11,-44r14,-27v-9,4,-19,6,-29,9r-10,-27v35,-7,80,-25,80,-54v0,-40,-99,-55,-89,-99v0,-38,54,-73,103,-84r7,27v-22,4,-75,21,-75,51","w":189,"k":{"m":2,"M":2}},"\u0218":{"d":"69,-180v0,45,90,46,90,96v0,35,-37,74,-106,90r-10,-27v35,-7,80,-25,80,-54v0,-40,-99,-55,-89,-99v0,-38,54,-73,103,-84r7,27v-22,4,-75,21,-75,51xm73,81r17,-62r27,12r-33,55","w":189,"k":{"m":2,"M":2}},"\u0164":{"d":"138,0r-39,0v3,-20,2,-167,2,-225v-41,0,-93,2,-102,3r0,-31v82,7,154,7,236,0r0,31v-5,-1,-72,-3,-102,-3xm119,-272r-54,-35r15,-17r39,29r36,-29r14,17","w":234,"k":{"\u2019":-29,"\u201d":-29,"v":-4,"w":-4,"y":-6,"\u00fd":-6,"\u00ff":-6,"\ue03b":-6,"\ue03c":-6,"\ue03d":-6,"V":-4,"W":-4,"Y":-5,"\u00dd":-5,"\u0178":-5,"\ue02a":-5,"\ue02d":-5,"\ue02b":-5,")":-4,"]":-4,"}":-4,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"m":16,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"\u0102":18,"\u0100":18,"\u0104":18,"M":14,"c":14,"g":14,"o":14,"q":14,"\u00f8":14,"\u0153":14,"\u00e7":14,"\u00f3":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u00f5":14,"\u0107":14,"\u010d":14,"\u011f":14,"\u0123":14,"\u0151":14,"\u014d":14,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u011e":13,"\u0122":13,"\u0150":13,"\u014c":13,",":16,".":16,":":-7,";":-7,"\u037e":-7,"\u0387":-7}},"\u0162":{"d":"138,0r-39,0v3,-20,2,-167,2,-225v-41,0,-93,2,-102,3r0,-31v82,7,154,7,236,0r0,31v-5,-1,-72,-3,-102,-3xm95,81r17,-62r27,12r-34,55","w":234,"k":{"\u2019":-29,"\u201d":-29,"v":-4,"w":-4,"y":-6,"\u00fd":-6,"\u00ff":-6,"\ue03b":-6,"\ue03c":-6,"\ue03d":-6,"V":-4,"W":-4,"Y":-5,"\u00dd":-5,"\u0178":-5,"\ue02a":-5,"\ue02d":-5,"\ue02b":-5,")":-4,"]":-4,"}":-4,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"m":16,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"\u0102":18,"\u0100":18,"\u0104":18,"M":14,"c":14,"g":14,"o":14,"q":14,"\u00f8":14,"\u0153":14,"\u00e7":14,"\u00f3":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u00f5":14,"\u0107":14,"\u010d":14,"\u011f":14,"\u0123":14,"\u0151":14,"\u014d":14,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u011e":13,"\u0122":13,"\u0150":13,"\u014c":13,",":16,".":16,":":-7,";":-7,"\u037e":-7,"\u0387":-7}},"\u0170":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm150,-281r41,-50r20,19r-49,41xm103,-281r32,-49r22,18r-41,41","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u016a":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm100,-277r3,-20r97,-1r-2,23","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0172":{"d":"151,-22v101,5,78,-135,78,-234r35,0v0,116,11,238,-84,257v-37,23,-48,49,0,63r-5,16v-27,-5,-54,-19,-54,-38v0,-14,14,-27,31,-37v-25,3,-60,-1,-89,-42v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u016e":{"d":"264,-256v3,133,6,264,-117,262v-19,0,-59,-3,-84,-43v-25,-21,-24,-135,-23,-213r34,0v-2,7,-2,58,-2,83v-3,92,12,142,79,145v101,5,78,-135,78,-234r35,0xm152,-265v-18,0,-35,-10,-35,-27v0,-41,74,-40,74,-5v0,20,-18,32,-39,32xm153,-278v9,0,18,-5,18,-17v0,-8,-7,-15,-17,-15v-8,0,-17,5,-17,16v0,9,7,16,16,16","w":299,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":4,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"M":4,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0179":{"d":"33,-231r2,-28v23,3,192,7,199,10v-17,18,-156,220,-160,225v19,0,139,-1,149,-2r-1,30v-9,-1,-189,-2,-206,-5v16,-16,154,-215,163,-227v-14,0,-136,-3,-146,-3xm108,-283r49,-43r18,25r-58,31","w":247},"\u017b":{"d":"33,-231r2,-28v23,3,192,7,199,10v-17,18,-156,220,-160,225v19,0,139,-1,149,-2r-1,30v-9,-1,-189,-2,-206,-5v16,-16,154,-215,163,-227v-14,0,-136,-3,-146,-3xm131,-275r-26,-26r26,-25r26,25","w":247},"\u0130":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm70,-275r-25,-26r25,-25r26,25","w":140,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u0103":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm162,-286r12,15v-25,31,-79,31,-103,0r14,-15v14,22,62,26,77,0","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u0101":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm76,-249r2,-19r92,-1r-1,22","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u0105":{"d":"80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm33,6r-28,-15r119,-216v28,44,106,181,127,213v-31,14,-88,56,-23,74r-4,14v-26,-4,-52,-18,-52,-36v0,-14,15,-27,44,-44v-8,-16,-34,-62,-37,-67r-112,4v-4,10,-29,63,-34,73","w":255,"k":{"\u2019":13,"\u201d":13,"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":21,"w":21,"x":2,"y":24,"\u00fd":24,"\u00ff":24,"\ue03b":24,"\ue03c":24,"\ue03d":24}},"\u0107":{"d":"197,-24r3,27v-6,1,-21,2,-41,2v-112,0,-139,-61,-139,-91v0,-52,49,-114,161,-134r5,28v-71,9,-132,48,-132,101v0,36,30,70,108,70v13,0,27,-1,35,-3xm122,-255r47,-41r16,24r-54,29","w":211,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"c":6,"g":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0107":6,"\u010d":6,"\u011f":6,"\u0123":6,"\u0151":6,"\u014d":6}},"\u010d":{"d":"197,-24r3,27v-6,1,-21,2,-41,2v-112,0,-139,-61,-139,-91v0,-52,49,-114,161,-134r5,28v-71,9,-132,48,-132,101v0,36,30,70,108,70v13,0,27,-1,35,-3xm145,-244r-51,-34r13,-16r38,28r34,-28r14,16","w":211,"k":{"y":2,"\u00fd":2,"\u00ff":2,"\ue03b":2,"\ue03c":2,"\ue03d":2,"c":6,"g":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0107":6,"\u010d":6,"\u011f":6,"\u0123":6,"\u0151":6,"\u014d":6}},"\u010f":{"d":"45,1r3,-136v0,-6,-1,-70,-2,-79v19,0,52,0,80,2v107,8,117,59,117,80v0,98,-112,133,-198,133xm78,-190r0,165v88,-6,132,-55,132,-100v0,-47,-50,-66,-132,-65xm118,-244r-51,-34r14,-16r38,28r34,-28r13,16","w":259,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u0111":{"d":"49,-97v-15,1,-26,2,-32,2r-2,-22v6,0,17,0,34,-1r-1,-96v19,0,53,-1,81,2v108,10,115,58,115,81v0,94,-106,132,-197,132xm80,-99r0,74v88,-7,131,-52,131,-99v0,-49,-49,-67,-131,-66r0,70v18,-1,39,-1,54,-2r0,22v-16,0,-36,0,-54,1","w":261},"\u011b":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm105,-244r-51,-34r14,-16r37,28r35,-28r13,16","w":190},"\u0117":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm105,-248r-24,-24r24,-24r25,24","w":190},"\u0113":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm54,-249r3,-19r91,-1r-1,22","w":190},"\u0119":{"d":"161,-24r1,27v-42,11,-52,48,-6,59r-4,14v-26,-4,-52,-18,-52,-36v0,-14,16,-27,35,-37v-25,-1,-84,-3,-89,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1","w":190},"\u011f":{"d":"210,-94r0,89v-15,5,-45,10,-72,10v-74,0,-118,-39,-118,-90v0,-36,38,-104,158,-135r7,28v-71,13,-132,59,-132,108v-10,41,67,81,126,61r-2,-71r33,0xm185,-286r12,15v-25,31,-79,31,-103,0r14,-15v14,22,62,26,77,0","w":236},"\u0123":{"d":"210,-94r0,89v-15,5,-45,10,-72,10v-74,0,-118,-39,-118,-90v0,-36,38,-104,158,-135r7,28v-71,13,-132,59,-132,108v-10,41,67,81,126,61r-2,-71r33,0xm97,74r17,-59r26,12r-32,52","w":236},"\u012b":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm15,-249r3,-19r91,-1r-1,22","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u012f":{"d":"73,62r-5,14v-26,-4,-51,-18,-51,-36v0,-14,14,-27,39,-40r-10,0r2,-126v0,-5,-1,-81,-2,-88r35,0v-3,32,-2,177,-1,214v-43,17,-55,49,-7,62","k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0137":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm219,-22r-23,25v-4,-4,-101,-101,-115,-116v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75v10,12,88,81,101,93xm97,67r17,-59r26,12r-32,52","w":236,"k":{"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"c":5,"g":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u011f":5,"\u0123":5,"\u0151":5,"\u014d":5,"s":3,"\u0161":3,"\u015b":3,"\u015f":3,"\u0219":3}},"\u013a":{"d":"46,-214r36,0v-3,29,-3,140,-3,190v8,0,47,-1,82,-2r0,29v-10,0,-108,-3,-116,-3v5,-73,3,-141,1,-214xm40,-255r47,-41r16,24r-54,29","w":177,"k":{"\u2019":2,"\u201d":2,"t":5,"\u0165":5,"\u0163":5,"\u021b":5,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":6,"w":6,"y":10,"\u00fd":10,"\u00ff":10,"\ue03b":10,"\ue03c":10,"\ue03d":10,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u013e":{"d":"46,-214r36,0v-3,29,-3,140,-3,190v8,0,47,-1,82,-2r0,29v-10,0,-108,-3,-116,-3v5,-73,3,-141,1,-214xm118,-156r17,-58r25,11r-32,53","w":177,"k":{"\u2019":2,"\u201d":2,"t":5,"\u0165":5,"\u0163":5,"\u021b":5,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":6,"w":6,"y":10,"\u00fd":10,"\u00ff":10,"\ue03b":10,"\ue03c":10,"\ue03d":10,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u013c":{"d":"46,-214r36,0v-3,29,-3,140,-3,190v8,0,47,-1,82,-2r0,29v-10,0,-108,-3,-116,-3v5,-73,3,-141,1,-214xm75,74r16,-59r26,12r-32,52","w":177,"k":{"\u2019":2,"\u201d":2,"t":5,"\u0165":5,"\u0163":5,"\u021b":5,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":6,"w":6,"y":10,"\u00fd":10,"\u00ff":10,"\ue03b":10,"\ue03c":10,"\ue03d":10,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0144":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165xm122,-248r46,-40r17,23r-55,29","w":289,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0148":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165xm148,-237r-52,-34r14,-16r38,28r34,-28r13,16","w":289,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0146":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165xm123,67r17,-59r26,12r-32,52","w":289,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0151":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm151,-253r38,-48r19,18r-46,40xm106,-253r31,-47r20,17r-39,39","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u014d":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm95,-249r2,-19r92,-1r-1,22","w":278,"k":{"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"x":5,"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"b":3,"m":10,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"h":3,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\ue035":3,"\u012b":3,"\u012f":3,"j":3,"d":3,"\u010f":3,"f":3,"k":3,"\u0137":3,"l":3,"\u0142":3,"\u013a":3,"\u013e":3,"\u013c":3,"n":3,"\u00f1":3,"\u0144":3,"\u0148":3,"\u0146":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3}},"\u0155":{"d":"79,-191r2,191r-34,0r-1,-214v15,0,44,0,71,2v87,7,83,82,22,112v8,11,67,75,76,84r-25,22v-4,-4,-78,-95,-88,-108v16,-8,49,-25,49,-56v0,-14,-11,-33,-72,-33xm91,-255r47,-41r16,24r-54,29","w":221,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0159":{"d":"79,-191r2,191r-34,0r-1,-214v15,0,44,0,71,2v87,7,83,82,22,112v8,11,67,75,76,84r-25,22v-4,-4,-78,-95,-88,-108v16,-8,49,-25,49,-56v0,-14,-11,-33,-72,-33xm114,-244r-51,-34r13,-16r38,28r34,-28r14,16","w":221,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0157":{"d":"79,-191r2,191r-34,0r-1,-214v15,0,44,0,71,2v87,7,83,82,22,112v8,11,67,75,76,84r-25,22v-4,-4,-78,-95,-88,-108v16,-8,49,-25,49,-56v0,-14,-11,-33,-72,-33xm90,74r17,-59r25,12r-32,52","w":221,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u015b":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42xm74,-255r47,-41r16,24r-54,29","w":172,"k":{"m":2}},"\u015f":{"d":"63,-153v8,38,84,38,84,82v0,22,-17,44,-48,59r-23,34v12,4,26,13,26,25v0,18,-27,33,-56,36r-4,-15v36,1,45,-33,11,-42r17,-26v-8,3,-16,4,-24,6r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42","w":172,"k":{"m":2}},"\u0219":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42xm65,74r17,-59r26,12r-32,52","w":172,"k":{"m":2}},"\u0165":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3xm105,-244r-51,-34r13,-16r38,28r34,-28r14,16","w":203,"k":{"\u2019":-26,"\u201d":-26,"v":-3,"w":-3,"y":-5,"\u00fd":-5,"\u00ff":-5,"\ue03b":-5,"\ue03c":-5,"\ue03d":-5,")":-3,"]":-3,"}":-3,"a":17,"\u00e6":17,"\u00e1":17,"\u00e2":17,"\u00e4":17,"\u00e0":17,"\u00e5":17,"\u00e3":17,"\u0103":17,"\u0101":17,"\u0105":17,"m":13,"c":12,"g":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u011f":12,"\u0123":12,"\u0151":12,"\u014d":12,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"\u0163":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3xm81,74r17,-59r25,12r-32,52","w":203,"k":{"\u2019":-26,"\u201d":-26,"v":-3,"w":-3,"y":-5,"\u00fd":-5,"\u00ff":-5,"\ue03b":-5,"\ue03c":-5,"\ue03d":-5,")":-3,"]":-3,"}":-3,"a":17,"\u00e6":17,"\u00e1":17,"\u00e2":17,"\u00e4":17,"\u00e0":17,"\u00e5":17,"\u00e3":17,"\u0103":17,"\u0101":17,"\u0105":17,"m":13,"c":12,"g":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u011f":12,"\u0123":12,"\u0151":12,"\u014d":12,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"\u0171":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm130,-253r39,-48r19,18r-47,40xm86,-253r30,-47r20,17r-38,39","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u016b":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm89,-249r2,-19r92,-1r-2,22","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u0173":{"d":"134,-20v87,4,70,-112,69,-197r33,0v2,103,4,201,-77,219v-36,23,-44,46,1,60r-4,14v-52,-5,-72,-50,-22,-71v-24,0,-53,-2,-79,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u016f":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm169,-268v1,37,-70,42,-71,4v-2,-38,73,-38,71,-4xm133,-250v9,0,17,-5,17,-16v0,-8,-6,-14,-16,-14v-8,0,-17,5,-17,15v0,9,7,15,16,15","w":266,"k":{"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"m":3,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u017a":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2xm82,-255r47,-41r16,24r-55,29","w":216},"\u017c":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2xm112,-248r-25,-24r25,-24r24,24","w":216},"\u0384":{"d":"145,-193r-7,-63r30,-2r-7,65r-16,0","w":306},"\u0391":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102","w":288,"k":{"\u03ac":-4,"\ue001":-4,"\u03b1":-4,"\u03bb":-4,"\ue000":-4,"\ue012":-4,"\u03c7":2,"\ue003":2,"\u03b4":-14,"\ue004":-14,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-12,"\ue016":-12,"\u03c9":-12,"\ue015":-12,"\u03c6":4,"\ue019":4,"\u03c8":24,"\ue01c":24,"\"":14,"'":14,"\u2018":14,"\u201c":14,"\u2019":14,"\u201d":14,"\u03c3":-4,"\ue020":-4,"\u03c4":24,"\ue022":24,"\u03cd":32,"\ue028":32,"\u03c5":32,"\u03cb":32,"\ue024":32,"\ue026":32,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u0386":-4,"\u0391":-4,"\u039b":-4,"\u03a7":2,"\u2206":-13,"\u0394":-13,"\u038f":-11,"\u2126":-11,"\u03a9":-11,"\u03a6":4,"\u03c0":4,"\ue01a":4,"\u03a0":4,"\u03a8":22,"\u03cc":4,"\ue018":4,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u03a3":-4,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a1":3,"\u03aa":3,"\u03a4":22,"\u038e":29,"\u03a5":29,"\u03ab":29}},"\u0392":{"d":"52,2r2,-175v0,-11,-1,-71,-2,-79v19,0,36,1,50,2v73,7,83,35,83,55v0,14,-8,38,-46,56v25,4,57,25,57,57v1,44,-57,85,-144,84xm85,-121r0,97v39,-4,75,-22,75,-56v0,-25,-30,-43,-75,-41xm85,-229r0,88v40,-1,66,-26,66,-50v0,-32,-41,-37,-66,-38","w":230,"k":{"\u03ac":6,"\ue001":6,"\u03b1":8,"\u03bb":8,"\ue000":8,"\ue012":8,"\u03c7":4,"\ue003":4,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-6,"\ue016":-6,"\"":5,"'":5,"\u2018":5,"\u201c":5,"\u2019":5,"\u201d":5,"\u03c5":10,"\u03cb":10,"\ue024":10,"\ue026":10,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u0386":7,"\u0391":7,"\u039b":7,"\u03a7":4,"\u2206":5,"\u0394":5,"\u038f":-5,"\u0392":4,"\u0393":4,"\u0395":4,"\u0397":4,"\u0399":4,"\u039a":4,"\u039d":4,"\u03a1":4,"\u03aa":4,"\u03a5":9,"\u03ab":9,"\ue013":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03b6":4,"\ue030":4,"\u03bc":4,"\u039c":4,")":5,"]":5,"}":5,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u0396":4}},"\u0393":{"d":"89,0r-36,0r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1","w":175,"k":{"\u03b1":18,"\u03bb":18,"\ue000":18,"\ue012":18,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":8,"\ue015":8,"\u03c6":8,"\ue019":8,"\u03c8":-8,"\ue01c":-8,"\"":-4,"'":-4,"\u2018":-4,"\u201c":-4,"\u2019":-4,"\u201d":-4,"\u03c4":-12,"\ue022":-12,"\u03cd":-26,"\ue028":-26,"\u0391":16,"\u039b":16,"\u2206":18,"\u0394":18,"\u038f":-23,"\u2126":7,"\u03a9":7,"\u03a6":7,"\u03c0":-4,"\ue01a":-4,"\u03a0":-4,"\u03a8":-7,"\u03cc":-26,"\ue018":-26,"\u03b8":10,"\u03bf":10,"\ue023":10,"\ue017":10,"\u03a4":-11,"\u038e":-23,"\ue013":12,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":12,"\u039c":11,")":-4,"]":-4,"}":-4,"\u0388":-27,"\u0389":-27,"\u038a":-27,"\u038c":-23,"\u0398":9,"\u039f":9,":":14,";":14,"\u037e":14,"\u0387":14}},"\u2206":{"d":"142,-261r145,262r-286,-1v18,-31,114,-215,141,-261xm235,-28v-4,-6,-80,-149,-94,-176r-92,176r186,0","w":285,"k":{"\u03ac":-16,"\ue001":-16,"\u03b1":-16,"\u03bb":-16,"\ue000":-16,"\ue012":-16,"\u03c7":-4,"\ue003":-4,"\u03b4":-18,"\ue004":-18,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-20,"\ue016":-20,"\u03c9":-20,"\ue015":-20,"\u03c8":24,"\ue01c":24,"\"":14,"'":14,"\u2018":14,"\u201c":14,"\u2019":14,"\u201d":14,"\u03c3":-8,"\ue020":-8,"\u03c4":24,"\ue022":24,"\u03cd":28,"\ue028":28,"\u03c5":32,"\u03cb":32,"\ue024":32,"\ue026":32,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u0386":-14,"\u0391":-14,"\u039b":-14,"\u03a7":-4,"\u2206":-16,"\u0394":-16,"\u038f":-18,"\u2126":-18,"\u03a9":-18,"\u03a8":22,"\u03b8":-2,"\u03bf":-2,"\ue023":-2,"\ue017":-2,"\u03a3":-7,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a1":3,"\u03aa":3,"\u03a4":22,"\u038e":25,"\u03a5":29,"\u03ab":29,"\ue013":-6,"\u03b6":-10,"\ue030":-10,"\u03bc":-6,"\u039c":-5,")":-4,"]":-4,"}":-4,"\u0396":-9,"\u0398":-2,"\u039f":-2,"\u03be":-6,"\ue029":-6,"\u039e":-5}},"\u0395":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1","w":206,"k":{"\u03ce":-6,"\ue016":-6,"\u03cd":-6,"\ue028":-6,"\u038f":-5,"\u03cc":-6,"\ue018":-6,"\u038e":-4,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},"\u0396":{"d":"33,-231r2,-28v23,3,192,7,199,10v-17,18,-156,220,-160,225v19,0,139,-1,149,-2r-1,30v-9,-1,-189,-2,-206,-5v16,-16,154,-215,163,-227v-14,0,-136,-3,-146,-3","w":247,"k":{"\u03ce":-10,"\ue016":-10,"\u03c8":-4,"\ue01c":-4,"\u03c4":-12,"\ue022":-12,"\u03cd":-3,"\ue028":-3,"\u038f":-16,"\u03a8":-4,"\u03cc":-10,"\ue018":-10,"\u03a4":-11,"\u038e":-16,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8,"\u0388":-16,"\u0389":-16,"\u038a":-16,"\u038c":-16}},"\u0397":{"d":"88,0r-35,0r-1,-252r36,0r-2,114r161,-6r-1,-108r36,0r-3,150v0,5,1,95,2,102r-36,0r2,-121r-161,7","w":333,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-6,"\ue016":-6,"\u03c6":4,"\ue019":4,"\u03cd":-6,"\ue028":-6,"\u03c5":4,"\u03cb":4,"\ue024":4,"\ue026":4,"\u0391":3,"\u039b":3,"\u2206":3,"\u0394":3,"\u038f":-5,"\u03a6":4,"\u03cc":-6,"\ue018":-6,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u038e":-5,"\u03a5":4,"\u03ab":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5,"\u0398":4,"\u039f":4}},"\u0398":{"d":"145,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,119,45,119,123v0,56,-37,141,-139,141xm148,-21v54,0,101,-41,101,-112v0,-64,-42,-98,-89,-98v-64,0,-104,51,-104,113v0,54,35,97,92,97xm94,-108r-1,-26v27,0,100,-4,119,-6r2,26v-35,1,-95,4,-120,6","w":305,"k":{"\u03b1":8,"\u03bb":8,"\ue000":8,"\ue012":8,"\u03c7":6,"\ue003":6,"\u03b4":7,"\ue004":7,"\u03b9":5,"\u03ca":5,"\ue00c":5,"\ue00d":5,"\u03ce":-4,"\ue016":-4,"\u03c8":-8,"\ue01c":-8,"\u03cd":-4,"\ue028":-4,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":5,"\ue005":5,"\ue007":5,"\ue00b":5,"\ue010":5,"\ue014":5,"\ue01e":5,"\u03b2":5,"\u03b5":5,"\u03b7":5,"\u03b3":5,"\u03ba":5,"\u03bd":5,"\u03c1":5,"\u0391":7,"\u039b":7,"\u03a7":5,"\u2206":6,"\u0394":6,"\u038f":-9,"\u03a8":-7,"\u03cc":-4,"\ue018":-4,"\u0392":4,"\u0393":4,"\u0395":4,"\u0397":4,"\u0399":4,"\u039a":4,"\u039d":4,"\u03a1":4,"\u03aa":4,"\u038e":-4,"\u03a5":7,"\u03ab":7,"\ue013":6,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03b6":4,"\ue030":4,"\u03bc":6,"\u039c":5,"\u0388":-11,"\u0389":-11,"\u038a":-11,"\u0396":4,"\u038c":-9}},"\u0399":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0","w":140,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-6,"\ue016":-6,"\u03c6":4,"\ue019":4,"\u03cd":-6,"\ue028":-6,"\u03c5":4,"\u03cb":4,"\ue024":4,"\ue026":4,"\u0391":3,"\u039b":3,"\u2206":3,"\u0394":3,"\u038f":-5,"\u03a6":4,"\u03cc":-6,"\ue018":-6,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u038e":-5,"\u03a5":4,"\u03ab":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5,"\u0398":4,"\u039f":4}},"\u039a":{"d":"88,4r-36,0v3,-47,2,-208,0,-260r36,0r-2,144v0,28,1,109,2,116xm240,-24r-24,25v-4,-5,-112,-116,-127,-133v6,-6,109,-108,117,-117r21,24v-14,13,-79,71,-98,90v11,14,97,98,111,111","w":259,"k":{"\u03ce":-4,"\ue016":-4,"\u03c6":8,"\ue019":8,"\u03cd":-4,"\ue028":-4,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\u038f":-4,"\u03a6":7,"\u03cc":-4,"\ue018":-4,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\u038e":-4,"\u03a5":7,"\u03ab":7,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-4,"\u0398":5,"\u039f":5}},"\u039b":{"d":"36,6r-30,-16v21,-35,123,-242,135,-255v31,51,117,215,141,252r-31,19v-4,-8,-107,-204,-111,-210v-5,9,-97,195,-104,210","w":288,"k":{"\u03ac":-4,"\ue001":-4,"\u03b1":-4,"\u03bb":-4,"\ue000":-4,"\ue012":-4,"\u03c7":2,"\ue003":2,"\u03b4":-14,"\ue004":-14,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-12,"\ue016":-12,"\u03c9":-12,"\ue015":-12,"\u03c6":4,"\ue019":4,"\u03c8":24,"\ue01c":24,"\"":14,"'":14,"\u2018":14,"\u201c":14,"\u2019":14,"\u201d":14,"\u03c3":-4,"\ue020":-4,"\u03c4":24,"\ue022":24,"\u03cd":32,"\ue028":32,"\u03c5":32,"\u03cb":32,"\ue024":32,"\ue026":32,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u0386":-4,"\u0391":-4,"\u039b":-4,"\u03a7":2,"\u2206":-13,"\u0394":-13,"\u038f":-11,"\u2126":-11,"\u03a9":-11,"\u03a6":4,"\u03c0":4,"\ue01a":4,"\u03a0":4,"\u03a8":22,"\u03cc":4,"\ue018":4,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u03a3":-4,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a1":3,"\u03aa":3,"\u03a4":22,"\u038e":29,"\u03a5":29,"\u03ab":29}},"\u039c":{"d":"45,9r-30,-11v8,-15,82,-249,87,-256v11,23,78,156,89,174v14,-20,85,-153,95,-163v13,30,78,205,93,243r-31,13v-9,-27,-64,-178,-70,-191v-13,20,-77,133,-92,156v-21,-39,-66,-126,-80,-159v-7,22,-57,180,-61,194","w":393,"k":{"\u03c6":4,"\ue019":4,"\u03c8":18,"\ue01c":18,"\"":15,"'":15,"\u2018":15,"\u201c":15,"\u2019":15,"\u201d":15,"\u03c4":20,"\ue022":20,"\u03cd":20,"\ue028":20,"\u03c5":32,"\u03cb":32,"\ue024":32,"\ue026":32,"\u03a6":4,"\u03a8":16,"\u03a4":18,"\u038e":18,"\u03a5":29,"\u03ab":29}},"\u039d":{"d":"76,3r-34,-3v3,-27,9,-231,14,-266v10,12,184,192,196,204v0,-10,3,-180,3,-192r33,2v-1,22,-9,169,-10,260v-11,-10,-192,-198,-200,-206v0,13,-2,189,-2,201","w":329,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-6,"\ue016":-6,"\u03c6":4,"\ue019":4,"\u03cd":-6,"\ue028":-6,"\u03c5":4,"\u03cb":4,"\ue024":4,"\ue026":4,"\u0391":3,"\u039b":3,"\u2206":3,"\u0394":3,"\u038f":-5,"\u03a6":4,"\u03cc":-6,"\ue018":-6,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u038e":-5,"\u03a5":4,"\u03ab":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5,"\u0398":4,"\u039f":4}},"\u039e":{"d":"41,-219r-1,-30v41,0,129,-2,183,-4r1,30v-48,0,-135,2,-183,4xm32,-1r0,-31v57,3,129,4,197,1r1,31v-48,0,-152,-1,-198,-1xm51,-110r-1,-30v39,1,128,-2,159,-3r1,30v-25,-1,-113,2,-159,3","w":262,"k":{"\u03ac":-6,"\ue001":-6,"\u03ce":-10,"\ue016":-10,"\u03cd":-6,"\ue028":-6,"\u0386":-5,"\u038f":-9,"\u03cc":-10,"\ue018":-10,"\u038e":-5,"\u03ad":-10,"\u03ae":-10,"\u03af":-10,"\ue006":-10,"\ue008":-10,"\ue00e":-10,"\u0388":-9,"\u0389":-9,"\u038a":-9,"\u038c":-9}},"\u039f":{"d":"151,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,120,45,120,123v0,56,-38,141,-140,141xm154,-21v54,0,102,-41,102,-112v0,-64,-43,-98,-90,-98v-64,0,-103,51,-103,113v0,54,34,97,91,97","w":306,"k":{"\u03b1":8,"\u03bb":8,"\ue000":8,"\ue012":8,"\u03c7":6,"\ue003":6,"\u03b4":7,"\ue004":7,"\u03b9":5,"\u03ca":5,"\ue00c":5,"\ue00d":5,"\u03ce":-4,"\ue016":-4,"\u03c8":-8,"\ue01c":-8,"\u03cd":-4,"\ue028":-4,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":5,"\ue005":5,"\ue007":5,"\ue00b":5,"\ue010":5,"\ue014":5,"\ue01e":5,"\u03b2":5,"\u03b5":5,"\u03b7":5,"\u03b3":5,"\u03ba":5,"\u03bd":5,"\u03c1":5,"\u0391":7,"\u039b":7,"\u03a7":5,"\u2206":6,"\u0394":6,"\u038f":-9,"\u03a8":-7,"\u03cc":-4,"\ue018":-4,"\u0392":4,"\u0393":4,"\u0395":4,"\u0397":4,"\u0399":4,"\u039a":4,"\u039d":4,"\u03a1":4,"\u03aa":4,"\u038e":-4,"\u03a5":7,"\u03ab":7,"\ue013":6,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03b6":4,"\ue030":4,"\u03bc":6,"\u039c":5,"\u0388":-11,"\u0389":-11,"\u038a":-11,"\u0396":4,"\u038c":-9}},"\u03a0":{"d":"152,-249v15,0,102,-1,142,-4r0,30v-6,0,-20,-1,-34,-2r2,225r-36,0r2,-164v0,-15,-1,-54,-2,-61v-22,0,-111,1,-135,2r0,223r-34,0r0,-222v-13,1,-26,2,-34,2r0,-29r129,0","w":313,"k":{"\u03ce":-16,"\ue016":-16,"\u03c8":-4,"\ue01c":-4,"\u03c3":-2,"\ue020":-2,"\u03cd":-18,"\ue028":-18,"\u038f":-14,"\u03a8":-4,"\u03cc":-16,"\ue018":-16,"\u03a3":-2,"\u038e":-16,"\u03ad":-18,"\u03ae":-18,"\u03af":-18,"\ue006":-18,"\ue008":-18,"\ue00e":-18,"\u0388":-16,"\u0389":-16,"\u038a":-16,"\u038c":-14,":":4,";":4,"\u037e":4,"\u0387":4}},"\u03a1":{"d":"53,-252v62,-2,146,15,146,74v0,49,-45,89,-113,103r0,75r-33,0r0,-252xm86,-225r0,125v45,-10,79,-33,79,-73v0,-11,-6,-51,-79,-52","w":221,"k":{"\u03ac":4,"\ue001":4,"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03c7":4,"\ue003":4,"\u03b4":20,"\ue004":20,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-10,"\ue016":-10,"\u03cd":-13,"\ue028":-13,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u0386":4,"\u0391":18,"\u039b":18,"\u03a7":4,"\u2206":18,"\u0394":18,"\u038f":-9,"\u03cc":-10,"\ue018":-10,"\u0392":4,"\u0393":4,"\u0395":4,"\u0397":4,"\u0399":4,"\u039a":4,"\u039d":4,"\u03a1":4,"\u03aa":4,"\u038e":-9,"\ue013":10,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03bc":10,"\u039c":9,"\u0388":-9,"\u0389":-9,"\u038a":-9,"\u038c":-9,",":18,".":18}},"\u03a3":{"d":"77,-210v33,29,71,53,105,80v-27,25,-80,60,-110,88v41,8,123,20,145,23r-5,29v-49,-9,-154,-28,-200,-38r0,-3v39,-31,100,-77,124,-97v-16,-23,-86,-59,-119,-93v46,-12,134,-32,185,-44r6,28v-42,8,-89,19,-131,27","w":231,"k":{"\u03ac":-4,"\ue001":-4,"\u03b1":-4,"\u03bb":-4,"\ue000":-4,"\ue012":-4,"\u03ce":-14,"\ue016":-14,"\u03c9":-4,"\ue015":-4,"\u03cd":-10,"\ue028":-10,"\u0386":-4,"\u0391":-4,"\u039b":-4,"\u038f":-13,"\u2126":-4,"\u03a9":-4,"\u03cc":-10,"\ue018":-10,"\u038e":-9,"\u03ad":-10,"\u03ae":-10,"\u03af":-10,"\ue006":-10,"\ue008":-10,"\ue00e":-10,"\u0388":-9,"\u0389":-9,"\u038a":-9,"\u038c":-9}},"\u03a4":{"d":"138,0r-39,0v3,-20,2,-167,2,-225v-41,0,-93,2,-102,3r0,-31v82,7,154,7,236,0r0,31v-5,-1,-72,-3,-102,-3","w":234,"k":{"\u03ac":4,"\ue001":4,"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-31,"\ue016":-31,"\u03c6":4,"\ue019":4,"\u03c8":-10,"\ue01c":-10,"\"":-29,"'":-29,"\u2018":-29,"\u201c":-29,"\u2019":-29,"\u201d":-29,"\u03c3":-4,"\ue020":-4,"\u03c4":-16,"\ue022":-16,"\u03cd":-27,"\ue028":-27,"\u03c5":-6,"\u03cb":-6,"\ue024":-6,"\ue026":-6,"\u0391":18,"\u039b":18,"\u2206":18,"\u0394":18,"\u038f":-32,"\u03a6":4,"\u03a8":-9,"\u03cc":-31,"\ue018":-31,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u03a3":-4,"\u03a4":-14,"\u038e":-29,"\u03a5":-5,"\u03ab":-5,"\ue013":16,"\u03ad":-31,"\u03ae":-31,"\u03af":-31,"\ue006":-31,"\ue008":-31,"\ue00e":-31,"\u03bc":16,"\u039c":14,")":-4,"]":-4,"}":-4,"\u0388":-32,"\u0389":-32,"\u038a":-32,"\u038c":-32,"\u0398":7,"\u039f":7,":":-7,";":-7,"\u037e":-7,"\u0387":-7}},"\u03a5":{"d":"250,-230v-63,22,-121,92,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,60,-100,112,-120","w":246,"k":{"\u03b1":24,"\u03bb":24,"\ue000":24,"\ue012":24,"\u03b4":24,"\ue004":24,"\u03ce":-24,"\ue016":-24,"\u03c9":6,"\ue015":6,"\u03c6":6,"\ue019":6,"\u03c8":-10,"\ue01c":-10,"\"":-17,"'":-17,"\u2018":-17,"\u201c":-17,"\u2019":-17,"\u201d":-17,"\u03c3":-6,"\ue020":-6,"\u03c4":-20,"\ue022":-20,"\u03cd":-17,"\ue028":-17,"\u03c5":-4,"\u03cb":-4,"\ue024":-4,"\ue026":-4,"\u0391":22,"\u039b":22,"\u2206":22,"\u0394":22,"\u038f":-29,"\u2126":5,"\u03a9":5,"\u03a6":5,"\u03a8":-9,"\u03cc":-24,"\ue018":-24,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u03a3":-5,"\u03a4":-18,"\u038e":-29,"\u03a5":-4,"\u03ab":-4,"\ue013":18,"\u03ad":-24,"\u03ae":-24,"\u03af":-24,"\ue006":-24,"\ue008":-24,"\ue00e":-24,"\u03bc":18,"\u039c":16,")":-17,"]":-17,"}":-17,"\u0388":-29,"\u0389":-29,"\u038a":-29,"\u038c":-29,"\u0398":7,"\u039f":7,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u03a6":{"d":"168,-9v0,6,1,19,1,31r-33,0v0,-12,1,-21,1,-30v-61,-4,-116,-46,-116,-112v0,-77,58,-122,116,-128v0,-5,-1,-16,-1,-27r33,0v0,12,-1,22,-1,26v56,3,116,45,116,115v0,68,-45,117,-116,125xm137,-33r0,-190v-44,8,-82,42,-82,101v0,56,41,83,82,89xm168,-34v40,-7,82,-31,82,-98v0,-63,-43,-87,-82,-91r0,189","w":304,"k":{"\u03ac":-4,"\ue001":-4,"\u03b1":8,"\u03bb":8,"\ue000":8,"\ue012":8,"\u03c7":4,"\ue003":4,"\u03b4":4,"\ue004":4,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-9,"\ue016":-9,"\u03c8":-6,"\ue01c":-6,"\u03cd":-9,"\ue028":-9,"\u03c5":10,"\u03cb":10,"\ue024":10,"\ue026":10,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u0386":-4,"\u0391":7,"\u039b":7,"\u03a7":4,"\u2206":4,"\u0394":4,"\u038f":-5,"\u03a8":-5,"\u03cc":-9,"\ue018":-9,"\u0392":4,"\u0393":4,"\u0395":4,"\u0397":4,"\u0399":4,"\u039a":4,"\u039d":4,"\u03a1":4,"\u03aa":4,"\u038e":-4,"\u03a5":9,"\u03ab":9,"\ue013":3,"\u03ad":-9,"\u03ae":-9,"\u03af":-9,"\ue006":-9,"\ue008":-9,"\ue00e":-9,"\u03bc":3,"\u039c":3,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},"\u03a7":{"d":"43,6r-23,-23v9,-8,86,-99,97,-112r-85,-100r26,-24v9,13,55,70,81,102v12,-14,76,-89,86,-102r24,24v-13,12,-84,87,-92,99v11,12,84,95,97,111r-26,25v-8,-12,-84,-104,-93,-114","w":272,"k":{"\u03c7":4,"\ue003":4,"\u03ce":-12,"\ue016":-12,"\u03c6":4,"\ue019":4,"\u03cd":-4,"\ue028":-4,"\u03a7":4,"\u038f":-11,"\u03a6":4,"\u03cc":-12,"\ue018":-12,"\u03b8":2,"\u03bf":2,"\ue023":2,"\ue017":2,"\u038e":-4,"\u03ad":-12,"\u03ae":-12,"\u03af":-12,"\ue006":-12,"\ue008":-12,"\ue00e":-12,"\u0388":-11,"\u0389":-11,"\u038a":-11,"\u038c":-11,"\u0398":2,"\u039f":2}},"\u03a8":{"d":"248,-247r32,7v-6,22,-9,46,-15,77v-13,60,-48,95,-102,99v0,28,1,59,1,64r-34,0v0,-12,1,-32,1,-63v-55,-3,-90,-40,-100,-95v-6,-31,-12,-61,-18,-85r33,-6v2,18,9,63,15,89v11,50,41,70,71,71r-1,-171r33,0r-1,171v31,-3,60,-18,72,-78v5,-27,11,-64,13,-80","w":291,"k":{"\u03b1":28,"\u03bb":28,"\ue000":28,"\ue012":28,"\u03b4":28,"\ue004":28,"\u03ce":-15,"\ue016":-15,"\u03c6":-4,"\ue019":-4,"\u03c8":-4,"\ue01c":-4,"\"":-4,"'":-4,"\u2018":-4,"\u201c":-4,"\u2019":-4,"\u201d":-4,"\u03c4":-12,"\ue022":-12,"\u03cd":-11,"\ue028":-11,"\u03c5":-6,"\u03cb":-6,"\ue024":-6,"\ue026":-6,"\u0391":25,"\u039b":25,"\u2206":25,"\u0394":25,"\u038f":-23,"\u03a6":-4,"\u03c0":-4,"\ue01a":-4,"\u03a0":-4,"\u03a8":-4,"\u03cc":-15,"\ue018":-15,"\u03b8":-4,"\u03bf":-4,"\ue023":-4,"\ue017":-4,"\u03a4":-11,"\u038e":-22,"\u03a5":-5,"\u03ab":-5,"\ue013":20,"\u03ad":-11,"\u03ae":-11,"\u03af":-11,"\ue006":-11,"\ue008":-11,"\ue00e":-11,"\u03bc":20,"\u039c":18,")":-4,"]":-4,"}":-4,"\u0388":-25,"\u0389":-25,"\u038a":-25,"\u038c":-27,"\u0398":-4,"\u039f":-4}},"\u2126":{"d":"306,-27r1,30v-12,-1,-121,-3,-128,-3r-1,-6v31,-19,73,-71,73,-129v0,-62,-40,-96,-86,-96v-62,0,-96,50,-96,107v0,51,31,96,57,119r-1,5v-7,0,-105,1,-121,1r1,-29v19,1,54,2,68,2r1,-3v-15,-14,-40,-53,-40,-95v0,-69,51,-134,134,-134v66,0,117,47,117,119v0,52,-27,89,-51,115v17,0,50,-1,72,-3","w":317,"k":{"\u03ac":-8,"\ue001":-8,"\u03b1":-8,"\u03bb":-8,"\ue000":-8,"\ue012":-8,"\u03b4":-12,"\ue004":-12,"\u03ce":-4,"\ue016":-4,"\u03c9":-4,"\ue015":-4,"\"":5,"'":5,"\u2018":5,"\u201c":5,"\u2019":5,"\u201d":5,"\u03c4":4,"\ue022":4,"\u03cd":-4,"\ue028":-4,"\u03c5":14,"\u03cb":14,"\ue024":14,"\ue026":14,"\u0386":-7,"\u0391":-7,"\u039b":-7,"\u2206":-11,"\u0394":-11,"\u038f":-11,"\u2126":-4,"\u03a9":-4,"\u03cc":-4,"\ue018":-4,"\u03a4":4,"\u03a5":13,"\u03ab":13,"\ue013":-4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03bc":-4,"\u039c":-4,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-11}},"\u0386":{"d":"37,7r-30,-19v21,-35,121,-240,133,-253v32,51,118,214,142,251r-31,20v-7,-14,-45,-87,-49,-93r-125,5v-4,7,-34,77,-40,89xm89,-105r102,-5v-4,-8,-48,-91,-52,-97v-5,8,-47,96,-50,102xm39,-193r-7,-63r29,-2r-6,65r-16,0","w":288,"k":{"\u03ac":-4,"\ue001":-4,"\u03b1":-4,"\u03bb":-4,"\ue000":-4,"\ue012":-4,"\u03c7":2,"\ue003":2,"\u03b4":-14,"\ue004":-14,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-12,"\ue016":-12,"\u03c9":-12,"\ue015":-12,"\u03c6":4,"\ue019":4,"\u03c8":24,"\ue01c":24,"\"":14,"'":14,"\u2018":14,"\u201c":14,"\u2019":14,"\u201d":14,"\u03c3":-4,"\ue020":-4,"\u03c4":24,"\ue022":24,"\u03cd":32,"\ue028":32,"\u03c5":32,"\u03cb":32,"\ue024":32,"\ue026":32,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u0386":-4,"\u0391":-4,"\u039b":-4,"\u03a7":2,"\u2206":-13,"\u0394":-13,"\u038f":-11,"\u2126":-11,"\u03a9":-11,"\u03a6":4,"\u03c0":4,"\ue01a":4,"\u03a0":4,"\u03a8":22,"\u03cc":4,"\ue018":4,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u03a3":-4,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a1":3,"\u03aa":3,"\u03a4":22,"\u038e":29,"\u03a5":29,"\u03ab":29}},"\u0388":{"d":"173,-27r1,31v-6,0,-114,-4,-121,-4r0,-252v9,0,102,-6,114,-7r1,29v-12,0,-76,1,-82,1r0,92v6,0,53,-2,71,-4r1,28v-8,0,-65,-1,-72,-1r0,88v9,0,57,1,87,-1xm0,-193r-8,-63r30,-2r-7,65r-15,0","w":206,"k":{"\u03ce":-6,"\ue016":-6,"\u03cd":-6,"\ue028":-6,"\u038f":-5,"\u03cc":-6,"\ue018":-6,"\u038e":-4,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},"\u0389":{"d":"88,0r-35,0r-1,-252r36,0r-2,114r161,-6r-1,-108r36,0r-3,150v0,5,1,95,2,102r-36,0r2,-121r-161,7xm0,-193r-8,-63r30,-2r-7,65r-15,0","w":333,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-6,"\ue016":-6,"\u03c6":4,"\ue019":4,"\u03cd":-6,"\ue028":-6,"\u03c5":4,"\u03cb":4,"\ue024":4,"\ue026":4,"\u0391":3,"\u039b":3,"\u2206":3,"\u0394":3,"\u038f":-5,"\u03a6":4,"\u03cc":-6,"\ue018":-6,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u038e":-5,"\u03a5":4,"\u03ab":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5,"\u0398":4,"\u039f":4}},"\u038a":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm0,-193r-8,-63r30,-2r-7,65r-15,0","w":140,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-6,"\ue016":-6,"\u03c6":4,"\ue019":4,"\u03cd":-6,"\ue028":-6,"\u03c5":4,"\u03cb":4,"\ue024":4,"\ue026":4,"\u0391":3,"\u039b":3,"\u2206":3,"\u0394":3,"\u038f":-5,"\u03a6":4,"\u03cc":-6,"\ue018":-6,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u038e":-5,"\u03a5":4,"\u03ab":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5,"\u0398":4,"\u039f":4}},"\u03aa":{"d":"88,-252v-3,39,-2,209,0,252r-35,0r-1,-252r36,0xm31,-275r-23,-23r23,-23r23,23xm110,-275r-23,-23r23,-23r23,23","w":140,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-6,"\ue016":-6,"\u03c6":4,"\ue019":4,"\u03cd":-6,"\ue028":-6,"\u03c5":4,"\u03cb":4,"\ue024":4,"\ue026":4,"\u0391":3,"\u039b":3,"\u2206":3,"\u0394":3,"\u038f":-5,"\u03a6":4,"\u03cc":-6,"\ue018":-6,"\u03b8":4,"\u03bf":4,"\ue023":4,"\ue017":4,"\u038e":-5,"\u03a5":4,"\u03ab":4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5,"\u0398":4,"\u039f":4}},"\u038c":{"d":"151,6v-78,0,-123,-56,-123,-119v0,-80,56,-145,143,-145v68,0,120,45,120,123v0,56,-38,141,-140,141xm154,-21v54,0,102,-41,102,-112v0,-64,-43,-98,-90,-98v-64,0,-103,51,-103,113v0,54,34,97,91,97xm0,-193r-7,-63r29,-2r-6,65r-16,0","w":312,"k":{"\u03b1":8,"\u03bb":8,"\ue000":8,"\ue012":8,"\u03c7":6,"\ue003":6,"\u03b4":7,"\ue004":7,"\u03b9":5,"\u03ca":5,"\ue00c":5,"\ue00d":5,"\u03ce":-4,"\ue016":-4,"\u03c8":-8,"\ue01c":-8,"\u03cd":-4,"\ue028":-4,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":5,"\ue005":5,"\ue007":5,"\ue00b":5,"\ue010":5,"\ue014":5,"\ue01e":5,"\u03b2":5,"\u03b5":5,"\u03b7":5,"\u03b3":5,"\u03ba":5,"\u03bd":5,"\u03c1":5,"\u0391":7,"\u039b":7,"\u03a7":5,"\u2206":6,"\u0394":6,"\u038f":-9,"\u03a8":-7,"\u03cc":-4,"\ue018":-4,"\u0392":4,"\u0393":4,"\u0395":4,"\u0397":4,"\u0399":4,"\u039a":4,"\u039d":4,"\u03a1":4,"\u03aa":4,"\u038e":-4,"\u03a5":7,"\u03ab":7,"\ue013":6,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03b6":4,"\ue030":4,"\u03bc":6,"\u039c":5,"\u0388":-11,"\u0389":-11,"\u038a":-11,"\u0396":4,"\u038c":-9}},"\u038e":{"d":"283,-230v-63,22,-121,93,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,61,-100,113,-120xm0,-193r-7,-63r29,-2r-6,65r-16,0","w":278,"k":{"\u03b1":24,"\u03bb":24,"\ue000":24,"\ue012":24,"\u03b4":24,"\ue004":24,"\u03ce":-24,"\ue016":-24,"\u03c9":6,"\ue015":6,"\u03c6":6,"\ue019":6,"\u03c8":-10,"\ue01c":-10,"\"":-17,"'":-17,"\u2018":-17,"\u201c":-17,"\u2019":-17,"\u201d":-17,"\u03c3":-6,"\ue020":-6,"\u03c4":-20,"\ue022":-20,"\u03cd":-17,"\ue028":-17,"\u03c5":-4,"\u03cb":-4,"\ue024":-4,"\ue026":-4,"\u0391":22,"\u039b":22,"\u2206":22,"\u0394":22,"\u038f":-29,"\u2126":5,"\u03a9":5,"\u03a6":5,"\u03a8":-9,"\u03cc":-24,"\ue018":-24,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u03a3":-5,"\u03a4":-18,"\u038e":-29,"\u03a5":-4,"\u03ab":-4,"\ue013":18,"\u03ad":-24,"\u03ae":-24,"\u03af":-24,"\ue006":-24,"\ue008":-24,"\ue00e":-24,"\u03bc":18,"\u039c":16,")":-17,"]":-17,"}":-17,"\u0388":-29,"\u0389":-29,"\u038a":-29,"\u038c":-29,"\u0398":7,"\u039f":7,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u03ab":{"d":"250,-230v-63,22,-121,92,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,60,-100,112,-120xm89,-275r-23,-23r23,-23r23,23xm168,-275r-23,-23r23,-23r23,23","w":246,"k":{"\u03b1":24,"\u03bb":24,"\ue000":24,"\ue012":24,"\u03b4":24,"\ue004":24,"\u03ce":-24,"\ue016":-24,"\u03c9":6,"\ue015":6,"\u03c6":6,"\ue019":6,"\u03c8":-10,"\ue01c":-10,"\"":-17,"'":-17,"\u2018":-17,"\u201c":-17,"\u2019":-17,"\u201d":-17,"\u03c3":-6,"\ue020":-6,"\u03c4":-20,"\ue022":-20,"\u03cd":-17,"\ue028":-17,"\u03c5":-4,"\u03cb":-4,"\ue024":-4,"\ue026":-4,"\u0391":22,"\u039b":22,"\u2206":22,"\u0394":22,"\u038f":-29,"\u2126":5,"\u03a9":5,"\u03a6":5,"\u03a8":-9,"\u03cc":-24,"\ue018":-24,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u03a3":-5,"\u03a4":-18,"\u038e":-29,"\u03a5":-4,"\u03ab":-4,"\ue013":18,"\u03ad":-24,"\u03ae":-24,"\u03af":-24,"\ue006":-24,"\ue008":-24,"\ue00e":-24,"\u03bc":18,"\u039c":16,")":-17,"]":-17,"}":-17,"\u0388":-29,"\u0389":-29,"\u038a":-29,"\u038c":-29,"\u0398":7,"\u039f":7,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u038f":{"d":"7,-193r-7,-63r29,-2r-6,65r-16,0xm240,-24v15,0,48,-1,74,-3r1,30v-2,0,-125,-3,-132,-3r-1,-5v31,-18,73,-72,73,-130v0,-62,-41,-96,-87,-96v-63,0,-95,49,-95,108v0,51,31,95,57,118r-1,5v-7,0,-118,1,-122,1r2,-30v21,2,55,3,69,3r1,-3v-17,-14,-40,-51,-40,-93v0,-73,48,-136,133,-136v66,0,117,47,117,119v0,51,-26,89,-49,115","w":326,"k":{"\u03ac":-8,"\ue001":-8,"\u03b1":-8,"\u03bb":-8,"\ue000":-8,"\ue012":-8,"\u03b4":-12,"\ue004":-12,"\u03ce":-4,"\ue016":-4,"\u03c9":-4,"\ue015":-4,"\"":5,"'":5,"\u2018":5,"\u201c":5,"\u2019":5,"\u201d":5,"\u03c4":4,"\ue022":4,"\u03cd":-4,"\ue028":-4,"\u03c5":14,"\u03cb":14,"\ue024":14,"\ue026":14,"\u0386":-7,"\u0391":-7,"\u039b":-7,"\u2206":-11,"\u0394":-11,"\u038f":-11,"\u2126":-4,"\u03a9":-4,"\u03cc":-4,"\ue018":-4,"\u03a4":4,"\u03a5":13,"\u03ab":13,"\ue013":-4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03bc":-4,"\u039c":-4,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-11}},"\u03b1":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84","w":255},"\u03b2":{"d":"46,2r2,-149v0,-9,-1,-61,-2,-67v17,0,39,0,52,1v66,5,76,30,76,47v0,13,-12,33,-44,49v24,3,54,20,54,47v1,42,-55,74,-138,72xm78,-102r0,80v36,-3,72,-15,72,-46v0,-24,-31,-36,-72,-34xm78,-193r0,72v36,0,64,-20,64,-41v0,-27,-41,-31,-64,-31","w":208,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":3,"\ue003":3,"\u03b4":5,"\ue004":5,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-5,"\ue016":-5,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\ue013":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3,"\u03b6":3,"\ue030":3,"\u03bc":3}},"\u03b3":{"d":"82,0r-36,0r2,-125v0,-7,0,-73,-3,-89v8,0,106,-3,116,-3r0,28v-35,-1,-74,-1,-82,-1","w":177,"k":{"\u03b1":15,"\u03bb":15,"\ue000":15,"\ue012":15,"\u03b4":17,"\ue004":17,"\u03ce":-12,"\ue016":-12,"\u03c9":6,"\ue015":6,"\u03c6":6,"\ue019":6,"\u03c8":-6,"\ue01c":-6,"\"":-4,"'":-4,"\u2018":-4,"\u201c":-4,"\u2019":-4,"\u201d":-4,"\u03c4":-10,"\ue022":-10,"\u03cd":-21,"\ue028":-21,"\u03c0":-3,"\ue01a":-3,"\u03cc":-12,"\ue018":-12,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\ue013":10,"\u03ad":-24,"\u03ae":-24,"\u03af":-24,"\ue006":-24,"\ue008":-24,"\ue00e":-24,"\u03bc":10,")":-4,"]":-4,"}":-4,":":13,";":13,"\u037e":13,"\u0387":13}},"\u03b4":{"d":"122,-224r125,225r-246,-1v16,-27,98,-184,121,-224xm122,-167r-73,139v14,1,136,2,148,-1","w":245,"k":{"\u03ac":-13,"\ue001":-13,"\u03b1":-13,"\u03bb":-13,"\ue000":-13,"\ue012":-13,"\u03c7":-3,"\ue003":-3,"\u03b4":-15,"\ue004":-15,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-16,"\ue016":-16,"\u03c9":-16,"\ue015":-16,"\u03c8":20,"\ue01c":20,"\"":13,"'":13,"\u2018":13,"\u201c":13,"\u2019":13,"\u201d":13,"\u03c3":-6,"\ue020":-6,"\u03c4":20,"\ue022":20,"\u03cd":23,"\ue028":23,"\u03c5":26,"\u03cb":26,"\ue024":26,"\ue026":26,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u03b8":-2,"\u03bf":-2,"\ue023":-2,"\ue017":-2,"\ue013":-5,"\u03b6":-8,"\ue030":-8,"\u03bc":-5,")":-3,"]":-3,"}":-3,"\u03be":-4,"\ue029":-4}},"\u03b5":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1","w":190,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u03b6":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2","w":216,"k":{"\u03ce":-15,"\ue016":-15,"\u03c8":-3,"\ue01c":-3,"\u03c4":-10,"\ue022":-10,"\u03cd":-15,"\ue028":-15,"\u03cc":-15,"\ue018":-15,"\u03ad":-15,"\u03ae":-15,"\u03af":-15,"\ue006":-15,"\ue008":-15,"\ue00e":-15}},"\u03b7":{"d":"80,0r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0r-2,96r138,-6r-1,-90r35,0r-1,214r-34,0r1,-102r-138,6","w":296,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03b8":{"d":"133,5v-72,0,-113,-47,-113,-101v0,-68,52,-123,132,-123v63,0,110,38,110,104v0,48,-35,120,-129,120xm136,-19v49,0,93,-34,93,-94v0,-55,-39,-82,-82,-82v-59,0,-94,42,-94,94v0,46,31,82,83,82xm87,-94r-1,-26v25,0,91,-3,109,-5r2,25v-32,1,-87,4,-110,6","w":281,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":5,"\ue003":5,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-11,"\ue016":-11,"\u03c8":-6,"\ue01c":-6,"\u03cd":-11,"\ue028":-11,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u03cc":-11,"\ue018":-11,"\ue013":5,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03b6":3,"\ue030":3,"\u03bc":5}},"\u03b9":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0","k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03ba":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm219,-22r-23,25v-4,-4,-101,-101,-115,-116v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75v10,12,88,81,101,93","w":236,"k":{"\u03ce":-3,"\ue016":-3,"\u03c6":6,"\ue019":6,"\u03cd":-5,"\ue028":-5,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\u03cc":-3,"\ue018":-3,"\u03b8":5,"\u03bf":5,"\ue023":5,"\ue017":5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u03bb":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-33,-58,-68,-129,-97,-177v-27,50,-55,103,-91,177","w":255},"\u03bd":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165","w":289,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03be":{"d":"41,-185r-1,-27v38,0,120,-2,170,-4r1,28v-45,0,-126,2,-170,3xm32,-1r1,-27v53,2,120,3,183,0r1,28v-44,0,-142,-1,-185,-1xm50,-93r-1,-27v37,1,119,-1,148,-2r1,27v-23,-1,-106,1,-148,2","w":244,"k":{"\u03ac":-5,"\ue001":-5,"\u03ce":-8,"\ue016":-8,"\u03cd":-5,"\ue028":-5,"\u03cc":-8,"\ue018":-8,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8}},"\u03bf":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82","w":278,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":5,"\ue003":5,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-11,"\ue016":-11,"\u03c8":-6,"\ue01c":-6,"\u03cd":-11,"\ue028":-11,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u03cc":-11,"\ue018":-11,"\ue013":5,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03b6":3,"\ue030":3,"\u03bc":5}},"\u03c0":{"d":"282,-220r0,26v-6,0,-19,0,-33,-1r2,195r-34,0r0,-195v-21,0,-106,0,-128,1v-4,49,-2,146,0,194r-34,0r0,-193v-13,1,-25,3,-32,3r0,-26","w":309,"k":{"\u03ce":-13,"\ue016":-13,"\u03c8":-3,"\ue01c":-3,"\u03c3":-2,"\ue020":-2,"\u03cd":-15,"\ue028":-15,"\u03cc":-13,"\ue018":-13,"\u03ad":-15,"\u03ae":-15,"\u03af":-15,"\ue006":-15,"\ue008":-15,"\ue00e":-15,",":4,".":4,":":4,";":4,"\u037e":4,"\u0387":4}},"\u03c1":{"d":"47,-214v56,-3,136,11,136,62v0,44,-44,78,-105,89r1,63r-33,0xm78,-190r0,103v39,-8,71,-26,71,-61v0,-11,-7,-41,-71,-42","w":201,"k":{"\u03ac":3,"\ue001":3,"\u03b1":17,"\u03bb":17,"\ue000":17,"\ue012":17,"\u03c7":3,"\ue003":3,"\u03b4":17,"\ue004":17,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-8,"\ue016":-8,"\u03cd":-9,"\ue028":-9,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u03cc":-8,"\ue018":-8,"\ue013":8,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03bc":8,")":5,"]":5,"}":5,",":16,".":16}},"\u03c3":{"d":"167,-110r0,4v-31,24,-67,43,-95,70r127,18r-5,27v-61,-10,-123,-22,-184,-32r0,-3r114,-81v-35,-26,-76,-47,-109,-76r170,-37r6,26r-115,23","w":213,"k":{"\u03ac":-3,"\ue001":-3,"\u03b1":-3,"\u03bb":-3,"\ue000":-3,"\ue012":-3,"\u03ce":-12,"\ue016":-12,"\u03c9":-3,"\ue015":-3,"\u03cd":-13,"\ue028":-13,"\u03cc":-8,"\ue018":-8,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13}},"\u03c4":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3","w":203,"k":{"\u03b1":17,"\u03bb":17,"\ue000":17,"\ue012":17,"\u03b4":17,"\ue004":17,"\u03ce":-33,"\ue016":-33,"\u03c6":3,"\ue019":3,"\u03c8":-8,"\ue01c":-8,"\"":-26,"'":-26,"\u2018":-26,"\u201c":-26,"\u2019":-26,"\u201d":-26,"\u03c3":-3,"\ue020":-3,"\u03c4":-13,"\ue022":-13,"\u03cd":-33,"\ue028":-33,"\u03c5":-5,"\u03cb":-5,"\ue024":-5,"\ue026":-5,"\u03cc":-33,"\ue018":-33,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":13,"\u03ad":-33,"\u03ae":-33,"\u03af":-33,"\ue006":-33,"\ue008":-33,"\ue00e":-33,"\u03bc":13,")":-3,"]":-3,"}":-3,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"\u03c5":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100","w":210,"k":{"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":5,"\ue015":5,"\u03c6":5,"\ue019":5,"\u03c8":-8,"\ue01c":-8,"\"":-16,"'":-16,"\u2018":-16,"\u201c":-16,"\u2019":-16,"\u201d":-16,"\u03c3":-5,"\ue020":-5,"\u03c4":-17,"\ue022":-17,"\u03cd":-30,"\ue028":-30,"\u03c5":-3,"\u03cb":-3,"\ue024":-3,"\ue026":-3,"\u03cc":-26,"\ue018":-26,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":15,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":15,")":-16,"]":-16,"}":-16,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"\u2013":-6,"\u2014":-6,"-":-6,"\u00ad":-6}},"\u03c6":{"d":"164,28r-33,0v0,-11,1,-20,1,-28v-60,-4,-113,-42,-113,-102v0,-71,57,-110,114,-116v0,-5,-1,-15,-1,-25r33,0v-1,11,-2,20,-2,24v54,3,114,41,114,105v0,62,-45,106,-114,114v0,6,1,18,1,28xm132,-23r1,-172v-43,8,-81,37,-81,91v0,51,39,76,80,81xm163,-195r0,172v39,-6,81,-30,81,-90v0,-57,-42,-78,-81,-82","w":294,"k":{"\u03ac":-3,"\ue001":-3,"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":3,"\ue003":3,"\u03b4":3,"\ue004":3,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-8,"\ue016":-8,"\u03c8":-5,"\ue01c":-5,"\"":5,"'":5,"\u2018":5,"\u201c":5,"\u2019":5,"\u201d":5,"\u03cd":-8,"\ue028":-8,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u03cc":-8,"\ue018":-8,"\ue013":3,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8,"\u03bc":3,")":5,"]":5,"}":5}},"\u03c7":{"d":"35,6r-22,-21v9,-7,77,-83,87,-95v-13,-15,-63,-69,-76,-83r24,-23v9,11,48,60,72,87v11,-12,68,-76,77,-87r22,22v-10,10,-75,73,-83,83v10,11,75,82,88,95r-25,22v-9,-10,-74,-88,-82,-97v-4,5,-76,91,-82,97","w":237,"k":{"\u03c7":3,"\ue003":3,"\u03ce":-10,"\ue016":-10,"\u03c6":3,"\ue019":3,"\"":-3,"'":-3,"\u2018":-3,"\u201c":-3,"\u2019":-3,"\u201d":-3,"\u03cd":-8,"\ue028":-8,"\u03cc":-10,"\ue018":-10,"\u03b8":2,"\u03bf":2,"\ue023":2,"\ue017":2,"\u03ad":-10,"\u03ae":-10,"\u03af":-10,"\ue006":-10,"\ue008":-10,"\ue00e":-10}},"\u03c8":{"d":"231,-208r30,5v-6,18,-8,40,-14,66v-12,51,-45,79,-95,83v0,24,2,50,2,54r-32,0v0,-10,1,-27,1,-53v-51,-3,-83,-34,-93,-81v-5,-26,-11,-50,-17,-70r31,-6v2,15,9,53,14,75v10,42,37,59,65,59r-1,-143r31,0r-1,143v28,-1,56,-15,68,-65v5,-23,9,-54,11,-67","w":273,"k":{"\u03b1":23,"\u03bb":23,"\ue000":23,"\ue012":23,"\u03b4":23,"\ue004":23,"\u03ce":-21,"\ue016":-21,"\u03c6":-3,"\ue019":-3,"\u03c8":-3,"\ue01c":-3,"\"":-4,"'":-4,"\u2018":-4,"\u201c":-4,"\u2019":-4,"\u201d":-4,"\u03c4":-10,"\ue022":-10,"\u03cd":-20,"\ue028":-20,"\u03c5":-5,"\u03cb":-5,"\ue024":-5,"\ue026":-5,"\u03c0":-3,"\ue01a":-3,"\u03cc":-24,"\ue018":-24,"\u03b8":-3,"\u03bf":-3,"\ue023":-3,"\ue017":-3,"\ue013":17,"\u03ad":-23,"\u03ae":-23,"\u03af":-23,"\ue006":-23,"\ue008":-23,"\ue00e":-23,"\u03bc":17,")":-4,"]":-4,"}":-4}},"\u03c9":{"d":"286,-26r2,29v-8,1,-114,-3,-121,-3r0,-5v28,-16,67,-60,67,-110v0,-53,-37,-80,-80,-80v-58,0,-88,42,-88,90v0,44,27,81,52,101r-1,4v-7,0,-109,1,-113,1r1,-28v19,-1,55,6,62,0v-12,-10,-35,-42,-35,-78v0,-59,47,-114,125,-114v62,0,110,40,110,101v0,43,-23,78,-45,93v10,6,43,-1,64,-1","w":298,"k":{"\u03ac":-6,"\ue001":-6,"\u03b1":-6,"\u03bb":-6,"\ue000":-6,"\ue012":-6,"\u03b4":-10,"\ue004":-10,"\u03ce":-10,"\ue016":-10,"\u03c9":-3,"\ue015":-3,"\u03c4":3,"\ue022":3,"\u03cd":-4,"\ue028":-4,"\u03c5":12,"\u03cb":12,"\ue024":12,"\ue026":12,"\u03cc":-10,"\ue018":-10,"\ue013":-3,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u03bc":-3,")":-6,"]":-6,"}":-6}},"\u03ac":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm34,-155r-7,-64r29,-1r-6,65r-16,0","w":255},"\u03ad":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm1,-155r-7,-64r29,-1r-6,65r-16,0","w":190,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u03ae":{"d":"80,0r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0r-2,96r138,-6r-1,-90r35,0r-1,214r-34,0r1,-102r-138,6xm0,-155r-7,-64r29,-1r-6,65r-16,0","w":296,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03af":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm-2,-155r-7,-64r30,-1r-7,65r-16,0","k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03ca":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm23,-248r-21,-22r21,-21r22,21xm99,-248r-22,-22r22,-21r22,21","k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03cc":{"d":"147,5v-72,0,-111,-47,-111,-101v0,-68,51,-123,130,-123v63,0,109,38,109,104v0,48,-34,120,-128,120xm150,-19v49,0,92,-34,92,-94v0,-55,-38,-82,-81,-82v-57,0,-92,42,-92,94v0,46,31,82,81,82xm7,-155r-7,-64r30,-1r-7,65r-16,0","w":302,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":5,"\ue003":5,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-11,"\ue016":-11,"\u03c8":-6,"\ue01c":-6,"\u03cd":-11,"\ue028":-11,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u03cc":-11,"\ue018":-11,"\ue013":5,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03b6":3,"\ue030":3,"\u03bc":5}},"\u03cd":{"d":"255,-192v-51,17,-107,76,-96,154v0,4,1,32,2,38r-34,0r1,-65v-1,-61,-43,-106,-85,-126r13,-26v46,23,69,54,91,99v16,-46,55,-84,98,-100xm0,-155r-7,-64r29,-1r-6,65r-16,0","w":249,"k":{"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":5,"\ue015":5,"\u03c6":5,"\ue019":5,"\u03c8":-8,"\ue01c":-8,"\"":-16,"'":-16,"\u2018":-16,"\u201c":-16,"\u2019":-16,"\u201d":-16,"\u03c3":-5,"\ue020":-5,"\u03c4":-17,"\ue022":-17,"\u03cd":-30,"\ue028":-30,"\u03c5":-3,"\u03cb":-3,"\ue024":-3,"\ue026":-3,"\u03cc":-26,"\ue018":-26,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":15,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":15,")":-16,"]":-16,"}":-16,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"\u2013":-6,"\u2014":-6,"-":-6,"\u00ad":-6}},"\u03cb":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm69,-248r-21,-22r21,-21r22,21xm145,-248r-22,-22r22,-21r21,21","w":210,"k":{"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":5,"\ue015":5,"\u03c6":5,"\ue019":5,"\u03c8":-8,"\ue01c":-8,"\"":-16,"'":-16,"\u2018":-16,"\u201c":-16,"\u2019":-16,"\u201d":-16,"\u03c3":-5,"\ue020":-5,"\u03c4":-17,"\ue022":-17,"\u03cd":-30,"\ue028":-30,"\u03c5":-3,"\u03cb":-3,"\ue024":-3,"\ue026":-3,"\u03cc":-26,"\ue018":-26,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":15,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":15,")":-16,"]":-16,"}":-16,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"\u2013":-6,"\u2014":-6,"-":-6,"\u00ad":-6}},"\u03ce":{"d":"295,-26r2,29v-8,1,-114,-3,-121,-3r0,-5v28,-16,67,-60,67,-110v0,-53,-37,-80,-80,-80v-58,0,-88,42,-88,90v0,44,27,81,52,101r-1,4v-7,0,-109,1,-113,1r1,-28v19,-1,55,6,62,0v-12,-10,-35,-42,-35,-78v0,-59,47,-114,125,-114v62,0,110,40,110,101v0,43,-23,78,-45,93v10,6,43,-1,64,-1xm7,-155r-7,-64r29,-1r-6,65r-16,0","w":298,"k":{"\u03ac":-6,"\ue001":-6,"\u03b1":-6,"\u03bb":-6,"\ue000":-6,"\ue012":-6,"\u03b4":-10,"\ue004":-10,"\u03ce":-10,"\ue016":-10,"\u03c9":-3,"\ue015":-3,"\u03c4":3,"\ue022":3,"\u03cd":-4,"\ue028":-4,"\u03c5":12,"\u03cb":12,"\ue024":12,"\ue026":12,"\u03cc":-10,"\ue018":-10,"\ue013":-3,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u03bc":-3,")":-6,"]":-6,"}":-6}},"\u0390":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm23,-248r-21,-22r21,-21r22,21xm99,-248r-22,-22r22,-21r22,21"},"\u03b0":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm69,-248r-21,-22r21,-21r22,21xm145,-248r-22,-22r22,-21r21,21","w":210},"\u03c2":{"d":"167,-110r0,4v-31,24,-67,43,-95,70r127,18r-5,27v-61,-10,-123,-22,-184,-32r0,-3r114,-81v-35,-26,-76,-47,-109,-76r170,-37r6,26r-115,23","w":213},"\u037e":{"d":"28,25r6,-79r34,7r-26,74xm29,-140r0,-38r39,0r0,38r-39,0","w":97,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u038f":-5,"\u03cc":-5,"\ue018":-5,"\u038e":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},"\u03f0":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm118,-115v32,35,173,124,83,192r-18,-17v29,-24,24,-46,1,-70v-15,-17,-88,-88,-103,-103v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75","w":236},"\u0387":{"d":"28,-117r0,-41r41,0r0,41r-41,0","w":97,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u038f":-5,"\u03cc":-5,"\ue018":-5,"\u038e":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-5}},"\u20ac":{"d":"90,-125v-2,7,-2,18,-2,27v28,0,57,-2,104,-3r-1,23v-46,0,-69,1,-98,1v12,34,66,55,124,46r2,26v-5,1,-17,2,-29,2v-82,0,-118,-38,-130,-73v-7,0,-20,1,-27,2r-1,-23v4,0,17,-1,25,-1v-2,-6,-1,-17,1,-24v-8,0,-15,0,-24,1r1,-23v6,0,22,0,28,-1v18,-48,66,-89,139,-106r6,27v-47,9,-95,35,-112,77v28,-1,49,-1,100,-5r-1,23v-50,2,-76,3,-105,4","w":254},"\uf7e1":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm101,-255r47,-41r16,24r-54,29","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\u212e":{"d":"64,-46v35,59,139,58,180,4r21,0v-26,30,-67,48,-112,48v-77,0,-140,-56,-140,-126v0,-70,63,-126,140,-126v78,1,142,56,141,129r-230,2r0,69xm242,-194v-32,-62,-146,-58,-178,1v1,23,-3,51,2,70r175,0v3,-21,0,-48,1,-71","w":306},"\u2202":{"d":"31,-218r-11,-24v67,-46,161,-7,161,108v0,91,-47,138,-99,138v-50,0,-73,-39,-73,-77v0,-49,34,-88,79,-88v30,0,50,17,58,31v10,-85,-59,-125,-115,-88xm45,-73v0,30,16,48,41,48v30,0,51,-35,56,-74v-6,-17,-24,-33,-48,-33v-27,0,-49,26,-49,59","w":193},"\u220f":{"d":"221,-204r-33,0r0,236r-34,0r0,-236r-83,0r0,236r-34,0r0,-236r-34,0r0,-30r218,0r0,30","w":224},"\u2211":{"d":"187,32r-183,0r0,-21r88,-111r-84,-110r0,-24r168,0r0,30r-122,1r77,102r-81,104r137,0r0,29","w":185},"\u2219":{"d":"28,-101r0,-40r41,0r0,40r-41,0","w":97},"\u221a":{"d":"211,-298r-83,331r-25,0r-58,-153r-27,12r-7,-19r52,-21r51,145r70,-295r27,0","w":204},"\u221e":{"d":"252,-95v0,30,-24,54,-57,54v-27,0,-46,-21,-63,-38v-19,18,-37,38,-67,38v-31,0,-53,-22,-53,-54v0,-29,24,-54,56,-54v27,0,47,20,64,37v19,-18,37,-37,67,-37v31,0,53,23,53,54xm148,-95v16,28,78,49,78,0v0,-18,-12,-31,-29,-31v-20,0,-36,17,-49,31xm67,-64v19,0,36,-17,49,-31v-13,-13,-28,-31,-48,-31v-18,0,-31,14,-31,31v0,18,13,31,30,31","w":263},"\u222b":{"d":"43,-202v-1,-60,17,-91,70,-83r-4,23v-34,-6,-38,18,-38,63v0,53,4,112,4,167v0,64,-20,96,-72,83r5,-23v33,7,40,-11,40,-59v0,-56,-5,-117,-5,-171","w":116},"\u2248":{"d":"64,-155v40,1,47,25,86,25v17,0,32,-12,41,-21r15,16v-12,15,-33,29,-56,29v-40,-1,-48,-25,-86,-25v-17,0,-33,12,-42,22r-14,-17v12,-14,33,-29,56,-29xm65,-82v40,1,48,25,86,25v17,0,33,-12,42,-22r14,16v-12,16,-33,30,-56,30v-39,-1,-48,-26,-86,-26v-16,0,-32,12,-42,22r-13,-17v12,-15,32,-28,55,-28","w":214},"\u2260":{"d":"200,-49r-111,0r-27,43r-25,0r27,-43r-50,0r0,-23r65,0r31,-49r-96,0r0,-24r111,0r27,-42r25,0r-27,42r50,0r0,24r-65,0r-31,49r96,0r0,23","w":214},"\u2264":{"d":"192,-37r-169,-68r0,-24r169,-68r0,27r-136,54r136,53r0,26xm192,0r-168,0r0,-23r168,0r0,23","w":214},"\u2265":{"d":"191,-105r-168,68r0,-26r135,-54r-135,-53r0,-27r168,68r0,24xm190,0r-167,0r0,-23r167,0r0,23","w":214},"\u25ca":{"d":"176,-117r-67,129r-27,0r-66,-129r66,-129r27,0xm145,-116r-50,-103r-49,101r50,103","w":191},"\u02c9":{"d":"103,-277r3,-20r97,-1r-2,23","w":306},"\uf7e2":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm76,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\uf7e4":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm88,-248r-22,-22r22,-21r22,21xm163,-248r-22,-22r22,-21r22,21","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\uf7e0":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm101,-296r47,41r-8,12r-55,-28","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\uf7e5":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm160,-275v1,37,-70,42,-71,4v-2,-38,73,-38,71,-4xm124,-257v9,0,17,-6,17,-17v0,-8,-6,-14,-16,-14v-8,0,-17,6,-17,16v0,9,7,15,16,15","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\uf7e3":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm149,-248v-24,-1,-50,-28,-65,1r-14,-9v17,-38,48,-25,77,-13v8,0,15,-7,20,-15r14,11v-9,13,-21,25,-32,25","w":255,"k":{"\u2019":13,"\u201d":13,"\uf774":20,"\uf775":6,"\uf7fa":6,"\uf7fb":6,"\uf7fc":6,"\uf7f9":6,"\uf776":21,"\uf777":21,"\uf778":2,"\uf779":24,"\uf7fd":24,"\uf7ff":24,"\ue02f":24,"\ue02c":24,"\ue02e":24}},"\uf7e7":{"d":"128,4r-12,18v12,4,25,13,25,25v0,18,-27,33,-56,36r-3,-15v36,1,43,-33,11,-42r17,-26v-66,-14,-90,-56,-90,-86v0,-52,49,-114,161,-134r5,28v-71,9,-132,48,-132,101v0,36,30,70,108,70v13,0,27,-1,35,-3r3,27v-11,2,-52,3,-72,1","w":211,"k":{"\uf779":2,"\uf7fd":2,"\uf7ff":2,"\ue02f":2,"\ue02c":2,"\ue02e":2,"\uf763":6,"\uf767":6,"\uf76f":6,"\uf771":6,"\uf7f8":6,"\uf6fa":6,"\uf7e7":6,"\uf7f3":6,"\uf7f4":6,"\uf7f6":6,"\uf7f2":6,"\uf7f5":6}},"\uf7e9":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm76,-255r46,-41r17,24r-55,29","w":190},"\uf7ea":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm50,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":190},"\uf7eb":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm59,-248r-22,-22r22,-21r22,21xm134,-248r-22,-22r22,-21r22,21","w":190},"\uf7e8":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm77,-296r47,41r-8,12r-54,-28","w":190},"\uf7ed":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm40,-255r47,-41r16,24r-54,29","k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7ee":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm15,-261r51,-34r48,34r-14,17r-35,-29r-38,29","k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7ef":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm23,-248r-21,-22r21,-21r22,21xm99,-248r-22,-22r22,-21r22,21","k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7ec":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm39,-296r46,41r-8,12r-54,-28","k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf6f9":{"d":"81,-130v19,-8,37,-15,45,-19r7,21v-10,4,-30,11,-52,19r0,85v8,0,46,-1,81,-2r0,29v-10,0,-108,-3,-116,-3v3,-23,3,-82,3,-97v-14,5,-24,9,-33,13r-7,-19v9,-3,22,-8,40,-16r-1,-95r36,0v-1,9,-3,62,-3,84","w":178,"k":{"\u2019":2,"\u201d":2,"\uf774":5,"\uf775":2,"\uf7fa":2,"\uf7fb":2,"\uf7fc":2,"\uf7f9":2,"\uf776":6,"\uf777":6,"\uf779":10,"\uf7fd":10,"\uf7ff":10,"\ue02f":10,"\ue02c":10,"\ue02e":10,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7f1":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165xm172,-248v-24,-1,-50,-28,-65,1r-14,-9v17,-38,47,-25,76,-13v8,0,15,-7,20,-15r14,11v-9,13,-20,25,-31,25","w":289,"k":{"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7f3":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm120,-255r47,-41r16,24r-54,29","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf7f4":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm91,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf7f6":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm103,-248r-22,-22r22,-21r22,21xm179,-248r-22,-22r22,-21r21,21","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf7f2":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm113,-296r46,41r-8,12r-54,-28","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf7f5":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82xm166,-248v-24,-1,-50,-28,-65,1r-14,-9v17,-38,48,-25,77,-13v8,0,15,-7,20,-15r14,11v-9,13,-21,25,-32,25","w":278,"k":{"\uf775":3,"\uf7fa":3,"\uf7fb":3,"\uf7fc":3,"\uf7f9":3,"\uf778":5,"\uf779":6,"\uf7fd":6,"\uf7ff":6,"\ue02f":6,"\ue02c":6,"\ue02e":6,"\uf761":20,"\uf7e6":20,"\uf7e1":20,"\uf7e2":20,"\uf7e4":20,"\uf7e0":20,"\uf7e5":20,"\uf7e3":20,"\uf76d":10,"\uf762":3,"\uf764":3,"\uf765":3,"\uf766":3,"\uf768":3,"\uf769":3,"\uf76b":3,"\uf76c":3,"\uf76e":3,"\uf770":3,"\uf772":3,"\uf7fe":3,"\uf7e9":3,"\uf7ea":3,"\uf7eb":3,"\uf7e8":3,"\uf7ed":3,"\uf7ee":3,"\uf7ef":3,"\uf7ec":3,"\uf6f9":3,"\uf7f1":3,"\uf76a":3}},"\uf6fd":{"d":"63,-153v8,38,84,38,84,82v0,32,-37,64,-101,77r-8,-25v33,-6,75,-21,75,-45v0,-35,-91,-46,-83,-84v0,-34,50,-64,96,-72r7,25v-21,3,-70,15,-70,42xm91,-244r-51,-34r14,-16r37,28r35,-28r13,16","w":172,"k":{"\uf76d":2}},"\uf7fa":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm114,-255r47,-41r16,24r-55,29","w":266,"k":{"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,"\uf76d":3,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7fb":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm85,-261r51,-34r48,34r-14,17r-35,-29r-38,29","w":266,"k":{"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,"\uf76d":3,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7fc":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm97,-248r-22,-22r22,-21r22,21xm172,-248r-22,-22r22,-21r22,21","w":266,"k":{"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,"\uf76d":3,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7f9":{"d":"236,-217v4,116,1,223,-106,222v-18,0,-52,-3,-75,-37v-22,-17,-24,-117,-21,-181r32,0r-1,71v-2,80,12,119,69,122v87,4,70,-112,69,-197r33,0xm110,-296r47,41r-8,12r-55,-28","w":266,"k":{"\uf761":6,"\uf7e6":6,"\uf7e1":6,"\uf7e2":6,"\uf7e4":6,"\uf7e0":6,"\uf7e5":6,"\uf7e3":6,"\uf76d":3,"\uf763":3,"\uf767":3,"\uf76f":3,"\uf771":3,"\uf7f8":3,"\uf6fa":3,"\uf7e7":3,"\uf7f3":3,"\uf7f4":3,"\uf7f6":3,"\uf7f2":3,"\uf7f5":3}},"\uf7fd":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm86,-255r47,-41r16,24r-54,29","w":210,"k":{"\u2019":-16,"\u201d":-16,"\uf774":-10,"\uf776":-5,"\uf777":-5,")":-6,"]":-6,"}":-6,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":10,"\uf763":13,"\uf767":13,"\uf76f":13,"\uf771":13,"\uf7f8":13,"\uf6fa":13,"\uf7e7":13,"\uf7f3":13,"\uf7f4":13,"\uf7f6":13,"\uf7f2":13,"\uf7f5":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\uf7ff":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm69,-248r-21,-22r21,-21r22,21xm145,-248r-22,-22r22,-21r21,21","w":210,"k":{"\u2019":-16,"\u201d":-16,"\uf774":-10,"\uf776":-5,"\uf777":-5,")":-6,"]":-6,"}":-6,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":10,"\uf763":13,"\uf767":13,"\uf76f":13,"\uf771":13,"\uf7f8":13,"\uf6fa":13,"\uf7e7":13,"\uf7f3":13,"\uf7f4":13,"\uf7f6":13,"\uf7f2":13,"\uf7f5":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\uf6ff":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2xm111,-244r-51,-34r14,-16r38,28r34,-28r13,16","w":216},"\ue000":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84","w":255},"\ue02a":{"d":"244,-233v-31,34,-81,100,-104,141r1,92r-35,0v2,-20,3,-67,2,-94v-23,-41,-67,-102,-100,-141r29,-22v33,42,60,91,90,139v24,-43,65,-105,91,-138","w":246,"k":{"\u2019":-17,"\u201d":-17,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-6,"w":-6,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"V":-5,"W":-5,")":-7,"]":-7,"}":-7,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":12,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":11,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\ue03b":{"d":"219,-195v-28,28,-72,82,-91,117r2,78r-34,0r1,-80v-21,-35,-57,-83,-88,-116r25,-23v32,35,53,78,82,116v20,-36,55,-86,79,-114","w":223,"k":{"\u2019":-16,"\u201d":-16,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"v":-5,"w":-5,")":-6,"]":-6,"}":-6,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":10,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\ue038":{"d":"177,-27r0,29v-13,0,-122,-2,-144,-2v11,-37,16,-70,21,-102v-13,1,-25,1,-37,2r-1,-24v13,0,28,-1,42,-2v6,-79,53,-121,113,-132r6,30v-45,0,-78,30,-88,100r67,-5r-2,26v-17,0,-43,2,-69,3v-4,24,-9,50,-17,79v23,0,66,-1,109,-2","w":197},"\ue002":{"d":"46,2r2,-149v0,-9,-1,-61,-2,-67v17,0,39,0,52,1v66,5,76,30,76,47v0,13,-12,33,-44,49v24,3,54,20,54,47v1,42,-55,74,-138,72xm78,-102r0,80v36,-3,72,-15,72,-46v0,-24,-31,-36,-72,-34xm78,-193r0,72v36,0,64,-20,64,-41v0,-27,-41,-31,-64,-31","w":208,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":3,"\ue003":3,"\u03b4":5,"\ue004":5,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-5,"\ue016":-5,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\ue013":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3,"\u03b6":3,"\ue030":3,"\u03bc":3}},"\ue03a":{"d":"36,-83r-22,-22r22,-21r22,21xm189,-83r-21,-22r21,-21r22,21xm224,-192v-51,17,-106,76,-95,154v0,4,0,32,1,38r-34,0r1,-65v-1,-61,-43,-106,-85,-126r13,-26v46,23,69,54,91,99v16,-46,55,-84,98,-100","w":235},"\ue00b":{"d":"82,0r-36,0r2,-125v0,-7,0,-73,-3,-89v8,0,106,-3,116,-3r0,28v-35,-1,-74,-1,-82,-1","w":177,"k":{"\u03b1":15,"\u03bb":15,"\ue000":15,"\ue012":15,"\u03b4":17,"\ue004":17,"\u03ce":-12,"\ue016":-12,"\u03c9":6,"\ue015":6,"\u03c6":6,"\ue019":6,"\u03c8":-6,"\ue01c":-6,"\"":-4,"'":-4,"\u2018":-4,"\u201c":-4,"\u2019":-4,"\u201d":-4,"\u03c4":-10,"\ue022":-10,"\u03cd":-21,"\ue028":-21,"\u03c0":-3,"\ue01a":-3,"\u03cc":-12,"\ue018":-12,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\ue013":10,"\u03ad":-24,"\u03ae":-24,"\u03af":-24,"\ue006":-24,"\ue008":-24,"\ue00e":-24,"\u03bc":10,")":-4,"]":-4,"}":-4,":":13,";":13,"\u037e":13,"\u0387":13}},"\u021b":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3xm81,74r17,-59r25,12r-32,52","w":203,"k":{"\u2019":-26,"\u201d":-26,"v":-3,"w":-3,"y":-5,"\u00fd":-5,"\u00ff":-5,"\ue03b":-5,"\ue03c":-5,"\ue03d":-5,")":-3,"]":-3,"}":-3,"a":17,"\u00e6":17,"\u00e1":17,"\u00e2":17,"\u00e4":17,"\u00e0":17,"\u00e5":17,"\u00e3":17,"\u0103":17,"\u0101":17,"\u0105":17,"m":13,"c":12,"g":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u011f":12,"\u0123":12,"\u0151":12,"\u014d":12,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"\ue03e":{"d":"122,0r-33,0r2,-80r-60,0r-1,-24v8,0,30,1,60,1v-26,-39,-67,-104,-87,-132r27,-19r79,127v24,-38,63,-99,79,-127r26,17v-13,17,-65,95,-93,134v28,0,50,-1,60,-1r0,24v-9,0,-31,-1,-60,-1","w":214},"\u2215":{"d":"-62,-8r155,-252r23,13v-24,34,-137,218,-156,255","w":54},"\ue004":{"d":"122,-224r125,225r-246,-1v16,-27,98,-184,121,-224xm122,-167r-73,139v14,1,136,2,148,-1","w":245,"k":{"\u03ac":-13,"\ue001":-13,"\u03b1":-13,"\u03bb":-13,"\ue000":-13,"\ue012":-13,"\u03c7":-3,"\ue003":-3,"\u03b4":-15,"\ue004":-15,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-16,"\ue016":-16,"\u03c9":-16,"\ue015":-16,"\u03c8":20,"\ue01c":20,"\"":13,"'":13,"\u2018":13,"\u201c":13,"\u2019":13,"\u201d":13,"\u03c3":-6,"\ue020":-6,"\u03c4":20,"\ue022":20,"\u03cd":23,"\ue028":23,"\u03c5":26,"\u03cb":26,"\ue024":26,"\ue026":26,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u03b8":-2,"\u03bf":-2,"\ue023":-2,"\ue017":-2,"\ue013":-5,"\u03b6":-8,"\ue030":-8,"\u03bc":-5,")":-3,"]":-3,"}":-3,"\u03be":-4,"\ue029":-4}},"\ue03c":{"d":"219,-195v-28,28,-72,82,-91,117r2,78r-34,0r1,-80v-21,-35,-57,-83,-88,-116r25,-23v32,35,53,78,82,116v20,-36,55,-86,79,-114xm93,-255r46,-41r17,24r-55,29","w":223,"k":{"\u2019":-16,"\u201d":-16,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"v":-5,"w":-5,")":-6,"]":-6,"}":-6,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":10,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\ue034":{"d":"56,0r-30,0v0,-25,-2,-72,4,-117v9,-63,49,-92,97,-102r5,28v-26,-3,-70,18,-74,88v14,0,46,-2,59,-3r-1,23v-13,0,-47,1,-58,2","w":141},"\ue032":{"d":"115,-83v0,-37,-87,-52,-87,-93v0,-26,27,-45,44,-55r-1,-52r27,0r-2,41v6,-3,32,-10,38,-10r3,28v-28,0,-74,19,-74,42v-1,38,87,43,87,91v0,30,-36,57,-54,65r2,57r-27,0r1,-48v-9,3,-29,8,-35,9r-5,-28v51,-4,83,-29,83,-47","w":178},"\ue033":{"d":"61,0r-32,0r4,-138v10,-75,55,-109,107,-120r6,32v-29,-4,-80,23,-83,105v17,0,54,-3,68,-4r-2,26v-14,0,-53,2,-67,3","w":156},"\ue005":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1","w":190,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\ue039":{"d":"161,-25r0,26v-13,0,-112,-1,-131,-1v10,-32,15,-60,19,-86v-12,1,-23,1,-34,2r0,-21v12,0,24,-1,37,-2v6,-68,48,-102,104,-112r5,27v-43,1,-69,24,-79,83v23,-1,46,-3,60,-4r-1,23v-17,0,-41,1,-63,2v-4,20,-7,42,-15,65v19,0,58,-1,98,-2","w":177},"\u021a":{"d":"138,0r-39,0v3,-20,2,-167,2,-225v-41,0,-93,2,-102,3r0,-31v82,7,154,7,236,0r0,31v-5,-1,-72,-3,-102,-3xm95,81r17,-62r27,12r-34,55","w":234,"k":{"\u2019":-29,"\u201d":-29,"v":-4,"w":-4,"y":-6,"\u00fd":-6,"\u00ff":-6,"\ue03b":-6,"\ue03c":-6,"\ue03d":-6,"V":-4,"W":-4,"Y":-5,"\u00dd":-5,"\u0178":-5,"\ue02a":-5,"\ue02d":-5,"\ue02b":-5,")":-4,"]":-4,"}":-4,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,"m":16,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"\u0102":18,"\u0100":18,"\u0104":18,"M":14,"c":14,"g":14,"o":14,"q":14,"\u00f8":14,"\u0153":14,"\u00e7":14,"\u00f3":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u00f5":14,"\u0107":14,"\u010d":14,"\u011f":14,"\u0123":14,"\u0151":14,"\u014d":14,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u011e":13,"\u0122":13,"\u0150":13,"\u014c":13,",":16,".":16,":":-7,";":-7,"\u037e":-7,"\u0387":-7}},"\ue030":{"d":"28,-194r1,-26v18,3,172,5,175,8v-12,15,-138,186,-141,190v18,0,125,-1,133,-2r-1,27v-7,-1,-171,-1,-184,-4v14,-14,137,-181,144,-191v-13,0,-121,-2,-127,-2","w":216,"k":{"\u03ce":-15,"\ue016":-15,"\u03c8":-3,"\ue01c":-3,"\u03c4":-10,"\ue022":-10,"\u03cd":-15,"\ue028":-15,"\u03cc":-15,"\ue018":-15,"\u03ad":-15,"\u03ae":-15,"\u03af":-15,"\ue006":-15,"\ue008":-15,"\ue00e":-15}},"\ue037":{"d":"62,-169v18,24,43,41,63,63r-64,65v28,16,55,28,81,40r-15,23v-46,-24,-82,-39,-109,-59r67,-69v-17,-20,-49,-42,-68,-66v45,-27,66,-38,104,-59r17,21v-31,16,-50,26,-76,41","w":149},"\ue007":{"d":"80,0r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0r-2,96r138,-6r-1,-90r35,0r-1,214r-34,0r1,-102r-138,6","w":296,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u038f":-5,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3,"\u0388":-4,"\u0389":-4,"\u038a":-4,"\u038c":-5}},"\ue031":{"d":"84,6r0,-59v-94,-33,-64,-119,0,-154r0,-64r26,0r-1,52v11,-5,25,-8,40,-11r4,29v-64,6,-94,42,-94,76v0,41,54,60,99,49r3,28v-16,3,-37,2,-52,1r1,53r-26,0","w":178},"\ue023":{"d":"133,5v-72,0,-113,-47,-113,-101v0,-68,52,-123,132,-123v63,0,110,38,110,104v0,48,-35,120,-129,120xm136,-19v49,0,93,-34,93,-94v0,-55,-39,-82,-82,-82v-59,0,-94,42,-94,94v0,46,31,82,83,82xm87,-94r-1,-26v25,0,91,-3,109,-5r2,25v-32,1,-87,4,-110,6","w":281,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":5,"\ue003":5,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-11,"\ue016":-11,"\u03c8":-6,"\ue01c":-6,"\u03cd":-11,"\ue028":-11,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u03cc":-11,"\ue018":-11,"\ue013":5,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03b6":3,"\ue030":3,"\u03bc":5}},"\ue036":{"d":"160,0r-31,0v0,-10,1,-27,1,-52v-51,-2,-101,-29,-101,-96v0,-24,1,-41,4,-61r30,0v-3,21,-4,37,-4,57v0,63,43,77,71,77r-1,-144r31,0r-1,145v37,-3,71,-22,71,-79v0,-19,-1,-35,-4,-56r31,-1v3,19,3,38,3,58v0,64,-47,98,-101,99v0,23,1,49,1,53","w":282},"\ue03d":{"d":"219,-195v-28,28,-72,82,-91,117r2,78r-34,0r1,-80v-21,-35,-57,-83,-88,-116r25,-23v32,35,53,78,82,116v20,-36,55,-86,79,-114xm76,-248r-22,-22r22,-21r22,21xm151,-248r-22,-22r22,-21r22,21","w":223,"k":{"\u2019":-16,"\u201d":-16,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"v":-5,"w":-5,")":-6,"]":-6,"}":-6,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"m":10,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\ue03f":{"d":"111,0r-32,0r2,-67r-53,0r-1,-21r54,0v-23,-33,-61,-87,-79,-111r26,-18r70,108v22,-31,54,-83,69,-107r26,15v-12,15,-58,81,-84,114v26,0,45,-1,54,-1r0,21r-53,0","w":192},"\u00a0":{"w":108},"\u0394":{"d":"142,-261r145,262r-286,-1v18,-31,114,-215,141,-261xm235,-28v-4,-6,-80,-149,-94,-176r-92,176r186,0","w":285,"k":{"\u03ac":-16,"\ue001":-16,"\u03b1":-16,"\u03bb":-16,"\ue000":-16,"\ue012":-16,"\u03c7":-4,"\ue003":-4,"\u03b4":-18,"\ue004":-18,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-20,"\ue016":-20,"\u03c9":-20,"\ue015":-20,"\u03c8":24,"\ue01c":24,"\"":14,"'":14,"\u2018":14,"\u201c":14,"\u2019":14,"\u201d":14,"\u03c3":-8,"\ue020":-8,"\u03c4":24,"\ue022":24,"\u03cd":28,"\ue028":28,"\u03c5":32,"\u03cb":32,"\ue024":32,"\ue026":32,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u0386":-14,"\u0391":-14,"\u039b":-14,"\u03a7":-4,"\u2206":-16,"\u0394":-16,"\u038f":-18,"\u2126":-18,"\u03a9":-18,"\u03a8":22,"\u03b8":-2,"\u03bf":-2,"\ue023":-2,"\ue017":-2,"\u03a3":-7,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a1":3,"\u03aa":3,"\u03a4":22,"\u038e":25,"\u03a5":29,"\u03ab":29,"\ue013":-6,"\u03b6":-10,"\ue030":-10,"\u03bc":-6,"\u039c":-5,")":-4,"]":-4,"}":-4,"\u0396":-9,"\u0398":-2,"\u039f":-2,"\u03be":-6,"\ue029":-6,"\u039e":-5}},"\u03a9":{"d":"306,-27r1,30v-12,-1,-121,-3,-128,-3r-1,-6v31,-19,73,-71,73,-129v0,-62,-40,-96,-86,-96v-62,0,-96,50,-96,107v0,51,31,96,57,119r-1,5v-7,0,-105,1,-121,1r1,-29v19,1,54,2,68,2r1,-3v-15,-14,-40,-53,-40,-95v0,-69,51,-134,134,-134v66,0,117,47,117,119v0,52,-27,89,-51,115v17,0,50,-1,72,-3","w":317,"k":{"\u03ac":-8,"\ue001":-8,"\u03b1":-8,"\u03bb":-8,"\ue000":-8,"\ue012":-8,"\u03b4":-12,"\ue004":-12,"\u03ce":-4,"\ue016":-4,"\u03c9":-4,"\ue015":-4,"\"":5,"'":5,"\u2018":5,"\u201c":5,"\u2019":5,"\u201d":5,"\u03c4":4,"\ue022":4,"\u03cd":-4,"\ue028":-4,"\u03c5":14,"\u03cb":14,"\ue024":14,"\ue026":14,"\u0386":-7,"\u0391":-7,"\u039b":-7,"\u2206":-11,"\u0394":-11,"\u038f":-11,"\u2126":-4,"\u03a9":-4,"\u03cc":-4,"\ue018":-4,"\u03a4":4,"\u03a5":13,"\u03ab":13,"\ue013":-4,"\u03ad":-4,"\u03ae":-4,"\u03af":-4,"\ue006":-4,"\ue008":-4,"\ue00e":-4,"\u03bc":-4,"\u039c":-4,"\u0388":-5,"\u0389":-5,"\u038a":-5,"\u038c":-11}},"\ue00c":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0","k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\ue010":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm219,-22r-23,25v-4,-4,-101,-101,-115,-116v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75v10,12,88,81,101,93","w":236,"k":{"\u03ce":-3,"\ue016":-3,"\u03c6":6,"\ue019":6,"\u03cd":-5,"\ue028":-5,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\u03cc":-3,"\ue018":-3,"\u03b8":5,"\u03bf":5,"\ue023":5,"\ue017":5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\ue012":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-33,-58,-68,-129,-97,-177v-27,50,-55,103,-91,177","w":255},"\ue00a":{"d":"68,-105r-1,21v24,0,50,-1,92,-2r0,20v-41,0,-61,1,-87,1v11,29,59,43,110,36r2,25v-73,9,-139,-25,-143,-60v-6,0,-19,1,-25,2r0,-21v4,-2,24,4,21,-7v0,-5,1,-9,2,-13v-7,0,-14,0,-22,1r1,-21v6,0,20,1,26,0v16,-40,58,-76,124,-90r6,24v-42,8,-86,27,-101,64v25,-1,44,-2,90,-5r-1,21v-45,2,-69,3,-94,4","w":200},"\ue009":{"d":"75,-125v-2,7,-2,18,-2,27v28,0,57,-2,104,-3r-1,23v-46,0,-69,1,-98,1v12,34,66,55,124,46r2,26v-5,1,-16,2,-28,2v-82,0,-118,-38,-130,-73v-7,0,-21,1,-28,2r0,-23v4,0,16,-1,24,-1v-2,-6,-1,-17,1,-24v-8,0,-15,0,-24,1r1,-23v6,0,23,0,29,-1v18,-48,65,-89,138,-106r6,27v-47,9,-95,35,-112,77v28,-1,49,-1,100,-5r-1,23v-50,2,-76,3,-105,4","w":225},"\u00ad":{"d":"10,-110r-1,-27v18,0,101,1,107,1r1,23v-6,-1,-93,2,-107,3","k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\ue013":{"d":"40,8r-29,-9v6,-13,70,-212,75,-218r79,148r84,-139r80,207r-30,11v-8,-23,-53,-148,-57,-160r-82,133v-18,-34,-57,-106,-71,-134v-6,19,-46,149,-49,161","w":338,"k":{"\"":13,"'":13,"\u2018":13,"\u201c":13,"\u2019":13,"\u201d":13}},"\ue014":{"d":"69,2r-33,-2v3,-23,10,-196,14,-226v9,10,160,161,170,171v0,-9,1,-151,1,-161r32,2v-2,17,-6,146,-10,220v-10,-8,-166,-166,-172,-169v1,6,-2,155,-2,165","w":289,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\u03bc":{"d":"40,8r-29,-9v6,-13,70,-212,75,-218r79,148r84,-139r80,207r-30,11v-8,-23,-53,-148,-57,-160r-82,133v-18,-34,-57,-106,-71,-134v-6,19,-46,149,-49,161","w":338},"\ue029":{"d":"41,-185r-1,-27v38,0,120,-2,170,-4r1,28v-45,0,-126,2,-170,3xm32,-1r1,-27v53,2,120,3,183,0r1,28v-44,0,-142,-1,-185,-1xm50,-93r-1,-27v37,1,119,-1,148,-2r1,27v-23,-1,-106,1,-148,2","w":244,"k":{"\u03ac":-5,"\ue001":-5,"\u03ce":-8,"\ue016":-8,"\u03cd":-5,"\ue028":-5,"\u03cc":-8,"\ue018":-8,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8}},"\ue017":{"d":"131,5v-72,0,-111,-47,-111,-101v0,-68,50,-123,129,-123v63,0,110,38,110,104v0,48,-34,120,-128,120xm134,-19v49,0,91,-34,91,-94v0,-55,-38,-82,-81,-82v-57,0,-91,42,-91,94v0,46,31,82,81,82","w":278,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":5,"\ue003":5,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-11,"\ue016":-11,"\u03c8":-6,"\ue01c":-6,"\u03cd":-11,"\ue028":-11,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u03cc":-11,"\ue018":-11,"\ue013":5,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03b6":3,"\ue030":3,"\u03bc":5}},"\ue01a":{"d":"282,-220r0,26v-6,0,-19,0,-33,-1r2,195r-34,0r0,-195v-21,0,-106,0,-128,1v-4,49,-2,146,0,194r-34,0r0,-193v-13,1,-25,3,-32,3r0,-26","w":309,"k":{"\u03ce":-13,"\ue016":-13,"\u03c8":-3,"\ue01c":-3,"\u03c3":-2,"\ue020":-2,"\u03cd":-15,"\ue028":-15,"\u03cc":-13,"\ue018":-13,"\u03ad":-15,"\u03ae":-15,"\u03af":-15,"\ue006":-15,"\ue008":-15,"\ue00e":-15,",":4,".":4,":":4,";":4,"\u037e":4,"\u0387":4}},"\ue01e":{"d":"47,-214v56,-3,136,11,136,62v0,44,-44,78,-105,89r1,63r-33,0xm78,-190r0,103v39,-8,71,-26,71,-61v0,-11,-7,-41,-71,-42","w":201,"k":{"\u03ac":3,"\ue001":3,"\u03b1":17,"\u03bb":17,"\ue000":17,"\ue012":17,"\u03c7":3,"\ue003":3,"\u03b4":17,"\ue004":17,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-8,"\ue016":-8,"\u03cd":-9,"\ue028":-9,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u03cc":-8,"\ue018":-8,"\ue013":8,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03bc":8,")":5,"]":5,"}":5,",":16,".":16}},"\ue020":{"d":"167,-110r0,4v-31,24,-67,43,-95,70r127,18r-5,27v-61,-10,-123,-22,-184,-32r0,-3r114,-81v-35,-26,-76,-47,-109,-76r170,-37r6,26r-115,23","w":213,"k":{"\u03ac":-3,"\ue001":-3,"\u03b1":-3,"\u03bb":-3,"\ue000":-3,"\ue012":-3,"\u03ce":-12,"\ue016":-12,"\u03c9":-3,"\ue015":-3,"\u03cd":-13,"\ue028":-13,"\u03cc":-8,"\ue018":-8,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13}},"\ue022":{"d":"122,0r-38,0v3,-17,2,-140,2,-189v-37,0,-83,2,-88,3r0,-29v67,6,140,6,207,0r0,29v-1,-1,-61,-3,-87,-3","w":203,"k":{"\u03b1":17,"\u03bb":17,"\ue000":17,"\ue012":17,"\u03b4":17,"\ue004":17,"\u03ce":-33,"\ue016":-33,"\u03c6":3,"\ue019":3,"\u03c8":-8,"\ue01c":-8,"\"":-26,"'":-26,"\u2018":-26,"\u201c":-26,"\u2019":-26,"\u201d":-26,"\u03c3":-3,"\ue020":-3,"\u03c4":-13,"\ue022":-13,"\u03cd":-33,"\ue028":-33,"\u03c5":-5,"\u03cb":-5,"\ue024":-5,"\ue026":-5,"\u03cc":-33,"\ue018":-33,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":13,"\u03ad":-33,"\u03ae":-33,"\u03af":-33,"\ue006":-33,"\ue008":-33,"\ue00e":-33,"\u03bc":13,")":-3,"]":-3,"}":-3,",":15,".":15,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"\ue024":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100","w":210,"k":{"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":5,"\ue015":5,"\u03c6":5,"\ue019":5,"\u03c8":-8,"\ue01c":-8,"\"":-16,"'":-16,"\u2018":-16,"\u201c":-16,"\u2019":-16,"\u201d":-16,"\u03c3":-5,"\ue020":-5,"\u03c4":-17,"\ue022":-17,"\u03cd":-30,"\ue028":-30,"\u03c5":-3,"\u03cb":-3,"\ue024":-3,"\ue026":-3,"\u03cc":-26,"\ue018":-26,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":15,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":15,")":-16,"]":-16,"}":-16,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"\u2013":-6,"\u2014":-6,"-":-6,"\u00ad":-6}},"\ue019":{"d":"164,28r-33,0v0,-11,1,-20,1,-28v-60,-4,-113,-42,-113,-102v0,-71,57,-110,114,-116v0,-5,-1,-15,-1,-25r33,0v-1,11,-2,20,-2,24v54,3,114,41,114,105v0,62,-45,106,-114,114v0,6,1,18,1,28xm132,-23r1,-172v-43,8,-81,37,-81,91v0,51,39,76,80,81xm163,-195r0,172v39,-6,81,-30,81,-90v0,-57,-42,-78,-81,-82","w":294,"k":{"\u03ac":-3,"\ue001":-3,"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":3,"\ue003":3,"\u03b4":3,"\ue004":3,"\u03b9":3,"\u03ca":3,"\ue00c":3,"\ue00d":3,"\u03ce":-8,"\ue016":-8,"\u03c8":-5,"\ue01c":-5,"\"":5,"'":5,"\u2018":5,"\u201c":5,"\u2019":5,"\u201d":5,"\u03cd":-8,"\ue028":-8,"\u03c5":8,"\u03cb":8,"\ue024":8,"\ue026":8,"\ue002":3,"\ue005":3,"\ue007":3,"\ue00b":3,"\ue010":3,"\ue014":3,"\ue01e":3,"\u03b2":3,"\u03b5":3,"\u03b7":3,"\u03b3":3,"\u03ba":3,"\u03bd":3,"\u03c1":3,"\u03cc":-8,"\ue018":-8,"\ue013":3,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8,"\u03bc":3,")":5,"]":5,"}":5}},"\ue003":{"d":"35,6r-22,-21v9,-7,77,-83,87,-95v-13,-15,-63,-69,-76,-83r24,-23v9,11,48,60,72,87v11,-12,68,-76,77,-87r22,22v-10,10,-75,73,-83,83v10,11,75,82,88,95r-25,22v-9,-10,-74,-88,-82,-97v-4,5,-76,91,-82,97","w":237,"k":{"\u03c7":3,"\ue003":3,"\u03ce":-10,"\ue016":-10,"\u03c6":3,"\ue019":3,"\"":-3,"'":-3,"\u2018":-3,"\u201c":-3,"\u2019":-3,"\u201d":-3,"\u03cd":-8,"\ue028":-8,"\u03cc":-10,"\ue018":-10,"\u03b8":2,"\u03bf":2,"\ue023":2,"\ue017":2,"\u03ad":-10,"\u03ae":-10,"\u03af":-10,"\ue006":-10,"\ue008":-10,"\ue00e":-10}},"\ue01c":{"d":"231,-208r30,5v-6,18,-8,40,-14,66v-12,51,-45,79,-95,83v0,24,2,50,2,54r-32,0v0,-10,1,-27,1,-53v-51,-3,-83,-34,-93,-81v-5,-26,-11,-50,-17,-70r31,-6v2,15,9,53,14,75v10,42,37,59,65,59r-1,-143r31,0r-1,143v28,-1,56,-15,68,-65v5,-23,9,-54,11,-67","w":273,"k":{"\u03b1":23,"\u03bb":23,"\ue000":23,"\ue012":23,"\u03b4":23,"\ue004":23,"\u03ce":-21,"\ue016":-21,"\u03c6":-3,"\ue019":-3,"\u03c8":-3,"\ue01c":-3,"\"":-4,"'":-4,"\u2018":-4,"\u201c":-4,"\u2019":-4,"\u201d":-4,"\u03c4":-10,"\ue022":-10,"\u03cd":-20,"\ue028":-20,"\u03c5":-5,"\u03cb":-5,"\ue024":-5,"\ue026":-5,"\u03c0":-3,"\ue01a":-3,"\u03cc":-24,"\ue018":-24,"\u03b8":-3,"\u03bf":-3,"\ue023":-3,"\ue017":-3,"\ue013":17,"\u03ad":-23,"\u03ae":-23,"\u03af":-23,"\ue006":-23,"\ue008":-23,"\ue00e":-23,"\u03bc":17,")":-4,"]":-4,"}":-4}},"\ue015":{"d":"286,-26r2,29v-8,1,-114,-3,-121,-3r0,-5v28,-16,67,-60,67,-110v0,-53,-37,-80,-80,-80v-58,0,-88,42,-88,90v0,44,27,81,52,101r-1,4v-7,0,-109,1,-113,1r1,-28v19,-1,55,6,62,0v-12,-10,-35,-42,-35,-78v0,-59,47,-114,125,-114v62,0,110,40,110,101v0,43,-23,78,-45,93v10,6,43,-1,64,-1","w":298,"k":{"\u03ac":-6,"\ue001":-6,"\u03b1":-6,"\u03bb":-6,"\ue000":-6,"\ue012":-6,"\u03b4":-10,"\ue004":-10,"\u03ce":-10,"\ue016":-10,"\u03c9":-3,"\ue015":-3,"\u03c4":3,"\ue022":3,"\u03cd":-4,"\ue028":-4,"\u03c5":12,"\u03cb":12,"\ue024":12,"\ue026":12,"\u03cc":-10,"\ue018":-10,"\ue013":-3,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u03bc":-3,")":-6,"]":-6,"}":-6}},"\ue001":{"d":"33,6r-28,-15r119,-216v28,44,106,181,127,213r-30,18v-6,-12,-39,-72,-42,-77r-112,4v-4,10,-29,63,-34,73xm80,-90r87,-3v-4,-7,-41,-76,-44,-81v-5,7,-40,79,-43,84xm34,-155r-7,-64r29,-1r-6,65r-16,0","w":255},"\ue006":{"d":"161,-24r1,27v-11,0,-110,-3,-116,-3r2,-130v0,-5,-2,-78,-2,-84v8,0,94,-5,110,-6r1,26v-14,0,-73,1,-78,1r0,75v6,0,48,-1,68,-3r1,26r-69,-1r0,73v8,0,51,1,82,-1xm1,-155r-7,-64r29,-1r-6,65r-16,0","w":190,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\ue02d":{"d":"244,-233v-31,34,-81,100,-104,141r1,92r-35,0v2,-20,3,-67,2,-94v-23,-41,-67,-102,-100,-141r29,-22v33,42,60,91,90,139v24,-43,65,-105,91,-138xm89,-275r-23,-23r23,-23r23,23xm168,-275r-23,-23r23,-23r23,23","w":246,"k":{"\u2019":-17,"\u201d":-17,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-6,"w":-6,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"V":-5,"W":-5,")":-7,"]":-7,"}":-7,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":12,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":11,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\ue008":{"d":"80,0r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0r-2,96r138,-6r-1,-90r35,0r-1,214r-34,0r1,-102r-138,6xm0,-155r-7,-64r29,-1r-6,65r-16,0","w":296,"k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\ue00e":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm-2,-155r-7,-64r30,-1r-7,65r-16,0","k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\ue01b":{"d":"162,0r-33,0v0,-12,1,-32,1,-62v-55,-2,-107,-32,-107,-112v0,-28,1,-49,4,-72r32,0v-3,25,-4,44,-4,67v0,74,45,91,75,92r-1,-171r33,0r-1,172v39,-4,76,-27,76,-94v0,-23,-1,-42,-4,-66r32,-1v3,23,4,46,4,69v0,76,-51,115,-108,116v0,28,1,57,1,62","w":288},"\ue00f":{"d":"88,4r-36,0v3,-47,2,-208,0,-260r36,0r-2,144v0,28,1,109,2,116xm129,-135v36,43,183,147,88,226r-20,-20v31,-28,26,-54,2,-83v-16,-19,-94,-103,-110,-120v6,-6,109,-108,117,-117r21,24v-14,13,-79,71,-98,90","w":259},"\ue00d":{"d":"81,-214v-3,32,-2,177,-1,214r-34,0r2,-126v0,-5,-1,-81,-2,-88r35,0xm23,-248r-21,-22r21,-21r22,21xm99,-248r-22,-22r22,-21r22,21","k":{"\u03b1":3,"\u03bb":3,"\ue000":3,"\ue012":3,"\u03b4":3,"\ue004":3,"\u03ce":-5,"\ue016":-5,"\u03c6":3,"\ue019":3,"\u03c5":3,"\u03cb":3,"\ue024":3,"\ue026":3,"\u03cc":-5,"\ue018":-5,"\u03b8":3,"\u03bf":3,"\ue023":3,"\ue017":3,"\u03ad":-3,"\u03ae":-3,"\u03af":-3,"\ue006":-3,"\ue008":-3,"\ue00e":-3}},"\ue018":{"d":"147,5v-72,0,-111,-47,-111,-101v0,-68,51,-123,130,-123v63,0,109,38,109,104v0,48,-34,120,-128,120xm150,-19v49,0,92,-34,92,-94v0,-55,-38,-82,-81,-82v-57,0,-92,42,-92,94v0,46,31,82,81,82xm7,-155r-7,-64r30,-1r-7,65r-16,0","w":302,"k":{"\u03b1":6,"\u03bb":6,"\ue000":6,"\ue012":6,"\u03c7":5,"\ue003":5,"\u03b4":6,"\ue004":6,"\u03b9":4,"\u03ca":4,"\ue00c":4,"\ue00d":4,"\u03ce":-11,"\ue016":-11,"\u03c8":-6,"\ue01c":-6,"\u03cd":-11,"\ue028":-11,"\u03c5":6,"\u03cb":6,"\ue024":6,"\ue026":6,"\ue002":4,"\ue005":4,"\ue007":4,"\ue00b":4,"\ue010":4,"\ue014":4,"\ue01e":4,"\u03b2":4,"\u03b5":4,"\u03b7":4,"\u03b3":4,"\u03ba":4,"\u03bd":4,"\u03c1":4,"\u03cc":-11,"\ue018":-11,"\ue013":5,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\u03b6":3,"\ue030":3,"\u03bc":5}},"\ue01f":{"d":"61,-54v27,20,53,35,79,49r-15,27v-43,-29,-81,-45,-106,-70v28,-35,49,-53,66,-81v-17,-23,-47,-50,-66,-77r100,-70r17,25r-74,50r61,72v-27,33,-41,51,-62,75","w":162},"\ue028":{"d":"255,-192v-51,17,-107,76,-96,154v0,4,1,32,2,38r-34,0r1,-65v-1,-61,-43,-106,-85,-126r13,-26v46,23,69,54,91,99v16,-46,55,-84,98,-100xm0,-155r-7,-64r29,-1r-6,65r-16,0","w":249,"k":{"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":5,"\ue015":5,"\u03c6":5,"\ue019":5,"\u03c8":-8,"\ue01c":-8,"\"":-16,"'":-16,"\u2018":-16,"\u201c":-16,"\u2019":-16,"\u201d":-16,"\u03c3":-5,"\ue020":-5,"\u03c4":-17,"\ue022":-17,"\u03cd":-30,"\ue028":-30,"\u03c5":-3,"\u03cb":-3,"\ue024":-3,"\ue026":-3,"\u03cc":-26,"\ue018":-26,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":15,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":15,")":-16,"]":-16,"}":-16,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"\u2013":-6,"\u2014":-6,"-":-6,"\u00ad":-6}},"\ue025":{"d":"250,-230v-63,22,-121,92,-110,186v0,5,1,37,2,44r-36,0r2,-78v-3,-74,-48,-125,-100,-152r15,-28v56,31,79,63,104,120v18,-56,60,-100,112,-120xm48,-90r-24,-23r24,-23r23,23xm200,-90r-23,-23r23,-23r23,23","w":246},"\ue026":{"d":"216,-192v-51,17,-106,76,-95,154v0,4,1,32,2,38r-35,0r2,-65v-1,-61,-43,-106,-86,-126r14,-26v45,24,70,52,90,99v16,-46,55,-84,99,-100xm69,-248r-21,-22r21,-21r22,21xm145,-248r-22,-22r22,-21r21,21","w":210,"k":{"\u03b1":20,"\u03bb":20,"\ue000":20,"\ue012":20,"\u03b4":20,"\ue004":20,"\u03ce":-26,"\ue016":-26,"\u03c9":5,"\ue015":5,"\u03c6":5,"\ue019":5,"\u03c8":-8,"\ue01c":-8,"\"":-16,"'":-16,"\u2018":-16,"\u201c":-16,"\u2019":-16,"\u201d":-16,"\u03c3":-5,"\ue020":-5,"\u03c4":-17,"\ue022":-17,"\u03cd":-30,"\ue028":-30,"\u03c5":-3,"\u03cb":-3,"\ue024":-3,"\ue026":-3,"\u03cc":-26,"\ue018":-26,"\u03b8":6,"\u03bf":6,"\ue023":6,"\ue017":6,"\ue013":15,"\u03ad":-30,"\u03ae":-30,"\u03af":-30,"\ue006":-30,"\ue008":-30,"\ue00e":-30,"\u03bc":15,")":-16,"]":-16,"}":-16,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"\u2013":-6,"\u2014":-6,"-":-6,"\u00ad":-6}},"\ue016":{"d":"295,-26r2,29v-8,1,-114,-3,-121,-3r0,-5v28,-16,67,-60,67,-110v0,-53,-37,-80,-80,-80v-58,0,-88,42,-88,90v0,44,27,81,52,101r-1,4v-7,0,-109,1,-113,1r1,-28v19,-1,55,6,62,0v-12,-10,-35,-42,-35,-78v0,-59,47,-114,125,-114v62,0,110,40,110,101v0,43,-23,78,-45,93v10,6,43,-1,64,-1xm7,-155r-7,-64r29,-1r-6,65r-16,0","w":298,"k":{"\u03ac":-6,"\ue001":-6,"\u03b1":-6,"\u03bb":-6,"\ue000":-6,"\ue012":-6,"\u03b4":-10,"\ue004":-10,"\u03ce":-10,"\ue016":-10,"\u03c9":-3,"\ue015":-3,"\u03c4":3,"\ue022":3,"\u03cd":-4,"\ue028":-4,"\u03c5":12,"\u03cb":12,"\ue024":12,"\ue026":12,"\u03cc":-10,"\ue018":-10,"\ue013":-3,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5,"\u03bc":-3,")":-6,"]":-6,"}":-6}},"\u2010":{"d":"10,-110r-1,-27v18,0,101,1,107,1r1,23v-6,-1,-93,2,-107,3"},"\u2113":{"d":"97,-232v-29,-2,-23,83,-23,121v28,-28,44,-59,44,-89v0,-23,-9,-32,-21,-32xm157,-57r17,16v-27,63,-133,60,-134,-15v-6,5,-13,9,-19,13r-11,-20v10,-7,21,-13,30,-21r0,-92v0,-57,26,-81,59,-81v30,0,48,22,48,56v0,44,-25,82,-73,124v-7,70,67,56,83,20","w":185},"\ue011":{"d":"80,3r-34,0v3,-40,2,-176,0,-220r34,0r-2,122v0,24,1,92,2,98xm118,-115v32,35,173,124,83,192r-18,-17v29,-24,24,-46,1,-70v-15,-17,-88,-88,-103,-103v5,-5,99,-92,107,-100r19,23v-13,10,-71,59,-89,75","w":236},"\ue02b":{"d":"244,-233v-31,34,-81,100,-104,141r1,92r-35,0v2,-20,3,-67,2,-94v-23,-41,-67,-102,-100,-141r29,-22v33,42,60,91,90,139v24,-43,65,-105,91,-138xm114,-283r50,-43r17,25r-57,31","w":246,"k":{"\u2019":-17,"\u201d":-17,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-6,"w":-6,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"V":-5,"W":-5,")":-7,"]":-7,"}":-7,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"m":12,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"M":11,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":18,".":18,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\ue01d":{"d":"160,0r-31,0v0,-10,1,-27,1,-52v-51,-2,-101,-29,-101,-96v0,-24,1,-41,4,-61r30,0v-3,21,-4,37,-4,57v0,63,43,77,71,77r-1,-144r31,0r-1,145v37,-3,71,-22,71,-79v0,-19,-1,-35,-4,-56r31,-1v3,19,3,38,3,58v0,64,-47,98,-101,99v0,23,1,49,1,53","w":282},"\ue021":{"d":"62,-169v18,24,43,41,63,63r-64,65v28,16,55,28,81,40r-15,23v-46,-24,-82,-39,-109,-59r67,-69v-17,-20,-49,-42,-68,-66v45,-27,66,-38,104,-59r17,21v-31,16,-50,26,-76,41","w":149},"\ue027":{"d":"36,-83r-22,-22r22,-21r22,21xm189,-83r-21,-22r21,-21r22,21xm224,-192v-51,17,-106,76,-95,154v0,4,0,32,1,38r-34,0r1,-65v-1,-61,-43,-106,-85,-126r13,-26v46,23,69,54,91,99v16,-46,55,-84,98,-100","w":235},"\ue02f":{"d":"219,-195v-28,28,-72,82,-91,117r2,78r-34,0r1,-80v-21,-35,-57,-83,-88,-116r25,-23v32,35,53,78,82,116v20,-36,55,-86,79,-114","w":223,"k":{"\u2019":-16,"\u201d":-16,"\uf774":-10,"\uf776":-5,"\uf777":-5,")":-6,"]":-6,"}":-6,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":10,"\uf763":13,"\uf767":13,"\uf76f":13,"\uf771":13,"\uf7f8":13,"\uf6fa":13,"\uf7e7":13,"\uf7f3":13,"\uf7f4":13,"\uf7f6":13,"\uf7f2":13,"\uf7f5":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\ue02c":{"d":"219,-195v-28,28,-72,82,-91,117r2,78r-34,0r1,-80v-21,-35,-57,-83,-88,-116r25,-23v32,35,53,78,82,116v20,-36,55,-86,79,-114xm93,-255r46,-41r17,24r-55,29","w":223,"k":{"\u2019":-16,"\u201d":-16,"\uf774":-10,"\uf776":-5,"\uf777":-5,")":-6,"]":-6,"}":-6,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":10,"\uf763":13,"\uf767":13,"\uf76f":13,"\uf771":13,"\uf7f8":13,"\uf6fa":13,"\uf7e7":13,"\uf7f3":13,"\uf7f4":13,"\uf7f6":13,"\uf7f2":13,"\uf7f5":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"\ue02e":{"d":"219,-195v-28,28,-72,82,-91,117r2,78r-34,0r1,-80v-21,-35,-57,-83,-88,-116r25,-23v32,35,53,78,82,116v20,-36,55,-86,79,-114xm76,-248r-22,-22r22,-21r22,21xm151,-248r-22,-22r22,-21r22,21","w":223,"k":{"\u2019":-16,"\u201d":-16,"\uf774":-10,"\uf776":-5,"\uf777":-5,")":-6,"]":-6,"}":-6,"\uf761":18,"\uf7e6":18,"\uf7e1":18,"\uf7e2":18,"\uf7e4":18,"\uf7e0":18,"\uf7e5":18,"\uf7e3":18,"\uf76d":10,"\uf763":13,"\uf767":13,"\uf76f":13,"\uf771":13,"\uf7f8":13,"\uf6fa":13,"\uf7e7":13,"\uf7f3":13,"\uf7f4":13,"\uf7f6":13,"\uf7f2":13,"\uf7f5":13,",":17,".":17,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1991, 1999, 2000 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Lithos is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * LithosPro-Black
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":324,"face":{"font-family":"Lithos","font-weight":850,"font-stretch":"normal","units-per-em":"360","panose-1":"4 2 9 5 4 14 2 2 10 4","ascent":"262","descent":"-98","x-height":"5","bbox":"-66 -350 531 116","underline-thickness":"18","underline-position":"-18","stemh":"52","stemv":"73","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":90},"!":{"d":"79,-88r-48,3v-4,-44,-13,-129,-15,-173r87,3v-4,33,-20,126,-24,167xm24,0r0,-54r61,0r0,54r-61,0","w":118},"\"":{"d":"13,-261r46,0r-9,82r-28,0xm81,-261r47,0r-10,82r-27,0","w":140,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\ue013":23,"\u03ce":-19,"\ue016":-19,"\u03c9":8,"\ue015":8,"\u03c4":-26,"\ue022":-26,"\u03cd":-19,"\ue028":-19,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u03bc":8,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u039c":25,"\u038f":-22,"\u2126":8,"\u03a9":8,"\u03a4":-29,"\u038e":-22,"\u03a5":-10,"\u03ab":-10,"t":-26,"\u0165":-26,"\u0163":-26,"\u021b":-26,"\uf774":-29,"T":-29,"\u0164":-29,"\u0162":-29,"\u021a":-29,"\u03cc":-19,"\ue018":-19,"\u03ad":-19,"\u03ae":-19,"\u03af":-19,"\ue006":-19,"\ue008":-19,"\ue00e":-19,"\ue007":8,"\u038c":-22,"\u0388":-22,"\u0389":-22,"\u038a":-22,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14}},"#":{"d":"229,-135r-39,0r-6,35r31,0r0,46r-40,0r-9,54r-44,0r10,-54r-36,0r-10,54r-43,0r10,-54r-31,0r0,-46r40,0r6,-35r-32,0r0,-46r40,0r10,-53r43,0r-11,53r38,0r9,-53r43,0r-10,53r31,0r0,46xm147,-135r-36,0r-6,35r36,0","w":250},"$":{"d":"128,-288r47,0r-2,38v6,-2,32,-7,42,-7r4,59v-64,-1,-100,22,-39,46v32,12,48,33,48,58v0,36,-36,59,-55,69r2,55r-47,0r2,-45v-10,4,-49,9,-58,10r-5,-58v65,0,113,-25,48,-52v-28,-11,-49,-31,-49,-58v0,-27,27,-51,64,-64","w":294},"%":{"d":"92,-116v-55,0,-78,-30,-78,-65v0,-35,26,-75,84,-75v48,0,75,23,75,72v0,22,-18,68,-81,68xm93,-152v16,0,28,-10,28,-33v0,-25,-12,-34,-26,-34v-19,0,-28,16,-28,35v0,21,13,32,26,32xm278,0v-55,0,-77,-31,-77,-66v0,-35,26,-74,83,-74v49,0,76,23,76,72v0,22,-19,68,-82,68xm279,-35v13,0,28,-10,28,-33v0,-24,-12,-34,-25,-34v-18,0,-29,15,-29,35v0,21,11,32,26,32xm132,8r-35,-23r150,-248r36,22v-36,45,-112,180,-151,249","w":374},"&":{"d":"78,-68v1,26,49,28,65,9v-21,-14,-37,-29,-53,-43v-7,9,-12,19,-12,34xm272,-47r-42,56v-10,-6,-26,-17,-47,-34v-32,41,-177,48,-177,-30v0,-33,29,-62,50,-79v-11,-11,-19,-25,-19,-42v0,-35,44,-74,144,-84r7,60v-99,4,-92,25,-39,65r39,30v6,-10,15,-26,26,-47r53,33v-14,19,-25,33,-35,44","w":266},"\u2019":{"d":"29,-261r43,19r-39,72r-25,-12","w":82,"k":{"\u03ac":13,"\ue001":13,"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\ue013":23,"\u03ce":-13,"\ue016":-13,"\u03c9":8,"\ue015":8,"\u2019":18,"\u201d":18,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u03c4":-26,"\ue022":-26,"\u03cd":-13,"\ue028":-13,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u03bc":23,"\u0386":14,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u039c":25,"\u038f":-15,"\u2126":8,"\u03a9":8,"\u0398":8,"\u039f":8,"\u03a4":-29,"\u038e":-15,"\u03a5":-10,"\u03ab":-10,"t":-23,"\u0165":-23,"\u0163":-23,"\u021b":-23,"v":-17,"w":-17,"\uf776":-17,"\uf777":-17,"T":-25,"\u0164":-25,"\u0162":-25,"\u021a":-25,"V":-18,"W":-18,"\u03cc":-13,"\ue018":-13,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\ue007":8,"\u038c":-15,"\u0388":-15,"\u0389":-15,"\u038a":-15,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"s":13,"\u0161":13,"\u015b":13,"\u015f":13,"\u0219":13,"\uf773":13,"\uf6fd":13,"S":14,"\u0160":14,"\u015a":14,"\u015e":14,"\u0218":14,"m":23,"\uf76d":23,"M":25}},"(":{"d":"87,-283r34,39v-13,12,-49,42,-49,120v0,68,43,106,52,112r-37,41v-27,-18,-75,-71,-75,-150v0,-85,48,-144,75,-162","w":136,"k":{"\u03ce":-6,"\ue016":-6,"\u03c9":-10,"\ue015":-10,"\u03c4":-3,"\ue022":-3,"\u03cd":-6,"\ue028":-6,"\u038f":-8,"\u2126":-10,"\u03a9":-10,"\u03a4":-4,"\u038e":-8,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"\uf774":-10,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"\u03cc":-6,"\ue018":-6,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u038c":-8,"\u0388":-8,"\u0389":-8,"\u038a":-8}},")":{"d":"49,28r-34,-39v13,-12,49,-42,49,-120v0,-68,-42,-106,-51,-113r36,-40v27,18,76,71,76,150v0,85,-49,144,-76,162","w":136},"*":{"d":"123,-226r0,34v-5,0,-36,-9,-37,-6v2,2,20,21,26,28r-32,16v-2,-8,-9,-50,-10,-54v11,-3,44,-15,53,-18xm26,-245r28,-21v3,6,12,34,14,38v1,-2,10,-28,14,-38r28,19v-7,7,-39,34,-42,37v-7,-7,-36,-29,-42,-35xm56,-154r-30,-13v3,-7,27,-30,24,-32v-1,1,-31,8,-37,9r1,-36v7,2,49,17,52,18v-2,10,-8,44,-10,54","w":136},"+":{"d":"84,-192r46,0r0,74r70,0r0,43r-70,0r0,75r-46,0r0,-75r-70,0r0,-43r70,0r0,-74","w":214},",":{"d":"18,36r23,-94r53,24r-51,82","w":111},"-":{"d":"16,-101r-2,-56v18,0,101,1,122,1r1,51v-20,-1,-107,3,-121,4","w":151,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},".":{"d":"26,0r0,-56r60,0r0,56r-60,0","w":111},"\/":{"d":"1,-16r148,-238r35,21v-26,33,-115,181,-149,240","w":182},"0":{"d":"146,-6v-80,0,-135,-42,-135,-117v0,-72,56,-127,143,-127v81,0,129,52,129,118v0,66,-45,126,-137,126xm148,-65v23,0,52,-17,52,-66v0,-48,-30,-60,-51,-60v-23,0,-55,12,-55,65v0,48,31,61,54,61","w":294},"1":{"d":"202,0r-82,0r1,-176v-10,4,-28,12,-40,18r-18,-47v10,-5,78,-35,132,-60r8,4","w":294},"2":{"d":"233,-64r0,67v-42,-3,-137,-3,-195,-3r-6,-13v25,-23,105,-83,105,-132v0,-47,-55,-56,-88,-57r11,-60v116,10,162,54,162,100v0,55,-53,87,-68,99r0,3","w":294},"3":{"d":"73,-207r5,-56v82,1,151,22,151,68v0,29,-30,48,-49,61v33,7,58,25,58,54v0,51,-72,89,-170,90r-3,-57v26,3,84,-6,84,-35v0,-27,-47,-30,-61,-30r-2,-32v15,0,58,-7,58,-35v0,-21,-44,-28,-71,-28","w":294},"4":{"d":"259,-93r-3,53r-38,-1r1,41r-75,0r2,-41r-113,0r-12,-32r154,-192r44,9r0,165xm148,-91r0,-66v-6,11,-42,54,-50,66r50,0","w":294},"5":{"d":"130,-200r-4,26v85,7,103,38,103,72v0,47,-64,99,-168,111r-10,-60v34,-2,88,-13,88,-40v0,-20,-26,-30,-79,-31r16,-134v34,0,123,-4,150,-5r-1,66","w":294},"6":{"d":"168,-270r38,56v-19,10,-45,26,-62,50v67,0,112,35,112,80v0,78,-120,118,-186,69v-23,-17,-31,-45,-31,-68v0,-71,62,-151,129,-187xm148,-44v15,0,28,-13,28,-33v0,-25,-17,-44,-49,-44v-11,22,-15,79,21,77","w":294},"7":{"d":"54,-194r-1,-65v35,1,141,4,199,3r4,6v-17,44,-93,232,-103,262r-75,-32v8,-16,81,-160,87,-174r-111,0","w":294},"8":{"d":"149,-221v-19,0,-33,12,-33,35v0,20,15,33,30,33v14,0,31,-9,31,-35v0,-27,-16,-33,-28,-33xm144,6v-128,0,-132,-96,-62,-137v-74,-41,-51,-130,69,-130v111,0,134,83,59,126v31,12,47,35,47,65v0,32,-27,76,-113,76xm114,-71v2,49,65,50,66,-2v0,-26,-18,-38,-32,-38v-22,0,-34,17,-34,40","w":294},"9":{"d":"150,-261v58,0,104,30,104,89v0,69,-64,149,-128,186r-36,-56v17,-9,44,-27,58,-48v-67,0,-108,-37,-107,-80v1,-50,47,-91,109,-91xm149,-212v-17,0,-29,14,-29,36v0,25,15,44,48,44v12,-19,16,-80,-19,-80","w":294},":":{"d":"27,0r0,-54r58,0r0,54r-58,0xm27,-124r0,-54r58,0r0,54r-58,0","w":111,"k":{"\u03ce":-8,"\ue016":-8,"\u03cd":-8,"\ue028":-8,"\u038f":-8,"\u038e":-8,"\u03cc":-8,"\ue018":-8,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8,"\u038c":-8,"\u0388":-8,"\u0389":-8,"\u038a":-8}},";":{"d":"14,36r24,-93r49,23r-51,82xm27,-124r0,-54r58,0r0,54r-58,0","w":111,"k":{"\u03ce":-8,"\ue016":-8,"\u03cd":-8,"\ue028":-8,"\u038f":-8,"\u038e":-8,"\u03cc":-8,"\ue018":-8,"\u03ad":-8,"\u03ae":-8,"\u03af":-8,"\ue006":-8,"\ue008":-8,"\ue00e":-8,"\u038c":-8,"\u0388":-8,"\u0389":-8,"\u038a":-8}},"<":{"d":"19,-73r0,-46r176,-73r0,46r-132,50r132,50r0,46","w":214},"=":{"d":"200,-117r-186,0r0,-43r186,0r0,43xm200,-32r-186,0r0,-43r186,0r0,43","w":214},">":{"d":"195,-116r0,41r-176,75r0,-46r126,-50r-126,-49r0,-47","w":214},"?":{"d":"14,-208r8,-55v93,10,150,40,150,84v0,56,-61,89,-118,102r-13,-43v15,-4,47,-16,47,-47v0,-28,-43,-40,-74,-41xm46,0r0,-54r60,0r0,54r-60,0","w":190},"@":{"d":"126,-114r31,-1v-3,-5,-15,-27,-16,-30v-3,4,-12,26,-15,31xm216,-56v-20,1,-38,-16,-47,-32r-52,1v-2,3,-11,23,-14,29r-32,-17v10,-17,61,-112,66,-121r8,0v17,27,50,86,58,99v6,9,11,12,16,12v13,0,18,-14,18,-38v0,-53,-41,-96,-93,-96v-55,0,-96,44,-96,104v0,84,92,118,154,77r12,27v-81,46,-200,-3,-200,-102v0,-72,56,-132,130,-132v72,0,125,51,125,120v0,37,-16,67,-53,69","w":283},"A":{"d":"68,12r-68,-39v11,-18,110,-187,145,-242r4,0v43,65,140,217,155,238r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"B":{"d":"37,2r2,-175v0,-11,-1,-75,-2,-83v52,0,79,1,111,5v75,9,85,39,85,59v0,13,-7,35,-45,53r0,3v25,5,56,20,56,55v0,48,-90,91,-207,83xm114,-112r0,70v20,0,49,-15,49,-36v0,-23,-24,-35,-49,-34xm114,-215r0,68v15,0,40,-15,40,-41v0,-24,-25,-28,-40,-27","w":262,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"Y":5,"\u00dd":5,"\u0178":5,"\ue02a":5,"\ue02d":5,"\ue02b":5,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"\u0103":4,"\u0101":4,"\u0105":4,"b":2,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2}},"C":{"d":"213,-63r4,66v-13,1,-26,3,-43,3v-118,0,-161,-61,-161,-109v0,-60,54,-131,178,-158r16,69v-76,14,-107,46,-107,80v0,38,61,59,113,49","w":232,"k":{"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"D":{"d":"37,2r2,-160v0,-8,-1,-88,-2,-98v66,0,105,2,138,7v94,13,113,62,113,91v0,113,-135,160,-251,160xm118,-198r0,134v35,-6,84,-31,84,-81v0,-42,-43,-53,-84,-53","w":302,"k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"E":{"d":"198,-58r1,62v-13,0,-142,-4,-161,-4r0,-256v20,0,141,-5,154,-6r2,59v-13,0,-71,2,-77,2r0,48v7,0,49,-3,65,-4r1,58v-10,0,-58,-1,-66,-1r0,42v9,0,64,1,81,0","w":223},"F":{"d":"118,0r-81,0r2,-153v0,-6,-1,-93,-2,-103v30,0,120,-4,158,-5r2,59r-80,2r0,56v8,0,33,-3,73,-4r1,57r-74,0","w":216,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"\u0103":10,"\u0101":10,"\u0105":10,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"\u0102":9,"\u0100":9,"\u0104":9,",":14,".":14}},"G":{"d":"240,-115r1,112v-9,3,-43,9,-80,9v-105,-1,-148,-50,-148,-107v0,-44,37,-129,185,-161r17,70v-49,6,-117,38,-117,87v0,36,38,50,65,49r-1,-59r78,0","w":266},"H":{"d":"121,0r-83,0r-1,-256r85,0r-2,97r93,-7r-1,-90r84,0r-2,154v0,5,1,95,2,102r-84,0r1,-105r-93,7","w":333,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"I":{"d":"121,-256r0,256r-83,0r0,-256r83,0","w":158,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"J":{"d":"132,-256v-2,13,-2,110,-2,147v0,78,-35,120,-93,151r-38,-63v21,-12,50,-27,50,-89r-1,-146r84,0","w":166},"K":{"d":"121,4r-84,0r2,-151v0,-31,-2,-104,-2,-112r84,0r-1,118r96,-121r60,53v-14,14,-57,57,-76,78v13,14,64,69,79,84r-63,56v-6,-8,-73,-93,-96,-127","w":285,"k":{"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2,"s":-2,"\u0161":-2,"\u015b":-2,"\u015f":-2,"\u0219":-2,"S":-2,"\u0160":-2,"\u015a":-2,"\u015e":-2,"\u0218":-2}},"L":{"d":"37,-256r85,0r-2,194v9,0,51,0,80,-1r0,67v-9,0,-133,-4,-162,-4","w":210,"k":{"\u2019":2,"\u201d":2,"t":12,"\u0165":12,"\u0163":12,"\u021b":12,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":18,"w":18,"y":28,"\u00fd":28,"\u00ff":28,"\ue03b":28,"\ue03c":28,"\ue03d":28,"T":11,"\u0164":11,"\u0162":11,"\u021a":11,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":16,"W":16,"Y":25,"\u00dd":25,"\u0178":25,"\ue02a":25,"\ue02d":25,"\ue02b":25}},"M":{"d":"75,11r-71,-26v6,-14,78,-203,99,-249r4,0r86,143v14,-21,65,-106,84,-137r4,0v25,53,97,217,107,237r-73,32v-12,-29,-46,-120,-50,-130v-4,6,-50,77,-77,115r-4,0v-28,-42,-65,-102,-71,-113v-6,19,-32,111,-38,128","w":391,"k":{"t":20,"\u0165":20,"\u0163":20,"\u021b":20,"u":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u00f9":8,"\u0171":8,"\u016b":8,"\u0173":8,"\u016f":8,"v":14,"w":14,"y":28,"\u00fd":28,"\u00ff":28,"\ue03b":28,"\ue03c":28,"\ue03d":28,"T":18,"\u0164":18,"\u0162":18,"\u021a":18,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"\u0170":7,"\u016a":7,"\u0172":7,"\u016e":7,"V":13,"W":13,"Y":25,"\u00dd":25,"\u0178":25,"\ue02a":25,"\ue02d":25,"\ue02b":25}},"N":{"d":"100,3r-73,-3v2,-26,10,-210,14,-258r4,-2v51,37,166,125,179,134v0,-20,-1,-116,-1,-131r74,1r-15,261r-4,2v-43,-28,-174,-131,-179,-135v0,15,1,119,1,131","w":322,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"O":{"d":"153,6v-96,0,-139,-65,-139,-123v0,-69,51,-144,157,-144v86,0,139,47,139,126v0,54,-36,141,-157,141xm157,-50v39,0,65,-28,65,-82v0,-46,-21,-74,-56,-74v-41,0,-64,39,-64,83v0,48,25,73,55,73","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"P":{"d":"118,0r-80,0r0,-256v69,0,112,2,142,9v36,9,68,30,68,71v0,47,-44,98,-131,112xm117,-205r0,91v21,-3,49,-22,49,-52v0,-20,-10,-36,-49,-39","w":257,"k":{"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,",":29,".":29}},"Q":{"d":"315,40r-165,-35v-12,0,-63,-3,-97,-34v-85,-81,-20,-232,117,-232v87,0,140,48,140,124v0,55,-30,93,-65,111r0,3v25,1,48,1,78,2xm102,-121v0,59,32,72,55,72v28,0,65,-18,65,-84v0,-57,-30,-73,-55,-73v-42,0,-65,37,-65,85","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"R":{"d":"38,-256v94,0,214,-4,214,66v0,30,-19,52,-47,72v11,12,66,68,75,80r-65,50v-8,-14,-78,-115,-88,-131v36,-15,74,-87,-10,-87r2,206r-80,0","w":279,"k":{"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4}},"S":{"d":"99,-180v10,26,85,33,85,84v0,40,-42,89,-151,102r-9,-61v35,1,73,-9,73,-26v-5,-21,-84,-44,-84,-89v0,-40,53,-84,144,-92r10,60v-45,0,-68,7,-68,22","w":196,"k":{"m":2,"M":2}},"T":{"d":"161,0r-84,0r1,-194v-17,0,-68,2,-79,2r0,-63r137,3v7,0,85,-2,103,-3r0,63v-7,0,-74,-2,-80,-2","w":237,"k":{"\u2019":-29,"\u201d":-29,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\ue03b":-6,"\ue03c":-6,"\ue03d":-6,"V":-5,"W":-5,"Y":-5,"\u00dd":-5,"\u0178":-5,"\ue02a":-5,"\ue02d":-5,"\ue02b":-5,")":-11,"]":-11,"}":-11,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,"\u0103":19,"\u0101":19,"\u0105":19,"A":17,"\u00c6":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,"\u0102":17,"\u0100":17,"\u0104":17,"c":16,"g":16,"o":16,"q":16,"\u00f8":16,"\u0153":16,"\u00e7":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"\u0107":16,"\u010d":16,"\u011f":16,"\u0123":16,"\u0151":16,"\u014d":16,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u011e":14,"\u0122":14,"\u0150":14,"\u014c":14,",":22,".":22,"m":14,"M":13,":":-7,";":-7,"\u037e":-7,"\u0387":-7}},"U":{"d":"279,-259v6,141,1,269,-128,265v-30,0,-74,-5,-101,-45v-27,-18,-25,-143,-23,-215r84,0v-2,8,-4,60,-3,87v2,77,-1,113,48,113v13,0,24,-5,32,-17v15,0,9,-145,8,-188r83,0","w":305,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"\u0103":10,"\u0101":10,"\u0105":10,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"\u0102":9,"\u0100":9,"\u0104":9,"m":10,"M":9}},"V":{"d":"220,-263r76,39v-14,20,-124,198,-151,239r-4,0v-37,-58,-129,-217,-141,-236r78,-42v8,16,59,125,70,149v11,-24,67,-137,72,-149","w":290,"k":{"\u2019":-23,"\u201d":-23,"t":-14,"\u0165":-14,"\u0163":-14,"\u021b":-14,"v":-4,"w":-4,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,"T":-13,"\u0164":-13,"\u0162":-13,"\u021a":-13,"V":-4,"W":-4,"Y":-2,"\u00dd":-2,"\u0178":-2,"\ue02a":-2,"\ue02d":-2,"\ue02b":-2,")":-4,"]":-4,"}":-4,"a":32,"\u00e6":32,"\u00e1":32,"\u00e2":32,"\u00e4":32,"\u00e0":32,"\u00e5":32,"\u00e3":32,"\u0103":32,"\u0101":32,"\u0105":32,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,",":32,".":32,"m":6,"M":5,":":-11,";":-11,"\u037e":-11,"\u0387":-11,"-":-11,"\u00ad":-11}},"W":{"d":"316,-256r73,29v-6,13,-98,211,-112,236r-3,0v-20,-26,-66,-92,-80,-111v-23,32,-66,97,-83,120r-4,0v-14,-27,-87,-208,-104,-249r76,-28v12,41,40,129,46,145r69,-114r3,0r73,107v8,-19,38,-114,46,-135","w":383,"k":{"\u2019":-23,"\u201d":-23,"t":-14,"\u0165":-14,"\u0163":-14,"\u021b":-14,"v":-4,"w":-4,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,"T":-13,"\u0164":-13,"\u0162":-13,"\u021a":-13,"V":-4,"W":-4,"Y":-2,"\u00dd":-2,"\u0178":-2,"\ue02a":-2,"\ue02d":-2,"\ue02b":-2,")":-4,"]":-4,"}":-4,"a":32,"\u00e6":32,"\u00e1":32,"\u00e2":32,"\u00e4":32,"\u00e0":32,"\u00e5":32,"\u00e3":32,"\u0103":32,"\u0101":32,"\u0105":32,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,",":32,".":32,"m":6,"M":5,":":-11,";":-11,"\u037e":-11,"\u0387":-11,"-":-11,"\u00ad":-11}},"X":{"d":"64,15r-55,-55v6,-8,73,-78,83,-90v-18,-20,-70,-76,-75,-82r62,-56v15,20,58,74,68,86r71,-86r57,53v-9,9,-72,72,-81,82v13,14,76,82,83,90r-61,57v-12,-14,-63,-79,-76,-94v-8,9,-68,86,-76,95","w":288,"k":{"\u2019":-4,"\u201d":-4,"x":4,"X":4,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"Y":{"d":"273,-187v-56,13,-104,61,-95,143v0,5,1,37,2,44r-85,0r2,-67v0,-66,-38,-107,-88,-120r28,-74v51,17,86,41,103,98r3,0v18,-49,53,-82,107,-98","w":282,"k":{"\u2019":-17,"\u201d":-17,"t":-8,"\u0165":-8,"\u0163":-8,"\u021b":-8,"v":-4,"w":-4,"T":-7,"\u0164":-7,"\u0162":-7,"\u021a":-7,"V":-4,"W":-4,")":-7,"]":-7,"}":-7,"a":38,"\u00e6":38,"\u00e1":38,"\u00e2":38,"\u00e4":38,"\u00e0":38,"\u00e5":38,"\u00e3":38,"\u0103":38,"\u0101":38,"\u0105":38,"A":34,"\u00c6":34,"\u00c1":34,"\u00c2":34,"\u00c4":34,"\u00c0":34,"\u00c5":34,"\u00c3":34,"\u0102":34,"\u0100":34,"\u0104":34,"c":20,"g":20,"o":20,"q":20,"\u00f8":20,"\u0153":20,"\u00e7":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"\u0107":20,"\u010d":20,"\u011f":20,"\u0123":20,"\u0151":20,"\u014d":20,"C":18,"G":18,"O":18,"Q":18,"\u00d8":18,"\u0152":18,"\u00c7":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"\u0106":18,"\u010c":18,"\u011e":18,"\u0122":18,"\u0150":18,"\u014c":18,",":32,".":32,"m":24,"M":22,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"Z":{"d":"26,-199r1,-63v16,2,200,8,217,9r2,3v-9,17,-112,185,-116,191v21,0,101,-2,111,-3r-1,66v-9,0,-211,-4,-227,-4r-1,-4v17,-26,111,-179,119,-192v-12,0,-95,-3,-105,-3","w":261},"[":{"d":"29,-279r105,-8r2,40r-48,2v-4,61,-2,177,0,237r46,-1r2,40r-107,-3r2,-177v0,-43,-1,-87,-2,-130","w":136,"k":{"\u03ce":-6,"\ue016":-6,"\u03c9":-10,"\ue015":-10,"\u03c4":-3,"\ue022":-3,"\u03cd":-6,"\ue028":-6,"\u038f":-8,"\u2126":-10,"\u03a9":-10,"\u03a4":-4,"\u038e":-8,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"\uf774":-10,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"\u03cc":-6,"\ue018":-6,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u038c":-8,"\u0388":-8,"\u0389":-8,"\u038a":-8}},"\\":{"d":"32,-254r147,238r-34,23r-76,-128v-33,-55,-67,-106,-72,-112","w":182},"]":{"d":"108,23r-105,8r-2,-40r48,-1r0,-238r-46,1r-2,-40r107,3r-2,177v0,43,1,87,2,130","w":136},"^":{"d":"203,-62r-49,0r-47,-121r-47,121r-48,0r75,-172r41,0","w":214},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"54,-261r21,79r-26,12r-39,-72","w":82,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\ue013":23,"\u03ce":-19,"\ue016":-19,"\u03c8":-6,"\ue01c":-6,"\u2018":18,"\u201c":18,"\u03c4":-26,"\ue022":-26,"\u03cd":-13,"\ue028":-13,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u03bc":23,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u039c":25,"\u038f":-22,"\u03a8":-5,"\u03a4":-29,"\u038e":-15,"\u03a5":-10,"\u03ab":-10,"t":-26,"\u0165":-26,"\u0163":-26,"\u021b":-26,"v":-18,"w":-18,"y":-9,"\u00fd":-9,"\u00ff":-9,"\ue03b":-9,"\ue03c":-9,"\ue03d":-9,"\uf774":-26,"\uf776":-18,"\uf777":-18,"\uf779":-9,"\uf7fd":-9,"\uf7ff":-9,"\ue02f":-9,"\ue02c":-9,"\ue02e":-9,"T":-29,"\u0164":-29,"\u0162":-29,"\u021a":-29,"V":-20,"W":-20,"Y":-10,"\u00dd":-10,"\u0178":-10,"\ue02a":-10,"\ue02d":-10,"\ue02b":-10,"\u03cc":-19,"\ue018":-19,"\u03ad":-19,"\u03ae":-19,"\u03af":-19,"\ue006":-19,"\ue008":-19,"\ue00e":-19,"\u038c":-22,"\u0388":-22,"\u0389":-22,"\u038a":-22,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"j":3,"\uf76a":3,"J":4}},"a":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"b":{"d":"32,2r0,-219v50,0,77,-1,106,3v68,8,78,34,78,51v0,13,-15,32,-45,47v26,2,55,18,55,48v0,35,-46,70,-158,70r-36,0xm105,-94r0,57v20,0,43,-13,43,-30v0,-20,-18,-28,-43,-27xm105,-181r0,54v13,0,35,-8,35,-33v0,-20,-23,-22,-35,-21","w":240,"k":{"y":5,"\u00fd":5,"\u00ff":5,"\ue03b":5,"\ue03c":5,"\ue03d":5,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"b":2}},"c":{"d":"195,-56r4,59v-12,1,-24,2,-39,2v-107,0,-148,-50,-148,-92v0,-51,50,-115,163,-135r15,60v-67,11,-95,39,-95,67v0,33,57,47,100,39","w":212,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"d":{"d":"32,1r2,-136v0,-6,-1,-73,-2,-82v62,0,97,1,127,5v86,11,101,53,101,78v0,99,-121,138,-228,135xm110,-167r0,112v30,-4,69,-25,69,-68v0,-38,-35,-44,-69,-44","w":274,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"e":{"d":"183,-52r1,55v-13,0,-132,-3,-151,-3r0,-217v21,0,130,-5,144,-6r2,53v-12,0,-64,2,-70,2r0,37v6,0,45,-2,59,-3r0,51v-9,0,-52,-1,-59,-1r0,33v8,0,59,0,74,-1","w":204},"f":{"d":"111,0r-78,0r0,-217v29,0,111,-4,148,-5r1,53r-72,1r0,45v7,0,29,-2,66,-3r1,50r-67,0","w":198,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,",":13,".":13}},"g":{"d":"222,-100r1,98v-10,2,-41,7,-74,7v-97,0,-137,-43,-137,-91v0,-37,36,-112,173,-137r15,64v-46,5,-106,28,-106,70v0,30,32,41,55,40r-1,-51r74,0","w":244},"h":{"d":"114,0r-80,0r-1,-217r81,0r-2,81r79,-6r-1,-75r80,0r0,217r-80,0r1,-87r-79,6","w":303,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"i":{"d":"112,-217r0,217r-80,0r0,-217r80,0","w":144,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"j":{"d":"122,-217r-1,124v0,67,-34,104,-87,130r-38,-56v20,-10,47,-22,47,-75r-2,-123r81,0","w":151},"k":{"d":"113,3r-80,0r0,-223r80,0r-1,96v16,-20,75,-91,83,-100r55,49v-13,12,-47,47,-65,64r70,68r-63,52v-5,-6,-62,-80,-80,-104","w":261,"k":{"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"s":-2,"\u0161":-2,"\u015b":-2,"\u015f":-2,"\u0219":-2}},"l":{"d":"33,-217r80,0r-1,162v8,0,46,-1,72,-2r1,60v-10,0,-124,-3,-152,-3r0,-217","w":191,"k":{"\u2019":2,"\u201d":2,"t":10,"\u0165":10,"\u0163":10,"\u021b":10,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":15,"w":15,"y":23,"\u00fd":23,"\u00ff":23,"\ue03b":23,"\ue03c":23,"\ue03d":23}},"m":{"d":"69,9r-66,-22v6,-12,71,-172,90,-211r5,0r78,119v13,-18,58,-88,76,-114r5,0v23,45,87,184,96,201r-68,27v-10,-24,-40,-100,-43,-108v-4,6,-46,64,-70,96r-5,0v-25,-35,-59,-85,-64,-94v-5,16,-28,92,-34,106","w":356,"k":{"t":17,"\u0165":17,"\u0163":17,"\u021b":17,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":12,"w":12,"y":23,"\u00fd":23,"\u00ff":23,"\ue03b":23,"\ue03c":23,"\ue03d":23}},"n":{"d":"93,2r-71,-2v2,-22,10,-178,13,-219r6,-2v46,30,146,100,153,107r0,-105r71,2r-14,222r-6,1v-33,-20,-139,-97,-152,-108r0,104","w":286},"o":{"d":"140,5v-88,0,-126,-56,-126,-105v0,-59,45,-122,142,-122v78,0,127,41,127,108v0,46,-33,119,-143,119xm144,-45v33,0,55,-22,55,-67v0,-39,-17,-60,-47,-60v-35,0,-54,31,-54,68v0,40,21,59,46,59","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"p":{"d":"110,0r-77,0r0,-217v70,0,108,1,135,7v33,8,62,26,62,61v0,42,-43,84,-121,96xm109,-173r0,75v18,-1,43,-15,43,-43v0,-17,-10,-29,-43,-32","w":240,"k":{"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"\u0103":20,"\u0101":20,"\u0105":20,",":26,".":26}},"q":{"d":"294,-20r-7,56r-149,-31v-19,0,-59,-2,-89,-29v-78,-70,-16,-198,107,-198v79,0,127,41,127,105v0,48,-31,78,-56,96v20,1,40,0,67,1xm97,-103v0,44,27,59,48,59v26,0,54,-16,54,-69v0,-45,-23,-59,-46,-59v-35,0,-56,30,-56,69","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"r":{"d":"33,-217v85,-1,198,-6,198,56v0,26,-15,45,-41,61v10,10,57,54,66,64r-64,46r-77,-110v32,-11,64,-74,-6,-73r2,173r-78,0r2,-136v0,-9,-1,-75,-2,-81","w":253,"k":{"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3}},"s":{"d":"91,-153v11,24,83,22,83,71v0,37,-43,80,-146,88r-8,-55v35,1,72,-4,72,-19v-6,-22,-82,-31,-82,-76v0,-38,53,-75,140,-80r9,56v-45,0,-68,2,-68,15","w":183,"k":{"m":2}},"t":{"d":"148,0r-80,0r1,-162v-13,0,-60,2,-70,2r0,-57r124,3v6,0,78,-2,94,-3r0,57v-6,0,-67,-2,-70,-2","w":216,"k":{"\u2019":-26,"\u201d":-26,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\ue03b":-5,"\ue03c":-5,"\ue03d":-5,")":-10,"]":-10,"}":-10,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e4":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,"\u0103":16,"\u0101":16,"\u0105":16,"c":13,"g":13,"o":13,"q":13,"\u00f8":13,"\u0153":13,"\u00e7":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"\u0107":13,"\u010d":13,"\u011f":13,"\u0123":13,"\u0151":13,"\u014d":13,",":20,".":20,"m":12,":":-6,";":-6,"\u037e":-6,"\u0387":-6}},"u":{"d":"255,-220v7,125,-4,225,-118,225v-27,0,-69,-3,-93,-38v-24,-15,-23,-120,-21,-183r80,0v4,64,-21,169,38,168v12,0,21,-5,27,-14v14,0,8,-120,8,-158r79,0","w":277,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":8}},"v":{"d":"198,-224r71,34v-12,17,-110,168,-135,203r-7,0v-34,-49,-117,-185,-127,-201r72,-36r63,126","w":264,"k":{"\u2019":-21,"\u201d":-21,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-3,"w":-3,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,")":-3,"]":-3,"}":-3,"a":26,"\u00e6":26,"\u00e1":26,"\u00e2":26,"\u00e4":26,"\u00e0":26,"\u00e5":26,"\u00e3":26,"\u0103":26,"\u0101":26,"\u0105":26,",":30,".":30,"m":5,":":-10,";":-10,"\u037e":-10,"\u0387":-10,"-":-10,"\u00ad":-10}},"w":{"d":"286,-219r68,26v-6,11,-88,180,-101,201r-5,0v-18,-22,-60,-78,-72,-94r-75,101r-5,0v-13,-23,-77,-177,-93,-212r70,-24v11,35,35,108,40,122v5,-9,33,-49,63,-94r4,0r66,88v6,-15,33,-96,40,-114","w":348,"k":{"\u2019":-21,"\u201d":-21,"t":-12,"\u0165":-12,"\u0163":-12,"\u021b":-12,"v":-3,"w":-3,"y":-2,"\u00fd":-2,"\u00ff":-2,"\ue03b":-2,"\ue03c":-2,"\ue03d":-2,")":-3,"]":-3,"}":-3,"a":26,"\u00e6":26,"\u00e1":26,"\u00e2":26,"\u00e4":26,"\u00e0":26,"\u00e5":26,"\u00e3":26,"\u0103":26,"\u0101":26,"\u0105":26,",":30,".":30,"m":5,":":-10,";":-10,"\u037e":-10,"\u0387":-10,"-":-10,"\u00ad":-10}},"x":{"d":"60,14r-52,-50v6,-7,65,-64,74,-74r-67,-69r58,-50v14,17,51,63,60,73r64,-73r54,49v-8,8,-64,58,-73,67r75,74r-58,52v-11,-13,-56,-66,-68,-79v-7,8,-59,72,-67,80","w":262,"k":{"\u2019":-3,"\u201d":-3,"x":3,"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"y":{"d":"248,-154v-63,8,-98,67,-82,154r-81,0v9,-80,-11,-146,-76,-153r25,-70v45,13,78,35,93,84r3,0v17,-44,49,-71,98,-85","w":257,"k":{"\u2019":-16,"\u201d":-16,"t":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,")":-6,"]":-6,"}":-6,"a":31,"\u00e6":31,"\u00e1":31,"\u00e2":31,"\u00e4":31,"\u00e0":31,"\u00e5":31,"\u00e3":31,"\u0103":31,"\u0101":31,"\u0105":31,"c":17,"g":17,"o":17,"q":17,"\u00f8":17,"\u0153":17,"\u00e7":17,"\u00f3":17,"\u00f4":17,"\u00f6":17,"\u00f2":17,"\u00f5":17,"\u0107":17,"\u010d":17,"\u011f":17,"\u0123":17,"\u0151":17,"\u014d":17,",":30,".":30,"m":20,":":-6,";":-6,"\u037e":-6,"\u0387":-6,"-":-6,"\u00ad":-6}},"z":{"d":"24,-168r1,-55v15,2,182,7,197,8r3,4v-8,14,-100,155,-104,159v19,0,90,-1,99,-2r-2,57v-8,0,-192,-3,-206,-3r-2,-4v15,-22,99,-152,106,-161v-11,0,-83,-3,-92,-3","w":237},"{":{"d":"113,-285r14,42v-19,3,-26,18,-26,59v0,21,-12,43,-33,53v22,10,33,28,33,60v0,47,8,58,26,60r-14,42v-52,-4,-68,-37,-71,-102v-1,-34,-14,-38,-37,-38r0,-40v23,0,36,-4,37,-36v2,-63,20,-92,71,-100","w":136,"k":{"\u03ce":-6,"\ue016":-6,"\u03c9":-10,"\ue015":-10,"\u03c4":-3,"\ue022":-3,"\u03cd":-6,"\ue028":-6,"\u038f":-8,"\u2126":-10,"\u03a9":-10,"\u03a4":-4,"\u038e":-8,"t":-10,"\u0165":-10,"\u0163":-10,"\u021b":-10,"\uf774":-10,"T":-11,"\u0164":-11,"\u0162":-11,"\u021a":-11,"\u03cc":-6,"\ue018":-6,"\u03ad":-6,"\u03ae":-6,"\u03af":-6,"\ue006":-6,"\ue008":-6,"\ue00e":-6,"\u038c":-8,"\u0388":-8,"\u0389":-8,"\u038a":-8}},"|":{"d":"91,90r-48,0r0,-360r48,0r0,360","w":134},"}":{"d":"24,31r-15,-42v19,-3,27,-18,27,-59v0,-22,12,-44,34,-55v-23,-11,-34,-28,-34,-58v0,-47,-9,-58,-27,-60r15,-42v52,4,69,37,71,100v1,34,13,38,36,38r0,40v-23,0,-36,4,-37,36v-2,65,-19,94,-70,102","w":136},"~":{"d":"149,-61v-32,0,-55,-26,-80,-30v-5,0,-10,4,-14,28r-44,0v0,-56,15,-80,54,-80v28,0,61,26,84,29v3,0,7,-5,9,-27r45,0v2,69,-26,80,-54,80","w":214},"\u00a1":{"d":"94,-256r0,55r-60,0r0,-55r60,0xm40,-167r48,-4v4,44,13,130,15,174r-88,-3v4,-33,21,-126,25,-167","w":118},"\u00a2":{"d":"128,6r1,-52v-110,-38,-82,-128,0,-169r-1,-60r46,0r-1,46v6,-2,32,-7,51,-9r4,59v-61,4,-89,26,-89,52v0,35,68,32,94,27r3,56v-20,4,-41,3,-63,2r1,48r-46,0","w":294},"\u00a3":{"d":"243,-52r0,54v-13,0,-136,-2,-181,-2v12,-37,16,-70,21,-97v-14,1,-23,2,-31,2r0,-35v9,0,20,0,35,-1v6,-83,62,-123,146,-130r4,57v-28,-5,-67,14,-73,70v18,-1,50,-4,57,-4r-1,37v-10,0,-29,1,-61,2v-4,19,-9,37,-19,50v29,0,74,-1,103,-3","w":294},"\u2044":{"d":"120,-241v-36,45,-112,180,-151,249r-35,-23r150,-248","w":54},"\u00a5":{"d":"181,0r-73,0r1,-73v-33,0,-47,1,-56,1r-1,-35r53,0r-78,-109r63,-41r57,103r60,-103r61,37r-84,113r52,0r1,35v-9,0,-25,-1,-58,-1","w":294},"\u0192":{"d":"152,0r-74,0v0,-30,-2,-83,6,-139v10,-72,55,-114,140,-122r7,61v-44,-2,-75,19,-76,77v18,-1,43,-3,58,-4r-1,42v-15,0,-44,1,-59,2","w":294},"\u00a7":{"d":"111,-183v9,26,91,28,91,73v0,14,-5,33,-35,46v10,8,15,16,15,29v0,30,-40,68,-142,77r-8,-49v42,0,79,-5,79,-21v-6,-25,-97,-24,-97,-76v0,-13,8,-33,39,-43v-12,-8,-16,-18,-16,-30v0,-38,51,-64,133,-71r7,47v-28,-1,-66,2,-66,18xm135,-79v19,-15,8,-35,-19,-41v-11,-3,-27,-9,-32,-12v-21,11,-14,32,13,39v14,4,26,9,38,14","w":216},"\u00a4":{"d":"238,-196r-36,30v4,6,14,16,14,42v0,24,-9,37,-17,45r36,30r-33,32r-29,-37v-24,19,-70,19,-95,-1r-30,38r-33,-32r36,-32v-19,-6,-19,-78,-2,-85r-37,-31r33,-33r33,36v22,-17,70,-16,95,-1r33,-35xm168,-125v0,-28,-25,-34,-43,-34v-17,0,-41,8,-41,34v0,30,25,38,42,38v15,0,42,-8,42,-38","w":250},"'":{"d":"18,-261r47,0r-10,81r-28,0","w":82,"k":{"\u03bc":8,"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\ue013":23,"\u03ce":-19,"\ue016":-19,"\u03c9":8,"\ue015":8,"\u03c4":-26,"\ue022":-26,"\u03cd":-19,"\ue028":-19,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u039c":25,"\u038f":-22,"\u2126":8,"\u03a9":8,"\u03a4":-29,"\u038e":-22,"\u03a5":-10,"\u03ab":-10,"t":-26,"\u0165":-26,"\u0163":-26,"\u021b":-26,"\uf774":-29,"T":-29,"\u0164":-29,"\u0162":-29,"\u021a":-29,"\u03cc":-19,"\ue018":-19,"\u03ad":-19,"\u03ae":-19,"\u03af":-19,"\ue006":-19,"\ue008":-19,"\ue00e":-19,"\ue007":8,"\u038c":-22,"\u0388":-22,"\u0389":-22,"\u038a":-22,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14}},"\u201c":{"d":"114,-261r18,80r-26,11r-35,-75xm46,-261r35,72r-22,15r-49,-64","w":140,"k":{"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\ue013":23,"\u03ce":-19,"\ue016":-19,"\u03c8":-6,"\ue01c":-6,"\u2018":18,"\u201c":18,"\u03c4":-26,"\ue022":-26,"\u03cd":-13,"\ue028":-13,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u03bc":23,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u039c":25,"\u038f":-22,"\u03a8":-5,"\u03a4":-29,"\u038e":-15,"\u03a5":-10,"\u03ab":-10,"t":-26,"\u0165":-26,"\u0163":-26,"\u021b":-26,"v":-18,"w":-18,"y":-9,"\u00fd":-9,"\u00ff":-9,"\ue03b":-9,"\ue03c":-9,"\ue03d":-9,"\uf774":-26,"\uf776":-18,"\uf777":-18,"\uf779":-9,"\uf7fd":-9,"\uf7ff":-9,"\ue02f":-9,"\ue02c":-9,"\ue02e":-9,"T":-29,"\u0164":-29,"\u0162":-29,"\u021a":-29,"V":-20,"W":-20,"Y":-10,"\u00dd":-10,"\u0178":-10,"\ue02a":-10,"\ue02d":-10,"\ue02b":-10,"\u03cc":-19,"\ue018":-19,"\u03ad":-19,"\u03ae":-19,"\u03af":-19,"\ue006":-19,"\ue008":-19,"\ue00e":-19,"\u038c":-22,"\u0388":-22,"\u0389":-22,"\u038a":-22,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\uf761":13,"\uf7e6":13,"\uf7e1":13,"\uf7e2":13,"\uf7e4":13,"\uf7e0":13,"\uf7e5":13,"\uf7e3":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"j":3,"\uf76a":3,"J":4}},"\u00ab":{"d":"72,-185r28,23v-6,7,-26,27,-35,39v10,11,26,27,37,37r-26,27v-8,-10,-45,-51,-55,-63xm153,-196r28,28v-10,10,-33,31,-41,42v10,11,29,30,41,42r-28,30v-9,-11,-51,-58,-61,-70v12,-15,49,-56,61,-72","w":199,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u2039":{"d":"81,-196r29,28v-9,10,-33,33,-41,44v10,11,29,28,41,40r-29,30v-9,-11,-51,-56,-61,-68v12,-15,49,-58,61,-74","w":129,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u203a":{"d":"48,-54r-28,-28v9,-10,33,-33,41,-44v-10,-11,-29,-29,-41,-41r28,-29v9,11,51,56,61,68v-12,15,-49,58,-61,74","w":129,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\ufb01":{"d":"111,0r-78,0r0,-217v29,0,111,-4,148,-5r1,53r-72,1r0,45v7,0,29,-2,66,-3r1,50r-67,0xm311,-217r0,217r-80,0r0,-217r80,0","w":343},"\ufb02":{"d":"111,0r-78,0r0,-217v29,0,111,-4,148,-5r1,53r-72,1r0,45v7,0,29,-2,66,-3r1,50r-67,0xm231,-217r81,0r-2,162v8,0,47,-1,73,-2r0,60v-10,0,-124,-3,-152,-3r0,-217","w":389},"\u2013":{"d":"0,-101r0,-51r180,0r0,51r-180,0","w":180},"\u2020":{"d":"212,-121r-75,-8r9,147r-70,0r9,-147r-75,8r0,-54r75,7r-9,-75r70,0r-9,75r75,-7r0,54","w":222},"\u2021":{"d":"212,-47r-73,-7r6,72r-68,0r7,-72r-74,7r0,-54r74,8r0,-45r-74,8r0,-54r74,7r-7,-66r68,0r-6,66r73,-7r0,54r-73,-8r0,45r73,-8r0,54","w":222},"\u00b7":{"d":"26,-95r0,-56r60,0r0,56r-60,0","w":111},"\u00b6":{"d":"211,-246r-3,154v0,16,2,99,2,107r-53,0r0,-217r-28,3r0,214r-52,0r1,-106v-40,-12,-66,-34,-66,-70v0,-73,125,-91,199,-85","w":236},"\u2022":{"d":"12,-145v22,-12,42,-25,55,-34v15,22,26,42,40,58v-27,17,-45,30,-65,44v-11,-26,-19,-47,-30,-68","w":118},"\u201a":{"d":"29,-49r43,19r-39,72r-25,-11","w":82,"k":{"\ue012":-6,"\u03b1":-6,"\u03bb":-6,"\ue000":-6,"\u03ce":-10,"\ue016":-10,"\u03c9":-10,"\ue015":-10,"\u03c8":13,"\ue01c":13,"\u03c4":13,"\ue022":13,"\u03cd":13,"\ue028":13,"\u03c5":13,"\u03cb":13,"\ue024":13,"\ue026":13,"\u0391":-15,"\u039b":-15,"\u038f":-10,"\u2126":-10,"\u03a9":-10,"\u03a8":15,"\u03a4":15,"\u038e":15,"\u03a5":15,"\u03ab":15,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"T":15,"\u0164":15,"\u0162":15,"\u021a":15}},"\u201e":{"d":"26,-49r43,17r-35,74r-26,-10xm95,-49r35,23r-49,64r-22,-15","w":140,"k":{"\u03ce":-8,"\ue016":-8,"\u03c9":-8,"\ue015":-8,"\u03c4":13,"\ue022":13,"\u03cd":13,"\ue028":13,"\u03c5":13,"\u03cb":13,"\ue024":13,"\ue026":13,"\u038f":-8,"\u2126":-8,"\u03a9":-8,"\u03a4":15,"\u038e":15,"\u03a5":15,"\u03ab":15,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"\uf774":13,"T":15,"\u0164":15,"\u0162":15,"\u021a":15}},"\u201d":{"d":"26,-261r43,16r-35,75r-26,-11xm95,-261r35,23r-49,64r-22,-15","w":140,"k":{"\u03ac":13,"\ue001":13,"\u03b1":13,"\u03bb":13,"\ue000":13,"\ue012":13,"\u03b4":13,"\ue004":13,"\ue013":23,"\u03ce":-13,"\ue016":-13,"\u03c9":8,"\ue015":8,"\u2019":18,"\u201d":18,"\u03b8":8,"\u03bf":8,"\ue023":8,"\ue017":8,"\u03c4":-26,"\ue022":-26,"\u03cd":-13,"\ue028":-13,"\u03c5":-9,"\u03cb":-9,"\ue024":-9,"\ue026":-9,"\u03bc":23,"\u0386":14,"\u0391":14,"\u039b":14,"\u2206":14,"\u0394":14,"\u039c":25,"\u038f":-15,"\u2126":8,"\u03a9":8,"\u0398":8,"\u039f":8,"\u03a4":-29,"\u038e":-15,"\u03a5":-10,"\u03ab":-10,"t":-23,"\u0165":-23,"\u0163":-23,"\u021b":-23,"v":-17,"w":-17,"\uf776":-17,"\uf777":-17,"T":-25,"\u0164":-25,"\u0162":-25,"\u021a":-25,"V":-18,"W":-18,"\u03cc":-13,"\ue018":-13,"\u03ad":-13,"\u03ae":-13,"\u03af":-13,"\ue006":-13,"\ue008":-13,"\ue00e":-13,"\ue007":8,"\u038c":-15,"\u0388":-15,"\u0389":-15,"\u038a":-15,"\u0392":8,"\u0393":8,"\u0395":8,"\u0397":8,"\u0399":8,"\u039a":8,"\u039d":8,"\u03a1":8,"\u03aa":8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"\u0102":14,"\u0100":14,"\u0104":14,"s":13,"\u0161":13,"\u015b":13,"\u015f":13,"\u0219":13,"\uf773":13,"\uf6fd":13,"S":14,"\u0160":14,"\u015a":14,"\u015e":14,"\u0218":14,"m":23,"\uf76d":23,"M":25}},"\u00bb":{"d":"127,-65r-28,-24v6,-7,27,-26,36,-38v-10,-11,-26,-27,-37,-37r25,-27v8,10,46,51,56,63xm47,-54r-29,-28v10,-10,33,-32,41,-43v-10,-11,-29,-30,-41,-42r29,-29v9,11,51,58,61,70v-12,15,-49,56,-61,72","w":199,"k":{"\u03ce":-5,"\ue016":-5,"\u03cd":-5,"\ue028":-5,"\u03cc":-5,"\ue018":-5,"\u03ad":-5,"\u03ae":-5,"\u03af":-5,"\ue006":-5,"\ue008":-5,"\ue00e":-5}},"\u2026":{"d":"33,0r0,-54r54,0r0,54r-54,0xm153,0r0,-54r54,0r0,54r-54,0xm273,0r0,-54r54,0r0,54r-54,0","w":360},"\u2030":{"d":"92,-116v-55,0,-78,-30,-78,-65v0,-35,26,-75,84,-75v48,0,75,23,75,72v0,22,-18,68,-81,68xm93,-152v16,0,28,-10,28,-33v0,-25,-12,-34,-26,-34v-19,0,-28,16,-28,35v0,21,13,32,26,32xm278,0v-55,0,-77,-31,-77,-66v0,-35,26,-74,83,-74v49,0,76,23,76,72v0,22,-19,68,-82,68xm279,-35v13,0,28,-10,28,-33v0,-24,-12,-34,-25,-34v-18,0,-29,15,-29,35v0,21,11,32,26,32xm450,0v-55,0,-78,-31,-78,-66v0,-35,27,-74,84,-74v49,0,75,23,75,72v0,22,-18,68,-81,68xm450,-35v13,0,28,-10,28,-33v0,-24,-12,-34,-25,-34v-18,0,-29,15,-29,35v0,21,11,32,26,32xm132,8r-35,-23r150,-248r36,22v-36,45,-112,180,-151,249","w":545},"\u00bf":{"d":"177,-48r-8,55v-93,-10,-150,-39,-150,-83v0,-56,60,-90,117,-103r14,44v-15,4,-47,16,-47,47v0,28,43,39,74,40xm145,-256r0,55r-60,0r0,-55r60,0","w":190},"`":{"d":"128,-343r60,43r-16,25r-66,-31"},"\u00b4":{"d":"134,-300r61,-43r21,37r-68,31"},"\u02c6":{"d":"106,-303r58,-36r55,36r-19,28r-38,-28r-39,28"},"\u02dc":{"d":"228,-319v-15,56,-50,34,-88,26v-9,0,-15,7,-18,16r-24,-10v6,-22,21,-39,37,-39v29,0,55,28,68,-4"},"\u00af":{"d":"111,-281r3,-31r100,-1r-2,34"},"\u02d8":{"d":"204,-330r18,26v-23,34,-96,33,-120,1r20,-27v15,22,66,26,82,0"},"\u02d9":{"d":"162,-279r-33,-33r33,-33r33,33"},"\u00a8":{"d":"117,-279r-30,-31r30,-30r31,30xm207,-279r-30,-31r30,-30r31,30"},"\u02da":{"d":"160,-276v-28,0,-45,-12,-45,-33v0,-23,19,-37,48,-37v34,0,47,13,47,32v0,24,-20,38,-50,38xm162,-294v9,0,18,-5,18,-18v0,-9,-7,-16,-17,-16v-8,0,-18,5,-18,17v0,10,8,17,17,17"},"\u00b8":{"d":"116,-4r36,0r-14,27v14,4,27,14,27,30v0,23,-28,39,-72,42r-4,-25v41,2,50,-33,10,-39","w":259},"\u02dd":{"d":"152,-291r44,-57r28,27r-53,46xm98,-291r34,-54r30,24r-44,46"},"\u02db":{"d":"117,46v0,-23,31,-53,73,-46v-21,13,-33,32,-33,41v0,10,10,20,33,22r-7,27v-37,-6,-66,-21,-66,-44"},"\u02c7":{"d":"164,-275r-58,-36r19,-28r40,28r36,-28r18,28"},"\u2014":{"d":"0,-101r0,-51r360,0r0,51r-360,0","w":360},"\u00c6":{"d":"336,-58r1,62v-10,0,-150,-4,-156,-4r1,-66r-78,2v-3,4,-35,59,-41,70r-60,-43v9,-15,113,-168,150,-219v22,0,168,-4,177,-6r2,58v-9,0,-70,2,-77,2r0,49v8,0,50,-2,65,-3r1,57v-9,0,-57,-2,-66,-2r0,44v10,0,54,1,81,-1xm128,-112r54,-2r0,-81r-3,0","w":361},"\u00aa":{"d":"53,-120r-47,-25v10,-16,71,-107,79,-117r14,-3r80,117r-49,27v-3,-7,-10,-22,-11,-25r-56,2v-2,5,-7,18,-10,24xm73,-174r35,-2v-5,-10,-15,-26,-18,-31v-3,6,-13,23,-17,33","w":186},"\u0141":{"d":"200,-63r0,67v-9,0,-133,-4,-162,-4v1,-17,1,-83,1,-96r-25,9r-12,-41r37,-13r-2,-115r83,0v0,5,-1,40,-1,85r40,-15r14,40r-55,21r0,63v10,0,53,0,82,-1","w":210,"k":{"\u2019":2,"\u201d":2,"t":12,"\u0165":12,"\u0163":12,"\u021b":12,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":18,"w":18,"y":28,"\u00fd":28,"\u00ff":28,"\ue03b":28,"\ue03c":28,"\ue03d":28,"T":11,"\u0164":11,"\u0162":11,"\u021a":11,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"V":16,"W":16,"Y":25,"\u00dd":25,"\u0178":25,"\ue02a":25,"\ue02d":25,"\ue02b":25}},"\u00d8":{"d":"222,-161r-100,98v45,28,96,16,101,-72v0,-8,0,-15,-1,-26xm103,-99r99,-95v-55,-38,-114,21,-99,95xm43,14r-28,-31r27,-24v-67,-92,-12,-218,131,-220v31,0,56,6,79,19r28,-28r29,30r-26,23v18,22,27,50,27,81v0,55,-35,142,-159,142v-33,0,-57,-8,-79,-21","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u0152":{"d":"165,-261v50,0,151,1,205,-1r2,58r-79,2r0,49v15,0,53,-3,67,-4r1,58r-68,-2r0,44v17,0,57,1,83,-1r2,62v-77,-1,-156,2,-229,2v-77,0,-135,-46,-135,-123v0,-75,55,-144,151,-144xm158,-49v41,0,63,-36,63,-95v0,-44,-28,-63,-55,-63v-41,0,-68,38,-68,86v0,50,28,72,60,72","w":402},"\u00ba":{"d":"84,-126v-50,0,-75,-30,-75,-63v0,-34,27,-72,88,-72v48,0,77,22,77,63v0,30,-23,72,-90,72xm88,-160v19,0,30,-14,30,-37v0,-20,-11,-31,-25,-31v-14,0,-29,14,-29,37v0,18,10,31,24,31","w":182},"\u00e6":{"d":"309,-51r1,54v-12,0,-140,-3,-145,-3r1,-54r-69,1v-5,7,-31,48,-37,58r-57,-37v8,-13,102,-142,135,-185v20,0,155,-5,165,-6r2,52v-8,0,-64,1,-71,1r0,40v7,0,46,-3,60,-4r1,50v-8,0,-53,-1,-61,-1r0,35v9,0,51,0,75,-1xm118,-95r48,-2r0,-68r-3,0","w":331},"\u0131":{"d":"112,-217r0,217r-80,0r0,-217r80,0","w":144},"\u0142":{"d":"185,-57r0,60v-12,0,-126,-3,-152,-3v1,-15,1,-71,1,-81r-22,8r-11,-36r33,-11r-1,-97r80,0v0,5,-1,34,-1,71r33,-13r12,37r-46,16r0,51v5,0,44,-1,74,-2","w":191,"k":{"\u2019":2,"\u201d":2,"t":10,"\u0165":10,"\u0163":10,"\u021b":10,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"v":15,"w":15,"y":23,"\u00fd":23,"\u00ff":23,"\ue03b":23,"\ue03c":23,"\ue03d":23}},"\u00f8":{"d":"201,-135r-88,81v42,31,97,-3,88,-81xm95,-85r88,-80v-48,-30,-101,17,-88,80xm40,13r-27,-28r24,-21v-59,-80,-8,-184,120,-186v28,0,52,5,72,16r25,-24r28,26r-24,20v16,18,24,42,24,68v0,47,-31,121,-144,121v-30,0,-52,-6,-71,-17","w":295,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u0153":{"d":"150,-222v50,0,134,2,189,-1r2,52r-71,1r-1,39v13,0,48,-2,61,-3r1,50r-62,-1r0,35v15,0,52,0,76,-1r1,54r-144,-3v-89,18,-189,-10,-189,-100v0,-64,49,-122,137,-122xm144,-43v36,0,56,-28,56,-79v0,-38,-26,-52,-49,-52v-36,0,-59,31,-59,71v0,42,24,60,52,60","w":367},"\u00df":{"d":"91,-153v11,24,83,22,83,71v0,37,-43,80,-146,88r-8,-55v35,1,72,-4,72,-19v-6,-22,-82,-31,-82,-76v0,-38,53,-75,140,-80r9,56v-45,0,-68,2,-68,15xm275,-153v11,24,83,22,83,71v0,37,-43,80,-146,88r-8,-55v35,1,72,-4,72,-19v-6,-22,-82,-31,-82,-76v0,-38,53,-75,140,-80r9,56v-45,0,-68,2,-68,15","w":368},"\u00b9":{"d":"107,-99r-58,0r1,-106v-10,6,-17,9,-23,13r-15,-28r71,-44r25,8","w":136},"\u00ac":{"d":"14,-156r186,0r0,120r-46,0r0,-77r-140,0r0,-43","w":214},"\u00b5":{"d":"144,0v-1,-8,2,-20,-1,-26v-10,31,-52,42,-70,13r2,82r-52,0r0,-250r52,0r0,110v0,24,6,41,33,41v61,0,28,-95,36,-151r48,0r0,181r-48,0","w":214},"\u2122":{"d":"84,-132r-45,0r1,-89v-15,0,-27,1,-35,1r0,-37r111,0r0,37v-6,0,-24,-1,-34,-1xm137,-127r-38,-9v3,-8,36,-117,40,-127r19,1v4,8,19,47,26,62v6,-17,20,-49,25,-60r19,2v4,10,34,104,41,119r-39,12v-4,-13,-10,-57,-15,-62v-5,10,-17,33,-25,51r-19,-1v-12,-24,-16,-37,-22,-50v-3,12,-11,55,-12,62","w":277},"\u00d0":{"d":"6,-109r-1,-41r34,-1r-2,-105v66,0,105,2,138,7v94,13,113,62,113,91v0,113,-135,160,-251,160v1,-16,2,-102,2,-113xm162,-156r-1,40r-44,2r0,50v36,-6,85,-31,85,-81v0,-42,-44,-53,-85,-53r0,44","w":302},"\u00bd":{"d":"337,2v-10,-1,-89,-2,-123,-2r-6,-15v33,-19,63,-48,63,-75v0,-23,-22,-32,-50,-33r5,-38v76,5,106,30,106,61v0,32,-35,53,-46,64r51,-5r0,43xm262,-241v-36,45,-112,180,-151,249r-35,-23r150,-248xm104,-256r-1,157r-58,0r1,-106v-10,6,-17,9,-23,13r-14,-28r71,-44","w":354},"\u00b1":{"d":"84,-215r46,0r0,59r70,0r0,44r-70,0r0,60r-46,0r0,-60r-70,0r0,-44r70,0r0,-59xm14,-43r186,0r0,43r-186,0r0,-43","w":214},"\u00de":{"d":"118,0r-81,0r1,-256r80,0r-1,40v58,0,131,11,131,76v0,44,-44,87,-131,97xm117,-167r0,75v17,-2,49,-11,49,-43v0,-15,-9,-31,-49,-32","w":262},"\u00bc":{"d":"322,-59r-1,32r-24,0r0,27r-47,0r2,-27r-76,0r-8,-20r98,-118r31,6r0,101xm253,-57r0,-52v-10,20,-27,38,-40,52r40,0xm255,-241v-36,45,-112,180,-151,249r-35,-23r150,-248xm104,-256r-1,157r-58,0r1,-106v-10,6,-17,9,-23,13r-14,-28r71,-44","w":340},"\u00f7":{"d":"107,-127v-21,0,-35,-13,-35,-35v0,-22,14,-34,35,-34v21,0,35,12,35,34v0,22,-15,35,-35,35xm200,-75r-186,0r0,-43r186,0r0,43xm107,4v-21,0,-35,-13,-35,-35v0,-22,14,-34,35,-34v21,0,35,12,35,34v0,22,-15,35,-35,35","w":214},"\u00a6":{"d":"91,-117r-48,0r0,-126r48,0r0,126xm91,63r-48,0r0,-126r48,0r0,126","w":134},"\u00b0":{"d":"153,-180v0,35,-28,67,-72,67v-41,0,-72,-31,-72,-68v0,-36,29,-66,72,-66v39,0,72,30,72,67xm110,-181v0,-17,-13,-30,-29,-30v-18,0,-29,13,-29,30v0,18,11,31,29,31v18,0,29,-14,29,-31","w":162},"\u00fe":{"d":"109,-187v49,1,119,11,119,67v0,39,-42,80,-119,87r0,44r-77,0r1,-240r76,0r0,42xm109,-144r0,67v17,-1,40,-11,40,-38v0,-13,-5,-28,-40,-29","w":239},"\u00be":{"d":"326,-59r-2,32r-24,0r1,27r-47,0r1,-27r-75,0r-8,-20r98,-118r30,6r0,101xm256,-57r0,-52v-10,20,-26,38,-39,52r39,0xm265,-241v-35,46,-111,181,-151,249r-34,-23r149,-248xm136,-148v0,37,-70,56,-113,54r0,-36v23,1,50,-2,50,-18v0,-13,-16,-19,-37,-21r-1,-18v17,0,34,-10,34,-23v0,-16,-28,-17,-42,-16r3,-35v55,1,100,13,100,41v0,19,-22,30,-32,39v21,4,38,13,38,33","w":343},"\u00b2":{"d":"139,-139r0,42r-123,-2r-6,-14v33,-19,63,-48,63,-75v0,-23,-22,-33,-50,-34r5,-38v76,5,106,31,106,62v0,32,-35,52,-46,63","w":147},"\u00ae":{"d":"152,6v-81,0,-138,-56,-138,-132v0,-77,58,-135,141,-135v83,0,137,54,137,131v0,77,-57,136,-140,136xm152,-20v63,0,107,-43,107,-108v0,-63,-45,-107,-103,-107v-63,0,-108,42,-108,107v0,63,46,108,104,108xm97,-195v51,-1,114,-5,114,34v0,15,-10,27,-23,36v5,6,27,30,34,36r-31,23v-2,-3,-39,-51,-44,-59v22,-12,38,-42,-11,-42r1,98r-40,0r0,-126","w":306},"\u2212":{"d":"14,-118r186,0r0,43r-186,0r0,-43","w":214},"\u00f0":{"d":"6,-92r-1,-36r29,-1r-2,-88v62,0,97,1,127,5v86,11,101,53,101,78v0,98,-118,138,-228,135v1,-14,2,-85,2,-94xm148,-133r-1,35r-38,2r0,41v33,-4,71,-25,71,-68v0,-36,-34,-44,-71,-44r0,36","w":274},"\u00d7":{"d":"14,-159r31,-30r62,64r63,-64r30,30r-63,64r63,65r-30,30r-63,-64r-63,64r-30,-30r63,-65","w":214},"\u00b3":{"d":"27,-226r3,-35v55,1,100,13,100,41v0,19,-22,30,-32,39v21,4,38,13,38,33v0,37,-70,56,-113,54r0,-36v23,1,50,-2,50,-18v0,-13,-16,-19,-37,-21r-1,-18v17,0,34,-10,34,-23v0,-16,-28,-17,-42,-16","w":142},"\u00a9":{"d":"152,6v-81,0,-138,-56,-138,-132v0,-77,58,-135,141,-135v83,0,137,54,137,131v0,77,-57,136,-140,136xm152,-20v63,0,107,-43,107,-108v0,-63,-45,-107,-103,-107v-63,0,-108,42,-108,107v0,63,46,108,104,108xm194,-101r1,34v-5,1,-11,1,-17,1v-79,0,-84,-47,-84,-54v0,-29,28,-66,87,-79r7,36v-19,4,-47,18,-47,37v0,21,28,30,53,25","w":306},"\u00c1":{"d":"68,12r-68,-39v11,-18,110,-187,145,-242r4,0v43,65,140,217,155,238r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64xm116,-307r61,-43r21,36r-68,31","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"\u00c2":{"d":"68,12r-68,-39v11,-18,110,-187,145,-242r4,0v43,65,140,217,155,238r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64xm87,-303r58,-36r54,36r-19,28r-37,-28r-39,28","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"\u00c4":{"d":"68,12r-68,-39v11,-18,110,-187,145,-242r4,0v43,65,140,217,155,238r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64xm102,-279r-31,-31r31,-30r30,30xm192,-279r-31,-31r31,-30r30,30","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"\u00c0":{"d":"68,12r-68,-39v11,-18,110,-187,145,-242r4,0v43,65,140,217,155,238r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64xm118,-350r59,43r-15,24r-66,-31","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"\u00c5":{"d":"115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64xm68,12r-68,-39r135,-224v-23,-2,-38,-14,-38,-33v0,-23,19,-37,48,-37v63,0,58,61,14,68v44,67,131,203,145,222r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm145,-303v-8,0,-17,6,-17,18v0,10,7,16,16,16v9,0,18,-5,18,-18v0,-9,-7,-16,-17,-16","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"\u00c3":{"d":"68,12r-68,-39v11,-18,110,-187,145,-242r4,0v43,65,140,217,155,238r-71,42v-10,-18,-28,-50,-32,-56r-109,6v-3,5,-16,34,-24,51xm115,-92r61,-3v-10,-21,-24,-46,-30,-61v-9,17,-22,44,-31,64xm214,-319v-16,55,-50,34,-88,26v-9,0,-15,7,-18,16r-24,-10v6,-22,21,-39,37,-39v29,0,55,28,68,-4","w":304,"k":{"\u2019":14,"\u201d":14,"t":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"v":32,"w":32,"x":2,"y":40,"\u00fd":40,"\u00ff":40,"\ue03b":40,"\ue03c":40,"\ue03d":40,"T":14,"\u0164":14,"\u0162":14,"\u021a":14,"U":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00d9":5,"\u0170":5,"\u016a":5,"\u0172":5,"\u016e":5,"V":29,"W":29,"X":2,"Y":36,"\u00dd":36,"\u0178":36,"\ue02a":36,"\ue02d":36,"\ue02b":36}},"\u00c7":{"d":"213,-63r4,66v-22,3,-56,4,-80,1r-9,17v14,4,27,14,27,30v0,23,-28,39,-72,42r-4,-25v41,2,50,-33,10,-39r16,-32v-67,-18,-92,-63,-92,-100v0,-60,54,-131,178,-158r16,69v-76,14,-107,46,-107,80v0,38,61,59,113,49","w":232,"k":{"y":8,"\u00fd":8,"\u00ff":8,"\ue03b":8,"\ue03c":8,"\ue03d":8,"Y":7,"\u00dd":7,"\u0178":7,"\ue02a":7,"\ue02d":7,"\ue02b":7,"c":4,"g":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u011f":4,"\u0123":4,"\u0151":4,"\u014d":4,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u011e":4,"\u0122":4,"\u0150":4,"\u014c":4}},"\u00c9":{"d":"198,-58r1,62v-13,0,-142,-4,-161,-4r0,-256v20,0,141,-5,154,-6r2,59v-13,0,-71,2,-77,2r0,48v7,0,49,-3,65,-4r1,58v-10,0,-58,-1,-66,-1r0,42v9,0,64,1,81,0xm83,-300r62,-43r20,37r-68,31","w":223},"\u00ca":{"d":"198,-58r1,62v-13,0,-142,-4,-161,-4r0,-256v20,0,141,-5,154,-6r2,59v-13,0,-71,2,-77,2r0,48v7,0,49,-3,65,-4r1,58v-10,0,-58,-1,-66,-1r0,42v9,0,64,1,81,0xm56,-303r58,-36r54,36r-19,28r-37,-28r-39,28","w":223},"\u00cb":{"d":"198,-58r1,62v-13,0,-142,-4,-161,-4r0,-256v20,0,141,-5,154,-6r2,59v-13,0,-71,2,-77,2r0,48v7,0,49,-3,65,-4r1,58v-10,0,-58,-1,-66,-1r0,42v9,0,64,1,81,0xm67,-279r-31,-31r31,-30r31,30xm157,-279r-31,-31r31,-30r31,30","w":223},"\u00c8":{"d":"198,-58r1,62v-13,0,-142,-4,-161,-4r0,-256v20,0,141,-5,154,-6r2,59v-13,0,-71,2,-77,2r0,48v7,0,49,-3,65,-4r1,58v-10,0,-58,-1,-66,-1r0,42v9,0,64,1,81,0xm81,-343r60,43r-16,25r-66,-31","w":223},"\u00cd":{"d":"121,-256r0,256r-83,0r0,-256r83,0xm54,-300r62,-43r20,37r-68,31","w":158,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"\u00ce":{"d":"121,-256r0,256r-83,0r0,-256r83,0xm23,-303r58,-36r55,36r-19,28r-37,-28r-39,28","w":158,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"\u00cf":{"d":"121,-256r0,256r-83,0r0,-256r83,0xm35,-279r-31,-31r31,-30r30,30xm125,-279r-31,-31r31,-30r30,30","w":158,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"\u00cc":{"d":"121,-256r0,256r-83,0r0,-256r83,0xm45,-343r60,43r-16,25r-66,-31","w":158,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"\u00d1":{"d":"100,3r-73,-3v2,-26,10,-210,14,-258r4,-2v51,37,166,125,179,134v0,-20,-1,-116,-1,-131r74,1r-15,261r-4,2v-43,-28,-174,-131,-179,-135v0,15,1,119,1,131xm232,-319v-15,56,-50,34,-88,26v-9,0,-15,7,-18,16r-24,-10v6,-22,22,-39,38,-39v0,0,54,28,67,-4","w":322,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2,"C":2,"G":2,"O":2,"Q":2,"\u00d8":2,"\u0152":2,"\u00c7":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"\u0106":2,"\u010c":2,"\u011e":2,"\u0122":2,"\u0150":2,"\u014c":2}},"\u00d3":{"d":"153,6v-96,0,-139,-65,-139,-123v0,-69,51,-144,157,-144v86,0,139,47,139,126v0,54,-36,141,-157,141xm157,-50v39,0,65,-28,65,-82v0,-46,-21,-74,-56,-74v-41,0,-64,39,-64,83v0,48,25,73,55,73xm134,-300r61,-43r21,37r-68,31","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00d4":{"d":"153,6v-96,0,-139,-65,-139,-123v0,-69,51,-144,157,-144v86,0,139,47,139,126v0,54,-36,141,-157,141xm157,-50v39,0,65,-28,65,-82v0,-46,-21,-74,-56,-74v-41,0,-64,39,-64,83v0,48,25,73,55,73xm110,-303r58,-36r54,36r-19,28r-37,-28r-39,28","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00d6":{"d":"153,6v-96,0,-139,-65,-139,-123v0,-69,51,-144,157,-144v86,0,139,47,139,126v0,54,-36,141,-157,141xm157,-50v39,0,65,-28,65,-82v0,-46,-21,-74,-56,-74v-41,0,-64,39,-64,83v0,48,25,73,55,73xm117,-279r-30,-31r30,-30r31,30xm207,-279r-30,-31r30,-30r31,30","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00d2":{"d":"153,6v-96,0,-139,-65,-139,-123v0,-69,51,-144,157,-144v86,0,139,47,139,126v0,54,-36,141,-157,141xm157,-50v39,0,65,-28,65,-82v0,-46,-21,-74,-56,-74v-41,0,-64,39,-64,83v0,48,25,73,55,73xm128,-343r60,43r-16,25r-66,-31","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00d5":{"d":"153,6v-96,0,-139,-65,-139,-123v0,-69,51,-144,157,-144v86,0,139,47,139,126v0,54,-36,141,-157,141xm157,-50v39,0,65,-28,65,-82v0,-46,-21,-74,-56,-74v-41,0,-64,39,-64,83v0,48,25,73,55,73xm228,-319v-15,56,-50,34,-88,26v-9,0,-15,7,-18,16r-24,-10v6,-22,21,-39,37,-39v29,0,55,28,68,-4","k":{"x":6,"y":4,"\u00fd":4,"\u00ff":4,"\ue03b":4,"\ue03c":4,"\ue03d":4,"X":5,"Y":4,"\u00dd":4,"\u0178":4,"\ue02a":4,"\ue02d":4,"\ue02b":4,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"\u0103":22,"\u0101":22,"\u0105":22,"b":2,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"\u0102":20,"\u0100":20,"\u0104":20,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,"\u0141":2,"\u00de":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u00c8":2,"\u00cd":2,"\u00ce":2,"\u00cf":2,"\u00cc":2,"\u00d1":2,"\u010e":2,"\u011a":2,"\u0116":2,"\u0112":2,"\u0118":2,"\u012a":2,"\u012e":2,"\u0136":2,"\u0139":2,"\u013d":2,"\u013b":2,"\u0143":2,"\u0147":2,"\u0145":2,"\u0154":2,"\u0158":2,"\u0156":2,"\u0130":2,"j":2,"J":2,"m":14,"M":13,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u0160":{"d":"99,-180v10,26,85,33,85,84v0,40,-42,89,-151,102r-9,-61v35,1,73,-9,73,-26v-5,-21,-84,-44,-84,-89v0,-40,53,-84,144,-92r10,60v-45,0,-68,7,-68,22xm104,-275r-59,-36r19,-28r41,28r35,-28r18,28","w":196,"k":{"m":2,"M":2}},"\u00da":{"d":"279,-259v6,141,1,269,-128,265v-30,0,-74,-5,-101,-45v-27,-18,-25,-143,-23,-215r84,0v-2,8,-4,60,-3,87v2,77,-1,113,48,113v13,0,24,-5,32,-17v15,0,9,-145,8,-188r83,0xm124,-300r61,-43r21,37r-68,31","w":305,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"\u0103":10,"\u0101":10,"\u0105":10,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"\u0102":9,"\u0100":9,"\u0104":9,"m":10,"M":9}},"\u00db":{"d":"279,-259v6,141,1,269,-128,265v-30,0,-74,-5,-101,-45v-27,-18,-25,-143,-23,-215r84,0v-2,8,-4,60,-3,87v2,77,-1,113,48,113v13,0,24,-5,32,-17v15,0,9,-145,8,-188r83,0xm98,-303r58,-36r55,36r-19,28r-38,-28r-38,28","w":305,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"\u0103":10,"\u0101":10,"\u0105":10,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"\u0102":9,"\u0100":9,"\u0104":9,"m":10,"M":9}},"\u00dc":{"d":"279,-259v6,141,1,269,-128,265v-30,0,-74,-5,-101,-45v-27,-18,-25,-143,-23,-215r84,0v-2,8,-4,60,-3,87v2,77,-1,113,48,113v13,0,24,-5,32,-17v15,0,9,-145,8,-188r83,0xm108,-279r-31,-31r31,-30r30,30xm198,-279r-31,-31r31,-30r30,30","w":305,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"\u0103":10,"\u0101":10,"\u0105":10,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"\u0102":9,"\u0100":9,"\u0104":9,"m":10,"M":9}},"\u00d9":{"d":"279,-259v6,141,1,269,-128,265v-30,0,-74,-5,-101,-45v-27,-18,-25,-143,-23,-215r84,0v-2,8,-4,60,-3,87v2,77,-1,113,48,113v13,0,24,-5,32,-17v15,0,9,-145,8,-188r83,0xm122,-343r59,43r-15,25r-66,-31","w":305,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"\u0103":10,"\u0101":10,"\u0105":10,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"\u0102":9,"\u0100":9,"\u0104":9,"m":10,"M":9}},"\u00dd":{"d":"273,-187v-56,13,-104,61,-95,143v0,5,1,37,2,44r-85,0r2,-67v0,-66,-38,-107,-88,-120r28,-74v51,17,86,41,103,98r3,0v18,-49,53,-82,107,-98xm113,-300r61,-43r21,37r-68,31","w":282,"k":{"\u2019":-17,"\u201d":-17,"t":-8,"\u0165":-8,"\u0163":-8,"\u021b":-8,"v":-4,"w":-4,"T":-7,"\u0164":-7,"\u0162":-7,"\u021a":-7,"V":-4,"W":-4,")":-7,"]":-7,"}":-7,"a":38,"\u00e6":38,"\u00e1":38,"\u00e2":38,"\u00e4":38,"\u00e0":38,"\u00e5":38,"\u00e3":38,"\u0103":38,"\u0101":38,"\u0105":38,"A":34,"\u00c6":34,"\u00c1":34,"\u00c2":34,"\u00c4":34,"\u00c0":34,"\u00c5":34,"\u00c3":34,"\u0102":34,"\u0100":34,"\u0104":34,"c":20,"g":20,"o":20,"q":20,"\u00f8":20,"\u0153":20,"\u00e7":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"\u0107":20,"\u010d":20,"\u011f":20,"\u0123":20,"\u0151":20,"\u014d":20,"C":18,"G":18,"O":18,"Q":18,"\u00d8":18,"\u0152":18,"\u00c7":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"\u0106":18,"\u010c":18,"\u011e":18,"\u0122":18,"\u0150":18,"\u014c":18,",":32,".":32,"m":24,"M":22,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u0178":{"d":"273,-187v-56,13,-104,61,-95,143v0,5,1,37,2,44r-85,0r2,-67v0,-66,-38,-107,-88,-120r28,-74v51,17,86,41,103,98r3,0v18,-49,53,-82,107,-98xm96,-279r-30,-31r30,-30r31,30xm186,-279r-30,-31r30,-30r31,30","w":282,"k":{"\u2019":-17,"\u201d":-17,"t":-8,"\u0165":-8,"\u0163":-8,"\u021b":-8,"v":-4,"w":-4,"T":-7,"\u0164":-7,"\u0162":-7,"\u021a":-7,"V":-4,"W":-4,")":-7,"]":-7,"}":-7,"a":38,"\u00e6":38,"\u00e1":38,"\u00e2":38,"\u00e4":38,"\u00e0":38,"\u00e5":38,"\u00e3":38,"\u0103":38,"\u0101":38,"\u0105":38,"A":34,"\u00c6":34,"\u00c1":34,"\u00c2":34,"\u00c4":34,"\u00c0":34,"\u00c5":34,"\u00c3":34,"\u0102":34,"\u0100":34,"\u0104":34,"c":20,"g":20,"o":20,"q":20,"\u00f8":20,"\u0153":20,"\u00e7":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"\u0107":20,"\u010d":20,"\u011f":20,"\u0123":20,"\u0151":20,"\u014d":20,"C":18,"G":18,"O":18,"Q":18,"\u00d8":18,"\u0152":18,"\u00c7":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"\u0106":18,"\u010c":18,"\u011e":18,"\u0122":18,"\u0150":18,"\u014c":18,",":32,".":32,"m":24,"M":22,":":-7,";":-7,"\u037e":-7,"\u0387":-7,"-":-7,"\u00ad":-7}},"\u017d":{"d":"26,-199r1,-63v16,2,200,8,217,9r2,3v-9,17,-112,185,-116,191v21,0,101,-2,111,-3r-1,66v-9,0,-211,-4,-227,-4r-1,-4v17,-26,111,-179,119,-192v-12,0,-95,-3,-105,-3xm136,-275r-59,-36r19,-28r41,28r35,-28r18,28","w":261},"\u00e1":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53xm119,-267r58,-40r20,34r-65,30","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"\u00e2":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53xm85,-271r55,-35r52,35r-18,27r-35,-27r-37,27","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"\u00e4":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53xm96,-248r-29,-29r29,-29r29,29xm181,-248r-29,-29r29,-29r30,29","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"\u00e0":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53xm105,-307r57,41r-15,23r-63,-29","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"\u00e5":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53xm136,-246v-27,0,-42,-11,-42,-31v0,-22,17,-35,45,-35v32,0,45,12,45,30v0,23,-19,36,-48,36xm138,-262v9,0,17,-6,17,-18v0,-9,-6,-15,-16,-15v-8,0,-17,6,-17,17v0,10,7,16,16,16","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"\u00e3":{"d":"65,10r-65,-33v10,-15,98,-159,131,-206r7,0v40,55,125,185,139,203r-66,36v-10,-15,-26,-42,-29,-46r-96,5v-2,3,-14,27,-21,41xm106,-78r54,-3v-9,-18,-21,-37,-27,-50v-8,15,-19,36,-27,53xm201,-287v-15,53,-47,34,-84,25v-8,0,-14,7,-17,15r-23,-9v6,-21,21,-37,36,-37v25,1,52,27,64,-3","w":276,"k":{"\u2019":13,"\u201d":13,"t":13,"\u0165":13,"\u0163":13,"\u021b":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"v":26,"w":26,"x":2,"y":33,"\u00fd":33,"\u00ff":33,"\ue03b":33,"\ue03c":33,"\ue03d":33}},"\u00e7":{"d":"135,4r-10,19v15,4,28,14,28,29v0,22,-27,36,-69,39r-3,-23v38,1,47,-30,9,-37r16,-31v-64,-13,-94,-50,-94,-87v0,-51,50,-115,163,-135r15,60v-67,11,-95,39,-95,67v0,33,57,47,100,39r4,59v-18,2,-44,3,-64,1","w":212,"k":{"y":6,"\u00fd":6,"\u00ff":6,"\ue03b":6,"\ue03c":6,"\ue03d":6,"c":3,"g":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u011f":3,"\u0123":3,"\u0151":3,"\u014d":3}},"\u00e9":{"d":"183,-52r1,55v-13,0,-132,-3,-151,-3r0,-217v21,0,130,-5,144,-6r2,53v-12,0,-64,2,-70,2r0,37v6,0,45,-2,59,-3r0,51v-9,0,-52,-1,-59,-1r0,33v8,0,59,0,74,-1xm90,-267r58,-40r20,34r-65,30","w":204},"\u00ea":{"d":"183,-52r1,55v-13,0,-132,-3,-151,-3r0,-217v21,0,130,-5,144,-6r2,53v-12,0,-64,2,-70,2r0,37v6,0,45,-2,59,-3r0,51v-9,0,-52,-1,-59,-1r0,33v8,0,59,0,74,-1xm56,-271r55,-35r52,35r-18,27r-36,-27r-37,27","w":204},"\u00eb":{"d":"183,-52r1,55v-13,0,-132,-3,-151,-3r0,-217v21,0,130,-5,144,-6r2,53v-12,0,-64,2,-70,2r0,37v6,0,45,-2,59,-3r0,51v-9,0,-52,-1,-59,-1r0,33v8,0,59,0,74,-1xm63,-248r-29,-29r29,-29r29,29xm149,-248r-29,-29r29,-29r29,29","w":204},"\u00e8":{"d":"183,-52r1,55v-13,0,-132,-3,-151,-3r0,-217v21,0,130,-5,144,-6r2,53v-12,0,-64,2,-70,2r0,37v6,0,45,-2,59,-3r0,51v-9,0,-52,-1,-59,-1r0,33v8,0,59,0,74,-1xm78,-307r56,41r-14,23r-63,-29","w":204},"\u00ed":{"d":"112,-217r0,217r-80,0r0,-217r80,0xm56,-267r58,-40r20,34r-65,30","w":144,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"\u00ee":{"d":"112,-217r0,217r-80,0r0,-217r80,0xm22,-271r55,-35r52,35r-18,27r-35,-27r-37,27","w":144,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"\u00ef":{"d":"112,-217r0,217r-80,0r0,-217r80,0xm30,-248r-30,-29r30,-29r29,29xm115,-248r-29,-29r29,-29r29,29","w":144,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"\u00ec":{"d":"112,-217r0,217r-80,0r0,-217r80,0xm41,-307r56,41r-15,23r-63,-29","w":144,"k":{"c":2,"g":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u011f":2,"\u0123":2,"\u0151":2,"\u014d":2}},"\u00f1":{"d":"93,2r-71,-2v2,-22,10,-178,13,-219r6,-2v46,30,146,100,153,107r0,-105r71,2r-14,222r-6,1v-33,-20,-139,-97,-152,-108r0,104xm211,-287v-15,53,-47,34,-84,25v-8,0,-13,7,-16,15r-24,-9v6,-21,21,-37,36,-37v25,1,52,27,64,-3","w":286},"\u00f3":{"d":"140,5v-88,0,-126,-56,-126,-105v0,-59,45,-122,142,-122v78,0,127,41,127,108v0,46,-33,119,-143,119xm144,-45v33,0,55,-22,55,-67v0,-39,-17,-60,-47,-60v-35,0,-54,31,-54,68v0,40,21,59,46,59xm136,-267r59,-40r19,34r-64,30","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00f4":{"d":"140,5v-88,0,-126,-56,-126,-105v0,-59,45,-122,142,-122v78,0,127,41,127,108v0,46,-33,119,-143,119xm144,-45v33,0,55,-22,55,-67v0,-39,-17,-60,-47,-60v-35,0,-54,31,-54,68v0,40,21,59,46,59xm99,-271r55,-35r52,35r-18,27r-36,-27r-37,27","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00f6":{"d":"140,5v-88,0,-126,-56,-126,-105v0,-59,45,-122,142,-122v78,0,127,41,127,108v0,46,-33,119,-143,119xm144,-45v33,0,55,-22,55,-67v0,-39,-17,-60,-47,-60v-35,0,-54,31,-54,68v0,40,21,59,46,59xm109,-248r-29,-29r29,-29r29,29xm195,-248r-29,-29r29,-29r29,29","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00f2":{"d":"140,5v-88,0,-126,-56,-126,-105v0,-59,45,-122,142,-122v78,0,127,41,127,108v0,46,-33,119,-143,119xm144,-45v33,0,55,-22,55,-67v0,-39,-17,-60,-47,-60v-35,0,-54,31,-54,68v0,40,21,59,46,59xm116,-307r56,41r-15,23r-63,-29","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u00f5":{"d":"140,5v-88,0,-126,-56,-126,-105v0,-59,45,-122,142,-122v78,0,127,41,127,108v0,46,-33,119,-143,119xm144,-45v33,0,55,-22,55,-67v0,-39,-17,-60,-47,-60v-35,0,-54,31,-54,68v0,40,21,59,46,59xm216,-287v-15,53,-47,34,-84,25v-8,0,-13,7,-16,15r-24,-9v6,-21,21,-37,36,-37v25,1,52,27,64,-3","w":297,"k":{"x":5,"y":3,"\u00fd":3,"\u00ff":3,"\ue03b":3,"\ue03c":3,"\ue03d":3,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"\u0103":18,"\u0101":18,"\u0105":18,"b":2,"j":2,"m":12,"d":2,"\u010f":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"f":2,"h":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\ue035":2,"\u012b":2,"\u012f":2,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013e":2,"\u013c":2,"p":2,"r":2,"\u0155":2,"\u0159":2,"\u0157":2}},"\u0161":{"d":"91,-153v11,24,83,22,83,71v0,37,-43,80,-146,88r-8,-55v35,1,72,-4,72,-19v-6,-22,-82,-31,-82,-76v0,-38,53,-75,140,-80r9,56v-45,0,-68,2,-68,15xm103,-244r-56,-34r18,-27r39,26r33,-26r17,27","w":183,"k":{"m":2}},"\u00fa":{"d":"255,-220v7,125,-4,225,-118,225v-27,0,-69,-3,-93,-38v-24,-15,-23,-120,-21,-183r80,0v4,64,-21,169,38,168v12,0,21,-5,27,-14v14,0,8,-120,8,-158r79,0xm127,-267r58,-40r19,34r-64,30","w":277,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":8}},"\u00fb":{"d":"255,-220v7,125,-4,225,-118,225v-27,0,-69,-3,-93,-38v-24,-15,-23,-120,-21,-183r80,0v4,64,-21,169,38,168v12,0,21,-5,27,-14v14,0,8,-120,8,-158r79,0xm89,-271r55,-35r52,35r-18,27r-35,-27r-38,27","w":277,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":8}},"\u00fc":{"d":"255,-220v7,125,-4,225,-118,225v-27,0,-69,-3,-93,-38v-24,-15,-23,-120,-21,-183r80,0v4,64,-21,169,38,168v12,0,21,-5,27,-14v14,0,8,-120,8,-158r79,0xm100,-248r-29,-29r29,-29r29,29xm185,-248r-29,-29r29,-29r30,29","w":277,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":8}},"\u00f9":{"d":"255,-220v7,125,-4,225,-118,225v-27,0,-69,-3,-93,-38v-24,-15,-23,-120,-21,-183r80,0v4,64,-21,169,38,168v12,0,21,-5,27,-14v14,0,8,-120,8,-158r79,0xm109,-307r57,41r-15,23r-63,-29","w":277,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"\u0103":8,"\u0101":8,"\u0105":8,"m":8}},"\u00fd":{"d":"248,-154v-63,8,-98,67,-82,154r-81,0v9,-80,-11,-146,-76,-153r25,-70v45,13,78,35,93,84r3,0v17,-44,49,-71,98,-85xm116,-267r59,-40r19,34r-64,30","w":257,"k":{"\u2019":-16,"\u201d":-16,"t":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,")":-6,"]":-6,"}":-6,"a":31,"\u00e6":31,"\u00e1":31,"\u00e2":31,"\u00e4":31,"\u00e0":31,"\u00e5":31,"\u00e3":31,"\u0103":31,"\u0101":31,"\u0105":31,"c":17,"g":17,"o":17,"q":17,"\u00f8":1