/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 100;
			return {
				'ultra-condensed': 0.5,
				'extra-condensed': 0.625,
				condensed: 0.75,
				'semi-condensed': 0.875,
				'semi-expanded': 1.125,
				expanded: 1.25,
				'extra-expanded': 1.5,
				'ultra-expanded': 2
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		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,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (document.documentMode || 0) < 8;

	document.write(('<style type="text/css">' +
		'cufoncanvas{text-indent:0;}' +
		'@media screen{' +
			'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}' +
			'cufoncanvas{position:absolute;text-align:left;}' +
			'cufon{display:inline-block;position:relative;vertical-align:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

Cufon.registerFont({"w":225,"face":{"font-family":"Eurostile","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 5 2 4","ascent":"288","descent":"-72","x-height":"2","bbox":"-19 -314 358 75","underline-thickness":"26.3672","underline-position":"-23.7305","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90},"\u00a0":{"w":90},"A":{"d":"166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"B":{"d":"216,-66v0,97,-114,58,-195,66r0,-240v78,8,190,-32,190,63v0,31,-14,46,-36,54v28,4,41,23,41,57xm67,-139v41,-5,105,18,97,-34v2,-42,-59,-26,-97,-29r0,63xm170,-73v7,-52,-61,-27,-103,-33r0,68v40,-6,110,18,103,-35","w":228},"C":{"d":"115,-37v46,1,57,-7,54,-49r46,0v0,78,-16,88,-99,88v-113,0,-104,-24,-104,-147v0,-87,24,-95,115,-97v70,-1,86,16,86,82r-46,0v0,-39,-8,-43,-49,-43v-63,1,-60,6,-60,72v0,80,-12,91,57,94","w":222},"D":{"d":"230,-141v0,105,2,141,-90,141r-119,0r0,-240r118,0v71,1,91,28,91,99xm183,-120v0,-62,4,-82,-49,-82r-67,0r0,164r64,0v53,-2,52,-20,52,-82","w":241},"E":{"d":"62,-202r0,62r112,0r0,34r-112,0r0,68r120,0r0,38r-166,0r0,-240r165,0r0,38r-119,0","w":194},"F":{"d":"67,-202r0,65r107,0r0,38r-107,0r0,99r-46,0r0,-240r159,0r0,38r-113,0","w":186},"G":{"d":"118,-37v53,1,57,-9,58,-57r-61,0r0,-34r106,0r1,48v-3,78,-22,82,-107,82v-85,0,-103,-17,-103,-102v0,-116,5,-142,108,-142v79,0,98,3,101,74r-46,0v-4,-39,-12,-30,-56,-35v-76,-8,-60,47,-60,111v0,51,9,53,59,55","w":232},"H":{"d":"225,-240r0,240r-46,0r0,-104r-112,0r0,104r-46,0r0,-240r46,0r0,98r112,0r0,-98r46,0","w":245},"I":{"d":"67,-240r0,240r-46,0r0,-240r46,0","w":88},"J":{"d":"88,-37v30,-1,31,-9,31,-43r0,-160r46,0r0,166v-1,63,-14,75,-78,76v-76,2,-79,-23,-79,-96r44,0v0,32,-3,60,36,57","w":185},"K":{"d":"67,-240r0,98r21,0r80,-98r56,0r-96,117r107,123r-59,0r-88,-104r-21,0r0,104r-46,0r0,-240r46,0","w":232},"L":{"d":"67,-240r0,199r112,0r0,41r-158,0r0,-240r46,0","w":181},"M":{"d":"302,-240r0,240r-46,0r3,-202v-10,15,-18,52,-24,67r-53,135r-41,0r-77,-201r3,201r-46,0r0,-240r74,0r65,178r66,-178r76,0","w":322},"N":{"d":"244,-240r0,240r-77,0r-100,-201r-2,0r2,201r-46,0r0,-240r77,0r100,200r2,0r-2,-200r46,0","w":264},"O":{"d":"10,-112v0,-113,4,-130,111,-130v93,0,103,21,103,119v0,108,-5,125,-111,125v-92,0,-103,-19,-103,-114xm178,-121v0,-75,8,-82,-61,-82v-74,0,-61,11,-61,93v0,68,-3,73,62,73v67,0,60,-11,60,-84","w":233},"P":{"d":"212,-158v7,94,-63,78,-145,80r0,78r-46,0r0,-240r109,0v65,2,77,17,82,82xm166,-157v11,-64,-51,-40,-99,-45r0,86v46,-4,108,17,99,-41","w":220},"Q":{"d":"117,-242v99,0,107,18,107,119v0,36,-2,61,-5,74r25,17r-19,27r-23,-16v-14,16,-43,23,-85,23v-95,0,-107,-16,-107,-114v0,-110,3,-130,107,-130xm56,-110v0,71,-2,71,68,73v17,0,30,-3,39,-11r-55,-37r19,-28r49,34v4,-25,2,-45,2,-72v0,-48,-11,-52,-61,-52v-74,0,-61,11,-61,93","w":240},"R":{"d":"217,-169v-4,48,-5,59,-43,68r0,2v47,-2,40,53,40,99r-45,0v0,-40,6,-81,-37,-81r-65,0r0,81r-46,0r0,-240v84,6,204,-29,196,71xm171,-161v9,-61,-58,-36,-104,-41r0,83v47,-4,112,17,104,-42","w":232},"S":{"d":"107,-242v69,0,93,8,92,72r-44,0v-4,-30,-7,-37,-44,-35v-38,2,-53,-2,-53,31v0,42,14,28,62,34v65,8,85,5,85,66v0,73,-22,76,-100,76v-74,0,-94,-10,-94,-78r45,0v1,43,7,42,56,42v39,0,45,0,48,-37v3,-37,-30,-29,-59,-32v-69,-7,-89,-5,-89,-69v0,-64,25,-70,95,-70","w":215},"T":{"d":"117,-199r0,199r-46,0r0,-199r-69,0r0,-41r186,0r0,41r-71,0","w":190},"U":{"d":"121,-37v45,0,54,-1,54,-42r0,-161r46,0r0,160v-2,72,-22,82,-98,82v-80,0,-102,-6,-102,-80r0,-162r46,0r0,162v1,41,11,41,54,41","w":241},"V":{"d":"175,-240r48,0r-77,240r-70,0r-77,-240r47,0r65,201","w":221},"W":{"d":"358,-240r-64,240r-67,0r-49,-182r-49,182r-67,0r-62,-240r46,0r50,202r2,0r54,-202r54,0r53,202r53,-202r46,0","w":358},"X":{"d":"223,-240r-72,116r77,124r-53,0r-61,-104v-18,35,-41,69,-60,104r-55,0r79,-124r-73,-116r54,0r56,95r54,-95r54,0","w":226},"Y":{"d":"220,-240r-89,148r0,92r-46,0r0,-92r-86,-148r53,0r57,102r57,-102r54,0","w":218},"Z":{"d":"198,-240r0,38r-132,164r134,0r0,38r-192,0r0,-39r131,-163r-125,0r0,-38r184,0","w":207},"\u00c6":{"d":"214,-202r0,63r110,0r0,33r-110,0r0,68r117,0r0,38r-163,0r0,-46r-96,0r-22,46r-51,0r113,-240r219,0r0,38r-117,0xm168,-80r0,-122r-24,0r-58,122r82,0","w":343},"\u00d8":{"d":"225,-122v0,103,-6,124,-106,124v-45,0,-75,-8,-90,-24r-28,25r0,-36r15,-14v-3,-13,-5,-34,-5,-64v0,-113,3,-131,112,-131v42,0,70,8,84,24r28,-26r0,36r-15,14v3,14,5,37,5,72xm112,-37v83,0,68,-52,65,-120r-112,104v6,11,22,16,47,16xm123,-203v-69,3,-63,9,-66,83v0,15,1,27,2,36r113,-104v-7,-10,-23,-15,-49,-15","w":236},"\u00c7":{"d":"115,-37v46,1,57,-7,54,-49r46,0v0,78,-16,88,-99,88v-113,0,-104,-24,-104,-147v0,-87,24,-95,115,-97v70,-1,86,16,86,82r-46,0v0,-39,-8,-43,-49,-43v-63,1,-60,6,-60,72v0,80,-12,91,57,94xm123,18r17,20r-40,29r-13,-14","w":222},"a":{"d":"127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23","w":187},"b":{"d":"177,-87v0,63,-7,87,-66,89v-27,1,-43,-12,-53,-29r2,27r-40,0r0,-240r40,0r1,96v7,-17,24,-26,53,-26v54,0,63,24,63,83xm136,-85v0,-40,0,-52,-36,-53v-26,0,-39,16,-39,48v0,46,-2,60,37,60v37,0,38,-13,38,-55","w":190},"c":{"d":"94,-30v29,0,32,-5,33,-34r40,0v2,50,-16,66,-75,66v-66,0,-78,-18,-78,-86v0,-67,13,-86,76,-86v55,0,74,9,75,61r-40,0v0,-19,-12,-29,-34,-29v-39,1,-37,12,-37,55v0,43,1,53,40,53","w":176},"d":{"d":"14,-90v0,-56,11,-78,63,-80v29,-1,44,11,52,26r0,-96r40,0r0,240r-39,0v0,-8,3,-20,1,-27v-8,19,-25,29,-51,29v-62,-2,-66,-24,-66,-92xm129,-88v0,-39,-4,-50,-38,-50v-35,0,-36,12,-36,51v0,43,-1,57,36,57v39,0,38,-14,38,-58","w":189},"e":{"d":"93,-28v26,-1,34,-1,35,-26r41,0v2,40,-22,56,-74,56v-72,0,-81,-16,-81,-89v0,-66,15,-82,79,-83v68,-2,76,25,76,93r-114,0v-2,33,2,51,38,49xm128,-101v0,-31,-3,-40,-37,-39v-32,1,-35,6,-36,39r73,0","w":182},"f":{"d":"28,-168v-5,-60,18,-79,81,-74r0,32v-30,-9,-46,8,-41,42r42,0r0,31r-42,0r0,137r-40,0r0,-137r-24,0r0,-31r24,0","w":112},"g":{"d":"14,-86v0,-59,10,-82,64,-84v28,-1,44,12,54,30r-2,-28r40,0r0,171v0,58,-19,72,-78,72v-54,0,-71,-6,-72,-58r39,0v1,25,7,24,33,26v41,3,41,-34,37,-69v-7,18,-24,27,-49,27v-58,-1,-66,-26,-66,-87xm129,-86v0,-41,-2,-52,-38,-52v-38,0,-37,12,-37,52v0,43,0,55,37,55v37,0,38,-14,38,-55","w":189},"h":{"d":"60,-240r1,100v15,-48,111,-38,111,26r0,114r-41,0r0,-109v0,-19,-10,-29,-30,-29v-61,-3,-36,84,-41,138r-40,0r0,-240r40,0","w":191},"i":{"d":"60,-240r0,34r-40,0r0,-34r40,0xm60,-168r0,168r-40,0r0,-168r40,0","w":79},"j":{"d":"60,-240r0,34r-41,0r0,-34r41,0xm59,-168r0,175v1,39,-23,57,-58,49r0,-28v13,1,17,-6,18,-24r0,-172r40,0","w":79},"k":{"d":"60,-240r0,137r10,0r46,-65r47,0r-59,79r71,89r-50,0r-55,-75r-10,0r0,75r-40,0r0,-240r40,0","w":172},"l":{"d":"60,-240r0,240r-40,0r0,-240r40,0","w":79},"m":{"d":"126,-104v-1,-27,-2,-34,-29,-34v-58,-2,-31,87,-37,138r-40,0r0,-168r40,0v1,8,-3,20,0,26v10,-39,99,-36,103,3v16,-51,110,-39,110,28r0,111r-40,0v-6,-48,21,-136,-30,-138v-57,-2,-31,87,-37,138r-40,0r0,-104","w":294},"n":{"d":"20,-168r40,0v0,9,-3,21,-1,28v16,-48,112,-39,112,26r0,114r-40,0r-1,-119v-2,-13,-11,-19,-29,-19v-64,-3,-35,84,-41,138r-40,0r0,-168","w":190},"o":{"d":"14,-85v0,-72,9,-85,80,-85v66,0,79,13,79,81v0,72,-8,91,-77,91v-73,0,-82,-14,-82,-87xm132,-88v0,-41,-1,-50,-39,-50v-37,0,-39,10,-39,51v0,45,-3,57,40,57v39,0,38,-14,38,-58","w":186},"p":{"d":"179,-86v0,62,-9,86,-65,88v-27,1,-42,-11,-52,-26r0,96r-42,0r0,-240r41,0v0,8,-3,19,-1,25v10,-18,28,-27,54,-27v56,1,65,25,65,84xm138,-84v0,-43,-1,-54,-39,-54v-36,0,-37,14,-37,54v0,39,3,54,38,54v37,0,38,-13,38,-54","w":192},"q":{"d":"14,-87v0,-60,10,-81,64,-83v27,-1,42,11,53,27r-1,-25r40,0r0,240r-40,0r-1,-97v-7,18,-24,27,-51,27v-57,-1,-64,-26,-64,-89xm130,-81v0,-42,0,-57,-39,-57v-35,0,-37,13,-37,51v0,45,-1,57,38,57v35,0,38,-14,38,-51","w":190},"r":{"d":"21,-168r40,0v0,7,-3,18,-1,24v24,-48,103,-30,89,41r-38,0v4,-20,-3,-37,-20,-36v-49,2,-24,91,-30,139r-40,0r0,-168","w":151},"s":{"d":"13,-121v0,-45,23,-49,76,-49v50,0,69,3,71,48r-39,0v-4,-20,-8,-21,-35,-21v-31,0,-39,23,-26,37v13,5,90,4,93,15v9,7,13,19,13,39v-1,47,-27,54,-79,54v-53,0,-75,-6,-75,-55r42,0v-5,19,6,28,33,28v26,0,39,-7,39,-22v0,-14,-8,-21,-24,-21v-61,-3,-89,1,-89,-53","w":178},"t":{"d":"135,-65v3,45,-9,65,-58,67v-73,3,-51,-76,-54,-139r-21,0r0,-31r21,0r0,-38r41,0r0,38r64,0r0,31r-64,0r0,84v0,15,6,23,17,23v15,1,21,-14,20,-35r34,0","w":137},"u":{"d":"59,-65v0,28,5,34,31,35v57,3,35,-85,39,-138r40,0r0,168r-40,0v0,-9,3,-22,1,-29v-7,21,-25,31,-54,31v-81,0,-52,-99,-57,-170r40,0r0,103","w":190},"v":{"d":"160,-168r-48,168r-63,0r-51,-168r43,0r40,140r36,-140r43,0","w":158},"w":{"d":"255,-168r-37,168r-60,0r-30,-134r-30,134r-60,0r-37,-168r40,0r29,140r32,-140r52,0r33,140r28,-140r40,0","w":255},"x":{"d":"157,-168r-49,79r55,89r-48,0r-34,-61r-33,61r-49,0r55,-88r-49,-80r48,0r28,53r28,-53r48,0","w":161},"y":{"d":"158,-168r-44,179v-11,49,-26,67,-81,63r0,-30v25,5,34,-11,41,-44r-21,0r-55,-168r43,0r43,143r32,-143r42,0","w":156},"z":{"d":"14,-168r131,0r0,35r-90,102r90,0r0,31r-138,0r0,-35r90,-102r-83,0r0,-31","w":152},"\u00e6":{"d":"206,-170v65,-1,75,26,74,92r-112,0v2,41,-1,50,38,50v29,0,32,0,34,-26r40,0v2,40,-22,55,-75,56v-35,1,-54,-11,-62,-27v-8,18,-28,27,-60,27v-50,-1,-68,-8,-69,-53v0,-33,22,-50,66,-50v25,0,41,6,47,18v2,-33,1,-60,-33,-60v-22,0,-32,8,-32,23r-42,0v3,-43,18,-49,66,-50v37,-1,56,9,64,23v6,-15,25,-23,56,-23xm241,-103v-1,-23,-8,-38,-36,-37v-27,0,-38,12,-37,37r73,0xm89,-74v-23,0,-35,8,-35,22v0,16,12,24,36,24v26,0,38,-8,38,-24v0,-15,-13,-22,-39,-22","w":293},"\u00f8":{"d":"171,-86v-2,69,-9,87,-77,88v-35,0,-58,-6,-69,-19r-23,18r0,-25r15,-11v-3,-10,-5,-27,-5,-49v2,-72,10,-84,80,-86v35,0,57,7,67,20r22,-18r0,25r-14,12v3,10,4,25,4,45xm93,-30v43,2,37,-28,36,-72r-71,60v5,8,16,12,35,12xm89,-138v-40,-2,-37,33,-35,74r72,-61v-4,-9,-16,-13,-37,-13","w":183},"\u00df":{"d":"80,-33v39,13,62,2,58,-50v-3,-41,-15,-57,-52,-54r0,-30v52,8,60,-46,9,-45v-23,0,-34,11,-34,33r0,179r-41,0r0,-176v1,-54,17,-66,72,-66v49,0,73,6,75,49v1,24,-14,36,-37,42v42,7,46,22,49,72v4,71,-38,90,-100,77","w":194},"\u00e7":{"d":"94,-30v29,0,32,-5,33,-34r40,0v2,50,-16,66,-75,66v-66,0,-78,-18,-78,-86v0,-67,13,-86,76,-86v55,0,74,9,75,61r-40,0v0,-19,-12,-29,-34,-29v-39,1,-37,12,-37,55v0,43,1,53,40,53xm99,18r15,18r-36,25r-11,-12","w":176},"1":{"d":"159,-240r0,240r-45,0r0,-200r-63,62r-27,-30r78,-72r57,0","w":226},"2":{"d":"112,-242v67,1,90,12,90,76v0,67,-19,64,-80,80v-48,12,-56,0,-56,50r136,0r0,36r-181,0v1,-34,-4,-86,13,-99v6,-15,102,-25,115,-36v5,-4,8,-15,8,-32v-2,-36,-6,-37,-45,-38v-45,-2,-46,9,-46,50r-45,0v-1,-70,18,-87,91,-87"},"3":{"d":"159,-73v3,-40,-30,-31,-66,-32r0,-35v43,-3,64,8,63,-31v-2,-35,-7,-33,-47,-34v-41,-1,-44,5,-44,42r-44,0v-1,-66,18,-80,88,-79v63,1,90,7,92,63v1,34,-16,50,-40,57v29,3,43,21,43,52v-1,65,-26,71,-94,72v-71,1,-95,-13,-93,-83r44,0v2,41,5,47,51,46v40,-1,44,-1,47,-38"},"4":{"d":"184,-240r0,153r28,0r0,35r-28,0r0,52r-45,0r0,-52r-130,0r0,-51r105,-137r70,0xm139,-87v-2,-38,4,-84,-2,-118r-90,118r92,0"},"5":{"d":"160,-85v0,-39,-6,-42,-45,-43v-29,0,-44,5,-47,17r-41,0r0,-129r168,0r0,36r-126,0v1,19,-3,41,0,58v9,-12,27,-19,55,-19v65,2,81,18,81,83v0,69,-20,84,-92,84v-66,0,-90,-8,-91,-71r44,0v3,34,8,34,47,34v47,0,47,-3,47,-50"},"6":{"d":"116,-242v62,0,87,11,87,69r-45,0v0,-29,-8,-32,-40,-32v-64,0,-54,33,-52,82v8,-16,28,-23,59,-23v61,0,80,12,80,69v0,66,-20,79,-88,79v-94,0,-98,-16,-98,-112v0,-113,-8,-132,97,-132xm160,-73v0,-36,-6,-37,-46,-37v-37,0,-50,-1,-50,32v0,42,6,44,49,44v40,0,47,-1,47,-39","w":226},"7":{"d":"195,-240r0,44r-97,196r-50,0r102,-202r-133,0r0,-38r178,0"},"8":{"d":"111,-242v67,0,90,4,92,64v1,31,-15,47,-39,55v28,5,42,24,42,57v0,62,-26,68,-94,68v-67,0,-92,-6,-94,-68v-1,-34,16,-51,42,-58v-30,-9,-39,-16,-39,-54v0,-57,26,-64,90,-64xm158,-176v0,-32,-10,-29,-47,-29v-37,0,-45,-2,-45,31v0,37,8,33,50,33v36,0,42,0,42,-35xm161,-72v0,-35,-10,-33,-50,-33v-40,0,-48,-2,-48,35v0,38,8,35,51,35v39,0,47,0,47,-37","w":226},"9":{"d":"107,2v-65,0,-91,-10,-90,-70r44,0v2,36,9,30,47,34v61,7,50,-34,49,-83v-8,15,-26,23,-55,23v-63,-1,-83,-9,-83,-68v0,-66,18,-80,86,-80v99,0,99,15,99,119v0,108,5,125,-97,125xm159,-166v0,-39,-9,-39,-52,-39v-37,0,-43,2,-43,37v0,38,7,38,46,38v41,0,49,0,49,-36","w":226},"0":{"d":"16,-120v0,-107,-1,-122,97,-122v99,0,97,16,97,122v0,105,3,122,-97,122v-98,0,-97,-16,-97,-122xm165,-121v0,-75,10,-76,-56,-82v-67,-6,-48,52,-48,112v0,50,3,54,52,54v62,0,52,-13,52,-84"},"\u00a3":{"d":"133,-204v-52,-4,-41,36,-42,79r65,0r0,33r-65,0v1,26,1,45,-17,55r143,-1r0,38r-195,0r0,-37v21,-1,24,-27,23,-55r-29,0r0,-33r29,0r3,-74v5,-29,33,-44,82,-44v68,-1,89,16,85,79r-45,0v0,-33,-5,-37,-37,-40","w":226},"$":{"d":"127,-242v61,1,84,11,84,70r-42,0v2,-25,-14,-33,-42,-32r0,63v62,3,91,8,91,68v1,61,-30,73,-91,73r0,28r-29,0r0,-28v-63,2,-94,-17,-89,-78r42,0v-1,37,10,42,47,41r0,-68v-63,-1,-87,-11,-87,-70v0,-56,25,-66,87,-67r0,-25r29,0r0,25xm98,-204v-27,-1,-44,8,-44,30v0,24,19,31,44,32r0,-62xm127,-37v43,8,61,-37,38,-61v-6,-4,-18,-6,-38,-6r0,67","w":226},"\u00a2":{"d":"34,-115v0,-56,13,-81,65,-83r0,-25r26,0r0,25v41,0,61,21,61,61r-39,0v0,-17,-7,-27,-22,-28r0,107v19,-5,24,-16,24,-34r38,0v2,44,-17,67,-62,67r0,29r-26,0r0,-29v-56,-2,-65,-28,-65,-90xm99,-165v-16,3,-24,20,-24,50v1,37,4,55,24,56r0,-106"},"\u00a5":{"d":"179,-172r31,0r0,34r-50,0r-18,29r68,0r0,33r-76,0r0,76r-46,0r0,-76r-73,0r0,-33r66,0r-17,-29r-49,0r0,-34r31,0r-39,-68r52,0r53,102r53,-102r54,0"},".":{"d":"58,-43r0,43r-40,0r0,-43r40,0","w":76},":":{"d":"58,-43r0,43r-40,0r0,-43r40,0xm58,-168r0,43r-40,0r0,-43r40,0","w":76},"\u2026":{"d":"58,-43r0,43r-40,0r0,-43r40,0xm134,-43r0,43r-40,0r0,-43r40,0xm210,-43r0,43r-40,0r0,-43r40,0","w":228},",":{"d":"60,-43v2,43,3,93,-44,83r0,-19v15,1,23,-8,19,-21r-15,0r0,-43r40,0","w":80},";":{"d":"56,-43v2,43,3,93,-44,83r0,-19v15,0,20,-7,19,-21r-16,0r0,-43r41,0xm55,-168r0,43r-40,0r0,-43r40,0","w":75},"\u2018":{"d":"15,-161v-1,-43,-4,-91,43,-84r0,19v-16,0,-20,8,-19,22r16,0r0,43r-40,0","w":74},"\u201d":{"d":"60,-240v1,43,4,91,-44,84r0,-19v16,0,23,-9,19,-22r-15,0r0,-43r40,0xm121,-240v1,43,4,91,-44,84r0,-19v16,0,23,-9,19,-22r-15,0r0,-43r40,0","w":135},"\u201c":{"d":"76,-161v-1,-43,-4,-91,43,-84r0,19v-16,0,-20,8,-19,22r16,0r0,43r-40,0xm15,-161v-1,-43,-4,-91,43,-84r0,19v-16,0,-20,8,-19,22r16,0r0,43r-40,0","w":135},"!":{"d":"68,-43r0,43r-40,0r0,-43r40,0xm70,-240r-3,160r-39,0r-3,-160r45,0","w":98},"\u00a1":{"d":"31,-125r0,-43r41,0r0,43r-41,0xm29,72r3,-160r39,0r3,160r-45,0","w":98},"?":{"d":"106,-43r0,43r-41,0r0,-43r41,0xm100,-242v55,1,74,12,74,65v0,45,-8,50,-42,65v-19,9,-27,16,-26,35r-41,0v-14,-72,72,-40,72,-99v0,-29,-7,-31,-40,-32v-34,-1,-41,8,-40,40r-39,0v-1,-62,17,-75,82,-74","w":190},"\u00bf":{"d":"85,-125r0,-43r41,0r0,43r-41,0xm91,74v-56,-1,-75,-12,-75,-65v0,-45,9,-50,42,-65v20,-9,27,-16,26,-35r41,0v4,51,-19,50,-52,66v-13,6,-19,16,-19,33v0,30,8,31,40,32v33,1,40,-9,39,-41r40,0v1,61,-17,76,-82,75","w":190},"\u00bb":{"d":"112,-174r42,85r-46,84r-25,-17r36,-67r-34,-70xm46,-175r42,85r-46,84r-26,-17r37,-67r-35,-70","w":170},"\u00ab":{"d":"58,-174r28,15r-35,70r37,67r-26,17r-46,-84xm125,-175r27,15r-34,70r36,67r-26,17r-45,-84","w":170},"\/":{"d":"196,-240r-185,312r-30,0r185,-312r30,0","w":218},"-":{"d":"0,-112r80,0r0,38r-80,0r0,-38","w":80},"\u00ad":{"d":"0,-112r80,0r0,38r-80,0r0,-38","w":80},"\u2013":{"d":"37,-107r151,0r0,39r-151,0r0,-39"},"\u2014":{"d":"1,-107r252,0r0,39r-253,0","w":253},"(":{"d":"63,-123v9,70,-25,163,31,158r0,38v-36,0,-58,-8,-65,-23v-14,-14,-15,-255,0,-268v7,-15,29,-22,65,-22r0,37v-44,4,-26,22,-31,80","w":111},")":{"d":"18,-203r0,-37v36,0,57,7,65,22v14,14,15,255,0,268v-8,15,-29,23,-65,23r0,-38v54,-5,31,-93,31,-158v0,-35,8,-83,-31,-80","w":111},"[":{"d":"20,-240r73,0r0,34r-31,0r0,244r31,0r0,34r-73,0r0,-312","w":111},"]":{"d":"91,72r-73,0r0,-34r31,0r0,-244r-31,0r0,-34r73,0r0,312","w":110},"&":{"d":"157,-164v0,-31,-1,-39,-35,-39v-43,0,-40,37,-16,57r73,62v2,-12,3,-20,0,-32r39,0v-1,22,0,41,-5,61r35,29r-22,27r-29,-25v-11,17,-35,26,-74,26v-79,0,-104,-4,-104,-77v0,-36,15,-56,46,-61v-13,-11,-20,-26,-20,-43v1,-50,23,-58,75,-59v61,-1,79,15,77,74r-40,0xm62,-75v1,40,9,43,51,43v36,0,38,2,55,-17r-79,-66v-18,3,-27,16,-27,40","w":249},"\u00a7":{"d":"112,-243v68,0,88,6,88,70r-43,0v1,-31,-9,-34,-46,-33v-49,-12,-56,46,-14,51v44,16,110,4,110,67v0,26,-7,42,-21,48v15,7,22,22,22,45v-2,63,-26,68,-95,68v-71,0,-91,-8,-91,-74r41,0v2,37,8,37,50,37v38,0,48,3,50,-29v-11,-65,-145,-3,-145,-99v0,-25,8,-39,25,-44v-12,-8,-18,-23,-18,-45v2,-57,25,-62,87,-62xm59,-95v0,38,61,30,93,42v12,0,18,-10,18,-30v0,-33,-63,-32,-93,-41v-12,0,-18,10,-18,29"},"*":{"d":"177,-185r-44,16r26,38r-19,14r-27,-40r-29,40r-19,-14r28,-38r-45,-17r8,-23r45,16r0,-47r23,0r0,47r45,-16"},"'":{"d":"49,-144r-28,0r-5,-96r38,0","w":69},"\"":{"d":"49,-144r-28,0r-5,-96r38,0xm112,-144r-27,0r-6,-96r38,0","w":133},"@":{"d":"70,-114v0,-47,3,-62,45,-64v20,-1,30,8,37,18r0,-17r28,0r1,83v0,11,5,16,14,16v12,0,18,-19,18,-56v0,-73,-4,-69,-79,-69v-88,0,-96,-1,-96,83v0,88,2,95,87,95v39,0,61,-5,65,-14r21,10v-8,17,-39,26,-91,26v-91,0,-103,-17,-103,-110v0,-102,15,-112,116,-112v87,0,101,5,101,90v0,51,0,79,-42,79v-23,0,-35,-7,-37,-20v-5,14,-18,21,-40,21v-38,-1,-45,-18,-45,-59xm125,-77v30,0,26,-10,27,-46v0,-22,-9,-33,-28,-33v-25,1,-26,10,-26,36v0,35,-2,43,27,43","w":251},"#":{"d":"203,-97r-4,28r-39,0r-11,69r-31,0r11,-69r-48,0r-11,69r-30,0r10,-69r-39,0r5,-28r39,0r7,-46r-39,0r5,-29r39,0r11,-68r30,0r-11,68r48,0r11,-68r31,0r-11,68r39,0r-5,29r-38,0r-8,46r39,0xm141,-143r-48,0r-8,46r48,0"},"\u00b0":{"d":"16,-191v0,-28,24,-51,52,-51v27,0,52,24,52,51v0,28,-24,52,-52,52v-28,1,-52,-23,-52,-52xm68,-220v-20,0,-30,10,-30,29v0,20,10,29,30,29v20,0,30,-9,30,-29v0,-19,-10,-29,-30,-29","w":135},"+":{"d":"92,-31r0,-70r-68,0r0,-38r68,0r0,-70r41,0r0,70r69,0r0,38r-69,0r0,70r-41,0","w":226},"\u00f7":{"d":"113,-212v17,0,25,8,25,25v0,17,-8,25,-25,25v-17,0,-25,-8,-25,-25v0,-17,8,-25,25,-25xm113,-78v17,0,25,8,25,25v0,17,-8,25,-25,25v-17,0,-25,-8,-25,-25v0,-17,8,-25,25,-25xm24,-139r178,0r0,38r-178,0r0,-38","w":226},"=":{"d":"24,-173r178,0r0,38r-178,0r0,-38xm24,-103r178,0r0,36r-178,0r0,-36","w":226},"\u2122":{"d":"69,-215r0,112r-29,0r0,-112r-40,0r0,-25r110,0r0,25r-41,0xm287,-240r0,137r-29,0r1,-108r-42,108r-26,0r-42,-108r1,108r-29,0r0,-137r45,0r38,98r37,-98r46,0","w":297},"\u00b6":{"d":"12,-159v0,-109,99,-75,189,-81r0,312r-32,0r0,-278r-26,0r0,278r-31,0r0,-150v-72,1,-100,-7,-100,-81"},"\u00a4":{"d":"17,-41r35,-36v-20,-32,-21,-64,1,-98r-36,-35r22,-23r36,36v36,-20,63,-22,98,0r36,-36r22,23r-35,35v23,34,22,63,1,98r35,36r-22,22r-35,-35v-33,22,-65,21,-100,0r-36,35xm175,-125v0,-27,-23,-51,-50,-51v-27,0,-51,24,-51,51v0,27,23,50,51,50v27,0,50,-23,50,-50","w":249},"\u2019":{"d":"61,-240v1,43,4,91,-44,84r0,-19v16,0,21,-7,20,-22r-16,0r0,-43r40,0","w":80},"{":{"d":"59,-84v48,11,-11,127,55,125r0,31v-45,4,-71,-6,-71,-53v0,-33,10,-82,-20,-87r0,-32v48,-12,-13,-147,64,-140r27,0r0,31v-64,-8,-7,106,-55,125","w":137},"}":{"d":"23,41v69,10,4,-102,56,-125v-49,-11,12,-127,-55,-125r0,-31v45,-4,70,6,70,53v0,33,-10,82,20,87r0,32v-48,12,13,147,-63,140r-28,0r0,-31","w":137},"\u00aa":{"d":"30,-211v1,-27,12,-29,43,-31v61,-3,47,47,48,98r-27,0r1,-10v-16,19,-75,14,-69,-19v-7,-32,51,-39,68,-22v11,-30,-33,-41,-37,-16r-27,0xm73,-187v-13,0,-19,4,-19,13v0,9,7,14,20,14v14,0,21,-4,21,-13v0,-9,-8,-14,-22,-14xm21,-128r105,0r0,17r-105,0r0,-17","w":150},"\u00ba":{"d":"26,-195v0,-39,9,-47,49,-47v39,0,49,7,49,47v0,42,-6,52,-47,52v-46,0,-51,-8,-51,-52xm97,-193v0,-23,0,-28,-22,-28v-21,0,-21,6,-21,29v0,22,0,29,21,29v22,0,22,-6,22,-30xm23,-128r105,0r0,17r-105,0r0,-17","w":150},"\u00b1":{"d":"23,-169r69,0r0,-58r42,0r0,58r69,0r0,38r-69,0r0,58r-42,0r0,-58r-69,0r0,-38xm23,-52r180,0r0,38r-180,0r0,-38"},"%":{"d":"8,-180v0,-51,4,-61,52,-61v50,0,51,7,51,59v0,52,-1,63,-49,63v-50,0,-54,-10,-54,-61xm87,-164v-2,-31,10,-60,-27,-56v-30,3,-28,3,-28,33v0,44,-8,46,31,47v16,0,24,-8,24,-24xm231,-240r-152,240r-23,0r151,-240r24,0xm175,-60v0,-50,4,-61,52,-61v50,0,51,7,51,59v0,52,-1,63,-49,63v-50,0,-54,-10,-54,-61xm254,-44v0,-32,10,-59,-28,-56v-30,3,-27,3,-27,33v0,45,-8,46,31,47v16,0,24,-8,24,-24","w":287},"\\":{"d":"-19,-240r30,0r185,312r-30,0","w":218},"\u00a8":{"d":"72,-225r0,28r-31,0r0,-28r31,0xm139,-225r0,28r-31,0r0,-28r31,0","w":180},"\u00b4":{"d":"124,-240r14,27r-63,27r-9,-17","w":180},"`":{"d":"57,-240r57,37r-9,17r-63,-27","w":180},"\u00b8":{"d":"98,18r16,18r-36,25r-12,-12","w":180},"\u00a9":{"d":"105,-126v0,43,-6,50,31,50v23,0,31,-8,29,-27r29,0v0,45,-9,52,-59,51v-65,-2,-61,-13,-61,-84v0,-49,16,-54,68,-55v41,-1,50,10,51,48r-29,0v1,-17,-7,-23,-27,-23v-34,0,-32,2,-32,40xm12,-120v0,-66,57,-122,122,-122v67,0,122,55,122,122v0,67,-55,122,-122,122v-65,0,-122,-56,-122,-122xm238,-120v0,-56,-48,-106,-104,-106v-56,0,-103,50,-103,106v0,56,47,106,103,106v57,0,104,-50,104,-106","w":268},"\u00ae":{"d":"76,-53r0,-137v51,1,116,-12,116,43v0,20,-7,33,-21,37v23,3,20,31,20,57r-29,0v0,-22,4,-44,-20,-44r-37,0r0,44r-29,0xm105,-122v26,-1,60,7,60,-22v0,-28,-35,-20,-60,-21r0,43xm12,-120v0,-66,57,-122,122,-122v67,0,122,55,122,122v0,67,-55,122,-122,122v-65,0,-122,-56,-122,-122xm238,-120v0,-56,-48,-106,-104,-106v-56,0,-103,50,-103,106v0,56,47,106,103,106v57,0,104,-50,104,-106","w":268},"<":{"d":"156,-217r0,40r-113,55r113,55r0,39r-156,-77r0,-34","w":155},">":{"d":"0,-27r0,-40r113,-55r-113,-55r0,-39r156,77r0,34","w":155},"\u00ac":{"d":"116,0r0,-59r-116,0r0,-37r156,0r0,96r-40,0","w":155},"^":{"d":"42,-124r-42,0r60,-117r52,0r60,117r-42,0r-44,-85","w":171},"|":{"d":"0,-240r40,0r0,300r-40,0r0,-300","w":40},"_":{"d":"0,19r180,0r0,36r-180,0r0,-36","w":180},"~":{"d":"53,-266v12,-2,59,20,71,19v10,0,19,-6,27,-20r24,14v-24,53,-60,50,-108,29v-22,-9,-31,-2,-45,20r-22,-15v12,-27,30,-49,53,-47","w":174},"\u00b5":{"d":"0,62r0,-235r40,0v4,55,-17,147,39,147v53,0,35,-93,38,-147r40,0r0,173r-40,0r0,-24v-15,36,-58,37,-77,4r0,82r-40,0","w":156},"\u00c4":{"d":"97,-297r0,28r-31,0r0,-28r31,0xm163,-297r0,28r-31,0r0,-28r31,0xm166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"\u00c1":{"d":"154,-304r8,29r-68,12r-4,-19xm166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"\u00c0":{"d":"74,-304r64,22r-4,19r-68,-12xm166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"\u00c2":{"d":"114,-308r57,33r-8,16r-49,-20r-49,20r-8,-16xm166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"\u00c3":{"d":"89,-304v20,-1,55,38,67,4r20,11v-19,45,-57,21,-87,10v-6,0,-11,5,-16,14r-21,-11v11,-18,23,-28,37,-28xm166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"\u00c5":{"d":"114,-314v20,0,30,9,30,29v0,20,-10,29,-30,29v-19,0,-29,-9,-29,-29v0,-20,10,-29,29,-29xm114,-300v-10,0,-15,5,-15,15v0,10,5,15,15,15v10,0,15,-5,15,-15v0,-10,-5,-15,-15,-15xm166,-46r-103,0r-15,46r-48,0r79,-240r69,0r81,240r-47,0xm156,-80r-42,-125r-41,125r83,0","w":228},"\u00cb":{"d":"80,-297r0,28r-31,0r0,-28r31,0xm146,-297r0,28r-31,0r0,-28r31,0xm62,-202r0,62r112,0r0,34r-112,0r0,68r120,0r0,38r-166,0r0,-240r165,0r0,38r-119,0","w":194},"\u00c9":{"d":"136,-304r9,29r-68,12r-4,-19xm62,-202r0,62r112,0r0,34r-112,0r0,68r120,0r0,38r-166,0r0,-240r165,0r0,38r-119,0","w":194},"\u00c8":{"d":"57,-304r64,22r-5,19r-67,-12xm62,-202r0,62r112,0r0,34r-112,0r0,68r120,0r0,38r-166,0r0,-240r165,0r0,38r-119,0","w":194},"\u00ca":{"d":"97,-308r57,33r-8,16r-49,-20r-49,20r-8,-16xm62,-202r0,62r112,0r0,34r-112,0r0,68r120,0r0,38r-166,0r0,-240r165,0r0,38r-119,0","w":194},"\u00cf":{"d":"38,-297r0,28r-31,0r0,-28r31,0xm81,-297r0,28r-31,0r0,-28r31,0xm67,-240r0,240r-46,0r0,-240r46,0","w":88},"\u00cd":{"d":"84,-304r8,29r-68,12r-4,-19xm67,-240r0,240r-46,0r0,-240r46,0","w":88},"\u00cc":{"d":"4,-304r64,22r-5,19r-67,-12xm67,-240r0,240r-46,0r0,-240r46,0","w":88},"\u00ce":{"d":"44,-308r57,33r-8,16r-49,-20r-49,20r-8,-16xm67,-240r0,240r-46,0r0,-240r46,0","w":88},"\u00d1":{"d":"107,-304v20,-1,55,38,67,4r20,11v-19,45,-57,21,-87,10v-6,0,-11,5,-16,14r-21,-11v11,-18,23,-28,37,-28xm244,-240r0,240r-77,0r-100,-201r-2,0r2,201r-46,0r0,-240r77,0r100,200r2,0r-2,-200r46,0","w":264},"\u00d6":{"d":"99,-297r0,28r-31,0r0,-28r31,0xm165,-297r0,28r-31,0r0,-28r31,0xm10,-112v0,-113,4,-130,111,-130v93,0,103,21,103,119v0,108,-5,125,-111,125v-92,0,-103,-19,-103,-114xm178,-121v0,-75,8,-82,-61,-82v-74,0,-61,11,-61,93v0,68,-3,73,62,73v67,0,60,-11,60,-84","w":233},"\u00d3":{"d":"156,-304r8,29r-67,12r-5,-19xm10,-112v0,-113,4,-130,111,-130v93,0,103,21,103,119v0,108,-5,125,-111,125v-92,0,-103,-19,-103,-114xm178,-121v0,-75,8,-82,-61,-82v-74,0,-61,11,-61,93v0,68,-3,73,62,73v67,0,60,-11,60,-84","w":233},"\u00d2":{"d":"77,-304r64,22r-5,19r-67,-12xm10,-112v0,-113,4,-130,111,-130v93,0,103,21,103,119v0,108,-5,125,-111,125v-92,0,-103,-19,-103,-114xm178,-121v0,-75,8,-82,-61,-82v-74,0,-61,11,-61,93v0,68,-3,73,62,73v67,0,60,-11,60,-84","w":233},"\u00d4":{"d":"117,-308r56,33r-7,16r-49,-20r-50,20r-7,-16xm10,-112v0,-113,4,-130,111,-130v93,0,103,21,103,119v0,108,-5,125,-111,125v-92,0,-103,-19,-103,-114xm178,-121v0,-75,8,-82,-61,-82v-74,0,-61,11,-61,93v0,68,-3,73,62,73v67,0,60,-11,60,-84","w":233},"\u00d5":{"d":"91,-304v22,-1,54,38,68,4r20,11v-20,45,-58,21,-87,10v-6,0,-12,5,-17,14r-20,-11v11,-18,23,-28,36,-28xm10,-112v0,-113,4,-130,111,-130v93,0,103,21,103,119v0,108,-5,125,-111,125v-92,0,-103,-19,-103,-114xm178,-121v0,-75,8,-82,-61,-82v-74,0,-61,11,-61,93v0,68,-3,73,62,73v67,0,60,-11,60,-84","w":233},"\u00dc":{"d":"104,-297r0,28r-32,0r0,-28r32,0xm170,-297r0,28r-31,0r0,-28r31,0xm121,-37v45,0,54,-1,54,-42r0,-161r46,0r0,160v-2,72,-22,82,-98,82v-80,0,-102,-6,-102,-80r0,-162r46,0r0,162v1,41,11,41,54,41","w":241},"\u00da":{"d":"160,-304r8,29r-67,12r-5,-19xm121,-37v45,0,54,-1,54,-42r0,-161r46,0r0,160v-2,72,-22,82,-98,82v-80,0,-102,-6,-102,-80r0,-162r46,0r0,162v1,41,11,41,54,41","w":241},"\u00d9":{"d":"81,-304r64,22r-5,19r-67,-12xm121,-37v45,0,54,-1,54,-42r0,-161r46,0r0,160v-2,72,-22,82,-98,82v-80,0,-102,-6,-102,-80r0,-162r46,0r0,162v1,41,11,41,54,41","w":241},"\u00db":{"d":"121,-308r57,33r-8,16r-49,-20r-49,20r-8,-16xm121,-37v45,0,54,-1,54,-42r0,-161r46,0r0,160v-2,72,-22,82,-98,82v-80,0,-102,-6,-102,-80r0,-162r46,0r0,162v1,41,11,41,54,41","w":241},"\u00e4":{"d":"127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23xm76,-225r0,28r-31,0r0,-28r31,0xm143,-225r0,28r-31,0r0,-28r31,0","w":187},"\u00e1":{"d":"127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23xm128,-240r14,27r-63,27r-9,-17","w":187},"\u00e0":{"d":"127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23xm61,-240r57,37r-9,17r-63,-27","w":187},"\u00e2":{"d":"94,-237r52,35r-9,16r-43,-22r-44,22r-9,-16xm127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23","w":187},"\u00e3":{"d":"70,-231v22,0,51,38,63,4r21,11v-18,44,-56,20,-83,9v-6,0,-12,5,-17,14r-20,-12v11,-17,23,-26,36,-26xm127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23","w":187},"\u00e5":{"d":"94,-243v19,0,29,10,29,29v0,20,-10,30,-29,30v-20,0,-30,-10,-30,-30v0,-19,10,-29,30,-29xm94,-229v-10,0,-15,5,-15,15v0,11,5,16,15,16v10,0,15,-5,15,-16v0,-10,-5,-15,-15,-15xm127,-83v0,-35,6,-60,-35,-60v-20,0,-30,8,-30,24r-41,0v1,-47,19,-51,69,-51v58,0,78,8,78,60r0,110r-41,0v0,-7,3,-18,1,-23v-16,41,-127,32,-114,-27v0,-35,21,-52,62,-52v28,0,45,6,51,19xm54,-52v2,24,9,26,37,27v25,0,37,-8,37,-25v0,-17,-13,-25,-39,-25v-23,0,-35,8,-35,23","w":187},"\u00eb":{"d":"93,-28v26,-1,34,-1,35,-26r41,0v2,40,-22,56,-74,56v-72,0,-81,-16,-81,-89v0,-66,15,-82,79,-83v68,-2,76,25,76,93r-114,0v-2,33,2,51,38,49xm128,-101v0,-31,-3,-40,-37,-39v-32,1,-35,6,-36,39r73,0xm73,-225r0,28r-31,0r0,-28r31,0xm140,-225r0,28r-31,0r0,-28r31,0","w":182},"\u00e9":{"d":"93,-28v26,-1,34,-1,35,-26r41,0v2,40,-22,56,-74,56v-72,0,-81,-16,-81,-89v0,-66,15,-82,79,-83v68,-2,76,25,76,93r-114,0v-2,33,2,51,38,49xm128,-101v0,-31,-3,-40,-37,-39v-32,1,-35,6,-36,39r73,0xm125,-240r14,27r-63,27r-9,-17","w":182},"\u00e8":{"d":"93,-28v26,-1,34,-1,35,-26r41,0v2,40,-22,56,-74,56v-72,0,-81,-16,-81,-89v0,-66,15,-82,79,-83v68,-2,76,25,76,93r-114,0v-2,33,2,51,38,49xm128,-101v0,-31,-3,-40,-37,-39v-32,1,-35,6,-36,39r73,0xm58,-240r57,37r-9,17r-63,-27","w":182},"\u00ea":{"d":"91,-237r53,35r-9,16r-44,-22r-43,22r-9,-16xm93,-28v26,-1,34,-1,35,-26r41,0v2,40,-22,56,-74,56v-72,0,-81,-16,-81,-89v0,-66,15,-82,79,-83v68,-2,76,25,76,93r-114,0v-2,33,2,51,38,49xm128,-101v0,-31,-3,-40,-37,-39v-32,1,-35,6,-36,39r73,0","w":182},"\u00ef":{"d":"30,-225r0,28r-31,0r0,-28r31,0xm82,-225r0,28r-32,0r0,-28r32,0xm60,-168r0,168r-40,0r0,-168r40,0","w":80},"\u00ed":{"d":"60,-168r0,168r-40,0r0,-168r40,0xm74,-240r14,27r-63,27r-9,-17","w":80},"\u00ec":{"d":"60,-168r0,168r-40,0r0,-168r40,0xm7,-240r57,37r-9,17r-63,-27","w":80},"\u00ee":{"d":"60,-168r0,168r-40,0r0,-168r40,0xm40,-237r53,35r-9,16r-44,-22r-43,22r-9,-16","w":80},"\u00f1":{"d":"72,-231v22,0,51,38,63,4r21,11v-18,45,-56,20,-84,9v-5,0,-11,5,-16,14r-20,-12v11,-17,23,-26,36,-26xm20,-168r40,0v0,9,-3,21,-1,28v16,-48,112,-39,112,26r0,114r-40,0r-1,-119v-2,-13,-11,-19,-29,-19v-64,-3,-35,84,-41,138r-40,0r0,-168","w":190},"\u00f6":{"d":"14,-85v0,-72,9,-85,80,-85v66,0,79,13,79,81v0,72,-8,91,-77,91v-73,0,-82,-14,-82,-87xm132,-88v0,-41,-1,-50,-39,-50v-37,0,-39,10,-39,51v0,45,-3,57,40,57v39,0,38,-14,38,-58xm75,-225r0,28r-31,0r0,-28r31,0xm142,-225r0,28r-31,0r0,-28r31,0","w":186},"\u00f3":{"d":"14,-85v0,-72,9,-85,80,-85v66,0,79,13,79,81v0,72,-8,91,-77,91v-73,0,-82,-14,-82,-87xm132,-88v0,-41,-1,-50,-39,-50v-37,0,-39,10,-39,51v0,45,-3,57,40,57v39,0,38,-14,38,-58xm127,-240r14,27r-63,27r-9,-17","w":186},"\u00f2":{"d":"14,-85v0,-72,9,-85,80,-85v66,0,79,13,79,81v0,72,-8,91,-77,91v-73,0,-82,-14,-82,-87xm132,-88v0,-41,-1,-50,-39,-50v-37,0,-39,10,-39,51v0,45,-3,57,40,57v39,0,38,-14,38,-58xm60,-240r57,37r-9,17r-63,-27","w":186},"\u00f4":{"d":"93,-237r53,35r-9,16r-44,-22r-43,22r-9,-16xm14,-85v0,-72,9,-85,80,-85v66,0,79,13,79,81v0,72,-8,91,-77,91v-73,0,-82,-14,-82,-87xm132,-88v0,-41,-1,-50,-39,-50v-37,0,-39,10,-39,51v0,45,-3,57,40,57v39,0,38,-14,38,-58","w":186},"\u00f5":{"d":"69,-231v23,-2,52,38,64,4r20,11v-17,44,-56,20,-83,9v-6,0,-11,5,-16,14r-21,-12v11,-17,23,-26,36,-26xm14,-85v0,-72,9,-85,80,-85v66,0,79,13,79,81v0,72,-8,91,-77,91v-73,0,-82,-14,-82,-87xm132,-88v0,-41,-1,-50,-39,-50v-37,0,-39,10,-39,51v0,45,-3,57,40,57v39,0,38,-14,38,-58","w":186},"\u00fc":{"d":"59,-65v0,28,5,34,31,35v57,3,35,-85,39,-138r40,0r0,168r-40,0v0,-9,3,-22,1,-29v-7,21,-25,31,-54,31v-81,0,-52,-99,-57,-170r40,0r0,103xm77,-225r0,28r-31,0r0,-28r31,0xm144,-225r0,28r-31,0r0,-28r31,0","w":190},"\u00fa":{"d":"59,-65v0,28,5,34,31,35v57,3,35,-85,39,-138r40,0r0,168r-40,0v0,-9,3,-22,1,-29v-7,21,-25,31,-54,31v-81,0,-52,-99,-57,-170r40,0r0,103xm129,-240r14,27r-63,27r-9,-17","w":190},"\u00f9":{"d":"59,-65v0,28,5,34,31,35v57,3,35,-85,39,-138r40,0r0,168r-40,0v0,-9,3,-22,1,-29v-7,21,-25,31,-54,31v-81,0,-52,-99,-57,-170r40,0r0,103xm62,-240r57,37r-9,17r-63,-27","w":190},"\u00fb":{"d":"95,-237r52,35r-8,16r-44,-22r-43,22r-10,-16xm59,-65v0,28,5,34,31,35v57,3,35,-85,39,-138r40,0r0,168r-40,0v0,-9,3,-22,1,-29v-7,21,-25,31,-54,31v-81,0,-52,-99,-57,-170r40,0r0,103","w":190},"\u00ff":{"d":"158,-168r-44,179v-11,49,-26,67,-81,63r0,-30v25,5,34,-11,41,-44r-21,0r-55,-168r43,0r43,143r32,-143r42,0xm60,-225r0,28r-31,0r0,-28r31,0xm127,-225r0,28r-31,0r0,-28r31,0","w":156},"\u00d0":{"d":"230,-141v0,105,3,141,-89,141r-120,0r0,-108r-22,0r0,-28r22,0r0,-104r118,0v71,0,91,28,91,99xm184,-119v0,-62,4,-83,-49,-83r-68,0r0,66r65,0r0,28r-65,0r0,70r65,0v53,-2,52,-21,52,-81","w":242},"\u00de":{"d":"212,-129v7,93,-63,79,-145,80r0,49r-46,0r0,-240r46,0r0,29r63,0v65,1,77,17,82,82xm166,-128v-4,-40,-2,-44,-43,-45r-56,0r0,86v46,-5,105,17,99,-41","w":220},"\u00f0":{"d":"14,-84v-1,-68,24,-87,91,-86r-17,-26r-29,15r-9,-18r28,-14r-17,-27r41,0r7,11r26,-13r9,18r-24,13v20,39,52,56,52,120v0,62,-26,93,-78,93v-62,0,-79,-22,-80,-86xm131,-88v0,-41,0,-50,-38,-50v-37,0,-39,10,-39,51v0,45,-2,57,39,57v40,0,38,-13,38,-58","w":185},"\u00fe":{"d":"177,-86v0,62,-9,86,-65,88v-27,1,-42,-11,-52,-26r0,96r-40,0r0,-312r40,0r0,97v9,-18,27,-27,53,-27v54,1,64,25,64,84xm136,-84v0,-43,-1,-54,-39,-54v-36,0,-37,14,-37,54v0,40,3,54,39,54v36,0,37,-13,37,-54","w":190},"\u00b9":{"d":"105,-240r0,144r-31,0r0,-117r-38,36r-19,-19r51,-44r37,0","w":150},"\u00b2":{"d":"75,-241v42,1,54,7,58,46v6,53,-51,41,-83,55v-3,2,-4,11,-4,20r87,0r0,24r-118,0v-1,-49,-1,-68,51,-74v30,-4,37,1,37,-25v0,-22,-5,-22,-28,-22v-27,0,-29,3,-29,29r-31,0v0,-43,12,-54,60,-53","w":150},"\u00b3":{"d":"75,-119v23,0,28,0,29,-21v1,-19,-22,-19,-43,-18r0,-23v27,-2,42,6,41,-17v0,-21,-6,-19,-29,-19v-24,0,-28,2,-27,25r-31,0v-1,-42,14,-49,58,-49v40,0,60,13,60,38v0,18,-7,29,-21,33v15,3,23,14,23,32v0,57,-80,48,-110,34v-10,-5,-15,-24,-12,-42r30,0v-1,26,5,27,32,27","w":150},"\u00d7":{"d":"85,-120r-58,-59r27,-27r59,58r58,-58r28,27r-58,59r58,58r-28,28r-58,-58r-59,58r-27,-28"},"\u00bd":{"d":"106,-240r0,144r-31,0r0,-117r-39,36r-19,-19r51,-44r38,0xm270,-240r-152,240r-27,0r151,-240r28,0xm284,-145v43,1,59,6,59,46v0,41,-14,38,-52,47v-29,7,-35,-2,-35,27r87,0r0,25r-118,0v-1,-49,-1,-68,51,-74v29,-4,37,1,37,-25v0,-23,-5,-22,-29,-22v-25,0,-29,2,-28,29r-31,0v-1,-44,12,-54,59,-53","w":360},"\u00bc":{"d":"105,-240r0,144r-31,0r0,-117r-38,36r-19,-19r51,-44r37,0xm269,-240r-151,240r-27,0r151,-240r27,0xm332,-144r0,91r18,0r0,23r-18,0r0,30r-31,0r0,-30r-84,0r0,-32r68,-82r47,0xm301,-53r0,-67r-56,67r56,0","w":360},"\u00be":{"d":"75,-119v23,0,28,0,29,-21v1,-19,-22,-19,-43,-18r0,-23v27,-2,42,6,41,-17v0,-21,-6,-19,-29,-19v-24,0,-28,2,-27,25r-31,0v-1,-42,14,-49,58,-49v40,0,60,13,60,38v0,18,-7,29,-21,33v15,3,23,14,23,32v0,57,-80,48,-110,34v-10,-5,-15,-24,-12,-42r30,0v-1,26,5,27,32,27xm277,-240r-152,240r-27,0r151,-240r28,0xm332,-144r0,91r18,0r0,23r-18,0r0,30r-31,0r0,-30r-83,0r0,-32r68,-82r46,0xm301,-53r0,-67r-56,67r56,0","w":360},"\u00a6":{"d":"0,-240r40,0r0,123r-40,0r0,-123xm0,-55r40,0r0,115r-40,0r0,-115","w":40},"\u00dd":{"d":"149,-304r8,29r-67,12r-5,-19xm220,-240r-89,148r0,92r-46,0r0,-92r-86,-148r53,0r57,102r57,-102r54,0","w":218},"\u00fd":{"d":"158,-168r-44,179v-11,49,-26,67,-81,63r0,-30v25,5,34,-11,41,-44r-21,0r-55,-168r43,0r43,143r32,-143r42,0xm112,-240r14,27r-63,27r-9,-17","w":156}}});

Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica Neue","font-weight":100,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-61 -334 375 77","underline-thickness":"18","underline-position":"-27","stemh":"12","stemv":"14","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"38,-257r17,0r-4,191r-9,0xm56,0r-19,0r0,-37r19,0r0,37","w":93},"\"":{"d":"29,-175r0,-82r13,0r0,82r-13,0xm71,-175r0,-82r14,0r0,82r-14,0","w":113},"#":{"d":"149,-248r12,0r-11,79r39,0r0,12r-41,0r-9,62r40,0r0,12r-41,0r-12,83r-12,0r12,-83r-61,0r-12,83r-12,0r12,-83r-42,0r0,-12r44,0r8,-62r-42,0r0,-12r44,0r11,-79r12,0r-11,79r61,0xm75,-157r-8,62r60,0r9,-62r-61,0"},"$":{"d":"104,-125r0,117v41,0,76,-16,76,-58v0,-34,-36,-53,-76,-59xm93,-141r0,-108v-49,1,-67,24,-67,54v-1,41,34,46,67,54xm93,38r0,-32v-53,-5,-89,-29,-89,-91r14,0v0,45,25,75,75,77r0,-119v-39,-10,-80,-16,-81,-68v0,-16,5,-66,81,-68r0,-18r11,0r0,18v50,1,82,24,84,79r-14,0v-3,-47,-28,-65,-70,-66r0,112v47,7,98,34,90,72v0,53,-45,71,-90,72r0,32r-11,0"},"%":{"d":"50,9r167,-266r14,0r-167,266r-14,0xm206,4v-36,0,-60,-28,-60,-63v0,-36,23,-65,60,-65v38,0,60,28,60,65v0,34,-24,63,-60,63xm206,-8v28,0,46,-25,46,-51v0,-28,-16,-53,-46,-53v-30,0,-46,25,-46,53v0,26,17,51,46,51xm74,-125v-36,0,-60,-28,-60,-63v0,-36,23,-65,61,-65v37,0,59,28,59,65v0,34,-23,63,-60,63xm74,-136v29,0,46,-26,46,-52v0,-28,-16,-53,-46,-53v-30,0,-46,25,-46,53v0,26,18,52,46,52","w":280},"&":{"d":"94,-148v21,-14,48,-31,48,-60v-1,-43,-80,-43,-81,0v0,24,22,42,33,60xm156,-49r-66,-83v-27,18,-61,34,-61,71v0,34,31,53,63,53v43,0,64,-39,64,-41xm196,0r-31,-38v-28,61,-151,56,-150,-23v0,-42,38,-62,67,-81v-15,-20,-34,-39,-34,-66v0,-27,27,-45,54,-45v28,0,54,16,54,45v0,36,-29,51,-54,70r61,75v5,-13,9,-28,9,-43r14,0v-1,19,-6,38,-13,55r42,51r-19,0","w":213},"\u2019":{"d":"45,-257v-1,35,5,71,-23,82v0,-17,16,-28,12,-45r-7,0r0,-37r18,0","w":73},"(":{"d":"82,66r-12,0v-62,-98,-61,-230,1,-329r12,0v-60,100,-62,230,-1,329","w":86},")":{"d":"5,-263r12,0v61,98,60,230,-1,329r-12,0v59,-99,63,-230,1,-329","w":86},"*":{"d":"58,-257r10,0r0,47r44,-15r4,10r-44,15r27,37r-8,7r-28,-38r-28,38r-9,-7r29,-37r-45,-15r4,-10r44,15r0,-47","w":126},"+":{"d":"101,-98r0,-83r14,0r0,83r84,0r0,14r-84,0r0,84r-14,0r0,-84r-84,0r0,-14r84,0","w":216},",":{"d":"36,45r0,-12v10,-4,12,-23,12,-33r-7,0r0,-37r18,0v-1,35,5,71,-23,82","w":100},"-":{"d":"102,-91r-77,0r0,-14r77,0r0,14","w":126},".":{"d":"59,0r-18,0r0,-37r18,0r0,37","w":100},"\/":{"d":"10,6r-15,0r115,-269r15,0","w":119},"0":{"d":"100,4v-72,0,-90,-68,-90,-128v0,-60,18,-129,90,-129v72,0,90,69,90,129v0,60,-18,128,-90,128xm100,-8v62,0,76,-66,76,-116v0,-50,-14,-117,-76,-117v-62,0,-76,67,-76,117v0,50,14,116,76,116"},"1":{"d":"119,-248r0,248r-14,0r0,-222v-17,19,-41,29,-66,32r0,-12v29,-4,53,-21,68,-46r12,0"},"2":{"d":"178,-185v0,83,-134,106,-144,171r148,0r0,14r-165,0v1,-90,148,-99,148,-185v0,-34,-29,-56,-62,-56v-45,0,-67,34,-67,76r-13,0v3,-59,30,-88,78,-88v42,0,77,23,77,68"},"3":{"d":"13,-82r14,0v-2,46,26,74,72,74v37,0,71,-21,71,-61v0,-47,-42,-60,-83,-57r0,-12v36,2,78,-9,78,-52v0,-35,-36,-51,-66,-51v-44,0,-64,30,-66,71r-14,0v0,-49,31,-83,80,-83v40,0,79,19,79,63v1,30,-21,52,-48,58v33,3,54,30,54,63v0,49,-39,73,-85,73v-55,0,-89,-31,-86,-86"},"4":{"d":"131,-248r14,0r0,173r42,0r0,12r-42,0r0,63r-14,0r0,-63r-121,0r0,-14xm131,-75r0,-155r-107,155r107,0"},"5":{"d":"21,-120r26,-128r125,0r0,11r-114,0r-21,100v42,-60,146,-23,146,55v0,49,-35,86,-84,86v-48,0,-89,-30,-86,-80r14,0v-1,41,32,68,72,68v42,0,70,-33,70,-74v0,-73,-101,-99,-134,-38r-14,0"},"6":{"d":"104,-8v40,0,69,-32,69,-71v0,-39,-29,-73,-69,-73v-41,0,-71,32,-71,73v0,41,32,71,71,71xm183,-187r-14,0v-6,-32,-30,-54,-62,-54v-69,0,-80,82,-77,130v10,-32,41,-53,74,-53v49,0,83,36,83,85v0,48,-35,83,-83,83v-70,0,-89,-55,-89,-116v0,-61,15,-141,92,-141v41,0,71,24,76,66"},"7":{"d":"20,-237r0,-11r160,0r0,13v-50,56,-95,113,-107,235r-15,0v5,-71,23,-145,109,-237r-147,0"},"8":{"d":"172,-71v0,-42,-33,-58,-72,-58v-39,0,-72,16,-72,58v0,44,34,63,72,63v38,0,72,-19,72,-63xm23,-190v0,-87,154,-86,154,0v0,28,-18,47,-46,55v34,4,55,28,55,64v0,51,-38,75,-86,75v-47,0,-86,-24,-86,-75v-1,-37,23,-58,55,-65v-30,-6,-46,-27,-46,-54xm163,-190v0,-38,-30,-51,-63,-51v-33,0,-63,13,-63,51v0,35,31,49,63,49v32,0,63,-14,63,-49"},"9":{"d":"100,-96v41,0,71,-33,71,-73v0,-40,-31,-72,-71,-72v-40,0,-70,33,-70,72v0,39,30,73,70,73xm20,-61r13,0v6,32,30,53,63,53v68,0,80,-84,77,-127v-10,28,-34,51,-73,51v-49,0,-83,-36,-83,-85v0,-49,35,-84,83,-84v39,0,87,17,87,117v0,61,-15,140,-91,140v-42,0,-72,-23,-76,-65"},":":{"d":"41,-185r18,0r0,37r-18,0r0,-37xm59,0r-18,0r0,-37r18,0r0,37","w":100},";":{"d":"36,45r0,-12v10,-4,12,-23,12,-33r-7,0r0,-37r18,0v-1,35,5,71,-23,82xm41,-185r18,0r0,37r-18,0r0,-37","w":100},"<":{"d":"199,-185r0,15r-171,79r171,79r0,15r-182,-85r0,-19","w":216},"=":{"d":"199,-133r0,14r-182,0r0,-14r182,0xm199,-63r0,14r-182,0r0,-14r182,0","w":216},">":{"d":"17,3r0,-15r171,-79r-171,-79r0,-15r182,85r0,19","w":216},"?":{"d":"85,-65v-4,-71,67,-77,67,-134v0,-35,-28,-50,-58,-50v-43,0,-65,30,-65,72r-14,0v0,-52,28,-86,80,-86v39,0,71,21,71,64v0,69,-68,56,-67,134r-14,0xm83,0r0,-37r19,0r0,37r-19,0","w":186},"@":{"d":"121,-59v34,-1,65,-60,65,-95v0,-14,-3,-43,-33,-43v-41,0,-69,56,-69,94v0,26,16,44,37,44xm219,-202r-40,129v0,7,6,12,14,12v33,0,65,-51,65,-91v0,-60,-55,-99,-108,-99v-66,0,-120,57,-120,124v0,121,163,162,220,67r16,0v-23,41,-69,66,-115,66v-77,0,-134,-60,-134,-136v0,-73,60,-133,132,-133v68,0,122,47,122,112v0,54,-45,103,-82,103v-13,0,-23,-8,-24,-25v-26,41,-95,29,-95,-29v0,-50,35,-107,85,-107v24,-1,36,18,41,33r8,-26r15,0","w":288},"A":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146","w":213},"B":{"d":"39,-127r0,113v70,0,164,11,160,-58v-5,-75,-90,-51,-160,-55xm23,0r0,-257r103,0v61,0,81,33,81,67v1,28,-23,49,-50,55v7,-1,58,11,58,63v0,84,-106,73,-192,72xm39,-243r0,103v65,1,155,9,152,-53v-3,-67,-88,-47,-152,-50","w":226},"C":{"d":"239,-180r-16,0v-7,-44,-45,-69,-88,-69v-67,0,-106,55,-106,120v0,66,39,121,106,121v50,0,89,-44,92,-92r16,0v-6,61,-51,106,-108,106v-77,0,-122,-59,-122,-135v0,-75,45,-134,122,-134v91,0,103,79,104,83","w":253},"D":{"d":"39,-243r0,229v100,3,171,6,171,-115v0,-105,-67,-114,-106,-114r-65,0xm23,0r0,-257r84,0v92,0,119,63,119,128v0,73,-37,129,-120,129r-83,0","w":240},"E":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113","w":201},"F":{"d":"170,-127r-131,0r0,127r-16,0r0,-257r161,0r0,14r-145,0r0,103r131,0r0,13","w":185},"G":{"d":"138,-126r108,0r0,126r-14,0v-1,-18,2,-39,-1,-55v-12,38,-51,61,-97,61v-77,0,-121,-59,-121,-133v0,-73,44,-136,122,-136v53,0,98,32,107,86r-16,0v-11,-45,-44,-72,-91,-72v-69,0,-106,58,-106,122v0,65,35,119,106,119v61,0,100,-41,97,-104r-94,0r0,-14","w":266},"H":{"d":"203,-127r-164,0r0,127r-16,0r0,-257r16,0r0,117r164,0r0,-117r16,0r0,257r-16,0r0,-127","w":241},"I":{"d":"23,0r0,-257r16,0r0,257r-16,0","w":61},"J":{"d":"7,-82r16,0v-2,38,4,74,55,74v60,0,57,-42,57,-77r0,-172r15,0r0,177v0,30,2,86,-70,86v-70,0,-73,-49,-73,-88","w":173},"K":{"d":"23,0r0,-257r16,0r0,148r161,-148r21,0r-118,107r125,150r-20,0r-116,-139r-53,48r0,91r-16,0","w":220},"L":{"d":"23,0r0,-257r16,0r0,243r145,0r0,14r-161,0","w":180},"M":{"d":"23,0r0,-257r22,0r102,239r99,-239r23,0r0,257r-16,0r-1,-238r-98,238r-16,0r-99,-238r0,238r-16,0","w":291},"N":{"d":"23,0r0,-257r19,0r164,236r0,-236r15,0r0,257r-18,0r-164,-238r0,238r-16,0","w":244},"O":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120","w":266},"P":{"d":"39,-243r0,115r90,0v46,0,62,-31,62,-57v0,-19,-8,-58,-60,-58r-92,0xm23,0r0,-257v87,8,184,-33,184,72v0,45,-30,71,-81,71r-87,0r0,114r-16,0","w":212},"Q":{"d":"163,-66r41,30v68,-62,37,-213,-70,-213v-68,0,-107,55,-107,120v0,90,91,155,167,102r-39,-27xm249,13r-43,-30v-19,15,-44,23,-72,23v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v120,0,158,166,83,236r40,29","w":266},"R":{"d":"39,-131v70,-2,157,18,156,-59v-1,-71,-89,-50,-156,-53r0,112xm197,0v-17,-47,16,-117,-67,-117r-91,0r0,117r-16,0r0,-257v82,4,188,-22,188,66v1,36,-23,59,-55,67v70,3,39,85,59,124r-18,0","w":226},"S":{"d":"197,-66v0,-88,-175,-31,-175,-129v0,-49,45,-68,86,-68v54,0,96,23,98,79r-16,0v-1,-44,-34,-65,-82,-65v-29,0,-71,12,-71,54v0,85,176,29,176,129v0,53,-51,72,-91,72v-60,0,-109,-25,-108,-91r16,0v-3,56,42,77,92,77v31,0,75,-14,75,-58","w":226},"T":{"d":"85,-243r-90,0r0,-14r197,0r0,14r-91,0r0,243r-16,0r0,-243","w":186},"U":{"d":"23,-257r16,0r0,154v0,31,6,95,80,95v120,0,76,-144,84,-249r16,0v-7,119,36,264,-100,263v-91,0,-96,-75,-96,-109r0,-154","w":241},"V":{"d":"12,-257r88,243r89,-243r16,0r-96,257r-18,0r-96,-257r17,0"},"W":{"d":"72,0r-74,-257r16,0r68,240r68,-240r20,0r69,240r66,-240r17,0r-74,257r-18,0r-71,-243r-69,243r-18,0","w":320},"X":{"d":"90,-132r-90,-125r19,0r81,113r83,-113r18,0r-90,125r95,132r-19,0r-87,-120r-87,120r-19,0"},"Y":{"d":"103,-121r94,-136r17,0r-103,149r0,108r-16,0r0,-108r-103,-149r18,0","w":206},"Z":{"d":"10,-243r0,-14r180,0r0,14r-174,229r178,0r0,14r-194,0r0,-14r173,-229r-163,0","w":193},"[":{"d":"83,-251r-35,0r0,305r35,0r0,12r-49,0r0,-329r49,0r0,12","w":86},"\\":{"d":"125,6r-15,0r-115,-269r15,0","w":119},"]":{"d":"4,54r35,0r0,-305r-35,0r0,-12r49,0r0,329r-49,0r0,-12","w":86},"^":{"d":"202,-85r-15,0r-79,-152r-79,152r-15,0r85,-163r19,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"51,-257v1,18,-16,29,-12,45r8,0r0,37r-19,0v0,-35,-4,-71,23,-82","w":73},"a":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48","w":180},"b":{"d":"108,-8v91,-1,90,-170,0,-169v-48,0,-71,34,-71,80v0,46,21,89,71,89xm23,0r0,-257r14,0r1,111v10,-29,40,-43,70,-43v54,0,80,41,80,92v0,88,-54,101,-80,101v-50,0,-65,-37,-71,-45r0,41r-14,0"},"c":{"d":"173,-128r-14,0v-2,-33,-29,-49,-62,-49v-47,0,-71,41,-71,83v0,50,23,86,71,86v34,0,60,-23,64,-57r14,0v-6,44,-38,69,-78,69v-60,0,-85,-47,-85,-98v0,-52,30,-95,85,-95v40,0,72,19,76,61","w":186},"d":{"d":"94,-8v47,0,69,-42,69,-84v0,-43,-22,-85,-69,-85v-49,0,-69,40,-69,85v0,43,22,84,69,84xm163,0v-1,-13,2,-29,-1,-40v-15,30,-37,44,-71,44v-55,0,-79,-45,-79,-96v0,-55,26,-97,82,-97v31,-1,58,18,69,45r0,-113r14,0r0,257r-14,0"},"e":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-82,-42,-82,-93v0,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74","w":186},"f":{"d":"33,-173r-33,0r0,-12r33,0v-6,-48,8,-87,57,-73r0,12v-21,-4,-43,-4,-43,24r0,37r38,0r0,12r-38,0r0,173r-14,0r0,-173","w":86},"g":{"d":"92,-177v-45,0,-66,39,-66,79v0,43,22,79,66,79v45,0,67,-38,67,-79v0,-42,-22,-79,-67,-79xm159,-185r14,0r0,175v0,15,0,81,-80,81v-39,0,-70,-15,-72,-58r14,0v2,33,28,46,59,46v64,0,65,-53,65,-65r0,-43v-13,27,-36,42,-67,42v-55,0,-80,-40,-80,-91v0,-49,28,-91,80,-91v29,0,57,15,67,42r0,-38","w":193},"h":{"d":"20,-257r14,0r1,112v9,-28,37,-44,66,-44v65,0,66,52,66,75r0,114r-14,0r0,-117v0,-19,-2,-60,-53,-60v-41,0,-66,32,-66,77r0,100r-14,0r0,-257","w":186},"i":{"d":"37,0r-14,0r0,-185r14,0r0,185xm37,-220r-14,0r0,-37r14,0r0,37","w":60},"j":{"d":"23,-185r14,0r0,205v2,29,-11,50,-49,46r0,-12v23,3,35,-3,35,-35r0,-204xm37,-220r-14,0r0,-37r14,0r0,37","w":60},"k":{"d":"21,0r0,-257r14,0r0,170r114,-98r19,0r-81,69r87,116r-18,0r-79,-105r-42,35r0,70r-14,0","w":166},"l":{"d":"23,-257r14,0r0,257r-14,0r0,-257","w":60},"m":{"d":"21,0r0,-185r13,0v1,12,-2,28,1,38v6,-24,30,-42,58,-42v35,0,52,20,56,39v18,-56,117,-55,117,24r0,126r-14,0r0,-127v0,-47,-33,-50,-44,-50v-33,0,-58,23,-58,68r0,109r-14,0r0,-127v0,-46,-31,-50,-43,-50v-26,0,-59,20,-59,68r0,109r-13,0","w":286},"n":{"d":"20,0r0,-185r14,0v1,13,-2,29,1,40v9,-28,37,-44,66,-44v65,0,66,52,66,75r0,114r-14,0r0,-117v0,-19,-2,-60,-53,-60v-41,0,-66,32,-66,77r0,100r-14,0","w":186},"o":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84","w":193},"p":{"d":"105,-8v48,0,70,-38,70,-84v0,-42,-20,-85,-70,-85v-49,0,-68,41,-68,85v0,44,16,84,68,84xm37,-185v1,13,-2,31,1,42v6,-18,26,-46,67,-46v57,0,83,45,83,97v0,56,-26,96,-83,96v-31,1,-55,-15,-68,-43r0,105r-14,0r0,-251r14,0"},"q":{"d":"94,-8v47,0,69,-42,69,-85v0,-42,-22,-84,-69,-84v-47,0,-69,41,-69,84v0,45,20,85,69,85xm163,66r-1,-107v-9,29,-38,45,-68,45v-56,0,-82,-42,-82,-97v0,-51,24,-96,79,-96v35,-1,55,16,72,44r0,-40r14,0r0,251r-14,0"},"r":{"d":"34,-185v1,13,-2,30,1,41v7,-24,37,-44,71,-42r0,14v-34,-4,-72,25,-72,71r0,101r-14,0r0,-185r14,0","w":100},"s":{"d":"33,-142v0,62,127,20,127,95v0,40,-40,51,-72,51v-42,0,-74,-22,-75,-66r14,0v2,35,27,54,61,54v24,0,59,-7,59,-39v0,-64,-128,-21,-128,-95v0,-37,36,-47,67,-47v40,0,69,17,69,59r-14,0v0,-34,-24,-47,-55,-47v-25,0,-53,9,-53,35","w":173},"t":{"d":"88,-185r0,12r-40,0r0,129v0,30,14,33,40,32r0,12v-28,2,-54,-2,-54,-44r0,-129r-34,0r0,-12r34,0r0,-58r14,0r0,58r40,0","w":93},"u":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-9,28,-37,44,-66,44v-65,0,-66,-52,-66,-75r0,-114r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0","w":186},"v":{"d":"161,-185r-70,185r-17,0r-75,-185r16,0r68,169r62,-169r16,0","w":159},"w":{"d":"14,-185r53,169r50,-169r19,0r51,169r52,-169r15,0r-59,185r-17,0r-52,-168r-51,168r-17,0r-59,-185r15,0","w":253},"x":{"d":"-2,0r73,-97r-68,-88r19,0r58,77r58,-77r18,0r-67,88r73,97r-19,0r-63,-87r-65,87r-17,0","w":159},"y":{"d":"75,-1r-77,-184r16,0r69,169r63,-169r16,0r-80,205v-13,35,-18,48,-64,46r0,-12v43,-2,42,-13,57,-55","w":159},"z":{"d":"20,-12r130,0r0,12r-147,0r0,-13r124,-160r-114,0r0,-12r131,0r0,13","w":153},"{":{"d":"105,-263r0,12v-50,-14,-36,53,-36,93v0,48,-20,56,-25,59v5,4,25,12,25,60v0,37,-18,108,36,93r0,12v-33,1,-48,0,-49,-42v-1,-42,9,-111,-26,-115r0,-14v36,-4,25,-74,26,-116v1,-41,16,-44,49,-42","w":119},"|":{"d":"33,77r0,-360r14,0r0,360r-14,0","w":79},"}":{"d":"14,66r0,-12v50,15,36,-53,36,-93v0,-48,21,-56,26,-60v-5,-3,-26,-11,-26,-59v0,-38,18,-107,-36,-93r0,-12v33,-1,50,1,50,42v0,42,-10,111,26,116r0,14v-35,3,-25,74,-26,115v-1,42,-17,43,-50,42","w":119},"~":{"d":"70,-110v28,-1,48,25,77,25v14,0,27,-16,33,-27r10,10v-9,14,-23,30,-43,30v-24,0,-49,-24,-75,-24v-21,0,-30,15,-35,27r-11,-11v11,-18,22,-30,44,-30","w":216},"\u00a1":{"d":"55,66r-17,0r4,-191r9,0xm37,-193r19,0r0,37r-19,0r0,-37","w":93},"\u00a2":{"d":"98,-8r0,-169v-88,3,-87,169,0,169xm98,42r0,-38v-109,-2,-104,-192,0,-193r0,-32r11,0r0,32v38,1,67,22,71,61r-14,0v-3,-30,-26,-47,-57,-49r0,169v32,-2,54,-25,59,-57r13,0v-5,42,-34,67,-72,69r0,38r-11,0"},"\u00a3":{"d":"141,6v-42,0,-83,-31,-116,0r-9,-12v30,-25,56,-72,30,-113r-28,0r0,-12r22,0v-11,-19,-22,-40,-22,-63v0,-45,39,-69,82,-69v56,0,86,30,84,89r-13,0v-1,-49,-22,-75,-71,-75v-42,0,-68,20,-68,54v0,26,14,46,23,64r58,0r0,12r-51,0v20,35,-1,88,-27,109v30,-27,68,2,104,2v22,0,36,-12,49,-24r8,12v-14,15,-34,26,-55,26"},"\u2044":{"d":"-61,9r168,-266r14,0r-167,266r-15,0","w":60},"\u00a5":{"d":"-3,-257r18,0r85,135r86,-135r17,0r-86,134r33,0r0,12r-43,0r0,28r43,0r0,12r-43,0r0,71r-14,0r0,-71r-43,0r0,-12r43,0r0,-28r-43,0r0,-12r33,0"},"\u0192":{"d":"2,64r2,-13v35,9,49,-11,56,-48r29,-146r-41,0r3,-11r40,0v11,-53,10,-123,86,-107r-2,14v-56,-19,-61,48,-69,93r43,0r-2,11r-43,0r-29,148v-1,25,-25,74,-73,59"},"\u00a7":{"d":"155,-49v42,-57,-53,-89,-88,-113v-17,7,-35,21,-35,41v0,51,67,57,99,85v4,1,16,-6,24,-13xm148,17v-1,-64,-129,-70,-129,-138v0,-23,19,-41,40,-49v-45,-36,-10,-93,40,-93v41,0,62,28,63,70r-14,0v1,-29,-17,-58,-49,-58v-21,0,-46,14,-46,38v3,66,130,63,128,136v0,28,-17,43,-40,49v15,14,21,24,21,45v0,36,-28,49,-61,49v-42,0,-65,-29,-65,-69r13,0v1,31,17,57,52,57v28,0,47,-11,47,-37"},"\u00a4":{"d":"187,-47r-10,10r-19,-20v-34,30,-82,29,-116,0r-20,20r-9,-9r20,-20v-30,-34,-29,-83,0,-116r-21,-20r10,-10r20,20v34,-28,82,-28,116,0r19,-19r10,9r-20,20v29,32,30,83,0,115xm100,-49v40,0,74,-33,74,-75v0,-42,-34,-76,-74,-76v-40,0,-73,34,-73,76v0,42,33,75,73,75"},"'":{"d":"30,-175r0,-82r14,0r0,82r-14,0","w":73},"\u201c":{"d":"46,-257v1,18,-16,29,-12,45r7,0r0,37r-18,0v1,-35,-5,-71,23,-82xm91,-257v1,18,-16,29,-12,45r8,0r0,37r-19,0v0,-35,-4,-71,23,-82","w":113},"\u00ab":{"d":"65,-44r-41,-47r0,-14r41,-47v3,31,-20,36,-30,54v10,18,32,24,30,54xm111,-44r-41,-47r0,-14r41,-47v3,31,-20,36,-30,54v10,18,32,24,30,54","w":140},"\u2039":{"d":"65,-44r-41,-47r0,-14r41,-47v3,31,-20,36,-30,54v10,18,32,24,30,54","w":93},"\u203a":{"d":"28,-44v-2,-31,21,-36,31,-54v-10,-18,-34,-23,-31,-54r41,47r0,14","w":93},"\ufb01":{"d":"0,-173r0,-12r33,0v-6,-48,8,-87,57,-73r0,12v-21,-4,-43,-4,-43,24r0,37r38,0r0,12r-38,0r0,173r-14,0r0,-173r-33,0xm103,-220r0,-37r14,0r0,37r-14,0xm103,0r0,-185r14,0r0,185r-14,0","w":140},"\ufb02":{"d":"0,-173r0,-12r33,0v-6,-48,8,-87,57,-73r0,12v-21,-4,-43,-4,-43,24r0,37r38,0r0,12r-38,0r0,173r-14,0r0,-173r-33,0xm103,0r0,-257r14,0r0,257r-14,0","w":140},"\u2013":{"d":"0,-91r0,-14r180,0r0,14r-180,0","w":180},"\u2020":{"d":"19,-185r74,0r0,-72r14,0r0,72r74,0r0,12r-74,0r0,226r-14,0r0,-226r-74,0r0,-12"},"\u2021":{"d":"93,-257r14,0r0,72r74,0r0,12r-74,0r0,142r74,0r0,12r-74,0r0,72r-14,0r0,-72r-74,0r0,-12r74,0r0,-142r-74,0r0,-12r74,0r0,-72"},"\u00b7":{"d":"50,-94v-24,0,-24,-40,0,-40v10,0,20,9,20,20v0,10,-10,20,-20,20","w":100},"\u00b6":{"d":"98,53r0,-170v-42,0,-74,-32,-74,-69v0,-77,81,-74,158,-71r0,310r-14,0r0,-298r-56,0r0,298r-14,0","w":216},"\u2022":{"d":"26,-129v0,-35,28,-64,64,-64v36,0,64,29,64,64v0,36,-28,65,-64,65v-36,0,-64,-29,-64,-65","w":180},"\u201a":{"d":"45,-37v-1,35,5,71,-23,82r0,-12v10,-4,12,-23,12,-33r-7,0r0,-37r18,0","w":73},"\u201e":{"d":"90,-37v-1,35,5,71,-23,82r0,-12v11,-4,13,-23,13,-33r-8,0r0,-37r18,0xm45,-37v-1,35,5,71,-23,82r0,-12v10,-4,12,-23,12,-33r-7,0r0,-37r18,0","w":113},"\u201d":{"d":"90,-257v-1,35,5,71,-23,82r0,-11v11,-5,13,-24,13,-34r-8,0r0,-37r18,0xm45,-257v-1,35,5,71,-23,82v0,-17,16,-28,12,-45r-7,0r0,-37r18,0","w":113},"\u00bb":{"d":"29,-44v-2,-30,20,-36,30,-54v-10,-18,-33,-23,-30,-54r41,47r0,14xm75,-44v-2,-30,20,-36,30,-54v-10,-18,-33,-23,-30,-54r41,47r0,14","w":140},"\u2026":{"d":"51,0r0,-37r18,0r0,37r-18,0xm171,0r0,-37r18,0r0,37r-18,0xm291,0r0,-37r18,0r0,37r-18,0","w":360},"\u2030":{"d":"38,9r167,-266r15,0r-168,266r-14,0xm190,4v-37,0,-55,-25,-55,-61v0,-34,22,-60,55,-60v34,0,54,26,54,60v0,36,-19,61,-54,61xm189,-8v27,0,41,-21,41,-49v0,-26,-14,-48,-41,-48v-27,0,-41,20,-41,48v0,28,11,49,41,49xm318,4v-37,0,-55,-25,-55,-61v0,-34,21,-60,55,-60v34,0,54,26,54,60v0,36,-20,61,-54,61xm318,-8v27,0,41,-21,41,-49v0,-26,-15,-48,-41,-48v-27,0,-42,20,-42,48v0,28,12,49,42,49xm69,-253v35,0,55,26,55,60v0,36,-20,62,-55,62v-36,0,-55,-25,-55,-62v0,-34,22,-60,55,-60xm69,-241v-27,0,-41,21,-41,48v0,28,12,50,41,50v27,0,41,-22,41,-50v0,-26,-14,-48,-41,-48","w":386},"\u00bf":{"d":"102,-127v4,71,-68,76,-68,133v0,36,28,51,58,51v43,0,65,-31,65,-72r14,0v0,51,-28,86,-80,86v-38,0,-70,-21,-70,-65v0,-68,68,-55,67,-133r14,0xm103,-193r0,37r-18,0r0,-37r18,0","w":186},"`":{"d":"51,-213r-14,0r-48,-50r19,0","w":60},"\u00b4":{"d":"9,-213r44,-50r18,0r-48,50r-14,0","w":60},"\u02c6":{"d":"23,-263r14,0r42,50r-14,0r-35,-41r-35,41r-14,0","w":60},"\u02dc":{"d":"55,-217v-24,-2,-59,-40,-67,0r-10,0v1,-16,11,-32,28,-32v21,0,61,40,66,0r10,0v-2,16,-9,33,-27,32","w":60},"\u00af":{"d":"74,-226r-87,0r0,-12r87,0r0,12","w":60},"\u02d8":{"d":"67,-263r12,0v-4,54,-94,57,-98,0r12,0v11,46,66,39,74,0","w":60},"\u02d9":{"d":"38,-214r-16,0r0,-37r16,0r0,37","w":60},"\u00a8":{"d":"9,-214r-15,0r0,-37r15,0r0,37xm66,-214r-16,0r0,-37r16,0r0,37","w":60},"\u02da":{"d":"-6,-230v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,19,-16,35,-36,35v-20,0,-36,-16,-36,-35xm4,-230v0,14,11,26,26,26v14,0,26,-12,26,-26v0,-15,-12,-26,-26,-26v-15,0,-26,11,-26,26","w":60},"\u00b8":{"d":"10,27v11,-9,10,-29,32,-27v-4,7,-15,14,-16,21v17,-8,40,0,40,23v0,32,-52,31,-69,19r4,-9v13,7,51,15,51,-10v0,-21,-24,-19,-37,-12","w":60},"\u02dd":{"d":"-7,-213r-13,0r43,-50r18,0xm50,-213r-13,0r43,-50r18,0","w":60},"\u02db":{"d":"40,0r9,0v-27,23,-32,33,-32,49v0,21,32,19,39,1r9,3v-5,12,-17,23,-33,23v-9,0,-31,-1,-31,-27v0,-8,5,-30,39,-49","w":60},"\u02c7":{"d":"35,-213r-14,0r-42,-50r14,0r35,41r35,-41r14,0","w":60},"\u2014":{"d":"47,-91r0,-14r266,0r0,14r-266,0","w":360},"\u00c6":{"d":"-3,0r134,-257r176,0r0,14r-136,0r0,103r126,0r0,13r-126,0r0,113r137,0r0,14r-153,0r0,-91r-96,0r-48,91r-14,0xm155,-105r0,-138r-17,0r-72,138r89,0","w":313},"\u00aa":{"d":"90,-199v-17,12,-74,1,-74,33v0,14,11,25,29,25v52,0,45,-27,45,-58xm5,-166v-8,-53,93,-18,85,-58v-6,-28,-71,-24,-68,9r-12,0v3,-24,20,-38,48,-38v22,0,44,6,44,31r0,64v-1,9,2,15,12,13v1,6,0,12,-7,10v-18,1,-14,-11,-17,-21v-5,29,-90,38,-85,-10","w":111},"\u0141":{"d":"23,-257r16,0r0,138r84,-52r0,13r-84,51r0,93r145,0r0,14r-161,0r0,-97r-31,19r0,-13r31,-19r0,-147","w":180},"\u00d8":{"d":"215,-210r-156,171v18,20,44,31,75,31v99,0,134,-130,81,-202xm51,-48r156,-171v-18,-19,-43,-30,-73,-30v-100,0,-135,128,-83,201xm12,-6r29,-31v-63,-78,-22,-226,93,-226v34,0,63,12,83,33r25,-27r9,9r-25,27v63,78,22,227,-92,227v-36,0,-65,-12,-85,-33r-27,30","w":266},"\u0152":{"d":"131,-8v31,0,68,-14,75,-38r0,-162v-7,-27,-42,-41,-72,-41v-70,0,-107,56,-107,122v0,65,33,119,104,119xm222,-243r0,103r136,0r0,13r-136,0r0,113r153,0r0,14r-169,0r0,-24v-12,16,-39,30,-76,30v-77,0,-119,-59,-119,-133v0,-74,43,-136,121,-136v27,0,56,10,74,30r0,-24r168,0r0,14r-152,0","w":380},"\u00ba":{"d":"60,-132v-37,0,-57,-26,-57,-60v0,-35,20,-61,57,-61v37,0,57,26,57,61v0,34,-20,60,-57,60xm60,-141v31,0,45,-25,45,-51v0,-27,-14,-51,-45,-51v-31,0,-45,24,-45,51v0,26,14,51,45,51","w":120},"\u00e6":{"d":"160,-103r134,0v2,-40,-25,-74,-66,-74v-45,0,-65,34,-68,74xm146,-104v-23,22,-121,-5,-121,57v0,28,27,39,53,39v46,-2,76,-39,68,-96xm308,-91r-148,0v-3,46,21,83,68,83v35,0,59,-19,64,-54r14,0v-4,80,-137,90,-152,13v-14,31,-40,53,-76,53v-35,0,-66,-15,-66,-51v0,-44,38,-53,67,-55v32,-3,67,3,67,-32v0,-30,-17,-43,-54,-43v-33,0,-56,15,-59,50r-14,0v3,-43,32,-62,73,-62v35,0,60,12,66,47v11,-32,36,-47,70,-47v56,0,85,46,80,98","w":320},"\u0131":{"d":"37,0r-14,0r0,-185r14,0r0,185","w":60},"\u0142":{"d":"23,-120r0,-137r14,0r0,126r23,-18v2,20,-15,20,-23,30r0,119r-14,0r0,-108r-23,18v-2,-20,15,-20,23,-30","w":60},"\u00f8":{"d":"39,-40r108,-114v-11,-14,-29,-23,-51,-23v-66,-2,-88,86,-57,137xm154,-144r-108,114v12,14,29,22,50,22v66,1,90,-84,58,-136xm185,-176r-21,22v38,58,11,158,-68,158v-25,0,-45,-9,-59,-25r-19,21r-9,-8r21,-22v-39,-58,-13,-159,66,-159v26,0,47,9,60,25r20,-21","w":193},"\u0153":{"d":"91,-8v50,0,62,-45,62,-82v0,-45,-15,-87,-62,-87v-92,0,-89,170,0,169xm309,-91r-142,0v-2,43,17,83,65,83v34,0,54,-21,61,-53r14,0v-9,39,-33,65,-75,65v-40,1,-64,-21,-73,-54v-9,35,-31,54,-69,54v-58,0,-78,-45,-78,-94v0,-53,24,-99,79,-99v37,-1,60,22,70,54v9,-36,33,-54,71,-54v56,0,79,47,77,98xm167,-103r128,0v0,-38,-21,-74,-63,-74v-44,0,-66,36,-65,74","w":320},"\u00df":{"d":"75,-136r0,-12v34,0,65,-15,65,-54v0,-31,-24,-47,-54,-47v-36,0,-51,21,-51,56r0,193r-14,0r0,-193v0,-44,21,-68,65,-68v38,0,68,19,68,59v0,31,-15,49,-43,58v37,4,56,30,56,67v0,79,-49,77,-92,77r0,-12v36,0,78,1,78,-65v0,-48,-34,-59,-78,-59","w":180},"\u00f7":{"d":"199,-84r-182,0r0,-14r182,0r0,14xm90,-163v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19xm90,-18v0,-11,8,-19,18,-19v10,0,19,8,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":216},"\u00be":{"d":"12,-149r11,0v-1,27,18,44,47,44v23,0,45,-13,45,-36v0,-26,-27,-34,-54,-32r0,-10v24,1,51,-5,51,-30v0,-21,-23,-30,-42,-30v-28,0,-42,18,-43,42r-11,0v0,-32,20,-52,56,-52v26,0,51,11,51,40v0,17,-12,31,-32,34v22,3,36,18,36,38v0,31,-25,45,-55,45v-40,0,-62,-18,-60,-53xm71,9r168,-266r14,0r-167,266r-15,0xm236,-149r17,0r0,102r26,0r0,10r-26,0r0,37r-11,0r0,-37r-78,0r0,-10xm242,-47r-1,-90r-64,90r65,0","w":300},"\u00bc":{"d":"54,9r168,-266r14,0r-167,266r-15,0xm87,-249r0,150r-11,0r0,-134v-11,12,-25,18,-42,20r0,-10v17,-3,33,-13,43,-26r10,0xm225,-149r17,0r0,102r26,0r0,10r-26,0r0,37r-11,0r0,-37r-78,0r0,-10xm231,-47r-1,-90r-64,90r65,0","w":300},"\u00b9":{"d":"75,-249r0,150r-12,0r0,-134v-11,12,-24,18,-42,20r0,-10v18,-3,34,-13,43,-26r11,0","w":119},"\u00d7":{"d":"28,-21r70,-70r-70,-70r10,-10r70,71r70,-71r10,10r-70,70r70,70r-10,10r-70,-70r-70,70","w":216},"\u00ae":{"d":"95,-49r0,-159v50,0,112,-8,112,44v0,26,-19,38,-41,42r47,73r-15,0r-48,-73r-41,0r0,73r-14,0xm109,-196r0,62v37,-1,84,9,84,-31v0,-40,-46,-30,-84,-31xm144,-251v-69,0,-121,53,-121,122v0,69,53,123,121,123v69,0,121,-55,121,-123v0,-69,-52,-122,-121,-122xm144,-263v75,0,135,60,135,134v0,75,-60,135,-135,135v-75,0,-135,-60,-135,-135v0,-74,60,-134,135,-134","w":288},"\u00de":{"d":"23,0r0,-257r16,0r0,43v83,6,168,-28,168,72v0,45,-30,71,-81,71r-87,0r0,71r-16,0xm39,-200r0,115r90,0v46,0,62,-31,62,-58v0,-19,-8,-57,-60,-57r-92,0","w":213},"\u00a6":{"d":"33,32r0,-90r14,0r0,90r-14,0xm33,-148r0,-90r14,0r0,90r-14,0","w":79},"\u00d0":{"d":"23,-143r0,-114r84,0v92,0,119,63,119,128v0,73,-37,129,-120,129r-83,0r0,-131r-25,0r0,-12r25,0xm39,-143r95,0r0,12r-95,0r0,117v100,3,171,6,171,-115v0,-105,-67,-114,-106,-114r-65,0r0,100","w":240},"\u00bd":{"d":"44,9r167,-266r14,0r-167,266r-14,0xm77,-249r0,150r-12,0r0,-134v-11,12,-25,18,-42,20r0,-10v18,-3,34,-13,43,-26r11,0xm281,-111v-1,48,-84,60,-95,101r96,0r0,10r-108,0v0,-57,92,-62,95,-112v0,-15,-12,-32,-40,-32v-28,0,-39,17,-41,45r-11,0v2,-33,15,-55,52,-55v29,0,52,14,52,43","w":300},"\u2212":{"d":"199,-84r-182,0r0,-14r182,0r0,14","w":216},"\u00e7":{"d":"173,-128r-14,0v-2,-33,-29,-49,-62,-49v-47,0,-71,41,-71,83v0,50,23,86,71,86v34,0,60,-23,64,-57r14,0v-6,42,-35,67,-73,69v-4,6,-13,11,-13,17v17,-8,40,0,40,23v0,33,-53,30,-69,19r4,-9v14,7,52,15,52,-10v0,-21,-25,-20,-37,-12v-13,-7,7,-19,11,-28v-55,-3,-78,-49,-78,-98v0,-52,30,-95,85,-95v40,0,72,19,76,61","w":186},"\u00f0":{"d":"97,-170v-47,0,-72,39,-72,80v0,43,23,82,72,82v49,0,71,-38,71,-82v0,-41,-24,-80,-71,-80xm53,-210r38,-21v-11,-9,-25,-18,-37,-24r10,-8v14,7,28,16,39,25r42,-23r7,8r-39,22v45,37,68,82,68,141v0,52,-28,94,-84,94v-58,0,-85,-41,-85,-94v0,-76,91,-126,144,-66v-10,-25,-31,-49,-56,-68r-40,22","w":193},"\u00b1":{"d":"101,-113r0,-68r14,0r0,68r84,0r0,13r-84,0r0,68r-14,0r0,-68r-84,0r0,-13r84,0xm17,0r0,-14r182,0r0,14r-182,0","w":216},"\u00c7":{"d":"239,-180r-16,0v-7,-44,-45,-69,-88,-69v-67,0,-106,55,-106,120v0,66,39,121,106,121v50,0,89,-44,92,-92r16,0v-6,61,-51,106,-109,106v-4,5,-9,9,-12,15v18,-8,39,0,41,23v3,32,-52,31,-69,19v3,-17,16,-2,32,-2v11,0,23,-4,23,-17v0,-21,-23,-20,-37,-12v-11,-8,7,-18,10,-27v-69,-6,-109,-63,-109,-134v0,-75,45,-134,122,-134v91,0,103,79,104,83","w":253},"\u00fe":{"d":"105,-8v48,0,70,-38,70,-84v0,-42,-20,-85,-70,-85v-49,0,-68,41,-68,85v0,44,16,84,68,84xm23,66r0,-323r14,0r1,114v6,-18,26,-46,67,-46v57,0,83,45,83,97v0,56,-26,96,-83,96v-31,1,-55,-15,-68,-43r0,105r-14,0"},"\u00a9":{"d":"144,-251v-69,0,-121,53,-121,122v0,69,53,123,121,123v69,0,121,-55,121,-123v0,-69,-52,-122,-121,-122xm216,-158r-14,0v-5,-27,-27,-44,-55,-44v-42,0,-67,31,-67,73v0,40,26,74,68,74v29,0,47,-19,54,-46r14,0v-5,35,-33,58,-68,58v-49,0,-81,-37,-81,-86v0,-91,136,-117,149,-29xm144,-263v75,0,135,60,135,134v0,75,-60,135,-135,135v-75,0,-135,-60,-135,-135v0,-74,60,-134,135,-134","w":288},"\u00ac":{"d":"185,-39r0,-80r-168,0r0,-14r182,0r0,94r-14,0","w":216},"\u00b2":{"d":"113,-210v-1,48,-85,61,-96,101r97,0r0,10r-108,0v0,-57,92,-62,95,-112v0,-15,-12,-32,-40,-32v-28,0,-39,17,-41,45r-11,0v2,-33,14,-55,52,-55v29,0,52,14,52,43","w":119},"\u00b3":{"d":"6,-149r12,0v-1,27,17,44,46,44v23,0,46,-13,46,-36v0,-26,-28,-34,-54,-32r0,-10v23,1,50,-5,50,-30v0,-21,-23,-30,-42,-30v-27,0,-41,18,-42,42r-12,0v1,-32,21,-52,56,-52v26,0,52,11,52,40v0,17,-13,31,-32,34v22,3,35,18,35,38v0,31,-25,45,-55,45v-39,0,-61,-18,-60,-53","w":119},"\u2122":{"d":"145,-257r0,12r-51,0r0,136r-12,0r0,-136r-51,0r0,-12r114,0xm195,-257r55,125r55,-125r21,0r0,148r-12,0r-1,-136r-60,136r-6,0r-62,-136r0,136r-11,0r0,-148r21,0","w":356},"\u00b0":{"d":"72,-241v-22,0,-38,18,-38,40v0,21,16,39,38,39v22,0,38,-18,38,-39v0,-22,-16,-40,-38,-40xm72,-150v-29,0,-51,-22,-51,-51v0,-29,22,-52,51,-52v29,0,51,23,51,52v0,29,-22,51,-51,51","w":144},"\u00b5":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-14,46,-84,59,-118,24r0,82r-14,0r0,-251r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0","w":186},"\u00c1":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm86,-275r43,-50r19,0r-49,50r-13,0","w":213},"\u00c2":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm99,-325r15,0r42,50r-14,0r-35,-41r-35,41r-14,0","w":213},"\u00c4":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm86,-276r-16,0r0,-37r16,0r0,37xm143,-276r-16,0r0,-37r16,0r0,37","w":213},"\u00c0":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm127,-275r-13,0r-48,-50r18,0","w":213},"\u00c5":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm69,-298v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,36,-35,36v-20,0,-36,-16,-36,-36xm79,-298v0,14,11,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-26,-26,-26v-15,0,-26,12,-26,26","w":213},"\u00c3":{"d":"99,-257r17,0r102,257r-17,0r-33,-82r-123,0r-32,82r-17,0xm50,-96r113,0r-55,-146xm131,-279v-23,-4,-59,-42,-66,0r-10,0v1,-16,11,-32,27,-32v24,1,60,41,66,0r11,0v-2,16,-9,31,-28,32","w":213},"\u00c9":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113xm80,-275r43,-50r19,0r-48,50r-14,0","w":201},"\u00ca":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113xm94,-325r14,0r42,50r-14,0r-35,-41r-35,41r-14,0","w":201},"\u00cb":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113xm84,-276r-16,0r0,-37r16,0r0,37xm141,-276r-16,0r0,-37r16,0r0,37","w":201},"\u00c8":{"d":"39,-14r158,0r0,14r-174,0r0,-257r172,0r0,14r-156,0r0,103r147,0r0,13r-147,0r0,113xm122,-275r-14,0r-48,-50r18,0","w":201},"\u00cd":{"d":"23,0r0,-257r16,0r0,257r-16,0xm10,-275r43,-50r19,0r-49,50r-13,0","w":61},"\u00ce":{"d":"23,0r0,-257r16,0r0,257r-16,0xm23,-325r15,0r42,50r-14,0r-35,-41r-35,41r-14,0","w":61},"\u00cf":{"d":"23,0r0,-257r16,0r0,257r-16,0xm10,-276r-16,0r0,-37r16,0r0,37xm67,-276r-16,0r0,-37r16,0r0,37","w":61},"\u00cc":{"d":"23,0r0,-257r16,0r0,257r-16,0xm51,-275r-13,0r-48,-50r18,0","w":61},"\u00d1":{"d":"23,0r0,-257r19,0r164,236r0,-236r15,0r0,257r-18,0r-164,-238r0,238r-16,0xm147,-279v-23,0,-60,-42,-66,0r-11,0v2,-16,11,-32,28,-32v22,0,60,41,66,0r10,0v-2,17,-9,32,-27,32","w":244},"\u00d3":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120xm113,-275r43,-50r18,0r-48,50r-13,0","w":266},"\u00d4":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120xm126,-325r14,0r42,50r-14,0r-35,-41r-35,41r-13,0","w":266},"\u00d6":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120xm113,-276r-16,0r0,-37r16,0r0,37xm170,-276r-16,0r0,-37r16,0r0,37","w":266},"\u00d2":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120xm154,-275r-13,0r-48,-50r18,0","w":266},"\u00d5":{"d":"256,-129v0,76,-46,135,-122,135v-77,0,-123,-59,-123,-135v0,-75,46,-134,123,-134v76,0,122,59,122,134xm27,-129v0,66,39,121,107,121v67,0,106,-55,106,-121v0,-65,-39,-120,-106,-120v-68,0,-107,55,-107,120xm158,-279v-23,0,-60,-42,-66,0r-11,0v2,-16,11,-32,28,-32v23,0,60,41,66,0r10,0v-2,17,-9,32,-27,32","w":266},"\u0160":{"d":"197,-66v0,-88,-175,-31,-175,-129v0,-49,45,-68,86,-68v54,0,96,23,98,79r-16,0v-1,-44,-34,-65,-82,-65v-29,0,-71,12,-71,54v0,85,176,29,176,129v0,53,-51,72,-91,72v-60,0,-109,-25,-108,-91r16,0v-3,56,42,77,92,77v31,0,75,-14,75,-58xm118,-275r-14,0r-41,-50r13,0r35,41r36,-41r13,0","w":226},"\u00da":{"d":"23,-257r16,0r0,154v0,31,6,95,80,95v120,0,76,-144,84,-249r16,0v-7,119,36,264,-100,263v-91,0,-96,-75,-96,-109r0,-154xm100,-275r44,-50r18,0r-48,50r-14,0","w":241},"\u00db":{"d":"23,-257r16,0r0,154v0,31,6,95,80,95v120,0,76,-144,84,-249r16,0v-7,119,36,264,-100,263v-91,0,-96,-75,-96,-109r0,-154xm114,-325r14,0r42,50r-14,0r-35,-41r-35,41r-14,0","w":241},"\u00dc":{"d":"23,-257r16,0r0,154v0,31,6,95,80,95v120,0,76,-144,84,-249r16,0v-7,119,36,264,-100,263v-91,0,-96,-75,-96,-109r0,-154xm100,-276r-15,0r0,-37r15,0r0,37xm157,-276r-16,0r0,-37r16,0r0,37","w":241},"\u00d9":{"d":"23,-257r16,0r0,154v0,31,6,95,80,95v120,0,76,-144,84,-249r16,0v-7,119,36,264,-100,263v-91,0,-96,-75,-96,-109r0,-154xm142,-275r-13,0r-49,-50r19,0","w":241},"\u00dd":{"d":"103,-121r94,-136r17,0r-103,149r0,108r-16,0r0,-108r-103,-149r18,0xm83,-275r43,-50r18,0r-48,50r-13,0","w":206},"\u0178":{"d":"103,-121r94,-136r17,0r-103,149r0,108r-16,0r0,-108r-103,-149r18,0xm83,-276r-16,0r0,-37r16,0r0,37xm140,-276r-16,0r0,-37r16,0r0,37","w":206},"\u017d":{"d":"10,-243r0,-14r180,0r0,14r-174,229r178,0r0,14r-194,0r0,-14r173,-229r-163,0xm102,-275r-15,0r-41,-50r13,0r35,41r36,-41r13,0","w":193},"\u00e1":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm69,-213r44,-50r18,0r-48,50r-14,0","w":180},"\u00e2":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm83,-263r14,0r42,50r-14,0r-35,-41r-35,41r-14,0","w":180},"\u00e4":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm69,-214r-15,0r0,-37r15,0r0,37xm126,-214r-15,0r0,-37r15,0r0,37","w":180},"\u00e0":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm111,-213r-13,0r-49,-50r19,0","w":180},"\u00e5":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm54,-230v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,19,-16,35,-36,35v-20,0,-36,-16,-36,-35xm64,-230v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-15,-12,-26,-26,-26v-14,0,-26,11,-26,26","w":180},"\u00e3":{"d":"143,-105v-26,22,-118,0,-118,57v0,22,16,40,49,40v62,0,69,-53,69,-63r0,-34xm157,-141r0,107v-2,16,5,26,22,21r0,12v-29,6,-38,-11,-37,-36v-10,47,-130,65,-130,-11v0,-43,37,-52,68,-55v61,-4,63,-8,63,-38v0,-8,-9,-36,-51,-36v-33,0,-55,17,-57,49r-14,0v2,-41,27,-61,71,-61v32,0,65,10,65,48xm115,-217v-22,-2,-60,-41,-66,0r-11,0v2,-16,11,-32,28,-32v21,0,61,41,66,0r10,0v-2,16,-9,33,-27,32","w":180},"\u00e9":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-82,-42,-82,-93v0,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74xm73,-213r43,-50r18,0r-48,50r-13,0","w":186},"\u00ea":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-82,-42,-82,-93v0,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74xm86,-263r14,0r42,50r-13,0r-36,-41r-35,41r-13,0","w":186},"\u00eb":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-82,-42,-82,-93v0,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74xm73,-214r-16,0r0,-37r16,0r0,37xm130,-214r-16,0r0,-37r16,0r0,37","w":186},"\u00e8":{"d":"175,-91r-149,0v-1,44,22,83,68,83v35,0,59,-20,66,-55r14,0v-8,44,-36,67,-80,67v-54,0,-82,-42,-82,-93v0,-51,26,-100,82,-100v58,0,83,45,81,98xm26,-103r135,0v0,-38,-25,-74,-67,-74v-41,0,-66,38,-68,74xm114,-213r-13,0r-48,-50r18,0","w":186},"\u00ed":{"d":"37,0r-14,0r0,-185r14,0r0,185xm10,-213r43,-50r18,0r-48,50r-13,0","w":60},"\u00ee":{"d":"37,0r-14,0r0,-185r14,0r0,185xm23,-263r14,0r42,50r-13,0r-36,-41r-35,41r-13,0","w":60},"\u00ef":{"d":"37,0r-14,0r0,-185r14,0r0,185xm10,-214r-16,0r0,-37r16,0r0,37xm67,-214r-16,0r0,-37r16,0r0,37","w":60},"\u00ec":{"d":"37,0r-14,0r0,-185r14,0r0,185xm51,-213r-13,0r-48,-50r18,0","w":60},"\u00f1":{"d":"20,0r0,-185r14,0v1,13,-2,29,1,40v9,-28,37,-44,66,-44v65,0,66,52,66,75r0,114r-14,0r0,-117v0,-19,-2,-60,-53,-60v-41,0,-66,32,-66,77r0,100r-14,0xm118,-217v-22,-2,-60,-41,-66,0r-11,0v2,-16,11,-32,28,-32v22,0,60,41,66,0r10,0v-2,16,-9,33,-27,32","w":186},"\u00f3":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84xm76,-213r43,-50r19,0r-49,50r-13,0","w":193},"\u00f4":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84xm89,-263r15,0r41,50r-13,0r-36,-41r-34,41r-14,0","w":193},"\u00f6":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84xm76,-214r-16,0r0,-37r16,0r0,37xm133,-214r-16,0r0,-37r16,0r0,37","w":193},"\u00f2":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84xm117,-213r-13,0r-48,-50r18,0","w":193},"\u00f5":{"d":"12,-93v0,-52,30,-96,84,-96v55,0,85,44,85,96v0,53,-30,97,-85,97v-54,0,-84,-44,-84,-97xm25,-93v0,45,25,85,71,85v47,0,72,-40,72,-85v0,-44,-25,-84,-72,-84v-46,0,-71,40,-71,84xm121,-217v-22,-1,-59,-41,-66,0r-10,0v1,-16,10,-32,27,-32v22,0,60,41,66,0r11,0v-3,16,-9,33,-28,32","w":193},"\u0161":{"d":"33,-142v0,62,127,20,127,95v0,40,-40,51,-72,51v-42,0,-74,-22,-75,-66r14,0v2,35,27,54,61,54v24,0,59,-7,59,-39v0,-64,-128,-21,-128,-95v0,-37,36,-47,67,-47v40,0,69,17,69,59r-14,0v0,-34,-24,-47,-55,-47v-25,0,-53,9,-53,35xm91,-213r-14,0r-41,-50r13,0r35,41r36,-41r13,0","w":173},"\u00fa":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-9,28,-37,44,-66,44v-65,0,-66,-52,-66,-75r0,-114r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0xm73,-213r43,-50r18,0r-48,50r-13,0","w":186},"\u00fb":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-9,28,-37,44,-66,44v-65,0,-66,-52,-66,-75r0,-114r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0xm86,-263r14,0r42,50r-13,0r-36,-41r-35,41r-13,0","w":186},"\u00fc":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-9,28,-37,44,-66,44v-65,0,-66,-52,-66,-75r0,-114r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0xm73,-214r-16,0r0,-37r16,0r0,37xm130,-214r-16,0r0,-37r16,0r0,37","w":186},"\u00f9":{"d":"167,-185r0,185r-14,0v-1,-13,2,-29,-1,-40v-9,28,-37,44,-66,44v-65,0,-66,-52,-66,-75r0,-114r14,0r0,117v0,19,2,60,52,60v42,0,67,-32,67,-77r0,-100r14,0xm114,-213r-13,0r-48,-50r18,0","w":186},"\u00fd":{"d":"75,-1r-77,-184r16,0r69,169r63,-169r16,0r-80,205v-13,35,-18,48,-64,46r0,-12v43,-2,42,-13,57,-55xm59,-213r44,-50r18,0r-48,50r-14,0","w":159},"\u00ff":{"d":"75,-1r-77,-184r16,0r69,169r63,-169r16,0r-80,205v-13,35,-18,48,-64,46r0,-12v43,-2,42,-13,57,-55xm59,-214r-15,0r0,-37r15,0r0,37xm116,-214r-16,0r0,-37r16,0r0,37","w":159},"\u017e":{"d":"20,-12r130,0r0,12r-147,0r0,-13r124,-160r-114,0r0,-12r131,0r0,13xm82,-213r-15,0r-41,-50r14,0r35,41r35,-41r13,0","w":153},"\u00a0":{"w":100}}});

Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica Neuemedium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-10 -291 338 77","underline-thickness":"18","underline-position":"-27","stemh":"32","stemv":"41","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"40,-72v-7,-59,-15,-117,-12,-185r45,0v2,68,-5,126,-12,185r-21,0xm26,0r0,-45r48,0r0,45r-48,0","w":100},"\"":{"d":"30,-156r0,-101r37,0r0,101r-37,0xm93,-156r0,-101r37,0r0,101r-37,0","w":159},"#":{"d":"178,-103r0,27r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r0,-27r38,0r7,-46r-34,0r0,-27r37,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r31,0r0,27r-35,0r-6,46r30,0xm125,-149r-40,0r-6,46r40,0"},"$":{"d":"109,-110r0,84v26,-2,44,-14,44,-43v0,-27,-22,-35,-44,-41xm6,-78r41,0v0,32,13,51,46,52r0,-87v-39,-11,-81,-27,-81,-80v0,-45,38,-70,81,-70r0,-28r16,0r0,28v43,0,79,23,79,70r-41,0v-2,-24,-13,-38,-38,-38r0,76v43,12,85,28,85,80v0,54,-37,79,-85,81r0,28r-16,0r0,-28v-52,-1,-88,-30,-87,-84xm93,-159r0,-72v-26,0,-40,10,-40,36v0,23,20,31,40,36"},"%":{"d":"94,9r140,-270r27,0r-139,270r-28,0xm270,5v-43,0,-60,-32,-60,-72v0,-38,18,-71,60,-71v42,0,60,33,60,71v0,40,-16,72,-60,72xm243,-67v0,27,7,49,27,49v20,0,28,-22,28,-49v0,-24,-6,-48,-28,-48v-22,0,-27,24,-27,48xm90,-114v-44,0,-60,-32,-60,-71v0,-39,18,-72,60,-72v42,0,60,33,60,72v0,39,-17,71,-60,71xm62,-185v0,27,7,48,27,48v20,0,28,-21,28,-48v0,-25,-5,-49,-28,-49v-22,0,-27,24,-27,49","w":360},"&":{"d":"109,-233v-15,0,-28,12,-28,29v0,17,14,30,24,43v15,-11,30,-22,30,-42v0,-17,-10,-30,-26,-30xm143,-56r-51,-63v-15,10,-39,18,-39,48v0,28,17,44,41,44v30,0,41,-19,49,-29xm188,0r-23,-29v-42,59,-153,40,-153,-42v0,-37,29,-60,59,-75v-44,-36,-28,-117,37,-117v33,0,64,20,64,61v0,31,-22,52,-47,66r40,48v3,-8,6,-18,8,-35r36,0v-2,23,-8,45,-20,63r49,60r-50,0","w":233},"(":{"d":"103,69r-34,0v-63,-88,-69,-237,0,-332r34,0v-58,99,-59,233,0,332","w":100},")":{"d":"-3,-263r34,0v63,88,69,237,0,332r-34,0v58,-99,59,-233,0,-332","w":100},"*":{"d":"47,-192r-40,-14r8,-23r39,15r0,-43r25,0r0,43r39,-15r9,23r-41,14r25,34r-19,14r-26,-36r-24,36r-20,-14","w":133},"+":{"d":"90,-109r0,-73r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0","w":216},",":{"d":"25,0r0,-49r50,0v4,55,-2,98,-49,106r0,-22v16,-4,24,-20,24,-35r-25,0","w":100},"-":{"d":"18,-78r0,-39r104,0r0,39r-104,0","w":140},".":{"d":"25,0r0,-49r50,0r0,49r-50,0","w":100},"\/":{"d":"-8,6r103,-269r40,0r-104,269r-39,0","w":126},"0":{"d":"100,-29v36,0,46,-44,46,-97v0,-53,-10,-97,-46,-97v-36,0,-46,44,-46,97v0,53,10,97,46,97xm100,-257v72,0,87,74,87,131v0,57,-15,131,-87,131v-72,0,-87,-74,-87,-131v0,-57,15,-131,87,-131"},"1":{"d":"19,-178r0,-32v35,0,67,-12,74,-42r33,0r0,252r-45,0r0,-178r-62,0"},"2":{"d":"186,-180v0,75,-102,96,-123,143r123,0r0,37r-172,0v0,-41,22,-72,55,-95v33,-23,76,-44,76,-83v1,-18,-7,-45,-42,-45v-32,0,-42,28,-43,63r-41,0v0,-56,30,-97,86,-97v62,0,81,45,81,77"},"3":{"d":"82,-117r0,-31v27,1,56,-8,56,-39v0,-21,-17,-36,-39,-36v-29,0,-43,26,-42,52r-41,0v2,-49,33,-86,83,-86v40,0,80,23,80,67v1,26,-14,45,-36,55v29,6,46,31,46,63v0,48,-41,77,-89,77v-59,0,-88,-35,-89,-88r41,0v-1,31,16,54,48,54v27,0,48,-16,48,-45v0,-39,-34,-44,-66,-43"},"4":{"d":"188,-92r0,32r-32,0r0,60r-39,0r0,-60r-108,0r0,-40r108,-152r39,0r0,160r32,0xm117,-203v-28,35,-51,75,-77,111r77,0r0,-111"},"5":{"d":"17,-114r27,-138r131,0r0,37r-100,0v-3,21,-12,45,-12,65v46,-47,125,-4,125,65v0,40,-25,90,-87,90v-49,0,-87,-26,-88,-77r41,0v2,27,19,43,46,43v35,0,47,-25,47,-56v0,-48,-68,-74,-89,-29r-41,0"},"6":{"d":"103,-29v29,0,44,-26,44,-53v0,-27,-15,-51,-44,-51v-30,0,-46,24,-46,51v0,28,16,53,46,53xm183,-188r-41,0v-2,-21,-15,-35,-37,-35v-43,-1,-51,55,-51,87v37,-62,134,-19,134,55v0,49,-34,86,-84,86v-74,0,-92,-58,-92,-132v0,-60,24,-130,95,-130v40,0,74,28,76,69"},"7":{"d":"13,-215r0,-37r172,0r0,34v-53,60,-87,127,-94,218r-45,0v5,-80,45,-157,97,-215r-130,0"},"8":{"d":"100,-27v27,0,48,-18,48,-47v0,-28,-21,-44,-48,-44v-27,0,-48,16,-48,44v0,29,21,47,48,47xm100,5v-51,0,-89,-30,-89,-79v0,-32,18,-55,46,-62v-62,-26,-36,-130,43,-121v79,-9,108,94,43,121v82,25,44,141,-43,141xm100,-225v-22,0,-40,14,-40,39v0,24,17,37,40,37v23,0,40,-13,40,-37v0,-25,-18,-39,-40,-39"},"9":{"d":"97,-223v-30,0,-44,24,-44,52v0,27,14,53,44,53v31,0,46,-26,46,-53v0,-27,-15,-52,-46,-52xm17,-64r41,0v2,21,15,35,37,35v43,1,51,-55,51,-87v-37,60,-134,23,-134,-55v0,-49,32,-86,87,-86v71,0,89,58,89,132v0,60,-24,130,-95,130v-40,0,-74,-28,-76,-69"},":":{"d":"25,-134r0,-48r50,0r0,48r-50,0xm25,0r0,-49r50,0r0,49r-50,0","w":100},";":{"d":"25,0r0,-49r50,0v4,55,-2,98,-49,106r0,-22v16,-4,24,-20,24,-35r-25,0xm25,-134r0,-48r50,0r0,48r-50,0","w":100},"<":{"d":"199,-34r0,37r-182,-81r0,-26r182,-81r0,37r-134,57","w":216},"=":{"d":"199,-146r0,37r-182,0r0,-37r182,0xm199,-73r0,37r-182,0r0,-37r182,0","w":216},">":{"d":"17,-34r134,-57r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},"?":{"d":"183,-190v0,66,-67,54,-64,120r-39,0v0,-42,9,-56,28,-73v16,-13,30,-22,30,-46v0,-29,-23,-40,-36,-40v-29,0,-43,21,-43,54r-41,0v-1,-53,33,-88,86,-88v44,0,79,26,79,73xm75,0r0,-45r48,0r0,45r-48,0"},"@":{"d":"130,-78v28,0,49,-38,49,-64v0,-17,-13,-32,-28,-32v-30,0,-50,36,-50,63v0,20,11,33,29,33xm221,-195r-26,95v-3,11,-6,24,4,24v22,0,47,-33,47,-77v0,-54,-44,-87,-96,-87v-61,0,-104,48,-104,108v0,109,126,150,188,79r25,0v-62,106,-241,57,-241,-80v0,-73,60,-130,132,-130v64,0,120,43,120,105v0,73,-55,108,-85,108v-12,0,-19,-9,-22,-21v-27,38,-92,16,-92,-36v0,-64,79,-133,119,-68r6,-20r25,0","w":288},"A":{"d":"120,-213v-16,35,-26,75,-40,111r79,0xm-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0","w":240},"B":{"d":"72,-117r0,80v51,-3,123,15,123,-40v0,-55,-72,-37,-123,-40xm27,0r0,-257v83,4,202,-23,202,64v0,27,-16,43,-37,55v31,7,48,31,48,66v0,41,-28,72,-95,72r-118,0xm72,-220r0,71v47,-3,111,14,112,-36v1,-53,-67,-30,-112,-35","w":253},"C":{"d":"246,-175r-45,0v-8,-30,-27,-51,-64,-51v-55,0,-78,48,-78,97v0,50,23,98,78,98v40,0,62,-29,65,-67r44,0v-3,62,-47,104,-109,104v-77,0,-123,-61,-123,-135v0,-73,46,-134,123,-134v58,0,103,32,109,88","w":259},"D":{"d":"72,-220r0,183r45,0v70,0,85,-40,85,-92v0,-51,-15,-91,-85,-91r-45,0xm27,0r0,-257r107,0v79,0,113,58,113,128v0,71,-34,129,-113,129r-107,0","w":259},"E":{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0","w":226},"F":{"d":"27,0r0,-257r178,0r0,39r-133,0r0,67r117,0r0,37r-117,0r0,114r-45,0","w":213},"G":{"d":"252,-135r0,135r-29,0r-7,-30v-73,85,-201,8,-201,-99v0,-73,47,-134,124,-134v56,0,103,30,110,88r-44,0v-4,-34,-34,-51,-66,-51v-55,0,-79,48,-79,97v0,50,24,98,79,98v46,0,71,-27,72,-70r-69,0r0,-34r110,0","w":273},"H":{"d":"26,0r0,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0","w":259},"I":{"d":"27,0r0,-257r45,0r0,257r-45,0","w":100},"J":{"d":"166,-257r0,174v0,45,-11,89,-85,89v-59,0,-79,-40,-76,-96r45,0v-1,33,3,59,35,59v29,0,36,-17,36,-49r0,-177r45,0","w":193},"K":{"d":"27,0r0,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0","w":246},"L":{"d":"27,0r0,-257r45,0r0,218r131,0r0,39r-176,0","w":206},"M":{"d":"27,0r0,-257r63,0r72,201r69,-201r62,0r0,257r-42,0r-1,-198r-71,198r-38,0r-72,-198r0,198r-42,0","w":320},"N":{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0","w":259},"O":{"d":"137,-263v77,0,123,61,123,134v0,74,-46,135,-123,135v-77,0,-123,-61,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,50,23,98,78,98v55,0,78,-48,78,-98v0,-49,-23,-97,-78,-97","w":273},"P":{"d":"72,-220r0,85v52,-3,111,16,111,-43v0,-60,-61,-38,-111,-42xm27,0r0,-257r114,0v73,0,87,47,87,80v0,31,-14,79,-87,78r-69,0r0,99r-45,0","w":240},"Q":{"d":"166,-37r-26,-22r21,-25r32,27v42,-55,27,-169,-56,-169v-55,0,-78,48,-78,97v0,60,42,117,107,92xm224,-30r33,29r-22,24r-38,-32v-91,47,-183,-23,-183,-120v0,-73,46,-134,123,-134v119,0,159,156,87,233","w":273},"R":{"d":"72,-220r0,80v50,-2,120,14,118,-41v-2,-60,-68,-33,-118,-39xm27,0r0,-257r123,0v56,0,85,26,85,69v0,52,-35,60,-42,66v15,2,38,14,38,54v0,30,4,58,14,68r-48,0v-15,-44,4,-106,-58,-106r-67,0r0,106r-45,0","w":253},"S":{"d":"12,-86r45,0v0,40,29,55,65,55v62,0,67,-55,33,-70v-18,-7,-41,-12,-77,-21v-43,-12,-56,-39,-56,-66v0,-51,47,-75,94,-75v53,0,98,28,98,82r-45,0v-2,-33,-24,-45,-55,-45v-21,0,-47,7,-47,33v0,44,65,38,104,53v33,12,50,39,50,65v0,58,-51,81,-102,81v-59,0,-106,-28,-107,-92","w":233},"T":{"d":"3,-218r0,-39r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0","w":213},"U":{"d":"24,-93r0,-164r45,0r0,150v0,34,3,74,61,74v58,0,60,-40,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99","w":259},"V":{"d":"84,0r-86,-257r47,0r65,203r66,-203r46,0r-88,257r-50,0","w":219},"W":{"d":"70,0r-68,-257r46,0r47,197r52,-197r46,0r51,197r48,-197r46,0r-71,257r-46,0r-52,-197r-53,197r-46,0","w":339},"X":{"d":"90,-133r-85,-124r54,0r58,91r61,-91r50,0r-85,124r91,133r-54,0r-64,-98r-66,98r-51,0","w":233},"Y":{"d":"94,0r0,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0","w":233},"Z":{"d":"20,-218r0,-39r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0","w":226},"[":{"d":"26,69r0,-332r80,0r0,32r-41,0r0,267r41,0r0,33r-80,0","w":106},"\\":{"d":"31,-263r104,269r-40,0r-103,-269r39,0","w":126},"]":{"d":"81,-263r0,332r-81,0r0,-33r42,0r0,-267r-42,0r0,-32r81,0","w":106},"^":{"d":"67,-121r-37,0r65,-131r26,0r65,131r-37,0r-41,-89","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"136,-93v-25,16,-84,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v0,15,8,15,20,13r0,28v-22,8,-54,9,-57,-18v-38,36,-128,33,-128,-31v0,-47,37,-53,71,-58v30,-5,56,-2,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54"},"b":{"d":"166,-93v0,-34,-18,-66,-52,-66v-34,0,-52,27,-52,66v0,38,19,66,52,66v38,0,52,-33,52,-66xm23,0r0,-257r41,0r0,95v12,-18,35,-29,56,-29v59,0,87,44,87,99v0,50,-25,97,-80,97v-25,0,-52,-6,-65,-31r0,26r-39,0","w":219},"c":{"d":"188,-124r-41,0v-3,-23,-20,-35,-42,-35v-21,0,-51,11,-51,68v0,31,13,64,49,64v24,0,40,-16,44,-43r41,0v-7,48,-37,75,-85,75v-58,0,-90,-41,-90,-96v0,-56,30,-100,91,-100v44,0,80,21,84,67"},"d":{"d":"106,-159v-71,0,-70,132,-1,132v37,0,52,-34,52,-66v0,-41,-19,-66,-51,-66xm197,-257r0,257r-39,0v-1,-8,2,-19,-1,-25v-10,21,-34,30,-57,30v-59,0,-87,-44,-87,-99v0,-68,40,-97,80,-97v25,-1,49,10,63,29r0,-95r41,0","w":219},"e":{"d":"190,-82r-136,0v0,29,15,55,50,55v23,0,38,-11,45,-31r39,0v-9,40,-44,63,-84,63v-59,0,-91,-41,-91,-98v0,-53,34,-98,90,-98v58,0,94,53,87,109xm54,-109r95,0v-1,-26,-19,-50,-46,-50v-29,0,-48,22,-49,50"},"f":{"d":"3,-156r0,-30r31,0v-5,-64,29,-80,80,-69r0,33v-15,-5,-40,-7,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0","w":113},"g":{"d":"103,-32v68,-1,68,-127,0,-127v-68,1,-66,127,0,127xm194,-186r0,176v0,56,-33,84,-92,84v-37,0,-79,-15,-83,-58r41,0v5,23,24,27,45,27v44,0,53,-34,47,-76v-12,21,-33,33,-56,33v-59,0,-83,-45,-83,-98v0,-77,96,-128,140,-63r0,-25r41,0","w":213},"h":{"d":"22,0r0,-257r41,0r0,95v26,-47,122,-37,122,34r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-66,2,-40,96,-45,159r-41,0","w":206},"i":{"d":"23,0r0,-186r41,0r0,186r-41,0xm23,-218r0,-39r41,0r0,39r-41,0","w":86},"j":{"d":"23,14r0,-200r41,0r0,202v3,44,-28,65,-72,56r0,-32v21,4,31,-1,31,-26xm23,-218r0,-39r41,0r0,39r-41,0","w":86},"k":{"d":"23,0r0,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0","w":193},"l":{"d":"23,0r0,-257r41,0r0,257r-41,0","w":86},"m":{"d":"22,0r0,-186r38,0v1,8,-3,22,2,26v16,-38,92,-44,109,0v27,-46,121,-45,121,31r0,129r-41,0r0,-109v0,-29,-2,-50,-34,-50v-63,1,-34,101,-40,159r-41,0r0,-120v0,-25,-8,-39,-33,-39v-57,1,-37,101,-40,159r-41,0","w":313},"n":{"d":"22,0r0,-186r38,0v1,9,-2,21,1,28v27,-52,124,-42,124,30r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-66,2,-40,96,-45,159r-41,0","w":206},"o":{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98","w":213},"p":{"d":"166,-93v0,-34,-18,-66,-52,-66v-34,0,-52,27,-52,66v0,38,19,66,52,66v38,0,52,-33,52,-66xm23,69r0,-255r39,0r0,25v12,-21,34,-30,58,-30v59,0,87,44,87,99v0,50,-25,97,-80,97v-24,0,-50,-9,-63,-29r0,93r-41,0","w":219},"q":{"d":"54,-93v0,33,14,66,51,66v36,0,52,-27,52,-66v0,-40,-18,-66,-52,-66v-34,0,-51,32,-51,66xm197,-186r0,255r-41,0r-1,-93v-13,20,-38,29,-62,29v-55,0,-80,-47,-80,-97v0,-55,28,-99,87,-99v24,-1,45,11,58,30r0,-25r39,0","w":219},"r":{"d":"22,0r0,-186r38,0v1,11,-2,27,1,36v6,-24,36,-47,70,-40r0,40v-41,-9,-68,13,-68,61r0,89r-41,0","w":126},"s":{"d":"12,-60r41,0v2,24,20,33,42,33v15,0,42,-4,41,-25v-12,-45,-128,-15,-121,-86v8,-76,151,-71,156,4r-43,0v-3,-19,-20,-25,-38,-25v-12,0,-33,3,-33,19v0,20,30,23,60,30v30,7,60,18,60,55v0,44,-45,60,-83,60v-47,0,-82,-21,-82,-65","w":186},"t":{"d":"3,-156r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,100v-4,25,14,27,37,24r0,32v-44,7,-78,-3,-78,-46r0,-110r-31,0","w":119},"u":{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0","w":206},"v":{"d":"71,0r-68,-186r45,0r48,143r45,-143r43,0r-67,186r-46,0","w":186},"w":{"d":"62,0r-57,-186r43,0r37,139r35,-139r42,0r34,139r38,-139r41,0r-58,186r-42,0r-35,-138r-35,138r-43,0","w":280},"x":{"d":"1,0r71,-98r-65,-88r50,0r39,57r40,-57r48,0r-63,86r71,100r-49,0r-48,-69r-45,69r-49,0","w":193},"y":{"d":"72,-1r-71,-185r45,0r49,139r48,-139r42,0r-72,196v-12,44,-37,74,-94,62r0,-35v33,12,49,-11,53,-38","w":186},"z":{"d":"15,-154r0,-32r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0","w":180},"{":{"d":"-1,-81r0,-32v10,0,33,-6,33,-27r0,-74v7,-48,36,-52,79,-49r0,32v-24,-4,-44,6,-40,25r0,71v0,30,-28,34,-37,38v11,1,37,5,37,40v0,40,-23,102,40,93r0,33v-44,3,-79,-1,-79,-50r0,-71v0,-23,-23,-29,-33,-29","w":106},"|":{"d":"22,77r0,-360r36,0r0,360r-36,0","w":79},"}":{"d":"108,-113r0,32v-10,0,-34,5,-34,26r0,74v-6,48,-35,53,-79,50r0,-33v24,4,44,-5,40,-25r0,-70v1,-30,28,-34,38,-39v-12,-1,-35,-5,-38,-40v-4,-40,23,-101,-40,-93r0,-32v44,-2,79,0,79,49r0,71v0,24,24,30,34,30","w":106},"~":{"d":"70,-122v23,0,56,24,77,25v14,0,23,-14,31,-25r13,31v-11,15,-23,31,-45,31v-35,0,-89,-51,-108,0r-13,-31v8,-15,21,-31,45,-31","w":216},"'":{"d":"32,-156r0,-101r36,0r0,101r-36,0","w":100},"`":{"d":"-10,-263r48,0r33,51r-30,0","w":86},"\u00a0":{"w":100}}});
