/*
---

name: Core

description: The core of MooTools, contains all the base functions and the Native and Hash implementations. Required by all the other scripts.

license: MIT-style license.

copyright: Copyright (c) 2006-2008 [Valerio Proietti](http://mad4milk.net/).

authors: The MooTools production team (http://mootools.net/developers/)

inspiration:
  - Class implementation inspired by [Base.js](http://dean.edwards.name/weblog/2006/03/base/) Copyright (c) 2006 Dean Edwards, [GNU Lesser General Public License](http://opensource.org/licenses/lgpl-license.php)
  - Some functionality inspired by [Prototype.js](http://prototypejs.org) Copyright (c) 2005-2007 Sam Stephenson, [MIT License](http://opensource.org/licenses/mit-license.php)

provides: [MooTools, Native, Hash.base, Array.each, $util]

...
*/

var MooTools = {
	'version': '1.2.5',
	'build': '008d8f0f2fcc2044e54fdd3635341aaab274e757'
};

var Native = function(options){
	options = options || {};
	var name = options.name;
	var legacy = options.legacy;
	var protect = options.protect;
	var methods = options.implement;
	var generics = options.generics;
	var initialize = options.initialize;
	var afterImplement = options.afterImplement || function(){};
	var object = initialize || legacy;
	generics = generics !== false;

	object.constructor = Native;
	object.$family = {name: 'native'};
	if (legacy && initialize) object.prototype = legacy.prototype;
	object.prototype.constructor = object;

	if (name){
		var family = name.toLowerCase();
		object.prototype.$family = {name: family};
		Native.typize(object, family);
	}

	var add = function(obj, name, method, force){
		if (!protect || force || !obj.prototype[name]) obj.prototype[name] = method;
		if (generics) Native.genericize(obj, name, protect);
		afterImplement.call(obj, name, method);
		return obj;
	};

	object.alias = function(a1, a2, a3){
		if (typeof a1 == 'string'){
			var pa1 = this.prototype[a1];
			if ((a1 = pa1)) return add(this, a2, a1, a3);
		}
		for (var a in a1) this.alias(a, a1[a], a2);
		return this;
	};

	object.implement = function(a1, a2, a3){
		if (typeof a1 == 'string') return add(this, a1, a2, a3);
		for (var p in a1) add(this, p, a1[p], a2);
		return this;
	};

	if (methods) object.implement(methods);

	return object;
};

Native.genericize = function(object, property, check){
	if ((!check || !object[property]) && typeof object.prototype[property] == 'function') object[property] = function(){
		var args = Array.prototype.slice.call(arguments);
		return object.prototype[property].apply(args.shift(), args);
	};
};

Native.implement = function(objects, properties){
	for (var i = 0, l = objects.length; i < l; i++) objects[i].implement(properties);
};

Native.typize = function(object, family){
	if (!object.type) object.type = function(item){
		return ($type(item) === family);
	};
};

(function(){
	var natives = {'Array': Array, 'Date': Date, 'Function': Function, 'Number': Number, 'RegExp': RegExp, 'String': String};
	for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});

	var types = {'boolean': Boolean, 'native': Native, 'object': Object};
	for (var t in types) Native.typize(types[t], t);

	var generics = {
		'Array': ["concat", "indexOf", "join", "lastIndexOf", "pop", "push", "reverse", "shift", "slice", "sort", "splice", "toString", "unshift", "valueOf"],
		'String': ["charAt", "charCodeAt", "concat", "indexOf", "lastIndexOf", "match", "replace", "search", "slice", "split", "substr", "substring", "toLowerCase", "toUpperCase", "valueOf"]
	};
	for (var g in generics){
		for (var i = generics[g].length; i--;) Native.genericize(natives[g], generics[g][i], true);
	}
})();

var Hash = new Native({

	name: 'Hash',

	initialize: function(object){
		if ($type(object) == 'hash') object = $unlink(object.getClean());
		for (var key in object) this[key] = object[key];
		return this;
	}

});

Hash.implement({

	forEach: function(fn, bind){
		for (var key in this){
			if (this.hasOwnProperty(key)) fn.call(bind, this[key], key, this);
		}
	},

	getClean: function(){
		var clean = {};
		for (var key in this){
			if (this.hasOwnProperty(key)) clean[key] = this[key];
		}
		return clean;
	},

	getLength: function(){
		var length = 0;
		for (var key in this){
			if (this.hasOwnProperty(key)) length++;
		}
		return length;
	}

});

Hash.alias('forEach', 'each');

Array.implement({

	forEach: function(fn, bind){
		for (var i = 0, l = this.length; i < l; i++) fn.call(bind, this[i], i, this);
	}

});

Array.alias('forEach', 'each');

function $A(iterable){
	if (iterable.item){
		var l = iterable.length, array = new Array(l);
		while (l--) array[l] = iterable[l];
		return array;
	}
	return Array.prototype.slice.call(iterable);
};

function $arguments(i){
	return function(){
		return arguments[i];
	};
};

function $chk(obj){
	return !!(obj || obj === 0);
};

function $clear(timer){
	clearTimeout(timer);
	clearInterval(timer);
	return null;
};

function $defined(obj){
	return (obj != undefined);
};

function $each(iterable, fn, bind){
	var type = $type(iterable);
	((type == 'arguments' || type == 'collection' || type == 'array') ? Array : Hash).each(iterable, fn, bind);
};

function $empty(){};

function $extend(original, extended){
	for (var key in (extended || {})) original[key] = extended[key];
	return original;
};

function $H(object){
	return new Hash(object);
};

function $lambda(value){
	return ($type(value) == 'function') ? value : function(){
		return value;
	};
};

function $merge(){
	var args = Array.slice(arguments);
	args.unshift({});
	return $mixin.apply(null, args);
};

function $mixin(mix){
	for (var i = 1, l = arguments.length; i < l; i++){
		var object = arguments[i];
		if ($type(object) != 'object') continue;
		for (var key in object){
			var op = object[key], mp = mix[key];
			mix[key] = (mp && $type(op) == 'object' && $type(mp) == 'object') ? $mixin(mp, op) : $unlink(op);
		}
	}
	return mix;
};

function $pick(){
	for (var i = 0, l = arguments.length; i < l; i++){
		if (arguments[i] != undefined) return arguments[i];
	}
	return null;
};

function $random(min, max){
	return Math.floor(Math.random() * (max - min + 1) + min);
};

function $splat(obj){
	var type = $type(obj);
	return (type) ? ((type != 'array' && type != 'arguments') ? [obj] : obj) : [];
};

var $time = Date.now || function(){
	return +new Date;
};

function $try(){
	for (var i = 0, l = arguments.length; i < l; i++){
		try {
			return arguments[i]();
		} catch(e){}
	}
	return null;
};

function $type(obj){
	if (obj == undefined) return false;
	if (obj.$family) return (obj.$family.name == 'number' && !isFinite(obj)) ? false : obj.$family.name;
	if (obj.nodeName){
		switch (obj.nodeType){
			case 1: return 'element';
			case 3: return (/\S/).test(obj.nodeValue) ? 'textnode' : 'whitespace';
		}
	} else if (typeof obj.length == 'number'){
		if (obj.callee) return 'arguments';
		else if (obj.item) return 'collection';
	}
	return typeof obj;
};

function $unlink(object){
	var unlinked;
	switch ($type(object)){
		case 'object':
			unlinked = {};
			for (var p in object) unlinked[p] = $unlink(object[p]);
		break;
		case 'hash':
			unlinked = new Hash(object);
		break;
		case 'array':
			unlinked = [];
			for (var i = 0, l = object.length; i < l; i++) unlinked[i] = $unlink(object[i]);
		break;
		default: return object;
	}
	return unlinked;
};


/*
---

name: Array

description: Contains Array Prototypes like each, contains, and erase.

license: MIT-style license.

requires: [$util, Array.each]

provides: Array

...
*/

Array.implement({

	every: function(fn, bind){
		for (var i = 0, l = this.length; i < l; i++){
			if (!fn.call(bind, this[i], i, this)) return false;
		}
		return true;
	},

	filter: function(fn, bind){
		var results = [];
		for (var i = 0, l = this.length; i < l; i++){
			if (fn.call(bind, this[i], i, this)) results.push(this[i]);
		}
		return results;
	},

	clean: function(){
		return this.filter($defined);
	},

	indexOf: function(item, from){
		var len = this.length;
		for (var i = (from < 0) ? Math.max(0, len + from) : from || 0; i < len; i++){
			if (this[i] === item) return i;
		}
		return -1;
	},

	map: function(fn, bind){
		var results = [];
		for (var i = 0, l = this.length; i < l; i++) results[i] = fn.call(bind, this[i], i, this);
		return results;
	},

	some: function(fn, bind){
		for (var i = 0, l = this.length; i < l; i++){
			if (fn.call(bind, this[i], i, this)) return true;
		}
		return false;
	},

	associate: function(keys){
		var obj = {}, length = Math.min(this.length, keys.length);
		for (var i = 0; i < length; i++) obj[keys[i]] = this[i];
		return obj;
	},

	link: function(object){
		var result = {};
		for (var i = 0, l = this.length; i < l; i++){
			for (var key in object){
				if (object[key](this[i])){
					result[key] = this[i];
					delete object[key];
					break;
				}
			}
		}
		return result;
	},

	contains: function(item, from){
		return this.indexOf(item, from) != -1;
	},

	extend: function(array){
		for (var i = 0, j = array.length; i < j; i++) this.push(array[i]);
		return this;
	},
	
	getLast: function(){
		return (this.length) ? this[this.length - 1] : null;
	},

	getRandom: function(){
		return (this.length) ? this[$random(0, this.length - 1)] : null;
	},

	include: function(item){
		if (!this.contains(item)) this.push(item);
		return this;
	},

	combine: function(array){
		for (var i = 0, l = array.length; i < l; i++) this.include(array[i]);
		return this;
	},

	erase: function(item){
		for (var i = this.length; i--; i){
			if (this[i] === item) this.splice(i, 1);
		}
		return this;
	},

	empty: function(){
		this.length = 0;
		return this;
	},

	flatten: function(){
		var array = [];
		for (var i = 0, l = this.length; i < l; i++){
			var type = $type(this[i]);
			if (!type) continue;
			array = array.concat((type == 'array' || type == 'collection' || type == 'arguments') ? Array.flatten(this[i]) : this[i]);
		}
		return array;
	},

	hexToRgb: function(array){
		if (this.length != 3) return null;
		var rgb = this.map(function(value){
			if (value.length == 1) value += value;
			return value.toInt(16);
		});
		return (array) ? rgb : 'rgb(' + rgb + ')';
	},

	rgbToHex: function(array){
		if (this.length < 3) return null;
		if (this.length == 4 && this[3] == 0 && !array) return 'transparent';
		var hex = [];
		for (var i = 0; i < 3; i++){
			var bit = (this[i] - 0).toString(16);
			hex.push((bit.length == 1) ? '0' + bit : bit);
		}
		return (array) ? hex : '#' + hex.join('');
	}

});


/*
---

name: String

description: Contains String Prototypes like camelCase, capitalize, test, and toInt.

license: MIT-style license.

requires: Native

provides: String

...
*/

String.implement({

	test: function(regex, params){
		return ((typeof regex == 'string') ? new RegExp(regex, params) : regex).test(this);
	},

	contains: function(string, separator){
		return (separator) ? (separator + this + separator).indexOf(separator + string + separator) > -1 : this.indexOf(string) > -1;
	},

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

	clean: function(){
		return this.replace(/\s+/g, ' ').trim();
	},

	camelCase: function(){
		return this.replace(/-\D/g, function(match){
			return match.charAt(1).toUpperCase();
		});
	},

	hyphenate: function(){
		return this.replace(/[A-Z]/g, function(match){
			return ('-' + match.charAt(0).toLowerCase());
		});
	},

	capitalize: function(){
		return this.replace(/\b[a-z]/g, function(match){
			return match.toUpperCase();
		});
	},

	escapeRegExp: function(){
		return this.replace(/([-.*+?^${}()|[\]\/\\])/g, '\\$1');
	},

	toInt: function(base){
		return parseInt(this, base || 10);
	},

	toFloat: function(){
		return parseFloat(this);
	},

	hexToRgb: function(array){
		var hex = this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);
		return (hex) ? hex.slice(1).hexToRgb(array) : null;
	},

	rgbToHex: function(array){
		var rgb = this.match(/\d{1,3}/g);
		return (rgb) ? rgb.rgbToHex(array) : null;
	},

	stripScripts: function(option){
		var scripts = '';
		var text = this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi, function(){
			scripts += arguments[1] + '\n';
			return '';
		});
		if (option === true) $exec(scripts);
		else if ($type(option) == 'function') option(scripts, text);
		return text;
	},

	substitute: function(object, regexp){
		return this.replace(regexp || (/\\?\{([^{}]+)\}/g), function(match, name){
			if (match.charAt(0) == '\\') return match.slice(1);
			return (object[name] != undefined) ? object[name] : '';
		});
	}

});


/*
---

name: Function

description: Contains Function Prototypes like create, bind, pass, and delay.

license: MIT-style license.

requires: [Native, $util]

provides: Function

...
*/

try {
	delete Function.prototype.bind;
} catch(e){}

Function.implement({

	extend: function(properties){
		for (var property in properties) this[property] = properties[property];
		return this;
	},

	create: function(options){
		var self = this;
		options = options || {};
		return function(event){
			var args = options.arguments;
			args = (args != undefined) ? $splat(args) : Array.slice(arguments, (options.event) ? 1 : 0);
			if (options.event) args = [event || window.event].extend(args);
			var returns = function(){
				return self.apply(options.bind || null, args);
			};
			if (options.delay) return setTimeout(returns, options.delay);
			if (options.periodical) return setInterval(returns, options.periodical);
			if (options.attempt) return $try(returns);
			return returns();
		};
	},

	run: function(args, bind){
		return this.apply(bind, $splat(args));
	},

	pass: function(args, bind){
		return this.create({bind: bind, arguments: args});
	},

	bind: function(bind, args){
		return this.create({bind: bind, arguments: args});
	},

	bindWithEvent: function(bind, args){
		return this.create({bind: bind, arguments: args, event: true});
	},

	attempt: function(args, bind){
		return this.create({bind: bind, arguments: args, attempt: true})();
	},

	delay: function(delay, bind, args){
		return this.create({bind: bind, arguments: args, delay: delay})();
	},

	periodical: function(periodical, bind, args){
		return this.create({bind: bind, arguments: args, periodical: periodical})();
	}

});


/*
---

name: Number

description: Contains Number Prototypes like limit, round, times, and ceil.

license: MIT-style license.

requires: [Native, $util]

provides: Number

...
*/

Number.implement({

	limit: function(min, max){
		return Math.min(max, Math.max(min, this));
	},

	round: function(precision){
		precision = Math.pow(10, precision || 0);
		return Math.round(this * precision) / precision;
	},

	times: function(fn, bind){
		for (var i = 0; i < this; i++) fn.call(bind, i, this);
	},

	toFloat: function(){
		return parseFloat(this);
	},

	toInt: function(base){
		return parseInt(this, base || 10);
	}

});

Number.alias('times', 'each');

(function(math){
	var methods = {};
	math.each(function(name){
		if (!Number[name]) methods[name] = function(){
			return Math[name].apply(null, [this].concat($A(arguments)));
		};
	});
	Number.implement(methods);
})(['abs', 'acos', 'asin', 'atan', 'atan2', 'ceil', 'cos', 'exp', 'floor', 'log', 'max', 'min', 'pow', 'sin', 'sqrt', 'tan']);


/*
---

name: Hash

description: Contains Hash Prototypes. Provides a means for overcoming the JavaScript practical impossibility of extending native Objects.

license: MIT-style license.

requires: Hash.base

provides: Hash

...
*/

Hash.implement({

	has: Object.prototype.hasOwnProperty,

	keyOf: function(value){
		for (var key in this){
			if (this.hasOwnProperty(key) && this[key] === value) return key;
		}
		return null;
	},

	hasValue: function(value){
		return (Hash.keyOf(this, value) !== null);
	},

	extend: function(properties){
		Hash.each(properties || {}, function(value, key){
			Hash.set(this, key, value);
		}, this);
		return this;
	},

	combine: function(properties){
		Hash.each(properties || {}, function(value, key){
			Hash.include(this, key, value);
		}, this);
		return this;
	},

	erase: function(key){
		if (this.hasOwnProperty(key)) delete this[key];
		return this;
	},

	get: function(key){
		return (this.hasOwnProperty(key)) ? this[key] : null;
	},

	set: function(key, value){
		if (!this[key] || this.hasOwnProperty(key)) this[key] = value;
		return this;
	},

	empty: function(){
		Hash.each(this, function(value, key){
			delete this[key];
		}, this);
		return this;
	},

	include: function(key, value){
		if (this[key] == undefined) this[key] = value;
		return this;
	},

	map: function(fn, bind){
		var results = new Hash;
		Hash.each(this, function(value, key){
			results.set(key, fn.call(bind, value, key, this));
		}, this);
		return results;
	},

	filter: function(fn, bind){
		var results = new Hash;
		Hash.each(this, function(value, key){
			if (fn.call(bind, value, key, this)) results.set(key, value);
		}, this);
		return results;
	},

	every: function(fn, bind){
		for (var key in this){
			if (this.hasOwnProperty(key) && !fn.call(bind, this[key], key)) return false;
		}
		return true;
	},

	some: function(fn, bind){
		for (var key in this){
			if (this.hasOwnProperty(key) && fn.call(bind, this[key], key)) return true;
		}
		return false;
	},

	getKeys: function(){
		var keys = [];
		Hash.each(this, function(value, key){
			keys.push(key);
		});
		return keys;
	},

	getValues: function(){
		var values = [];
		Hash.each(this, function(value){
			values.push(value);
		});
		return values;
	},

	toQueryString: function(base){
		var queryString = [];
		Hash.each(this, function(value, key){
			if (base) key = base + '[' + key + ']';
			var result;
			switch ($type(value)){
				case 'object': result = Hash.toQueryString(value, key); break;
				case 'array':
					var qs = {};
					value.each(function(val, i){
						qs[i] = val;
					});
					result = Hash.toQueryString(qs, key);
				break;
				default: result = key + '=' + encodeURIComponent(value);
			}
			if (value != undefined) queryString.push(result);
		});

		return queryString.join('&');
	}

});

Hash.alias({keyOf: 'indexOf', hasValue: 'contains'});


/*
---

name: Class

description: Contains the Class Function for easily creating, extending, and implementing reusable Classes.

license: MIT-style license.

requires: [$util, Native, Array, String, Function, Number, Hash]

provides: Class

...
*/

function Class(params){
	
	if (params instanceof Function) params = {initialize: params};
	
	var newClass = function(){
		Object.reset(this);
		if (newClass._prototyping) return this;
		this._current = $empty;
		var value = (this.initialize) ? this.initialize.apply(this, arguments) : this;
		delete this._current; delete this.caller;
		return value;
	}.extend(this);
	
	newClass.implement(params);
	
	newClass.constructor = Class;
	newClass.prototype.constructor = newClass;

	return newClass;

};

Function.prototype.protect = function(){
	this._protected = true;
	return this;
};

Object.reset = function(object, key){
		
	if (key == null){
		for (var p in object) Object.reset(object, p);
		return object;
	}
	
	delete object[key];
	
	switch ($type(object[key])){
		case 'object':
			var F = function(){};
			F.prototype = object[key];
			var i = new F;
			object[key] = Object.reset(i);
		break;
		case 'array': object[key] = $unlink(object[key]); break;
	}
	
	return object;
	
};

new Native({name: 'Class', initialize: Class}).extend({

	instantiate: function(F){
		F._prototyping = true;
		var proto = new F;
		delete F._prototyping;
		return proto;
	},
	
	wrap: function(self, key, method){
		if (method._origin) method = method._origin;
		
		return function(){
			if (method._protected && this._current == null) throw new Error('The method "' + key + '" cannot be called.');
			var caller = this.caller, current = this._current;
			this.caller = current; this._current = arguments.callee;
			var result = method.apply(this, arguments);
			this._current = current; this.caller = caller;
			return result;
		}.extend({_owner: self, _origin: method, _name: key});

	}
	
});

Class.implement({
	
	implement: function(key, value){
		
		if ($type(key) == 'object'){
			for (var p in key) this.implement(p, key[p]);
			return this;
		}
		
		var mutator = Class.Mutators[key];
		
		if (mutator){
			value = mutator.call(this, value);
			if (value == null) return this;
		}
		
		var proto = this.prototype;

		switch ($type(value)){
			
			case 'function':
				if (value._hidden) return this;
				proto[key] = Class.wrap(this, key, value);
			break;
			
			case 'object':
				var previous = proto[key];
				if ($type(previous) == 'object') $mixin(previous, value);
				else proto[key] = $unlink(value);
			break;
			
			case 'array':
				proto[key] = $unlink(value);
			break;
			
			default: proto[key] = value;

		}
		
		return this;

	}
	
});

Class.Mutators = {
	
	Extends: function(parent){

		this.parent = parent;
		this.prototype = Class.instantiate(parent);

		this.implement('parent', function(){
			var name = this.caller._name, previous = this.caller._owner.parent.prototype[name];
			if (!previous) throw new Error('The method "' + name + '" has no parent.');
			return previous.apply(this, arguments);
		}.protect());

	},

	Implements: function(items){
		$splat(items).each(function(item){
			if (item instanceof Function) item = Class.instantiate(item);
			this.implement(item);
		}, this);

	}
	
};


/*
---

name: Class.Extras

description: Contains Utility Classes that can be implemented into your own Classes to ease the execution of many common tasks.

license: MIT-style license.

requires: Class

provides: [Chain, Events, Options, Class.Extras]

...
*/

var Chain = new Class({

	$chain: [],

	chain: function(){
		this.$chain.extend(Array.flatten(arguments));
		return this;
	},

	callChain: function(){
		return (this.$chain.length) ? this.$chain.shift().apply(this, arguments) : false;
	},

	clearChain: function(){
		this.$chain.empty();
		return this;
	}

});

var Events = new Class({

	$events: {},

	addEvent: function(type, fn, internal){
		type = Events.removeOn(type);
		if (fn != $empty){
			this.$events[type] = this.$events[type] || [];
			this.$events[type].include(fn);
			if (internal) fn.internal = true;
		}
		return this;
	},

	addEvents: function(events){
		for (var type in events) this.addEvent(type, events[type]);
		return this;
	},

	fireEvent: function(type, args, delay){
		type = Events.removeOn(type);
		if (!this.$events || !this.$events[type]) return this;
		this.$events[type].each(function(fn){
			fn.create({'bind': this, 'delay': delay, 'arguments': args})();
		}, this);
		return this;
	},

	removeEvent: function(type, fn){
		type = Events.removeOn(type);
		if (!this.$events[type]) return this;
		if (!fn.internal) this.$events[type].erase(fn);
		return this;
	},

	removeEvents: function(events){
		var type;
		if ($type(events) == 'object'){
			for (type in events) this.removeEvent(type, events[type]);
			return this;
		}
		if (events) events = Events.removeOn(events);
		for (type in this.$events){
			if (events && events != type) continue;
			var fns = this.$events[type];
			for (var i = fns.length; i--; i) this.removeEvent(type, fns[i]);
		}
		return this;
	}

});

Events.removeOn = function(string){
	return string.replace(/^on([A-Z])/, function(full, first){
		return first.toLowerCase();
	});
};

var Options = new Class({

	setOptions: function(){
		this.options = $merge.run([this.options].extend(arguments));
		if (!this.addEvent) return this;
		for (var option in this.options){
			if ($type(this.options[option]) != 'function' || !(/^on[A-Z]/).test(option)) continue;
			this.addEvent(option, this.options[option]);
			delete this.options[option];
		}
		return this;
	}

});


/*
---

name: Browser

description: The Browser Core. Contains Browser initialization, Window and Document, and the Browser Hash.

license: MIT-style license.

requires: [Native, $util]

provides: [Browser, Window, Document, $exec]

...
*/

var Browser = $merge({

	Engine: {name: 'unknown', version: 0},

	Platform: {name: (window.orientation != undefined) ? 'ipod' : (navigator.platform.match(/mac|win|linux/i) || ['other'])[0].toLowerCase()},

	Features: {xpath: !!(document.evaluate), air: !!(window.runtime), query: !!(document.querySelector)},

	Plugins: {},

	Engines: {

		presto: function(){
			return (!window.opera) ? false : ((arguments.callee.caller) ? 960 : ((document.getElementsByClassName) ? 950 : 925));
		},

		trident: function(){
			return (!window.ActiveXObject) ? false : ((window.XMLHttpRequest) ? ((document.querySelectorAll) ? 6 : 5) : 4);
		},

		webkit: function(){
			return (navigator.taintEnabled) ? false : ((Browser.Features.xpath) ? ((Browser.Features.query) ? 525 : 420) : 419);
		},

		gecko: function(){
			return (!document.getBoxObjectFor && window.mozInnerScreenX == null) ? false : ((document.getElementsByClassName) ? 19 : 18);
		}

	}

}, Browser || {});

Browser.Platform[Browser.Platform.name] = true;

Browser.detect = function(){

	for (var engine in this.Engines){
		var version = this.Engines[engine]();
		if (version){
			this.Engine = {name: engine, version: version};
			this.Engine[engine] = this.Engine[engine + version] = true;
			break;
		}
	}

	return {name: engine, version: version};

};

Browser.detect();

Browser.Request = function(){
	return $try(function(){
		return new XMLHttpRequest();
	}, function(){
		return new ActiveXObject('MSXML2.XMLHTTP');
	}, function(){
		return new ActiveXObject('Microsoft.XMLHTTP');
	});
};

Browser.Features.xhr = !!(Browser.Request());

Browser.Plugins.Flash = (function(){
	var version = ($try(function(){
		return navigator.plugins['Shockwave Flash'].description;
	}, function(){
		return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version');
	}) || '0 r0').match(/\d+/g);
	return {version: parseInt(version[0] || 0 + '.' + version[1], 10) || 0, build: parseInt(version[2], 10) || 0};
})();

function $exec(text){
	if (!text) return text;
	if (window.execScript){
		window.execScript(text);
	} else {
		var script = document.createElement('script');
		script.setAttribute('type', 'text/javascript');
		script[(Browser.Engine.webkit && Browser.Engine.version < 420) ? 'innerText' : 'text'] = text;
		document.head.appendChild(script);
		document.head.removeChild(script);
	}
	return text;
};

Native.UID = 1;

var $uid = (Browser.Engine.trident) ? function(item){
	return (item.uid || (item.uid = [Native.UID++]))[0];
} : function(item){
	return item.uid || (item.uid = Native.UID++);
};

var Window = new Native({

	name: 'Window',

	legacy: (Browser.Engine.trident) ? null: window.Window,

	initialize: function(win){
		$uid(win);
		if (!win.Element){
			win.Element = $empty;
			if (Browser.Engine.webkit) win.document.createElement("iframe"); //fixes safari 2
			win.Element.prototype = (Browser.Engine.webkit) ? window["[[DOMElement.prototype]]"] : {};
		}
		win.document.window = win;
		return $extend(win, Window.Prototype);
	},

	afterImplement: function(property, value){
		window[property] = Window.Prototype[property] = value;
	}

});

Window.Prototype = {$family: {name: 'window'}};

new Window(window);

var Document = new Native({

	name: 'Document',

	legacy: (Browser.Engine.trident) ? null: window.Document,

	initialize: function(doc){
		$uid(doc);
		doc.head = doc.getElementsByTagName('head')[0];
		doc.html = doc.getElementsByTagName('html')[0];
		if (Browser.Engine.trident && Browser.Engine.version <= 4) $try(function(){
			doc.execCommand("BackgroundImageCache", false, true);
		});
		if (Browser.Engine.trident) doc.window.attachEvent('onunload', function(){
			doc.window.detachEvent('onunload', arguments.callee);
			doc.head = doc.html = doc.window = null;
		});
		return $extend(doc, Document.Prototype);
	},

	afterImplement: function(property, value){
		document[property] = Document.Prototype[property] = value;
	}

});

Document.Prototype = {$family: {name: 'document'}};

new Document(document);


/*
---

name: Element

description: One of the most important items in MooTools. Contains the dollar function, the dollars function, and an handful of cross-browser, time-saver methods to let you easily work with HTML Elements.

license: MIT-style license.

requires: [Window, Document, Array, String, Function, Number, Hash]

provides: [Element, Elements, $, $$, Iframe]

...
*/

var Element = new Native({

	name: 'Element',

	legacy: window.Element,

	initialize: function(tag, props){
		var konstructor = Element.Constructors.get(tag);
		if (konstructor) return konstructor(props);
		if (typeof tag == 'string') return document.newElement(tag, props);
		return document.id(tag).set(props);
	},

	afterImplement: function(key, value){
		Element.Prototype[key] = value;
		if (Array[key]) return;
		Elements.implement(key, function(){
			var items = [], elements = true;
			for (var i = 0, j = this.length; i < j; i++){
				var returns = this[i][key].apply(this[i], arguments);
				items.push(returns);
				if (elements) elements = ($type(returns) == 'element');
			}
			return (elements) ? new Elements(items) : items;
		});
	}

});

Element.Prototype = {$family: {name: 'element'}};

Element.Constructors = new Hash;

var IFrame = new Native({

	name: 'IFrame',

	generics: false,

	initialize: function(){
		var params = Array.link(arguments, {properties: Object.type, iframe: $defined});
		var props = params.properties || {};
		var iframe = document.id(params.iframe);
		var onload = props.onload || $empty;
		delete props.onload;
		props.id = props.name = $pick(props.id, props.name, iframe ? (iframe.id || iframe.name) : 'IFrame_' + $time());
		iframe = new Element(iframe || 'iframe', props);
		var onFrameLoad = function(){
			var host = $try(function(){
				return iframe.contentWindow.location.host;
			});
			if (!host || host == window.location.host){
				var win = new Window(iframe.contentWindow);
				new Document(iframe.contentWindow.document);
				$extend(win.Element.prototype, Element.Prototype);
			}
			onload.call(iframe.contentWindow, iframe.contentWindow.document);
		};
		var contentWindow = $try(function(){
			return iframe.contentWindow;
		});
		((contentWindow && contentWindow.document.body) || window.frames[props.id]) ? onFrameLoad() : iframe.addListener('load', onFrameLoad);
		return iframe;
	}

});

var Elements = new Native({

	initialize: function(elements, options){
		options = $extend({ddup: true, cash: true}, options);
		elements = elements || [];
		if (options.ddup || options.cash){
			var uniques = {}, returned = [];
			for (var i = 0, l = elements.length; i < l; i++){
				var el = document.id(elements[i], !options.cash);
				if (options.ddup){
					if (uniques[el.uid]) continue;
					uniques[el.uid] = true;
				}
				if (el) returned.push(el);
			}
			elements = returned;
		}
		return (options.cash) ? $extend(elements, this) : elements;
	}

});

Elements.implement({

	filter: function(filter, bind){
		if (!filter) return this;
		return new Elements(Array.filter(this, (typeof filter == 'string') ? function(item){
			return item.match(filter);
		} : filter, bind));
	}

});

(function(){

/*<ltIE8>*/
var createElementAcceptsHTML;
try {
	var x = document.createElement('<input name=x>');
	createElementAcceptsHTML = (x.name == 'x');
} catch(e){}

var escapeQuotes = function(html){
	return ('' + html).replace(/&/g,'&amp;').replace(/"/g,'&quot;');
};
/*</ltIE8>*/

Document.implement({

	newElement: function(tag, props){
		if (props && props.checked != null) props.defaultChecked = props.checked;
		/*<ltIE8>*/// Fix for readonly name and type properties in IE < 8
		if (createElementAcceptsHTML && props){
			tag = '<' + tag;
			if (props.name) tag += ' name="' + escapeQuotes(props.name) + '"';
			if (props.type) tag += ' type="' + escapeQuotes(props.type) + '"';
			tag += '>';
			delete props.name;
			delete props.type;
		}
		/*</ltIE8>*/
		return this.id(this.createElement(tag)).set(props);
	},

	newTextNode: function(text){
		return this.createTextNode(text);
	},

	getDocument: function(){
		return this;
	},

	getWindow: function(){
		return this.window;
	},
	
	id: (function(){
		
		var types = {

			string: function(id, nocash, doc){
				id = doc.getElementById(id);
				return (id) ? types.element(id, nocash) : null;
			},
			
			element: function(el, nocash){
				$uid(el);
				if (!nocash && !el.$family && !(/^object|embed$/i).test(el.tagName)){
					var proto = Element.Prototype;
					for (var p in proto) el[p] = proto[p];
				};
				return el;
			},
			
			object: function(obj, nocash, doc){
				if (obj.toElement) return types.element(obj.toElement(doc), nocash);
				return null;
			}
			
		};

		types.textnode = types.whitespace = types.window = types.document = $arguments(0);
		
		return function(el, nocash, doc){
			if (el && el.$family && el.uid) return el;
			var type = $type(el);
			return (types[type]) ? types[type](el, nocash, doc || document) : null;
		};

	})()

});

})();

if (window.$ == null) Window.implement({
	$: function(el, nc){
		return document.id(el, nc, this.document);
	}
});

Window.implement({

	$$: function(selector){
		if (arguments.length == 1 && typeof selector == 'string') return this.document.getElements(selector);
		var elements = [];
		var args = Array.flatten(arguments);
		for (var i = 0, l = args.length; i < l; i++){
			var item = args[i];
			switch ($type(item)){
				case 'element': elements.push(item); break;
				case 'string': elements.extend(this.document.getElements(item, true));
			}
		}
		return new Elements(elements);
	},

	getDocument: function(){
		return this.document;
	},

	getWindow: function(){
		return this;
	}

});

Native.implement([Element, Document], {

	getElement: function(selector, nocash){
		return document.id(this.getElements(selector, true)[0] || null, nocash);
	},

	getElements: function(tags, nocash){
		tags = tags.split(',');
		var elements = [];
		var ddup = (tags.length > 1);
		tags.each(function(tag){
			var partial = this.getElementsByTagName(tag.trim());
			(ddup) ? elements.extend(partial) : elements = partial;
		}, this);
		return new Elements(elements, {ddup: ddup, cash: !nocash});
	}

});

(function(){

var collected = {}, storage = {};
var props = {input: 'checked', option: 'selected', textarea: (Browser.Engine.webkit && Browser.Engine.version < 420) ? 'innerHTML' : 'value'};

var get = function(uid){
	return (storage[uid] || (storage[uid] = {}));
};

var clean = function(item, retain){
	if (!item) return;
	var uid = item.uid;
	if (retain !== true) retain = false;
	if (Browser.Engine.trident){
		if (item.clearAttributes){
			var clone = retain && item.cloneNode(false);
			item.clearAttributes();
			if (clone) item.mergeAttributes(clone);
		} else if (item.removeEvents){
			item.removeEvents();
		}
		if ((/object/i).test(item.tagName)){
			for (var p in item){
				if (typeof item[p] == 'function') item[p] = $empty;
			}
			Element.dispose(item);
		}
	}	
	if (!uid) return;
	collected[uid] = storage[uid] = null;
};

var purge = function(){
	Hash.each(collected, clean);
	if (Browser.Engine.trident) $A(document.getElementsByTagName('object')).each(clean);
	if (window.CollectGarbage) CollectGarbage();
	collected = storage = null;
};

var walk = function(element, walk, start, match, all, nocash){
	var el = element[start || walk];
	var elements = [];
	while (el){
		if (el.nodeType == 1 && (!match || Element.match(el, match))){
			if (!all) return document.id(el, nocash);
			elements.push(el);
		}
		el = el[walk];
	}
	return (all) ? new Elements(elements, {ddup: false, cash: !nocash}) : null;
};

var attributes = {
	'html': 'innerHTML',
	'class': 'className',
	'for': 'htmlFor',
	'defaultValue': 'defaultValue',
	'text': (Browser.Engine.trident || (Browser.Engine.webkit && Browser.Engine.version < 420)) ? 'innerText' : 'textContent'
};
var bools = ['compact', 'nowrap', 'ismap', 'declare', 'noshade', 'checked', 'disabled', 'readonly', 'multiple', 'selected', 'noresize', 'defer'];
var camels = ['value', 'type', 'defaultValue', 'accessKey', 'cellPadding', 'cellSpacing', 'colSpan', 'frameBorder', 'maxLength', 'readOnly', 'rowSpan', 'tabIndex', 'useMap'];

bools = bools.associate(bools);

Hash.extend(attributes, bools);
Hash.extend(attributes, camels.associate(camels.map(String.toLowerCase)));

var inserters = {

	before: function(context, element){
		if (element.parentNode) element.parentNode.insertBefore(context, element);
	},

	after: function(context, element){
		if (!element.parentNode) return;
		var next = element.nextSibling;
		(next) ? element.parentNode.insertBefore(context, next) : element.parentNode.appendChild(context);
	},

	bottom: function(context, element){
		element.appendChild(context);
	},

	top: function(context, element){
		var first = element.firstChild;
		(first) ? element.insertBefore(context, first) : element.appendChild(context);
	}

};

inserters.inside = inserters.bottom;

Hash.each(inserters, function(inserter, where){

	where = where.capitalize();

	Element.implement('inject' + where, function(el){
		inserter(this, document.id(el, true));
		return this;
	});

	Element.implement('grab' + where, function(el){
		inserter(document.id(el, true), this);
		return this;
	});

});

Element.implement({

	set: function(prop, value){
		switch ($type(prop)){
			case 'object':
				for (var p in prop) this.set(p, prop[p]);
				break;
			case 'string':
				var property = Element.Properties.get(prop);
				(property && property.set) ? property.set.apply(this, Array.slice(arguments, 1)) : this.setProperty(prop, value);
		}
		return this;
	},

	get: function(prop){
		var property = Element.Properties.get(prop);
		return (property && property.get) ? property.get.apply(this, Array.slice(arguments, 1)) : this.getProperty(prop);
	},

	erase: function(prop){
		var property = Element.Properties.get(prop);
		(property && property.erase) ? property.erase.apply(this) : this.removeProperty(prop);
		return this;
	},

	setProperty: function(attribute, value){
		var key = attributes[attribute];
		if (value == undefined) return this.removeProperty(attribute);
		if (key && bools[attribute]) value = !!value;
		(key) ? this[key] = value : this.setAttribute(attribute, '' + value);
		return this;
	},

	setProperties: function(attributes){
		for (var attribute in attributes) this.setProperty(attribute, attributes[attribute]);
		return this;
	},

	getProperty: function(attribute){
		var key = attributes[attribute];
		var value = (key) ? this[key] : this.getAttribute(attribute, 2);
		return (bools[attribute]) ? !!value : (key) ? value : value || null;
	},

	getProperties: function(){
		var args = $A(arguments);
		return args.map(this.getProperty, this).associate(args);
	},

	removeProperty: function(attribute){
		var key = attributes[attribute];
		(key) ? this[key] = (key && bools[attribute]) ? false : '' : this.removeAttribute(attribute);
		return this;
	},

	removeProperties: function(){
		Array.each(arguments, this.removeProperty, this);
		return this;
	},

	hasClass: function(className){
		return this.className.contains(className, ' ');
	},

	addClass: function(className){
		if (!this.hasClass(className)) this.className = (this.className + ' ' + className).clean();
		return this;
	},

	removeClass: function(className){
		this.className = this.className.replace(new RegExp('(^|\\s)' + className + '(?:\\s|$)'), '$1');
		return this;
	},

	toggleClass: function(className){
		return this.hasClass(className) ? this.removeClass(className) : this.addClass(className);
	},

	adopt: function(){
		Array.flatten(arguments).each(function(element){
			element = document.id(element, true);
			if (element) this.appendChild(element);
		}, this);
		return this;
	},

	appendText: function(text, where){
		return this.grab(this.getDocument().newTextNode(text), where);
	},

	grab: function(el, where){
		inserters[where || 'bottom'](document.id(el, true), this);
		return this;
	},

	inject: function(el, where){
		inserters[where || 'bottom'](this, document.id(el, true));
		return this;
	},

	replaces: function(el){
		el = document.id(el, true);
		el.parentNode.replaceChild(this, el);
		return this;
	},

	wraps: function(el, where){
		el = document.id(el, true);
		return this.replaces(el).grab(el, where);
	},

	getPrevious: function(match, nocash){
		return walk(this, 'previousSibling', null, match, false, nocash);
	},

	getAllPrevious: function(match, nocash){
		return walk(this, 'previousSibling', null, match, true, nocash);
	},

	getNext: function(match, nocash){
		return walk(this, 'nextSibling', null, match, false, nocash);
	},

	getAllNext: function(match, nocash){
		return walk(this, 'nextSibling', null, match, true, nocash);
	},

	getFirst: function(match, nocash){
		return walk(this, 'nextSibling', 'firstChild', match, false, nocash);
	},

	getLast: function(match, nocash){
		return walk(this, 'previousSibling', 'lastChild', match, false, nocash);
	},

	getParent: function(match, nocash){
		return walk(this, 'parentNode', null, match, false, nocash);
	},

	getParents: function(match, nocash){
		return walk(this, 'parentNode', null, match, true, nocash);
	},
	
	getSiblings: function(match, nocash){
		return this.getParent().getChildren(match, nocash).erase(this);
	},

	getChildren: function(match, nocash){
		return walk(this, 'nextSibling', 'firstChild', match, true, nocash);
	},

	getWindow: function(){
		return this.ownerDocument.window;
	},

	getDocument: function(){
		return this.ownerDocument;
	},

	getElementById: function(id, nocash){
		var el = this.ownerDocument.getElementById(id);
		if (!el) return null;
		for (var parent = el.parentNode; parent != this; parent = parent.parentNode){
			if (!parent) return null;
		}
		return document.id(el, nocash);
	},

	getSelected: function(){
		return new Elements($A(this.options).filter(function(option){
			return option.selected;
		}));
	},

	getComputedStyle: function(property){
		if (this.currentStyle) return this.currentStyle[property.camelCase()];
		var computed = this.getDocument().defaultView.getComputedStyle(this, null);
		return (computed) ? computed.getPropertyValue([property.hyphenate()]) : null;
	},

	toQueryString: function(){
		var queryString = [];
		this.getElements('input, select, textarea', true).each(function(el){
			if (!el.name || el.disabled || el.type == 'submit' || el.type == 'reset' || el.type == 'file') return;
			var value = (el.tagName.toLowerCase() == 'select') ? Element.getSelected(el).map(function(opt){
				return opt.value;
			}) : ((el.type == 'radio' || el.type == 'checkbox') && !el.checked) ? null : el.value;
			$splat(value).each(function(val){
				if (typeof val != 'undefined') queryString.push(el.name + '=' + encodeURIComponent(val));
			});
		});
		return queryString.join('&');
	},

	clone: function(contents, keepid){
		contents = contents !== false;
		var clone = this.cloneNode(contents);
		var clean = function(node, element){
			if (!keepid) node.removeAttribute('id');
			if (Browser.Engine.trident){
				node.clearAttributes();
				node.mergeAttributes(element);
				node.removeAttribute('uid');
				if (node.options){
					var no = node.options, eo = element.options;
					for (var j = no.length; j--;) no[j].selected = eo[j].selected;
				}
			}
			var prop = props[element.tagName.toLowerCase()];
			if (prop && element[prop]) node[prop] = element[prop];
		};

		if (contents){
			var ce = clone.getElementsByTagName('*'), te = this.getElementsByTagName('*');
			for (var i = ce.length; i--;) clean(ce[i], te[i]);
		}

		clean(clone, this);
		return document.id(clone);
	},

	destroy: function(){
		Element.empty(this);
		Element.dispose(this);
		clean(this, true);
		return null;
	},

	empty: function(){
		$A(this.childNodes).each(function(node){
			Element.destroy(node);
		});
		return this;
	},

	dispose: function(){
		return (this.parentNode) ? this.parentNode.removeChild(this) : this;
	},

	hasChild: function(el){
		el = document.id(el, true);
		if (!el) return false;
		if (Browser.Engine.webkit && Browser.Engine.version < 420) return $A(this.getElementsByTagName(el.tagName)).contains(el);
		return (this.contains) ? (this != el && this.contains(el)) : !!(this.compareDocumentPosition(el) & 16);
	},

	match: function(tag){
		return (!tag || (tag == this) || (Element.get(this, 'tag') == tag));
	}

});

Native.implement([Element, Window, Document], {

	addListener: function(type, fn){
		if (type == 'unload'){
			var old = fn, self = this;
			fn = function(){
				self.removeListener('unload', fn);
				old();
			};
		} else {
			collected[this.uid] = this;
		}
		if (this.addEventListener) this.addEventListener(type, fn, false);
		else this.attachEvent('on' + type, fn);
		return this;
	},

	removeListener: function(type, fn){
		if (this.removeEventListener) this.removeEventListener(type, fn, false);
		else this.detachEvent('on' + type, fn);
		return this;
	},

	retrieve: function(property, dflt){
		var storage = get(this.uid), prop = storage[property];
		if (dflt != undefined && prop == undefined) prop = storage[property] = dflt;
		return $pick(prop);
	},

	store: function(property, value){
		var storage = get(this.uid);
		storage[property] = value;
		return this;
	},

	eliminate: function(property){
		var storage = get(this.uid);
		delete storage[property];
		return this;
	}

});

window.addListener('unload', purge);

})();

Element.Properties = new Hash;

Element.Properties.style = {

	set: function(style){
		this.style.cssText = style;
	},

	get: function(){
		return this.style.cssText;
	},

	erase: function(){
		this.style.cssText = '';
	}

};

Element.Properties.tag = {

	get: function(){
		return this.tagName.toLowerCase();
	}

};

Element.Properties.html = (function(){
	var wrapper = document.createElement('div');

	var translations = {
		table: [1, '<table>', '</table>'],
		select: [1, '<select>', '</select>'],
		tbody: [2, '<table><tbody>', '</tbody></table>'],
		tr: [3, '<table><tbody><tr>', '</tr></tbody></table>']
	};
	translations.thead = translations.tfoot = translations.tbody;

	var html = {
		set: function(){
			var html = Array.flatten(arguments).join('');
			var wrap = Browser.Engine.trident && translations[this.get('tag')];
			if (wrap){
				var first = wrapper;
				first.innerHTML = wrap[1] + html + wrap[2];
				for (var i = wrap[0]; i--;) first = first.firstChild;
				this.empty().adopt(first.childNodes);
			} else {
				this.innerHTML = html;
			}
		}
	};

	html.erase = html.set;

	return html;
})();

if (Browser.Engine.webkit && Browser.Engine.version < 420) Element.Properties.text = {
	get: function(){
		if (this.innerText) return this.innerText;
		var temp = this.ownerDocument.newElement('div', {html: this.innerHTML}).inject(this.ownerDocument.body);
		var text = temp.innerText;
		temp.destroy();
		return text;
	}
};


/*
---

name: Element.Dimensions

description: Contains methods to work with size, scroll, or positioning of Elements and the window object.

license: MIT-style license.

credits:
  - Element positioning based on the [qooxdoo](http://qooxdoo.org/) code and smart browser fixes, [LGPL License](http://www.gnu.org/licenses/lgpl.html).
  - Viewport dimensions based on [YUI](http://developer.yahoo.com/yui/) code, [BSD License](http://developer.yahoo.com/yui/license.html).

requires: Element

provides: Element.Dimensions

...
*/

(function(){

Element.implement({

	scrollTo: function(x, y){
		if (isBody(this)){
			this.getWindow().scrollTo(x, y);
		} else {
			this.scrollLeft = x;
			this.scrollTop = y;
		}
		return this;
	},

	getSize: function(){
		if (isBody(this)) return this.getWindow().getSize();
		return {x: this.offsetWidth, y: this.offsetHeight};
	},

	getScrollSize: function(){
		if (isBody(this)) return this.getWindow().getScrollSize();
		return {x: this.scrollWidth, y: this.scrollHeight};
	},

	getScroll: function(){
		if (isBody(this)) return this.getWindow().getScroll();
		return {x: this.scrollLeft, y: this.scrollTop};
	},

	getScrolls: function(){
		var element = this, position = {x: 0, y: 0};
		while (element && !isBody(element)){
			position.x += element.scrollLeft;
			position.y += element.scrollTop;
			element = element.parentNode;
		}
		return position;
	},

	getOffsetParent: function(){
		var element = this;
		if (isBody(element)) return null;
		if (!Browser.Engine.trident) return element.offsetParent;
		while ((element = element.parentNode) && !isBody(element)){
			if (styleString(element, 'position') != 'static') return element;
		}
		return null;
	},

	getOffsets: function(){
		if (this.getBoundingClientRect){
			var bound = this.getBoundingClientRect(),
				html = document.id(this.getDocument().documentElement),
				htmlScroll = html.getScroll(),
				elemScrolls = this.getScrolls(),
				elemScroll = this.getScroll(),
				isFixed = (styleString(this, 'position') == 'fixed');

			return {
				x: bound.left.toInt() + elemScrolls.x - elemScroll.x + ((isFixed) ? 0 : htmlScroll.x) - html.clientLeft,
				y: bound.top.toInt()  + elemScrolls.y - elemScroll.y + ((isFixed) ? 0 : htmlScroll.y) - html.clientTop
			};
		}

		var element = this, position = {x: 0, y: 0};
		if (isBody(this)) return position;

		while (element && !isBody(element)){
			position.x += element.offsetLeft;
			position.y += element.offsetTop;

			if (Browser.Engine.gecko){
				if (!borderBox(element)){
					position.x += leftBorder(element);
					position.y += topBorder(element);
				}
				var parent = element.parentNode;
				if (parent && styleString(parent, 'overflow') != 'visible'){
					position.x += leftBorder(parent);
					position.y += topBorder(parent);
				}
			} else if (element != this && Browser.Engine.webkit){
				position.x += leftBorder(element);
				position.y += topBorder(element);
			}

			element = element.offsetParent;
		}
		if (Browser.Engine.gecko && !borderBox(this)){
			position.x -= leftBorder(this);
			position.y -= topBorder(this);
		}
		return position;
	},

	getPosition: function(relative){
		if (isBody(this)) return {x: 0, y: 0};
		var offset = this.getOffsets(),
				scroll = this.getScrolls();
		var position = {
			x: offset.x - scroll.x,
			y: offset.y - scroll.y
		};
		var relativePosition = (relative && (relative = document.id(relative))) ? relative.getPosition() : {x: 0, y: 0};
		return {x: position.x - relativePosition.x, y: position.y - relativePosition.y};
	},

	getCoordinates: function(element){
		if (isBody(this)) return this.getWindow().getCoordinates();
		var position = this.getPosition(element),
				size = this.getSize();
		var obj = {
			left: position.x,
			top: position.y,
			width: size.x,
			height: size.y
		};
		obj.right = obj.left + obj.width;
		obj.bottom = obj.top + obj.height;
		return obj;
	},

	computePosition: function(obj){
		return {
			left: obj.x - styleNumber(this, 'margin-left'),
			top: obj.y - styleNumber(this, 'margin-top')
		};
	},

	setPosition: function(obj){
		return this.setStyles(this.computePosition(obj));
	}

});


Native.implement([Document, Window], {

	getSize: function(){
		if (Browser.Engine.presto || Browser.Engine.webkit){
			var win = this.getWindow();
			return {x: win.innerWidth, y: win.innerHeight};
		}
		var doc = getCompatElement(this);
		return {x: doc.clientWidth, y: doc.clientHeight};
	},

	getScroll: function(){
		var win = this.getWindow(), doc = getCompatElement(this);
		return {x: win.pageXOffset || doc.scrollLeft, y: win.pageYOffset || doc.scrollTop};
	},

	getScrollSize: function(){
		var doc = getCompatElement(this), min = this.getSize();
		return {x: Math.max(doc.scrollWidth, min.x), y: Math.max(doc.scrollHeight, min.y)};
	},

	getPosition: function(){
		return {x: 0, y: 0};
	},

	getCoordinates: function(){
		var size = this.getSize();
		return {top: 0, left: 0, bottom: size.y, right: size.x, height: size.y, width: size.x};
	}

});

// private methods

var styleString = Element.getComputedStyle;

function styleNumber(element, style){
	return styleString(element, style).toInt() || 0;
};

function borderBox(element){
	return styleString(element, '-moz-box-sizing') == 'border-box';
};

function topBorder(element){
	return styleNumber(element, 'border-top-width');
};

function leftBorder(element){
	return styleNumber(element, 'border-left-width');
};

function isBody(element){
	return (/^(?:body|html)$/i).test(element.tagName);
};

function getCompatElement(element){
	var doc = element.getDocument();
	return (!doc.compatMode || doc.compatMode == 'CSS1Compat') ? doc.html : doc.body;
};

})();

//aliases
Element.alias('setPosition', 'position'); //compatability

Native.implement([Window, Document, Element], {

	getHeight: function(){
		return this.getSize().y;
	},

	getWidth: function(){
		return this.getSize().x;
	},

	getScrollTop: function(){
		return this.getScroll().y;
	},

	getScrollLeft: function(){
		return this.getScroll().x;
	},

	getScrollHeight: function(){
		return this.getScrollSize().y;
	},

	getScrollWidth: function(){
		return this.getScrollSize().x;
	},

	getTop: function(){
		return this.getPosition().y;
	},

	getLeft: function(){
		return this.getPosition().x;
	}

});


/*
---

name: Event

description: Contains the Event Class, to make the event object cross-browser.

license: MIT-style license.

requires: [Window, Document, Hash, Array, Function, String]

provides: Event

...
*/

var Event = new Native({

	name: 'Event',

	initialize: function(event, win){
		win = win || window;
		var doc = win.document;
		event = event || win.event;
		if (event.$extended) return event;
		this.$extended = true;
		var type = event.type;
		var target = event.target || event.srcElement;
		while (target && target.nodeType == 3) target = target.parentNode;

		if (type.test(/key/)){
			var code = event.which || event.keyCode;
			var key = Event.Keys.keyOf(code);
			if (type == 'keydown'){
				var fKey = code - 111;
				if (fKey > 0 && fKey < 13) key = 'f' + fKey;
			}
			key = key || String.fromCharCode(code).toLowerCase();
		} else if (type.match(/(click|mouse|menu)/i)){
			doc = (!doc.compatMode || doc.compatMode == 'CSS1Compat') ? doc.html : doc.body;
			var page = {
				x: event.pageX || event.clientX + doc.scrollLeft,
				y: event.pageY || event.clientY + doc.scrollTop
			};
			var client = {
				x: (event.pageX) ? event.pageX - win.pageXOffset : event.clientX,
				y: (event.pageY) ? event.pageY - win.pageYOffset : event.clientY
			};
			if (type.match(/DOMMouseScroll|mousewheel/)){
				var wheel = (event.wheelDelta) ? event.wheelDelta / 120 : -(event.detail || 0) / 3;
			}
			var rightClick = (event.which == 3) || (event.button == 2);
			var related = null;
			if (type.match(/over|out/)){
				switch (type){
					case 'mouseover': related = event.relatedTarget || event.fromElement; break;
					case 'mouseout': related = event.relatedTarget || event.toElement;
				}
				if (!(function(){
					while (related && related.nodeType == 3) related = related.parentNode;
					return true;
				}).create({attempt: Browser.Engine.gecko})()) related = false;
			}
		}

		return $extend(this, {
			event: event,
			type: type,

			page: page,
			client: client,
			rightClick: rightClick,

			wheel: wheel,

			relatedTarget: related,
			target: target,

			code: code,
			key: key,

			shift: event.shiftKey,
			control: event.ctrlKey,
			alt: event.altKey,
			meta: event.metaKey
		});
	}

});

Event.Keys = new Hash({
	'enter': 13,
	'up': 38,
	'down': 40,
	'left': 37,
	'right': 39,
	'esc': 27,
	'space': 32,
	'backspace': 8,
	'tab': 9,
	'delete': 46
});

Event.implement({

	stop: function(){
		return this.stopPropagation().preventDefault();
	},

	stopPropagation: function(){
		if (this.event.stopPropagation) this.event.stopPropagation();
		else this.event.cancelBubble = true;
		return this;
	},

	preventDefault: function(){
		if (this.event.preventDefault) this.event.preventDefault();
		else this.event.returnValue = false;
		return this;
	}

});


/*
---

name: Element.Event

description: Contains Element methods for dealing with events. This file also includes mouseenter and mouseleave custom Element Events.

license: MIT-style license.

requires: [Element, Event]

provides: Element.Event

...
*/

Element.Properties.events = {set: function(events){
	this.addEvents(events);
}};

Native.implement([Element, Window, Document], {

	addEvent: function(type, fn){
		var events = this.retrieve('events', {});
		events[type] = events[type] || {'keys': [], 'values': []};
		if (events[type].keys.contains(fn)) return this;
		events[type].keys.push(fn);
		var realType = type, custom = Element.Events.get(type), condition = fn, self = this;
		if (custom){
			if (custom.onAdd) custom.onAdd.call(this, fn);
			if (custom.condition){
				condition = function(event){
					if (custom.condition.call(this, event)) return fn.call(this, event);
					return true;
				};
			}
			realType = custom.base || realType;
		}
		var defn = function(){
			return fn.call(self);
		};
		var nativeEvent = Element.NativeEvents[realType];
		if (nativeEvent){
			if (nativeEvent == 2){
				defn = function(event){
					event = new Event(event, self.getWindow());
					if (condition.call(self, event) === false) event.stop();
				};
			}
			this.addListener(realType, defn);
		}
		events[type].values.push(defn);
		return this;
	},

	removeEvent: function(type, fn){
		var events = this.retrieve('events');
		if (!events || !events[type]) return this;
		var pos = events[type].keys.indexOf(fn);
		if (pos == -1) return this;
		events[type].keys.splice(pos, 1);
		var value = events[type].values.splice(pos, 1)[0];
		var custom = Element.Events.get(type);
		if (custom){
			if (custom.onRemove) custom.onRemove.call(this, fn);
			type = custom.base || type;
		}
		return (Element.NativeEvents[type]) ? this.removeListener(type, value) : this;
	},

	addEvents: function(events){
		for (var event in events) this.addEvent(event, events[event]);
		return this;
	},

	removeEvents: function(events){
		var type;
		if ($type(events) == 'object'){
			for (type in events) this.removeEvent(type, events[type]);
			return this;
		}
		var attached = this.retrieve('events');
		if (!attached) return this;
		if (!events){
			for (type in attached) this.removeEvents(type);
			this.eliminate('events');
		} else if (attached[events]){
			while (attached[events].keys[0]) this.removeEvent(events, attached[events].keys[0]);
			attached[events] = null;
		}
		return this;
	},

	fireEvent: function(type, args, delay){
		var events = this.retrieve('events');
		if (!events || !events[type]) return this;
		events[type].keys.each(function(fn){
			fn.create({'bind': this, 'delay': delay, 'arguments': args})();
		}, this);
		return this;
	},

	cloneEvents: function(from, type){
		from = document.id(from);
		var fevents = from.retrieve('events');
		if (!fevents) return this;
		if (!type){
			for (var evType in fevents) this.cloneEvents(from, evType);
		} else if (fevents[type]){
			fevents[type].keys.each(function(fn){
				this.addEvent(type, fn);
			}, this);
		}
		return this;
	}

});

// IE9
try {
	if (typeof HTMLElement != 'undefined')
		HTMLElement.prototype.fireEvent = Element.prototype.fireEvent;
} catch(e){}

Element.NativeEvents = {
	click: 2, dblclick: 2, mouseup: 2, mousedown: 2, contextmenu: 2, //mouse buttons
	mousewheel: 2, DOMMouseScroll: 2, //mouse wheel
	mouseover: 2, mouseout: 2, mousemove: 2, selectstart: 2, selectend: 2, //mouse movement
	keydown: 2, keypress: 2, keyup: 2, //keyboard
	focus: 2, blur: 2, change: 2, reset: 2, select: 2, submit: 2, //form elements
	load: 1, unload: 1, beforeunload: 2, resize: 1, move: 1, DOMContentLoaded: 1, readystatechange: 1, //window
	error: 1, abort: 1, scroll: 1 //misc
};

(function(){

var $check = function(event){
	var related = event.relatedTarget;
	if (related == undefined) return true;
	if (related === false) return false;
	return ($type(this) != 'document' && related != this && related.prefix != 'xul' && !this.hasChild(related));
};

Element.Events = new Hash({

	mouseenter: {
		base: 'mouseover',
		condition: $check
	},

	mouseleave: {
		base: 'mouseout',
		condition: $check
	},

	mousewheel: {
		base: (Browser.Engine.gecko) ? 'DOMMouseScroll' : 'mousewheel'
	}

});

})();


/*
---

name: Element.Style

description: Contains methods for interacting with the styles of Elements in a fashionable way.

license: MIT-style license.

requires: Element

provides: Element.Style

...
*/

Element.Properties.styles = {set: function(styles){
	this.setStyles(styles);
}};

Element.Properties.opacity = {

	set: function(opacity, novisibility){
		if (!novisibility){
			if (opacity == 0){
				if (this.style.visibility != 'hidden') this.style.visibility = 'hidden';
			} else {
				if (this.style.visibility != 'visible') this.style.visibility = 'visible';
			}
		}
		if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1;
		if (Browser.Engine.trident) this.style.filter = (opacity == 1) ? '' : 'alpha(opacity=' + opacity * 100 + ')';
		this.style.opacity = opacity;
		this.store('opacity', opacity);
	},

	get: function(){
		return this.retrieve('opacity', 1);
	}

};

Element.implement({

	setOpacity: function(value){
		return this.set('opacity', value, true);
	},

	getOpacity: function(){
		return this.get('opacity');
	},

	setStyle: function(property, value){
		switch (property){
			case 'opacity': return this.set('opacity', parseFloat(value));
			case 'float': property = (Browser.Engine.trident) ? 'styleFloat' : 'cssFloat';
		}
		property = property.camelCase();
		if ($type(value) != 'string'){
			var map = (Element.Styles.get(property) || '@').split(' ');
			value = $splat(value).map(function(val, i){
				if (!map[i]) return '';
				return ($type(val) == 'number') ? map[i].replace('@', Math.round(val)) : val;
			}).join(' ');
		} else if (value == String(Number(value))){
			value = Math.round(value);
		}
		this.style[property] = value;
		return this;
	},

	getStyle: function(property){
		switch (property){
			case 'opacity': return this.get('opacity');
			case 'float': property = (Browser.Engine.trident) ? 'styleFloat' : 'cssFloat';
		}
		property = property.camelCase();
		var result = this.style[property];
		if (!$chk(result)){
			result = [];
			for (var style in Element.ShortStyles){
				if (property != style) continue;
				for (var s in Element.ShortStyles[style]) result.push(this.getStyle(s));
				return result.join(' ');
			}
			result = this.getComputedStyle(property);
		}
		if (result){
			result = String(result);
			var color = result.match(/rgba?\([\d\s,]+\)/);
			if (color) result = result.replace(color[0], color[0].rgbToHex());
		}
		if (Browser.Engine.presto || (Browser.Engine.trident && !$chk(parseInt(result, 10)))){
			if (property.test(/^(height|width)$/)){
				var values = (property == 'width') ? ['left', 'right'] : ['top', 'bottom'], size = 0;
				values.each(function(value){
					size += this.getStyle('border-' + value + '-width').toInt() + this.getStyle('padding-' + value).toInt();
				}, this);
				return this['offset' + property.capitalize()] - size + 'px';
			}
			if ((Browser.Engine.presto) && String(result).test('px')) return result;
			if (property.test(/(border(.+)Width|margin|padding)/)) return '0px';
		}
		return result;
	},

	setStyles: function(styles){
		for (var style in styles) this.setStyle(style, styles[style]);
		return this;
	},

	getStyles: function(){
		var result = {};
		Array.flatten(arguments).each(function(key){
			result[key] = this.getStyle(key);
		}, this);
		return result;
	}

});

Element.Styles = new Hash({
	left: '@px', top: '@px', bottom: '@px', right: '@px',
	width: '@px', height: '@px', maxWidth: '@px', maxHeight: '@px', minWidth: '@px', minHeight: '@px',
	backgroundColor: 'rgb(@, @, @)', backgroundPosition: '@px @px', color: 'rgb(@, @, @)',
	fontSize: '@px', letterSpacing: '@px', lineHeight: '@px', clip: 'rect(@px @px @px @px)',
	margin: '@px @px @px @px', padding: '@px @px @px @px', border: '@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)',
	borderWidth: '@px @px @px @px', borderStyle: '@ @ @ @', borderColor: 'rgb(@, @, @) rgb(@, @, @) rgb(@, @, @) rgb(@, @, @)',
	zIndex: '@', 'zoom': '@', fontWeight: '@', textIndent: '@px', opacity: '@'
});

Element.ShortStyles = {margin: {}, padding: {}, border: {}, borderWidth: {}, borderStyle: {}, borderColor: {}};

['Top', 'Right', 'Bottom', 'Left'].each(function(direction){
	var Short = Element.ShortStyles;
	var All = Element.Styles;
	['margin', 'padding'].each(function(style){
		var sd = style + direction;
		Short[style][sd] = All[sd] = '@px';
	});
	var bd = 'border' + direction;
	Short.border[bd] = All[bd] = '@px @ rgb(@, @, @)';
	var bdw = bd + 'Width', bds = bd + 'Style', bdc = bd + 'Color';
	Short[bd] = {};
	Short.borderWidth[bdw] = Short[bd][bdw] = All[bdw] = '@px';
	Short.borderStyle[bds] = Short[bd][bds] = All[bds] = '@';
	Short.borderColor[bdc] = Short[bd][bdc] = All[bdc] = 'rgb(@, @, @)';
});


/*
---

name: Fx

description: Contains the basic animation logic to be extended by all other Fx Classes.

license: MIT-style license.

requires: [Chain, Events, Options]

provides: Fx

...
*/

var Fx = new Class({

	Implements: [Chain, Events, Options],

	options: {
		/*
		onStart: $empty,
		onCancel: $empty,
		onComplete: $empty,
		*/
		fps: 50,
		unit: false,
		duration: 500,
		link: 'ignore'
	},

	initialize: function(options){
		this.subject = this.subject || this;
		this.setOptions(options);
		this.options.duration = Fx.Durations[this.options.duration] || this.options.duration.toInt();
		var wait = this.options.wait;
		if (wait === false) this.options.link = 'cancel';
	},

	getTransition: function(){
		return function(p){
			return -(Math.cos(Math.PI * p) - 1) / 2;
		};
	},

	step: function(){
		var time = $time();
		if (time < this.time + this.options.duration){
			var delta = this.transition((time - this.time) / this.options.duration);
			this.set(this.compute(this.from, this.to, delta));
		} else {
			this.set(this.compute(this.from, this.to, 1));
			this.complete();
		}
	},

	set: function(now){
		return now;
	},

	compute: function(from, to, delta){
		return Fx.compute(from, to, delta);
	},

	check: function(){
		if (!this.timer) return true;
		switch (this.options.link){
			case 'cancel': this.cancel(); return true;
			case 'chain': this.chain(this.caller.bind(this, arguments)); return false;
		}
		return false;
	},

	start: function(from, to){
		if (!this.check(from, to)) return this;
		this.from = from;
		this.to = to;
		this.time = 0;
		this.transition = this.getTransition();
		this.startTimer();
		this.onStart();
		return this;
	},

	complete: function(){
		if (this.stopTimer()) this.onComplete();
		return this;
	},

	cancel: function(){
		if (this.stopTimer()) this.onCancel();
		return this;
	},

	onStart: function(){
		this.fireEvent('start', this.subject);
	},

	onComplete: function(){
		this.fireEvent('complete', this.subject);
		if (!this.callChain()) this.fireEvent('chainComplete', this.subject);
	},

	onCancel: function(){
		this.fireEvent('cancel', this.subject).clearChain();
	},

	pause: function(){
		this.stopTimer();
		return this;
	},

	resume: function(){
		this.startTimer();
		return this;
	},

	stopTimer: function(){
		if (!this.timer) return false;
		this.time = $time() - this.time;
		this.timer = $clear(this.timer);
		return true;
	},

	startTimer: function(){
		if (this.timer) return false;
		this.time = $time() - this.time;
		this.timer = this.step.periodical(Math.round(1000 / this.options.fps), this);
		return true;
	}

});

Fx.compute = function(from, to, delta){
	return (to - from) * delta + from;
};

Fx.Durations = {'short': 250, 'normal': 500, 'long': 1000};


/*
---

name: Fx.CSS

description: Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements.

license: MIT-style license.

requires: [Fx, Element.Style]

provides: Fx.CSS

...
*/

Fx.CSS = new Class({

	Extends: Fx,

	//prepares the base from/to object

	prepare: function(element, property, values){
		values = $splat(values);
		var values1 = values[1];
		if (!$chk(values1)){
			values[1] = values[0];
			values[0] = element.getStyle(property);
		}
		var parsed = values.map(this.parse);
		return {from: parsed[0], to: parsed[1]};
	},

	//parses a value into an array

	parse: function(value){
		value = $lambda(value)();
		value = (typeof value == 'string') ? value.split(' ') : $splat(value);
		return value.map(function(val){
			val = String(val);
			var found = false;
			Fx.CSS.Parsers.each(function(parser, key){
				if (found) return;
				var parsed = parser.parse(val);
				if ($chk(parsed)) found = {value: parsed, parser: parser};
			});
			found = found || {value: val, parser: Fx.CSS.Parsers.String};
			return found;
		});
	},

	//computes by a from and to prepared objects, using their parsers.

	compute: function(from, to, delta){
		var computed = [];
		(Math.min(from.length, to.length)).times(function(i){
			computed.push({value: from[i].parser.compute(from[i].value, to[i].value, delta), parser: from[i].parser});
		});
		computed.$family = {name: 'fx:css:value'};
		return computed;
	},

	//serves the value as settable

	serve: function(value, unit){
		if ($type(value) != 'fx:css:value') value = this.parse(value);
		var returned = [];
		value.each(function(bit){
			returned = returned.concat(bit.parser.serve(bit.value, unit));
		});
		return returned;
	},

	//renders the change to an element

	render: function(element, property, value, unit){
		element.setStyle(property, this.serve(value, unit));
	},

	//searches inside the page css to find the values for a selector

	search: function(selector){
		if (Fx.CSS.Cache[selector]) return Fx.CSS.Cache[selector];
		var to = {};
		Array.each(document.styleSheets, function(sheet, j){
			var href = sheet.href;
			if (href && href.contains('://') && !href.contains(document.domain)) return;
			var rules = sheet.rules || sheet.cssRules;
			Array.each(rules, function(rule, i){
				if (!rule.style) return;
				var selectorText = (rule.selectorText) ? rule.selectorText.replace(/^\w+/, function(m){
					return m.toLowerCase();
				}) : null;
				if (!selectorText || !selectorText.test('^' + selector + '$')) return;
				Element.Styles.each(function(value, style){
					if (!rule.style[style] || Element.ShortStyles[style]) return;
					value = String(rule.style[style]);
					to[style] = (value.test(/^rgb/)) ? value.rgbToHex() : value;
				});
			});
		});
		return Fx.CSS.Cache[selector] = to;
	}

});

Fx.CSS.Cache = {};

Fx.CSS.Parsers = new Hash({

	Color: {
		parse: function(value){
			if (value.match(/^#[0-9a-f]{3,6}$/i)) return value.hexToRgb(true);
			return ((value = value.match(/(\d+),\s*(\d+),\s*(\d+)/))) ? [value[1], value[2], value[3]] : false;
		},
		compute: function(from, to, delta){
			return from.map(function(value, i){
				return Math.round(Fx.compute(from[i], to[i], delta));
			});
		},
		serve: function(value){
			return value.map(Number);
		}
	},

	Number: {
		parse: parseFloat,
		compute: Fx.compute,
		serve: function(value, unit){
			return (unit) ? value + unit : value;
		}
	},

	String: {
		parse: $lambda(false),
		compute: $arguments(1),
		serve: $arguments(0)
	}

});


/*
---

name: Fx.Morph

description: Formerly Fx.Styles, effect to transition any number of CSS properties for an element using an object of rules, or CSS based selector rules.

license: MIT-style license.

requires: Fx.CSS

provides: Fx.Morph

...
*/

Fx.Morph = new Class({

	Extends: Fx.CSS,

	initialize: function(element, options){
		this.element = this.subject = document.id(element);
		this.parent(options);
	},

	set: function(now){
		if (typeof now == 'string') now = this.search(now);
		for (var p in now) this.render(this.element, p, now[p], this.options.unit);
		return this;
	},

	compute: function(from, to, delta){
		var now = {};
		for (var p in from) now[p] = this.parent(from[p], to[p], delta);
		return now;
	},

	start: function(properties){
		if (!this.check(properties)) return this;
		if (typeof properties == 'string') properties = this.search(properties);
		var from = {}, to = {};
		for (var p in properties){
			var parsed = this.prepare(this.element, p, properties[p]);
			from[p] = parsed.from;
			to[p] = parsed.to;
		}
		return this.parent(from, to);
	}

});

Element.Properties.morph = {

	set: function(options){
		var morph = this.retrieve('morph');
		if (morph) morph.cancel();
		return this.eliminate('morph').store('morph:options', $extend({link: 'cancel'}, options));
	},

	get: function(options){
		if (options || !this.retrieve('morph')){
			if (options || !this.retrieve('morph:options')) this.set('morph', options);
			this.store('morph', new Fx.Morph(this, this.retrieve('morph:options')));
		}
		return this.retrieve('morph');
	}

};

Element.implement({

	morph: function(props){
		this.get('morph').start(props);
		return this;
	}

});


/*
---

name: Fx.Transitions

description: Contains a set of advanced transitions to be used with any of the Fx Classes.

license: MIT-style license.

credits: Easing Equations by Robert Penner, <http://www.robertpenner.com/easing/>, modified and optimized to be used with MooTools.

requires: Fx

provides: Fx.Transitions

...
*/

Fx.implement({

	getTransition: function(){
		var trans = this.options.transition || Fx.Transitions.Sine.easeInOut;
		if (typeof trans == 'string'){
			var data = trans.split(':');
			trans = Fx.Transitions;
			trans = trans[data[0]] || trans[data[0].capitalize()];
			if (data[1]) trans = trans['ease' + data[1].capitalize() + (data[2] ? data[2].capitalize() : '')];
		}
		return trans;
	}

});

Fx.Transition = function(transition, params){
	params = $splat(params);
	return $extend(transition, {
		easeIn: function(pos){
			return transition(pos, params);
		},
		easeOut: function(pos){
			return 1 - transition(1 - pos, params);
		},
		easeInOut: function(pos){
			return (pos <= 0.5) ? transition(2 * pos, params) / 2 : (2 - transition(2 * (1 - pos), params)) / 2;
		}
	});
};

Fx.Transitions = new Hash({

	linear: $arguments(0)

});

Fx.Transitions.extend = function(transitions){
	for (var transition in transitions) Fx.Transitions[transition] = new Fx.Transition(transitions[transition]);
};

Fx.Transitions.extend({

	Pow: function(p, x){
		return Math.pow(p, x[0] || 6);
	},

	Expo: function(p){
		return Math.pow(2, 8 * (p - 1));
	},

	Circ: function(p){
		return 1 - Math.sin(Math.acos(p));
	},

	Sine: function(p){
		return 1 - Math.sin((1 - p) * Math.PI / 2);
	},

	Back: function(p, x){
		x = x[0] || 1.618;
		return Math.pow(p, 2) * ((x + 1) * p - x);
	},

	Bounce: function(p){
		var value;
		for (var a = 0, b = 1; 1; a += b, b /= 2){
			if (p >= (7 - 4 * a) / 11){
				value = b * b - Math.pow((11 - 6 * a - 11 * p) / 4, 2);
				break;
			}
		}
		return value;
	},

	Elastic: function(p, x){
		return Math.pow(2, 10 * --p) * Math.cos(20 * p * Math.PI * (x[0] || 1) / 3);
	}

});

['Quad', 'Cubic', 'Quart', 'Quint'].each(function(transition, i){
	Fx.Transitions[transition] = new Fx.Transition(function(p){
		return Math.pow(p, [i + 2]);
	});
});


/*
---

name: Fx.Tween

description: Formerly Fx.Style, effect to transition any CSS property for an element.

license: MIT-style license.

requires: Fx.CSS

provides: [Fx.Tween, Element.fade, Element.highlight]

...
*/

Fx.Tween = new Class({

	Extends: Fx.CSS,

	initialize: function(element, options){
		this.element = this.subject = document.id(element);
		this.parent(options);
	},

	set: function(property, now){
		if (arguments.length == 1){
			now = property;
			property = this.property || this.options.property;
		}
		this.render(this.element, property, now, this.options.unit);
		return this;
	},

	start: function(property, from, to){
		if (!this.check(property, from, to)) return this;
		var args = Array.flatten(arguments);
		this.property = this.options.property || args.shift();
		var parsed = this.prepare(this.element, this.property, args);
		return this.parent(parsed.from, parsed.to);
	}

});

Element.Properties.tween = {

	set: function(options){
		var tween = this.retrieve('tween');
		if (tween) tween.cancel();
		return this.eliminate('tween').store('tween:options', $extend({link: 'cancel'}, options));
	},

	get: function(options){
		if (options || !this.retrieve('tween')){
			if (options || !this.retrieve('tween:options')) this.set('tween', options);
			this.store('tween', new Fx.Tween(this, this.retrieve('tween:options')));
		}
		return this.retrieve('tween');
	}

};

Element.implement({

	tween: function(property, from, to){
		this.get('tween').start(arguments);
		return this;
	},

	fade: function(how){
		var fade = this.get('tween'), o = 'opacity', toggle;
		how = $pick(how, 'toggle');
		switch (how){
			case 'in': fade.start(o, 1); break;
			case 'out': fade.start(o, 0); break;
			case 'show': fade.set(o, 1); break;
			case 'hide': fade.set(o, 0); break;
			case 'toggle':
				var flag = this.retrieve('fade:flag', this.get('opacity') == 1);
				fade.start(o, (flag) ? 0 : 1);
				this.store('fade:flag', !flag);
				toggle = true;
			break;
			default: fade.start(o, arguments);
		}
		if (!toggle) this.eliminate('fade:flag');
		return this;
	},

	highlight: function(start, end){
		if (!end){
			end = this.retrieve('highlight:original', this.getStyle('background-color'));
			end = (end == 'transparent') ? '#fff' : end;
		}
		var tween = this.get('tween');
		tween.start('background-color', start || '#ffff88', end).chain(function(){
			this.setStyle('background-color', this.retrieve('highlight:original'));
			tween.callChain();
		}.bind(this));
		return this;
	}

});


/*
---

name: Request

description: Powerful all purpose Request Class. Uses XMLHTTPRequest.

license: MIT-style license.

requires: [Element, Chain, Events, Options, Browser]

provides: Request

...
*/

var Request = new Class({

	Implements: [Chain, Events, Options],

	options: {/*
		onRequest: $empty,
		onComplete: $empty,
		onCancel: $empty,
		onSuccess: $empty,
		onFailure: $empty,
		onException: $empty,*/
		url: '',
		data: '',
		headers: {
			'X-Requested-With': 'XMLHttpRequest',
			'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
		},
		async: true,
		format: false,
		method: 'post',
		link: 'ignore',
		isSuccess: null,
		emulation: true,
		urlEncoded: true,
		encoding: 'utf-8',
		evalScripts: false,
		evalResponse: false,
		noCache: false
	},

	initialize: function(options){
		this.xhr = new Browser.Request();
		this.setOptions(options);
		this.options.isSuccess = this.options.isSuccess || this.isSuccess;
		this.headers = new Hash(this.options.headers);
	},

	onStateChange: function(){
		if (this.xhr.readyState != 4 || !this.running) return;
		this.running = false;
		this.status = 0;
		$try(function(){
			this.status = this.xhr.status;
		}.bind(this));
		this.xhr.onreadystatechange = $empty;
		if (this.options.isSuccess.call(this, this.status)){
			this.response = {text: this.xhr.responseText, xml: this.xhr.responseXML};
			this.success(this.response.text, this.response.xml);
		} else {
			this.response = {text: null, xml: null};
			this.failure();
		}
	},

	isSuccess: function(){
		return ((this.status >= 200) && (this.status < 300));
	},

	processScripts: function(text){
		if (this.options.evalResponse || (/(ecma|java)script/).test(this.getHeader('Content-type'))) return $exec(text);
		return text.stripScripts(this.options.evalScripts);
	},

	success: function(text, xml){
		this.onSuccess(this.processScripts(text), xml);
	},

	onSuccess: function(){
		this.fireEvent('complete', arguments).fireEvent('success', arguments).callChain();
	},

	failure: function(){
		this.onFailure();
	},

	onFailure: function(){
		this.fireEvent('complete').fireEvent('failure', this.xhr);
	},

	setHeader: function(name, value){
		this.headers.set(name, value);
		return this;
	},

	getHeader: function(name){
		return $try(function(){
			return this.xhr.getResponseHeader(name);
		}.bind(this));
	},

	check: function(){
		if (!this.running) return true;
		switch (this.options.link){
			case 'cancel': this.cancel(); return true;
			case 'chain': this.chain(this.caller.bind(this, arguments)); return false;
		}
		return false;
	},

	send: function(options){
		if (!this.check(options)) return this;
		this.running = true;

		var type = $type(options);
		if (type == 'string' || type == 'element') options = {data: options};

		var old = this.options;
		options = $extend({data: old.data, url: old.url, method: old.method}, options);
		var data = options.data, url = String(options.url), method = options.method.toLowerCase();

		switch ($type(data)){
			case 'element': data = document.id(data).toQueryString(); break;
			case 'object': case 'hash': data = Hash.toQueryString(data);
		}

		if (this.options.format){
			var format = 'format=' + this.options.format;
			data = (data) ? format + '&' + data : format;
		}

		if (this.options.emulation && !['get', 'post'].contains(method)){
			var _method = '_method=' + method;
			data = (data) ? _method + '&' + data : _method;
			method = 'post';
		}

		if (this.options.urlEncoded && method == 'post'){
			var encoding = (this.options.encoding) ? '; charset=' + this.options.encoding : '';
			this.headers.set('Content-type', 'application/x-www-form-urlencoded' + encoding);
		}

		if (this.options.noCache){
			var noCache = 'noCache=' + new Date().getTime();
			data = (data) ? noCache + '&' + data : noCache;
		}

		var trimPosition = url.lastIndexOf('/');
		if (trimPosition > -1 && (trimPosition = url.indexOf('#')) > -1) url = url.substr(0, trimPosition);

		if (data && method == 'get'){
			url = url + (url.contains('?') ? '&' : '?') + data;
			data = null;
		}

		this.xhr.open(method.toUpperCase(), url, this.options.async);

		this.xhr.onreadystatechange = this.onStateChange.bind(this);

		this.headers.each(function(value, key){
			try {
				this.xhr.setRequestHeader(key, value);
			} catch (e){
				this.fireEvent('exception', [key, value]);
			}
		}, this);

		this.fireEvent('request');
		this.xhr.send(data);
		if (!this.options.async) this.onStateChange();
		return this;
	},

	cancel: function(){
		if (!this.running) return this;
		this.running = false;
		this.xhr.abort();
		this.xhr.onreadystatechange = $empty;
		this.xhr = new Browser.Request();
		this.fireEvent('cancel');
		return this;
	}

});

(function(){

var methods = {};
['get', 'post', 'put', 'delete', 'GET', 'POST', 'PUT', 'DELETE'].each(function(method){
	methods[method] = function(){
		var params = Array.link(arguments, {url: String.type, data: $defined});
		return this.send($extend(params, {method: method}));
	};
});

Request.implement(methods);

})();

Element.Properties.send = {

	set: function(options){
		var send = this.retrieve('send');
		if (send) send.cancel();
		return this.eliminate('send').store('send:options', $extend({
			data: this, link: 'cancel', method: this.get('method') || 'post', url: this.get('action')
		}, options));
	},

	get: function(options){
		if (options || !this.retrieve('send')){
			if (options || !this.retrieve('send:options')) this.set('send', options);
			this.store('send', new Request(this.retrieve('send:options')));
		}
		return this.retrieve('send');
	}

};

Element.implement({

	send: function(url){
		var sender = this.get('send');
		sender.send({data: this, url: url || sender.options.url});
		return this;
	}

});


/*
---

name: Request.HTML

description: Extends the basic Request Class with additional methods for interacting with HTML responses.

license: MIT-style license.

requires: [Request, Element]

provides: Request.HTML

...
*/

Request.HTML = new Class({

	Extends: Request,

	options: {
		update: false,
		append: false,
		evalScripts: true,
		filter: false
	},

	processHTML: function(text){
		var match = text.match(/<body[^>]*>([\s\S]*?)<\/body>/i);
		text = (match) ? match[1] : text;

		var container = new Element('div');

		return $try(function(){
			var root = '<root>' + text + '</root>', doc;
			if (Browser.Engine.trident){
				doc = new ActiveXObject('Microsoft.XMLDOM');
				doc.async = false;
				doc.loadXML(root);
			} else {
				doc = new DOMParser().parseFromString(root, 'text/xml');
			}
			root = doc.getElementsByTagName('root')[0];
			if (!root) return null;
			for (var i = 0, k = root.childNodes.length; i < k; i++){
				var child = Element.clone(root.childNodes[i], true, true);
				if (child) container.grab(child);
			}
			return container;
		}) || container.set('html', text);
	},

	success: function(text){
		var options = this.options, response = this.response;

		response.html = text.stripScripts(function(script){
			response.javascript = script;
		});

		var temp = this.processHTML(response.html);

		response.tree = temp.childNodes;
		response.elements = temp.getElements('*');

		if (options.filter) response.tree = response.elements.filter(options.filter);
		if (options.update) document.id(options.update).empty().set('html', response.html);
		else if (options.append) document.id(options.append).adopt(temp.getChildren());
		if (options.evalScripts) $exec(response.javascript);

		this.onSuccess(response.tree, response.elements, response.html, response.javascript);
	}

});

Element.Properties.load = {

	set: function(options){
		var load = this.retrieve('load');
		if (load) load.cancel();
		return this.eliminate('load').store('load:options', $extend({data: this, link: 'cancel', update: this, method: 'get'}, options));
	},

	get: function(options){
		if (options || ! this.retrieve('load')){
			if (options || !this.retrieve('load:options')) this.set('load', options);
			this.store('load', new Request.HTML(this.retrieve('load:options')));
		}
		return this.retrieve('load');
	}

};

Element.implement({

	load: function(){
		this.get('load').send(Array.link(arguments, {data: Object.type, url: String.type}));
		return this;
	}

});


/*
---

name: JSON

description: JSON encoder and decoder.

license: MIT-style license.

see: <http://www.json.org/>

requires: [Array, String, Number, Function, Hash]

provides: JSON

...
*/

var JSON = new Hash(this.JSON && {
	stringify: JSON.stringify,
	parse: JSON.parse
}).extend({
	
	$specialChars: {'\b': '\\b', '\t': '\\t', '\n': '\\n', '\f': '\\f', '\r': '\\r', '"' : '\\"', '\\': '\\\\'},

	$replaceChars: function(chr){
		return JSON.$specialChars[chr] || '\\u00' + Math.floor(chr.charCodeAt() / 16).toString(16) + (chr.charCodeAt() % 16).toString(16);
	},

	encode: function(obj){
		switch ($type(obj)){
			case 'string':
				return '"' + obj.replace(/[\x00-\x1f\\"]/g, JSON.$replaceChars) + '"';
			case 'array':
				return '[' + String(obj.map(JSON.encode).clean()) + ']';
			case 'object': case 'hash':
				var string = [];
				Hash.each(obj, function(value, key){
					var json = JSON.encode(value);
					if (json) string.push(JSON.encode(key) + ':' + json);
				});
				return '{' + string + '}';
			case 'number': case 'boolean': return String(obj);
			case false: return 'null';
		}
		return null;
	},

	decode: function(string, secure){
		if ($type(string) != 'string' || !string.length) return null;
		if (secure && !(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(string.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, ''))) return null;
		return eval('(' + string + ')');
	}

});


/*
---

name: Request.JSON

description: Extends the basic Request Class with additional methods for sending and receiving JSON data.

license: MIT-style license.

requires: [Request, JSON]

provides: [Request.JSON]

...
*/

Request.JSON = new Class({

	Extends: Request,

	options: {
		secure: true
	},

	initialize: function(options){
		this.parent(options);
		this.headers.extend({'Accept': 'application/json', 'X-Request': 'JSON'});
	},

	success: function(text){
		this.response.json = JSON.decode(text, this.options.secure);
		this.onSuccess(this.response.json, text);
	}

});


/*
---

name: Cookie

description: Class for creating, reading, and deleting browser Cookies.

license: MIT-style license.

credits: Based on the functions by Peter-Paul Koch (http://quirksmode.org).

requires: Options

provides: Cookie

...
*/

var Cookie = new Class({

	Implements: Options,

	options: {
		path: false,
		domain: false,
		duration: false,
		secure: false,
		document: document
	},

	initialize: function(key, options){
		this.key = key;
		this.setOptions(options);
	},

	write: function(value){
		value = encodeURIComponent(value);
		if (this.options.domain) value += '; domain=' + this.options.domain;
		if (this.options.path) value += '; path=' + this.options.path;
		if (this.options.duration){
			var date = new Date();
			date.setTime(date.getTime() + this.options.duration * 24 * 60 * 60 * 1000);
			value += '; expires=' + date.toGMTString();
		}
		if (this.options.secure) value += '; secure';
		this.options.document.cookie = this.key + '=' + value;
		return this;
	},

	read: function(){
		var value = this.options.document.cookie.match('(?:^|;)\\s*' + this.key.escapeRegExp() + '=([^;]*)');
		return (value) ? decodeURIComponent(value[1]) : null;
	},

	dispose: function(){
		new Cookie(this.key, $merge(this.options, {duration: -1})).write('');
		return this;
	}

});

Cookie.write = function(key, value, options){
	return new Cookie(key, options).write(value);
};

Cookie.read = function(key){
	return new Cookie(key).read();
};

Cookie.dispose = function(key, options){
	return new Cookie(key, options).dispose();
};


/*
---

name: DomReady

description: Contains the custom event domready.

license: MIT-style license.

requires: Element.Event

provides: DomReady

...
*/

Element.Events.domready = {

	onAdd: function(fn){
		if (Browser.loaded) fn.call(this);
	}

};

(function(){

	var domready = function(){
		if (Browser.loaded) return;
		Browser.loaded = true;
		window.fireEvent('domready');
		document.fireEvent('domready');
	};
	
	window.addEvent('load', domready);

	if (Browser.Engine.trident){
		var temp = document.createElement('div');
		(function(){
			($try(function(){
				temp.doScroll(); // Technique by Diego Perini
				return document.id(temp).inject(document.body).set('html', 'temp').dispose();
			})) ? domready() : arguments.callee.delay(50);
		})();
	} else if (Browser.Engine.webkit && Browser.Engine.version < 525){
		(function(){
			(['loaded', 'complete'].contains(document.readyState)) ? domready() : arguments.callee.delay(50);
		})();
	} else {
		document.addEvent('DOMContentLoaded', domready);
	}

})();


/*
---

name: Selectors

description: Adds advanced CSS-style querying capabilities for targeting HTML Elements. Includes pseudo selectors.

license: MIT-style license.

requires: Element

provides: Selectors

...
*/

Native.implement([Document, Element], {

	getElements: function(expression, nocash){
		expression = expression.split(',');
		var items, local = {};
		for (var i = 0, l = expression.length; i < l; i++){
			var selector = expression[i], elements = Selectors.Utils.search(this, selector, local);
			if (i != 0 && elements.item) elements = $A(elements);
			items = (i == 0) ? elements : (items.item) ? $A(items).concat(elements) : items.concat(elements);
		}
		return new Elements(items, {ddup: (expression.length > 1), cash: !nocash});
	}

});

Element.implement({

	match: function(selector){
		if (!selector || (selector == this)) return true;
		var tagid = Selectors.Utils.parseTagAndID(selector);
		var tag = tagid[0], id = tagid[1];
		if (!Selectors.Filters.byID(this, id) || !Selectors.Filters.byTag(this, tag)) return false;
		var parsed = Selectors.Utils.parseSelector(selector);
		return (parsed) ? Selectors.Utils.filter(this, parsed, {}) : true;
	}

});

var Selectors = {Cache: {nth: {}, parsed: {}}};

Selectors.RegExps = {
	id: (/#([\w-]+)/),
	tag: (/^(\w+|\*)/),
	quick: (/^(\w+|\*)$/),
	splitter: (/\s*([+>~\s])\s*([a-zA-Z#.*:\[])/g),
	combined: (/\.([\w-]+)|\[(\w+)(?:([!*^$~|]?=)(["']?)([^\4]*?)\4)?\]|:([\w-]+)(?:\(["']?(.*?)?["']?\)|$)/g)
};

Selectors.Utils = {

	chk: function(item, uniques){
		if (!uniques) return true;
		var uid = $uid(item);
		if (!uniques[uid]) return uniques[uid] = true;
		return false;
	},

	parseNthArgument: function(argument){
		if (Selectors.Cache.nth[argument]) return Selectors.Cache.nth[argument];
		var parsed = argument.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);
		if (!parsed) return false;
		var inta = parseInt(parsed[1], 10);
		var a = (inta || inta === 0) ? inta : 1;
		var special = parsed[2] || false;
		var b = parseInt(parsed[3], 10) || 0;
		if (a != 0){
			b--;
			while (b < 1) b += a;
			while (b >= a) b -= a;
		} else {
			a = b;
			special = 'index';
		}
		switch (special){
			case 'n': parsed = {a: a, b: b, special: 'n'}; break;
			case 'odd': parsed = {a: 2, b: 0, special: 'n'}; break;
			case 'even': parsed = {a: 2, b: 1, special: 'n'}; break;
			case 'first': parsed = {a: 0, special: 'index'}; break;
			case 'last': parsed = {special: 'last-child'}; break;
			case 'only': parsed = {special: 'only-child'}; break;
			default: parsed = {a: (a - 1), special: 'index'};
		}

		return Selectors.Cache.nth[argument] = parsed;
	},

	parseSelector: function(selector){
		if (Selectors.Cache.parsed[selector]) return Selectors.Cache.parsed[selector];
		var m, parsed = {classes: [], pseudos: [], attributes: []};
		while ((m = Selectors.RegExps.combined.exec(selector))){
			var cn = m[1], an = m[2], ao = m[3], av = m[5], pn = m[6], pa = m[7];
			if (cn){
				parsed.classes.push(cn);
			} else if (pn){
				var parser = Selectors.Pseudo.get(pn);
				if (parser) parsed.pseudos.push({parser: parser, argument: pa});
				else parsed.attributes.push({name: pn, operator: '=', value: pa});
			} else if (an){
				parsed.attributes.push({name: an, operator: ao, value: av});
			}
		}
		if (!parsed.classes.length) delete parsed.classes;
		if (!parsed.attributes.length) delete parsed.attributes;
		if (!parsed.pseudos.length) delete parsed.pseudos;
		if (!parsed.classes && !parsed.attributes && !parsed.pseudos) parsed = null;
		return Selectors.Cache.parsed[selector] = parsed;
	},

	parseTagAndID: function(selector){
		var tag = selector.match(Selectors.RegExps.tag);
		var id = selector.match(Selectors.RegExps.id);
		return [(tag) ? tag[1] : '*', (id) ? id[1] : false];
	},

	filter: function(item, parsed, local){
		var i;
		if (parsed.classes){
			for (i = parsed.classes.length; i--; i){
				var cn = parsed.classes[i];
				if (!Selectors.Filters.byClass(item, cn)) return false;
			}
		}
		if (parsed.attributes){
			for (i = parsed.attributes.length; i--; i){
				var att = parsed.attributes[i];
				if (!Selectors.Filters.byAttribute(item, att.name, att.operator, att.value)) return false;
			}
		}
		if (parsed.pseudos){
			for (i = parsed.pseudos.length; i--; i){
				var psd = parsed.pseudos[i];
				if (!Selectors.Filters.byPseudo(item, psd.parser, psd.argument, local)) return false;
			}
		}
		return true;
	},

	getByTagAndID: function(ctx, tag, id){
		if (id){
			var item = (ctx.getElementById) ? ctx.getElementById(id, true) : Element.getElementById(ctx, id, true);
			return (item && Selectors.Filters.byTag(item, tag)) ? [item] : [];
		} else {
			return ctx.getElementsByTagName(tag);
		}
	},

	search: function(self, expression, local){
		var splitters = [];

		var selectors = expression.trim().replace(Selectors.RegExps.splitter, function(m0, m1, m2){
			splitters.push(m1);
			return ':)' + m2;
		}).split(':)');

		var items, filtered, item;

		for (var i = 0, l = selectors.length; i < l; i++){

			var selector = selectors[i];

			if (i == 0 && Selectors.RegExps.quick.test(selector)){
				items = self.getElementsByTagName(selector);
				continue;
			}

			var splitter = splitters[i - 1];

			var tagid = Selectors.Utils.parseTagAndID(selector);
			var tag = tagid[0], id = tagid[1];

			if (i == 0){
				items = Selectors.Utils.getByTagAndID(self, tag, id);
			} else {
				var uniques = {}, found = [];
				for (var j = 0, k = items.length; j < k; j++) found = Selectors.Getters[splitter](found, items[j], tag, id, uniques);
				items = found;
			}

			var parsed = Selectors.Utils.parseSelector(selector);

			if (parsed){
				filtered = [];
				for (var m = 0, n = items.length; m < n; m++){
					item = items[m];
					if (Selectors.Utils.filter(item, parsed, local)) filtered.push(item);
				}
				items = filtered;
			}

		}

		return items;

	}

};

Selectors.Getters = {

	' ': function(found, self, tag, id, uniques){
		var items = Selectors.Utils.getByTagAndID(self, tag, id);
		for (var i = 0, l = items.length; i < l; i++){
			var item = items[i];
			if (Selectors.Utils.chk(item, uniques)) found.push(item);
		}
		return found;
	},

	'>': function(found, self, tag, id, uniques){
		var children = Selectors.Utils.getByTagAndID(self, tag, id);
		for (var i = 0, l = children.length; i < l; i++){
			var child = children[i];
			if (child.parentNode == self && Selectors.Utils.chk(child, uniques)) found.push(child);
		}
		return found;
	},

	'+': function(found, self, tag, id, uniques){
		while ((self = self.nextSibling)){
			if (self.nodeType == 1){
				if (Selectors.Utils.chk(self, uniques) && Selectors.Filters.byTag(self, tag) && Selectors.Filters.byID(self, id)) found.push(self);
				break;
			}
		}
		return found;
	},

	'~': function(found, self, tag, id, uniques){
		while ((self = self.nextSibling)){
			if (self.nodeType == 1){
				if (!Selectors.Utils.chk(self, uniques)) break;
				if (Selectors.Filters.byTag(self, tag) && Selectors.Filters.byID(self, id)) found.push(self);
			}
		}
		return found;
	}

};

Selectors.Filters = {

	byTag: function(self, tag){
		return (tag == '*' || (self.tagName && self.tagName.toLowerCase() == tag));
	},

	byID: function(self, id){
		return (!id || (self.id && self.id == id));
	},

	byClass: function(self, klass){
		return (self.className && self.className.contains && self.className.contains(klass, ' '));
	},

	byPseudo: function(self, parser, argument, local){
		return parser.call(self, argument, local);
	},

	byAttribute: function(self, name, operator, value){
		var result = Element.prototype.getProperty.call(self, name);
		if (!result) return (operator == '!=');
		if (!operator || value == undefined) return true;
		switch (operator){
			case '=': return (result == value);
			case '*=': return (result.contains(value));
			case '^=': return (result.substr(0, value.length) == value);
			case '$=': return (result.substr(result.length - value.length) == value);
			case '!=': return (result != value);
			case '~=': return result.contains(value, ' ');
			case '|=': return result.contains(value, '-');
		}
		return false;
	}

};

Selectors.Pseudo = new Hash({

	// w3c pseudo selectors

	checked: function(){
		return this.checked;
	},
	
	empty: function(){
		return !(this.innerText || this.textContent || '').length;
	},

	not: function(selector){
		return !Element.match(this, selector);
	},

	contains: function(text){
		return (this.innerText || this.textContent || '').contains(text);
	},

	'first-child': function(){
		return Selectors.Pseudo.index.call(this, 0);
	},

	'last-child': function(){
		var element = this;
		while ((element = element.nextSibling)){
			if (element.nodeType == 1) return false;
		}
		return true;
	},

	'only-child': function(){
		var prev = this;
		while ((prev = prev.previousSibling)){
			if (prev.nodeType == 1) return false;
		}
		var next = this;
		while ((next = next.nextSibling)){
			if (next.nodeType == 1) return false;
		}
		return true;
	},

	'nth-child': function(argument, local){
		argument = (argument == undefined) ? 'n' : argument;
		var parsed = Selectors.Utils.parseNthArgument(argument);
		if (parsed.special != 'n') return Selectors.Pseudo[parsed.special].call(this, parsed.a, local);
		var count = 0;
		local.positions = local.positions || {};
		var uid = $uid(this);
		if (!local.positions[uid]){
			var self = this;
			while ((self = self.previousSibling)){
				if (self.nodeType != 1) continue;
				count ++;
				var position = local.positions[$uid(self)];
				if (position != undefined){
					count = position + count;
					break;
				}
			}
			local.positions[uid] = count;
		}
		return (local.positions[uid] % parsed.a == parsed.b);
	},

	// custom pseudo selectors

	index: function(index){
		var element = this, count = 0;
		while ((element = element.previousSibling)){
			if (element.nodeType == 1 && ++count > index) return false;
		}
		return (count == index);
	},

	even: function(argument, local){
		return Selectors.Pseudo['nth-child'].call(this, '2n+1', local);
	},

	odd: function(argument, local){
		return Selectors.Pseudo['nth-child'].call(this, '2n', local);
	},
	
	selected: function(){
		return this.selected;
	},
	
	enabled: function(){
		return (this.disabled === false);
	}

});


/*
---

name: Swiff

description: Wrapper for embedding SWF movies. Supports External Interface Communication.

license: MIT-style license.

credits: Flash detection & Internet Explorer + Flash Player 9 fix inspired by SWFObject.

requires: [Options, $util]

provides: Swiff

...
*/

var Swiff = new Class({

	Implements: [Options],

	options: {
		id: null,
		height: 1,
		width: 1,
		container: null,
		properties: {},
		params: {
			quality: 'high',
			allowScriptAccess: 'always',
			wMode: 'transparent',
			swLiveConnect: true
		},
		callBacks: {},
		vars: {}
	},

	toElement: function(){
		return this.object;
	},

	initialize: function(path, options){
		this.instance = 'Swiff_' + $time();

		this.setOptions(options);
		options = this.options;
		var id = this.id = options.id || this.instance;
		var container = document.id(options.container);

		Swiff.CallBacks[this.instance] = {};

		var params = options.params, vars = options.vars, callBacks = options.callBacks;
		var properties = $extend({height: options.height, width: options.width}, options.properties);

		var self = this;

		for (var callBack in callBacks){
			Swiff.CallBacks[this.instance][callBack] = (function(option){
				return function(){
					return option.apply(self.object, arguments);
				};
			})(callBacks[callBack]);
			vars[callBack] = 'Swiff.CallBacks.' + this.instance + '.' + callBack;
		}

		params.flashVars = Hash.toQueryString(vars);
		if (Browser.Engine.trident){
			properties.classid = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';
			params.movie = path;
		} else {
			properties.type = 'application/x-shockwave-flash';
			properties.data = path;
		}
		var build = '<object id="' + id + '"';
		for (var property in properties) build += ' ' + property + '="' + properties[property] + '"';
		build += '>';
		for (var param in params){
			if (params[param]) build += '<param name="' + param + '" value="' + params[param] + '" />';
		}
		build += '</object>';
		this.object = ((container) ? container.empty() : new Element('div')).set('html', build).firstChild;
	},

	replaces: function(element){
		element = document.id(element, true);
		element.parentNode.replaceChild(this.toElement(), element);
		return this;
	},

	inject: function(element){
		document.id(element, true).appendChild(this.toElement());
		return this;
	},

	remote: function(){
		return Swiff.remote.apply(Swiff, [this.toElement()].extend(arguments));
	}

});

Swiff.CallBacks = {};

Swiff.remote = function(obj, fn){
	var rs = obj.CallFunction('<invoke name="' + fn + '" returntype="javascript">' + __flash__argumentsToXML(arguments, 2) + '</invoke>');
	return eval(rs);
};


var ImagesLoader = new Class({

	initialize: function() {
		this.items = [];
		this.bind = {
			loaded: (function() { this.loaded.delay(100, this); }).bind(this),
			ready: this.ready.bind(this)
		};
		this.current = -1;
		this.picFxDelay = 250;
		this.finishLoading = false;
		this.parseURIoptions();
	  window.addEvent('load', this.bind.ready);
	  if (typeof(stats_enabled) != 'undefined' && stats_enabled) {
	    window.addEvent('domready', this.stat_domready.bind(this));
	  }
	},
	
	parseURIoptions: function() {
	  var options = {};
	  var qs = document.location.search.replace(/^\?+/g, '');
	  var vars = qs.split('&');
	  vars.each(function(val) {
      var values = val.split('=');
      if (values.length > 1) {
        options[decodeURIComponent(values[0]).toLowerCase()] = decodeURIComponent(values[1]);
      }
	  });
	  if (options['picfxdelay']) {
	    var val = parseFloat(options['picfxdelay']);
	    this.picFxDelay = !isNaN(val) ? parseInt(val * 1000) : this.picFxDelay;
	  }
	  //console.log(this.picFxDelay);
	},
	
  ready: function() {
    if (!$('works')) return;
    
    this.images = [];
    this.ids = [];
    // Fix for Opera 9.6
    $('works').getElements('.image').each(function(div) {
      var a = $(div).getElement('a');
      if (a) {
        var id = a.getAttribute('data-rel');
        if (id) {
          this.images.push({id: id, url: a.href});
          this.ids.push(id);
        }
      }
    }.bind(this));

    this.next();
  },
  
  findById: function(id) {
    var result = {id: 0, url: ''};
    this.images.every(function(info) {
      if (info.id == id) {
        result = info;
        return false;
      }
      return true;
    });
    return result.url;
  },
  
  next: function() {
    this.current++;
    if (this.current >= this.ids.length) this.finish();
    if (!this.ids[this.current]) return;
    
    var id = this.ids[this.current];
    var url = this.findById(id);

    var div = $('works').getElement('#p_' + id + ' .image');
    if (!div) return;
    
    //div.addClass('image-loading');
    
    var img = new Element('img', {id: 'img_' + id}).setStyle('opacity', 0);
    img.onload = this.bind.loaded;
    img.src = url;
    div.empty().adopt(img);
    
    // DEBUG
    /*(function() {
      var img = new Element('img', {id: 'img_' + id}).setStyle('opacity', 0);
      img.onload = this.bind.loaded;
      img.src = url;
      div.empty().adopt(img);
    }.bind(this)).delay(900, this);*/
  },
  
  loaded: function() {
    if (this.finishLoading) return;
    if (this.ids[this.current]) {
      var id = this.ids[this.current];
      var div = $('works').getElement('#p_' + id + ' .image');
      if (div) {
        div.getParent().getParent().removeClass('image-loading').addClass('image-loaded');

        var img = div.getElement('img');
        if (img) {
          img.onload = '';
          // IE: fix loading previews
          img.setStyles({'width': 'auto', 'height': 'auto'});
          //img.effect('opacity', {duration: this.picFxDelay}).start(1);
          img.setStyle('opacity', 1);
        }
      }
    }
   
    this.next();
  },

  stat_domready: function() {
    try {
      new Request({url: '/track_ready/'}).send();
    } catch(e) { console.log(e); }
  },

  finish: function() {
    this.finishLoading = true;
    try {

      //alert('Loaded!');
      if (typeof(stats_enabled) != 'undefined' && stats_enabled) {
        new Request({url: '/track_stats/'}).send();
      }
      
    } catch(e) { console.log(e); }
  }

});

var loader = new ImagesLoader();

var preview;

var PreviewHelper = new Class({

  Implements: [Options],
  
  options: {
    video_width: 0,
    video_height: 0
  },
  
  loading: false,
  
  initialize: function(options) {
    this.setOptions(options);
  },

  next: function(id) {
    var media = $('media-' + id + '-previews');
    if (!media) return;
    var current = media.getElement('.current');
    if (!current) return;
    
    var next = current.getNext();
    if (!next || next.hasClass('clear')) {
      next = media.getFirst();
    }
    if (!next) return;
    
    var link = next.getElement('a');
    if (!link) return;
    
    //link.fireEvent('click');
    // Patch on fly and call
    try {
      var code = link.getAttribute('onclick');
      if (typeof(code) == 'function') {
        code.apply(link);
      } else {
        code = code.replace('this.blur();', '');
        eval(code);
      }
    } catch(e) {}
  },

  load: function(id, media_id, type, content) {
    if (this.loading) return;
    container = $('media_' + id);
    if (!container) return;
    
    this.loading = true;
    
    // switch preview
    try {                
      $('preview_' + id + '_' + media_id).getParent().getChildren().each(function(el) {
        if (el.id == 'preview_' + id + '_' + media_id) {
          el.addClass('current');
        } else {
          el.removeClass('current');
        }
      }.bind(this));
    } catch(e) {}
    
    var prev = container.getElement('.current-media');
    var next = container.getElement('#media_' + id + '_' + media_id);

    container.setStyles({'overflow': 'hidden', 'height': prev.offsetHeight});
    container.getParent().removeClass('image-loaded').addClass('image-loading');
    new Fx.Tween(container, {
      duration: 150,
      onComplete: function() {
        if (!next) {
          next = this.createMedia(container, id, media_id, type, content);
          next.setStyle('opacity', 1);
          prev.setStyle('display', 'none').removeClass('current-media');
          if (type == 'image') return;
        } else {
          prev.setStyle('display', 'none').removeClass('current-media');
        }
        next.setStyle('display', 'block').addClass('current-media');
        //next.setStyle('opacity', 1);
        //next.tween('opacity', 1);
        new Fx.Morph(container, {
          duration: 150,
          onComplete: function() {
            container.setStyles({'overflow': 'visible', 'height': ''});
            container.getParent().addClass('image-loaded').removeClass('image-loading');
            this.loading = false;
          }.bind(this)
        }).start({
          'height': next.clientHeight,
          'opacity': 1
        });
      }.bind(this)
    }).start('opacity', 0);
    
  },
  
  createMedia: function(container, id, media_id, type, content) {
    switch(type) {
      case 'image':
        var img = new Element('img', {'src': content});
        var el = new Element('div', {'id': 'media_' + id + '_' + media_id}).
          setStyle('opacity', 0.1).
          addClass('image').
          adopt(img).
          setStyle('display', 'block').addClass('current-media').
          addEvent('click', this.next.bind(this, id)).
          inject(container);
          
        //img.addEvent('load', this.imageLoaded.bind(this, [container, img, el]));
        var self = this;
        img.addEvent('load', function() { self.imageLoaded(container, img, el); });
        return el;
        break;
      case 'html':
        return new Element('div', {'id': 'media_' + id + '_' + media_id}).
          setStyle('opacity', 0.1).
          addClass('html').
          set('html', content).
          addEvent('click', this.next.bind(this, id)).
          inject(container);
        break;
      case 'video':
        var video_html = '';
        if (content.test(/youtube\.com/i)) {
          video_html = '<object width="' + this.options.video_width + '" height="' + this.options.video_height + '" type="application/x-shockwave-flash" data="' + content + '">' +
                       '  <param name="movie" value="' + content + '" />' +
                       '  <param name="allowFullScreen" value="true" />' +
                       '  <param name="quality" value="high" />' +
                       '</object>';
        } else if (content.test(/vimeo.com/i)) {
          video_html = '<iframe src="' + content + '" width="' + this.options.video_width + '" height="' + this.options.video_height + '" frameborder="0" webkitAllowFullScreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowFullScreen="allowFullScreen"></iframe>';
        }
        return new Element('div', {'id': 'media_' + id + '_' + media_id, 'align': 'center'}).
          setStyle('opacity', 0.1).
          addClass('html').
          setStyle('height', this.options.video_height).
          setStyle('cursor', 'default').
          set('html', video_html).
          inject(container);
        break;
      case 'flash':
        return new Element('div', {'id': 'media_' + id + '_' + media_id, 'align': 'center'}).
          setStyles({
            opacity: 0.1,
            zIndex: 1000,
            backgroundColor: '#ffffff'
          }).
          addClass('flash').
          setStyle('cursor', 'default').
          setStyle('height', content.height + 'px').
          set('html', '<object width="' + content.width + '" height="' + content.height + '" type="application/x-shockwave-flash" data="' + content.url + '">' +
                      '  <param name="movie" value="' + content.url + '" />' +
                      '  <param name="quality" value="high" />' +
                      '  <param name="qmode" value="opaque" />' +
                      '</object>').
          inject(container);
        break;
    }
  },
  
  imageLoaded: function(container, img, el) {
    el.tween('opacity', 1);
    new Fx.Morph(container, {
      duration: 150,
      onComplete: function() {
        container.setStyles({'overflow': 'visible', 'height': ''});
        container.getParent().addClass('image-loaded').removeClass('image-loading');
        this.loading = false;
      }.bind(this)
    }).start({
      'height': img.clientHeight,
      'opacity': 1
    });
  }
        
});

window.addEvent('domready', function() {
  preview = new PreviewHelper(helper_options);
});
//MooTools More, <http://mootools.net/more>. Copyright (c) 2006-2009 Aaron Newton <http://clientcide.com/>, Valerio Proietti <http://mad4milk.net> & the MooTools team <http://mootools.net/developers>, MIT Style License.

/*
---

script: More.js

name: More

description: MooTools More

license: MIT-style license

requires:
  - Core/MooTools

provides: [MooTools.More]

...
*/

MooTools.More = {
	'version': '1.2.5.1',
	'build': '254884f2b83651bf95260eed5c6cceb838e22d8e'
};


/*
---

script: MooTools.Lang.js

name: MooTools.Lang

description: Provides methods for localization.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Events
  - /MooTools.More

provides: [Lang]

...
*/

(function(){

	var data = {
		language: 'en-US',
		languages: {
			'en-US': {}
		},
		cascades: ['en-US']
	};
	
	var cascaded;

	MooTools.lang = new Events();

	$extend(MooTools.lang, {

		setLanguage: function(lang){
			if (!data.languages[lang]) return this;
			data.language = lang;
			this.load();
			this.fireEvent('langChange', lang);
			return this;
		},

		load: function() {
			var langs = this.cascade(this.getCurrentLanguage());
			cascaded = {};
			$each(langs, function(set, setName){
				cascaded[setName] = this.lambda(set);
			}, this);
		},

		getCurrentLanguage: function(){
			return data.language;
		},

		addLanguage: function(lang){
			data.languages[lang] = data.languages[lang] || {};
			return this;
		},

		cascade: function(lang){
			var cascades = (data.languages[lang] || {}).cascades || [];
			cascades.combine(data.cascades);
			cascades.erase(lang).push(lang);
			var langs = cascades.map(function(lng){
				return data.languages[lng];
			}, this);
			return $merge.apply(this, langs);
		},

		lambda: function(set) {
			(set || {}).get = function(key, args){
				return $lambda(set[key]).apply(this, $splat(args));
			};
			return set;
		},

		get: function(set, key, args){
			if (cascaded && cascaded[set]) return (key ? cascaded[set].get(key, args) : cascaded[set]);
		},

		set: function(lang, set, members){
			this.addLanguage(lang);
			langData = data.languages[lang];
			if (!langData[set]) langData[set] = {};
			$extend(langData[set], members);
			if (lang == this.getCurrentLanguage()){
				this.load();
				this.fireEvent('langChange', lang);
			}
			return this;
		},

		list: function(){
			return Hash.getKeys(data.languages);
		}

	});

})();


/*
---

script: Log.js

name: Log

description: Provides basic logging functionality for plugins to implement.

license: MIT-style license

authors:
  - Guillermo Rauch
  - Thomas Aylott
  - Scott Kyle

requires:
  - Core/Class
  - /MooTools.More

provides: [Log]

...
*/

(function(){

var global = this;

var log = function(){
	if (global.console && console.log){
		try {
			console.log.apply(console, arguments);
		} catch(e) {
			console.log(Array.slice(arguments));
		}
	} else {
		Log.logged.push(arguments);
	}
	return this;
};

var disabled = function(){
	this.logged.push(arguments);
	return this;
};

this.Log = new Class({
	
	logged: [],
	
	log: disabled,
	
	resetLog: function(){
		this.logged.empty();
		return this;
	},

	enableLog: function(){
		this.log = log;
		this.logged.each(function(args){
			this.log.apply(this, args);
		}, this);
		return this.resetLog();
	},

	disableLog: function(){
		this.log = disabled;
		return this;
	}
	
});

Log.extend(new Log).enableLog();

// legacy
Log.logger = function(){
	return this.log.apply(this, arguments);
};

})();


/*
---

script: Class.Refactor.js

name: Class.Refactor

description: Extends a class onto itself with new property, preserving any items attached to the class's namespace.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Class
  - /MooTools.More

# Some modules declare themselves dependent on Class.Refactor
provides: [Class.refactor, Class.Refactor]

...
*/

Class.refactor = function(original, refactors){

	$each(refactors, function(item, name){
		var origin = original.prototype[name];
		if (origin && (origin = origin._origin ? origin._origin: origin) && typeof item == 'function') original.implement(name, function(){
			var old = this.previous;
			this.previous = origin;
			var value = item.apply(this, arguments);
			this.previous = old;
			return value;
		}); else original.implement(name, item);
	});

	return original;

};


/*
---

script: Class.Binds.js

name: Class.Binds

description: Automagically binds specified methods in a class to the instance of the class.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Class
  - /MooTools.More

provides: [Class.Binds]

...
*/

Class.Mutators.Binds = function(binds){
    return binds;
};

Class.Mutators.initialize = function(initialize){
	return function(){
		$splat(this.Binds).each(function(name){
			var original = this[name];
			if (original) this[name] = original.bind(this);
		}, this);
		return initialize.apply(this, arguments);
	};
};


/*
---

script: Class.Occlude.js

name: Class.Occlude

description: Prevents a class from being applied to a DOM element twice.

license: MIT-style license.

authors:
  - Aaron Newton

requires: 
  - Core/Class
  - Core/Element
  - /MooTools.More

provides: [Class.Occlude]

...
*/

Class.Occlude = new Class({

	occlude: function(property, element){
		element = document.id(element || this.element);
		var instance = element.retrieve(property || this.property);
		if (instance && !$defined(this.occluded))
			return this.occluded = instance;

		this.occluded = false;
		element.store(property || this.property, this);
		return this.occluded;
	}

});


/*
---

script: Chain.Wait.js

name: Chain.Wait

description: value, Adds a method to inject pauses between chained events.

license: MIT-style license.

authors:
  - Aaron Newton

requires: 
  - Core/Chain
  - Core/Element
  - Core/Fx
  - /MooTools.More

provides: [Chain.Wait]

...
*/

(function(){

	var wait = {
		wait: function(duration){
			return this.chain(function(){
				this.callChain.delay($pick(duration, 500), this);
			}.bind(this));
		}
	};

	Chain.implement(wait);

	if (window.Fx){
		Fx.implement(wait);
		['Css', 'Tween', 'Elements'].each(function(cls){
			if (Fx[cls]) Fx[cls].implement(wait);
		});
	}

	Element.implement({
		chains: function(effects){
			$splat($pick(effects, ['tween', 'morph', 'reveal'])).each(function(effect){
				effect = this.get(effect);
				if (!effect) return;
				effect.setOptions({
					link:'chain'
				});
			}, this);
			return this;
		},
		pauseFx: function(duration, effect){
			this.chains(effect).get($pick(effect, 'tween')).wait(duration);
			return this;
		}
	});

})();


/*
---

script: Array.Extras.js

name: Array.Extras

description: Extends the Array native object to include useful methods to work with arrays.

license: MIT-style license

authors:
  - Christoph Pojer

requires:
  - Core/Array

provides: [Array.Extras]

...
*/
Array.implement({

	min: function(){
		return Math.min.apply(null, this);
	},

	max: function(){
		return Math.max.apply(null, this);
	},

	average: function(){
		return this.length ? this.sum() / this.length : 0;
	},

	sum: function(){
		var result = 0, l = this.length;
		if (l){
			do {
				result += this[--l];
			} while (l);
		}
		return result;
	},

	unique: function(){
		return [].combine(this);
	},

	shuffle: function(){
		for (var i = this.length; i && --i;){
			var temp = this[i], r = Math.floor(Math.random() * ( i + 1 ));
			this[i] = this[r];
			this[r] = temp;
		}
		return this;
	}

});

/*
---

script: Date.js

name: Date

description: Extends the Date native object to include methods useful in managing dates.

license: MIT-style license

authors:
  - Aaron Newton
  - Nicholas Barthelemy - https://svn.nbarthelemy.com/date-js/
  - Harald Kirshner - mail [at] digitarald.de; http://digitarald.de
  - Scott Kyle - scott [at] appden.com; http://appden.com

requires:
  - Core/Array
  - Core/String
  - Core/Number
  - /Lang
  - /Date.English.US
  - /MooTools.More

provides: [Date]

...
*/

(function(){

var Date = this.Date;

if (!Date.now) Date.now = $time;

Date.Methods = {
	ms: 'Milliseconds',
	year: 'FullYear',
	min: 'Minutes',
	mo: 'Month',
	sec: 'Seconds',
	hr: 'Hours'
};

['Date', 'Day', 'FullYear', 'Hours', 'Milliseconds', 'Minutes', 'Month', 'Seconds', 'Time', 'TimezoneOffset',
	'Week', 'Timezone', 'GMTOffset', 'DayOfYear', 'LastMonth', 'LastDayOfMonth', 'UTCDate', 'UTCDay', 'UTCFullYear',
	'AMPM', 'Ordinal', 'UTCHours', 'UTCMilliseconds', 'UTCMinutes', 'UTCMonth', 'UTCSeconds', 'UTCMilliseconds'].each(function(method){
	Date.Methods[method.toLowerCase()] = method;
});

var pad = function(what, length){
	return new Array(length - String(what).length + 1).join('0') + what;
};

Date.implement({

	set: function(prop, value){
		switch ($type(prop)){
			case 'object':
				for (var p in prop) this.set(p, prop[p]);
				break;
			case 'string':
				prop = prop.toLowerCase();
				var m = Date.Methods;
				if (m[prop]) this['set' + m[prop]](value);
		}
		return this;
	},

	get: function(prop){
		prop = prop.toLowerCase();
		var m = Date.Methods;
		if (m[prop]) return this['get' + m[prop]]();
		return null;
	},

	clone: function(){
		return new Date(this.get('time'));
	},

	increment: function(interval, times){
		interval = interval || 'day';
		times = $pick(times, 1);

		switch (interval){
			case 'year':
				return this.increment('month', times * 12);
			case 'month':
				var d = this.get('date');
				this.set('date', 1).set('mo', this.get('mo') + times);
				return this.set('date', d.min(this.get('lastdayofmonth')));
			case 'week':
				return this.increment('day', times * 7);
			case 'day':
				return this.set('date', this.get('date') + times);
		}

		if (!Date.units[interval]) throw new Error(interval + ' is not a supported interval');

		return this.set('time', this.get('time') + times * Date.units[interval]());
	},

	decrement: function(interval, times){
		return this.increment(interval, -1 * $pick(times, 1));
	},

	isLeapYear: function(){
		return Date.isLeapYear(this.get('year'));
	},

	clearTime: function(){
		return this.set({hr: 0, min: 0, sec: 0, ms: 0});
	},

	diff: function(date, resolution){
		if ($type(date) == 'string') date = Date.parse(date);
		
		return ((date - this) / Date.units[resolution || 'day'](3, 3)).round(); // non-leap year, 30-day month
	},

	getLastDayOfMonth: function(){
		return Date.daysInMonth(this.get('mo'), this.get('year'));
	},

	getDayOfYear: function(){
		return (Date.UTC(this.get('year'), this.get('mo'), this.get('date') + 1) 
			- Date.UTC(this.get('year'), 0, 1)) / Date.units.day();
	},

	getWeek: function(){
		return (this.get('dayofyear') / 7).ceil();
	},
	
	getOrdinal: function(day){
		return Date.getMsg('ordinal', day || this.get('date'));
	},

	getTimezone: function(){
		return this.toString()
			.replace(/^.*? ([A-Z]{3}).[0-9]{4}.*$/, '$1')
			.replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/, '$1$2$3');
	},

	getGMTOffset: function(){
		var off = this.get('timezoneOffset');
		return ((off > 0) ? '-' : '+') + pad((off.abs() / 60).floor(), 2) + pad(off % 60, 2);
	},

	setAMPM: function(ampm){
		ampm = ampm.toUpperCase();
		var hr = this.get('hr');
		if (hr > 11 && ampm == 'AM') return this.decrement('hour', 12);
		else if (hr < 12 && ampm == 'PM') return this.increment('hour', 12);
		return this;
	},

	getAMPM: function(){
		return (this.get('hr') < 12) ? 'AM' : 'PM';
	},

	parse: function(str){
		this.set('time', Date.parse(str));
		return this;
	},

	isValid: function(date) {
		return !isNaN((date || this).valueOf());
	},

	format: function(f){
		if (!this.isValid()) return 'invalid date';
		f = f || '%x %X';
		f = formats[f.toLowerCase()] || f; // replace short-hand with actual format
		var d = this;
		return f.replace(/%([a-z%])/gi,
			function($0, $1){
				switch ($1){
					case 'a': return Date.getMsg('days')[d.get('day')].substr(0, 3);
					case 'A': return Date.getMsg('days')[d.get('day')];
					case 'b': return Date.getMsg('months')[d.get('month')].substr(0, 3);
					case 'B': return Date.getMsg('months')[d.get('month')];
					case 'c': return d.toString();
					case 'd': return pad(d.get('date'), 2);
					case 'D': return d.get('date');
					case 'e': return d.get('date');
					case 'H': return pad(d.get('hr'), 2);
					case 'I': return ((d.get('hr') % 12) || 12);
					case 'j': return pad(d.get('dayofyear'), 3);
					case 'm': return pad((d.get('mo') + 1), 2);
					case 'M': return pad(d.get('min'), 2);
					case 'o': return d.get('ordinal');
					case 'p': return Date.getMsg(d.get('ampm'));
					case 's': return Math.round(d / 1000);
					case 'S': return pad(d.get('seconds'), 2);
					case 'U': return pad(d.get('week'), 2);
					case 'w': return d.get('day');
					case 'x': return d.format(Date.getMsg('shortDate'));
					case 'X': return d.format(Date.getMsg('shortTime'));
					case 'y': return d.get('year').toString().substr(2);
					case 'Y': return d.get('year');
					case 'T': return d.get('GMTOffset');
					case 'Z': return d.get('Timezone');
					case 'z': return pad(d.get('ms'), 3);
				}
				return $1;
			}
		);
	},

	toISOString: function(){
		return this.format('iso8601');
	}

});

Date.alias('toISOString', 'toJSON');
Date.alias('diff', 'compare');
Date.alias('format', 'strftime');

var formats = {
	db: '%Y-%m-%d %H:%M:%S',
	compact: '%Y%m%dT%H%M%S',
	iso8601: '%Y-%m-%dT%H:%M:%S%T',
	rfc822: '%a, %d %b %Y %H:%M:%S %Z',
	'short': '%d %b %H:%M',
	'long': '%B %d, %Y %H:%M'
};

var parsePatterns = [];
var nativeParse = Date.parse;

var parseWord = function(type, word, num){
	var ret = -1;
	var translated = Date.getMsg(type + 's');
	switch ($type(word)){
		case 'object':
			ret = translated[word.get(type)];
			break;
		case 'number':
			ret = translated[word];
			if (!ret) throw new Error('Invalid ' + type + ' index: ' + word);
			break;
		case 'string':
			var match = translated.filter(function(name){
				return this.test(name);
			}, new RegExp('^' + word, 'i'));
			if (!match.length)    throw new Error('Invalid ' + type + ' string');
			if (match.length > 1) throw new Error('Ambiguous ' + type);
			ret = match[0];
	}

	return (num) ? translated.indexOf(ret) : ret;
};

Date.extend({

	getMsg: function(key, args) {
		return MooTools.lang.get('Date', key, args);
	},

	units: {
		ms: $lambda(1),
		second: $lambda(1000),
		minute: $lambda(60000),
		hour: $lambda(3600000),
		day: $lambda(86400000),
		week: $lambda(608400000),
		month: function(month, year){
			var d = new Date;
			return Date.daysInMonth($pick(month, d.get('mo')), $pick(year, d.get('year'))) * 86400000;
		},
		year: function(year){
			year = year || new Date().get('year');
			return Date.isLeapYear(year) ? 31622400000 : 31536000000;
		}
	},

	daysInMonth: function(month, year){
		return [31, Date.isLeapYear(year) ? 29 : 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month];
	},

	isLeapYear: function(year){
		return ((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0);
	},

	parse: function(from){
		var t = $type(from);
		if (t == 'number') return new Date(from);
		if (t != 'string') return from;
		from = from.clean();
		if (!from.length) return null;

		var parsed;
		parsePatterns.some(function(pattern){
			var bits = pattern.re.exec(from);
			return (bits) ? (parsed = pattern.handler(bits)) : false;
		});

		return parsed || new Date(nativeParse(from));
	},

	parseDay: function(day, num){
		return parseWord('day', day, num);
	},

	parseMonth: function(month, num){
		return parseWord('month', month, num);
	},

	parseUTC: function(value){
		var localDate = new Date(value);
		var utcSeconds = Date.UTC(
			localDate.get('year'),
			localDate.get('mo'),
			localDate.get('date'),
			localDate.get('hr'),
			localDate.get('min'),
			localDate.get('sec'),
			localDate.get('ms')
		);
		return new Date(utcSeconds);
	},

	orderIndex: function(unit){
		return Date.getMsg('dateOrder').indexOf(unit) + 1;
	},

	defineFormat: function(name, format){
		formats[name] = format;
	},

	defineFormats: function(formats){
		for (var name in formats) Date.defineFormat(name, formats[name]);
	},

	parsePatterns: parsePatterns, // this is deprecated
	
	defineParser: function(pattern){
		parsePatterns.push((pattern.re && pattern.handler) ? pattern : build(pattern));
	},
	
	defineParsers: function(){
		Array.flatten(arguments).each(Date.defineParser);
	},
	
	define2DigitYearStart: function(year){
		startYear = year % 100;
		startCentury = year - startYear;
	}

});

var startCentury = 1900;
var startYear = 70;

var regexOf = function(type){
	return new RegExp('(?:' + Date.getMsg(type).map(function(name){
		return name.substr(0, 3);
	}).join('|') + ')[a-z]*');
};

var replacers = function(key){
	switch(key){
		case 'x': // iso8601 covers yyyy-mm-dd, so just check if month is first
			return ((Date.orderIndex('month') == 1) ? '%m[-./]%d' : '%d[-./]%m') + '([-./]%y)?';
		case 'X':
			return '%H([.:]%M)?([.:]%S([.:]%s)?)? ?%p? ?%T?';
	}
	return null;
};

var keys = {
	d: /[0-2]?[0-9]|3[01]/,
	H: /[01]?[0-9]|2[0-3]/,
	I: /0?[1-9]|1[0-2]/,
	M: /[0-5]?\d/,
	s: /\d+/,
	o: /[a-z]*/,
	p: /[ap]\.?m\.?/,
	y: /\d{2}|\d{4}/,
	Y: /\d{4}/,
	T: /Z|[+-]\d{2}(?::?\d{2})?/
};

keys.m = keys.I;
keys.S = keys.M;

var currentLanguage;

var recompile = function(language){
	currentLanguage = language;
	
	keys.a = keys.A = regexOf('days');
	keys.b = keys.B = regexOf('months');
	
	parsePatterns.each(function(pattern, i){
		if (pattern.format) parsePatterns[i] = build(pattern.format);
	});
};

var build = function(format){
	if (!currentLanguage) return {format: format};
	
	var parsed = [];
	var re = (format.source || format) // allow format to be regex
	 .replace(/%([a-z])/gi,
		function($0, $1){
			return replacers($1) || $0;
		}
	).replace(/\((?!\?)/g, '(?:') // make all groups non-capturing
	 .replace(/ (?!\?|\*)/g, ',? ') // be forgiving with spaces and commas
	 .replace(/%([a-z%])/gi,
		function($0, $1){
			var p = keys[$1];
			if (!p) return $1;
			parsed.push($1);
			return '(' + p.source + ')';
		}
	).replace(/\[a-z\]/gi, '[a-z\\u00c0-\\uffff]'); // handle unicode words

	return {
		format: format,
		re: new RegExp('^' + re + '$', 'i'),
		handler: function(bits){
			bits = bits.slice(1).associate(parsed);
			var date = new Date().clearTime(),
				year = bits.y || bits.Y;
			
			if (year != null) handle.call(date, 'y', year); // need to start in the right year
			if ('d' in bits) handle.call(date, 'd', 1);
			if ('m' in bits || 'b' in bits || 'B' in bits) handle.call(date, 'm', 1);
			
			for (var key in bits) handle.call(date, key, bits[key]);
			return date;
		}
	};
};

var handle = function(key, value){
	if (!value) return this;

	switch(key){
		case 'a': case 'A': return this.set('day', Date.parseDay(value, true));
		case 'b': case 'B': return this.set('mo', Date.parseMonth(value, true));
		case 'd': return this.set('date', value);
		case 'H': case 'I': return this.set('hr', value);
		case 'm': return this.set('mo', value - 1);
		case 'M': return this.set('min', value);
		case 'p': return this.set('ampm', value.replace(/\./g, ''));
		case 'S': return this.set('sec', value);
		case 's': return this.set('ms', ('0.' + value) * 1000);
		case 'w': return this.set('day', value);
		case 'Y': return this.set('year', value);
		case 'y':
			value = +value;
			if (value < 100) value += startCentury + (value < startYear ? 100 : 0);
			return this.set('year', value);
		case 'T':
			if (value == 'Z') value = '+00';
			var offset = value.match(/([+-])(\d{2}):?(\d{2})?/);
			offset = (offset[1] + '1') * (offset[2] * 60 + (+offset[3] || 0)) + this.getTimezoneOffset();
			return this.set('time', this - offset * 60000);
	}

	return this;
};

Date.defineParsers(
	'%Y([-./]%m([-./]%d((T| )%X)?)?)?', // "1999-12-31", "1999-12-31 11:59pm", "1999-12-31 23:59:59", ISO8601
	'%Y%m%d(T%H(%M%S?)?)?', // "19991231", "19991231T1159", compact
	'%x( %X)?', // "12/31", "12.31.99", "12-31-1999", "12/31/2008 11:59 PM"
	'%d%o( %b( %Y)?)?( %X)?', // "31st", "31st December", "31 Dec 1999", "31 Dec 1999 11:59pm"
	'%b( %d%o)?( %Y)?( %X)?', // Same as above with month and day switched
	'%Y %b( %d%o( %X)?)?', // Same as above with year coming first
	'%o %b %d %X %T %Y' // "Thu Oct 22 08:11:23 +0000 2009"
);

MooTools.lang.addEvent('langChange', function(language){
	if (MooTools.lang.get('Date')) recompile(language);
}).fireEvent('langChange', MooTools.lang.getCurrentLanguage());

})();


/*
---

script: Date.Extras.js

name: Date.Extras

description: Extends the Date native object to include extra methods (on top of those in Date.js).

license: MIT-style license

authors:
  - Aaron Newton
  - Scott Kyle

requires:
  - /Date

provides: [Date.Extras]

...
*/

Date.implement({

	timeDiffInWords: function(relative_to){
		return Date.distanceOfTimeInWords(this, relative_to || new Date);
	},

	timeDiff: function(to, joiner){
		if (to == null) to = new Date;
		var delta = ((to - this) / 1000).toInt();
		if (!delta) return '0s';
		
		var durations = {s: 60, m: 60, h: 24, d: 365, y: 0};
		var duration, vals = [];
		
		for (var step in durations){
			if (!delta) break;
			if ((duration = durations[step])){
				vals.unshift((delta % duration) + step);
				delta = (delta / duration).toInt();
			} else {
				vals.unshift(delta + step);
			}
		}
		
		return vals.join(joiner || ':');
	}

});

Date.alias('timeDiffInWords', 'timeAgoInWords');

Date.extend({

	distanceOfTimeInWords: function(from, to){
		return Date.getTimePhrase(((to - from) / 1000).toInt());
	},

	getTimePhrase: function(delta){
		var suffix = (delta < 0) ? 'Until' : 'Ago';
		if (delta < 0) delta *= -1;
		
		var units = {
			minute: 60,
			hour: 60,
			day: 24,
			week: 7,
			month: 52 / 12,
			year: 12,
			eon: Infinity
		};
		
		var msg = 'lessThanMinute';
		
		for (var unit in units){
			var interval = units[unit];
			if (delta < 1.5 * interval){
				if (delta > 0.75 * interval) msg = unit;
				break;
			}
			delta /= interval;
			msg = unit + 's';
		}
		
		return Date.getMsg(msg + suffix, delta).substitute({delta: delta.round()});
	}

});


Date.defineParsers(

	{
		// "today", "tomorrow", "yesterday"
		re: /^(?:tod|tom|yes)/i,
		handler: function(bits){
			var d = new Date().clearTime();
			switch(bits[0]){
				case 'tom': return d.increment();
				case 'yes': return d.decrement();
				default: 	return d;
			}
		}
	},

	{
		// "next Wednesday", "last Thursday"
		re: /^(next|last) ([a-z]+)$/i,
		handler: function(bits){
			var d = new Date().clearTime();
			var day = d.getDay();
			var newDay = Date.parseDay(bits[2], true);
			var addDays = newDay - day;
			if (newDay <= day) addDays += 7;
			if (bits[1] == 'last') addDays -= 7;
			return d.set('date', d.getDate() + addDays);
		}
	}

);


/*
---

script: Hash.Extras.js

name: Hash.Extras

description: Extends the Hash native object to include getFromPath which allows a path notation to child elements.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Hash.base
  - /MooTools.More

provides: [Hash.Extras]

...
*/

Hash.implement({

	getFromPath: function(notation){
		var source = this.getClean();
		notation.replace(/\[([^\]]+)\]|\.([^.[]+)|[^[.]+/g, function(match){
			if (!source) return null;
			var prop = arguments[2] || arguments[1] || arguments[0];
			source = (prop in source) ? source[prop] : null;
			return match;
		});
		return source;
	},

	cleanValues: function(method){
		method = method || $defined;
		this.each(function(v, k){
			if (!method(v)) this.erase(k);
		}, this);
		return this;
	},

	run: function(){
		var args = arguments;
		this.each(function(v, k){
			if ($type(v) == 'function') v.run(args);
		});
	}

});

/*
---

script: String.Extras.js

name: String.Extras

description: Extends the String native object to include methods useful in managing various kinds of strings (query strings, urls, html, etc).

license: MIT-style license

authors:
  - Aaron Newton
  - Guillermo Rauch
  - Christopher Pitt

requires:
  - Core/String
  - Core/$util
  - Core/Array

provides: [String.Extras]

...
*/

(function(){

var special = {
	'a': '[Ã Ã¡Ã¢Ã£Ã¤Ã¥ÄƒÄ…]',
	'A': '[Ã€ÃÃ‚ÃƒÃ„Ã…Ä‚Ä„]',
	'c': '[Ä‡ÄÃ§]',
	'C': '[Ä†ÄŒÃ‡]',
	'd': '[ÄÄ‘]',
	'D': '[ÄŽÃ]',
	'e': '[Ã¨Ã©ÃªÃ«Ä›Ä™]',
	'E': '[ÃˆÃ‰ÃŠÃ‹ÄšÄ˜]',
	'g': '[ÄŸ]',
	'G': '[Äž]',
	'i': '[Ã¬Ã­Ã®Ã¯]',
	'I': '[ÃŒÃÃŽÃ]',
	'l': '[ÄºÄ¾Å‚]',
	'L': '[Ä¹Ä½Å]',
	'n': '[Ã±ÅˆÅ„]',
	'N': '[Ã‘Å‡Åƒ]',
	'o': '[Ã²Ã³Ã´ÃµÃ¶Ã¸Å‘]',
	'O': '[Ã’Ã“Ã”Ã•Ã–Ã˜]',
	'r': '[Å™Å•]',
	'R': '[Å˜Å”]',
	's': '[Å¡Å¡ÅŸ]',
	'S': '[Å ÅžÅš]',
	't': '[Å¥Å£]',
	'T': '[Å¤Å¢]',
	'ue': '[Ã¼]',
	'UE': '[Ãœ]',
	'u': '[Ã¹ÃºÃ»Å¯Âµ]',
	'U': '[Ã™ÃšÃ›Å®]',
	'y': '[Ã¿Ã½]',
	'Y': '[Å¸Ã]',
	'z': '[Å¾ÅºÅ¼]',
	'Z': '[Å½Å¹Å»]',
	'th': '[Ã¾]',
	'TH': '[Ãž]',
	'dh': '[Ã°]',
	'DH': '[Ã]',
	'ss': '[ÃŸ]',
	'oe': '[Å“]',
	'OE': '[Å’]',
	'ae': '[Ã¦]',
	'AE': '[Ã†]'
},

tidy = {
	' ': '[\xa0\u2002\u2003\u2009]',
	'*': '[\xb7]',
	'\'': '[\u2018\u2019]',
	'"': '[\u201c\u201d]',
	'...': '[\u2026]',
	'-': '[\u2013]',
	'--': '[\u2014]',
	'&raquo;': '[\uFFFD]'
};

function walk(string, replacements) {
	var result = string;

	for (key in replacements) {
		result = result.replace(new RegExp(replacements[key], 'g'), key);
	}

	return result;
}

function getRegForTag(tag, contents) {
	tag = tag || '';
	var regstr = contents ? "<" + tag + "(?!\\w)[^>]*>([\\s\\S]*?)<\/" + tag + "(?!\\w)>" : "<\/?" + tag + "([^>]+)?>";
	reg = new RegExp(regstr, "gi");
	return reg;
};

String.implement({

	standardize: function(){
		return walk(this, special);
	},

	repeat: function(times){
		return new Array(times + 1).join(this);
	},

	pad: function(length, str, dir){
		if (this.length >= length) return this;
		var pad = (str == null ? ' ' : '' + str).repeat(length - this.length).substr(0, length - this.length);
		if (!dir || dir == 'right') return this + pad;
		if (dir == 'left') return pad + this;
		return pad.substr(0, (pad.length / 2).floor()) + this + pad.substr(0, (pad.length / 2).ceil());
	},

	getTags: function(tag, contents){
		return this.match(getRegForTag(tag, contents)) || [];
	},

	stripTags: function(tag, contents){
		return this.replace(getRegForTag(tag, contents), '');
	},

	tidy: function(){
		return walk(this, tidy);
	}

});

})();


/*
---

script: String.QueryString.js

name: String.QueryString

description: Methods for dealing with URI query strings.

license: MIT-style license

authors:
  - Sebastian MarkbÃ¥ge, Aaron Newton, Lennart Pilon, Valerio Proietti

requires:
  - Core/Array
  - Core/String
  - /MooTools.More

provides: [String.QueryString]

...
*/

String.implement({

	parseQueryString: function(decodeKeys, decodeValues){
		if (decodeKeys == null) decodeKeys = true;
		if (decodeValues == null) decodeValues = true;
		var vars = this.split(/[&;]/), res = {};
		if (vars.length) vars.each(function(val){
			var index = val.indexOf('='),
				keys = index < 0 ? [''] : val.substr(0, index).match(/([^\]\[]+|(\B)(?=\]))/g),
				value = decodeValues ? decodeURIComponent(val.substr(index + 1)) : val.substr(index + 1),
				obj = res;
			keys.each(function(key, i){
				if (decodeKeys) key = decodeURIComponent(key);
				var current = obj[key];
				if(i < keys.length - 1)
					obj = obj[key] = current || {};
				else if($type(current) == 'array')
					current.push(value);
				else
					obj[key] = $defined(current) ? [current, value] : value;
			});
		});
		return res;
	},

	cleanQueryString: function(method){
		return this.split('&').filter(function(val){
			var index = val.indexOf('='),
			key = index < 0 ? '' : val.substr(0, index),
			value = val.substr(index + 1);
			return method ? method.run([key, value]) : $chk(value);
		}).join('&');
	}

});

/*
---

script: URI.js

name: URI

description: Provides methods useful in managing the window location and uris.

license: MIT-style license

authors:
  - Sebastian MarkbÃ¥ge
  - Aaron Newton

requires:
  - Core/Selectors
  - /String.QueryString

provides: [URI]

...
*/

var URI = new Class({

	Implements: Options,

	options: {
		/*base: false*/
	},

	regex: /^(?:(\w+):)?(?:\/\/(?:(?:([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#]*)(?::(\d*))?)?(\.\.?$|(?:[^?#\/]*\/)*)([^?#]*)(?:\?([^#]*))?(?:#(.*))?/,
	parts: ['scheme', 'user', 'password', 'host', 'port', 'directory', 'file', 'query', 'fragment'],
	schemes: {http: 80, https: 443, ftp: 21, rtsp: 554, mms: 1755, file: 0},

	initialize: function(uri, options){
		this.setOptions(options);
		var base = this.options.base || URI.base;
		if(!uri) uri = base;
		
		if (uri && uri.parsed) this.parsed = $unlink(uri.parsed);
		else this.set('value', uri.href || uri.toString(), base ? new URI(base) : false);
	},

	parse: function(value, base){
		var bits = value.match(this.regex);
		if (!bits) return false;
		bits.shift();
		return this.merge(bits.associate(this.parts), base);
	},

	merge: function(bits, base){
		if ((!bits || !bits.scheme) && (!base || !base.scheme)) return false;
		if (base){
			this.parts.every(function(part){
				if (bits[part]) return false;
				bits[part] = base[part] || '';
				return true;
			});
		}
		bits.port = bits.port || this.schemes[bits.scheme.toLowerCase()];
		bits.directory = bits.directory ? this.parseDirectory(bits.directory, base ? base.directory : '') : '/';
		return bits;
	},

	parseDirectory: function(directory, baseDirectory) {
		directory = (directory.substr(0, 1) == '/' ? '' : (baseDirectory || '/')) + directory;
		if (!directory.test(URI.regs.directoryDot)) return directory;
		var result = [];
		directory.replace(URI.regs.endSlash, '').split('/').each(function(dir){
			if (dir == '..' && result.length > 0) result.pop();
			else if (dir != '.') result.push(dir);
		});
		return result.join('/') + '/';
	},

	combine: function(bits){
		return bits.value || bits.scheme + '://' +
			(bits.user ? bits.user + (bits.password ? ':' + bits.password : '') + '@' : '') +
			(bits.host || '') + (bits.port && bits.port != this.schemes[bits.scheme] ? ':' + bits.port : '') +
			(bits.directory || '/') + (bits.file || '') +
			(bits.query ? '?' + bits.query : '') +
			(bits.fragment ? '#' + bits.fragment : '');
	},

	set: function(part, value, base){
		if (part == 'value'){
			var scheme = value.match(URI.regs.scheme);
			if (scheme) scheme = scheme[1];
			if (scheme && !$defined(this.schemes[scheme.toLowerCase()])) this.parsed = { scheme: scheme, value: value };
			else this.parsed = this.parse(value, (base || this).parsed) || (scheme ? { scheme: scheme, value: value } : { value: value });
		} else if (part == 'data') {
			this.setData(value);
		} else {
			this.parsed[part] = value;
		}
		return this;
	},

	get: function(part, base){
		switch(part){
			case 'value': return this.combine(this.parsed, base ? base.parsed : false);
			case 'data' : return this.getData();
		}
		return this.parsed[part] || '';
	},

	go: function(){
		document.location.href = this.toString();
	},

	toURI: function(){
		return this;
	},

	getData: function(key, part){
		var qs = this.get(part || 'query');
		if (!$chk(qs)) return key ? null : {};
		var obj = qs.parseQueryString();
		return key ? obj[key] : obj;
	},

	setData: function(values, merge, part){
		if (typeof values == 'string'){
			data = this.getData();
			data[arguments[0]] = arguments[1];
			values = data;
		} else if (merge) {
			values = $merge(this.getData(), values);
		}
		return this.set(part || 'query', Hash.toQueryString(values));
	},

	clearData: function(part){
		return this.set(part || 'query', '');
	}

});

URI.prototype.toString = URI.prototype.valueOf = function(){
	return this.get('value');
};

URI.regs = {
	endSlash: /\/$/,
	scheme: /^(\w+):/,
	directoryDot: /\.\/|\.$/
};

URI.base = new URI(document.getElements('base[href]', true).getLast(), {base: document.location});

String.implement({

	toURI: function(options){
		return new URI(this, options);
	}

});


/*
---

script: URI.Relative.js

name: URI.Relative

description: Extends the URI class to add methods for computing relative and absolute urls.

license: MIT-style license

authors:
  - Sebastian MarkbÃ¥ge


requires:
  - /Class.refactor
  - /URI

provides: [URI.Relative]

...
*/

URI = Class.refactor(URI, {

	combine: function(bits, base){
		if (!base || bits.scheme != base.scheme || bits.host != base.host || bits.port != base.port)
			return this.previous.apply(this, arguments);
		var end = bits.file + (bits.query ? '?' + bits.query : '') + (bits.fragment ? '#' + bits.fragment : '');

		if (!base.directory) return (bits.directory || (bits.file ? '' : './')) + end;

		var baseDir = base.directory.split('/'),
			relDir = bits.directory.split('/'),
			path = '',
			offset;

		var i = 0;
		for(offset = 0; offset < baseDir.length && offset < relDir.length && baseDir[offset] == relDir[offset]; offset++);
		for(i = 0; i < baseDir.length - offset - 1; i++) path += '../';
		for(i = offset; i < relDir.length - 1; i++) path += relDir[i] + '/';

		return (path || (bits.file ? '' : './')) + end;
	},

	toAbsolute: function(base){
		base = new URI(base);
		if (base) base.set('directory', '').set('file', '');
		return this.toRelative(base);
	},

	toRelative: function(base){
		return this.get('value', new URI(base));
	}

});


/*
---

script: Element.Forms.js

name: Element.Forms

description: Extends the Element native object to include methods useful in managing inputs.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element
  - /MooTools.More

provides: [Element.Forms]

...
*/

Element.implement({

	tidy: function(){
		this.set('value', this.get('value').tidy());
	},

	getTextInRange: function(start, end){
		return this.get('value').substring(start, end);
	},

	getSelectedText: function(){
		if (this.setSelectionRange) return this.getTextInRange(this.getSelectionStart(), this.getSelectionEnd());
		return document.selection.createRange().text;
	},

	getSelectedRange: function() {
		if ($defined(this.selectionStart)) return {start: this.selectionStart, end: this.selectionEnd};
		var pos = {start: 0, end: 0};
		var range = this.getDocument().selection.createRange();
		if (!range || range.parentElement() != this) return pos;
		var dup = range.duplicate();
		if (this.type == 'text') {
			pos.start = 0 - dup.moveStart('character', -100000);
			pos.end = pos.start + range.text.length;
		} else {
			var value = this.get('value');
			var offset = value.length;
			dup.moveToElementText(this);
			dup.setEndPoint('StartToEnd', range);
			if(dup.text.length) offset -= value.match(/[\n\r]*$/)[0].length;
			pos.end = offset - dup.text.length;
			dup.setEndPoint('StartToStart', range);
			pos.start = offset - dup.text.length;
		}
		return pos;
	},

	getSelectionStart: function(){
		return this.getSelectedRange().start;
	},

	getSelectionEnd: function(){
		return this.getSelectedRange().end;
	},

	setCaretPosition: function(pos){
		if (pos == 'end') pos = this.get('value').length;
		this.selectRange(pos, pos);
		return this;
	},

	getCaretPosition: function(){
		return this.getSelectedRange().start;
	},

	selectRange: function(start, end){
		if (this.setSelectionRange) {
			this.focus();
			this.setSelectionRange(start, end);
		} else {
			var value = this.get('value');
			var diff = value.substr(start, end - start).replace(/\r/g, '').length;
			start = value.substr(0, start).replace(/\r/g, '').length;
			var range = this.createTextRange();
			range.collapse(true);
			range.moveEnd('character', start + diff);
			range.moveStart('character', start);
			range.select();
		}
		return this;
	},

	insertAtCursor: function(value, select){
		var pos = this.getSelectedRange();
		var text = this.get('value');
		this.set('value', text.substring(0, pos.start) + value + text.substring(pos.end, text.length));
		if ($pick(select, true)) this.selectRange(pos.start, pos.start + value.length);
		else this.setCaretPosition(pos.start + value.length);
		return this;
	},

	insertAroundCursor: function(options, select){
		options = $extend({
			before: '',
			defaultMiddle: '',
			after: ''
		}, options);
		var value = this.getSelectedText() || options.defaultMiddle;
		var pos = this.getSelectedRange();
		var text = this.get('value');
		if (pos.start == pos.end){
			this.set('value', text.substring(0, pos.start) + options.before + value + options.after + text.substring(pos.end, text.length));
			this.selectRange(pos.start + options.before.length, pos.end + options.before.length + value.length);
		} else {
			var current = text.substring(pos.start, pos.end);
			this.set('value', text.substring(0, pos.start) + options.before + current + options.after + text.substring(pos.end, text.length));
			var selStart = pos.start + options.before.length;
			if ($pick(select, true)) this.selectRange(selStart, selStart + current.length);
			else this.setCaretPosition(selStart + text.length);
		}
		return this;
	}

});

/*
---

script: Elements.From.js

name: Elements.From

description: Returns a collection of elements from a string of html.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element
  - /MooTools.More

provides: [Elements.from, Elements.From]

...
*/

Elements.from = function(text, excludeScripts){
	if ($pick(excludeScripts, true)) text = text.stripScripts();

	var container, match = text.match(/^\s*<(t[dhr]|tbody|tfoot|thead)/i);

	if (match){
		container = new Element('table');
		var tag = match[1].toLowerCase();
		if (['td', 'th', 'tr'].contains(tag)){
			container = new Element('tbody').inject(container);
			if (tag != 'tr') container = new Element('tr').inject(container);
		}
	}

	return (container || new Element('div')).set('html', text).getChildren();
};


/*
---

script: Element.Delegation.js

name: Element.Delegation

description: Extends the Element native object to include the delegate method for more efficient event management.

credits:
  - "Event checking based on the work of Daniel Steigerwald. License: MIT-style license.	Copyright: Copyright (c) 2008 Daniel Steigerwald, daniel.steigerwald.cz"

license: MIT-style license

authors:
  - Aaron Newton
  - Daniel Steigerwald

requires:
  - Core/Element.Event
  - Core/Selectors
  - /MooTools.More

provides: [Element.Delegation]

...
*/

(function(addEvent, removeEvent){
	
	var match = /(.*?):relay\(((?:\(.*?\)|.)+)\)$/,
		combinators = /[+>~\s]/,
		splitType = function(type){
			var bits = type.match(match);
			return !bits ? {event: type} : {
				event: bits[1],
				selector: bits[2]
			};
		},
		check = function(e, selector){
			var t = e.target;
			if (combinators.test(selector = selector.trim())){
				var els = this.getElements(selector);
				for (var i = els.length; i--; ){
					var el = els[i];
					if (t == el || el.hasChild(t)) return el;
				}
			} else {
				for ( ; t && t != this; t = t.parentNode){
					if (Element.match(t, selector)) return document.id(t);
				}
			}
			return null;
		};

	Element.implement({

		addEvent: function(type, fn){
			var split = splitType(type);
			if (split.selector){
				var monitors = this.retrieve('delegation:_delegateMonitors', {});
				if (!monitors[type]){
					var monitor = function(e){
						var el = check.call(this, e, split.selector);
						if (el) this.fireEvent(type, [e, el], 0, el);
					}.bind(this);
					monitors[type] = monitor;
					addEvent.call(this, split.event, monitor);
				}
			}
			return addEvent.apply(this, arguments);
		},

		removeEvent: function(type, fn){
			var split = splitType(type);
			if (split.selector){
				var events = this.retrieve('events');
				if (!events || !events[type] || (fn && !events[type].keys.contains(fn))) return this;

				if (fn) removeEvent.apply(this, [type, fn]);
				else removeEvent.apply(this, type);

				events = this.retrieve('events');
				if (events && events[type] && events[type].keys.length == 0){
					var monitors = this.retrieve('delegation:_delegateMonitors', {});
					removeEvent.apply(this, [split.event, monitors[type]]);
					delete monitors[type];
				}
				return this;
			}
			return removeEvent.apply(this, arguments);
		},

		fireEvent: function(type, args, delay, bind){
			var events = this.retrieve('events');
			var e, el;
			if (args) {
				e = args[0];
				el = args[1];
			}
			if (!events || !events[type]) return this;
			events[type].keys.each(function(fn){
				fn.create({bind: bind || this, delay: delay, arguments: args})();
			}, this);
			return this;
		}

	});

})(Element.prototype.addEvent, Element.prototype.removeEvent);

try {
	if (typeof HTMLElement != 'undefined')
		HTMLElement.prototype.fireEvent = Element.prototype.fireEvent;
} catch(e){}


/*
---

script: Element.Measure.js

name: Element.Measure

description: Extends the Element native object to include methods useful in measuring dimensions.

credits: "Element.measure / .expose methods by Daniel Steigerwald License: MIT-style license. Copyright: Copyright (c) 2008 Daniel Steigerwald, daniel.steigerwald.cz"

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element.Style
  - Core/Element.Dimensions
  - /MooTools.More

provides: [Element.Measure]

...
*/

Element.implement({

	measure: function(fn){
		var vis = function(el) {
			return !!(!el || el.offsetHeight || el.offsetWidth);
		};
		if (vis(this)) return fn.apply(this);
		var parent = this.getParent(),
			restorers = [],
			toMeasure = []; 
		while (!vis(parent) && parent != document.body) {
			toMeasure.push(parent.expose());
			parent = parent.getParent();
		}
		var restore = this.expose();
		var result = fn.apply(this);
		restore();
		toMeasure.each(function(restore){
			restore();
		});
		return result;
	},

	expose: function(){
		if (this.getStyle('display') != 'none') return $empty;
		var before = this.style.cssText;
		this.setStyles({
			display: 'block',
			position: 'absolute',
			visibility: 'hidden'
		});
		return function(){
			this.style.cssText = before;
		}.bind(this);
	},

	getDimensions: function(options){
		options = $merge({computeSize: false},options);
		var dim = {};
		var getSize = function(el, options){
			return (options.computeSize)?el.getComputedSize(options):el.getSize();
		};
		var parent = this.getParent('body');
		if (parent && this.getStyle('display') == 'none'){
			dim = this.measure(function(){
				return getSize(this, options);
			});
		} else if (parent){
			try { //safari sometimes crashes here, so catch it
				dim = getSize(this, options);
			}catch(e){}
		} else {
			dim = {x: 0, y: 0};
		}
		return $chk(dim.x) ? $extend(dim, {width: dim.x, height: dim.y}) : $extend(dim, {x: dim.width, y: dim.height});
	},

	getComputedSize: function(options){
		//legacy support for my stupid spelling error
		if (options && options.plains) options.planes = options.plains;
		
		options = $merge({
			styles: ['padding','border'],
			planes: {
				height: ['top','bottom'],
				width: ['left','right']
			},
			mode: 'both'
		}, options);
		
		var size = {width: 0,height: 0};
		switch (options.mode){
			case 'vertical':
				delete size.width;
				delete options.planes.width;
				break;
			case 'horizontal':
				delete size.height;
				delete options.planes.height;
				break;
		}
		var getStyles = [];
		//this function might be useful in other places; perhaps it should be outside this function?
		$each(options.planes, function(plane, key){
			plane.each(function(edge){
				options.styles.each(function(style){
					getStyles.push((style == 'border') ? style + '-' + edge + '-' + 'width' : style + '-' + edge);
				});
			});
		});
		var styles = {};
		getStyles.each(function(style){ styles[style] = this.getComputedStyle(style); }, this);
		var subtracted = [];
		$each(options.planes, function(plane, key){ //keys: width, height, planes: ['left', 'right'], ['top','bottom']
			var capitalized = key.capitalize();
			size['total' + capitalized] = size['computed' + capitalized] = 0;
			plane.each(function(edge){ //top, left, right, bottom
				size['computed' + edge.capitalize()] = 0;
				getStyles.each(function(style, i){ //padding, border, etc.
					//'padding-left'.test('left') size['totalWidth'] = size['width'] + [padding-left]
					if (style.test(edge)){
						styles[style] = styles[style].toInt() || 0; //styles['padding-left'] = 5;
						size['total' + capitalized] = size['total' + capitalized] + styles[style];
						size['computed' + edge.capitalize()] = size['computed' + edge.capitalize()] + styles[style];
					}
					//if width != width (so, padding-left, for instance), then subtract that from the total
					if (style.test(edge) && key != style &&
						(style.test('border') || style.test('padding')) && !subtracted.contains(style)){
						subtracted.push(style);
						size['computed' + capitalized] = size['computed' + capitalized]-styles[style];
					}
				});
			});
		});

		['Width', 'Height'].each(function(value){
			var lower = value.toLowerCase();
			if(!$chk(size[lower])) return;

			size[lower] = size[lower] + this['offset' + value] + size['computed' + value];
			size['total' + value] = size[lower] + size['total' + value];
			delete size['computed' + value];
		}, this);

		return $extend(styles, size);
	}

});

/*
---

script: Element.Pin.js

name: Element.Pin

description: Extends the Element native object to include the pin method useful for fixed positioning for elements.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element.Event
  - Core/Element.Dimensions
  - Core/Element.Style
  - /MooTools.More

provides: [Element.Pin]

...
*/

(function(){
	var supportsPositionFixed = false,
		supportTested = false;

	var testPositionFixed = function(){
		var test = new Element('div').setStyles({
			position: 'fixed',
			top: 0,
			right: 0
		}).inject(document.body);
		supportsPositionFixed = (test.offsetTop === 0);
		test.dispose();
		supportTested = true;
	}

	Element.implement({

		pin: function(enable, forceScroll){
			if (!supportTested) testPositionFixed();
			if (this.getStyle('display') == 'none') return this;

			var pinnedPosition,
				scroll = window.getScroll();

			if (enable !== false){
				pinnedPosition = this.getPosition(supportsPositionFixed ? document.body : this.getOffsetParent());
				if (!this.retrieve('pin:_pinned')){
					var currentPosition = {
						top: pinnedPosition.y - scroll.y,
						left: pinnedPosition.x - scroll.x
					};

					if (supportsPositionFixed && !forceScroll){
						this.setStyle('position', 'fixed').setStyles(currentPosition);
					} else {

						var parent = this.getOffsetParent(),
							position = this.getPosition(parent),
							styles = this.getStyles('left', 'top');

						if (parent && styles.left == 'auto' || styles.top == 'auto') this.setPosition(position);
						if (this.getStyle('position') == 'static') this.setStyle('position', 'absolute');

						position = {
							x: styles.left.toInt() - scroll.x,
							y: styles.top.toInt() - scroll.y
						};

						var scrollFixer = function(){
							if (!this.retrieve('pin:_pinned')) return;
							var scroll = window.getScroll();
							this.setStyles({
								left: position.x + scroll.x,
								top: position.y + scroll.y
							});
						}.bind(this);

						this.store('pin:_scrollFixer', scrollFixer);
						window.addEvent('scroll', scrollFixer);
					}
					this.store('pin:_pinned', true);
				}

			} else {
				if (!this.retrieve('pin:_pinned')) return this;

				var parent = this.getParent(),
					offsetParent = (parent.getComputedStyle('position') != 'static' ? parent : parent.getOffsetParent());

				pinnedPosition = this.getPosition(offsetParent);

				this.store('pin:_pinned', false);
				var scrollFixer = this.retrieve('pin:_scrollFixer');
				if (!scrollFixer){
					this.setStyles({
						position: 'absolute',
						top: pinnedPosition.y + scroll.y,
						left: pinnedPosition.x + scroll.x
					});
				} else {
					this.store('pin:_scrollFixer', null);
					window.removeEvent('scroll', scrollFixer);
				}
				this.removeClass('isPinned');
			}
			return this;
		},

		unpin: function(){
			return this.pin(false);
		},

		togglepin: function(){
			return this.pin(!this.retrieve('pin:_pinned'));
		}

	});

})();


/*
---

script: Element.Position.js

name: Element.Position

description: Extends the Element native object to include methods useful positioning elements relative to others.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element.Dimensions
  - /Element.Measure

provides: [Element.Position]

...
*/

(function(){

var original = Element.prototype.position;

Element.implement({

	position: function(options){
		//call original position if the options are x/y values
		if (options && ($defined(options.x) || $defined(options.y))) return original ? original.apply(this, arguments) : this;
		$each(options||{}, function(v, k){ if (!$defined(v)) delete options[k]; });
		options = $merge({
			// minimum: { x: 0, y: 0 },
			// maximum: { x: 0, y: 0},
			relativeTo: document.body,
			position: {
				x: 'center', //left, center, right
				y: 'center' //top, center, bottom
			},
			edge: false,
			offset: {x: 0, y: 0},
			returnPos: false,
			relFixedPosition: false,
			ignoreMargins: false,
			ignoreScroll: false,
			allowNegative: false
		}, options);
		//compute the offset of the parent positioned element if this element is in one
		var parentOffset = {x: 0, y: 0}, 
				parentPositioned = false;
		/* dollar around getOffsetParent should not be necessary, but as it does not return
		 * a mootools extended element in IE, an error occurs on the call to expose. See:
		 * http://mootools.lighthouseapp.com/projects/2706/tickets/333-element-getoffsetparent-inconsistency-between-ie-and-other-browsers */
		var offsetParent = this.measure(function(){
			return document.id(this.getOffsetParent());
		});
		if (offsetParent && offsetParent != this.getDocument().body){
			parentOffset = offsetParent.measure(function(){
				return this.getPosition();
			});
			parentPositioned = offsetParent != document.id(options.relativeTo);
			options.offset.x = options.offset.x - parentOffset.x;
			options.offset.y = options.offset.y - parentOffset.y;
		}
		//upperRight, bottomRight, centerRight, upperLeft, bottomLeft, centerLeft
		//topRight, topLeft, centerTop, centerBottom, center
		var fixValue = function(option){
			if ($type(option) != 'string') return option;
			option = option.toLowerCase();
			var val = {};
			
			if (option.test('left')) val.x = 'left';
			else if (option.test('right')) val.x = 'right';
			else val.x = 'center';
			
			if (option.test('upper') || option.test('top')) val.y = 'top';
			else if (option.test('bottom')) val.y = 'bottom';
			else val.y = 'center';
			
			return val;
		};
		options.edge = fixValue(options.edge);
		options.position = fixValue(options.position);
		if (!options.edge){
			if (options.position.x == 'center' && options.position.y == 'center') options.edge = {x:'center', y:'center'};
			else options.edge = {x:'left', y:'top'};
		}

		this.setStyle('position', 'absolute');
		var rel = document.id(options.relativeTo) || document.body,
				calc = rel == document.body ? window.getScroll() : rel.getPosition(),
				top = calc.y, left = calc.x;

		var dim = this.getDimensions({computeSize: true, styles:['padding', 'border','margin']});
		var pos = {},
				prefY = options.offset.y,
				prefX = options.offset.x,
				winSize = window.getSize();
		switch(options.position.x){
			case 'left':
				pos.x = left + prefX;
				break;
			case 'right':
				pos.x = left + prefX + rel.offsetWidth;
				break;
			default: //center
				pos.x = left + ((rel == document.body ? winSize.x : rel.offsetWidth)/2) + prefX;
				break;
		}
		switch(options.position.y){
			case 'top':
				pos.y = top + prefY;
				break;
			case 'bottom':
				pos.y = top + prefY + rel.offsetHeight;
				break;
			default: //center
				pos.y = top + ((rel == document.body ? winSize.y : rel.offsetHeight)/2) + prefY;
				break;
		}
		if (options.edge){
			var edgeOffset = {};

			switch(options.edge.x){
				case 'left':
					edgeOffset.x = 0;
					break;
				case 'right':
					edgeOffset.x = -dim.x-dim.computedRight-dim.computedLeft;
					break;
				default: //center
					edgeOffset.x = -(dim.totalWidth/2);
					break;
			}
			switch(options.edge.y){
				case 'top':
					edgeOffset.y = 0;
					break;
				case 'bottom':
					edgeOffset.y = -dim.y-dim.computedTop-dim.computedBottom;
					break;
				default: //center
					edgeOffset.y = -(dim.totalHeight/2);
					break;
			}
			pos.x += edgeOffset.x;
			pos.y += edgeOffset.y;
		}
		pos = {
			left: ((pos.x >= 0 || parentPositioned || options.allowNegative) ? pos.x : 0).toInt(),
			top: ((pos.y >= 0 || parentPositioned || options.allowNegative) ? pos.y : 0).toInt()
		};
		var xy = {left: 'x', top: 'y'};
		['minimum', 'maximum'].each(function(minmax) {
			['left', 'top'].each(function(lr) {
				var val = options[minmax] ? options[minmax][xy[lr]] : null;
				if (val != null && ((minmax == 'minimum') ? pos[lr] < val: pos[lr] > val)) pos[lr] = val;
			});
		});
		if (rel.getStyle('position') == 'fixed' || options.relFixedPosition){
			var winScroll = window.getScroll();
			pos.top+= winScroll.y;
			pos.left+= winScroll.x;
		}
		var relScroll = rel.getScroll();
		if (options.ignoreScroll) {
			pos.top -= relScroll.y;
			pos.left -= relScroll.x;
		} else {
			pos.top += relScroll.y;
			pos.left += relScroll.x;
		}
		if (options.ignoreMargins) {
			pos.left += (
				options.edge.x == 'right' ? dim['margin-right'] : 
				options.edge.x == 'center' ? -dim['margin-left'] + ((dim['margin-right'] + dim['margin-left'])/2) : 
					- dim['margin-left']
			);
			pos.top += (
				options.edge.y == 'bottom' ? dim['margin-bottom'] : 
				options.edge.y == 'center' ? -dim['margin-top'] + ((dim['margin-bottom'] + dim['margin-top'])/2) : 
					- dim['margin-top']
			);
		}
		pos.left = Math.ceil(pos.left);
		pos.top = Math.ceil(pos.top);
		if (options.returnPos) return pos;
		else this.setStyles(pos);
		return this;
	}

});

})();


/*
---

script: Element.Shortcuts.js

name: Element.Shortcuts

description: Extends the Element native object to include some shortcut methods.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element.Style
  - /MooTools.More

provides: [Element.Shortcuts]

...
*/

Element.implement({

	isDisplayed: function(){
		return this.getStyle('display') != 'none';
	},

	isVisible: function(){
		var w = this.offsetWidth,
			h = this.offsetHeight;
		return (w == 0 && h == 0) ? false : (w > 0 && h > 0) ? true : this.style.display != 'none';
	},

	toggle: function(){
		return this[this.isDisplayed() ? 'hide' : 'show']();
	},

	hide: function(){
		var d;
		try {
			//IE fails here if the element is not in the dom
			d = this.getStyle('display');
		} catch(e){}
		if (d == "none") return this;
		return this.store('element:_originalDisplay', d || '').setStyle('display', 'none');
	},

	show: function(display){
		if (!display && this.isDisplayed()) return this;
		display = display || this.retrieve('element:_originalDisplay') || 'block';
		return this.setStyle('display', (display == 'none') ? 'block' : display);
	},

	swapClass: function(remove, add){
		return this.removeClass(remove).addClass(add);
	}
});

Document.implement({
	clearSelection: function(){
		if (document.selection && document.selection.empty) {
			document.selection.empty();
		} else if (window.getSelection) {
			var selection = window.getSelection();
			if (selection && selection.removeAllRanges) selection.removeAllRanges();
		}
	}
});

/*
---

script: Form.Request.js

name: Form.Request

description: Handles the basic functionality of submitting a form and updating a dom element with the result.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Request.HTML
  - /Class.Binds
  - /Class.Occlude
  - /Spinner
  - /String.QueryString
  - /Element.Delegation

provides: [Form.Request]

...
*/

if (!window.Form) window.Form = {};

(function(){

	Form.Request = new Class({

		Binds: ['onSubmit', 'onFormValidate'],

		Implements: [Options, Events, Class.Occlude],

		options: {
			//onFailure: $empty,
			//onSuccess: #empty, //aliased to onComplete,
			//onSend: $empty
			requestOptions: {
				evalScripts: true,
				useSpinner: true,
				emulation: false,
				link: 'ignore'
			},
			sendButtonClicked: true,
			extraData: {},
			resetForm: true
		},

		property: 'form.request',

		initialize: function(form, update, options) {
			this.element = document.id(form);
			if (this.occlude()) return this.occluded;
			this.update = document.id(update);
			this.setOptions(options);
			this.makeRequest();
			if (this.options.resetForm) {
				this.request.addEvent('success', function(){
					$try(function(){ this.element.reset(); }.bind(this));
					if (window.OverText) OverText.update();
				}.bind(this));
			}
			this.attach();
		},

		toElement: function() {
			return this.element;
		},

		makeRequest: function(){
			this.request = new Request.HTML($merge({
					update: this.update,
					emulation: false,
					spinnerTarget: this.element,
					method: this.element.get('method') || 'post'
			}, this.options.requestOptions)).addEvents({
				success: function(tree, elements, html, javascript){
					['complete', 'success'].each(function(evt){
						this.fireEvent(evt, [this.update, tree, elements, html, javascript]);
					}, this);
				}.bind(this),
				failure: function(){
					this.fireEvent('complete', arguments).fireEvent('failure', arguments);
				}.bind(this),
				exception: function(){
					this.fireEvent('failure', arguments);
				}.bind(this)
			});
		},

		attach: function(attach){
			attach = $pick(attach, true);
			method = attach ? 'addEvent' : 'removeEvent';
			
			this.element[method]('click:relay(button, input[type=submit])', this.saveClickedButton.bind(this));
			
			var fv = this.element.retrieve('validator');
			if (fv) fv[method]('onFormValidate', this.onFormValidate);
			else this.element[method]('submit', this.onSubmit);
		},

		detach: function(){
			this.attach(false);
			return this;
		},

		//public method
		enable: function(){
			this.attach();
			return this;
		},

		//public method
		disable: function(){
			this.detach();
			return this;
		},

		onFormValidate: function(valid, form, e) {
			//if there's no event, then this wasn't a submit event
			if (!e) return;
			var fv = this.element.retrieve('validator');
			if (valid || (fv && !fv.options.stopOnFailure)) {
				if (e && e.stop) e.stop();
				this.send();
			}
		},

		onSubmit: function(e){
			var fv = this.element.retrieve('validator');
			if (fv) {
				//form validator was created after Form.Request
				this.element.removeEvent('submit', this.onSubmit);
				fv.addEvent('onFormValidate', this.onFormValidate);
				this.element.validate();
				return;
			}
			if (e) e.stop();
			this.send();
		},

		saveClickedButton: function(event, target) {
			if (!this.options.sendButtonClicked) return;
			if (!target.get('name')) return;
			this.options.extraData[target.get('name')] = target.get('value') || true;
			this.clickedCleaner = function(){
				delete this.options.extraData[target.get('name')];
				this.clickedCleaner = $empty;
			}.bind(this);
		},

		clickedCleaner: $empty,

		send: function(){
			var str = this.element.toQueryString().trim();
			var data = $H(this.options.extraData).toQueryString();
			if (str) str += "&" + data;
			else str = data;
			this.fireEvent('send', [this.element, str.parseQueryString()]);
			this.request.send({data: str, url: this.element.get("action")});
			this.clickedCleaner();
			return this;
		}

	});

	Element.Properties.formRequest = {

		set: function(){
			var opt = Array.link(arguments, {options: Object.type, update: Element.type, updateId: String.type});
			var update = opt.update || opt.updateId;
			var updater = this.retrieve('form.request');
			if (update) {
				if (updater) updater.update = document.id(update);
				this.store('form.request:update', update);
			}
			if (opt.options) {
				if (updater) updater.setOptions(opt.options);
				this.store('form.request:options', opt.options);
			}
			return this;
		},

		get: function(){
			var opt = Array.link(arguments, {options: Object.type, update: Element.type, updateId: String.type});
			var update = opt.update || opt.updateId;
			if (opt.options || update || !this.retrieve('form.request')){
				if (opt.options || !this.retrieve('form.request:options')) this.set('form.request', opt.options);
				if (update) this.set('form.request', update);
				this.store('form.request', new Form.Request(this, this.retrieve('form.request:update'), this.retrieve('form.request:options')));
			}
			return this.retrieve('form.request');
		}

	};

	Element.implement({

		formUpdate: function(update, options){
			this.get('formRequest', update, options).send();
			return this;
		}

	});

})();

/*
---

script: Form.Request.Append.js

name: Form.Request.Append

description: Handles the basic functionality of submitting a form and updating a dom element with the result. The result is appended to the DOM element instead of replacing its contents.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - /Form.Request
  - /Fx.Reveal
  - /Elements.from

provides: [Form.Request.Append]

...
*/

Form.Request.Append = new Class({

	Extends: Form.Request,

	options: {
		//onBeforeEffect: $empty,
		useReveal: true,
		revealOptions: {},
		inject: 'bottom'
	},

	makeRequest: function(){
		this.request = new Request.HTML($merge({
				url: this.element.get('action'),
				method: this.element.get('method') || 'post',
				spinnerTarget: this.element
			}, this.options.requestOptions, {
				evalScripts: false
			})
		).addEvents({
			success: function(tree, elements, html, javascript){
				var container;
				var kids = Elements.from(html);
				if (kids.length == 1) {
					container = kids[0];
				} else {
					 container = new Element('div', {
						styles: {
							display: 'none'
						}
					}).adopt(kids);
				}
				container.inject(this.update, this.options.inject);
				if (this.options.requestOptions.evalScripts) $exec(javascript);
				this.fireEvent('beforeEffect', container);
				var finish = function(){
					this.fireEvent('success', [container, this.update, tree, elements, html, javascript]);
				}.bind(this);
				if (this.options.useReveal) {
					container.get('reveal', this.options.revealOptions).chain(finish);
					container.reveal();
				} else {
					finish();
				}
			}.bind(this),
			failure: function(xhr){
				this.fireEvent('failure', xhr);
			}.bind(this)
		});
	}

});

/*
---

script: Form.Validator.js

name: Form.Validator

description: A css-class based form validation system.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Options
  - Core/Events
  - Core/Selectors
  - Core/Element.Event
  - Core/Element.Style
  - Core/JSON
  - /Lang
  - /Class.Binds
  - /Date 
  - /Element.Forms
  - /Form.Validator.English
  - /Element.Shortcuts

provides: [Form.Validator, InputValidator, FormValidator.BaseValidators]

...
*/
if (!window.Form) window.Form = {};

var InputValidator = new Class({

	Implements: [Options],

	options: {
		errorMsg: 'Validation failed.',
		test: function(field){return true;}
	},

	initialize: function(className, options){
		this.setOptions(options);
		this.className = className;
	},

	test: function(field, props){
		if (document.id(field)) return this.options.test(document.id(field), props||this.getProps(field));
		else return false;
	},

	getError: function(field, props){
		var err = this.options.errorMsg;
		if ($type(err) == 'function') err = err(document.id(field), props||this.getProps(field));
		return err;
	},

	getProps: function(field){
		if (!document.id(field)) return {};
		return field.get('validatorProps');
	}

});

Element.Properties.validatorProps = {

	set: function(props){
		return this.eliminate('validatorProps').store('validatorProps', props);
	},

	get: function(props){
		if (props) this.set(props);
		if (this.retrieve('validatorProps')) return this.retrieve('validatorProps');
		if (this.getProperty('validatorProps')){
			try {
				this.store('validatorProps', JSON.decode(this.getProperty('validatorProps')));
			}catch(e){
				return {};
			}
		} else {
			var vals = this.get('class').split(' ').filter(function(cls){
				return cls.test(':');
			});
			if (!vals.length){
				this.store('validatorProps', {});
			} else {
				props = {};
				vals.each(function(cls){
					var split = cls.split(':');
					if (split[1]) {
						try {
							props[split[0]] = JSON.decode(split[1]);
						} catch(e) {}
					}
				});
				this.store('validatorProps', props);
			}
		}
		return this.retrieve('validatorProps');
	}

};

Form.Validator = new Class({

	Implements:[Options, Events],

	Binds: ['onSubmit'],

	options: {/*
		onFormValidate: $empty(isValid, form, event),
		onElementValidate: $empty(isValid, field, className, warn),
		onElementPass: $empty(field),
		onElementFail: $empty(field, validatorsFailed) */
		fieldSelectors: 'input, select, textarea',
		ignoreHidden: true,
		ignoreDisabled: true,
		useTitles: false,
		evaluateOnSubmit: true,
		evaluateFieldsOnBlur: true,
		evaluateFieldsOnChange: true,
		serial: true,
		stopOnFailure: true,
		warningPrefix: function(){
			return Form.Validator.getMsg('warningPrefix') || 'Warning: ';
		},
		errorPrefix: function(){
			return Form.Validator.getMsg('errorPrefix') || 'Error: ';
		}
	},

	initialize: function(form, options){
		this.setOptions(options);
		this.element = document.id(form);
		this.element.store('validator', this);
		this.warningPrefix = $lambda(this.options.warningPrefix)();
		this.errorPrefix = $lambda(this.options.errorPrefix)();
		if (this.options.evaluateOnSubmit) this.element.addEvent('submit', this.onSubmit);
		if (this.options.evaluateFieldsOnBlur || this.options.evaluateFieldsOnChange) this.watchFields(this.getFields());
	},

	toElement: function(){
		return this.element;
	},

	getFields: function(){
		return (this.fields = this.element.getElements(this.options.fieldSelectors));
	},

	watchFields: function(fields){
		fields.each(function(el){
			if (this.options.evaluateFieldsOnBlur)
				el.addEvent('blur', this.validationMonitor.pass([el, false], this));
			if (this.options.evaluateFieldsOnChange)
				el.addEvent('change', this.validationMonitor.pass([el, true], this));
		}, this);
	},

	validationMonitor: function(){
		$clear(this.timer);
		this.timer = this.validateField.delay(50, this, arguments);
	},

	onSubmit: function(event){
		if (!this.validate(event) && event) event.preventDefault();
		else this.reset();
	},

	reset: function(){
		this.getFields().each(this.resetField, this);
		return this;
	},

	validate: function(event){
		var result = this.getFields().map(function(field){
			return this.validateField(field, true);
		}, this).every(function(v){ return v;});
		this.fireEvent('formValidate', [result, this.element, event]);
		if (this.options.stopOnFailure && !result && event) event.preventDefault();
		return result;
	},

	validateField: function(field, force){
		if (this.paused) return true;
		field = document.id(field);
		var passed = !field.hasClass('validation-failed');
		var failed, warned;
		if (this.options.serial && !force){
			failed = this.element.getElement('.validation-failed');
			warned = this.element.getElement('.warning');
		}
		if (field && (!failed || force || field.hasClass('validation-failed') || (failed && !this.options.serial))){
			var validators = field.className.split(' ').some(function(cn){
				return this.getValidator(cn);
			}, this);
			var validatorsFailed = [];
			field.className.split(' ').each(function(className){
				if (className && !this.test(className, field)) validatorsFailed.include(className);
			}, this);
			passed = validatorsFailed.length === 0;
			if (validators && !field.hasClass('warnOnly')){
				if (passed){
					field.addClass('validation-passed').removeClass('validation-failed');
					this.fireEvent('elementPass', field);
				} else {
					field.addClass('validation-failed').removeClass('validation-passed');
					this.fireEvent('elementFail', [field, validatorsFailed]);
				}
			}
			if (!warned){
				var warnings = field.className.split(' ').some(function(cn){
					if (cn.test('^warn-') || field.hasClass('warnOnly'))
						return this.getValidator(cn.replace(/^warn-/,''));
					else return null;
				}, this);
				field.removeClass('warning');
				var warnResult = field.className.split(' ').map(function(cn){
					if (cn.test('^warn-') || field.hasClass('warnOnly'))
						return this.test(cn.replace(/^warn-/,''), field, true);
					else return null;
				}, this);
			}
		}
		return passed;
	},

	test: function(className, field, warn){
		field = document.id(field);
		if((this.options.ignoreHidden && !field.isVisible()) || (this.options.ignoreDisabled && field.get('disabled'))) return true;
		var validator = this.getValidator(className);
		warn = $pick(warn, false);
		if (field.hasClass('warnOnly')) warn = true;
		var isValid = field.hasClass('ignoreValidation') || (validator ? validator.test(field) : true);
		if (validator && field.isVisible()) this.fireEvent('elementValidate', [isValid, field, className, warn]);
		if (warn) return true;
		return isValid;
	},

	resetField: function(field){
		field = document.id(field);
		if (field){
			field.className.split(' ').each(function(className){
				if (className.test('^warn-')) className = className.replace(/^warn-/, '');
				field.removeClass('validation-failed');
				field.removeClass('warning');
				field.removeClass('validation-passed');
			}, this);
		}
		return this;
	},

	stop: function(){
		this.paused = true;
		return this;
	},

	start: function(){
		this.paused = false;
		return this;
	},

	ignoreField: function(field, warn){
		field = document.id(field);
		if (field){
			this.enforceField(field);
			if (warn) field.addClass('warnOnly');
			else field.addClass('ignoreValidation');
		}
		return this;
	},

	enforceField: function(field){
		field = document.id(field);
		if (field) field.removeClass('warnOnly').removeClass('ignoreValidation');
		return this;
	}

});

Form.Validator.getMsg = function(key){
	return MooTools.lang.get('Form.Validator', key);
};

Form.Validator.adders = {

	validators:{},

	add : function(className, options){
		this.validators[className] = new InputValidator(className, options);
		//if this is a class (this method is used by instances of Form.Validator and the Form.Validator namespace)
		//extend these validators into it
		//this allows validators to be global and/or per instance
		if (!this.initialize){
			this.implement({
				validators: this.validators
			});
		}
	},

	addAllThese : function(validators){
		$A(validators).each(function(validator){
			this.add(validator[0], validator[1]);
		}, this);
	},

	getValidator: function(className){
		return this.validators[className.split(':')[0]];
	}

};

$extend(Form.Validator, Form.Validator.adders);

Form.Validator.implement(Form.Validator.adders);

Form.Validator.add('IsEmpty', {

	errorMsg: false,
	test: function(element){
		if (element.type == 'select-one' || element.type == 'select')
			return !(element.selectedIndex >= 0 && element.options[element.selectedIndex].value != '');
		else
			return ((element.get('value') == null) || (element.get('value').length == 0));
	}

});

Form.Validator.addAllThese([

	['required', {
		errorMsg: function(){
			return Form.Validator.getMsg('required');
		},
		test: function(element){
			return !Form.Validator.getValidator('IsEmpty').test(element);
		}
	}],

	['minLength', {
		errorMsg: function(element, props){
			if ($type(props.minLength))
				return Form.Validator.getMsg('minLength').substitute({minLength:props.minLength,length:element.get('value').length });
			else return '';
		},
		test: function(element, props){
			if ($type(props.minLength)) return (element.get('value').length >= $pick(props.minLength, 0));
			else return true;
		}
	}],

	['maxLength', {
		errorMsg: function(element, props){
			//props is {maxLength:10}
			if ($type(props.maxLength))
				return Form.Validator.getMsg('maxLength').substitute({maxLength:props.maxLength,length:element.get('value').length });
			else return '';
		},
		test: function(element, props){
			//if the value is <= than the maxLength value, element passes test
			return (element.get('value').length <= $pick(props.maxLength, 10000));
		}
	}],

	['validate-integer', {
		errorMsg: Form.Validator.getMsg.pass('integer'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) || (/^(-?[1-9]\d*|0)$/).test(element.get('value'));
		}
	}],

	['validate-numeric', {
		errorMsg: Form.Validator.getMsg.pass('numeric'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) ||
				(/^-?(?:0$0(?=\d*\.)|[1-9]|0)\d*(\.\d+)?$/).test(element.get('value'));
		}
	}],

	['validate-digits', {
		errorMsg: Form.Validator.getMsg.pass('digits'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) || (/^[\d() .:\-\+#]+$/.test(element.get('value')));
		}
	}],

	['validate-alpha', {
		errorMsg: Form.Validator.getMsg.pass('alpha'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) ||  (/^[a-zA-Z]+$/).test(element.get('value'));
		}
	}],

	['validate-alphanum', {
		errorMsg: Form.Validator.getMsg.pass('alphanum'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) || !(/\W/).test(element.get('value'));
		}
	}],

	['validate-date', {
		errorMsg: function(element, props){
			if (Date.parse){
				var format = props.dateFormat || '%x';
				return Form.Validator.getMsg('dateSuchAs').substitute({date: new Date().format(format)});
			} else {
				return Form.Validator.getMsg('dateInFormatMDY');
			}
		},
		test: function(element, props){
			if (Form.Validator.getValidator('IsEmpty').test(element)) return true;
			var d;
			if (Date.parse){
				var format = props.dateFormat || '%x';
				d = Date.parse(element.get('value'));
				var formatted = d.format(format);
				if (formatted != 'invalid date') element.set('value', formatted);
				return !isNaN(d);
			} else {
				var regex = /^(\d{2})\/(\d{2})\/(\d{4})$/;
				if (!regex.test(element.get('value'))) return false;
				d = new Date(element.get('value').replace(regex, '$1/$2/$3'));
				return (parseInt(RegExp.$1, 10) == (1 + d.getMonth())) &&
					(parseInt(RegExp.$2, 10) == d.getDate()) &&
					(parseInt(RegExp.$3, 10) == d.getFullYear());
			}
		}
	}],

	['validate-email', {
		errorMsg: Form.Validator.getMsg.pass('email'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) || (/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i).test(element.get('value'));
		}
	}],

	['validate-url', {
		errorMsg: Form.Validator.getMsg.pass('url'),
		test: function(element){
			return Form.Validator.getValidator('IsEmpty').test(element) || (/^(https?|ftp|rmtp|mms):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)(:(\d+))?\/?/i).test(element.get('value'));
		}
	}],

	['validate-currency-dollar', {
		errorMsg: Form.Validator.getMsg.pass('currencyDollar'),
		test: function(element){
			// [$]1[##][,###]+[.##]
			// [$]1###+[.##]
			// [$]0.##
			// [$].##
			return Form.Validator.getValidator('IsEmpty').test(element) ||  (/^\$?\-?([1-9]{1}[0-9]{0,2}(\,[0-9]{3})*(\.[0-9]{0,2})?|[1-9]{1}\d*(\.[0-9]{0,2})?|0(\.[0-9]{0,2})?|(\.[0-9]{1,2})?)$/).test(element.get('value'));
		}
	}],

	['validate-one-required', {
		errorMsg: Form.Validator.getMsg.pass('oneRequired'),
		test: function(element, props){
			var p = document.id(props['validate-one-required']) || element.getParent(props['validate-one-required']);
			return p.getElements('input').some(function(el){
				if (['checkbox', 'radio'].contains(el.get('type'))) return el.get('checked');
				return el.get('value');
			});
		}
	}]

]);

Element.Properties.validator = {

	set: function(options){
		var validator = this.retrieve('validator');
		if (validator) validator.setOptions(options);
		return this.store('validator:options', options);
	},

	get: function(options){
		if (options || !this.retrieve('validator')){
			if (options || !this.retrieve('validator:options')) this.set('validator', options);
			this.store('validator', new Form.Validator(this, this.retrieve('validator:options')));
		}
		return this.retrieve('validator');
	}

};

Element.implement({

	validate: function(options){
		if (options) this.set('validator', options);
		return this.get('validator', options).validate();
	}

});
//legacy
var FormValidator = Form.Validator;


/*
---

script: Form.Validator.Inline.js

name: Form.Validator.Inline

description: Extends Form.Validator to add inline messages.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - /Form.Validator

provides: [Form.Validator.Inline]

...
*/

Form.Validator.Inline = new Class({

	Extends: Form.Validator,

	options: {
		showError: function(errorElement){
			if (errorElement.reveal) errorElement.reveal();
			else errorElement.setStyle('display', 'block');
		},
		hideError: function(errorElement){
			if (errorElement.dissolve) errorElement.dissolve();
			else errorElement.setStyle('display', 'none');
		},
		scrollToErrorsOnSubmit: true,
		scrollToErrorsOnBlur: false,
		scrollToErrorsOnChange: false,
		scrollFxOptions: {
			transition: 'quad:out',
			offset: {
				y: -20
			}
		}
	},

	initialize: function(form, options){
		this.parent(form, options);
		this.addEvent('onElementValidate', function(isValid, field, className, warn){
			var validator = this.getValidator(className);
			if (!isValid && validator.getError(field)){
				if (warn) field.addClass('warning');
				var advice = this.makeAdvice(className, field, validator.getError(field), warn);
				this.insertAdvice(advice, field);
				this.showAdvice(className, field);
			} else {
				this.hideAdvice(className, field);
			}
		});
	},

	makeAdvice: function(className, field, error, warn){
		var errorMsg = (warn)?this.warningPrefix:this.errorPrefix;
			errorMsg += (this.options.useTitles) ? field.title || error:error;
		var cssClass = (warn) ? 'warning-advice' : 'validation-advice';
		var advice = this.getAdvice(className, field);
		if(advice) {
			advice = advice.set('html', errorMsg);
		} else {
			advice = new Element('div', {
				html: errorMsg,
				styles: { display: 'none' },
				id: 'advice-' + className.split(':')[0] + '-' + this.getFieldId(field)
			}).addClass(cssClass);
		}
		field.store('advice-' + className, advice);
		return advice;
	},

	getFieldId : function(field){
		return field.id ? field.id : field.id = 'input_' + field.name;
	},

	showAdvice: function(className, field){
		var advice = this.getAdvice(className, field);
		if (advice && !field.retrieve(this.getPropName(className))
				&& (advice.getStyle('display') == 'none'
				|| advice.getStyle('visiblity') == 'hidden'
				|| advice.getStyle('opacity') == 0)){
			field.store(this.getPropName(className), true);
			this.options.showError(advice);
			this.fireEvent('showAdvice', [field, advice, className]);
		}
	},

	hideAdvice: function(className, field){
		var advice = this.getAdvice(className, field);
		if (advice && field.retrieve(this.getPropName(className))){
			field.store(this.getPropName(className), false);
			this.options.hideError(advice);
			this.fireEvent('hideAdvice', [field, advice, className]);
		}
	},

	getPropName: function(className){
		return 'advice' + className;
	},

	resetField: function(field){
		field = document.id(field);
		if (!field) return this;
		this.parent(field);
		field.className.split(' ').each(function(className){
			this.hideAdvice(className, field);
		}, this);
		return this;
	},

	getAllAdviceMessages: function(field, force){
		var advice = [];
		if (field.hasClass('ignoreValidation') && !force) return advice;
		var validators = field.className.split(' ').some(function(cn){
			var warner = cn.test('^warn-') || field.hasClass('warnOnly');
			if (warner) cn = cn.replace(/^warn-/, '');
			var validator = this.getValidator(cn);
			if (!validator) return;
			advice.push({
				message: validator.getError(field),
				warnOnly: warner,
				passed: validator.test(),
				validator: validator
			});
		}, this);
		return advice;
	},

	getAdvice: function(className, field){
		return field.retrieve('advice-' + className);
	},

	insertAdvice: function(advice, field){
		//Check for error position prop
		var props = field.get('validatorProps');
		//Build advice
		if (!props.msgPos || !document.id(props.msgPos)){
			if(field.type.toLowerCase() == 'radio') field.getParent().adopt(advice);
			else advice.inject(document.id(field), 'after');
		} else {
			document.id(props.msgPos).grab(advice);
		}
	},

	validateField: function(field, force, scroll){
		var result = this.parent(field, force);
		if (((this.options.scrollToErrorsOnSubmit && scroll === undefined) || scroll) && !result){
			var failed = document.id(this).getElement('.validation-failed');
			var par = document.id(this).getParent();
			while (par != document.body && par.getScrollSize().y == par.getSize().y){
				par = par.getParent();
			}
			var fx = par.retrieve('fvScroller');
			if (!fx && window.Fx && Fx.Scroll){
				fx = new Fx.Scroll(par, this.options.scrollFxOptions);
				par.store('fvScroller', fx);
			}
			if (failed){
				if (fx) fx.toElement(failed);
				else par.scrollTo(par.getScroll().x, failed.getPosition(par).y - 20);
			}
		}
		return result;
	},

	watchFields: function(fields){
		fields.each(function(el){
			if (this.options.evaluateFieldsOnBlur){
				el.addEvent('blur', this.validationMonitor.pass([el, false, this.options.scrollToErrorsOnBlur], this));
			}
			if (this.options.evaluateFieldsOnChange){
				el.addEvent('change', this.validationMonitor.pass([el, true, this.options.scrollToErrorsOnChange], this));
			}
		}, this);
	}

});


/*
---

script: Form.Validator.Extras.js

name: Form.Validator.Extras

description: Additional validators for the Form.Validator class.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - /Form.Validator

provides: [Form.Validator.Extras]

...
*/
Form.Validator.addAllThese([

	['validate-enforce-oncheck', {
		test: function(element, props){
			var fv = element.getParent('form').retrieve('validator');
			if (!fv) return true;
			(props.toEnforce || document.id(props.enforceChildrenOf).getElements('input, select, textarea')).map(function(item){
				if (element.checked) {
					fv.enforceField(item);
				} else {
					fv.ignoreField(item);
					fv.resetField(item);
				}
			});
			return true;
		}
	}],

	['validate-ignore-oncheck', {
		test: function(element, props){
			var fv = element.getParent('form').retrieve('validator');
			if (!fv) return true;
			(props.toIgnore || document.id(props.ignoreChildrenOf).getElements('input, select, textarea')).each(function(item){
				if (element.checked) {
					fv.ignoreField(item);
					fv.resetField(item);
				} else {
					fv.enforceField(item);
				}
			});
			return true;
		}
	}],

	['validate-nospace', {
		errorMsg: function(){
			return Form.Validator.getMsg('noSpace');
		},
		test: function(element, props){
			return !element.get('value').test(/\s/);
		}
	}],

	['validate-toggle-oncheck', {
		test: function(element, props){
			var fv = element.getParent('form').retrieve('validator');
			if (!fv) return true;
			var eleArr = props.toToggle || document.id(props.toToggleChildrenOf).getElements('input, select, textarea');
			if (!element.checked){
				eleArr.each(function(item){
					fv.ignoreField(item);
					fv.resetField(item);
				});
			} else {
				eleArr.each(function(item){
					fv.enforceField(item);
				});
			}
			return true;
		}
	}],

	['validate-reqchk-bynode', {
		errorMsg: function(){
			return Form.Validator.getMsg('reqChkByNode');
		},
		test: function(element, props){
			return (document.id(props.nodeId).getElements(props.selector || 'input[type=checkbox], input[type=radio]')).some(function(item){
				return item.checked;
			});
		}
	}],

	['validate-required-check', {
		errorMsg: function(element, props){
			return props.useTitle ? element.get('title') : Form.Validator.getMsg('requiredChk');
		},
		test: function(element, props){
			return !!element.checked;
		}
	}],

	['validate-reqchk-byname', {
		errorMsg: function(element, props){
			return Form.Validator.getMsg('reqChkByName').substitute({label: props.label || element.get('type')});
		},
		test: function(element, props){
			var grpName = props.groupName || element.get('name');
			var oneCheckedItem = $$(document.getElementsByName(grpName)).some(function(item, index){
				return item.checked;
			});
			var fv = element.getParent('form').retrieve('validator');
			if (oneCheckedItem && fv) fv.resetField(element);
			return oneCheckedItem;
		}
	}],

	['validate-match', {
		errorMsg: function(element, props){
			return Form.Validator.getMsg('match').substitute({matchName: props.matchName || document.id(props.matchInput).get('name')});
		},
		test: function(element, props){
			var eleVal = element.get('value');
			var matchVal = document.id(props.matchInput) && document.id(props.matchInput).get('value');
			return eleVal && matchVal ? eleVal == matchVal : true;
		}
	}],

	['validate-after-date', {
		errorMsg: function(element, props){
			return Form.Validator.getMsg('afterDate').substitute({
				label: props.afterLabel || (props.afterElement ? Form.Validator.getMsg('startDate') : Form.Validator.getMsg('currentDate'))
			});
		},
		test: function(element, props){
			var start = document.id(props.afterElement) ? Date.parse(document.id(props.afterElement).get('value')) : new Date();
			var end = Date.parse(element.get('value'));
			return end && start ? end >= start : true;
		}
	}],

	['validate-before-date', {
		errorMsg: function(element, props){
			return Form.Validator.getMsg('beforeDate').substitute({
				label: props.beforeLabel || (props.beforeElement ? Form.Validator.getMsg('endDate') : Form.Validator.getMsg('currentDate'))
			});
		},
		test: function(element, props){
			var start = Date.parse(element.get('value'));
			var end = document.id(props.beforeElement) ? Date.parse(document.id(props.beforeElement).get('value')) : new Date();
			return end && start ? end >= start : true;
		}
	}],

	['validate-custom-required', {
		errorMsg: function(){
			return Form.Validator.getMsg('required');
		},
		test: function(element, props){
			return element.get('value') != props.emptyValue;
		}
	}],

	['validate-same-month', {
		errorMsg: function(element, props){
			var startMo = document.id(props.sameMonthAs) && document.id(props.sameMonthAs).get('value');
			var eleVal = element.get('value');
			if (eleVal != '') return Form.Validator.getMsg(startMo ? 'sameMonth' : 'startMonth');
		},
		test: function(element, props){
			var d1 = Date.parse(element.get('value'));
			var d2 = Date.parse(document.id(props.sameMonthAs) && document.id(props.sameMonthAs).get('value'));
			return d1 && d2 ? d1.format('%B') == d2.format('%B') : true;
		}
	}],


	['validate-cc-num', {
		errorMsg: function(element){
			var ccNum = element.get('value').replace(/[^0-9]/g, '');
			return Form.Validator.getMsg('creditcard').substitute({length: ccNum.length});
		},
		test: function(element){
			// required is a different test
			if (Form.Validator.getValidator('IsEmpty').test(element)) { return true; }

			// Clean number value
			var ccNum = element.get('value');
			ccNum = ccNum.replace(/[^0-9]/g, '');

			var valid_type = false;

			if (ccNum.test(/^4[0-9]{12}([0-9]{3})?$/)) valid_type = 'Visa';
			else if (ccNum.test(/^5[1-5]([0-9]{14})$/)) valid_type = 'Master Card';
			else if (ccNum.test(/^3[47][0-9]{13}$/)) valid_type = 'American Express';
			else if (ccNum.test(/^6011[0-9]{12}$/)) valid_type = 'Discover';

			if (valid_type) {
				var sum = 0;
				var cur = 0;

				for(var i=ccNum.length-1; i>=0; --i) {
					cur = ccNum.charAt(i).toInt();
					if (cur == 0) { continue; }

					if ((ccNum.length-i) % 2 == 0) { cur += cur; }
					if (cur > 9) { cur = cur.toString().charAt(0).toInt() + cur.toString().charAt(1).toInt(); }

					sum += cur;
				}
				if ((sum % 10) == 0) { return true; }
			}

			var chunks = '';
			while (ccNum != '') {
				chunks += ' ' + ccNum.substr(0,4);
				ccNum = ccNum.substr(4);
			}

			element.getParent('form').retrieve('validator').ignoreField(element);
			element.set('value', chunks.clean());
			element.getParent('form').retrieve('validator').enforceField(element);
			return false;
		}
	}]


]);

/*
---

script: OverText.js

name: OverText

description: Shows text over an input that disappears when the user clicks into it. The text remains hidden if the user adds a value.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Options
  - Core/Events
  - Core/Element.Event
  - /Class.Binds
  - /Class.Occlude
  - /Element.Position
  - /Element.Shortcuts

provides: [OverText]

...
*/

var OverText = new Class({

	Implements: [Options, Events, Class.Occlude],

	Binds: ['reposition', 'assert', 'focus', 'hide'],

	options: {/*
		textOverride: null,
		onFocus: $empty()
		onTextHide: $empty(textEl, inputEl),
		onTextShow: $empty(textEl, inputEl), */
		element: 'label',
		positionOptions: {
			position: 'upperLeft',
			edge: 'upperLeft',
			offset: {
				x: 4,
				y: 2
			}
		},
		poll: false,
		pollInterval: 250,
		wrap: false
	},

	property: 'OverText',

	initialize: function(element, options){
		this.element = document.id(element);
		if (this.occlude()) return this.occluded;
		this.setOptions(options);
		this.attach(this.element);
		OverText.instances.push(this);
		if (this.options.poll) this.poll();
		return this;
	},

	toElement: function(){
		return this.element;
	},

	attach: function(){
		var val = this.options.textOverride || this.element.get('alt') || this.element.get('title');
		if (!val) return;
		this.text = new Element(this.options.element, {
			'class': 'overTxtLabel',
			styles: {
				lineHeight: 'normal',
				position: 'absolute',
				cursor: 'text'
			},
			html: val,
			events: {
				click: this.hide.pass(this.options.element == 'label', this)
			}
		}).inject(this.element, 'after');
		if (this.options.element == 'label') {
			if (!this.element.get('id')) this.element.set('id', 'input_' + new Date().getTime());
			this.text.set('for', this.element.get('id'));
		}

		if (this.options.wrap) {
			this.textHolder = new Element('div', {
				styles: {
					lineHeight: 'normal',
					position: 'relative'
				},
				'class':'overTxtWrapper'
			}).adopt(this.text).inject(this.element, 'before');
		}

		return this.enable();
	},

	destroy: function(){
		this.element.eliminate('OverTextDiv').eliminate('OverText');
		this.disable();
		if (this.text) this.text.destroy();
		if (this.textHolder) this.textHolder.destroy();
		return this;
	},

	disable: function(){
		this.element.removeEvents({
			focus: this.focus,
			blur: this.assert,
			change: this.assert
		});
		window.removeEvent('resize', this.reposition);
		this.hide(true, true);
		return this;
	},

	enable: function(){
		this.element.addEvents({
			focus: this.focus,
			blur: this.assert,
			change: this.assert
		});
		window.addEvent('resize', this.reposition);
		this.assert(true);
		this.reposition();
		return this;
	},

	wrap: function(){
		if (this.options.element == 'label') {
			if (!this.element.get('id')) this.element.set('id', 'input_' + new Date().getTime());
			this.text.set('for', this.element.get('id'));
		}
	},

	startPolling: function(){
		this.pollingPaused = false;
		return this.poll();
	},

	poll: function(stop){
		//start immediately
		//pause on focus
		//resumeon blur
		if (this.poller && !stop) return this;
		var test = function(){
			if (!this.pollingPaused) this.assert(true);
		}.bind(this);
		if (stop) $clear(this.poller);
		else this.poller = test.periodical(this.options.pollInterval, this);
		return this;
	},

	stopPolling: function(){
		this.pollingPaused = true;
		return this.poll(true);
	},

	focus: function(){
		if (this.text && (!this.text.isDisplayed() || this.element.get('disabled'))) return;
		this.hide();
	},

	hide: function(suppressFocus, force){
		if (this.text && (this.text.isDisplayed() && (!this.element.get('disabled') || force))){
			this.text.hide();
			this.fireEvent('textHide', [this.text, this.element]);
			this.pollingPaused = true;
			if (!suppressFocus){
				try {
					this.element.fireEvent('focus');
					this.element.focus();
				} catch(e){} //IE barfs if you call focus on hidden elements
			}
		}
		return this;
	},

	show: function(){
		if (this.text && !this.text.isDisplayed()){
			this.text.show();
			this.reposition();
			this.fireEvent('textShow', [this.text, this.element]);
			this.pollingPaused = false;
		}
		return this;
	},

	assert: function(suppressFocus){
		this[this.test() ? 'show' : 'hide'](suppressFocus);
	},

	test: function(){
		var v = this.element.get('value');
		return !v;
	},

	reposition: function(){
		this.assert(true);
		if (!this.element.isVisible()) return this.stopPolling().hide();
		if (this.text && this.test()) this.text.position($merge(this.options.positionOptions, {relativeTo: this.element}));
		return this;
	}

});

OverText.instances = [];

$extend(OverText, {

	each: function(fn) {
		return OverText.instances.map(function(ot, i){
			if (ot.element && ot.text) return fn.apply(OverText, [ot, i]);
			return null; //the input or the text was destroyed
		});
	},
	
	update: function(){

		return OverText.each(function(ot){
			return ot.reposition();
		});

	},

	hideAll: function(){

		return OverText.each(function(ot){
			return ot.hide(true, true);
		});

	},

	showAll: function(){
		return OverText.each(function(ot) {
			return ot.show();
		});
	}

});

if (window.Fx && Fx.Reveal) {
	Fx.Reveal.implement({
		hideInputs: Browser.Engine.trident ? 'select, input, textarea, object, embed, .overTxtLabel' : false
	});
}

/*
---

script: Fx.Elements.js

name: Fx.Elements

description: Effect to change any number of CSS properties of any number of Elements.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Fx.CSS
  - /MooTools.More

provides: [Fx.Elements]

...
*/

Fx.Elements = new Class({

	Extends: Fx.CSS,

	initialize: function(elements, options){
		this.elements = this.subject = $$(elements);
		this.parent(options);
	},

	compute: function(from, to, delta){
		var now = {};

		for (var i in from){
			var iFrom = from[i], iTo = to[i], iNow = now[i] = {};
			for (var p in iFrom) iNow[p] = this.parent(iFrom[p], iTo[p], delta);
		}

		return now;
	},

	set: function(now){
		for (var i in now){
			if (!this.elements[i]) continue;

			var iNow = now[i];
			for (var p in iNow) this.render(this.elements[i], p, iNow[p], this.options.unit);
		}

		return this;
	},

	start: function(obj){
		if (!this.check(obj)) return this;
		var from = {}, to = {};

		for (var i in obj){
			if (!this.elements[i]) continue;

			var iProps = obj[i], iFrom = from[i] = {}, iTo = to[i] = {};

			for (var p in iProps){
				var parsed = this.prepare(this.elements[i], p, iProps[p]);
				iFrom[p] = parsed.from;
				iTo[p] = parsed.to;
			}
		}

		return this.parent(from, to);
	}

});


/*
---

script: Fx.Accordion.js

name: Fx.Accordion

description: An Fx.Elements extension which allows you to easily create accordion type controls.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Element.Event
  - /Fx.Elements

provides: [Fx.Accordion]

...
*/

Fx.Accordion = new Class({

	Extends: Fx.Elements,

	options: {/*
		onActive: $empty(toggler, section),
		onBackground: $empty(toggler, section),
		*/
		fixedHeight: false,
		fixedWidth: false,
		display: 0,
		show: false,
		height: true,
		width: false,
		opacity: true,
		alwaysHide: false,
		trigger: 'click',
		initialDisplayFx: true,
		returnHeightToAuto: true
	},

	initialize: function(){
		var params = Array.link(arguments, {
			'container': Element.type, //deprecated
			'options': Object.type,
			'togglers': $defined,
			'elements': $defined
		});
		this.parent(params.elements, params.options);
		this.togglers = $$(params.togglers);
		this.previous = -1;
		this.internalChain = new Chain();
		if (this.options.alwaysHide) this.options.wait = true;
		if ($chk(this.options.show)){
			this.options.display = false;
			this.previous = this.options.show;
		}
		if (this.options.start){
			this.options.display = false;
			this.options.show = false;
		}
		this.effects = {};
		if (this.options.opacity) this.effects.opacity = 'fullOpacity';
		if (this.options.width) this.effects.width = this.options.fixedWidth ? 'fullWidth' : 'offsetWidth';
		if (this.options.height) this.effects.height = this.options.fixedHeight ? 'fullHeight' : 'scrollHeight';
		for (var i = 0, l = this.togglers.length; i < l; i++) this.addSection(this.togglers[i], this.elements[i]);
		this.elements.each(function(el, i){
			if (this.options.show === i){
				this.fireEvent('active', [this.togglers[i], el]);
			} else {
				for (var fx in this.effects) el.setStyle(fx, 0);
			}
		}, this);
		if ($chk(this.options.display) || this.options.initialDisplayFx === false) this.display(this.options.display, this.options.initialDisplayFx);
		if (this.options.fixedHeight !== false) this.options.returnHeightToAuto = false;
		this.addEvent('complete', this.internalChain.callChain.bind(this.internalChain));
	},

	addSection: function(toggler, element){
		toggler = document.id(toggler);
		element = document.id(element);
		var test = this.togglers.contains(toggler);
		this.togglers.include(toggler);
		this.elements.include(element);
		var idx = this.togglers.indexOf(toggler);
		var displayer = this.display.bind(this, idx);
		toggler.store('accordion:display', displayer);
		toggler.addEvent(this.options.trigger, displayer);
		if (this.options.height) element.setStyles({'padding-top': 0, 'border-top': 'none', 'padding-bottom': 0, 'border-bottom': 'none'});
		if (this.options.width) element.setStyles({'padding-left': 0, 'border-left': 'none', 'padding-right': 0, 'border-right': 'none'});
		element.fullOpacity = 1;
		if (this.options.fixedWidth) element.fullWidth = this.options.fixedWidth;
		if (this.options.fixedHeight) element.fullHeight = this.options.fixedHeight;
		element.setStyle('overflow', 'hidden');
		if (!test){
			for (var fx in this.effects) element.setStyle(fx, 0);
		}
		return this;
	},

	removeSection: function(toggler, displayIndex) {
		var idx = this.togglers.indexOf(toggler);
		var element = this.elements[idx];
		var remover = function(){
			this.togglers.erase(toggler);
			this.elements.erase(element);
			this.detach(toggler);
		}.bind(this);
		if (this.now == idx || displayIndex != undefined) this.display($pick(displayIndex, idx - 1 >= 0 ? idx - 1 : 0)).chain(remover);
		else remover();
		return this;
	},

	detach: function(toggler){
		var remove = function(toggler) {
			toggler.removeEvent(this.options.trigger, toggler.retrieve('accordion:display'));
		}.bind(this);
		if (!toggler) this.togglers.each(remove);
		else remove(toggler);
		return this;
	},

	display: function(index, useFx){
		if (!this.check(index, useFx)) return this;
		useFx = $pick(useFx, true);
		index = ($type(index) == 'element') ? this.elements.indexOf(index) : index;
		if (index == this.previous && !this.options.alwaysHide) return this;
		if (this.options.returnHeightToAuto){
			var prev = this.elements[this.previous];
			if (prev && !this.selfHidden){
				for (var fx in this.effects){
					prev.setStyle(fx, prev[this.effects[fx]]);
				}
			}
		}
		if ((this.timer && this.options.wait) || (index === this.previous && !this.options.alwaysHide)) return this;
		this.previous = index;
		var obj = {};
		this.elements.each(function(el, i){
			obj[i] = {};
			var hide;
			if (i != index){
				hide = true;
			} else if (this.options.alwaysHide && ((el.offsetHeight > 0 && this.options.height) || el.offsetWidth > 0 && this.options.width)){
				hide = true;
				this.selfHidden = true;
			}
			this.fireEvent(hide ? 'background' : 'active', [this.togglers[i], el]);
			for (var fx in this.effects) obj[i][fx] = hide ? 0 : el[this.effects[fx]];
		}, this);
		this.internalChain.clearChain();
		this.internalChain.chain(function(){
			if (this.options.returnHeightToAuto && !this.selfHidden){
				var el = this.elements[index];
				if (el) el.setStyle('height', 'auto');
			};
		}.bind(this));
		return useFx ? this.start(obj) : this.set(obj);
	}

});

/*
	Compatibility with 1.2.0
*/
var Accordion = new Class({

	Extends: Fx.Accordion,

	initialize: function(){
		this.parent.apply(this, arguments);
		var params = Array.link(arguments, {'container': Element.type});
		this.container = params.container;
	},

	addSection: function(toggler, element, pos){
		toggler = document.id(toggler);
		element = document.id(element);
		var test = this.togglers.contains(toggler);
		var len = this.togglers.length;
		if (len && (!test || pos)){
			pos = $pick(pos, len - 1);
			toggler.inject(this.togglers[pos], 'before');
			element.inject(toggler, 'after');
		} else if (this.container && !test){
			toggler.inject(this.container);
			element.inject(this.container);
		}
		return this.parent.apply(this, arguments);
	}

});

/*
---

script: Fx.Move.js

name: Fx.Move

description: Defines Fx.Move, a class that works with Element.Position.js to transition an element from one location to another.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Fx.Morph
  - /Element.Position

provides: [Fx.Move]

...
*/

Fx.Move = new Class({

	Extends: Fx.Morph,

	options: {
		relativeTo: document.body,
		position: 'center',
		edge: false,
		offset: {x: 0, y: 0}
	},

	start: function(destination){
		var element = this.element,
			topLeft = element.getStyles('top', 'left');
		if (topLeft.top == 'auto' || topLeft.left == 'auto'){
			element.setPosition(element.getPosition(element.getOffsetParent()));
		}
		return this.parent(element.position($merge(this.options, destination, {returnPos: true})));
	}

});

Element.Properties.move = {

	set: function(options){
		var morph = this.retrieve('move');
		if (morph) morph.cancel();
		return this.eliminate('move').store('move:options', $extend({link: 'cancel'}, options));
	},

	get: function(options){
		if (options || !this.retrieve('move')){
			if (options || !this.retrieve('move:options')) this.set('move', options);
			this.store('move', new Fx.Move(this, this.retrieve('move:options')));
		}
		return this.retrieve('move');
	}

};

Element.implement({

	move: function(options){
		this.get('move').start(options);
		return this;
	}

});


/*
---

script: Fx.Reveal.js

name: Fx.Reveal

description: Defines Fx.Reveal, a class that shows and hides elements with a transition.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Fx.Morph
  - /Element.Shortcuts
  - /Element.Measure

provides: [Fx.Reveal]

...
*/

Fx.Reveal = new Class({

	Extends: Fx.Morph,

	options: {/*	  
		onShow: $empty(thisElement),
		onHide: $empty(thisElement),
		onComplete: $empty(thisElement),
		heightOverride: null,
		widthOverride: null, */
		link: 'cancel',
		styles: ['padding', 'border', 'margin'],
		transitionOpacity: !Browser.Engine.trident4,
		mode: 'vertical',
		display: function(){
			return this.element.get('tag') != 'tr' ? 'block' : 'table-row';
		},
		hideInputs: Browser.Engine.trident ? 'select, input, textarea, object, embed' : false,
		opacity: 1
	},

	dissolve: function(){
		try {
			if (!this.hiding && !this.showing){
				if (this.element.getStyle('display') != 'none'){
					this.hiding = true;
					this.showing = false;
					this.hidden = true;
					this.cssText = this.element.style.cssText;
					var startStyles = this.element.getComputedSize({
						styles: this.options.styles,
						mode: this.options.mode
					});
					this.element.setStyle('display', $lambda(this.options.display).apply(this));
					if (this.options.transitionOpacity) startStyles.opacity = this.options.opacity;
					var zero = {};
					$each(startStyles, function(style, name){
						zero[name] = [style, 0];
					}, this);
					this.element.setStyle('overflow', 'hidden');
					var hideThese = this.options.hideInputs ? this.element.getElements(this.options.hideInputs) : null;
					this.$chain.unshift(function(){
						if (this.hidden){
							this.hiding = false;
							$each(startStyles, function(style, name){
								startStyles[name] = style;
							}, this);
							this.element.style.cssText = this.cssText;
							this.element.setStyle('display', 'none');
							if (hideThese) hideThese.setStyle('visibility', 'visible');
						}
						this.fireEvent('hide', this.element);
						this.callChain();
					}.bind(this));
					if (hideThese) hideThese.setStyle('visibility', 'hidden');
					this.start(zero);
				} else {
					this.callChain.delay(10, this);
					this.fireEvent('complete', this.element);
					this.fireEvent('hide', this.element);
				}
			} else if (this.options.link == 'chain'){
				this.chain(this.dissolve.bind(this));
			} else if (this.options.link == 'cancel' && !this.hiding){
				this.cancel();
				this.dissolve();
			}
		} catch(e){
			this.hiding = false;
			this.element.setStyle('display', 'none');
			this.callChain.delay(10, this);
			this.fireEvent('complete', this.element);
			this.fireEvent('hide', this.element);
		}
		return this;
	},

	reveal: function(){
		try {
			if (!this.showing && !this.hiding){
				if (this.element.getStyle('display') == 'none'){
					this.showing = true;
					this.hiding = this.hidden =  false;
					var startStyles;
					this.cssText = this.element.style.cssText;
					//toggle display, but hide it
					this.element.measure(function(){
						//create the styles for the opened/visible state
						startStyles = this.element.getComputedSize({
							styles: this.options.styles,
							mode: this.options.mode
						});
					}.bind(this));
					$each(startStyles, function(style, name){
						startStyles[name] = style;
					});
					//if we're overridding height/width
					if ($chk(this.options.heightOverride)) startStyles.height = this.options.heightOverride.toInt();
					if ($chk(this.options.widthOverride)) startStyles.width = this.options.widthOverride.toInt();
					if (this.options.transitionOpacity) {
						this.element.setStyle('opacity', 0);
						startStyles.opacity = this.options.opacity;
					}
					//create the zero state for the beginning of the transition
					var zero = {
						height: 0,
						display: $lambda(this.options.display).apply(this)
					};
					$each(startStyles, function(style, name){ zero[name] = 0; });
					//set to zero
					this.element.setStyles($merge(zero, {overflow: 'hidden'}));
					//hide inputs
					var hideThese = this.options.hideInputs ? this.element.getElements(this.options.hideInputs) : null;
					if (hideThese) hideThese.setStyle('visibility', 'hidden');
					//start the effect
					this.start(startStyles);
					this.$chain.unshift(function(){
						this.element.style.cssText = this.cssText;
						this.element.setStyle('display', $lambda(this.options.display).apply(this));
						if (!this.hidden) this.showing = false;
						if (hideThese) hideThese.setStyle('visibility', 'visible');
						this.callChain();
						this.fireEvent('show', this.element);
					}.bind(this));
				} else {
					this.callChain();
					this.fireEvent('complete', this.element);
					this.fireEvent('show', this.element);
				}
			} else if (this.options.link == 'chain'){
				this.chain(this.reveal.bind(this));
			} else if (this.options.link == 'cancel' && !this.showing){
				this.cancel();
				this.reveal();
			}
		} catch(e){
			this.element.setStyles({
				display: $lambda(this.options.display).apply(this),
				visiblity: 'visible',
				opacity: this.options.opacity
			});
			this.showing = false;
			this.callChain.delay(10, this);
			this.fireEvent('complete', this.element);
			this.fireEvent('show', this.element);
		}
		return this;
	},

	toggle: function(){
		if (this.element.getStyle('display') == 'none'){
			this.reveal();
		} else {
			this.dissolve();
		}
		return this;
	},

	cancel: function(){
		this.parent.apply(this, arguments);
		this.element.style.cssText = this.cssText;
		this.hiding = false;
		this.showing = false;
		return this;
	}

});

Element.Properties.reveal = {

	set: function(options){
		var reveal = this.retrieve('reveal');
		if (reveal) reveal.cancel();
		return this.eliminate('reveal').store('reveal:options', options);
	},

	get: function(options){
		if (options || !this.retrieve('reveal')){
			if (options || !this.retrieve('reveal:options')) this.set('reveal', options);
			this.store('reveal', new Fx.Reveal(this, this.retrieve('reveal:options')));
		}
		return this.retrieve('reveal');
	}

};

Element.Properties.dissolve = Element.Properties.reveal;

Element.implement({

	reveal: function(options){
		this.get('reveal', options).reveal();
		return this;
	},

	dissolve: function(options){
		this.get('reveal', options).dissolve();
		return this;
	},

	nix: function(){
		var params = Array.link(arguments, {destroy: Boolean.type, options: Object.type});
		this.get('reveal', params.options).dissolve().chain(function(){
			this[params.destroy ? 'destroy' : 'dispose']();
		}.bind(this));
		return this;
	},

	wink: function(){
		var params = Array.link(arguments, {duration: Number.type, options: Object.type});
		var reveal = this.get('reveal', params.options);
		reveal.reveal().chain(function(){
			(function(){
				reveal.dissolve();
			}).delay(params.duration || 2000);
		});
	}


});

/*
---

script: Fx.Scroll.js

name: Fx.Scroll

description: Effect to smoothly scroll any element, including the window.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Fx
  - Core/Element.Event
  - Core/Element.Dimensions
  - /MooTools.More

provides: [Fx.Scroll]

...
*/

Fx.Scroll = new Class({

	Extends: Fx,

	options: {
		offset: {x: 0, y: 0},
		wheelStops: true
	},

	initialize: function(element, options){
		this.element = this.subject = document.id(element);
		this.parent(options);
		var cancel = this.cancel.bind(this, false);

		if ($type(this.element) != 'element') this.element = document.id(this.element.getDocument().body);

		var stopper = this.element;

		if (this.options.wheelStops){
			this.addEvent('start', function(){
				stopper.addEvent('mousewheel', cancel);
			}, true);
			this.addEvent('complete', function(){
				stopper.removeEvent('mousewheel', cancel);
			}, true);
		}
	},

	set: function(){
		var now = Array.flatten(arguments);
		if (Browser.Engine.gecko) now = [Math.round(now[0]), Math.round(now[1])];
		this.element.scrollTo(now[0] + this.options.offset.x, now[1] + this.options.offset.y);
	},

	compute: function(from, to, delta){
		return [0, 1].map(function(i){
			return Fx.compute(from[i], to[i], delta);
		});
	},

	start: function(x, y){
		if (!this.check(x, y)) return this;
		var scrollSize = this.element.getScrollSize(),
			scroll = this.element.getScroll(), 
			values = {x: x, y: y};
		for (var z in values){
			var max = scrollSize[z];
			if ($chk(values[z])) values[z] = ($type(values[z]) == 'number') ? values[z] : max;
			else values[z] = scroll[z];
			values[z] += this.options.offset[z];
		}
		return this.parent([scroll.x, scroll.y], [values.x, values.y]);
	},

	toTop: function(){
		return this.start(false, 0);
	},

	toLeft: function(){
		return this.start(0, false);
	},

	toRight: function(){
		return this.start('right', false);
	},

	toBottom: function(){
		return this.start(false, 'bottom');
	},

	toElement: function(el){
		var position = document.id(el).getPosition(this.element);
		return this.start(position.x, position.y);
	},

	scrollIntoView: function(el, axes, offset){
		axes = axes ? $splat(axes) : ['x','y'];
		var to = {};
		el = document.id(el);
		var pos = el.getPosition(this.element);
		var size = el.getSize();
		var scroll = this.element.getScroll();
		var containerSize = this.element.getSize();
		var edge = {
			x: pos.x + size.x,
			y: pos.y + size.y
		};
		['x','y'].each(function(axis) {
			if (axes.contains(axis)) {
				if (edge[axis] > scroll[axis] + containerSize[axis]) to[axis] = edge[axis] - containerSize[axis];
				if (pos[axis] < scroll[axis]) to[axis] = pos[axis];
			}
			if (to[axis] == null) to[axis] = scroll[axis];
			if (offset && offset[axis]) to[axis] = to[axis] + offset[axis];
		}, this);
		if (to.x != scroll.x || to.y != scroll.y) this.start(to.x, to.y);
		return this;
	},

	scrollToCenter: function(el, axes, offset){
		axes = axes ? $splat(axes) : ['x', 'y'];
		el = $(el);
		var to = {},
			pos = el.getPosition(this.element),
			size = el.getSize(),
			scroll = this.element.getScroll(),
			containerSize = this.element.getSize(),
			edge = {
				x: pos.x + size.x,
				y: pos.y + size.y
			};

		['x','y'].each(function(axis){
			if(axes.contains(axis)){
				to[axis] = pos[axis] - (containerSize[axis] - size[axis])/2;
			}
			if(to[axis] == null) to[axis] = scroll[axis];
			if(offset && offset[axis]) to[axis] = to[axis] + offset[axis];
		}, this);
		if (to.x != scroll.x || to.y != scroll.y) this.start(to.x, to.y);
		return this;
	}

});


/*
---

script: Fx.Slide.js

name: Fx.Slide

description: Effect to slide an element in and out of view.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Fx
  - Core/Element.Style
  - /MooTools.More

provides: [Fx.Slide]

...
*/

Fx.Slide = new Class({

	Extends: Fx,

	options: {
		mode: 'vertical',
		wrapper: false,
		hideOverflow: true,
		resetHeight: false
	},

	initialize: function(element, options){
		this.addEvent('complete', function(){
			this.open = (this.wrapper['offset' + this.layout.capitalize()] != 0);
			if (this.open && this.options.resetHeight) this.wrapper.setStyle('height', '');
			if (this.open && Browser.Engine.webkit419) this.element.dispose().inject(this.wrapper);
		}, true);
		this.element = this.subject = document.id(element);
		this.parent(options);
		var wrapper = this.element.retrieve('wrapper');
		var styles = this.element.getStyles('margin', 'position', 'overflow');
		if (this.options.hideOverflow) styles = $extend(styles, {overflow: 'hidden'});
		if (this.options.wrapper) wrapper = document.id(this.options.wrapper).setStyles(styles);
		this.wrapper = wrapper || new Element('div', {
			styles: styles
		}).wraps(this.element);
		this.element.store('wrapper', this.wrapper).setStyle('margin', 0);
		this.now = [];
		this.open = true;
	},

	vertical: function(){
		this.margin = 'margin-top';
		this.layout = 'height';
		this.offset = this.element.offsetHeight;
	},

	horizontal: function(){
		this.margin = 'margin-left';
		this.layout = 'width';
		this.offset = this.element.offsetWidth;
	},

	set: function(now){
		this.element.setStyle(this.margin, now[0]);
		this.wrapper.setStyle(this.layout, now[1]);
		return this;
	},

	compute: function(from, to, delta){
		return [0, 1].map(function(i){
			return Fx.compute(from[i], to[i], delta);
		});
	},

	start: function(how, mode){
		if (!this.check(how, mode)) return this;
		this[mode || this.options.mode]();
		var margin = this.element.getStyle(this.margin).toInt();
		var layout = this.wrapper.getStyle(this.layout).toInt();
		var caseIn = [[margin, layout], [0, this.offset]];
		var caseOut = [[margin, layout], [-this.offset, 0]];
		var start;
		switch (how){
			case 'in': start = caseIn; break;
			case 'out': start = caseOut; break;
			case 'toggle': start = (layout == 0) ? caseIn : caseOut;
		}
		return this.parent(start[0], start[1]);
	},

	slideIn: function(mode){
		return this.start('in', mode);
	},

	slideOut: function(mode){
		return this.start('out', mode);
	},

	hide: function(mode){
		this[mode || this.options.mode]();
		this.open = false;
		return this.set([-this.offset, 0]);
	},

	show: function(mode){
		this[mode || this.options.mode]();
		this.open = true;
		return this.set([0, this.offset]);
	},

	toggle: function(mode){
		return this.start('toggle', mode);
	}

});

Element.Properties.slide = {

	set: function(options){
		var slide = this.retrieve('slide');
		if (slide) slide.cancel();
		return this.eliminate('slide').store('slide:options', $extend({link: 'cancel'}, options));
	},

	get: function(options){
		if (options || !this.retrieve('slide')){
			if (options || !this.retrieve('slide:options')) this.set('slide', options);
			this.store('slide', new Fx.Slide(this, this.retrieve('slide:options')));
		}
		return this.retrieve('slide');
	}

};

Element.implement({

	slide: function(how, mode){
		how = how || 'toggle';
		var slide = this.get('slide'), toggle;
		switch (how){
			case 'hide': slide.hide(mode); break;
			case 'show': slide.show(mode); break;
			case 'toggle':
				var flag = this.retrieve('slide:flag', slide.open);
				slide[flag ? 'slideOut' : 'slideIn'](mode);
				this.store('slide:flag', !flag);
				toggle = true;
			break;
			default: slide.start(how, mode);
		}
		if (!toggle) this.eliminate('slide:flag');
		return this;
	}

});


/*
---

script: Fx.SmoothScroll.js

name: Fx.SmoothScroll

description: Class for creating a smooth scrolling effect to all internal links on the page.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Selectors
  - /Fx.Scroll

provides: [Fx.SmoothScroll]

...
*/

var SmoothScroll = Fx.SmoothScroll = new Class({

	Extends: Fx.Scroll,

	initialize: function(options, context){
		context = context || document;
		this.doc = context.getDocument();
		var win = context.getWindow();
		this.parent(this.doc, options);
		this.links = $$(this.options.links || this.doc.links);
		var location = win.location.href.match(/^[^#]*/)[0] + '#';
		this.links.each(function(link){
			if (link.href.indexOf(location) != 0) {return;}
			var anchor = link.href.substr(location.length);
			if (anchor) this.useLink(link, anchor);
		}, this);
		if (!Browser.Engine.webkit419) {
			this.addEvent('complete', function(){
				win.location.hash = this.anchor;
			}, true);
		}
	},

	useLink: function(link, anchor){
		var el;
		link.addEvent('click', function(event){
			if (el !== false && !el) el = document.id(anchor) || this.doc.getElement('a[name=' + anchor + ']');
			if (el) {
				event.preventDefault();
				this.anchor = anchor;
				this.toElement(el).chain(function(){
					this.fireEvent('scrolledTo', [link, el]);
				}.bind(this));
				link.blur();
			}
		}.bind(this));
	}
});

/*
---

script: Fx.Sort.js

name: Fx.Sort

description: Defines Fx.Sort, a class that reorders lists with a transition.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element.Dimensions
  - /Fx.Elements
  - /Element.Measure

provides: [Fx.Sort]

...
*/

Fx.Sort = new Class({

	Extends: Fx.Elements,

	options: {
		mode: 'vertical'
	},

	initialize: function(elements, options){
		this.parent(elements, options);
		this.elements.each(function(el){
			if (el.getStyle('position') == 'static') el.setStyle('position', 'relative');
		});
		this.setDefaultOrder();
	},

	setDefaultOrder: function(){
		this.currentOrder = this.elements.map(function(el, index){
			return index;
		});
	},

	sort: function(newOrder){
		if ($type(newOrder) != 'array') return false;
		var top = 0,
			left = 0,
			next = {},
			zero = {},
			vert = this.options.mode == 'vertical';
		var current = this.elements.map(function(el, index){
			var size = el.getComputedSize({styles: ['border', 'padding', 'margin']});
			var val;
			if (vert){
				val = {
					top: top,
					margin: size['margin-top'],
					height: size.totalHeight
				};
				top += val.height - size['margin-top'];
			} else {
				val = {
					left: left,
					margin: size['margin-left'],
					width: size.totalWidth
				};
				left += val.width;
			}
			var plane = vert ? 'top' : 'left';
			zero[index] = {};
			var start = el.getStyle(plane).toInt();
			zero[index][plane] = start || 0;
			return val;
		}, this);
		this.set(zero);
		newOrder = newOrder.map(function(i){ return i.toInt(); });
		if (newOrder.length != this.elements.length){
			this.currentOrder.each(function(index){
				if (!newOrder.contains(index)) newOrder.push(index);
			});
			if (newOrder.length > this.elements.length)
				newOrder.splice(this.elements.length-1, newOrder.length - this.elements.length);
		}
		var margin = top = left = 0;
		newOrder.each(function(item, index){
			var newPos = {};
			if (vert){
				newPos.top = top - current[item].top - margin;
				top += current[item].height;
			} else {
				newPos.left = left - current[item].left;
				left += current[item].width;
			}
			margin = margin + current[item].margin;
			next[item]=newPos;
		}, this);
		var mapped = {};
		$A(newOrder).sort().each(function(index){
			mapped[index] = next[index];
		});
		this.start(mapped);
		this.currentOrder = newOrder;
		return this;
	},

	rearrangeDOM: function(newOrder){
		newOrder = newOrder || this.currentOrder;
		var parent = this.elements[0].getParent();
		var rearranged = [];
		this.elements.setStyle('opacity', 0);
		//move each element and store the new default order
		newOrder.each(function(index){
			rearranged.push(this.elements[index].inject(parent).setStyles({
				top: 0,
				left: 0
			}));
		}, this);
		this.elements.setStyle('opacity', 1);
		this.elements = $$(rearranged);
		this.setDefaultOrder();
		return this;
	},

	getDefaultOrder: function(){
		return this.elements.map(function(el, index){
			return index;
		});
	},

	forward: function(){
		return this.sort(this.getDefaultOrder());
	},

	backward: function(){
		return this.sort(this.getDefaultOrder().reverse());
	},

	reverse: function(){
		return this.sort(this.currentOrder.reverse());
	},

	sortByElements: function(elements){
		return this.sort(elements.map(function(el){
			return this.elements.indexOf(el);
		}, this));
	},

	swap: function(one, two){
		if ($type(one) == 'element') one = this.elements.indexOf(one);
		if ($type(two) == 'element') two = this.elements.indexOf(two);
		
		var newOrder = $A(this.currentOrder);
		newOrder[this.currentOrder.indexOf(one)] = two;
		newOrder[this.currentOrder.indexOf(two)] = one;
		return this.sort(newOrder);
	}

});

/*
---

script: Drag.js

name: Drag

description: The base Drag Class. Can be used to drag and resize Elements using mouse events.

license: MIT-style license

authors:
  - Valerio Proietti
  - Tom Occhinno
  - Jan Kassens

requires:
  - Core/Events
  - Core/Options
  - Core/Element.Event
  - Core/Element.Style
  - Core/Element.Dimensions
  - /MooTools.More

provides: [Drag]
...

*/

var Drag = new Class({

	Implements: [Events, Options],

	options: {/*
		onBeforeStart: $empty(thisElement),
		onStart: $empty(thisElement, event),
		onSnap: $empty(thisElement)
		onDrag: $empty(thisElement, event),
		onCancel: $empty(thisElement),
		onComplete: $empty(thisElement, event),*/
		snap: 6,
		unit: 'px',
		grid: false,
		style: true,
		limit: false,
		handle: false,
		invert: false,
		preventDefault: false,
		stopPropagation: false,
		modifiers: {x: 'left', y: 'top'}
	},

	initialize: function(){
		var params = Array.link(arguments, {'options': Object.type, 'element': $defined});
		this.element = document.id(params.element);
		this.document = this.element.getDocument();
		this.setOptions(params.options || {});
		var htype = $type(this.options.handle);
		this.handles = ((htype == 'array' || htype == 'collection') ? $$(this.options.handle) : document.id(this.options.handle)) || this.element;
		this.mouse = {'now': {}, 'pos': {}};
		this.value = {'start': {}, 'now': {}};

		this.selection = (Browser.Engine.trident) ? 'selectstart' : 'mousedown';

		this.bound = {
			start: this.start.bind(this),
			check: this.check.bind(this),
			drag: this.drag.bind(this),
			stop: this.stop.bind(this),
			cancel: this.cancel.bind(this),
			eventStop: $lambda(false)
		};
		this.attach();
	},

	attach: function(){
		this.handles.addEvent('mousedown', this.bound.start);
		return this;
	},

	detach: function(){
		this.handles.removeEvent('mousedown', this.bound.start);
		return this;
	},

	start: function(event){
		if (event.rightClick) return;
		if (this.options.preventDefault) event.preventDefault();
		if (this.options.stopPropagation) event.stopPropagation();
		this.mouse.start = event.page;
		this.fireEvent('beforeStart', this.element);
		var limit = this.options.limit;
		this.limit = {x: [], y: []};
		var styles = this.element.getStyles('left', 'right', 'top', 'bottom');
		this._invert = {
			x: this.options.modifiers.x == 'left' && styles.left == 'auto' &&
			   !isNaN(styles.right.toInt()) && (this.options.modifiers.x = 'right'),
			y: this.options.modifiers.y == 'top' && styles.top == 'auto' &&
			   !isNaN(styles.bottom.toInt()) && (this.options.modifiers.y = 'bottom')
		};

		var z, coordinates;
		for (z in this.options.modifiers){
			if (!this.options.modifiers[z]) continue;

			var style = this.element.getStyle(this.options.modifiers[z]);

			// Some browsers (IE and Opera) don't always return pixels.
			if (style && !style.match(/px$/)){
				if (!coordinates) coordinates = this.element.getCoordinates(this.element.getOffsetParent());
				style = coordinates[this.options.modifiers[z]];
			}

			if (this.options.style) this.value.now[z] = (style || 0).toInt();
			else this.value.now[z] = this.element[this.options.modifiers[z]];

			if (this.options.invert) this.value.now[z] *= -1;
			if (this._invert[z]) this.value.now[z] *= -1;

			this.mouse.pos[z] = event.page[z] - this.value.now[z];

			if (limit && limit[z]){
				for (var i = 2; i--; i){
					if ($chk(limit[z][i])) this.limit[z][i] = $lambda(limit[z][i])();
				}
			}
		}

		if ($type(this.options.grid) == 'number') this.options.grid = {x: this.options.grid, y: this.options.grid};
		this.document.addEvents({mousemove: this.bound.check, mouseup: this.bound.cancel});
		this.document.addEvent(this.selection, this.bound.eventStop);
	},

	check: function(event){
		if (this.options.preventDefault) event.preventDefault();
		var distance = Math.round(Math.sqrt(Math.pow(event.page.x - this.mouse.start.x, 2) + Math.pow(event.page.y - this.mouse.start.y, 2)));
		if (distance > this.options.snap){
			this.cancel();
			this.document.addEvents({
				mousemove: this.bound.drag,
				mouseup: this.bound.stop
			});
			this.fireEvent('start', [this.element, event]).fireEvent('snap', this.element);
		}
	},

	drag: function(event){
		if (this.options.preventDefault) event.preventDefault();
		this.mouse.now = event.page;
		for (var z in this.options.modifiers){
			if (!this.options.modifiers[z]) continue;
			this.value.now[z] = this.mouse.now[z] - this.mouse.pos[z];
			if (this.options.invert) this.value.now[z] *= -1;
			if (this._invert[z]) this.value.now[z] *= -1;
			if (this.options.limit && this.limit[z]){
				if ($chk(this.limit[z][1]) && (this.value.now[z] > this.limit[z][1])){
					this.value.now[z] = this.limit[z][1];
				} else if ($chk(this.limit[z][0]) && (this.value.now[z] < this.limit[z][0])){
					this.value.now[z] = this.limit[z][0];
				}
			}
			if (this.options.grid[z]) this.value.now[z] -= ((this.value.now[z] - (this.limit[z][0]||0)) % this.options.grid[z]);
			if (this.options.style) {
				this.element.setStyle(this.options.modifiers[z], this.value.now[z] + this.options.unit);
			} else {
				this.element[this.options.modifiers[z]] = this.value.now[z];
			}
		}
		this.fireEvent('drag', [this.element, event]);
	},

	cancel: function(event){
		this.document.removeEvent('mousemove', this.bound.check);
		this.document.removeEvent('mouseup', this.bound.cancel);
		if (event){
			this.document.removeEvent(this.selection, this.bound.eventStop);
			this.fireEvent('cancel', this.element);
		}
	},

	stop: function(event){
		this.document.removeEvent(this.selection, this.bound.eventStop);
		this.document.removeEvent('mousemove', this.bound.drag);
		this.document.removeEvent('mouseup', this.bound.stop);
		if (event) this.fireEvent('complete', [this.element, event]);
	}

});

Element.implement({

	makeResizable: function(options){
		var drag = new Drag(this, $merge({modifiers: {x: 'width', y: 'height'}}, options));
		this.store('resizer', drag);
		return drag.addEvent('drag', function(){
			this.fireEvent('resize', drag);
		}.bind(this));
	}

});


/*
---

script: Drag.Move.js

name: Drag.Move

description: A Drag extension that provides support for the constraining of draggables to containers and droppables.

license: MIT-style license

authors:
  - Valerio Proietti
  - Tom Occhinno
  - Jan Kassens
  - Aaron Newton
  - Scott Kyle

requires:
  - Core/Element.Dimensions
  - /Drag

provides: [Drag.Move]

...
*/

Drag.Move = new Class({

	Extends: Drag,

	options: {/*
		onEnter: $empty(thisElement, overed),
		onLeave: $empty(thisElement, overed),
		onDrop: $empty(thisElement, overed, event),*/
		droppables: [],
		container: false,
		precalculate: false,
		includeMargins: true,
		checkDroppables: true
	},

	initialize: function(element, options){
		this.parent(element, options);
		element = this.element;
		
		this.droppables = $$(this.options.droppables);
		this.container = document.id(this.options.container);
		
		if (this.container && $type(this.container) != 'element')
			this.container = document.id(this.container.getDocument().body);

		if (this.options.style){
			if (this.options.modifiers.x == "left" && this.options.modifiers.y == "top"){
				var parentStyles,
					parent = document.id(element.getOffsetParent());
				if (parent) parentStyles = parent.getStyles('border-top-width', 'border-left-width');

				var styles = element.getStyles('left', 'top');
				if (parent && (styles.left == 'auto' || styles.top == 'auto')){
					var parentPosition = element.getPosition(parent);
					parentPosition.x = parentPosition.x - (parentStyles['border-left-width'] ? parentStyles['border-left-width'].toInt() : 0);
					parentPosition.y = parentPosition.y - (parentStyles['border-top-width'] ? parentStyles['border-top-width'].toInt() : 0);
					element.setPosition(parentPosition);
				}
			}
			if (element.getStyle('position') == 'static') element.setStyle('position', 'absolute');
		}

		this.addEvent('start', this.checkDroppables, true);

		this.overed = null;
	},

	start: function(event){
		if (this.container) this.options.limit = this.calculateLimit();
		
		if (this.options.precalculate){
			this.positions = this.droppables.map(function(el){
				return el.getCoordinates();
			});
		}
		
		this.parent(event);
	},
	
	calculateLimit: function(){
		var offsetParent = document.id(this.element.getOffsetParent()) || document.body,
			containerCoordinates = this.container.getCoordinates(offsetParent),
			containerBorder = {},
			elementMargin = {},
			elementBorder = {},
			containerMargin = {},
			offsetParentBorder = {},
			offsetParentPadding = {};

		['top', 'right', 'bottom', 'left'].each(function(pad){
			containerBorder[pad] = this.container.getStyle('border-' + pad).toInt();
			elementBorder[pad] = this.element.getStyle('border-' + pad).toInt();
			elementMargin[pad] = this.element.getStyle('margin-' + pad).toInt();
			containerMargin[pad] = this.container.getStyle('margin-' + pad).toInt();
			offsetParentPadding[pad] = offsetParent.getStyle('padding-' + pad).toInt();
			offsetParentBorder[pad] = offsetParent.getStyle('border-' + pad).toInt();
		}, this);

		var width = this.element.offsetWidth + elementMargin.left + elementMargin.right,
			height = this.element.offsetHeight + elementMargin.top + elementMargin.bottom,
			left = 0,
			top = 0,
			right = containerCoordinates.right - containerBorder.right - width,
			bottom = containerCoordinates.bottom - containerBorder.bottom - height;

		if (this.options.includeMargins){
			left += elementMargin.left;
			top += elementMargin.top;
		} else {
			right += elementMargin.right;
			bottom += elementMargin.bottom;
		}
		
		if (this.element.getStyle('position') == 'relative'){
			var coords = this.element.getCoordinates(offsetParent);
			coords.left -= this.element.getStyle('left').toInt();
			coords.top -= this.element.getStyle('top').toInt();
			
			left += containerBorder.left - coords.left;
			top += containerBorder.top - coords.top;
			right += elementMargin.left - coords.left;
			bottom += elementMargin.top - coords.top;
			
			if (this.container != offsetParent){
				left += containerMargin.left + offsetParentPadding.left;
				top += (Browser.Engine.trident4 ? 0 : containerMargin.top) + offsetParentPadding.top;
			}
		} else {
			left -= elementMargin.left;
			top -= elementMargin.top;
			if (this.container == offsetParent){
				right -= containerBorder.left;
				bottom -= containerBorder.top;
			} else {
				left += containerCoordinates.left + containerBorder.left - offsetParentBorder.left;
				top += containerCoordinates.top + containerBorder.top - offsetParentBorder.top;
				right -= offsetParentBorder.left;
				bottom -= offsetParentBorder.top;
			}
		}
		
		return {
			x: [left, right],
			y: [top, bottom]
		};
	},

	checkAgainst: function(el, i){
		el = (this.positions) ? this.positions[i] : el.getCoordinates();
		var now = this.mouse.now;
		return (now.x > el.left && now.x < el.right && now.y < el.bottom && now.y > el.top);
	},

	checkDroppables: function(){
		var overed = this.droppables.filter(this.checkAgainst, this).getLast();
		if (this.overed != overed){
			if (this.overed) this.fireEvent('leave', [this.element, this.overed]);
			if (overed) this.fireEvent('enter', [this.element, overed]);
			this.overed = overed;
		}
	},

	drag: function(event){
		this.parent(event);
		if (this.options.checkDroppables && this.droppables.length) this.checkDroppables();
	},

	stop: function(event){
		this.checkDroppables();
		this.fireEvent('drop', [this.element, this.overed, event]);
		this.overed = null;
		return this.parent(event);
	}

});

Element.implement({

	makeDraggable: function(options){
		var drag = new Drag.Move(this, options);
		this.store('dragger', drag);
		return drag;
	}

});


/*
---

script: Slider.js

name: Slider

description: Class for creating horizontal and vertical slider controls.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Element.Dimensions
  - /Class.Binds
  - /Drag
  - /Element.Measure

provides: [Slider]

...
*/

var Slider = new Class({

	Implements: [Events, Options],

	Binds: ['clickedElement', 'draggedKnob', 'scrolledElement'],

	options: {/*
		onTick: $empty(intPosition),
		onChange: $empty(intStep),
		onComplete: $empty(strStep),*/
		onTick: function(position){
			if (this.options.snap) position = this.toPosition(this.step);
			this.knob.setStyle(this.property, position);
		},
		initialStep: 0,
		snap: false,
		offset: 0,
		range: false,
		wheel: false,
		steps: 100,
		mode: 'horizontal'
	},

	initialize: function(element, knob, options){
		this.setOptions(options);
		this.element = document.id(element);
		this.knob = document.id(knob);
		this.previousChange = this.previousEnd = this.step = -1;
		var offset, limit = {}, modifiers = {'x': false, 'y': false};
		switch (this.options.mode){
			case 'vertical':
				this.axis = 'y';
				this.property = 'top';
				offset = 'offsetHeight';
				break;
			case 'horizontal':
				this.axis = 'x';
				this.property = 'left';
				offset = 'offsetWidth';
		}
		
		this.full = this.element.measure(function(){ 
			this.half = this.knob[offset] / 2; 
			return this.element[offset] - this.knob[offset] + (this.options.offset * 2); 
		}.bind(this));
		
		this.setRange(this.options.range);

		this.knob.setStyle('position', 'relative').setStyle(this.property, - this.options.offset);
		modifiers[this.axis] = this.property;
		limit[this.axis] = [- this.options.offset, this.full - this.options.offset];

		var dragOptions = {
			snap: 0,
			limit: limit,
			modifiers: modifiers,
			onDrag: this.draggedKnob,
			onStart: this.draggedKnob,
			onBeforeStart: (function(){
				this.isDragging = true;
			}).bind(this),
			onCancel: function() {
				this.isDragging = false;
			}.bind(this),
			onComplete: function(){
				this.isDragging = false;
				this.draggedKnob();
				this.end();
			}.bind(this)
		};
		if (this.options.snap){
			dragOptions.grid = Math.ceil(this.stepWidth);
			dragOptions.limit[this.axis][1] = this.full;
		}

		this.drag = new Drag(this.knob, dragOptions);
		this.attach();
		if (this.options.initialStep != null) this.set(this.options.initialStep)
	},

	attach: function(){
		this.element.addEvent('mousedown', this.clickedElement);
		if (this.options.wheel) this.element.addEvent('mousewheel', this.scrolledElement);
		this.drag.attach();
		return this;
	},

	detach: function(){
		this.element.removeEvent('mousedown', this.clickedElement);
		this.element.removeEvent('mousewheel', this.scrolledElement);
		this.drag.detach();
		return this;
	},

	set: function(step){
		if (!((this.range > 0) ^ (step < this.min))) step = this.min;
		if (!((this.range > 0) ^ (step > this.max))) step = this.max;

		this.step = Math.round(step);
		this.checkStep();
		this.fireEvent('tick', this.toPosition(this.step));
		this.end();
		return this;
	},
	
	setRange: function(range, pos){
		this.min = $pick(range[0], 0);
		this.max = $pick(range[1], this.options.steps);
		this.range = this.max - this.min;
		this.steps = this.options.steps || this.full;
		this.stepSize = Math.abs(this.range) / this.steps;
		this.stepWidth = this.stepSize * this.full / Math.abs(this.range);
		this.set($pick(pos, this.step).floor(this.min).max(this.max));
		return this;
	},

	clickedElement: function(event){
		if (this.isDragging || event.target == this.knob) return;

		var dir = this.range < 0 ? -1 : 1;
		var position = event.page[this.axis] - this.element.getPosition()[this.axis] - this.half;
		position = position.limit(-this.options.offset, this.full -this.options.offset);

		this.step = Math.round(this.min + dir * this.toStep(position));
		this.checkStep();
		this.fireEvent('tick', position);
		this.end();
	},

	scrolledElement: function(event){
		var mode = (this.options.mode == 'horizontal') ? (event.wheel < 0) : (event.wheel > 0);
		this.set(mode ? this.step - this.stepSize : this.step + this.stepSize);
		event.stop();
	},

	draggedKnob: function(){
		var dir = this.range < 0 ? -1 : 1;
		var position = this.drag.value.now[this.axis];
		position = position.limit(-this.options.offset, this.full -this.options.offset);
		this.step = Math.round(this.min + dir * this.toStep(position));
		this.checkStep();
	},

	checkStep: function(){
		if (this.previousChange != this.step){
			this.previousChange = this.step;
			this.fireEvent('change', this.step);
		}
	},

	end: function(){
		if (this.previousEnd !== this.step){
			this.previousEnd = this.step;
			this.fireEvent('complete', this.step + '');
		}
	},

	toStep: function(position){
		var step = (position + this.options.offset) * this.stepSize / this.full * this.steps;
		return this.options.steps ? Math.round(step -= step % this.stepSize) : step;
	},

	toPosition: function(step){
		return (this.full * Math.abs(this.min - step)) / (this.steps * this.stepSize) - this.options.offset;
	}

});


/*
---

script: Sortables.js

name: Sortables

description: Class for creating a drag and drop sorting interface for lists of items.

license: MIT-style license

authors:
  - Tom Occhino

requires:
  - /Drag.Move

provides: [Sortables]

...
*/

var Sortables = new Class({

	Implements: [Events, Options],

	options: {/*
		onSort: $empty(element, clone),
		onStart: $empty(element, clone),
		onComplete: $empty(element),*/
		snap: 4,
		opacity: 1,
		clone: false,
		revert: false,
		handle: false,
		constrain: false,
		preventDefault: false
	},

	initialize: function(lists, options){
		this.setOptions(options);
		this.elements = [];
		this.lists = [];
		this.idle = true;

		this.addLists($$(document.id(lists) || lists));
		if (!this.options.clone) this.options.revert = false;
		if (this.options.revert) this.effect = new Fx.Morph(null, $merge({duration: 250, link: 'cancel'}, this.options.revert));
	},

	attach: function(){
		this.addLists(this.lists);
		return this;
	},

	detach: function(){
		this.lists = this.removeLists(this.lists);
		return this;
	},

	addItems: function(){
		Array.flatten(arguments).each(function(element){
			this.elements.push(element);
			var start = element.retrieve('sortables:start', this.start.bindWithEvent(this, element));
			(this.options.handle ? element.getElement(this.options.handle) || element : element).addEvent('mousedown', start);
		}, this);
		return this;
	},

	addLists: function(){
		Array.flatten(arguments).each(function(list){
			this.lists.push(list);
			this.addItems(list.getChildren());
		}, this);
		return this;
	},

	removeItems: function(){
		return $$(Array.flatten(arguments).map(function(element){
			this.elements.erase(element);
			var start = element.retrieve('sortables:start');
			(this.options.handle ? element.getElement(this.options.handle) || element : element).removeEvent('mousedown', start);
			
			return element;
		}, this));
	},

	removeLists: function(){
		return $$(Array.flatten(arguments).map(function(list){
			this.lists.erase(list);
			this.removeItems(list.getChildren());
			
			return list;
		}, this));
	},

	getClone: function(event, element){
		if (!this.options.clone) return new Element(element.tagName).inject(document.body);
		if ($type(this.options.clone) == 'function') return this.options.clone.call(this, event, element, this.list);
		var clone = element.clone(true).setStyles({
			margin: '0px',
			position: 'absolute',
			visibility: 'hidden',
			'width': element.getStyle('width')
		});
		//prevent the duplicated radio inputs from unchecking the real one
		if (clone.get('html').test('radio')) {
			clone.getElements('input[type=radio]').each(function(input, i) {
				input.set('name', 'clone_' + i);
				if (input.get('checked')) element.getElements('input[type=radio]')[i].set('checked', true);
			});
		}
		
		return clone.inject(this.list).setPosition(element.getPosition(element.getOffsetParent()));
	},

	getDroppables: function(){
		var droppables = this.list.getChildren();
		if (!this.options.constrain) droppables = this.lists.concat(droppables).erase(this.list);
		return droppables.erase(this.clone).erase(this.element);
	},

	insert: function(dragging, element){
		var where = 'inside';
		if (this.lists.contains(element)){
			this.list = element;
			this.drag.droppables = this.getDroppables();
		} else {
			where = this.element.getAllPrevious().contains(element) ? 'before' : 'after';
		}
		this.element.inject(element, where);
		this.fireEvent('sort', [this.element, this.clone]);
	},

	start: function(event, element){
		if (
			!this.idle ||
			event.rightClick ||
			['button', 'input'].contains(document.id(event.target).get('tag'))
		) return;

		this.idle = false;
		this.element = element;
		this.opacity = element.get('opacity');
		this.list = element.getParent();
		this.clone = this.getClone(event, element);

		this.drag = new Drag.Move(this.clone, {
			preventDefault: this.options.preventDefault,
			snap: this.options.snap,
			container: this.options.constrain && this.element.getParent(),
			droppables: this.getDroppables(),
			onSnap: function(){
				event.stop();
				this.clone.setStyle('visibility', 'visible');
				this.element.set('opacity', this.options.opacity || 0);
				this.fireEvent('start', [this.element, this.clone]);
			}.bind(this),
			onEnter: this.insert.bind(this),
			onCancel: this.reset.bind(this),
			onComplete: this.end.bind(this)
		});

		this.clone.inject(this.element, 'before');
		this.drag.start(event);
	},

	end: function(){
		this.drag.detach();
		this.element.set('opacity', this.opacity);
		if (this.effect){
			var dim = this.element.getStyles('width', 'height');
			var pos = this.clone.computePosition(this.element.getPosition(this.clone.getOffsetParent()));
			this.effect.element = this.clone;
			this.effect.start({
				top: pos.top,
				left: pos.left,
				width: dim.width,
				height: dim.height,
				opacity: 0.25
			}).chain(this.reset.bind(this));
		} else {
			this.reset();
		}
	},

	reset: function(){
		this.idle = true;
		this.clone.destroy();
		this.fireEvent('complete', this.element);
	},

	serialize: function(){
		var params = Array.link(arguments, {modifier: Function.type, index: $defined});
		var serial = this.lists.map(function(list){
			return list.getChildren().map(params.modifier || function(element){
				return element.get('id');
			}, this);
		}, this);

		var index = params.index;
		if (this.lists.length == 1) index = 0;
		return $chk(index) && index >= 0 && index < this.lists.length ? serial[index] : serial;
	}

});


/*
---

script: Request.JSONP.js

name: Request.JSONP

description: Defines Request.JSONP, a class for cross domain javascript via script injection.

license: MIT-style license

authors:
  - Aaron Newton
  - Guillermo Rauch

requires:
  - Core/Element
  - Core/Request
  - /Log

provides: [Request.JSONP]

...
*/

Request.JSONP = new Class({

	Implements: [Chain, Events, Options, Log],

	options: {/*
		onRetry: $empty(intRetries),
		onRequest: $empty(scriptElement),
		onComplete: $empty(data),
		onSuccess: $empty(data),
		onCancel: $empty(),
		log: false,
		*/
		url: '',
		data: {},
		retries: 0,
		timeout: 0,
		link: 'ignore',
		callbackKey: 'callback',
		injectScript: document.head
	},

	initialize: function(options){
		this.setOptions(options);
		if (this.options.log) this.enableLog();
		this.running = false;
		this.requests = 0;
		this.triesRemaining = [];
	},

	check: function(){
		if (!this.running) return true;
		switch (this.options.link){
			case 'cancel': this.cancel(); return true;
			case 'chain': this.chain(this.caller.bind(this, arguments)); return false;
		}
		return false;
	},

	send: function(options){
		if (!$chk(arguments[1]) && !this.check(options)) return this;

		var type = $type(options), 
				old = this.options, 
				index = $chk(arguments[1]) ? arguments[1] : this.requests++;
		if (type == 'string' || type == 'element') options = {data: options};

		options = $extend({data: old.data, url: old.url}, options);

		if (!$chk(this.triesRemaining[index])) this.triesRemaining[index] = this.options.retries;
		var remaining = this.triesRemaining[index];

		(function(){
			var script = this.getScript(options);
			this.log('JSONP retrieving script with url: ' + script.get('src'));
			this.fireEvent('request', script);
			this.running = true;

			(function(){
				if (remaining){
					this.triesRemaining[index] = remaining - 1;
					if (script){
						script.destroy();
						this.send(options, index).fireEvent('retry', this.triesRemaining[index]);
					}
				} else if(this.running && script && this.options.timeout){
					script.destroy();
					this.cancel().fireEvent('failure');
				}
			}).delay(this.options.timeout, this);
		}).delay(Browser.Engine.trident ? 50 : 0, this);
		return this;
	},

	cancel: function(){
		if (!this.running) return this;
		this.running = false;
		this.fireEvent('cancel');
		return this;
	},

	getScript: function(options){
		var index = Request.JSONP.counter,
				data;
		Request.JSONP.counter++;

		switch ($type(options.data)){
			case 'element': data = document.id(options.data).toQueryString(); break;
			case 'object': case 'hash': data = Hash.toQueryString(options.data);
		}

		var src = options.url + 
			 (options.url.test('\\?') ? '&' :'?') + 
			 (options.callbackKey || this.options.callbackKey) + 
			 '=Request.JSONP.request_map.request_'+ index + 
			 (data ? '&' + data : '');
		if (src.length > 2083) this.log('JSONP '+ src +' will fail in Internet Explorer, which enforces a 2083 bytes length limit on URIs');

		var script = new Element('script', {type: 'text/javascript', src: src});
		Request.JSONP.request_map['request_' + index] = function(){ this.success(arguments, script); }.bind(this);
		return script.inject(this.options.injectScript);
	},

	success: function(args, script){
		if (!this.running) return false;
		if (script) script.destroy();
		this.running = false;
		this.log('JSONP successfully retrieved: ', args);
		this.fireEvent('complete', args).fireEvent('success', args).callChain();
	}

});

Request.JSONP.counter = 0;
Request.JSONP.request_map = {};


/*
---

script: Request.Queue.js

name: Request.Queue

description: Controls several instances of Request and its variants to run only one request at a time.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element
  - Core/Request
  - /Log

provides: [Request.Queue]

...
*/

Request.Queue = new Class({

	Implements: [Options, Events],

	Binds: ['attach', 'request', 'complete', 'cancel', 'success', 'failure', 'exception'],

	options: {/*
		onRequest: $empty(argsPassedToOnRequest),
		onSuccess: $empty(argsPassedToOnSuccess),
		onComplete: $empty(argsPassedToOnComplete),
		onCancel: $empty(argsPassedToOnCancel),
		onException: $empty(argsPassedToOnException),
		onFailure: $empty(argsPassedToOnFailure),
		onEnd: $empty,
		*/
		stopOnFailure: true,
		autoAdvance: true,
		concurrent: 1,
		requests: {}
	},

	initialize: function(options){
		if(options){
			var requests = options.requests;
			delete options.requests;	
		}
		this.setOptions(options);
		this.requests = new Hash;
		this.queue = [];
		this.reqBinders = {};
		
		if(requests) this.addRequests(requests);
	},

	addRequest: function(name, request){
		this.requests.set(name, request);
		this.attach(name, request);
		return this;
	},

	addRequests: function(obj){
		$each(obj, function(req, name){
			this.addRequest(name, req);
		}, this);
		return this;
	},

	getName: function(req){
		return this.requests.keyOf(req);
	},

	attach: function(name, req){
		if (req._groupSend) return this;
		['request', 'complete', 'cancel', 'success', 'failure', 'exception'].each(function(evt){
			if(!this.reqBinders[name]) this.reqBinders[name] = {};
			this.reqBinders[name][evt] = function(){
				this['on' + evt.capitalize()].apply(this, [name, req].extend(arguments));
			}.bind(this);
			req.addEvent(evt, this.reqBinders[name][evt]);
		}, this);
		req._groupSend = req.send;
		req.send = function(options){
			this.send(name, options);
			return req;
		}.bind(this);
		return this;
	},

	removeRequest: function(req){
		var name = $type(req) == 'object' ? this.getName(req) : req;
		if (!name && $type(name) != 'string') return this;
		req = this.requests.get(name);
		if (!req) return this;
		['request', 'complete', 'cancel', 'success', 'failure', 'exception'].each(function(evt){
			req.removeEvent(evt, this.reqBinders[name][evt]);
		}, this);
		req.send = req._groupSend;
		delete req._groupSend;
		return this;
	},

	getRunning: function(){
		return this.requests.filter(function(r){
			return r.running;
		});
	},

	isRunning: function(){
		return !!(this.getRunning().getKeys().length);
	},

	send: function(name, options){
		var q = function(){
			this.requests.get(name)._groupSend(options);
			this.queue.erase(q);
		}.bind(this);
		q.name = name;
		if (this.getRunning().getKeys().length >= this.options.concurrent || (this.error && this.options.stopOnFailure)) this.queue.push(q);
		else q();
		return this;
	},

	hasNext: function(name){
		return (!name) ? !!this.queue.length : !!this.queue.filter(function(q){ return q.name == name; }).length;
	},

	resume: function(){
		this.error = false;
		(this.options.concurrent - this.getRunning().getKeys().length).times(this.runNext, this);
		return this;
	},

	runNext: function(name){
		if (!this.queue.length) return this;
		if (!name){
			this.queue[0]();
		} else {
			var found;
			this.queue.each(function(q){
				if (!found && q.name == name){
					found = true;
					q();
				}
			});
		}
		return this;
	},

	runAll: function() {
		this.queue.each(function(q) {
			q();
		});
		return this;
	},

	clear: function(name){
		if (!name){
			this.queue.empty();
		} else {
			this.queue = this.queue.map(function(q){
				if (q.name != name) return q;
				else return false;
			}).filter(function(q){ return q; });
		}
		return this;
	},

	cancel: function(name){
		this.requests.get(name).cancel();
		return this;
	},

	onRequest: function(){
		this.fireEvent('request', arguments);
	},

	onComplete: function(){
		this.fireEvent('complete', arguments);
		if (!this.queue.length) this.fireEvent('end');
	},

	onCancel: function(){
		if (this.options.autoAdvance && !this.error) this.runNext();
		this.fireEvent('cancel', arguments);
	},

	onSuccess: function(){
		if (this.options.autoAdvance && !this.error) this.runNext();
		this.fireEvent('success', arguments);
	},

	onFailure: function(){
		this.error = true;
		if (!this.options.stopOnFailure && this.options.autoAdvance) this.runNext();
		this.fireEvent('failure', arguments);
	},

	onException: function(){
		this.error = true;
		if (!this.options.stopOnFailure && this.options.autoAdvance) this.runNext();
		this.fireEvent('exception', arguments);
	}

});


/*
---

script: Request.Periodical.js

name: Request.Periodical

description: Requests the same URL to pull data from a server but increases the intervals if no data is returned to reduce the load

license: MIT-style license

authors:
  - Christoph Pojer

requires:
  - Core/Request
  - /MooTools.More

provides: [Request.Periodical]

...
*/

Request.implement({

	options: {
		initialDelay: 5000,
		delay: 5000,
		limit: 60000
	},

	startTimer: function(data){
		var fn = function(){
			if (!this.running) this.send({data: data});
		};
		this.timer = fn.delay(this.options.initialDelay, this);
		this.lastDelay = this.options.initialDelay;
		this.completeCheck = function(response){
			$clear(this.timer);
			this.lastDelay = (response) ? this.options.delay : (this.lastDelay + this.options.delay).min(this.options.limit);
			this.timer = fn.delay(this.lastDelay, this);
		};
		return this.addEvent('complete', this.completeCheck);
	},

	stopTimer: function(){
		$clear(this.timer);
		return this.removeEvent('complete', this.completeCheck);
	}

});

/*
---

script: Assets.js

name: Assets

description: Provides methods to dynamically load JavaScript, CSS, and Image files into the document.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Element.Event
  - /MooTools.More

provides: [Assets]

...
*/

var Asset = {

	javascript: function(source, properties){
		properties = $extend({
			onload: $empty,
			document: document,
			check: $lambda(true)
		}, properties);
		
		if (properties.onLoad) {
			properties.onload = properties.onLoad;
			delete properties.onLoad;
		}
		var script = new Element('script', {src: source, type: 'text/javascript'});

		var load = properties.onload.bind(script), 
			check = properties.check, 
			doc = properties.document;
		delete properties.onload;
		delete properties.check;
		delete properties.document;

		script.addEvents({
			load: load,
			readystatechange: function(){
				if (['loaded', 'complete'].contains(this.readyState)) load();
			}
		}).set(properties);

		if (Browser.Engine.webkit419) var checker = (function(){
			if (!$try(check)) return;
			$clear(checker);
			load();
		}).periodical(50);

		return script.inject(doc.head);
	},

	css: function(source, properties){
		properties = properties || {};
		var onload = properties.onload || properties.onLoad;
		if (onload) {
			properties.events = properties.events || {};
			properties.events.load = onload;
			delete properties.onload;
			delete properties.onLoad;
		}
		return new Element('link', $merge({
			rel: 'stylesheet',
			media: 'screen',
			type: 'text/css',
			href: source
		}, properties)).inject(document.head);
	},

	image: function(source, properties){
		properties = $merge({
			onload: $empty,
			onabort: $empty,
			onerror: $empty
		}, properties);
		var image = new Image();
		var element = document.id(image) || new Element('img');
		['load', 'abort', 'error'].each(function(name){
			var type = 'on' + name;
			var cap = name.capitalize();
			if (properties['on' + cap]) {
				properties[type] = properties['on' + cap];
				delete properties['on' + cap];
			}
			var event = properties[type];
			delete properties[type];
			image[type] = function(){
				if (!image) return;
				if (!element.parentNode){
					element.width = image.width;
					element.height = image.height;
				}
				image = image.onload = image.onabort = image.onerror = null;
				event.delay(1, element, element);
				element.fireEvent(name, element, 1);
			};
		});
		image.src = element.src = source;
		if (image && image.complete) image.onload.delay(1);
		return element.set(properties);
	},

	images: function(sources, options){
		options = $merge({
			onComplete: $empty,
			onProgress: $empty,
			onError: $empty,
			properties: {}
		}, options);
		sources = $splat(sources);
		var images = [];
		var counter = 0;
		return new Elements(sources.map(function(source, index){
			return Asset.image(source, $extend(options.properties, {
				onload: function(){
					options.onProgress.call(this, counter, index);
					counter++;
					if (counter == sources.length) options.onComplete();
				},
				onerror: function(){
					options.onError.call(this, counter, index);
					counter++;
					if (counter == sources.length) options.onComplete();
				}
			}));
		}));
	}

};

/*
---

script: Color.js

name: Color

description: Class for creating and manipulating colors in JavaScript. Supports HSB -> RGB Conversions and vice versa.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Array
  - Core/String
  - Core/Number
  - Core/Hash
  - Core/Function
  - Core/$util

provides: [Color]

...
*/

var Color = new Native({

	initialize: function(color, type){
		if (arguments.length >= 3){
			type = 'rgb'; color = Array.slice(arguments, 0, 3);
		} else if (typeof color == 'string'){
			if (color.match(/rgb/)) color = color.rgbToHex().hexToRgb(true);
			else if (color.match(/hsb/)) color = color.hsbToRgb();
			else color = color.hexToRgb(true);
		}
		type = type || 'rgb';
		switch (type){
			case 'hsb':
				var old = color;
				color = color.hsbToRgb();
				color.hsb = old;
			break;
			case 'hex': color = color.hexToRgb(true); break;
		}
		color.rgb = color.slice(0, 3);
		color.hsb = color.hsb || color.rgbToHsb();
		color.hex = color.rgbToHex();
		return $extend(color, this);
	}

});

Color.implement({

	mix: function(){
		var colors = Array.slice(arguments);
		var alpha = ($type(colors.getLast()) == 'number') ? colors.pop() : 50;
		var rgb = this.slice();
		colors.each(function(color){
			color = new Color(color);
			for (var i = 0; i < 3; i++) rgb[i] = Math.round((rgb[i] / 100 * (100 - alpha)) + (color[i] / 100 * alpha));
		});
		return new Color(rgb, 'rgb');
	},

	invert: function(){
		return new Color(this.map(function(value){
			return 255 - value;
		}));
	},

	setHue: function(value){
		return new Color([value, this.hsb[1], this.hsb[2]], 'hsb');
	},

	setSaturation: function(percent){
		return new Color([this.hsb[0], percent, this.hsb[2]], 'hsb');
	},

	setBrightness: function(percent){
		return new Color([this.hsb[0], this.hsb[1], percent], 'hsb');
	}

});

var $RGB = function(r, g, b){
	return new Color([r, g, b], 'rgb');
};

var $HSB = function(h, s, b){
	return new Color([h, s, b], 'hsb');
};

var $HEX = function(hex){
	return new Color(hex, 'hex');
};

Array.implement({

	rgbToHsb: function(){
		var red = this[0],
				green = this[1],
				blue = this[2],
				hue = 0;
		var max = Math.max(red, green, blue),
				min = Math.min(red, green, blue);
		var delta = max - min;
		var brightness = max / 255,
				saturation = (max != 0) ? delta / max : 0;
		if(saturation != 0) {
			var rr = (max - red) / delta;
			var gr = (max - green) / delta;
			var br = (max - blue) / delta;
			if (red == max) hue = br - gr;
			else if (green == max) hue = 2 + rr - br;
			else hue = 4 + gr - rr;
			hue /= 6;
			if (hue < 0) hue++;
		}
		return [Math.round(hue * 360), Math.round(saturation * 100), Math.round(brightness * 100)];
	},

	hsbToRgb: function(){
		var br = Math.round(this[2] / 100 * 255);
		if (this[1] == 0){
			return [br, br, br];
		} else {
			var hue = this[0] % 360;
			var f = hue % 60;
			var p = Math.round((this[2] * (100 - this[1])) / 10000 * 255);
			var q = Math.round((this[2] * (6000 - this[1] * f)) / 600000 * 255);
			var t = Math.round((this[2] * (6000 - this[1] * (60 - f))) / 600000 * 255);
			switch (Math.floor(hue / 60)){
				case 0: return [br, t, p];
				case 1: return [q, br, p];
				case 2: return [p, br, t];
				case 3: return [p, q, br];
				case 4: return [t, p, br];
				case 5: return [br, p, q];
			}
		}
		return false;
	}

});

String.implement({

	rgbToHsb: function(){
		var rgb = this.match(/\d{1,3}/g);
		return (rgb) ? rgb.rgbToHsb() : null;
	},

	hsbToRgb: function(){
		var hsb = this.match(/\d{1,3}/g);
		return (hsb) ? hsb.hsbToRgb() : null;
	}

});


/*
---

script: Group.js

name: Group

description: Class for monitoring collections of events

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Events
  - /MooTools.More

provides: [Group]

...
*/

var Group = new Class({

	initialize: function(){
		this.instances = Array.flatten(arguments);
		this.events = {};
		this.checker = {};
	},

	addEvent: function(type, fn){
		this.checker[type] = this.checker[type] || {};
		this.events[type] = this.events[type] || [];
		if (this.events[type].contains(fn)) return false;
		else this.events[type].push(fn);
		this.instances.each(function(instance, i){
			instance.addEvent(type, this.check.bind(this, [type, instance, i]));
		}, this);
		return this;
	},

	check: function(type, instance, i){
		this.checker[type][i] = true;
		var every = this.instances.every(function(current, j){
			return this.checker[type][j] || false;
		}, this);
		if (!every) return;
		this.checker[type] = {};
		this.events[type].each(function(event){
			event.call(this, this.instances, instance);
		}, this);
	}

});


/*
---

script: Hash.Cookie.js

name: Hash.Cookie

description: Class for creating, reading, and deleting Cookies in JSON format.

license: MIT-style license

authors:
  - Valerio Proietti
  - Aaron Newton

requires:
  - Core/Cookie
  - Core/JSON
  - /MooTools.More

provides: [Hash.Cookie]

...
*/

Hash.Cookie = new Class({

	Extends: Cookie,

	options: {
		autoSave: true
	},

	initialize: function(name, options){
		this.parent(name, options);
		this.load();
	},

	save: function(){
		var value = JSON.encode(this.hash);
		if (!value || value.length > 4096) return false; //cookie would be truncated!
		if (value == '{}') this.dispose();
		else this.write(value);
		return true;
	},

	load: function(){
		this.hash = new Hash(JSON.decode(this.read(), true));
		return this;
	}

});

Hash.each(Hash.prototype, function(method, name){
	if (typeof method == 'function') Hash.Cookie.implement(name, function(){
		var value = method.apply(this.hash, arguments);
		if (this.options.autoSave) this.save();
		return value;
	});
});

/*
---

script: IframeShim.js

name: IframeShim

description: Defines IframeShim, a class for obscuring select lists and flash objects in IE.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Element.Event
  - Core/Element.Style
  - Core/Options
  - Core/Events
  - /Element.Position
  - /Class.Occlude

provides: [IframeShim]

...
*/

var IframeShim = new Class({

	Implements: [Options, Events, Class.Occlude],

	options: {
		className: 'iframeShim',
		src: 'javascript:false;document.write("");',
		display: false,
		zIndex: null,
		margin: 0,
		offset: {x: 0, y: 0},
		browsers: (Browser.Engine.trident4 || (Browser.Engine.gecko && !Browser.Engine.gecko19 && Browser.Platform.mac))
	},

	property: 'IframeShim',

	initialize: function(element, options){
		this.element = document.id(element);
		if (this.occlude()) return this.occluded;
		this.setOptions(options);
		this.makeShim();
		return this;
	},

	makeShim: function(){
		if(this.options.browsers){
			var zIndex = this.element.getStyle('zIndex').toInt();

			if (!zIndex){
				zIndex = 1;
				var pos = this.element.getStyle('position');
				if (pos == 'static' || !pos) this.element.setStyle('position', 'relative');
				this.element.setStyle('zIndex', zIndex);
			}
			zIndex = ($chk(this.options.zIndex) && zIndex > this.options.zIndex) ? this.options.zIndex : zIndex - 1;
			if (zIndex < 0) zIndex = 1;
			this.shim = new Element('iframe', {
				src: this.options.src,
				scrolling: 'no',
				frameborder: 0,
				styles: {
					zIndex: zIndex,
					position: 'absolute',
					border: 'none',
					filter: 'progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)'
				},
				'class': this.options.className
			}).store('IframeShim', this);
			var inject = (function(){
				this.shim.inject(this.element, 'after');
				this[this.options.display ? 'show' : 'hide']();
				this.fireEvent('inject');
			}).bind(this);
			if (!IframeShim.ready) window.addEvent('load', inject);
			else inject();
		} else {
			this.position = this.hide = this.show = this.dispose = $lambda(this);
		}
	},

	position: function(){
		if (!IframeShim.ready || !this.shim) return this;
		var size = this.element.measure(function(){ 
			return this.getSize(); 
		});
		if (this.options.margin != undefined){
			size.x = size.x - (this.options.margin * 2);
			size.y = size.y - (this.options.margin * 2);
			this.options.offset.x += this.options.margin;
			this.options.offset.y += this.options.margin;
		}
		this.shim.set({width: size.x, height: size.y}).position({
			relativeTo: this.element,
			offset: this.options.offset
		});
		return this;
	},

	hide: function(){
		if (this.shim) this.shim.setStyle('display', 'none');
		return this;
	},

	show: function(){
		if (this.shim) this.shim.setStyle('display', 'block');
		return this.position();
	},

	dispose: function(){
		if (this.shim) this.shim.dispose();
		return this;
	},

	destroy: function(){
		if (this.shim) this.shim.destroy();
		return this;
	}

});

window.addEvent('load', function(){
	IframeShim.ready = true;
});


/*
---

script: HtmlTable.js

name: HtmlTable

description: Builds table elements with methods to add rows.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Options
  - Core/Events
  - /Class.Occlude

provides: [HtmlTable]

...
*/

var HtmlTable = new Class({

	Implements: [Options, Events, Class.Occlude],

	options: {
		properties: {
			cellpadding: 0,
			cellspacing: 0,
			border: 0
		},
		rows: [],
		headers: [],
		footers: []
	},

	property: 'HtmlTable',

	initialize: function(){
		var params = Array.link(arguments, {options: Object.type, table: Element.type});
		this.setOptions(params.options);
		this.element = params.table || new Element('table', this.options.properties);
		if (this.occlude()) return this.occluded;
		this.build();
	},

	build: function(){
		this.element.store('HtmlTable', this);

		this.body = document.id(this.element.tBodies[0]) || new Element('tbody').inject(this.element);
		$$(this.body.rows);

		if (this.options.headers.length) this.setHeaders(this.options.headers);
		else this.thead = document.id(this.element.tHead);
		if (this.thead) this.head = document.id(this.thead.rows[0]);

		if (this.options.footers.length) this.setFooters(this.options.footers);
		this.tfoot = document.id(this.element.tFoot);
		if (this.tfoot) this.foot = document.id(this.tfoot.rows[0]);

		this.options.rows.each(function(row){
			this.push(row);
		}, this);

		['adopt', 'inject', 'wraps', 'grab', 'replaces', 'dispose'].each(function(method){
				this[method] = this.element[method].bind(this.element);
		}, this);
	},

	toElement: function(){
		return this.element;
	},

	empty: function(){
		this.body.empty();
		return this;
	},

	set: function(what, items) {
		var target = (what == 'headers') ? 'tHead' : 'tFoot';
		this[target.toLowerCase()] = (document.id(this.element[target]) || new Element(target.toLowerCase()).inject(this.element, 'top')).empty();
		var data = this.push(items, {}, this[target.toLowerCase()], what == 'headers' ? 'th' : 'td');
		if (what == 'headers') this.head = document.id(this.thead.rows[0]);
		else this.foot = document.id(this.thead.rows[0]);
		return data;
	},

	setHeaders: function(headers){
		this.set('headers', headers);
		return this;
	},

	setFooters: function(footers){
		this.set('footers', footers);
		return this;
	},

	push: function(row, rowProperties, target, tag){
		if ($type(row) == "element" && row.get('tag') == 'tr') {
			row.inject(target || this.body);
			return {
				tr: row,
				tds: row.getChildren('td')
			};
		}
		var tds = row.map(function(data){
			var td = new Element(tag || 'td', data ? data.properties : {}),
				type = (data ? data.content : '') || data,
				element = document.id(type);
			if($type(type) != 'string' && element) td.adopt(element);
			else td.set('html', type);

			return td;
		});

		return {
			tr: new Element('tr', rowProperties).inject(target || this.body).adopt(tds),
			tds: tds
		};
	}

});


/*
---

script: HtmlTable.Zebra.js

name: HtmlTable.Zebra

description: Builds a stripy table with methods to add rows.

license: MIT-style license

authors:
  - Harald Kirschner
  - Aaron Newton

requires:
  - /HtmlTable
  - /Class.refactor

provides: [HtmlTable.Zebra]

...
*/

HtmlTable = Class.refactor(HtmlTable, {

	options: {
		classZebra: 'table-tr-odd',
		zebra: true
	},

	initialize: function(){
		this.previous.apply(this, arguments);
		if (this.occluded) return this.occluded;
		if (this.options.zebra) this.updateZebras();
	},

	updateZebras: function(){
		Array.each(this.body.rows, this.zebra, this);
	},

	zebra: function(row, i){
		return row[((i % 2) ? 'remove' : 'add')+'Class'](this.options.classZebra);
	},

	push: function(){
		var pushed = this.previous.apply(this, arguments);
		if (this.options.zebra) this.updateZebras();
		return pushed;
	}

});

/*
---

script: HtmlTable.Sort.js

name: HtmlTable.Sort

description: Builds a stripy, sortable table with methods to add rows.

license: MIT-style license

authors:
  - Harald Kirschner
  - Aaron Newton

requires:
  - Core/Hash
  - /HtmlTable
  - /Class.refactor
  - /Element.Delegation
  - /String.Extras
  - /Date

provides: [HtmlTable.Sort]

...
*/

HtmlTable = Class.refactor(HtmlTable, {

	options: {/*
		onSort: $empty, */
		sortIndex: 0,
		sortReverse: false,
		parsers: [],
		defaultParser: 'string',
		classSortable: 'table-sortable',
		classHeadSort: 'table-th-sort',
		classHeadSortRev: 'table-th-sort-rev',
		classNoSort: 'table-th-nosort',
		classGroupHead: 'table-tr-group-head',
		classGroup: 'table-tr-group',
		classCellSort: 'table-td-sort',
		classSortSpan: 'table-th-sort-span',
		sortable: false
	},

	initialize: function () {
		this.previous.apply(this, arguments);
		if (this.occluded) return this.occluded;
		this.sorted = {index: null, dir: 1};
		this.bound = {
			headClick: this.headClick.bind(this)
		};
		this.sortSpans = new Elements();
		if (this.options.sortable) {
			this.enableSort();
			if (this.options.sortIndex != null) this.sort(this.options.sortIndex, this.options.sortReverse);
		}
	},

	attachSorts: function(attach){
		this.element.removeEvents('click:relay(th)');
		this.element[$pick(attach, true) ? 'addEvent' : 'removeEvent']('click:relay(th)', this.bound.headClick);
	},

	setHeaders: function(){
		this.previous.apply(this, arguments);
		if (this.sortEnabled) this.detectParsers();
	},
	
	detectParsers: function(force){
		if (!this.head) return;
		var parsers = this.options.parsers, 
				rows = this.body.rows;

		// auto-detect
		this.parsers = $$(this.head.cells).map(function(cell, index) {
			if (!force && (cell.hasClass(this.options.classNoSort) || cell.retrieve('htmltable-parser'))) return cell.retrieve('htmltable-parser');
			var thDiv = new Element('div');
			$each(cell.childNodes, function(node) {
				thDiv.adopt(node);
			});
			thDiv.inject(cell);
			var sortSpan = new Element('span', {'html': '&#160;', 'class': this.options.classSortSpan}).inject(thDiv, 'top');
			
			this.sortSpans.push(sortSpan);

			var parser = parsers[index], 
					cancel;
			switch ($type(parser)) {
				case 'function': parser = {convert: parser}; cancel = true; break;
				case 'string': parser = parser; cancel = true; break;
			}
			if (!cancel) {
				HtmlTable.Parsers.some(function(current) {
					var match = current.match;
					if (!match) return false;
					for (var i = 0, j = rows.length; i < j; i++) {
						var cell = document.id(rows[i].cells[index]);
						var text = cell ? cell.get('html').clean() : '';
						if (text && match.test(text)) {
							parser = current;
							return true;
						}
					}
				});
			}

			if (!parser) parser = this.options.defaultParser;
			cell.store('htmltable-parser', parser);
			return parser;
		}, this);
	},

	headClick: function(event, el) {
		if (!this.head || el.hasClass(this.options.classNoSort)) return;
		var index = Array.indexOf(this.head.cells, el);
		this.sort(index);
		return false;
	},

	sort: function(index, reverse, pre) {
		if (!this.head) return;
		pre = !!(pre);
		var classCellSort = this.options.classCellSort;
		var classGroup = this.options.classGroup, 
				classGroupHead = this.options.classGroupHead;

		if (!pre) {
			if (index != null) {
				if (this.sorted.index == index) {
					this.sorted.reverse = !(this.sorted.reverse);
				} else {
					if (this.sorted.index != null) {
						this.sorted.reverse = false;
						this.head.cells[this.sorted.index].removeClass(this.options.classHeadSort).removeClass(this.options.classHeadSortRev);
					} else {
						this.sorted.reverse = true;
					}
					this.sorted.index = index;
				}
			} else {
				index = this.sorted.index;
			}

			if (reverse != null) this.sorted.reverse = reverse;

			var head = document.id(this.head.cells[index]);
			if (head) {
				head.addClass(this.options.classHeadSort);
				if (this.sorted.reverse) head.addClass(this.options.classHeadSortRev);
				else head.removeClass(this.options.classHeadSortRev);
			}

			this.body.getElements('td').removeClass(this.options.classCellSort);
		}

		var parser = this.parsers[index];
		if ($type(parser) == 'string') parser = HtmlTable.Parsers.get(parser);
		if (!parser) return;

		if (!Browser.Engine.trident) {
			var rel = this.body.getParent();
			this.body.dispose();
		}

		var data = Array.map(this.body.rows, function(row, i) {
			var value = parser.convert.call(document.id(row.cells[index]));

			return {
				position: i,
				value: value,
				toString:  function() {
					return value.toString();
				}
			};
		}, this);
		data.reverse(true);

		data.sort(function(a, b){
			if (a.value === b.value) return 0;
			return a.value > b.value ? 1 : -1;
		});

		if (!this.sorted.reverse) data.reverse(true);

		var i = data.length, body = this.body;
		var j, position, entry, group;

		while (i) {
			var item = data[--i];
			position = item.position;
			var row = body.rows[position];
			if (row.disabled) continue;

			if (!pre) {
				if (group === item.value) {
					row.removeClass(classGroupHead).addClass(classGroup);
				} else {
					group = item.value;
					row.removeClass(classGroup).addClass(classGroupHead);
				}
				if (this.options.zebra) this.zebra(row, i);

				row.cells[index].addClass(classCellSort);
			}

			body.appendChild(row);
			for (j = 0; j < i; j++) {
				if (data[j].position > position) data[j].position--;
			}
		};
		data = null;
		if (rel) rel.grab(body);

		return this.fireEvent('sort', [body, index]);
	},

	reSort: function(){
		if (this.sortEnabled) this.sort.call(this, this.sorted.index, this.sorted.reverse);
		return this;
	},

	enableSort: function(){
		this.element.addClass(this.options.classSortable);
		this.attachSorts(true);
		this.detectParsers();
		this.sortEnabled = true;
		return this;
	},

	disableSort: function(){
		this.element.removeClass(this.options.classSortable);
		this.attachSorts(false);
		this.sortSpans.each(function(span) { span.destroy(); });
		this.sortSpans.empty();
		this.sortEnabled = false;
		return this;
	}

});

HtmlTable.Parsers = new Hash({

	'date': {
		match: /^\d{2}[-\/ ]\d{2}[-\/ ]\d{2,4}$/,
		convert: function() {
			var d = Date.parse(this.get('text').stripTags());
			return $type(d) == 'date' ? d.format('db') : '';
		},
		type: 'date'
	},
	'input-checked': {
		match: / type="(radio|checkbox)" /,
		convert: function() {
			return this.getElement('input').checked;
		}
	},
	'input-value': {
		match: /<input/,
		convert: function() {
			return this.getElement('input').value;
		}
	},
	'number': {
		match: /^\d+[^\d.,]*$/,
		convert: function() {
			return this.get('text').stripTags().toInt();
		},
		number: true
	},
	'numberLax': {
		match: /^[^\d]+\d+$/,
		convert: function() {
			return this.get('text').replace(/[^-?^0-9]/, '').stripTags().toInt();
		},
		number: true
	},
	'float': {
		match: /^[\d]+\.[\d]+/,
		convert: function() {
			return this.get('text').replace(/[^-?^\d.]/, '').stripTags().toFloat();
		},
		number: true
	},
	'floatLax': {
		match: /^[^\d]+[\d]+\.[\d]+$/,
		convert: function() {
			return this.get('text').replace(/[^-?^\d.]/, '').stripTags();
		},
		number: true
	},
	'string': {
		match: null,
		convert: function() {
			return this.get('text').stripTags();
		}
	},
	'title': {
		match: null,
		convert: function() {
			return this.title;
		}
	}

});


HtmlTable.defineParsers = function(parsers){
	HtmlTable.Parsers = new Hash(parsers).combine(HtmlTable.Parsers);
};


/*
---

script: HtmlTable.Select.js

name: HtmlTable.Select

description: Builds a stripy, sortable table with methods to add rows. Rows can be selected with the mouse or keyboard navigation.

license: MIT-style license

authors:
  - Harald Kirschner
  - Aaron Newton

requires:
  - /Keyboard.Extras
  - /HtmlTable
  - /Class.refactor
  - /Element.Delegation
  - /Element.Shortcuts

provides: [HtmlTable.Select]

...
*/

HtmlTable = Class.refactor(HtmlTable, {

	options: {
		/*onRowFocus: $empty,
		onRowUnfocus: $empty,*/
		useKeyboard: true,
		classRowSelected: 'table-tr-selected',
		classRowHovered: 'table-tr-hovered',
		classSelectable: 'table-selectable',
		shiftForMultiSelect: true,
		allowMultiSelect: true,
		selectable: false
	},

	initialize: function(){
		this.previous.apply(this, arguments);
		if (this.occluded) return this.occluded;
		this._selectedRows = new Elements();
		this._bound = {
			mouseleave: this._mouseleave.bind(this),
			clickRow: this._clickRow.bind(this)
		};
		if (this.options.selectable) this.enableSelect();
	},

	enableSelect: function(){
		this._selectEnabled = true;
		this._attachSelects();
		this.element.addClass(this.options.classSelectable);
	},

	disableSelect: function(){
		this._selectEnabled = false;
		this._attachSelects(false);
		this.element.removeClass(this.options.classSelectable);
	},

	push: function(){
		var ret = this.previous.apply(this, arguments);
		this._updateSelects();
		return ret;
	},

	toggleRow: function(row){
		return this.isSelected(row) ? this.deselectRow.apply(this, arguments) : this.selectRow.apply(this, arguments);
	},

	selectRow: function(row, _nocheck){
		//private variable _nocheck: boolean whether or not to confirm the row is in the table body
		//added here for optimization when selecting ranges
		if (this.isSelected(row) || (!_nocheck && !this.body.getChildren().contains(row))) return;
		if (!this.options.allowMultiSelect) this.selectNone();

		if (!this.isSelected(row)) {
			this._selectedRows.push(row);
			row.addClass(this.options.classRowSelected);
			this.fireEvent('rowFocus', [row, this._selectedRows]);
		}
		this._focused = row;
		document.clearSelection();
		return this;
	},
	
	isSelected: function(row){
		return this._selectedRows.contains(row);
	},
	
	deselectRow: function(row, _nocheck){
		if (!this.isSelected(row) || (!_nocheck && !this.body.getChildren().contains(row))) return;
		this._selectedRows.erase(row);
		row.removeClass(this.options.classRowSelected);
		this.fireEvent('rowUnfocus', [row, this._selectedRows]);
		return this;
	},

	selectAll: function(selectNone){
		if (!selectNone && !this.options.allowMultiSelect) return;
		this.selectRange(0, this.body.rows.length, selectNone);
		return this;
	},

	selectNone: function(){
		return this.selectAll(true);
	},

	selectRange: function(startRow, endRow, _deselect){
		if (!this.options.allowMultiSelect && !_deselect) return;
		var method = _deselect ? 'deselectRow' : 'selectRow',
		    rows = $A(this.body.rows);

		if ($type(startRow) == 'element') startRow = rows.indexOf(startRow);
		if ($type(endRow) == 'element') endRow = rows.indexOf(endRow);
		endRow = endRow < rows.length - 1 ? endRow : rows.length - 1; 

		if (endRow < startRow) {
			var tmp = startRow;
			startRow = endRow;
			endRow = tmp;
		}

		for(var i = startRow; i <= endRow; i++) this[method](rows[i], true);

		return this;
	},

	deselectRange: function(startRow, endRow){
		this.selectRange(startRow, endRow, true);
	},
/*
	Private methods:
*/

	_enterRow: function(row){
		if (this._hovered) this._hovered = this._leaveRow(this._hovered);
		this._hovered = row.addClass(this.options.classRowHovered);
	},

	_leaveRow: function(row){
		row.removeClass(this.options.classRowHovered);
	},

	_updateSelects: function(){
		Array.each(this.body.rows, function(row){
			var binders = row.retrieve('binders');
			if ((binders && this._selectEnabled) || (!binders && !this._selectEnabled)) return;
			if (!binders){
				binders = {
					mouseenter: this._enterRow.bind(this, [row]),
					mouseleave: this._leaveRow.bind(this, [row])
				};
				row.store('binders', binders).addEvents(binders);
			} else {
				row.removeEvents(binders);
			}
		}, this);
	},

	_shiftFocus: function(offset, event){
		if (!this._focused) return this.selectRow(this.body.rows[0], event);
		var to = this._getRowByOffset(offset);
		if (to === null || this._focused == this.body.rows[to]) return this;
		this.toggleRow(this.body.rows[to], event);
	},

	_clickRow: function(event, row){
		var selecting = (event.shift || event.meta || event.control) && this.options.shiftForMultiSelect;
		if (!selecting && !(event.rightClick && this.isSelected(row) && this.options.allowMultiSelect)) this.selectNone();
		if (event.rightClick) this.selectRow(row);
		else this.toggleRow(row);
		if (event.shift) {
			this.selectRange(this._rangeStart || this.body.rows[0], row, this._rangeStart ? !this.isSelected(row) : true);
			this._focused = row;
		}
		this._rangeStart = row;
	},

	_getRowByOffset: function(offset){
		if (!this._focused) return 0;
		var index = Array.indexOf(this.body.rows, this._focused) + offset;
		if (index < 0) index = null;
		if (index >= this.body.rows.length) index = null;
		return index;
	},

	_attachSelects: function(attach){
		attach = $pick(attach, true);
		var method = attach ? 'addEvents' : 'removeEvents';
		this.element[method]({
			mouseleave: this._bound.mouseleave
		});
		this.body[method]({
			'click:relay(tr)': this._bound.clickRow,
			'contextmenu:relay(tr)': this._bound.clickRow
		});
		if (this.options.useKeyboard || this.keyboard){
			if (!this.keyboard) {
				var timer, held;
				var move = function(offset){
					var mover = function(e){
						$clear(timer);
						e.preventDefault();
						var to = this.body.rows[this._getRowByOffset(offset)];
						if (e.shift && to && this.isSelected(to)) {
							this.deselectRow(this._focused);
							this._focused = to;
						} else {
							if (to && (!this.options.allowMultiSelect || !e.shift)) {
								this.selectNone();
							}
							this._shiftFocus(offset, e);
						}
						if (held) {
							timer = mover.delay(100, this, e);
						} else {
							timer = (function(){
								held = true;
								mover(e);
							}).delay(400);
						}
					}.bind(this);
					return mover;
				}.bind(this);
				
				var clear = function(){
					$clear(timer);
					held = false;
				};
				
				this.keyboard = new Keyboard({
					events: {
						'keydown:shift+up': move(-1),
						'keydown:shift+down': move(1),
						'keyup:shift+up': clear,
						'keyup:shift+down': clear,
						'keyup:up': clear,
						'keyup:down': clear
					},
					active: true
				});
				
				var shiftHint = '';
				if (this.options.allowMultiSelect && this.options.shiftForMultiSelect && this.options.useKeyboard) {
					shiftHint = " (Shift multi-selects).";
				}
				
				this.keyboard.addShortcuts({
					'Select Previous Row': {
						keys: 'up',
						shortcut: 'up arrow',
						handler: move(-1),
						description: 'Select the previous row in the table.' + shiftHint
					},
					'Select Next Row': {
						keys: 'down',
						shortcut: 'down arrow',
						handler: move(1),
						description: 'Select the next row in the table.' + shiftHint
					}
				});
			}
			this.keyboard[attach ? 'activate' : 'deactivate']();
		}
		this._updateSelects();
	},

	_mouseleave: function(){
		if (this._hovered) this._leaveRow(this._hovered);
	}

});

/*
---

script: Keyboard.js

name: Keyboard

description: KeyboardEvents used to intercept events on a class for keyboard and format modifiers in a specific order so as to make alt+shift+c the same as shift+alt+c.

license: MIT-style license

authors:
  - Perrin Westrich
  - Aaron Newton
  - Scott Kyle

requires:
  - Core/Events
  - Core/Options
  - Core/Element.Event
  - /Log

provides: [Keyboard]

...
*/

(function(){
	
	var Keyboard = this.Keyboard = new Class({

		Extends: Events,

		Implements: [Options, Log],

		options: {
			/*
			onActivate: $empty,
			onDeactivate: $empty,
			*/
			defaultEventType: 'keydown',
			active: false,
			manager: null,
			events: {},
			nonParsedEvents: ['activate', 'deactivate', 'onactivate', 'ondeactivate', 'changed', 'onchanged']
		},

		initialize: function(options){
			if (options && options.manager) {
				this.manager = options.manager;
				delete options.manager;
			}
			this.setOptions(options);
			this.setup();
		}, 
		setup: function(){
			this.addEvents(this.options.events);
			//if this is the root manager, nothing manages it
			if (Keyboard.manager && !this.manager) Keyboard.manager.manage(this);
			if (this.options.active) this.activate();
		},

		handle: function(event, type){
			//Keyboard.stop(event) prevents key propagation
			if (event.preventKeyboardPropagation) return;
			
			var bubbles = !!this.manager;
			if (bubbles && this.activeKB){
				this.activeKB.handle(event, type);
				if (event.preventKeyboardPropagation) return;
			}
			this.fireEvent(type, event);
			
			if (!bubbles && this.activeKB) this.activeKB.handle(event, type);
		},

		addEvent: function(type, fn, internal){
			return this.parent(Keyboard.parse(type, this.options.defaultEventType, this.options.nonParsedEvents), fn, internal);
		},

		removeEvent: function(type, fn){
			return this.parent(Keyboard.parse(type, this.options.defaultEventType, this.options.nonParsedEvents), fn);
		},

		toggleActive: function(){
			return this[this.active ? 'deactivate' : 'activate']();
		},

		activate: function(instance){
			if (instance) {
				if (instance.isActive()) return this;
				//if we're stealing focus, store the last keyboard to have it so the relinquish command works
				if (this.activeKB && instance != this.activeKB) {
					this.previous = this.activeKB;
					this.previous.fireEvent('deactivate');
				}
				//if we're enabling a child, assign it so that events are now passed to it
				this.activeKB = instance.fireEvent('activate');
				Keyboard.manager.fireEvent('changed');
			} else if (this.manager) {
				//else we're enabling ourselves, we must ask our parent to do it for us
				this.manager.activate(this);
			}
			return this;
		},

		isActive: function(){
			return this.manager ? this.manager.activeKB == this :  Keyboard.manager == this;
		},

		deactivate: function(instance){
			if (instance) {
				if(instance === this.activeKB) {
					this.activeKB = null;
					instance.fireEvent('deactivate');
					Keyboard.manager.fireEvent('changed');
				}
			} else if (this.manager) {
				this.manager.deactivate(this);
			}
			return this;
		},

		relinquish: function(){
			if (this.isActive() && this.manager && this.manager.previous) this.manager.activate(this.manager.previous);
		},

		//management logic
		manage: function(instance){
			if (instance.manager && instance.manager != Keyboard.manager && this != Keyboard.manager) instance.manager.drop(instance);
			this.instances.push(instance);
			instance.manager = this;
			if (!this.activeKB) this.activate(instance);
		},

		_disable: function(instance){
			if (this.activeKB == instance) this.activeKB = null;
		},

		drop: function(instance){
			this._disable(instance);
			this.instances.erase(instance);
			Keyboard.manager.manage(instance);
			if (this.activeKB == instance && this.previous && this.instances.contains(this.previous)) this.activate(this.previous);
		},

		instances: [],

		trace: function(){
			Keyboard.trace(this);
		},

		each: function(fn){
			Keyboard.each(this, fn);
		}

	});
	
	var parsed = {};
	var modifiers = ['shift', 'control', 'alt', 'meta'];
	var regex = /^(?:shift|control|ctrl|alt|meta)$/;
	
	Keyboard.parse = function(type, eventType, ignore){
		if (ignore && ignore.contains(type.toLowerCase())) return type;
		
		type = type.toLowerCase().replace(/^(keyup|keydown):/, function($0, $1){
			eventType = $1;
			return '';
		});

		if (!parsed[type]){
			var key, mods = {};
			type.split('+').each(function(part){
				if (regex.test(part)) mods[part] = true;
				else key = part;
			});

			mods.control = mods.control || mods.ctrl; // allow both control and ctrl
			
			var keys = [];
			modifiers.each(function(mod){
				if (mods[mod]) keys.push(mod);
			});
			
			if (key) keys.push(key);
			parsed[type] = keys.join('+');
		}

		return eventType + ':' + parsed[type];
	};

	Keyboard.each = function(keyboard, fn){
		var current = keyboard || Keyboard.manager;
		while (current){
			fn.run(current);
			current = current.activeKB;
		}
	};

	Keyboard.stop = function(event){
		event.preventKeyboardPropagation = true;
	};

	Keyboard.manager = new Keyboard({
		active: true
	});
	
	Keyboard.trace = function(keyboard){
		keyboard = keyboard || Keyboard.manager;
		keyboard.enableLog();
		keyboard.log('the following items have focus: ');
		Keyboard.each(keyboard, function(current){
			keyboard.log(document.id(current.widget) || current.wiget || current);
		});
	};
	
	var handler = function(event){
		var keys = [];
		modifiers.each(function(mod){
			if (event[mod]) keys.push(mod);
		});
		
		if (!regex.test(event.key)) keys.push(event.key);
		Keyboard.manager.handle(event, event.type + ':' + keys.join('+'));
	};
	
	document.addEvents({
		'keyup': handler,
		'keydown': handler
	});

	Event.Keys.extend({
		'shift': 16,
		'control': 17,
		'alt': 18,
		'capslock': 20,
		'pageup': 33,
		'pagedown': 34,
		'end': 35,
		'home': 36,
		'numlock': 144,
		'scrolllock': 145,
		';': 186,
		'=': 187,
		',': 188,
		'-': Browser.Engine.gecko ? 109 : 189,
		'.': 190,
		'/': 191,
		'`': 192,
		'[': 219,
		'\\': 220,
		']': 221,
		"'": 222
	});

})();


/*
---

script: Keyboard.Extras.js

name: Keyboard.Extras

description: Enhances Keyboard by adding the ability to name and describe keyboard shortcuts, and the ability to grab shortcuts by name and bind the shortcut to different keys.

license: MIT-style license

authors:
  - Perrin Westrich

requires:
  - /Keyboard
  - /MooTools.More

provides: [Keyboard.Extras]

...
*/
Keyboard.prototype.options.nonParsedEvents.combine(['rebound', 'onrebound']);

Keyboard.implement({

	/*
		shortcut should be in the format of:
		{
			'keys': 'shift+s', // the default to add as an event.
			'description': 'blah blah blah', // a brief description of the functionality.
			'handler': function(){} // the event handler to run when keys are pressed.
		}
	*/
	addShortcut: function(name, shortcut) {
		this.shortcuts = this.shortcuts || [];
		this.shortcutIndex = this.shortcutIndex || {};
		
		shortcut.getKeyboard = $lambda(this);
		shortcut.name = name;
		this.shortcutIndex[name] = shortcut;
		this.shortcuts.push(shortcut);
		if(shortcut.keys) this.addEvent(shortcut.keys, shortcut.handler);
		return this;
	},

	addShortcuts: function(obj){
		for(var name in obj) this.addShortcut(name, obj[name]);
		return this;
	},

	removeShortcut: function(name) {
		var shortcut = this.getShortcut(name);
		if (shortcut && shortcut.keys) {
			this.removeEvent(shortcut.keys, shortcut.handler);
			delete this.shortcutIndex[name];
			this.shortcuts.erase(shortcut);
		}
		return this;
	},

	removeShortcuts: function(names) {
		names.each(this.removeShortcut, this);
		return this;
	},

	getShortcuts: function(){
		return this.shortcuts || [];
	},

	getShortcut: function(name){
		return (this.shortcutIndex || {})[name];
	}

});

Keyboard.rebind = function(newKeys, shortcuts){
	$splat(shortcuts).each(function(shortcut){
		shortcut.getKeyboard().removeEvent(shortcut.keys, shortcut.handler);
		shortcut.getKeyboard().addEvent(newKeys, shortcut.handler);
		shortcut.keys = newKeys;
		shortcut.getKeyboard().fireEvent('rebound');
	});
};


Keyboard.getActiveShortcuts = function(keyboard) {
	var activeKBS = [], activeSCS = [];
	Keyboard.each(keyboard, [].push.bind(activeKBS));
	activeKBS.each(function(kb){ activeSCS.extend(kb.getShortcuts()); });
	return activeSCS;
};

Keyboard.getShortcut = function(name, keyboard, opts){
	opts = opts || {};
	var shortcuts = opts.many ? [] : null,
		set = opts.many ? function(kb){
				var shortcut = kb.getShortcut(name);
				if(shortcut) shortcuts.push(shortcut);
			} : function(kb) { 
				if(!shortcuts) shortcuts = kb.getShortcut(name);
			};
	Keyboard.each(keyboard, set);
	return shortcuts;
};

Keyboard.getShortcuts = function(name, keyboard) {
	return Keyboard.getShortcut(name, keyboard, { many: true });
};


/*
---

script: Mask.js

name: Mask

description: Creates a mask element to cover another.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Options
  - Core/Events
  - Core/Element.Event
  - /Class.Binds
  - /Element.Position
  - /IframeShim

provides: [Mask]

...
*/

var Mask = new Class({

	Implements: [Options, Events],

	Binds: ['position'],

	options: {
		// onShow: $empty,
		// onHide: $empty,
		// onDestroy: $empty,
		// onClick: $empty,
		//inject: {
		//  where: 'after',
		//  target: null,
		//},
		// hideOnClick: false,
		// id: null,
		// destroyOnHide: false,
		style: {},
		'class': 'mask',
		maskMargins: false,
		useIframeShim: true,
		iframeShimOptions: {}
	},

	initialize: function(target, options){
		this.target = document.id(target) || document.id(document.body);
		this.target.store('Mask', this);
		this.setOptions(options);
		this.render();
		this.inject();
	},
	
	render: function() {
		this.element = new Element('div', {
			'class': this.options['class'],
			id: this.options.id || 'mask-' + $time(),
			styles: $merge(this.options.style, {
				display: 'none'
			}),
			events: {
				click: function(){
					this.fireEvent('click');
					if (this.options.hideOnClick) this.hide();
				}.bind(this)
			}
		});
		this.hidden = true;
	},

	toElement: function(){
		return this.element;
	},

	inject: function(target, where){
		where = where || this.options.inject ? this.options.inject.where : '' || this.target == document.body ? 'inside' : 'after';
		target = target || this.options.inject ? this.options.inject.target : '' || this.target;
		this.element.inject(target, where);
		if (this.options.useIframeShim) {
			this.shim = new IframeShim(this.element, this.options.iframeShimOptions);
			this.addEvents({
				show: this.shim.show.bind(this.shim),
				hide: this.shim.hide.bind(this.shim),
				destroy: this.shim.destroy.bind(this.shim)
			});
		}
	},

	position: function(){
		this.resize(this.options.width, this.options.height);
		this.element.position({
			relativeTo: this.target,
			position: 'topLeft',
			ignoreMargins: !this.options.maskMargins,
			ignoreScroll: this.target == document.body
		});
		return this;
	},

	resize: function(x, y){
		var opt = {
			styles: ['padding', 'border']
		};
		if (this.options.maskMargins) opt.styles.push('margin');
		var dim = this.target.getComputedSize(opt);
		if (this.target == document.body) {
			var win = window.getScrollSize();
			if (dim.totalHeight < win.y) dim.totalHeight = win.y;
			if (dim.totalWidth < win.x) dim.totalWidth = win.x;
		}
		this.element.setStyles({
			width: $pick(x, dim.totalWidth, dim.x),
			height: $pick(y, dim.totalHeight, dim.y)
		});
		return this;
	},

	show: function(){
		if (!this.hidden) return this;
		window.addEvent('resize', this.position);
		this.position();
		this.showMask.apply(this, arguments);
		return this;
	},

	showMask: function(){
		this.element.setStyle('display', 'block');
		this.hidden = false;
		this.fireEvent('show');
	},

	hide: function(){
		if (this.hidden) return this;
		window.removeEvent('resize', this.position);
		this.hideMask.apply(this, arguments);
		if (this.options.destroyOnHide) return this.destroy();
		return this;
	},

	hideMask: function(){
		this.element.setStyle('display', 'none');
		this.hidden = true;
		this.fireEvent('hide');
	},

	toggle: function(){
		this[this.hidden ? 'show' : 'hide']();
	},

	destroy: function(){
		this.hide();
		this.element.destroy();
		this.fireEvent('destroy');
		this.target.eliminate('mask');
	}

});

Element.Properties.mask = {

	set: function(options){
		var mask = this.retrieve('mask');
		return this.eliminate('mask').store('mask:options', options);
	},

	get: function(options){
		if (options || !this.retrieve('mask')){
			if (this.retrieve('mask')) this.retrieve('mask').destroy();
			if (options || !this.retrieve('mask:options')) this.set('mask', options);
			this.store('mask', new Mask(this, this.retrieve('mask:options')));
		}
		return this.retrieve('mask');
	}

};

Element.implement({

	mask: function(options){
		this.get('mask', options).show();
		return this;
	},

	unmask: function(){
		this.get('mask').hide();
		return this;
	}

});

/*
---

script: Scroller.js

name: Scroller

description: Class which scrolls the contents of any Element (including the window) when the mouse reaches the Element's boundaries.

license: MIT-style license

authors:
  - Valerio Proietti

requires:
  - Core/Events
  - Core/Options
  - Core/Element.Event
  - Core/Element.Dimensions

provides: [Scroller]

...
*/

var Scroller = new Class({

	Implements: [Events, Options],

	options: {
		area: 20,
		velocity: 1,
		onChange: function(x, y){
			this.element.scrollTo(x, y);
		},
		fps: 50
	},

	initialize: function(element, options){
		this.setOptions(options);
		this.element = document.id(element);
		this.docBody = document.id(this.element.getDocument().body);
		this.listener = ($type(this.element) != 'element') ?  this.docBody : this.element;
		this.timer = null;
		this.bound = {
			attach: this.attach.bind(this),
			detach: this.detach.bind(this),
			getCoords: this.getCoords.bind(this)
		};
	},

	start: function(){
		this.listener.addEvents({
			mouseenter: this.bound.attach,
			mouseleave: this.bound.detach
		});
	},

	stop: function(){
		this.listener.removeEvents({
			mouseenter: this.bound.attach,
			mouseleave: this.bound.detach
		});
		this.detach();
		this.timer = $clear(this.timer);
	},

	attach: function(){
		this.listener.addEvent('mousemove', this.bound.getCoords);
	},

	detach: function(){
		this.listener.removeEvent('mousemove', this.bound.getCoords);
		this.timer = $clear(this.timer);
	},

	getCoords: function(event){
		this.page = (this.listener.get('tag') == 'body') ? event.client : event.page;
		if (!this.timer) this.timer = this.scroll.periodical(Math.round(1000 / this.options.fps), this);
	},

	scroll: function(){
		var size = this.element.getSize(), 
			scroll = this.element.getScroll(), 
			pos = this.element != this.docBody ? this.element.getOffsets() : {x: 0, y:0}, 
			scrollSize = this.element.getScrollSize(), 
			change = {x: 0, y: 0},
			top = this.options.area.top || this.options.area,
		  bottom = this.options.area.bottom || this.options.area;
		for (var z in this.page){
			if (this.page[z] < (top + pos[z]) && scroll[z] != 0) {
				change[z] = (this.page[z] - top - pos[z]) * this.options.velocity;
			} else if (this.page[z] + bottom > (size[z] + pos[z]) && scroll[z] + size[z] != scrollSize[z]) {
				change[z] = (this.page[z] - size[z] + bottom - pos[z]) * this.options.velocity;
			}
			change[z] = change[z].round();
		}
		if (change.y || change.x) this.fireEvent('change', [scroll.x + change.x, scroll.y + change.y]);
	}

});


/*
---

script: Tips.js

name: Tips

description: Class for creating nice tips that follow the mouse cursor when hovering an element.

license: MIT-style license

authors:
  - Valerio Proietti
  - Christoph Pojer

requires:
  - Core/Options
  - Core/Events
  - Core/Element.Event
  - Core/Element.Style
  - Core/Element.Dimensions
  - /MooTools.More

provides: [Tips]

...
*/

(function(){

var read = function(option, element){
	return (option) ? ($type(option) == 'function' ? option(element) : element.get(option)) : '';
};

this.Tips = new Class({

	Implements: [Events, Options],

	options: {
		/*
		onAttach: $empty(element),
		onDetach: $empty(element),
		*/
		onShow: function(){
			this.tip.setStyle('display', 'block');
		},
		onHide: function(){
			this.tip.setStyle('display', 'none');
		},
		title: 'title',
		text: function(element){
			return element.get('rel') || element.get('href');
		},
		showDelay: 100,
		hideDelay: 100,
		className: 'tip-wrap',
		offset: {x: 16, y: 16},
		windowPadding: {x:0, y:0},
		fixed: false
	},

	initialize: function(){
		var params = Array.link(arguments, {options: Object.type, elements: $defined});
		this.setOptions(params.options);
		if (params.elements) this.attach(params.elements);
		this.container = new Element('div', {'class': 'tip'});
	},

	toElement: function(){
		if (this.tip) return this.tip;

		return this.tip = new Element('div', {
			'class': this.options.className,
			styles: {
				position: 'absolute',
				top: 0,
				left: 0
			}
		}).adopt(
			new Element('div', {'class': 'tip-top'}),
			this.container,
			new Element('div', {'class': 'tip-bottom'})
		);
	},

	attach: function(elements){
		$$(elements).each(function(element){
			var title = read(this.options.title, element),
				text = read(this.options.text, element);
			
			element.erase('title').store('tip:native', title).retrieve('tip:title', title);
			element.retrieve('tip:text', text);
			this.fireEvent('attach', [element]);
			
			var events = ['enter', 'leave'];
			if (!this.options.fixed) events.push('move');
			
			events.each(function(value){
				var event = element.retrieve('tip:' + value);
				if (!event) event = this['element' + value.capitalize()].bindWithEvent(this, element);
				
				element.store('tip:' + value, event).addEvent('mouse' + value, event);
			}, this);
		}, this);
		
		return this;
	},

	detach: function(elements){
		$$(elements).each(function(element){
			['enter', 'leave', 'move'].each(function(value){
				element.removeEvent('mouse' + value, element.retrieve('tip:' + value)).eliminate('tip:' + value);
			});
			
			this.fireEvent('detach', [element]);
			
			if (this.options.title == 'title'){ // This is necessary to check if we can revert the title
				var original = element.retrieve('tip:native');
				if (original) element.set('title', original);
			}
		}, this);
		
		return this;
	},

	elementEnter: function(event, element){
		this.container.empty();
		
		['title', 'text'].each(function(value){
			var content = element.retrieve('tip:' + value);
			if (content) this.fill(new Element('div', {'class': 'tip-' + value}).inject(this.container), content);
		}, this);
		
		$clear(this.timer);
		this.timer = (function(){
			this.show(element);
			this.position((this.options.fixed) ? {page: element.getPosition()} : event);
		}).delay(this.options.showDelay, this);
	},

	elementLeave: function(event, element){
		$clear(this.timer);
		this.timer = this.hide.delay(this.options.hideDelay, this, element);
		this.fireForParent(event, element);
	},

	fireForParent: function(event, element){
		element = element.getParent();
		if (!element || element == document.body) return;
		if (element.retrieve('tip:enter')) element.fireEvent('mouseenter', event);
		else this.fireForParent(event, element);
	},

	elementMove: function(event, element){
		this.position(event);
	},

	position: function(event){
		if (!this.tip) document.id(this);

		var size = window.getSize(), scroll = window.getScroll(),
			tip = {x: this.tip.offsetWidth, y: this.tip.offsetHeight},
			props = {x: 'left', y: 'top'},
			obj = {};
		
		for (var z in props){
			obj[props[z]] = event.page[z] + this.options.offset[z];
			if ((obj[props[z]] + tip[z] - scroll[z]) > size[z] - this.options.windowPadding[z]) obj[props[z]] = event.page[z] - this.options.offset[z] - tip[z];
		}
		
		this.tip.setStyles(obj);
	},

	fill: function(element, contents){
		if(typeof contents == 'string') element.set('html', contents);
		else element.adopt(contents);
	},

	show: function(element){
		if (!this.tip) document.id(this);
		if (!this.tip.getParent()) this.tip.inject(document.body);
		this.fireEvent('show', [this.tip, element]);
	},

	hide: function(element){
		if (!this.tip) document.id(this);
		this.fireEvent('hide', [this.tip, element]);
	}

});

})();


/*
---

script: Spinner.js

name: Spinner

description: Adds a semi-transparent overlay over a dom element with a spinnin ajax icon.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - Core/Fx.Tween
  - Core/Request
  - /Class.refactor
  - /Mask

provides: [Spinner]

...
*/

var Spinner = new Class({

	Extends: Mask,

	options: {
		/*message: false,*/
		'class':'spinner',
		containerPosition: {},
		content: {
			'class':'spinner-content'
		},
		messageContainer: {
			'class':'spinner-msg'
		},
		img: {
			'class':'spinner-img'
		},
		fxOptions: {
			link: 'chain'
		}
	},

	initialize: function(){
		this.parent.apply(this, arguments);
		this.target.store('spinner', this);

		//add this to events for when noFx is true; parent methods handle hide/show
		var deactivate = function(){ this.active = false; }.bind(this);
		this.addEvents({
			hide: deactivate,
			show: deactivate
		});
	},

	render: function(){
		this.parent();
		this.element.set('id', this.options.id || 'spinner-'+$time());
		this.content = document.id(this.options.content) || new Element('div', this.options.content);
		this.content.inject(this.element);
		if (this.options.message) {
			this.msg = document.id(this.options.message) || new Element('p', this.options.messageContainer).appendText(this.options.message);
			this.msg.inject(this.content);
		}
		if (this.options.img) {
			this.img = document.id(this.options.img) || new Element('div', this.options.img);
			this.img.inject(this.content);
		}
		this.element.set('tween', this.options.fxOptions);
	},

	show: function(noFx){
		if (this.active) return this.chain(this.show.bind(this));
		if (!this.hidden) {
			this.callChain.delay(20, this);
			return this;
		}
		this.active = true;
		return this.parent(noFx);
	},

	showMask: function(noFx){
		var pos = function(){
			this.content.position($merge({
				relativeTo: this.element
			}, this.options.containerPosition));
		}.bind(this);
		if (noFx) {
			this.parent();
			pos();
		} else {
			this.element.setStyles({
				display: 'block',
				opacity: 0
			}).tween('opacity', this.options.style.opacity || 0.9);
			pos();
			this.hidden = false;
			this.fireEvent('show');
			this.callChain();
		}
	},

	hide: function(noFx){
		if (this.active) return this.chain(this.hide.bind(this));
		if (this.hidden) {
			this.callChain.delay(20, this);
			return this;
		}
		this.active = true;
		return this.parent(noFx);
	},

	hideMask: function(noFx){
		if (noFx) return this.parent();
		this.element.tween('opacity', 0).get('tween').chain(function(){
			this.element.setStyle('display', 'none');
			this.hidden = true;
			this.fireEvent('hide');
			this.callChain();
		}.bind(this));
	},

	destroy: function(){
		this.content.destroy();
		this.parent();
		this.target.eliminate('spinner');
	}

});

Spinner.implement(new Chain);

Request = Class.refactor(Request, {
	
	options: {
		useSpinner: false,
		spinnerOptions: {},
		spinnerTarget: false
	},
	
	initialize: function(options){
		this._send = this.send;
		this.send = function(options){
			var spinner = this.getSpinner();
			if (spinner) spinner.chain(this._send.bind(this, options)).show();
			else this._send(options);
			return this;
		};
		this.previous(options);
	},
	
	getSpinner: function(){
		if (!this.spinner) {
			var update = document.id(this.options.spinnerTarget) || document.id(this.options.update);
			if (this.options.useSpinner && update) {
				this.spinner = update.get('spinner', this.options.spinnerOptions);
				['onComplete', 'onException', 'onCancel'].each(function(event){
					this.addEvent(event, this.spinner.hide.bind(this.spinner));
				}, this);
			}
		}
		return this.spinner;
	}
	
});

Element.Properties.spinner = {

	set: function(options){
		var spinner = this.retrieve('spinner');
		return this.eliminate('spinner').store('spinner:options', options);
	},

	get: function(options){
		if (options || !this.retrieve('spinner')){
			if (this.retrieve('spinner')) this.retrieve('spinner').destroy();
			if (options || !this.retrieve('spinner:options')) this.set('spinner', options);
			new Spinner(this, this.retrieve('spinner:options'));
		}
		return this.retrieve('spinner');
	}

};

Element.implement({

	spin: function(options){
		this.get('spinner', options).show();
		return this;
	},

	unspin: function(){
		var opt = Array.link(arguments, {options: Object.type, callback: Function.type});
		this.get('spinner', opt.options).hide(opt.callback);
		return this;
	}

});

/*
---

script: Date.English.US.js

name: Date.English.US

description: Date messages for US English.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - /Lang

provides: [Date.English.US]

...
*/

MooTools.lang.set('en-US', 'Date', {

	months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
	days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],

	// Culture's date order: MM/DD/YYYY
	dateOrder: ['month', 'date', 'year'],
	shortDate: '%m/%d/%Y',
	shortTime: '%I:%M%p',
	AM: 'AM',
	PM: 'PM',

	// Date.Extras
	ordinal: function(dayOfMonth){
		// 1st, 2nd, 3rd, etc.
		return (dayOfMonth > 3 && dayOfMonth < 21) ? 'th' : ['th', 'st', 'nd', 'rd', 'th'][Math.min(dayOfMonth % 10, 4)];
	},

	lessThanMinuteAgo: 'less than a minute ago',
	minuteAgo: 'about a minute ago',
	minutesAgo: '{delta} minutes ago',
	hourAgo: 'about an hour ago',
	hoursAgo: 'about {delta} hours ago',
	dayAgo: '1 day ago',
	daysAgo: '{delta} days ago',
	weekAgo: '1 week ago',
	weeksAgo: '{delta} weeks ago',
	monthAgo: '1 month ago',
	monthsAgo: '{delta} months ago',
	yearAgo: '1 year ago',
	yearsAgo: '{delta} years ago',

	lessThanMinuteUntil: 'less than a minute from now',
	minuteUntil: 'about a minute from now',
	minutesUntil: '{delta} minutes from now',
	hourUntil: 'about an hour from now',
	hoursUntil: 'about {delta} hours from now',
	dayUntil: '1 day from now',
	daysUntil: '{delta} days from now',
	weekUntil: '1 week from now',
	weeksUntil: '{delta} weeks from now',
	monthUntil: '1 month from now',
	monthsUntil: '{delta} months from now',
	yearUntil: '1 year from now',
	yearsUntil: '{delta} years from now'

});


/*
---

script: Form.Validator.English.js

name: Form.Validator.English

description: Form Validator messages for English.

license: MIT-style license

authors:
  - Aaron Newton

requires:
  - /Lang

provides: [Form.Validator.English]

...
*/

MooTools.lang.set('en-US', 'Form.Validator', {

	required: 'This field is required.',
	minLength: 'Please enter at least {minLength} characters (you entered {length} characters).',
	maxLength: 'Please enter no more than {maxLength} characters (you entered {length} characters).',
	integer: 'Please enter an integer in this field. Numbers with decimals (e.g. 1.25) are not permitted.',
	numeric: 'Please enter only numeric values in this field (i.e. "1" or "1.1" or "-1" or "-1.1").',
	digits: 'Please use numbers and punctuation only in this field (for example, a phone number with dashes or dots is permitted).',
	alpha: 'Please use only letters (a-z) within this field. No spaces or other characters are allowed.',
	alphanum: 'Please use only letters (a-z) or numbers (0-9) in this field. No spaces or other characters are allowed.',
	dateSuchAs: 'Please enter a valid date such as {date}',
	dateInFormatMDY: 'Please enter a valid date such as MM/DD/YYYY (i.e. "12/31/1999")',
	email: 'Please enter a valid email address. For example "fred@domain.com".',
	url: 'Please enter a valid URL such as http://www.google.com.',
	currencyDollar: 'Please enter a valid $ amount. For example $100.00 .',
	oneRequired: 'Please enter something for at least one of these inputs.',
	errorPrefix: 'Error: ',
	warningPrefix: 'Warning: ',

	// Form.Validator.Extras
	noSpace: 'There can be no spaces in this input.',
	reqChkByNode: 'No items are selected.',
	requiredChk: 'This field is required.',
	reqChkByName: 'Please select a {label}.',
	match: 'This field needs to match the {matchName} field',
	startDate: 'the start date',
	endDate: 'the end date',
	currendDate: 'the current date',
	afterDate: 'The date should be the same or after {label}.',
	beforeDate: 'The date should be the same or before {label}.',
	startMonth: 'Please select a start month',
	sameMonth: 'These two dates must be in the same month - you must change one or the other.',
	creditcard: 'The credit card number entered is invalid. Please check the number and try again. {length} digits entered.'

});

var map;
var WorldMap = new Class({
  
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) return;
    
    this.cities = [];
    this.setup();
    this.toggle(0);
  },
  
  setup: function() {
    var links = this.element.getElements('.worldmap-cities .worldmap-city');
    var self = this;
    links.each(function(l) {
      var dot = $(l.get('id').replace('worldmap-city-', 'worldmap-dot-'));
      var popup = $(l.get('id').replace('worldmap-city-', 'worldmap-popup-'));
      if (dot && popup) {
        self.cities.push({
          link: l,
          dot: dot,
          popup: popup
        });
        l.addEvent('click', self.toggle.bind(self, [self.cities.length - 1]));
        dot.addEvent('click', self.toggle.bind(self, [self.cities.length - 1]));
      }
    });
  },
  
  toggle: function(i) {
    if (i < 0 || i >= (this.cities - 1)) return;
    var info = this.cities[i];
    var current_link = this.element.getElement('.worldmap-cities .current');
    var current_popup = this.element.getElement('.worldmap-popup-current');
    if (current_popup) current_popup.removeClass('worldmap-popup-current');
    if (current_link) current_link.removeClass('current');
    info.link.addClass('current');
    info.popup.addClass('worldmap-popup-current');
  }
  
});
window.addEvent('domready', function() {
  map = new WorldMap('worldmap');
});
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2002, 2005 Parachute¨, www.parachute.gr.  All rights reserved.
 * 
 * Trademark:
 * Din Text is a trademark of Parachute¨
 * 
 * Description:
 * Based on DIN 1451 the German Industrial standard by the Deutsches Institut
 * Normung - (1936/1986)
 * 
 * Manufacturer:
 * Parachute¨ Worldwide
 * 
 * Designer:
 * Panos Vassiliou
 * 
 * Vendor URL:
 * http://www.parachute.gr
 * 
 * License information:
 * http://www.parachute.gr/support.aspx?Licensing=1
 */
Cufon.registerFont({"w":654,"face":{"font-family":"PF DinText Pro ExtraThin","font-weight":100,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 5 0 0 2 0 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-129 -326.273 632.729 90.531","underline-thickness":"9.36","underline-position":"-20.52","unicode-range":"U+0020-U+FB05"},"glyphs":{" ":{"w":79,"k":{"\u0427":11}},"\ue1f8":{"d":"113,-237v-19,-22,-75,-22,-70,19r0,39r74,0r0,208v-1,29,-15,46,-47,44v-1,-5,0,-10,6,-8v23,-2,31,-13,31,-38r0,-198r-64,0r0,171r-9,0r0,-171r-21,0r0,-8r21,0v-2,-42,-3,-81,41,-81v22,0,34,6,45,16","w":145},"\ue1f9":{"d":"34,-179v-2,-40,1,-72,41,-72v17,0,28,5,38,11v11,-25,66,-20,80,-1r-6,7v-19,-21,-75,-22,-71,19r0,36r74,0r0,208v-1,28,-14,46,-46,44v-1,-5,0,-10,6,-8v23,-2,30,-14,31,-38r0,-198r-65,0r0,171r-9,0r0,-171r-64,0r0,171r-9,0r0,-171r-21,0r0,-8r21,0xm109,-231v-20,-18,-72,-17,-66,22r0,30r64,0v0,-18,-1,-37,2,-52","w":219},"\ufb00":{"d":"34,-179v-2,-42,-1,-77,41,-77v16,0,28,4,38,10v6,-15,25,-18,47,-17r0,8v-47,-7,-46,32,-44,76r44,0r0,7r-44,0r0,172r-9,0r0,-172r-64,0r0,172r-9,0r0,-172r-21,0r0,-7r21,0xm109,-237v-22,-17,-72,-16,-66,23r0,35r64,0v0,-20,-2,-41,2,-58","w":162},"\ufb01":{"d":"113,-237v-19,-22,-75,-22,-70,19r0,39r74,0r0,179r-10,0r0,-171r-64,0r0,171r-9,0r0,-171r-21,0r0,-8r21,0v-2,-42,-3,-81,41,-81v22,0,34,6,45,16","w":145},"\ufb02":{"d":"149,0v-27,0,-41,-7,-41,-35r0,-209v-26,-11,-65,-13,-65,26r0,40r44,0r0,7r-44,0r0,171r-9,0r0,-171r-21,0r0,-7r21,0v-2,-43,-3,-85,41,-82v16,1,29,3,42,10r0,212v0,24,9,28,32,29r0,9","w":155},"\ufb03":{"d":"34,-211v-5,-45,54,-48,79,-29v11,-25,66,-20,80,-1r-6,7v-19,-21,-75,-22,-71,19r0,36r74,0r0,179r-9,0r0,-171r-65,0r0,171r-9,0r0,-171r-64,0r0,171r-9,0r0,-171r-21,0r0,-8r21,0r0,-32xm109,-231v-21,-18,-71,-17,-66,22r0,30r64,0v0,-18,-1,-37,2,-52","w":219},"\ufb04":{"d":"34,-211v-5,-44,53,-48,78,-30v10,-25,55,-22,78,-9r0,212v1,23,9,28,32,29v-1,3,2,10,-3,9v-26,-1,-38,-9,-38,-35r0,-209v-26,-12,-65,-12,-65,26r0,39r45,0r0,8r-45,0r0,171r-9,0r0,-171r-64,0r0,171r-9,0r0,-171r-21,0r0,-8r21,0r0,-32xm108,-232v-20,-18,-71,-15,-65,23r0,30r64,0v1,-17,-1,-37,1,-53","w":228},"\ufb05":{"d":"156,0v-30,2,-49,-8,-49,-36r0,-136r-64,0r0,172r-9,0r0,-172r-21,0r0,-7r21,0v-3,-47,1,-88,52,-81r0,9v-45,-7,-45,30,-43,72r64,0r0,-48r10,0r0,48r36,0r0,7r-36,0r0,131v-1,26,12,35,39,33r0,8","w":162},"\"":{"d":"50,-251r8,0r0,63r-8,0r0,-63xm21,-251r7,0r0,63r-7,0r0,-63","w":75},"#":{"d":"111,-89r38,0r0,7r-38,0r-11,82r-8,0r11,-82r-58,0r-11,82r-8,0r12,-82r-36,0r0,-7r37,0r10,-74r-36,0r0,-7r37,0r11,-80r7,0r-11,80r58,0r12,-80r6,0r-11,80r38,0r0,7r-38,0xm46,-89r58,0r10,-74r-58,0","w":162},"$":{"d":"148,-63v0,-42,-29,-55,-65,-59r0,116v37,-2,64,-19,65,-57xm76,-244v-62,-4,-81,93,-20,107v7,2,14,4,20,5r0,-112xm127,-119v56,31,27,133,-44,122r0,41r-7,0r0,-41v-29,-1,-54,-11,-71,-24r6,-8v17,11,40,20,65,23r0,-117v-38,-5,-68,-21,-68,-64v0,-41,27,-64,68,-66r0,-26r7,0r0,26v22,0,42,6,60,17r-5,8v-16,-8,-34,-15,-55,-16r0,113v15,3,32,6,44,12","w":162},"&":{"d":"28,-58v1,-42,29,-65,57,-85v-38,-35,-50,-109,20,-111v26,0,39,4,53,17r-8,8v-22,-25,-90,-22,-87,23v1,22,14,39,27,55r78,101v8,-13,12,-33,13,-54r10,0v-3,24,-6,43,-16,62r33,42r-13,0r-26,-34v-28,48,-144,53,-141,-24xm37,-59v-3,69,100,63,125,18r-72,-94v-25,17,-51,37,-53,76","w":222},"'":{"d":"27,-251r7,0r0,63r-7,0r0,-63","w":59},"(":{"d":"37,-109v0,59,21,112,47,149r-3,2v-56,-53,-74,-191,-24,-267v7,-12,15,-22,23,-32r3,2v-25,39,-46,89,-46,146","w":89},")":{"d":"14,-256v57,54,72,195,21,269v-8,11,-13,22,-21,31r-3,-3v25,-38,46,-90,46,-149v0,-58,-21,-108,-46,-146","w":89},"*":{"d":"96,-162r-9,7r-26,-40r-25,40r-9,-7r28,-36r-44,-13r4,-11r43,18r-2,-46r10,0r-2,46r44,-18r4,11r-45,13","w":120},"+":{"d":"85,-23r-9,0r0,-71r-67,0r0,-9r67,0r0,-69r9,0r0,69r67,0r0,9r-67,0r0,71","w":162},",":{"d":"13,33r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0","w":48},"-":{"d":"19,-100r91,0r0,9r-91,0r0,-9","w":129,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},".":{"d":"18,0r0,-15r13,0r0,15r-13,0","w":46},"\/":{"d":"28,6r153,-263r9,0r-153,263r-9,0","w":248},"0":{"d":"145,-188v0,81,22,192,-64,190v-40,-2,-64,-24,-64,-65v0,-80,-23,-192,64,-189v40,1,64,24,64,64xm81,-6v78,0,53,-105,56,-179v1,-35,-22,-59,-56,-59v-78,0,-53,105,-56,179v-1,35,22,59,56,59","w":162},"1":{"d":"85,-240r-39,25r0,-11v17,-8,25,-23,48,-25r0,251r-9,0r0,-240","w":162,"k":{"\ue374":22,"\ue071":29,"\ue370":29,"\ue36c":22,"\ue36b":22,"\ue363":25,"\ue360":18,"\u00ba":29,"\u00aa":29,"\ue326":32,"\ue31e":25,"\ue07e":25,"\ue07d":29,"\ue070":29}},"2":{"d":"137,-192v4,-64,-99,-64,-109,-12r-9,-2v8,-27,31,-43,63,-46v59,-5,80,64,48,106r-104,137r119,0r0,9r-130,0r0,-9r114,-150v4,-10,7,-20,8,-33","w":162},"3":{"d":"148,-68v6,72,-110,97,-133,32r9,-2v18,54,120,35,115,-29v-3,-40,-24,-63,-70,-59r0,-8v41,2,62,-16,65,-54v4,-63,-93,-75,-108,-23r-9,-2v7,-23,31,-38,60,-40v75,-6,88,107,26,123v28,7,42,30,45,62","w":162},"4":{"d":"134,0r-9,0r0,-41r-115,0r0,-9r91,-201r11,0r-93,201r106,0r0,-79r9,0r0,79r23,0r0,9r-23,0r0,41","w":162},"5":{"d":"147,-99v4,60,-10,102,-67,101v-32,0,-51,-16,-60,-38r8,-3v8,20,26,34,53,34v50,-1,58,-40,58,-96v0,-63,-83,-70,-109,-30r-8,0r0,-120r119,0r0,9r-110,0r0,99v13,-13,29,-21,53,-22v44,0,61,25,63,66","w":162},"6":{"d":"46,-125v37,-28,103,-6,103,53v0,47,-23,72,-67,74v-55,2,-78,-63,-54,-110r72,-143r9,0xm141,-68v0,-39,-21,-63,-57,-63v-36,0,-57,26,-57,63v0,38,20,63,57,63v36,0,57,-26,57,-63","w":162},"7":{"d":"45,0r94,-242r-113,0r0,40r-9,0r0,-49r131,0r0,9r-93,242r-10,0","w":162},"8":{"d":"108,-129v28,8,46,31,46,63v0,41,-28,68,-70,68v-43,0,-71,-26,-71,-68v0,-32,18,-55,45,-63v-24,-9,-40,-28,-40,-58v0,-40,27,-63,66,-65v71,-5,88,105,24,123xm140,-188v0,-37,-23,-57,-56,-57v-34,0,-57,21,-57,57v0,34,22,55,57,55v34,0,55,-20,56,-55xm145,-67v0,-37,-24,-59,-61,-59v-37,0,-62,22,-62,59v0,37,24,62,62,62v38,0,61,-25,61,-62","w":162},"9":{"d":"122,-123v-46,28,-104,-2,-103,-58v1,-46,25,-71,68,-72v53,-1,78,62,54,110r-72,143r-9,0xm28,-182v0,38,20,62,57,62v36,0,55,-24,56,-62v1,-39,-20,-64,-56,-64v-37,0,-57,26,-57,64","w":162},":":{"d":"19,-118r0,-16r14,0r0,16r-14,0xm19,0r0,-15r14,0r0,15r-14,0","w":51},";":{"d":"14,33r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0xm19,-118r0,-16r14,0r0,16r-14,0","w":51},"<":{"d":"152,-155r-133,57r133,56r0,10r-143,-62r0,-9r143,-61r0,9","w":162},"=":{"d":"9,-127r143,0r0,8r-143,0r0,-8xm9,-67r143,0r0,9r-143,0r0,-9","w":162},">":{"d":"10,-164r143,61r0,9r-144,62r0,-10r134,-56r-133,-57r0,-9","w":162},"?":{"d":"77,-245v-32,0,-52,23,-57,51r-9,-2v9,-32,29,-55,67,-57v58,-4,79,69,43,108v-21,23,-46,42,-40,91r-9,0v-10,-74,52,-79,60,-136v-2,-33,-20,-55,-55,-55xm71,0r0,-15r14,0r0,15r-14,0","w":150},"@":{"d":"173,-148v5,-43,-59,-37,-80,-19r-4,-7v29,-19,90,-24,91,26r1,75v1,11,8,14,20,14v40,0,52,-39,52,-81v0,-69,-44,-107,-112,-107v-78,0,-120,48,-123,126v-5,106,106,153,198,114r4,7v-23,7,-44,14,-73,14v-86,-2,-136,-50,-136,-135v0,-82,48,-133,129,-133v73,0,119,40,121,114v1,51,-20,91,-66,87v-10,-2,-20,-5,-21,-16v-17,28,-96,29,-96,-17v0,-44,50,-39,95,-38r0,-24xm126,-57v23,0,46,-6,47,-29r0,-32v-38,1,-89,-9,-88,31v0,22,18,31,41,30","w":269},"A":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"B":{"d":"194,-66v2,79,-88,66,-165,66r0,-251v74,0,160,-12,159,63v0,32,-20,50,-44,59v31,6,49,28,50,63xm179,-188v1,-63,-76,-55,-141,-54r0,109v65,0,141,10,141,-55xm184,-67v1,-68,-78,-59,-146,-58r0,116r83,0v40,1,62,-22,63,-58","w":208},"C":{"d":"105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81","w":187},"D":{"d":"196,-130v0,80,-16,133,-92,130r-75,0r0,-251r80,0v69,0,87,46,87,121xm106,-9v78,4,80,-63,80,-142v0,-59,-24,-91,-80,-91r-67,0r0,233r67,0","w":216,"k":{"J":14}},"E":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"F":{"d":"39,-131r118,0r0,8r-118,0r0,123r-10,0r0,-251r148,0r0,9r-138,0r0,111","w":179,"k":{"\ue116":4,"\ue110":4,"\ue0fe":14,"i":2,"a":7,"A":14,",":36,"\ue17d":4,"\ue179":4,"\ue175":14,"\ue172":4,"\ue167":4,"\ue166":4,"\ue165":4,"\ue13c":14,"\ue13b":14,"\ue13a":14,"\ue138":4,"\ue122":14,"\ue121":14,"\ue120":14,"\ue11f":14,"\ue11e":14,"\ue11d":14,"\ue11c":14,"\ue11b":4,"\ue118":4,"\u012d":-13,"\u012b":-16,"\u0129":-13,"\u01fd":7,"\u01fc":14,"\u0159":-5,"\u0157":2,"\u0155":2,"\u014b":2,"\u0149":-13,"\u0148":2,"\u0146":2,"\u0144":2,"\u0134":36,"\u0133":2,"\u012f":2,"\u0105":7,"\u0104":14,"\u0103":7,"\u0102":14,"\u0101":7,"\u0100":14,"\u00e5":7,"\u00ed":2,"\u00ec":-5,"\u00e3":7,"\u00e1":7,"\u00c5":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00e6":7,"\u00c6":14,"\u2026":36,"\u00ef":-16,"\u00ee":-13,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00c4":14,"r":2,"p":2,"n":2,"m":2,"J":36,".":36}},"G":{"d":"18,-87v-4,-87,0,-165,86,-165v37,0,63,19,75,44r-8,4v-12,-22,-33,-40,-67,-40v-81,0,-78,77,-76,158v1,50,26,81,76,81v57,0,81,-44,76,-109r-59,0r0,-9r68,0v5,74,-17,126,-85,126v-56,0,-84,-35,-86,-90","w":208},"H":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":222},"I":{"d":"31,-251r9,0r0,251r-9,0r0,-251","w":71},"J":{"d":"132,-68v6,65,-71,88,-117,54r6,-8v40,32,102,12,102,-53r0,-176r9,0r0,183","w":158},"K":{"d":"106,-149r-68,84r0,65r-9,0r0,-251r9,0r0,172r140,-172r10,0r-76,95r92,156r-10,0","w":216,"k":{"v":7,"w":7,"y":7,"\u0175":7,"\u1e81":7,"\u1e83":7,"\u1e85":7,"\u1ef3":7,"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":4,"\ue114":4,"\ue171":4,"\ue17a":4,"\ue17b":4,"\ue17c":4,"\ue116":11,"\ue11b":11,"\ue138":11,"\ue172":11,"\ue17d":11}},"L":{"d":"29,-251r9,0r0,242r139,0r0,9r-148,0r0,-251","w":187,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u201d":25,"\u2019":25}},"M":{"d":"231,-230r-93,190r-7,0r-94,-190r0,230r-9,0r0,-251r11,0r96,197r96,-197r9,0r0,251r-9,0r0,-230","w":265},"N":{"d":"39,-235r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,251r-10,0","w":236},"O":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"P":{"d":"193,-179v-2,42,-27,67,-72,68r-82,0r0,111r-9,0r0,-251v79,-1,167,-11,163,72xm183,-180v0,-70,-74,-64,-144,-62r0,122v69,1,144,9,144,-60","w":196,"k":{"\ue0fe":18,"A":14,",":40,"\ue175":18,"\ue13c":18,"\ue13b":18,"\ue13a":18,"\ue122":18,"\ue121":18,"\ue120":18,"\ue11f":18,"\ue11e":18,"\ue11d":18,"\ue11c":18,"\u01fc":14,"\u0104":14,"\u0102":14,"\u0100":14,"\u00c5":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00c6":14,"\u2026":40,"\u00c4":14,".":40}},"Q":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,89,78,84,165v-1,21,-5,38,-13,52r37,30v-15,12,-27,-17,-42,-23v-13,19,-35,31,-66,31v-57,-1,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-75,77,-75,157v0,77,92,105,133,52r-37,-30r5,-7r36,30v7,-13,12,-29,12,-47","w":208,"k":{"J":14}},"R":{"d":"194,-188v0,42,-26,64,-64,68r61,120r-12,0r-60,-119r-80,0r0,119r-9,0r0,-251v75,0,165,-13,164,63xm184,-188v-1,-65,-79,-53,-145,-54r0,114v68,0,147,10,145,-60","w":208},"S":{"d":"178,-63v0,75,-119,79,-167,42r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,145,25,145,123","w":188},"T":{"d":"91,0r-9,0r0,-242r-78,0r0,-9r163,0r0,9r-76,0r0,242","w":170,"k":{"\ue117":25,"\u012d":2,"\u012b":2,"\u0129":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f5":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"U":{"d":"192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"V":{"d":"89,0r-83,-251r9,0r79,239r78,-239r9,0r-82,251r-10,0","w":187,"k":{"\u012d":7,"\u012b":7,"\u0129":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e3":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"W":{"d":"221,0r-10,0r-66,-234r-66,234r-10,0r-60,-251r9,0r57,238r66,-238r9,0r66,238r57,-238r9,0","w":288,"k":{"\u012d":7,"\u012b":7,"\u0129":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e3":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"X":{"d":"88,-120r-71,120r-11,0r77,-129r-71,-122r10,0r66,113r66,-113r10,0r-71,122r77,129r-11,0","w":176},"Y":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\u012d":11,"\u012b":11,"\u0129":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u0169":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14}},"Z":{"d":"12,-9r138,-233r-132,0r0,-9r143,0r0,9r-139,233r139,0r0,9r-149,0r0,-9","w":172},"[":{"d":"28,-251r46,0r0,9r-36,0r0,274r36,0r0,8r-46,0r0,-291","w":79},"\\":{"d":"89,15r-91,-276r8,0r90,276r-7,0","w":100},"]":{"d":"14,32r36,0r0,-274r-36,0r0,-9r46,0r0,291r-46,0r0,-8","w":79},"^":{"d":"130,-121r-50,-118r-50,118r-10,0r56,-128r9,0r55,128r-10,0","w":162},"_":{"d":"0,25r176,0r0,10r-176,0r0,-10","w":176},"`":{"d":"112,-205r-36,-48r12,-6r29,51","w":171},"a":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43","w":167},"b":{"d":"150,-90v0,53,-17,93,-67,93v-31,0,-48,-15,-59,-39r0,36r-9,0r0,-260r9,0r0,120v10,-22,25,-41,58,-40v51,1,68,37,68,90xm141,-89v0,-46,-13,-84,-59,-84v-45,0,-58,38,-58,85v0,44,13,83,58,83v47,0,59,-39,59,-84","w":162},"c":{"d":"20,-89v-8,69,65,107,113,68r6,6v-13,9,-28,18,-49,18v-53,0,-75,-36,-79,-92v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68","w":145},"d":{"d":"78,-180v34,-1,48,18,59,38r0,-118r8,0r0,260r-8,0v-1,-12,2,-27,-1,-37v-10,25,-29,40,-61,40v-51,0,-65,-41,-65,-93v1,-51,17,-89,68,-90xm77,-5v47,0,60,-40,60,-83v0,-46,-13,-83,-58,-84v-49,-1,-60,39,-60,83v0,45,11,84,58,84","w":162},"e":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0","w":167,"k":{"\u201d":7,"\u2019":7}},"f":{"d":"86,-251v-45,-7,-45,30,-43,72r43,0r0,7r-43,0r0,172r-9,0r0,-172r-21,0r0,-7r21,0v-3,-47,1,-88,52,-81r0,9","w":88,"k":{"\u2019":-7,"\u201d":-7}},"g":{"d":"86,-180v33,-1,46,16,59,37r0,-36r8,0r0,178v6,66,-69,92,-118,60r5,-7v37,30,111,8,105,-48v-1,-14,2,-31,-1,-43v-10,23,-26,41,-59,41v-52,0,-66,-40,-67,-91v0,-52,17,-90,68,-91xm87,-6v46,0,58,-40,58,-85v0,-42,-13,-81,-58,-81v-47,0,-60,37,-60,83v0,46,13,83,60,83","w":176},"h":{"d":"95,-180v88,-5,59,102,64,180r-9,0v-5,-71,23,-175,-55,-172v-37,2,-62,25,-62,63r0,109r-9,0r0,-260r9,0r1,117v10,-22,31,-35,61,-37","w":183},"i":{"d":"27,-251r12,0r0,12r-12,0r0,-12xm29,0r0,-179r9,0r0,179r-9,0","w":66},"j":{"d":"33,-251r12,0r0,11r-12,0r0,-11xm44,29v-1,29,-15,46,-47,44v-1,-5,0,-10,6,-8v23,-2,31,-13,31,-38r0,-205r10,0r0,207","w":74},"k":{"d":"86,-108r-51,59r0,49r-9,0r0,-260r9,0r0,198r103,-117r11,0r-57,65r74,114r-10,0","w":167,"k":{"\u01a1":4,"\u01ff":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0123":4,"\u0121":4,"\u011f":4,"\u011d":4,"\u011b":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u0111":4,"\u010f":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f3":4,"\u00f2":4,"\u00f8":4,"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"l":{"d":"67,0v-27,0,-40,-8,-41,-35r0,-225r9,0r0,222v1,23,9,28,32,29r0,9","w":74},"m":{"d":"217,-180v37,-1,62,23,62,60r0,120r-9,0v-4,-71,23,-172,-54,-172v-79,0,-59,97,-61,172r-9,0v-5,-71,23,-172,-55,-172v-79,0,-57,98,-60,172r-8,0r0,-179r8,0v1,11,-2,25,1,34v9,-22,30,-35,59,-35v33,0,53,16,61,41v10,-25,31,-41,65,-41","w":302},"n":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37","w":180,"k":{"\u201d":7,"\u2019":7}},"o":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83","w":171,"k":{"v":7,"\u1ef3":7,"\u1e85":7,"\u1e83":7,"\u1e81":7,"\u0175":7,"y":7,"w":7}},"p":{"d":"88,1v-32,1,-46,-17,-58,-37r0,108r-9,0r0,-251r9,0v1,11,-2,27,1,36v11,-23,27,-38,59,-38v53,0,67,40,67,93v0,49,-17,89,-69,89xm90,-174v-81,-1,-81,168,-2,168v47,0,60,-39,60,-84v0,-46,-12,-83,-58,-84","w":176},"q":{"d":"85,-181v32,0,48,16,58,40r0,-38r9,0r0,251r-9,0r-1,-112v-9,24,-25,42,-59,41v-51,0,-67,-39,-67,-89v0,-51,15,-93,69,-93xm84,-6v79,-1,80,-168,1,-168v-46,0,-60,38,-60,84v0,44,13,84,59,84","w":176},"r":{"d":"117,-168v-42,-15,-82,12,-82,58r0,110r-9,0r0,-179r9,0v1,11,-2,26,1,35v10,-29,45,-43,83,-33","w":117,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e3":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11}},"s":{"d":"28,-132v6,58,119,16,117,86v-2,60,-100,59,-136,29r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26","w":158},"t":{"d":"42,-41v1,24,12,36,40,33r0,8v-30,2,-49,-8,-49,-36r0,-135r-26,0r0,-8r26,0r0,-48r9,0r0,48r36,0r0,8r-36,0r0,130","w":90},"u":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173","w":186},"v":{"d":"81,0r-9,0r-66,-178r10,0r61,166r60,-166r10,0","w":153,"k":{"e":7}},"w":{"d":"192,0r-10,0r-57,-163r-57,163r-10,0r-55,-178r10,0r51,166r56,-166r10,0r57,166r50,-166r10,0","w":250,"k":{"e":7}},"x":{"d":"131,0r-54,-86r-54,86r-10,0r58,-91r-55,-87r10,0r51,80r50,-80r12,0r-57,87r60,91r-11,0","w":154},"y":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0","w":147,"k":{"e":7}},"z":{"d":"13,-7r113,-164r-108,0r0,-7r118,0r0,7r-113,163r113,0r0,8r-123,0r0,-7","w":149},"{":{"d":"37,4v0,-43,11,-98,-24,-107r0,-5v33,-11,25,-64,25,-107v0,-25,11,-40,39,-36v2,8,-5,6,-11,6v-48,8,4,119,-44,139v32,12,21,71,23,116v1,17,10,27,32,24v2,9,-7,6,-13,6v-18,0,-27,-17,-27,-36","w":79},"|":{"d":"26,-258r7,0r0,316r-7,0r0,-316","w":57},"}":{"d":"77,-103v-35,9,-24,65,-24,107v0,25,-12,40,-40,36v-2,-8,5,-6,11,-6v50,-7,-7,-121,44,-140v-29,-14,-22,-71,-23,-115v-1,-17,-11,-27,-32,-24v-2,-9,7,-6,13,-6v57,4,-3,123,51,143r0,5","w":79},"~":{"d":"141,-102v-21,49,-88,-20,-114,20r-8,-5v9,-11,20,-20,38,-20v27,0,59,30,76,0","w":162},"\u00c4":{"d":"129,-284r13,0r0,13r-13,0r0,-13xm64,-284r14,0r0,13r-14,0r0,-13xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"\u00c7":{"d":"105,-5v36,0,56,-20,68,-45r8,3v-12,26,-38,49,-74,50r-5,14v19,2,32,8,33,26v1,24,-34,29,-56,20v3,-15,46,9,46,-21v0,-15,-19,-17,-32,-20r6,-20v-82,0,-80,-81,-80,-167v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81","w":187},"\u00c9":{"d":"83,-265r47,-37r8,10r-51,31xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u00d6":{"d":"126,-284r13,0r0,13r-13,0r0,-13xm62,-284r13,0r0,13r-13,0r0,-13xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u00dc":{"d":"134,-284r14,0r0,13r-14,0r0,-13xm70,-284r14,0r0,13r-14,0r0,-13xm192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"\u0385":{"d":"63,-208r30,-51r11,6r-36,48xm106,-234r14,0r0,13r-14,0r0,-13xm45,-234r14,0r0,13r-14,0r0,-13","w":171},"\u00e0":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm94,-205r-36,-48r12,-6r29,51","w":167},"\u00e2":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm85,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":167},"\u00e4":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm116,-234r14,0r0,13r-14,0r0,-13xm46,-234r14,0r0,13r-14,0r0,-13","w":167},"\u0384":{"d":"76,-208r30,-51r11,6r-35,48","w":171},"\u00a8":{"d":"116,-234r14,0r0,13r-14,0r0,-13xm46,-234r14,0r0,13r-14,0r0,-13","w":171},"\u00e7":{"d":"20,-89v-8,69,65,107,113,68r6,6v-14,10,-28,18,-50,18r-5,14v19,2,32,8,33,26v1,24,-34,29,-56,20v3,-15,46,9,46,-21v0,-15,-19,-17,-32,-20r6,-20v-48,-5,-66,-38,-70,-91v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68","w":145},"\u00e9":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm76,-208r30,-51r11,6r-35,48","w":167,"k":{"\u201d":7,"\u2019":7}},"\u00e8":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm95,-205r-35,-48r11,-6r30,51","w":167,"k":{"\u201d":7,"\u2019":7}},"\u00ea":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm85,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":167,"k":{"\u201d":7,"\u2019":7}},"\u00eb":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm116,-234r14,0r0,13r-14,0r0,-13xm46,-234r14,0r0,13r-14,0r0,-13","w":167,"k":{"\u201d":7,"\u2019":7}},"\u00a3":{"d":"49,-111v-1,44,-8,76,-30,102r133,0r0,9r-141,0v2,-23,18,-33,23,-53v4,-16,7,-36,7,-58r-31,0r0,-6r30,0v-2,-29,-17,-46,-19,-76v-4,-67,96,-75,123,-29r-7,4v-25,-41,-110,-36,-107,25v1,31,16,46,19,76r52,0r0,6r-52,0","w":162},"\u2122":{"d":"246,-234r-52,98r-5,0r-52,-98r0,119r-8,0r0,-135r8,0r55,105r54,-105r7,0r0,135r-7,0r0,-119xm65,-115r-8,0r0,-127r-42,0r0,-9r93,0r0,9r-43,0r0,127","w":283},"\u00ee":{"d":"37,0r0,-179r9,0r0,179r-9,0xm41,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":82},"\u00ef":{"d":"32,0r0,-179r9,0r0,179r-9,0xm64,-234r14,0r0,13r-14,0r0,-13xm-5,-234r13,0r0,13r-13,0r0,-13","w":72},"\u2022":{"d":"86,-94v0,13,-13,26,-26,26v-13,0,-26,-13,-26,-26v0,-14,12,-27,26,-27v14,0,26,13,26,27","w":118},"\u00f4":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm86,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":171},"\u00f6":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm114,-234r13,0r0,13r-13,0r0,-13xm44,-234r14,0r0,13r-14,0r0,-13","w":171},"\u00f5":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm113,-213v-24,0,-52,-28,-67,-1r-7,-4v21,-48,73,19,93,-19r7,4v-7,11,-11,20,-26,20","w":171},"\u00ad":{"d":"19,-100r91,0r0,9r-91,0r0,-9","w":129,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u00f9":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm101,-205r-35,-48r11,-6r30,51","w":186},"\u00fb":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm93,-234r-44,33r-4,-5r44,-39r10,0r42,39r-4,5","w":186},"\u00fc":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm120,-234r14,0r0,13r-14,0r0,-13xm50,-234r14,0r0,13r-14,0r0,-13","w":186},"\u2020":{"d":"84,71r-11,0r0,-223r-65,0r0,-10r65,0r0,-89r11,0r0,89r65,0r0,10r-65,0r0,223","w":157},"\u0393":{"d":"39,0r-10,0r0,-251r148,0r0,9r-138,0r0,242","w":179,"k":{"\ue196":40,"\ue18a":40,"\ue183":54,"\u03af":22,"\u03ae":43,"\u03ad":43,"\u03ac":47,"\u0394":40,",":50,"\u1fc7":22,"\u1fc6":22,"\ue1a3":40,"\ue1a1":40,"\ue1a0":40,"\ue19f":40,"\ue19b":54,"\ue19a":40,"\ue193":43,"\ue191":40,"\ue18d":54,"\ue18c":43,"\ue187":43,"\ue186":54,"\ue185":43,"\ue184":43,"\ue264":40,"\u1fb9":40,"\u1fb8":40,"\u1fd7":40,"\u1fd6":-29,"\u1fd3":40,"\u1fd2":40,"\u1fd1":-14,"\u1fd0":-18,"\u1ff7":47,"\u1ff6":47,"\u1ff4":47,"\u1ff3":47,"\u1ff2":47,"\u1fe7":54,"\u1fe6":25,"\u1fe3":54,"\u1fe2":54,"\u1fe1":36,"\u1fe0":54,"\u1fc4":43,"\u1fc3":43,"\u1fc2":36,"\u1fbc":40,"\u1fb7":47,"\u1fb6":47,"\u1fb4":47,"\u1fb3":47,"\u1fb2":32,"\u1fb1":36,"\u1fb0":47,"\u1fa7":47,"\u1fa6":47,"\u1fa5":47,"\u1fa4":47,"\u1fa3":47,"\u1fa2":47,"\u1fa1":47,"\u1fa0":47,"\u1f97":43,"\u1f96":43,"\u1f95":43,"\u1f94":43,"\u1f93":43,"\u1f92":43,"\u1f91":43,"\u1f90":43,"\u1f87":47,"\u1f86":47,"\u1f85":47,"\u1f84":47,"\u1f83":47,"\u1f82":47,"\u1f81":47,"\u1f80":47,"\u1f7d":47,"\u1f7c":47,"\u1f7b":54,"\u1f7a":40,"\u1f79":47,"\u1f78":40,"\u1f77":22,"\u1f76":-4,"\u1f75":43,"\u1f74":43,"\u1f73":43,"\u1f72":36,"\u1f71":47,"\u1f70":40,"\u1f67":47,"\u1f66":47,"\u1f65":47,"\u1f64":47,"\u1f63":47,"\u1f62":47,"\u1f61":47,"\u1f60":47,"\u1f57":54,"\u1f56":54,"\u1f55":54,"\u1f54":54,"\u1f53":54,"\u1f52":54,"\u1f51":54,"\u1f50":54,"\u1f45":47,"\u1f44":47,"\u1f43":47,"\u1f42":47,"\u1f41":47,"\u1f40":47,"\u1f37":40,"\u1f36":40,"\u1f35":40,"\u1f34":40,"\u1f33":40,"\u1f32":40,"\u1f31":40,"\u1f30":40,"\u1f27":43,"\u1f26":43,"\u1f25":43,"\u1f24":43,"\u1f23":43,"\u1f22":43,"\u1f21":43,"\u1f20":43,"\u1f15":43,"\u1f14":43,"\u1f13":43,"\u1f12":43,"\u1f11":43,"\u1f10":43,"\u1f07":47,"\u1f06":47,"\u1f05":47,"\u1f04":47,"\u1f03":47,"\u1f02":47,"\u1f01":47,"\u1f00":47,"\u03b0":22,"\u0390":40,"\u03cb":36,"\u03ca":-22,"\u03c5":54,"\u03c7":54,"\u03c9":47,"\u03c3":47,"\u03c1":54,"\u03ce":47,"\u03bf":47,"\u03bd":47,"\u00b5":43,"\u03bb":14,"\u03ba":43,"\u03b9":40,"\u03b7":43,"\u03c6":47,"\u03b5":43,"\u03b4":11,"\u03b1":47,"\u03cd":54,"\u03cc":47,"\u2026":50,"\u039f":4,"\u03a9":4,"\u0391":40,"\u039b":40,"\u0398":4,".":50}},"\u0394":{"d":"98,-251r13,0r91,251r-196,0xm21,-9r167,0r-84,-232","w":208,"k":{"\u03a4":14}},"\u2206":{"d":"98,-251r13,0r91,251r-196,0xm21,-9r167,0r-84,-232","w":208,"k":{"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u0398":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-77,77,-75,157v1,50,26,80,75,80v49,0,72,-33,74,-82xm44,-132r113,0r0,8r-113,0r0,-8","w":201},"\u039b":{"d":"190,0r-86,-241r-87,241r-11,0r92,-251r13,0r91,251r-12,0","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u039e":{"d":"21,-251r153,0r0,9r-153,0r0,-9xm42,-131r111,0r0,8r-111,0r0,-8xm21,-9r153,0r0,9r-153,0r0,-9","w":196},"\u03a0":{"d":"185,-242r-147,0r0,242r-9,0r0,-251r165,0r0,251r-9,0r0,-242","w":222},"\u00df":{"d":"123,-150v61,19,54,165,-32,150r0,-8v47,2,62,-29,63,-74v0,-38,-19,-62,-56,-63v0,-3,-2,-8,3,-7v27,-2,43,-22,43,-49v0,-32,-20,-51,-53,-51v-37,0,-54,25,-55,61r0,191r-9,0r0,-192v1,-43,22,-65,65,-68v66,-5,81,87,31,110","w":181},"\u00ae":{"d":"171,-177v0,45,-28,76,-73,76v-44,0,-72,-31,-72,-76v0,-44,26,-76,72,-76v47,0,73,31,73,76xm163,-177v0,-42,-25,-71,-65,-71v-40,0,-65,29,-65,71v0,41,24,70,65,70v41,0,65,-29,65,-70xm133,-198v0,13,-9,22,-21,24r21,41r-7,0r-22,-41r-25,0r0,41r-7,0r0,-88v28,0,62,-5,61,23xm126,-198v0,-21,-26,-17,-47,-17r0,35v22,0,47,4,47,-18","w":194},"\u00a9":{"d":"98,-99v-5,47,67,60,81,21r8,3v-7,17,-22,29,-46,29v-51,0,-52,-45,-52,-98v0,-54,75,-71,97,-27r-7,5v-14,-36,-87,-27,-81,22r0,45xm262,-123v0,77,-47,127,-122,127v-75,0,-122,-50,-122,-127v0,-77,47,-127,122,-127v75,0,122,50,122,127xm253,-123v0,-70,-43,-119,-113,-119v-71,0,-113,50,-113,119v0,70,42,119,113,119v70,0,113,-49,113,-119","w":276},"\u03a3":{"d":"23,-242r71,112r-72,121r139,0r0,9r-149,0r0,-9r71,-121r-70,-112r0,-9r144,0r0,9r-134,0","w":170,"k":{"\u03bd":11,"\u03b3":14}},"\u03aa":{"d":"61,-284r14,0r0,13r-14,0r0,-13xm-3,-284r14,0r0,13r-14,0r0,-13xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u00a7":{"d":"122,-59v41,44,-15,113,-78,82v-10,-5,-33,-12,-19,-21v32,35,128,17,98,-44v-20,-42,-106,-26,-106,-87v0,-18,11,-30,23,-39v-32,-25,-14,-85,36,-85v23,0,40,6,53,17r-6,8v-33,-34,-116,-9,-86,42v23,39,103,24,105,86v0,20,-8,31,-20,41xm115,-64v31,-18,16,-74,-15,-78v-18,-6,-38,-14,-52,-23v-22,11,-31,54,-4,68v23,12,49,21,71,33","w":157},"\u00b0":{"d":"63,-251v47,-4,55,66,17,80v-29,11,-61,-8,-59,-39v1,-24,17,-39,42,-41xm97,-210v-2,-20,-14,-32,-34,-34v-19,-1,-33,15,-33,34v0,19,13,36,33,35v19,0,35,-14,34,-35","w":126},"\u00b7":{"d":"19,-87r0,-15r13,0r0,15r-13,0","w":51},"\u0391":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u00b1":{"d":"9,-9r144,0r0,9r-144,0r0,-9xm85,-23r-9,0r0,-71r-67,0r0,-9r67,0r0,-69r9,0r0,69r67,0r0,9r-67,0r0,71","w":162},"\u00a5":{"d":"151,-77r-65,0r0,77r-9,0r0,-77r-65,0r0,-8r65,0v0,-11,0,-22,-5,-28r-60,0r0,-8r56,0r-66,-130r10,0r69,138r70,-138r9,0r-65,130r56,0r0,8r-61,0v-4,6,-4,17,-4,28r65,0r0,8","w":162},"\u0392":{"d":"194,-66v2,79,-88,66,-165,66r0,-251v74,0,160,-12,159,63v0,32,-20,50,-44,59v31,6,49,28,50,63xm179,-188v1,-63,-76,-55,-141,-54r0,109v65,0,141,10,141,-55xm184,-67v1,-68,-78,-59,-146,-58r0,116r83,0v40,1,62,-22,63,-58","w":208},"\u0395":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u0396":{"d":"12,-9r138,-233r-132,0r0,-9r143,0r0,9r-139,233r139,0r0,9r-149,0r0,-9","w":172},"\u0397":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":222},"\u0399":{"d":"31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u039a":{"d":"106,-149r-68,84r0,65r-9,0r0,-251r9,0r0,172r140,-172r10,0r-76,95r92,156r-10,0","w":216,"k":{"\u03c4":11,"\u03bd":11,"\u03b3":11}},"\u039c":{"d":"231,-230r-93,190r-7,0r-94,-190r0,230r-9,0r0,-251r11,0r96,197r96,-197r9,0r0,251r-9,0r0,-230","w":265},"\u03a6":{"d":"135,-239v71,2,111,40,111,110v0,70,-45,104,-111,108r0,21r-9,0r0,-22v-69,-3,-109,-36,-109,-107v0,-68,37,-108,109,-109r0,-13r9,0r0,12xm135,-30v113,15,136,-166,39,-194v-12,-4,-26,-6,-39,-6r0,200xm126,-230v-63,3,-100,37,-100,102v0,63,35,97,100,98r0,-200","w":260},"\u03ab":{"d":"108,-284r13,0r0,13r-13,0r0,-13xm44,-284r13,0r0,13r-13,0r0,-13xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03a8":{"d":"232,-142v-1,60,-41,84,-99,88r0,54r-9,0r0,-54v-60,-2,-99,-33,-99,-92r0,-105r9,0v-1,90,-14,190,90,188r0,-188r9,0r0,187v52,-1,90,-25,89,-78r0,-109r10,0r0,109","w":257,"k":{",":22,"\u2026":22,".":22}},"\u03a9":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0","w":201},"\u03ac":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm80,-208r29,-51r12,6r-36,48","w":179},"\u039d":{"d":"39,-235r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,251r-10,0","w":236},"\u039f":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201},"\u03a1":{"d":"193,-179v-2,42,-27,67,-72,68r-82,0r0,111r-9,0r0,-251v79,-1,167,-11,163,72xm183,-180v0,-70,-74,-64,-144,-62r0,122v69,1,144,9,144,-60","w":196,"k":{",":36,".":36,"\u2026":36,"\u2206":18,"\u039b":18,"\u0391":18,"\u1fbc":18,"\u1fb8":18,"\u1fb9":18,"\ue264":18,"\ue183":25,"\ue186":25,"\ue18d":25,"\ue19b":25}},"\u03a4":{"d":"91,0r-9,0r0,-242r-78,0r0,-9r163,0r0,9r-76,0r0,242","w":170,"k":{"\ue196":22,"\ue18a":22,"\ue183":22,"\u03af":29,"\u03ae":22,"\u03ad":25,"\u03ac":29,"\u0394":7,",":14,"\u1fc7":14,"\u1fc6":14,"\ue1a3":22,"\ue1a1":18,"\ue1a0":22,"\ue19f":22,"\ue19b":22,"\ue19a":18,"\ue194":14,"\ue193":29,"\ue191":22,"\ue18d":22,"\ue18c":29,"\ue188":14,"\ue187":29,"\ue186":22,"\ue185":29,"\ue184":29,"\ue264":7,"\u1fb9":7,"\u1fb8":7,"\u1fd7":29,"\u1fd6":29,"\u1fd3":29,"\u1fd2":29,"\u1fd1":29,"\u1fd0":29,"\u1ff7":29,"\u1ff6":29,"\u1ff4":29,"\u1ff3":29,"\u1ff2":29,"\u1fe7":32,"\u1fe6":22,"\u1fe3":32,"\u1fe2":32,"\u1fe1":29,"\u1fe0":32,"\u1fc4":22,"\u1fc3":22,"\u1fc2":22,"\u1fbc":7,"\u1fb7":29,"\u1fb6":22,"\u1fb4":29,"\u1fb3":29,"\u1fb2":29,"\u1fb1":29,"\u1fb0":29,"\u1fa7":29,"\u1fa6":29,"\u1fa5":29,"\u1fa4":29,"\u1fa3":29,"\u1fa2":29,"\u1fa1":29,"\u1fa0":29,"\u1f97":22,"\u1f96":22,"\u1f95":22,"\u1f94":22,"\u1f93":22,"\u1f92":22,"\u1f91":22,"\u1f90":22,"\u1f87":29,"\u1f86":29,"\u1f85":29,"\u1f84":29,"\u1f83":29,"\u1f82":29,"\u1f81":29,"\u1f80":29,"\u1f7d":29,"\u1f7c":29,"\u1f7b":32,"\u1f7a":25,"\u1f79":29,"\u1f78":29,"\u1f77":29,"\u1f76":29,"\u1f75":22,"\u1f74":22,"\u1f73":25,"\u1f72":22,"\u1f71":29,"\u1f70":29,"\u1f67":29,"\u1f66":29,"\u1f65":29,"\u1f64":29,"\u1f63":29,"\u1f62":29,"\u1f61":29,"\u1f60":29,"\u1f57":32,"\u1f56":32,"\u1f55":32,"\u1f54":32,"\u1f53":32,"\u1f52":32,"\u1f51":32,"\u1f50":32,"\u1f45":29,"\u1f44":29,"\u1f43":29,"\u1f42":29,"\u1f41":29,"\u1f40":29,"\u1f37":29,"\u1f36":29,"\u1f35":29,"\u1f34":29,"\u1f33":29,"\u1f32":29,"\u1f31":29,"\u1f30":29,"\u1f27":22,"\u1f26":22,"\u1f25":22,"\u1f24":22,"\u1f23":22,"\u1f22":22,"\u1f21":22,"\u1f20":22,"\u1f15":25,"\u1f14":25,"\u1f13":25,"\u1f12":25,"\u1f11":25,"\u1f10":25,"\u1f07":29,"\u1f06":29,"\u1f05":29,"\u1f04":29,"\u1f03":29,"\u1f02":29,"\u1f01":29,"\u1f00":29,"\u03b0":18,"\u0390":29,"\u03cb":29,"\u03ca":29,"\u03b6":7,"\u03c5":32,"\u03c9":29,"\u03c3":29,"\u03c1":29,"\u03ce":29,"\u03bf":29,"\u00b5":22,"\u03bb":7,"\u03ba":22,"\u03b9":29,"\u03b7":22,"\u03c6":29,"\u03b5":25,"\u03b4":11,"\u03b1":29,"\u03cd":32,"\u03cc":29,"\u2026":14,"\u039f":7,"\u03a9":4,"\u0391":7,"\u039b":7,"\u0398":7,".":14}},"\u00ab":{"d":"66,-17r-40,-59r40,-60r10,0r-40,60r40,59r-10,0xm108,-17r-40,-59r40,-60r10,0r-40,60r40,59r-10,0","w":137},"\u00bb":{"d":"68,-17r40,-59r-40,-60r10,0r40,60r-40,59r-10,0xm26,-17r40,-59r-40,-60r10,0r40,60r-40,59r-10,0","w":137},"\u2026":{"d":"18,0r0,-15r13,0r0,15r-13,0xm75,0r0,-15r14,0r0,15r-14,0xm133,0r0,-15r14,0r0,15r-14,0","w":165},"\u03a5":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03a7":{"d":"88,-120r-71,120r-11,0r77,-129r-71,-122r10,0r66,113r66,-113r10,0r-71,122r77,129r-11,0","w":176},"\u0386":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm0,-208r29,-51r12,6r-36,48","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u0388":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm-31,-208r30,-51r11,6r-36,48","w":187},"\u0153":{"d":"220,-180v53,0,69,37,69,90r-132,0v0,50,17,84,67,85v18,1,34,-7,44,-14r6,7v-43,30,-114,12,-121,-39v-8,33,-30,53,-68,53v-54,-1,-70,-36,-70,-92v0,-55,19,-89,72,-90v39,0,59,21,67,53v8,-32,28,-53,66,-53xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm280,-98v6,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0","w":298},"\u2013":{"d":"7,-99r162,0r0,9r-162,0r0,-9","w":176,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u2015":{"d":"7,-99r342,0r0,9r-342,0r0,-9","w":356},"\u201c":{"d":"35,-256r-8,34v8,-1,3,10,4,15r-14,0v-2,-22,7,-33,12,-49r6,0xm64,-256r-9,34v8,-1,3,10,4,15r-14,0v-2,-23,8,-33,13,-49r6,0","w":80},"\u201d":{"d":"45,-207r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0xm17,-207r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0","w":80,"k":{"t":7,"n":7,"a":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e6":18,"\u00e1":18,"\u00e3":18,"\u00e5":18,"\u0101":18,"\u0103":18,"\u0105":18,"\u01fd":18,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22}},"\u2018":{"d":"42,-256r-8,34v8,-1,3,10,4,15r-14,0v-2,-22,7,-33,12,-49r6,0","w":62},"\u2019":{"d":"24,-207r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0","w":62,"k":{"t":7,"n":7,"a":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e6":18,"\u00e1":18,"\u00e3":18,"\u00e5":18,"\u0101":18,"\u0103":18,"\u0105":18,"\u01fd":18,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22}},"\u00f7":{"d":"92,-157v0,6,-4,11,-10,11v-6,0,-11,-5,-11,-11v0,-6,5,-10,11,-10v5,0,10,5,10,10xm92,-39v0,6,-4,11,-10,11v-6,0,-11,-5,-11,-11v0,-12,21,-13,21,0xm9,-94r0,-9r143,0r0,9r-143,0","w":162},"\u0389":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-30,-208r29,-51r12,6r-36,48","w":222},"\u038a":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-33,-208r30,-51r11,6r-35,48","w":71},"\u038c":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm-33,-208r30,-51r11,6r-35,48","w":201},"\u038e":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104xm-45,-208r29,-51r12,6r-36,48","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03ad":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm73,-208r29,-51r12,6r-36,48","w":151},"\u03ae":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm69,-208r30,-51r11,6r-35,48","w":180},"\u03af":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm25,-208r30,-51r11,6r-35,48","w":70},"\u03cc":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm76,-208r30,-51r11,6r-35,48","w":171},"\u038f":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-33,-208r29,-51r12,6r-36,48","w":201},"\u03cd":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm77,-208r30,-51r11,6r-35,48","w":186},"\u03b1":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84","w":179},"\u03b2":{"d":"118,-150v29,8,43,33,43,68v1,49,-22,85,-67,85v-31,0,-49,-18,-60,-41r0,87r-8,0r0,-239v0,-44,22,-67,64,-70v63,-5,76,90,28,110xm152,-81v0,-48,-27,-70,-81,-64r0,-7v42,4,68,-11,68,-49v0,-31,-16,-51,-49,-51v-78,0,-56,101,-56,174v0,39,20,73,60,73v42,0,57,-34,58,-76","w":179},"\u03c8":{"d":"194,-74v0,47,-32,75,-82,74r0,72r-8,0r0,-72v-48,-1,-81,-24,-81,-70r0,-107r8,0v2,78,-19,169,73,169r0,-177r8,0r0,177v45,-1,73,-22,73,-68r0,-101r9,0r0,103","w":217},"\u03b4":{"d":"37,-212v-2,-51,66,-57,104,-37r-4,8v-36,-24,-110,-6,-87,45v31,41,106,25,106,112v0,55,-22,86,-71,86v-49,0,-70,-33,-70,-85v0,-44,19,-74,56,-84v-21,-8,-33,-21,-34,-45xm24,-84v0,49,17,75,62,79v63,4,76,-85,48,-130v-9,-15,-27,-23,-50,-27v-38,7,-60,33,-60,78","w":171},"\u03b5":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44","w":151},"\u03c6":{"d":"106,-5v73,8,86,-87,59,-143v-12,-15,-32,-24,-59,-24r0,167xm185,-111v5,69,-13,115,-79,113r0,70r-10,0r0,-70v-97,14,-103,-147,-35,-177r4,7v-48,14,-51,116,-18,147v11,11,28,16,49,16r0,-175v55,-1,85,17,89,69","w":203},"\u03b3":{"d":"80,72r-9,0r0,-76r-61,-165v-4,-3,-13,-1,-11,-10v14,-3,20,3,24,14r52,150r61,-163r10,0r-66,174r0,76","w":146,"k":{",":22,"\u03c1":11,"\u2026":22,".":22}},"\u03b7":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37","w":180},"\u03b9":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8","w":70},"\u03be":{"d":"125,-140v-98,-25,-138,93,-50,124v27,9,77,13,67,52v-2,9,-13,21,-18,30v-18,-10,22,-30,5,-49v-39,-28,-115,-23,-115,-90v0,-38,21,-62,55,-71v-27,-7,-45,-24,-46,-55v-1,-59,72,-73,121,-50r-4,7v-41,-19,-109,-10,-108,43v2,45,43,54,93,51r0,8","w":138},"\u03ba":{"d":"86,-108r-51,59r0,49r-9,0r0,-179r9,0r0,117r103,-117r11,0r-57,65r75,114r-11,0","w":167},"\u03bb":{"d":"150,0v-17,1,-20,-6,-25,-19r-47,-143r-68,162r-9,0r72,-174v-9,-24,-15,-52,-27,-73v-4,-4,-11,-4,-19,-4r0,-8v21,-5,30,7,35,23r74,220v2,7,6,8,14,8r0,8","w":150},"\u00b5":{"d":"152,-33v-16,41,-95,46,-117,7r0,98r-9,0r0,-251r9,0r0,118v1,36,23,54,58,55v77,1,57,-99,59,-173r8,0r0,179r-8,0r0,-33","w":183},"\u03bc":{"d":"152,-33v-16,41,-95,46,-117,7r0,98r-9,0r0,-251r9,0r0,118v1,36,23,54,58,55v77,1,57,-99,59,-173r8,0r0,179r-8,0r0,-33","w":183},"\u03bd":{"d":"81,0r-9,0r-66,-178r10,0r61,166r60,-166r10,0","w":153,"k":{",":14,"\u03c1":7,"\u2026":14,".":14}},"\u03bf":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83","w":171},"\u03c0":{"d":"152,-171r-117,0r0,171r-9,0r0,-178r135,0r0,178r-9,0r0,-171","w":186},"\u03ce":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm121,-208r29,-51r12,6r-36,48","w":262},"\u03c1":{"d":"93,1v-32,1,-50,-14,-61,-35r0,106r-9,0v9,-97,-35,-252,68,-252v53,1,71,36,71,92v0,54,-20,88,-69,89xm91,-172v-50,0,-61,41,-59,99v1,40,20,67,60,67v45,0,61,-35,61,-82v0,-54,-14,-84,-62,-84","w":176,"k":{"\u03b8":-4}},"\u03c3":{"d":"15,-90v0,-55,21,-89,71,-89r86,0r0,8v-17,1,-37,-2,-52,1v58,27,50,179,-35,172v-54,-5,-70,-36,-70,-92xm147,-87v0,-51,-15,-84,-61,-84v-45,0,-61,34,-62,82v0,48,17,84,62,84v45,0,61,-32,61,-82","w":177},"\u03c4":{"d":"58,-41v-1,26,13,36,42,33r0,8v-31,3,-51,-7,-51,-36r0,-135r-44,0r0,-8r103,0r0,8r-50,0r0,130","w":110},"\u03b8":{"d":"15,-130v0,-70,6,-129,72,-129v65,0,71,59,70,130v-1,71,-5,131,-72,131v-67,0,-70,-63,-70,-132xm24,-130v-4,74,15,146,86,120v37,-14,39,-63,38,-120r-124,0xm148,-138v12,-80,-39,-144,-102,-96v-18,22,-22,53,-22,96r124,0","w":171},"\u03c9":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82","w":262},"\u03c2":{"d":"112,57v13,-15,26,-45,-3,-54v-47,-14,-91,-29,-91,-94v0,-77,72,-110,131,-74r-6,8v-63,-47,-148,26,-107,109v16,32,71,32,97,55v14,21,-2,34,-13,55","w":147},"\u03c7":{"d":"131,0r-54,-86r-54,86r-10,0r58,-91r-55,-87r10,0r51,80r50,-80r12,0r-57,87r60,91r-11,0","w":154},"\u03c5":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113","w":186},"\u03b6":{"d":"155,-248v-52,44,-129,92,-129,175v0,65,76,55,112,84v14,19,-6,42,-14,56v-17,-12,32,-46,-10,-59v-44,-14,-97,-22,-97,-81v0,-85,69,-127,125,-175r-110,0r0,-8r123,0r0,8","w":129,"k":{"\u03ac":11,"\u1ff7":11,"\u1ff6":11,"\u1ff4":11,"\u1ff3":11,"\u1ff2":11,"\u1fb7":11,"\u1fb6":11,"\u1fb4":11,"\u1fb3":11,"\u1fb2":11,"\u1fb1":11,"\u1fb0":11,"\u1fa7":11,"\u1fa6":11,"\u1fa5":11,"\u1fa4":11,"\u1fa3":11,"\u1fa2":11,"\u1fa1":11,"\u1fa0":11,"\u1f87":11,"\u1f86":11,"\u1f85":11,"\u1f84":11,"\u1f83":11,"\u1f82":11,"\u1f81":11,"\u1f80":11,"\u1f7d":11,"\u1f7c":11,"\u1f79":11,"\u1f78":11,"\u1f71":11,"\u1f70":11,"\u1f67":11,"\u1f66":11,"\u1f65":11,"\u1f64":11,"\u1f63":11,"\u1f62":11,"\u1f61":11,"\u1f60":11,"\u1f45":11,"\u1f44":11,"\u1f43":11,"\u1f42":11,"\u1f41":11,"\u1f40":11,"\u1f07":11,"\u1f06":11,"\u1f05":11,"\u1f04":11,"\u1f03":11,"\u1f02":11,"\u1f01":11,"\u1f00":11,"\u03c9":11,"\u03c3":11,"\u03ce":11,"\u03bf":11,"\u03bb":-14,"\u03c6":11,"\u03b1":11,"\u03cc":11}},"\u03ca":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm60,-234r14,0r0,13r-14,0r0,-13xm-9,-234r13,0r0,13r-13,0r0,-13","w":70},"\u03cb":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm121,-234r13,0r0,13r-13,0r0,-13xm51,-234r13,0r0,13r-13,0r0,-13","w":186},"\u0390":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm12,-208r30,-51r11,6r-35,48xm55,-234r14,0r0,13r-14,0r0,-13xm-6,-234r14,0r0,13r-14,0r0,-13","w":70},"\u03b0":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm74,-208r29,-51r12,6r-36,48xm117,-234r13,0r0,13r-13,0r0,-13xm56,-234r13,0r0,13r-13,0r0,-13","w":186},"\u00c6":{"d":"162,-63r-111,0r-39,63r-12,0r157,-251r154,0r0,9r-139,0r0,110r119,0r0,9r-119,0r0,114r139,0r0,9r-149,0r0,-63xm162,-72r0,-169r-105,169r105,0","w":321},"\u00e6":{"d":"211,-180v53,0,69,38,69,91r-132,0v0,50,16,85,67,84v16,0,31,-5,44,-14r5,7v-38,28,-107,15,-117,-29v-9,53,-135,66,-135,-5v0,-58,68,-52,127,-51v5,-50,-11,-81,-63,-74v-18,2,-32,7,-45,15r-5,-6v30,-27,121,-29,122,24v9,-26,30,-41,63,-42xm76,-5v48,0,69,-30,63,-84v-51,1,-117,-11,-118,41v0,30,25,43,55,43xm270,-96v-2,-44,-17,-77,-59,-77v-42,0,-61,33,-62,77r121,0","w":293,"k":{"\u201d":7,"\u2019":7}},"\u20ac":{"d":"94,3v-58,0,-78,-46,-76,-108r-13,0r0,-8r13,0r0,-27r-13,0r0,-8r13,0v-19,-96,96,-140,142,-68r-8,4v-12,-21,-30,-33,-58,-33v-51,0,-70,41,-67,97r94,0r0,8r-94,0r0,27r95,0r0,8r-95,0v-3,56,15,100,67,100v31,0,46,-14,58,-36r8,4v-13,26,-32,40,-66,40","w":162},"\u0192":{"d":"-6,31v3,-19,40,6,55,-17v23,-36,21,-101,31,-150r-34,0r0,-8r35,0v4,-57,16,-130,86,-104v-6,15,-41,-6,-54,15v-18,18,-18,57,-23,89r41,0r0,8r-42,0v-16,69,6,189,-95,167","w":162},"\u02c6":{"d":"85,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":171},"\u00d7":{"d":"23,-35r-6,-5r58,-58r-56,-55r7,-6r55,55r57,-57r6,6r-57,57r56,56r-7,6r-55,-56","w":162},"\u00a6":{"d":"26,-110r0,-148r7,0r0,148r-7,0xm33,-90r0,148r-7,0r0,-148r7,0","w":57},"\u00b4":{"d":"76,-208r30,-51r11,6r-35,48","w":171},"\u0131":{"d":"29,0r0,-179r9,0r0,179r-9,0","w":66},"\u00ac":{"d":"152,-23r-8,0r0,-71r-135,0r0,-9r143,0r0,80","w":162},"\u00b8":{"d":"107,42v0,-15,-19,-17,-32,-20v5,-8,0,-25,15,-23r-6,18v19,2,32,8,33,26v1,24,-34,29,-56,20v3,-15,46,9,46,-21","w":145},"\u00f0":{"d":"75,-261v31,2,50,14,64,34r27,-19r4,6r-27,19v17,31,16,79,16,126v0,56,-17,96,-72,97v-52,1,-71,-34,-71,-86v0,-54,21,-86,72,-87v35,-1,53,19,63,44v0,-36,-3,-67,-16,-89r-28,21r-4,-6r29,-21v-13,-18,-31,-28,-59,-31xm149,-85v0,-48,-17,-78,-61,-78v-47,0,-63,31,-63,81v-1,48,19,77,63,77v44,0,62,-30,61,-80","w":176},"\u02dc":{"d":"112,-213v-23,-5,-52,-27,-67,-1r-6,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,20,-27,20","w":171},"\u02c7":{"d":"129,-245r5,4r-43,40r-10,0r-44,-40r4,-5r44,34","w":171},"\u02d8":{"d":"53,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0","w":176},"!":{"d":"33,-70r-2,-181r10,0r-2,181r-6,0xm29,0r0,-15r13,0r0,15r-13,0","w":71},"\u00d1":{"d":"39,-235r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,251r-10,0xm145,-267v-24,-5,-52,-27,-67,-1r-6,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,20,-27,20","w":236},"\u1fbd":{"d":"85,-212v11,-15,16,-41,-7,-46r5,-11v28,5,28,43,8,60","w":167},"\u1fbe":{"d":"98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1fc1":{"d":"117,-237r14,0r0,13r-14,0r0,-13xm64,-237r14,0r0,13r-14,0r0,-13xm122,-251v-23,-5,-52,-26,-67,0r-7,-5v22,-47,72,20,93,-18r8,4v-7,11,-13,18,-27,19","w":186},"\u1fcd":{"d":"63,-212v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm125,-208r-36,-58r13,-3r29,58","w":179},"\u1fce":{"d":"73,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm92,-211r32,-58r14,3r-40,58","w":167},"\u1fcf":{"d":"85,-198v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm112,-261v-22,-5,-53,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-13,19,-27,20","w":167},"\u1fdd":{"d":"81,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm125,-208r-37,-58r14,-3r28,58","w":167},"\u1fde":{"d":"92,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm92,-211r32,-58r14,3r-40,58","w":167},"\u1fdf":{"d":"103,-241v-21,6,-20,23,-8,43r-4,2v-20,-21,-23,-46,7,-56xm116,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,19,94,-19r7,4v-7,11,-13,19,-27,20","w":167},"\u1fed":{"d":"57,-224r-14,0r0,-13r14,0r0,13xm128,-224r-14,0r0,-13r14,0r0,13xm97,-208r-37,-58r14,-3r29,58","w":167},"\u1fee":{"d":"119,-237r13,0r0,13r-13,0r0,-13xm48,-237r14,0r0,13r-14,0r0,-13xm71,-211r32,-58r14,3r-40,58","w":167},"\u1ffe":{"d":"108,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60","w":167},"\u00af":{"d":"47,-221r89,0r0,9r-89,0r0,-9","w":167},"\u02d9":{"d":"81,-234r14,0r0,13r-14,0r0,-13","w":167},"\u02da":{"d":"120,-231v0,18,-13,30,-31,30v-18,0,-31,-12,-31,-30v-1,-17,15,-31,31,-31v17,0,31,14,31,31xm113,-231v0,-13,-11,-25,-24,-25v-13,0,-24,12,-24,25v0,13,11,24,24,24v13,0,24,-11,24,-24","w":167},"\u02db":{"d":"110,54v-19,15,-59,5,-55,-21v2,-14,5,-33,25,-33v-15,12,-25,53,6,53v10,2,21,-11,24,1","w":167},"\u02dd":{"d":"68,-208r30,-51r11,6r-36,48xm99,-208r30,-51r11,6r-35,48","w":167},"\u1f00":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm85,-212v11,-15,16,-41,-7,-46r5,-11v28,5,28,43,8,60","w":179},"\u1f01":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm111,-258v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60","w":179},"\u1f02":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm63,-212v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm125,-208r-36,-58r13,-3r29,58","w":179},"\u1f03":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm81,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm125,-208r-37,-58r14,-3r28,58","w":179},"\u1f04":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm73,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm92,-211r32,-58r14,3r-40,58","w":179},"\u1f05":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm92,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm92,-211r32,-58r14,3r-40,58","w":179},"\u1f06":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm85,-198v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm112,-261v-22,-5,-53,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-13,19,-27,20","w":179},"\u1f07":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm103,-241v-21,6,-20,23,-8,43r-4,2v-20,-21,-23,-46,7,-56xm116,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,19,94,-19r7,4v-7,11,-13,19,-27,20","w":179},"\u1f08":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm6,-249v28,6,28,43,8,60v-13,-5,6,-19,4,-31v-2,-10,-7,-15,-17,-18","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f09":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm30,-239v-23,5,-18,31,-8,47r-5,3v-20,-15,-22,-54,7,-60","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0a":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-30,-192v10,-14,15,-42,-7,-46r5,-11v28,6,28,43,8,60xm32,-188r-36,-58r14,-3r28,59","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0b":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-4,-239v-23,5,-18,31,-8,47r-5,3v-19,-15,-22,-55,8,-60xm40,-189r-37,-57r14,-3r28,58","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0c":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-29,-192v10,-15,15,-42,-8,-46r6,-10v29,5,26,44,7,60xm-10,-190r32,-58r14,3r-40,57","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0d":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-9,-239v-23,5,-18,31,-8,47r-5,3v-19,-15,-22,-55,8,-60xm-9,-191r32,-58r14,3r-40,57","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0e":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-5,-158v12,-21,13,-37,-8,-44r4,-10v30,10,28,34,8,55xm21,-222v-23,-5,-52,-26,-67,0r-7,-5v19,-32,50,-13,75,-4v13,1,16,-22,26,-10v-7,11,-13,18,-27,19","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0f":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm12,-202v-22,6,-20,24,-8,44v-25,-10,-28,-48,3,-54xm25,-222v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-12,20,-27,20","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f10":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm82,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60","w":151},"\u1f11":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm102,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60","w":151},"\u1f12":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm50,-212v11,-15,16,-41,-7,-46r5,-11v28,5,28,43,8,60xm113,-208r-37,-58r14,-3r28,58","w":151},"\u1f13":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm68,-258v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm112,-208r-36,-58r13,-3r29,58","w":151},"\u1f14":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm64,-212v9,-15,16,-42,-7,-46r5,-11v28,6,29,44,7,60xm84,-211r32,-58r13,3r-40,58","w":151},"\u1f15":{"d":"55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44xm84,-258v-23,4,-18,31,-8,46r-5,3v-20,-15,-22,-54,7,-60xm84,-211r32,-58r14,3r-40,58","w":151},"\u1f18":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm-27,-194v9,-15,16,-42,-8,-46r6,-11v29,6,27,43,7,60","w":187},"\u1f19":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm0,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60","w":187},"\u1f1a":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm-67,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-5,-190r-36,-58r13,-3r29,58","w":187},"\u1f1b":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm-49,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-5,-190r-36,-58r13,-3r29,58","w":187},"\u1f1c":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm-64,-194v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm-45,-193r32,-58r14,3r-40,58","w":187},"\u1f1d":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm-45,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-45,-193r32,-58r14,3r-40,58","w":187},"\u1f20":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm81,-212v9,-15,16,-42,-8,-46r6,-11v29,6,27,43,7,60","w":180},"\u1f21":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm104,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60","w":180},"\u1f22":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm54,-212v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm116,-208r-36,-58r13,-3r29,58","w":180},"\u1f23":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm72,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm116,-208r-37,-58r14,-3r28,58","w":180},"\u1f24":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm69,-212v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60xm89,-211r32,-58r14,3r-40,58","w":180},"\u1f25":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm89,-258v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60xm89,-211r32,-58r14,3r-40,58","w":180},"\u1f26":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm77,-198v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm104,-261v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-13,19,-27,20","w":180},"\u1f27":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm94,-241v-21,7,-21,23,-8,44v-26,-11,-26,-48,4,-54xm134,-280v-15,46,-73,-18,-93,18r-7,-4v21,-48,73,19,93,-19","w":180},"\u1f28":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-21,-194v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60","w":222},"\u1f29":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm1,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60","w":222},"\u1f2a":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-67,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-5,-190r-36,-58r13,-3r29,58","w":222},"\u1f2b":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-49,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm-5,-190r-37,-58r14,-3r28,58","w":222},"\u1f2c":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58","w":222},"\u1f2d":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-46,-240v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60xm-46,-193r32,-58r14,3r-40,58","w":222},"\u1f2e":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-47,-158v12,-20,14,-38,-8,-44r5,-10v31,9,28,34,8,55xm-20,-222v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r7,4v-7,11,-11,20,-26,20","w":222},"\u1f2f":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-30,-202v-22,6,-20,24,-8,44v-25,-11,-29,-48,3,-54xm-17,-222v-24,0,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-12,20,-27,20","w":222},"\u1f30":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm29,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60","w":70},"\u1f31":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm50,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60","w":70},"\u1f32":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm3,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm65,-208r-36,-58r13,-3r29,58","w":70},"\u1f33":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm21,-259v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm64,-209r-36,-57r14,-4r28,59","w":70},"\u1f34":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm14,-212v11,-15,16,-41,-7,-46r5,-11v28,5,28,43,8,60xm34,-211r32,-58r14,3r-40,58","w":70},"\u1f35":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm37,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm37,-211r32,-58r14,3r-40,58","w":70},"\u1f36":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm27,-198v12,-20,13,-37,-8,-43r5,-11v30,10,27,35,7,56xm54,-261v-23,-5,-53,-27,-67,-1r-7,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,19,-26,20","w":70},"\u1f37":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm46,-241v-21,6,-20,23,-8,43r-5,2v-20,-22,-22,-46,8,-56xm59,-261v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-13,19,-27,20","w":70},"\u1f38":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-21,-194v9,-15,16,-42,-7,-46r5,-11v28,5,28,43,8,60","w":71},"\u1f39":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm1,-240v-24,4,-18,32,-7,46r-6,3v-19,-15,-22,-55,8,-60","w":71},"\u1f3a":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-67,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-5,-190r-36,-58r13,-3r29,58","w":71},"\u1f3b":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-48,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-5,-190r-36,-58r14,-3r28,58","w":71},"\u1f3c":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58","w":71},"\u1f3d":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-45,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-45,-193r32,-58r14,3r-40,58","w":71},"\u1f3e":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-64,-158v12,-21,14,-38,-8,-44r5,-10v30,10,28,34,8,55xm-37,-222v-23,-4,-53,-26,-67,0r-7,-5v18,-32,48,-13,74,-4v10,-1,14,-7,19,-15r8,5v-7,11,-13,18,-27,19","w":71},"\u1f3f":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm-40,-202v-21,7,-21,23,-8,44v-26,-11,-26,-48,4,-54xm-26,-222v-23,-4,-53,-26,-67,0r-7,-5v19,-32,48,-13,74,-4v13,1,16,-22,26,-10v-7,11,-12,19,-26,19","w":71},"\u1f40":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm73,-269v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17","w":171},"\u1f41":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm103,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60","w":171},"\u1f42":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm55,-269v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm120,-208r-37,-58r14,-3r28,58","w":171},"\u1f43":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm80,-258v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60xm123,-208r-36,-58r13,-3r29,58","w":171},"\u1f44":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm72,-212v11,-15,16,-41,-7,-46r5,-11v28,5,28,43,8,60xm92,-211r32,-58r14,3r-40,58","w":171},"\u1f45":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm89,-258v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm90,-211r32,-58r13,3r-40,58","w":171},"\u1f48":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm-21,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60","w":201},"\u1f49":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm1,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60","w":201},"\u1f4a":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm-67,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-5,-190r-36,-58r13,-3r29,58","w":201},"\u1f4b":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm-48,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-5,-190r-36,-58r14,-3r28,58","w":201},"\u1f4c":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58","w":201},"\u1f4d":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm-45,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-45,-193r32,-58r14,3r-40,58","w":201},"\u1f50":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm82,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60","w":186},"\u1f51":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm109,-258v-23,4,-16,31,-7,46r-6,3v-19,-16,-21,-54,8,-60","w":186},"\u1f52":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm61,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm123,-208r-36,-58r13,-3r29,58","w":186},"\u1f53":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm86,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm130,-208r-37,-58r14,-3r28,58","w":186},"\u1f54":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm78,-269v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm100,-211r32,-58r13,3r-40,58","w":186},"\u1f55":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm98,-258v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm99,-211r32,-58r13,3r-40,58","w":186},"\u1f56":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm87,-198v12,-20,14,-37,-7,-43r4,-11v30,10,28,35,8,56xm114,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-13,19,-27,20","w":186},"\u1f57":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm106,-241v-21,6,-20,23,-8,43r-4,2v-21,-21,-24,-46,7,-56xm119,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-13,19,-27,20","w":186},"\u1f59":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104xm-17,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5b":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104xm-58,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-14,-190r-36,-58r13,-3r29,58","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5d":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104xm-63,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-63,-193r32,-58r14,3r-40,58","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5f":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104xm-50,-202v-21,6,-20,23,-8,43r-4,2v-20,-21,-23,-46,7,-56xm-37,-222v-21,-7,-52,-26,-67,-1r-7,-5v22,-47,72,20,94,-18r7,4v-7,11,-13,19,-27,20","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f60":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm118,-269v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17","w":262},"\u1f61":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm148,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60","w":262},"\u1f62":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm100,-212v9,-15,16,-42,-7,-46r5,-11v28,6,29,44,7,60xm162,-208r-36,-58r14,-3r28,58","w":262},"\u1f63":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm117,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm160,-208r-36,-58r14,-3r28,58","w":262},"\u1f64":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm117,-212v9,-15,16,-42,-8,-46r6,-11v29,6,27,43,7,60xm136,-211r32,-58r14,3r-40,58","w":262},"\u1f65":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm134,-258v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm135,-211r32,-58r13,3r-40,58","w":262},"\u1f66":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm125,-198v12,-20,13,-37,-8,-43r4,-11v30,10,28,35,8,56xm151,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-13,19,-27,20","w":262},"\u1f67":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm141,-241v-21,6,-19,23,-7,43r-5,2v-20,-22,-22,-46,8,-56xm155,-261v-22,-5,-53,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r7,4v-7,11,-12,19,-26,20","w":262},"\u1f68":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-21,-194v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60","w":201},"\u1f69":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm1,-240v-24,4,-18,32,-7,46r-6,3v-19,-15,-22,-55,8,-60","w":201},"\u1f6a":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-68,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-6,-190r-36,-58r14,-3r28,58","w":201},"\u1f6b":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-49,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-5,-190r-36,-58r13,-3r29,58","w":201},"\u1f6c":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58","w":201},"\u1f6d":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-45,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-45,-193r32,-58r14,3r-40,58","w":201},"\u1f6e":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-53,-158v12,-20,13,-37,-8,-43r5,-11v31,10,28,35,7,56xm-26,-221v-23,-5,-53,-27,-67,-1r-7,-4v22,-48,71,19,93,-19r7,4v-7,11,-12,19,-26,20","w":201},"\u1f6f":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-40,-202v-21,7,-21,23,-8,44v-26,-11,-26,-48,4,-54xm-26,-222v-23,-4,-53,-26,-67,0r-7,-5v19,-32,48,-13,74,-4v13,1,16,-22,26,-10v-7,11,-12,19,-26,19","w":201},"\u1f70":{"d":"94,-208r-36,-56r13,-3r29,56xm90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84","w":179},"\u1f71":{"d":"87,-211r32,-56r13,3r-39,56xm90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84","w":179},"\u1f72":{"d":"87,-208r-37,-56r14,-3r29,56xm55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44","w":151},"\u1f73":{"d":"76,-211r32,-56r14,3r-40,56xm55,-93v-57,-21,-30,-87,32,-87v21,0,40,6,53,15r-5,7v-28,-23,-102,-23,-103,24v0,33,33,38,70,36r0,8v-40,-2,-73,5,-74,42v-1,50,80,50,110,27r4,7v-34,26,-128,22,-123,-35v2,-24,15,-38,36,-44","w":151},"\u1f74":{"d":"87,-208r-37,-56r14,-3r29,56xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37","w":180},"\u1f75":{"d":"80,-211r32,-56r13,3r-40,56xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37","w":180},"\u1f76":{"d":"32,-208r-37,-56r14,-3r28,56xm58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8","w":70},"\u1f77":{"d":"25,-211r32,-56r14,3r-40,56xm58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8","w":70},"\u1f78":{"d":"87,-208r-36,-56r14,-3r28,56xm15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83","w":171},"\u1f79":{"d":"78,-211r33,-56r13,3r-40,56xm15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83","w":171},"\u1f7a":{"d":"92,-208r-37,-56r14,-3r29,56xm161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113","w":186},"\u1f7b":{"d":"82,-211r32,-56r13,3r-40,56xm161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113","w":186},"\u1f7c":{"d":"132,-208r-37,-56r14,-3r29,56xm195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82","w":262},"\u1f7d":{"d":"124,-211r32,-56r14,3r-40,56xm195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82","w":262},"\u1f80":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm85,-212v11,-15,16,-41,-7,-46r5,-11v28,5,28,43,8,60xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f81":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm111,-258v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f82":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm63,-212v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm125,-208r-36,-58r13,-3r29,58xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f83":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm81,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm125,-208r-37,-58r14,-3r28,58xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f84":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm73,-212v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm92,-211r32,-58r14,3r-40,58xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f85":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm92,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm92,-211r32,-58r14,3r-40,58xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f86":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm85,-198v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm112,-261v-22,-5,-53,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-13,19,-27,20xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f87":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm103,-241v-21,6,-20,23,-8,43r-4,2v-20,-21,-23,-46,7,-56xm116,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,19,94,-19r7,4v-7,11,-13,19,-27,20xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1f88":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm6,-249v28,6,28,43,8,60v-13,-5,6,-19,4,-31v-2,-10,-7,-15,-17,-18","w":281},"\u1f89":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm30,-239v-23,5,-18,31,-8,47r-5,3v-20,-15,-22,-54,7,-60","w":281},"\u1f8a":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-30,-192v10,-14,15,-42,-7,-46r5,-11v28,6,28,43,8,60xm32,-188r-36,-58r14,-3r28,59","w":281},"\u1f8b":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-4,-239v-23,5,-18,31,-8,47r-5,3v-19,-15,-22,-55,8,-60xm40,-189r-37,-57r14,-3r28,58","w":281},"\u1f8c":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-29,-192v10,-15,15,-42,-8,-46r6,-10v29,5,26,44,7,60xm-10,-190r32,-58r14,3r-40,57","w":281},"\u1f8d":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-9,-239v-23,5,-18,31,-8,47r-5,3v-19,-15,-22,-55,8,-60xm-9,-191r32,-58r14,3r-40,57","w":281},"\u1f8e":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-5,-158v12,-21,13,-37,-8,-44r4,-10v30,10,28,34,8,55xm21,-222v-23,-5,-52,-26,-67,0r-7,-5v19,-32,50,-13,75,-4v13,1,16,-22,26,-10v-7,11,-13,18,-27,19","w":281},"\u1f8f":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm12,-202v-22,6,-20,24,-8,44v-25,-10,-28,-48,3,-54xm25,-222v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-12,20,-27,20","w":281},"\u1f90":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm81,-212v9,-15,16,-42,-8,-46r6,-11v29,6,27,43,7,60xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f91":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm104,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f92":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm54,-212v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm116,-208r-36,-58r13,-3r29,58xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f93":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm72,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm116,-208r-37,-58r14,-3r28,58xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f94":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm69,-212v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60xm89,-211r32,-58r14,3r-40,58xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f95":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm89,-258v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60xm89,-211r32,-58r14,3r-40,58xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f96":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm77,-198v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm104,-261v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-13,19,-27,20xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f97":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm94,-241v-21,7,-21,23,-8,44v-26,-11,-26,-48,4,-54xm134,-280v-15,46,-73,-18,-93,18r-7,-4v21,-48,73,19,93,-19xm95,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1f98":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-21,-194v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60","w":289},"\u1f99":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm1,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60","w":289},"\u1f9a":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-67,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-5,-190r-36,-58r13,-3r29,58","w":289},"\u1f9b":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-49,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm-5,-190r-37,-58r14,-3r28,58","w":289},"\u1f9c":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58","w":289},"\u1f9d":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-46,-240v-23,4,-18,31,-8,46r-5,3v-19,-16,-23,-54,7,-60xm-46,-193r32,-58r14,3r-40,58","w":289},"\u1f9e":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-60,-158v12,-20,14,-38,-8,-44r5,-10v31,9,28,34,8,55xm-33,-222v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-12,20,-27,20","w":289},"\u1f9f":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-42,-202v-22,5,-20,24,-8,44v-26,-9,-28,-49,3,-54xm-29,-222v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r7,4v-7,11,-11,20,-26,20","w":289},"\u1fa0":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm118,-269v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa1":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm148,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa2":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm100,-212v9,-15,16,-42,-7,-46r5,-11v28,6,29,44,7,60xm162,-208r-36,-58r14,-3r28,58xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa3":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm117,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm160,-208r-36,-58r14,-3r28,58xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa4":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm117,-212v9,-15,16,-42,-8,-46r6,-11v29,6,27,43,7,60xm136,-211r32,-58r14,3r-40,58xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa5":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm134,-258v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm135,-211r32,-58r13,3r-40,58xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa6":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm125,-198v12,-20,13,-37,-8,-43r4,-11v30,10,28,35,8,56xm151,-261v-22,-6,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-13,19,-27,20xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa7":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm141,-241v-21,6,-19,23,-7,43r-5,2v-20,-22,-22,-46,8,-56xm155,-261v-22,-5,-53,-27,-67,-1r-7,-4v22,-47,73,19,93,-19r7,4v-7,11,-12,19,-26,20xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1fa8":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-21,-194v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60","w":281},"\u1fa9":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm1,-240v-24,4,-18,32,-7,46r-6,3v-19,-15,-22,-55,8,-60","w":281},"\u1faa":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-68,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-6,-190r-36,-58r14,-3r28,58","w":281},"\u1fab":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-49,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-5,-190r-36,-58r13,-3r29,58","w":281},"\u1fac":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58","w":281},"\u1fad":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-45,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-45,-193r32,-58r14,3r-40,58","w":281},"\u1fae":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-64,-158v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm-37,-221v-22,-5,-53,-27,-67,-1r-7,-4v19,-33,47,-13,74,-5v13,1,15,-20,27,-10v-7,11,-13,19,-27,20","w":281},"\u1faf":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-47,-202v-21,7,-21,23,-8,44v-26,-11,-26,-48,4,-54xm-33,-222v-23,-4,-53,-26,-67,0r-7,-5v18,-33,49,-12,74,-4v13,1,16,-22,26,-10v-7,11,-12,18,-26,19","w":281},"\u1fb0":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm56,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":179},"\u1fb1":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm50,-221r89,0r0,9r-89,0r0,-9","w":179},"\u1fb2":{"d":"90,-208r-36,-56r14,-3r28,56xm90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1fb3":{"d":"90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1fb4":{"d":"87,-211r32,-56r13,3r-39,56xm90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1fb6":{"d":"36,-231v28,-35,86,23,112,-13r6,4v-20,43,-83,-11,-113,16xm90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84","w":179},"\u1fb7":{"d":"39,-231v27,-35,86,23,111,-13r7,4v-21,42,-83,-11,-113,16xm90,-181v32,-1,47,16,58,38r0,-36r9,0r0,179r-9,0v-1,-12,2,-29,-1,-39v-9,23,-26,40,-57,40v-52,0,-69,-40,-69,-89v0,-52,16,-92,69,-93xm90,-6v79,0,80,-168,0,-168v-46,0,-59,38,-59,84v0,46,13,83,59,84xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":179},"\u1fba":{"d":"24,-190r-36,-56r14,-3r28,56xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fbb":{"d":"-9,-193r32,-56r13,3r-40,56xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fbc":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":281},"\u1fc2":{"d":"90,-208r-36,-56r14,-3r28,56xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":180},"\u1fc3":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm97,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":180},"\u1fc4":{"d":"72,-211r32,-56r14,3r-40,56xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":180},"\u1fc8":{"d":"-5,-190r-36,-56r14,-3r28,56xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u1fc9":{"d":"-45,-193r32,-56r14,3r-40,56xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u1fca":{"d":"-14,-190r-36,-56r14,-3r28,56xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":222},"\u1fcb":{"d":"-57,-193r32,-56r14,3r-40,56xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":222},"\u1fcc":{"d":"249,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":289},"\u1fd8":{"d":"0,-300v2,37,68,37,70,0r8,0v0,41,-67,49,-81,14v-2,-4,-4,-10,-5,-14r8,0xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u1fd9":{"d":"-9,-284r89,0r0,9r-89,0r0,-9xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u1fda":{"d":"-5,-190r-36,-56r13,-3r29,56xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u1fdb":{"d":"-45,-193r32,-56r14,3r-40,56xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u1fe0":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm60,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,39,-68,50,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":186},"\u1fe1":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm48,-217r89,0r0,8r-89,0r0,-8","w":186},"\u1fe2":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm66,-224r-13,0r0,-13r13,0r0,13xm137,-224r-14,0r0,-13r14,0r0,13xm106,-208r-36,-58r14,-3r28,58","w":186},"\u1fe3":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm124,-238r14,0r0,13r-14,0r0,-13xm53,-238r14,0r0,13r-14,0r0,-13xm76,-212r32,-58r14,3r-40,57","w":186},"\u1fe4":{"d":"93,1v-32,1,-50,-14,-61,-35r0,106r-9,0v9,-97,-35,-252,68,-252v53,1,71,36,71,92v0,54,-20,88,-69,89xm91,-172v-50,0,-61,41,-59,99v1,40,20,67,60,67v45,0,61,-35,61,-82v0,-54,-14,-84,-62,-84xm86,-269v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17","w":177},"\u1fe5":{"d":"93,1v-32,1,-50,-14,-61,-35r0,106r-9,0v9,-97,-35,-252,68,-252v53,1,71,36,71,92v0,54,-20,88,-69,89xm91,-172v-50,0,-61,41,-59,99v1,40,20,67,60,67v45,0,61,-35,61,-82v0,-54,-14,-84,-62,-84xm108,-258v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-55,8,-60","w":177},"\u1fe6":{"d":"34,-231v28,-35,86,23,111,-13r7,4v-21,42,-83,-11,-113,16xm161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113","w":186},"\u1fe7":{"d":"161,-65v0,44,-26,68,-68,68v-42,0,-67,-25,-67,-67r0,-114r9,0v3,74,-20,173,59,173v80,0,54,-100,58,-173r9,0r0,113xm113,-215r14,0r0,13r-14,0r0,-13xm60,-215r14,0r0,13r-14,0r0,-13xm118,-229v-23,-4,-53,-26,-67,0r-7,-5v22,-47,71,20,93,-18r7,4v-7,11,-12,19,-26,19","w":186},"\u1fe8":{"d":"47,-299v4,34,68,37,70,0r8,0v-1,40,-68,49,-81,13v-2,-5,-8,-15,3,-13xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fe9":{"d":"38,-284r89,0r0,9r-89,0r0,-9xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fea":{"d":"-23,-190r-37,-56r14,-3r28,56xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1feb":{"d":"-61,-193r32,-56r14,3r-40,56xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f76":22,"\u1f31":22,"\u1f30":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f06":22,"\u1f07":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f66":22,"\u1f67":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1f86":22,"\u1f87":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fa6":22,"\u1fa7":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1fb6":22,"\u1fb7":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f26":18,"\u1f27":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1f96":18,"\u1f97":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1f77":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fec":{"d":"193,-179v-2,42,-27,67,-72,68r-82,0r0,111r-9,0r0,-251v79,-1,167,-11,163,72xm183,-180v0,-70,-74,-64,-144,-62r0,122v69,1,144,9,144,-60xm-22,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60","w":196,"k":{",":36,".":36,"\u2026":36,"\u2206":18,"\u039b":18,"\u0391":18,"\u1fbc":18,"\u1fb8":18,"\u1fb9":18,"\ue264":18,"\ue183":25,"\ue186":25,"\ue18d":25,"\ue19b":25}},"\u1ff2":{"d":"131,-208r-36,-56r13,-3r29,56xm195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1ff3":{"d":"195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1ff4":{"d":"119,-211r32,-56r14,3r-40,56xm195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1ff6":{"d":"78,-231v28,-35,86,23,111,-13r7,4v-21,42,-83,-11,-113,16xm195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82","w":262},"\u1ff7":{"d":"78,-231v28,-35,86,23,111,-13r7,4v-21,42,-83,-11,-113,16xm195,-179v75,7,72,186,-10,181v-29,-1,-48,-15,-54,-41v-8,25,-26,40,-53,41v-87,3,-82,-171,-10,-181r2,9v-63,8,-67,167,8,165v55,-2,49,-68,48,-126r9,0v0,58,-9,126,50,125v41,-1,53,-36,53,-83v0,-45,-10,-75,-45,-82xm135,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":262},"\u1ff8":{"d":"-8,-190r-36,-56r14,-3r28,56xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201},"\u1ff9":{"d":"-45,-193r32,-56r14,3r-40,56xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201},"\u1ffa":{"d":"-6,-190r-36,-56r14,-3r28,56xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0","w":201},"\u1ffb":{"d":"-46,-193r32,-56r14,3r-40,56xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0","w":201},"\u1ffc":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138xm59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0","w":281},"\u1fd0":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm-3,-239v5,34,66,39,70,0r8,0v-1,40,-68,49,-81,13v-2,-5,-8,-15,3,-13","w":70},"\u1fd1":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm-12,-217r89,0r0,8r-89,0r0,-8","w":70},"\u1fd2":{"d":"4,-224r-13,0r0,-13r13,0r0,13xm75,-224r-13,0r0,-13r13,0r0,13xm44,-208r-36,-58r14,-3r28,58xm58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8","w":70},"\u1fd3":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm63,-237r13,0r0,13r-13,0r0,-13xm-8,-237r13,0r0,13r-13,0r0,-13xm15,-211r32,-58r13,3r-39,58","w":70},"\u1fd6":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm55,-213v-24,-5,-52,-27,-67,-1r-6,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,20,-27,20","w":70},"\u1fd7":{"d":"58,1v-22,2,-31,-10,-30,-30r0,-149r9,0r0,148v0,17,6,24,21,23r0,8xm52,-217r14,0r0,13r-14,0r0,-13xm-1,-217r14,0r0,13r-14,0r0,-13xm57,-231v-23,-4,-53,-26,-67,0r-7,-5v18,-32,49,-13,74,-4v10,-1,14,-7,19,-15r8,5v-7,11,-13,18,-27,19","w":70},"\u1fb8":{"d":"69,-299v3,36,67,36,70,0r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fb9":{"d":"59,-284r90,0r0,9r-90,0r0,-9xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u203a":{"d":"26,-17r40,-59r-40,-60r10,0r40,60r-40,59r-10,0","w":95},"\u2039":{"d":"66,-17r-40,-59r41,-60r9,0r-39,60r39,59r-10,0","w":95},"\u00a1":{"d":"38,-106r2,181r-10,0r2,-181r6,0xm42,-176r0,15r-13,0r0,-15r13,0","w":71},"\u00bf":{"d":"75,68v32,-1,50,-23,56,-50r9,2v-9,31,-28,54,-67,56v-60,3,-79,-69,-43,-107v21,-23,46,-42,40,-92r9,0v10,74,-52,80,-60,137v2,33,19,55,56,54xm80,-176r0,15r-13,0r0,-15r13,0","w":150},"\u2014":{"d":"7,-99r342,0r0,9r-342,0r0,-9","w":356,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u00de":{"d":"193,-124v0,73,-77,72,-154,69r0,55r-9,0r0,-251r9,0r0,56v76,-2,154,-8,154,71xm183,-125v0,-69,-74,-64,-144,-62r0,123v69,1,144,8,144,-61","w":196},"\u00fe":{"d":"88,1v-32,1,-46,-17,-58,-37r0,108r-9,0r0,-323r9,0r1,108v10,-23,26,-38,57,-38v52,1,69,41,69,93v0,49,-17,89,-69,89xm88,-174v-44,0,-58,38,-58,83v1,46,13,85,58,85v46,0,59,-38,59,-84v0,-46,-13,-84,-59,-84","w":176},"\u0152":{"d":"15,-87v-6,-97,5,-164,109,-164r147,0r0,9r-139,0r0,110r119,0r0,9r-119,0r0,114r139,0r0,9r-170,3v-57,-1,-83,-34,-86,-90xm26,-86v-2,57,39,89,96,77r0,-233v-61,-7,-97,21,-96,78r0,78","w":280},"\u201a":{"d":"13,33r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0","w":48,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"V":25,"W":25,"\u0174":25,"\u1e80":25,"\u1e82":25,"\u1e84":25}},"\u201e":{"d":"21,33r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0xm62,33r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0","w":106,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"V":25,"W":25,"\u0174":25,"\u1e80":25,"\u1e82":25,"\u1e84":25}},"\u2021":{"d":"73,-152r-65,0r0,-10r65,0r0,-89r11,0r0,89r65,0r0,10r-65,0r0,104r65,0r0,10r-65,0r0,109r-11,0r0,-109r-65,0r0,-10r65,0r0,-104","w":157},"\u00a2":{"d":"145,-15v-14,10,-28,19,-52,18r0,37r-7,0r0,-38v-46,-6,-68,-39,-68,-91v0,-52,23,-84,68,-91r0,-40r7,0r0,40v24,-1,39,7,52,17r-5,6v-10,-8,-28,-19,-47,-15r0,167v21,1,36,-6,47,-16xm86,-172v-60,2,-74,95,-44,141v10,14,25,23,44,26r0,-167","w":162},"\u00a4":{"d":"135,-73v-20,18,-55,18,-76,-2v-8,5,-17,26,-25,13r19,-19v-17,-21,-15,-56,1,-74v-5,-8,-26,-17,-13,-25r19,19v19,-17,54,-17,74,-1v8,-5,17,-26,25,-13r-19,19v23,20,18,56,2,76v6,8,27,18,12,26xm146,-117v0,-29,-18,-49,-48,-49v-29,0,-48,20,-48,48v0,30,19,49,48,49v28,0,48,-19,48,-48","w":177},"\u00b6":{"d":"8,-201v-3,-76,81,-63,152,-63r0,11r-26,0r0,282r-11,0r0,-282r-39,0r0,282r-11,0r0,-165v-41,-1,-63,-24,-65,-65","w":165},"\u00d8":{"d":"15,-87v-5,-88,1,-167,86,-165v28,0,48,9,61,24v8,-7,11,-30,23,-20r-17,27v23,28,17,84,17,134v0,56,-30,90,-84,90v-29,0,-49,-9,-63,-25v-8,7,-12,29,-23,19r17,-26v-10,-15,-16,-35,-17,-58xm101,-6v78,1,77,-78,74,-158v0,-18,-4,-34,-13,-48r-119,181v12,16,32,24,58,25xm157,-219v-12,-15,-30,-24,-56,-24v-80,-2,-79,77,-76,157v0,18,4,34,13,48","w":201,"k":{"J":14}},"\u00f8":{"d":"30,-23v-29,-51,-21,-157,57,-157v21,0,37,6,49,19v7,-6,12,-25,21,-14v-4,7,-17,14,-14,21v28,53,18,156,-58,156v-24,0,-39,-7,-50,-19v-6,6,-11,24,-20,13xm86,-5v68,0,73,-94,50,-143r-95,124v8,10,26,19,45,19xm131,-154v-9,-11,-26,-17,-45,-18v-67,-5,-74,91,-50,141","w":171},"\u0160":{"d":"141,-302r4,5r-42,36r-11,0r-44,-36r5,-5r44,30xm178,-63v0,75,-119,79,-167,42r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,145,25,145,123","w":188},"\u017d":{"d":"136,-302r4,5r-42,36r-11,0r-44,-36r5,-5r44,30xm12,-9r138,-233r-132,0r0,-9r143,0r0,9r-139,233r139,0r0,9r-149,0r0,-9","w":172},"\u0161":{"d":"28,-132v6,58,119,16,117,86v-2,60,-100,59,-136,29r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26xm120,-245r4,4r-43,40r-10,0r-44,-40r4,-5r45,34","w":163},"\u017e":{"d":"13,-7r113,-164r-108,0r0,-7r118,0r0,7r-113,163r113,0r0,8r-123,0r0,-7xm118,-245r5,4r-43,40r-10,0r-44,-40r4,-5r45,34","w":149},"\u0178":{"d":"113,-284r13,0r0,13r-13,0r0,-13xm49,-284r13,0r0,13r-13,0r0,-13xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\u012d":11,"\u012b":11,"\u0129":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u0169":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14}},"\u00c0":{"d":"109,-261r-51,-31r9,-10r46,37xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":215,"k":{"'":7}},"\u00c1":{"d":"97,-265r46,-37r9,10r-51,31xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"\u00c2":{"d":"104,-291r-44,30r-4,-5r44,-36r10,0r43,36r-5,5xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"\u00c3":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm129,-267v-24,-4,-52,-28,-67,-1r-7,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,19,-26,20","w":208,"k":{"'":7}},"\u00c5":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm104,-319v33,0,41,48,12,59v-21,8,-43,-6,-43,-28v-1,-17,15,-31,31,-31xm128,-288v0,-13,-11,-24,-24,-24v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24","w":208,"k":{"'":7}},"\u00c8":{"d":"116,-261r-52,-31r9,-10r47,37xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u00ca":{"d":"104,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u00cb":{"d":"129,-284r13,0r0,13r-13,0r0,-13xm64,-284r14,0r0,13r-14,0r0,-13xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u00cc":{"d":"39,-261r-52,-31r9,-10r46,37xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u00cd":{"d":"32,-265r46,-37r9,10r-51,31xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u00ce":{"d":"44,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5xm39,-251r9,0r0,251r-9,0r0,-251","w":102},"\u00cf":{"d":"61,-284r14,0r0,13r-14,0r0,-13xm-3,-284r14,0r0,13r-14,0r0,-13xm31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u00d0":{"d":"196,-130v0,80,-16,133,-92,130r-75,0r0,-131r-23,0r0,-9r23,0r0,-111r80,0v69,0,87,46,87,121xm106,-9v78,4,80,-63,80,-142v0,-59,-24,-91,-80,-91r-67,0r0,102r61,0r0,9r-61,0r0,122r67,0","w":216,"k":{"J":14}},"\u00d2":{"d":"121,-261r-52,-31r9,-10r47,37xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u00d3":{"d":"83,-265r47,-37r8,10r-51,31xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u00d4":{"d":"100,-291r-44,30r-4,-5r44,-36r10,0r43,36r-5,5xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u00d5":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82xm125,-267v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,19,94,-19r7,4v-7,11,-12,20,-27,20","w":201,"k":{"J":14}},"\u00d9":{"d":"121,-261r-52,-31r9,-10r47,37xm192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"\u00da":{"d":"83,-265r47,-37r8,10r-51,31xm192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"\u00db":{"d":"107,-291r-44,30r-4,-5r44,-36r10,0r43,36r-5,5xm192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"\u00dd":{"d":"63,-265r46,-37r9,10r-51,31xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\u012d":11,"\u012b":11,"\u0129":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u0169":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14}},"\u00e1":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm84,-208r29,-51r12,6r-36,48","w":167},"\u00e3":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm109,-213v-24,0,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-12,20,-27,20","w":167},"\u00ec":{"d":"29,0r0,-179r9,0r0,179r-9,0xm31,-205r-35,-48r11,-6r30,51","w":72},"\u00ed":{"d":"29,0r0,-179r9,0r0,179r-9,0xm31,-208r29,-51r12,6r-36,48","w":72},"\u00f1":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm109,-213v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r7,4v-7,11,-11,20,-26,20","w":180},"\u00f2":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm91,-205r-35,-48r11,-6r30,51","w":171},"\u00f3":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm80,-208r30,-51r11,6r-35,48","w":171},"\u00fa":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm89,-208r30,-51r11,6r-35,48","w":186},"\u00e5":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm117,-231v0,17,-13,30,-32,30v-18,0,-31,-13,-31,-30v0,-16,15,-31,31,-31v17,0,32,14,32,31xm109,-231v1,-14,-10,-25,-24,-25v-13,0,-23,11,-23,25v0,13,10,24,23,24v13,0,25,-10,24,-24","w":167},"\u00fd":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0xm67,-208r29,-51r12,6r-36,48","w":147},"\u00ff":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0xm104,-234r13,0r0,13r-13,0r0,-13xm34,-234r14,0r0,13r-14,0r0,-13","w":147},"\u0100":{"d":"59,-284r89,0r0,9r-89,0r0,-9xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"\u0101":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm43,-221r89,0r0,9r-89,0r0,-9","w":167},"\u0102":{"d":"69,-299v3,36,67,36,70,0r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0xm168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"\u0103":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43xm53,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0","w":167},"\u0104":{"d":"229,54v-19,14,-58,5,-55,-21v2,-14,6,-24,16,-33r-22,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251v-20,7,-28,53,2,53v11,0,21,-10,25,1xm43,-72r122,0r-61,-169","w":208,"k":{"'":7}},"\u0105":{"d":"178,54v-19,14,-57,6,-54,-21v1,-14,5,-24,15,-33r0,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126v-15,12,-25,53,6,53v10,2,21,-11,24,1xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43","w":167},"\u0106":{"d":"83,-265r47,-37r8,10r-51,31xm105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81","w":187},"\u0107":{"d":"20,-89v-8,69,65,107,113,68r6,6v-13,9,-28,18,-49,18v-53,0,-75,-36,-79,-92v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68xm77,-208r30,-51r11,6r-35,48","w":145},"\u0108":{"d":"104,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5xm105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81","w":187},"\u0109":{"d":"20,-89v-8,69,65,107,113,68r6,6v-13,9,-28,18,-49,18v-53,0,-75,-36,-79,-92v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68xm84,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":145},"\u010a":{"d":"105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81xm96,-288r14,0r0,13r-14,0r0,-13","w":187},"\u010b":{"d":"20,-89v-8,69,65,107,113,68r6,6v-13,9,-28,18,-49,18v-53,0,-75,-36,-79,-92v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68xm80,-234r14,0r0,13r-14,0r0,-13","w":145},"\u010c":{"d":"147,-302r4,5r-42,36r-11,0r-44,-36r5,-5r44,30xm105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81","w":187},"\u010d":{"d":"20,-89v-8,69,65,107,113,68r6,6v-13,9,-28,18,-49,18v-53,0,-75,-36,-79,-92v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68xm131,-245r4,4r-42,40r-11,0r-44,-40r4,-5r45,34","w":145},"\u010e":{"d":"140,-302r4,5r-42,36r-11,0r-44,-36r4,-5r45,30xm196,-130v0,80,-16,133,-92,130r-75,0r0,-251r80,0v69,0,87,46,87,121xm106,-9v78,4,80,-63,80,-142v0,-59,-24,-91,-80,-91r-67,0r0,233r67,0","w":216,"k":{"J":14}},"\u010f":{"d":"166,-211r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0xm78,-180v34,-1,48,18,59,38r0,-118r8,0r0,260r-8,0v-1,-12,2,-27,-1,-37v-10,25,-29,40,-61,40v-51,0,-65,-41,-65,-93v1,-51,17,-89,68,-90xm77,-5v47,0,60,-40,60,-83v0,-46,-13,-83,-58,-84v-49,-1,-60,39,-60,83v0,45,11,84,58,84","w":181},"\u0110":{"d":"196,-130v0,80,-16,133,-92,130r-75,0r0,-131r-23,0r0,-9r23,0r0,-111r80,0v69,0,87,46,87,121xm106,-9v78,4,80,-63,80,-142v0,-59,-24,-91,-80,-91r-67,0r0,102r61,0r0,9r-61,0r0,122r67,0","w":216,"k":{"J":14}},"\u0111":{"d":"78,-180v34,-1,48,18,59,38r0,-69r-53,0r0,-7r53,0r0,-42r8,0r0,42r21,0r0,7r-21,0r0,211r-8,0v-1,-12,2,-27,-1,-37v-10,25,-29,40,-61,40v-51,0,-65,-41,-65,-93v1,-51,17,-89,68,-90xm77,-5v47,0,60,-40,60,-83v0,-46,-13,-83,-58,-84v-49,-1,-60,39,-60,83v0,45,11,84,58,84","w":162},"\u0112":{"d":"59,-284r90,0r0,9r-90,0r0,-9xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u0113":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm42,-221r89,0r0,9r-89,0r0,-9","w":167,"k":{"\u201d":7,"\u2019":7}},"\u0114":{"d":"67,-299v3,36,67,36,70,0r8,0v-1,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u0115":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm50,-239v5,34,66,39,70,0r8,0v-1,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0","w":167,"k":{"\u201d":7,"\u2019":7}},"\u0116":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251xm95,-288r13,0r0,13r-13,0r0,-13","w":187},"\u0117":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm80,-234r14,0r0,13r-14,0r0,-13","w":167,"k":{"\u201d":7,"\u2019":7}},"\u0118":{"d":"182,61v-34,1,-35,-44,-14,-61r-139,0r0,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0v0,18,-15,25,-15,41v0,23,26,25,42,16r3,6v-5,4,-16,7,-25,7","w":187},"\u0119":{"d":"168,43v-30,23,-75,-12,-46,-46v-62,20,-110,-16,-107,-85v2,-54,20,-91,71,-92v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14v11,10,-15,24,-12,41v-1,22,27,24,42,15xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0","w":167,"k":{"\u201d":7,"\u2019":7}},"\u011a":{"d":"145,-302r5,5r-43,36r-10,0r-44,-36r4,-5r45,30xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u011b":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm132,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":167,"k":{"\u201d":7,"\u2019":7}},"\u011c":{"d":"104,-291r-45,30r-4,-5r44,-36r10,0r43,36r-4,5xm18,-87v-4,-87,0,-165,86,-165v37,0,63,19,75,44r-8,4v-12,-22,-33,-40,-67,-40v-81,0,-78,77,-76,158v1,50,26,81,76,81v57,0,81,-44,76,-109r-59,0r0,-9r68,0v5,74,-17,126,-85,126v-56,0,-84,-35,-86,-90","w":208},"\u011d":{"d":"86,-180v33,-1,46,16,59,37r0,-36r8,0r0,178v6,66,-69,92,-118,60r5,-7v37,30,111,8,105,-48v-1,-14,2,-31,-1,-43v-10,23,-26,41,-59,41v-52,0,-66,-40,-67,-91v0,-52,17,-90,68,-91xm87,-6v46,0,58,-40,58,-85v0,-42,-13,-81,-58,-81v-47,0,-60,37,-60,83v0,46,13,83,60,83xm85,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":176},"\u011e":{"d":"69,-299v3,36,67,36,70,0r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0xm18,-87v-4,-87,0,-165,86,-165v37,0,63,19,75,44r-8,4v-12,-22,-33,-40,-67,-40v-81,0,-78,77,-76,158v1,50,26,81,76,81v57,0,81,-44,76,-109r-59,0r0,-9r68,0v5,74,-17,126,-85,126v-56,0,-84,-35,-86,-90","w":208},"\u011f":{"d":"86,-180v33,-1,46,16,59,37r0,-36r8,0r0,178v6,66,-69,92,-118,60r5,-7v37,30,111,8,105,-48v-1,-14,2,-31,-1,-43v-10,23,-26,41,-59,41v-52,0,-66,-40,-67,-91v0,-52,17,-90,68,-91xm87,-6v46,0,58,-40,58,-85v0,-42,-13,-81,-58,-81v-47,0,-60,37,-60,83v0,46,13,83,60,83xm53,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0","w":176},"\u0120":{"d":"18,-87v-4,-87,0,-165,86,-165v37,0,63,19,75,44r-8,4v-12,-22,-33,-40,-67,-40v-81,0,-78,77,-76,158v1,50,26,81,76,81v57,0,81,-44,76,-109r-59,0r0,-9r68,0v5,74,-17,126,-85,126v-56,0,-84,-35,-86,-90xm101,-288r13,0r0,13r-13,0r0,-13","w":208},"\u0121":{"d":"86,-180v33,-1,46,16,59,37r0,-36r8,0r0,178v6,66,-69,92,-118,60r5,-7v37,30,111,8,105,-48v-1,-14,2,-31,-1,-43v-10,23,-26,41,-59,41v-52,0,-66,-40,-67,-91v0,-52,17,-90,68,-91xm87,-6v46,0,58,-40,58,-85v0,-42,-13,-81,-58,-81v-47,0,-60,37,-60,83v0,46,13,83,60,83xm85,-234r13,0r0,13r-13,0r0,-13","w":176},"\u0122":{"d":"94,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0xm18,-87v-4,-87,0,-165,86,-165v37,0,63,19,75,44r-8,4v-12,-22,-33,-40,-67,-40v-81,0,-78,77,-76,158v1,50,26,81,76,81v57,0,81,-44,76,-109r-59,0r0,-9r68,0v5,74,-17,126,-85,126v-56,0,-84,-35,-86,-90","w":208},"\u0123":{"d":"105,-260r-8,34v8,-1,3,10,4,15r-14,0v-2,-22,7,-33,12,-49r6,0xm86,-180v33,-1,46,16,59,37r0,-36r8,0r0,178v6,66,-69,92,-118,60r5,-7v37,30,111,8,105,-48v-1,-14,2,-31,-1,-43v-10,23,-26,41,-59,41v-52,0,-66,-40,-67,-91v0,-52,17,-90,68,-91xm87,-6v46,0,58,-40,58,-85v0,-42,-13,-81,-58,-81v-47,0,-60,37,-60,83v0,46,13,83,60,83","w":176},"\u0124":{"d":"110,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5xm185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":222},"\u0125":{"d":"30,-291r-45,30r-4,-5r44,-36r10,0r43,36r-5,5xm95,-180v88,-5,59,102,64,180r-9,0v-5,-71,23,-175,-55,-172v-37,2,-62,25,-62,63r0,109r-9,0r0,-260r9,0r1,117v10,-22,31,-35,61,-37","w":183},"\u0126":{"d":"185,-123r-147,0r0,123r-9,0r0,-207r-21,0r0,-7r21,0r0,-37r9,0r0,37r147,0r0,-37r9,0r0,37r22,0r0,7r-22,0r0,207r-9,0r0,-123xm185,-132r0,-75r-147,0r0,75r147,0","w":222},"\u0127":{"d":"96,-168v-37,3,-61,25,-61,64r0,104r-9,0r0,-214r-21,0r0,-8r21,0r0,-38r9,0r0,38r87,0r0,8r-87,0r0,75v11,-21,31,-35,62,-37v87,-5,59,100,63,176r-8,0v-4,-70,22,-172,-56,-168","w":180},"\u0128":{"d":"37,-251r10,0r0,251r-10,0r0,-251xm67,-267v-24,-4,-52,-28,-67,-1r-7,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,19,-26,20","w":86},"\u012a":{"d":"-7,-284r89,0r0,9r-89,0r0,-9xm33,-251r9,0r0,251r-9,0r0,-251","w":74},"\u012c":{"d":"17,-299v3,36,67,36,70,0r8,0v-2,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0xm48,-251r9,0r0,251r-9,0r0,-251","w":97},"\u012e":{"d":"70,54v-19,15,-58,5,-55,-21v2,-14,6,-24,16,-33r0,-251r9,0r0,251v-15,12,-25,53,6,53v10,2,21,-11,24,1","w":71},"\u012f":{"d":"68,54v-19,14,-57,6,-54,-21v1,-14,5,-24,15,-33r0,-179r9,0r0,179v-15,12,-25,53,6,53v10,2,21,-11,24,1xm27,-251r12,0r0,12r-12,0r0,-12","w":66},"\u0130":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm28,-288r14,0r0,13r-14,0r0,-13","w":71},"\u0132":{"d":"31,-251r10,0r0,251r-10,0r0,-251xm187,-68v6,66,-71,87,-118,54r6,-8v40,32,103,12,103,-53r0,-176r9,0r0,183","w":216},"\u0133":{"d":"28,-251r12,0r0,12r-12,0r0,-12xm30,0r0,-179r9,0r0,179r-9,0xm81,-251r12,0r0,11r-12,0r0,-11xm92,29v-1,29,-15,46,-47,44v-1,-5,0,-10,6,-8v23,-2,31,-13,31,-38r0,-205r10,0r0,207","w":122},"\u0134":{"d":"128,-292r-44,30r-4,-4r43,-36r11,0r42,36r-4,4xm132,-69v7,66,-72,90,-117,54r6,-7v40,32,102,11,102,-54r0,-175r9,0r0,182","w":158},"\u0135":{"d":"46,29v-1,28,-14,46,-46,44v-1,-5,0,-10,6,-8v23,-2,30,-14,31,-38r0,-205r9,0r0,207xm41,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":82},"\u0136":{"d":"92,74r8,-33v-8,1,-3,-11,-4,-16r15,0v2,23,-8,33,-13,49r-6,0xm106,-149r-68,84r0,65r-9,0r0,-251r9,0r0,172r140,-172r10,0r-76,95r92,156r-10,0","w":216,"k":{"v":7,"w":7,"y":7,"\u0175":7,"\u1e81":7,"\u1e83":7,"\u1e85":7,"\u1ef3":7,"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":4,"\ue114":4,"\ue171":4,"\ue17a":4,"\ue17b":4,"\ue17c":4,"\ue116":11,"\ue11b":11,"\ue138":11,"\ue172":11,"\ue17d":11}},"\u0137":{"d":"80,81r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0xm86,-108r-51,59r0,49r-9,0r0,-260r9,0r0,198r103,-117r11,0r-57,65r74,114r-10,0","w":167},"\u0138":{"d":"86,-108r-51,59r0,49r-9,0r0,-179r9,0r0,117r103,-117r11,0r-57,65r75,114r-11,0","w":167},"\u0139":{"d":"29,-265r47,-37r8,10r-51,31xm29,-251r9,0r0,242r139,0r0,9r-148,0r0,-251","w":187,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u201d":25,"\u2019":25}},"\u013a":{"d":"27,-273r46,-36r9,9r-51,32xm35,-38v1,23,9,28,32,29v-1,3,2,10,-3,9v-26,-1,-38,-9,-38,-35r0,-225r9,0r0,222","w":74},"\u013b":{"d":"94,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0xm29,-251r9,0r0,242r139,0r0,9r-148,0r0,-251","w":187,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u201d":25,"\u2019":25}},"\u013c":{"d":"31,81r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0xm35,-38v1,23,9,28,32,29v-1,3,2,10,-3,9v-26,-1,-38,-9,-38,-35r0,-225r9,0r0,222","w":74},"\u013d":{"d":"119,-201r8,-34v-6,0,-2,-11,-3,-16r14,0v2,23,-8,34,-13,50r-6,0xm29,-251r9,0r0,242r139,0r0,9r-148,0r0,-251","w":187,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u201d":25,"\u2019":25}},"\u013e":{"d":"62,-210r8,-34v-6,0,-2,-11,-3,-16r14,0v2,23,-8,34,-13,50r-6,0xm35,-38v1,23,9,28,32,29v-1,3,2,10,-3,9v-26,-1,-38,-9,-38,-35r0,-225r9,0r0,222","w":83},"\u013f":{"d":"29,-251r9,0r0,242r139,0r0,9r-148,0r0,-251xm101,-144r14,0r0,13r-14,0r0,-13","w":187,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u201d":25,"\u2019":25}},"\u0140":{"d":"68,-144r13,0r0,13r-13,0r0,-13xm35,-38v1,23,9,28,32,29v-1,3,2,10,-3,9v-26,-1,-38,-9,-38,-35r0,-225r9,0r0,222","w":86},"\u0141":{"d":"35,-101r-31,18r-4,-7r35,-21r0,-140r10,0r0,135r49,-28r4,7r-53,31r0,97r139,0r0,9r-149,0r0,-101","w":193,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u00d5":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u201d":25,"\u2019":25}},"\u0142":{"d":"78,0v-61,6,-36,-72,-41,-122r-32,19r-5,-7r37,-21r0,-129r9,0r0,123r39,-22r5,7r-44,25v7,44,-22,121,32,118r0,9","w":89},"\u0143":{"d":"94,-265r46,-37r9,10r-51,31xm39,-235r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,251r-10,0","w":236},"\u0144":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm80,-208r29,-51r12,6r-36,48","w":180},"\u0145":{"d":"105,67r9,-34v-8,1,-3,-10,-4,-15r14,0v2,22,-7,33,-12,49r-7,0xm39,-235r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,251r-10,0","w":236},"\u0146":{"d":"78,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37","w":180},"\u0147":{"d":"162,-302r5,5r-43,36r-10,0r-44,-36r4,-5r44,30xm39,-235r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,251r-10,0","w":236},"\u0148":{"d":"94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm129,-245r5,4r-43,40r-10,0r-44,-40r4,-5r44,34","w":180},"\u0149":{"d":"4,-180r9,-34v-8,1,-3,-11,-4,-16r14,0v2,23,-8,34,-13,50r-6,0xm108,-180v88,-5,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,31,-35,62,-37","w":194},"\u014a":{"d":"208,24v3,34,-32,42,-55,28v2,-14,16,0,24,-1v24,1,23,-25,22,-50r-160,-236r0,235r-9,0r0,-251r10,0r159,236r0,-236r9,0r0,275","w":242},"\u014b":{"d":"148,-118v1,-36,-22,-53,-56,-54v-79,-2,-59,97,-61,172r-8,0r0,-179r8,0v1,11,-2,25,1,34v9,-23,32,-34,61,-35v40,-1,64,21,64,60r0,144v3,34,-31,42,-55,28v2,-14,16,-1,24,-1v13,0,23,-10,22,-24r0,-145","w":180},"\u014c":{"d":"58,-284r89,0r0,9r-89,0r0,-9xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u014d":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm44,-221r89,0r0,9r-89,0r0,-9","w":171},"\u014e":{"d":"67,-299v3,36,67,36,70,0r8,0v-1,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u014f":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm50,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":171},"\u0150":{"d":"109,-265r47,-37r9,10r-52,31xm73,-265r47,-37r9,10r-52,31xm15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201,"k":{"J":14}},"\u0151":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83xm68,-208r30,-51r11,6r-36,48xm99,-208r30,-51r11,6r-35,48","w":171},"\u0154":{"d":"76,-265r46,-37r9,10r-51,31xm194,-188v0,42,-26,64,-64,68r61,120r-12,0r-60,-119r-80,0r0,119r-9,0r0,-251v75,0,165,-13,164,63xm184,-188v-1,-65,-79,-53,-145,-54r0,114v68,0,147,10,145,-60","w":208},"\u0155":{"d":"35,-144v12,-27,44,-44,84,-33r-2,9v-42,-15,-82,12,-82,58r0,110r-9,0r0,-179r9,0r0,35xm50,-208r30,-51r11,6r-36,48","w":117,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e3":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11}},"\u0156":{"d":"94,74r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0xm194,-188v0,42,-26,64,-64,68r61,120r-12,0r-60,-119r-80,0r0,119r-9,0r0,-251v75,0,165,-13,164,63xm184,-188v-1,-65,-79,-53,-145,-54r0,114v68,0,147,10,145,-60","w":208},"\u0157":{"d":"21,81r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0xm35,-144v12,-27,44,-44,84,-33r-2,9v-42,-15,-82,12,-82,58r0,110r-9,0r0,-179r9,0r0,35","w":117,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e3":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11}},"\u0158":{"d":"142,-302r4,5r-42,36r-11,0r-44,-36r5,-5r44,30xm194,-188v0,42,-26,64,-64,68r61,120r-12,0r-60,-119r-80,0r0,119r-9,0r0,-251v75,0,165,-13,164,63xm184,-188v-1,-65,-79,-53,-145,-54r0,114v68,0,147,10,145,-60","w":208},"\u0159":{"d":"35,-144v12,-27,44,-44,84,-33r-2,9v-42,-15,-82,12,-82,58r0,110r-9,0r0,-179r9,0r0,35xm107,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":117,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e3":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11}},"\u015a":{"d":"72,-265r47,-37r8,10r-51,31xm178,-63v0,75,-119,79,-167,42r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,145,25,145,123","w":188},"\u015b":{"d":"28,-132v6,58,119,16,117,86v-2,60,-100,59,-136,29r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26xm73,-208r29,-51r12,6r-36,48","w":163},"\u015c":{"d":"93,-291r-44,30r-4,-5r44,-36r10,0r42,36r-4,5xm178,-63v0,75,-119,79,-167,42r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,145,25,145,123","w":188},"\u015d":{"d":"28,-132v6,58,119,16,117,86v-2,60,-100,59,-136,29r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26xm78,-234r-44,33r-4,-5r43,-39r11,0r42,39r-4,5","w":163},"\u015e":{"d":"122,42v0,-15,-20,-18,-33,-20v0,-6,8,-17,4,-20v-36,1,-59,-9,-82,-23r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,150,25,145,123v-2,41,-32,63,-75,65r-5,15v18,2,32,7,33,26v0,24,-33,29,-55,20v2,-16,47,10,46,-21","w":188},"\u015f":{"d":"28,-132v6,58,121,16,117,86v-1,29,-25,47,-59,48r-5,15v19,2,32,8,33,26v1,24,-34,29,-56,20v3,-15,46,9,46,-21v0,-15,-19,-17,-32,-20v0,-6,8,-16,4,-19v-27,-1,-51,-7,-67,-20r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26","w":163},"\u0162":{"d":"75,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0xm91,0r-9,0r0,-242r-78,0r0,-9r163,0r0,9r-76,0r0,242","w":170,"k":{"\ue117":25,"\u012d":2,"\u012b":2,"\u0129":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f5":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"\u0163":{"d":"36,81r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0xm42,-41v1,24,12,36,40,33r0,8v-30,2,-49,-8,-49,-36r0,-135r-26,0r0,-8r26,0r0,-48r9,0r0,48r36,0r0,8r-36,0r0,130","w":90},"\u0164":{"d":"129,-302r4,5r-42,36r-11,0r-44,-36r5,-5r44,30xm91,0r-9,0r0,-242r-78,0r0,-9r163,0r0,9r-76,0r0,242","w":170,"k":{"\ue117":25,"\u012d":2,"\u012b":2,"\u0129":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f5":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"\u0165":{"d":"82,-210r9,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-7,0xm48,-41v0,25,11,36,39,33r0,8v-30,2,-49,-8,-49,-36r0,-135r-26,0r0,-8r26,0r0,-48r10,0r0,48r36,0r0,8r-36,0r0,130","w":100},"\u0166":{"d":"91,-138r57,0r0,7r-57,0r0,131r-9,0r0,-131r-58,0r0,-7r58,0r0,-104r-78,0r0,-9r163,0r0,9r-76,0r0,104","w":170,"k":{"\ue117":25,"\u012d":2,"\u012b":2,"\u0129":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f5":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"\u0167":{"d":"82,0v-58,10,-50,-47,-49,-98r-26,0r0,-7r26,0r0,-66r-26,0r0,-8r26,0r0,-48r9,0r0,48r36,0r0,8r-36,0r0,66r36,0r0,7r-36,0v3,42,-14,97,40,90r0,8","w":90},"\u0168":{"d":"192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171xm134,-267v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-12,20,-27,20","w":216},"\u0169":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm117,-213v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-12,20,-27,20","w":186},"\u016a":{"d":"59,-284r90,0r0,9r-90,0r0,-9xm192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"\u016b":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm47,-221r89,0r0,9r-89,0r0,-9","w":186},"\u016c":{"d":"192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171xm70,-293v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-3,39,-67,50,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":216},"\u016d":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm58,-239v3,16,17,28,35,28v19,0,29,-10,34,-28r8,0v-1,40,-68,49,-81,13v-2,-4,-3,-9,-4,-13r8,0","w":186},"\u016e":{"d":"192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171xm139,-290v-1,17,-12,31,-31,31v-19,0,-31,-12,-31,-31v-1,-17,14,-30,31,-30v18,0,32,13,31,30xm132,-290v0,-13,-11,-24,-24,-24v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24","w":216},"\u016f":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm121,-231v0,18,-13,29,-31,30v-19,0,-29,-13,-31,-30v-1,-17,15,-31,31,-31v17,0,31,14,31,31xm114,-231v0,-13,-11,-25,-24,-25v-13,0,-24,12,-24,25v0,13,11,24,24,24v13,0,24,-11,24,-24","w":186},"\u0170":{"d":"117,-265r46,-37r9,10r-51,31xm81,-265r46,-37r9,10r-51,31xm192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171","w":216},"\u0171":{"d":"89,-6v37,-2,62,-24,62,-62r0,-111r8,0r0,179r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173xm68,-208r30,-51r11,6r-36,48xm99,-208r30,-51r11,6r-35,48","w":186},"\u0172":{"d":"146,53v-18,14,-54,7,-54,-20v0,-12,4,-24,12,-31v-50,-4,-80,-33,-80,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,171v-1,50,-31,78,-78,82v-15,12,-21,51,8,50v10,2,21,-11,24,1","w":216},"\u0173":{"d":"189,54v-19,15,-57,5,-54,-21v2,-14,6,-24,16,-33v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173v37,-2,62,-24,62,-62r0,-111r8,0r0,179v-15,12,-25,53,6,53v10,2,21,-11,24,1","w":186},"\u0174":{"d":"145,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5xm221,0r-10,0r-66,-234r-66,234r-10,0r-60,-251r9,0r57,238r66,-238r9,0r66,238r57,-238r9,0","w":288,"k":{"\u012d":7,"\u012b":7,"\u0129":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e3":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u0175":{"d":"192,0r-10,0r-57,-163r-57,163r-10,0r-55,-178r10,0r51,166r56,-166r10,0r57,166r50,-166r10,0xm125,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":250,"k":{"e":7}},"\u0176":{"d":"83,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5xm87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104","w":165,"k":{"\u012d":11,"\u012b":11,"\u0129":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u0169":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14}},"\u0177":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0xm77,-234r-45,33r-4,-5r44,-39r10,0r43,39r-4,5","w":147},"\u0179":{"d":"75,-265r46,-37r9,10r-52,31xm12,-9r138,-233r-132,0r0,-9r143,0r0,9r-139,233r139,0r0,9r-149,0r0,-9","w":172},"\u017a":{"d":"13,-7r113,-164r-108,0r0,-7r118,0r0,7r-113,163r113,0r0,8r-123,0r0,-7xm73,-208r29,-51r12,6r-36,48","w":149},"\u017b":{"d":"12,-9r138,-233r-132,0r0,-9r143,0r0,9r-139,233r139,0r0,9r-149,0r0,-9xm84,-288r14,0r0,13r-14,0r0,-13","w":172},"\u017c":{"d":"13,-7r113,-164r-108,0r0,-7r118,0r0,7r-113,163r113,0r0,8r-123,0r0,-7xm72,-234r14,0r0,13r-14,0r0,-13","w":149},"\u01fc":{"d":"209,-265r46,-37r9,10r-51,31xm162,-63r-111,0r-39,63r-12,0r157,-251r154,0r0,9r-139,0r0,110r119,0r0,9r-119,0r0,114r139,0r0,9r-149,0r0,-63xm162,-72r0,-169r-105,169r105,0","w":320},"\u01fd":{"d":"211,-180v53,0,69,38,69,91r-132,0v0,50,16,85,67,84v16,0,31,-5,44,-14r5,7v-38,28,-107,15,-117,-29v-9,53,-135,66,-135,-5v0,-58,68,-52,127,-51v5,-50,-11,-81,-63,-74v-18,2,-32,7,-45,15r-5,-6v30,-27,121,-29,122,24v9,-26,30,-41,63,-42xm76,-5v48,0,69,-30,63,-84v-51,1,-117,-11,-118,41v0,30,25,43,55,43xm270,-96v-2,-44,-17,-77,-59,-77v-42,0,-61,33,-62,77r121,0xm148,-208r30,-51r11,6r-35,48","w":287},"\u01fe":{"d":"15,-87v-5,-88,1,-167,86,-165v28,0,48,9,61,24v8,-7,11,-30,23,-20r-17,27v23,28,17,84,17,134v0,56,-30,90,-84,90v-29,0,-49,-9,-63,-25v-8,7,-12,29,-23,19r17,-26v-10,-15,-16,-35,-17,-58xm101,-6v78,1,77,-78,74,-158v0,-18,-4,-34,-13,-48r-119,181v12,16,32,24,58,25xm157,-219v-12,-15,-30,-24,-56,-24v-80,-2,-79,77,-76,157v0,18,4,34,13,48xm83,-265r47,-37r8,10r-51,31","w":201,"k":{"J":14}},"\u01ff":{"d":"30,-23v-29,-51,-21,-157,57,-157v21,0,37,6,49,19v7,-6,12,-25,21,-14v-4,7,-17,14,-14,21v28,53,18,156,-58,156v-24,0,-39,-7,-50,-19v-6,6,-11,24,-20,13xm86,-5v68,0,73,-94,50,-143r-95,124v8,10,26,19,45,19xm131,-154v-9,-11,-26,-17,-45,-18v-67,-5,-74,91,-50,141xm76,-208r30,-51r11,6r-35,48","w":171},"\u0129":{"d":"69,-213v-24,0,-52,-27,-67,-1r-7,-4v22,-47,73,18,94,-19r7,4v-7,11,-12,20,-27,20xm40,0r0,-179r9,0r0,179r-9,0","w":84},"\u012b":{"d":"35,0r0,-179r9,0r0,179r-9,0xm-5,-221r89,0r0,9r-89,0r0,-9","w":77},"\u012d":{"d":"39,0r0,-179r9,0r0,179r-9,0xm8,-241v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":83},"\u0401":{"d":"130,-284r13,0r0,13r-13,0r0,-13xm66,-284r13,0r0,13r-13,0r0,-13xm29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u0403":{"d":"77,-265r47,-37r8,10r-51,31xm39,0r-10,0r0,-251r148,0r0,9r-138,0r0,242","w":179,"k":{"\u044f":50,"\u0447":40,"\u0436":43,"\u0431":29,"\u042f":7,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0444":40,"\u0454":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u044e":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0405":{"d":"178,-63v0,75,-119,79,-167,42r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,145,25,145,123","w":188},"\u0406":{"d":"31,-251r9,0r0,251r-9,0r0,-251","w":71},"\u0407":{"d":"31,-251r9,0r0,251r-9,0r0,-251xm64,-298r14,0r0,13r-14,0r0,-13xm-6,-298r14,0r0,13r-14,0r0,-13","w":71},"\u0408":{"d":"132,-68v6,65,-71,88,-117,54r6,-8v40,32,102,12,102,-53r0,-176r9,0r0,183","w":158},"\u0410":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169","w":208,"k":{"\u042a":11,"\u0427":14,"\u040b":11,"\u0402":11,"\u0422":11}},"\u0412":{"d":"194,-66v2,79,-88,66,-165,66r0,-251v74,0,160,-12,159,63v0,32,-20,50,-44,59v31,6,49,28,50,63xm179,-188v1,-63,-76,-55,-141,-54r0,109v65,0,141,10,141,-55xm184,-67v1,-68,-78,-59,-146,-58r0,116r83,0v40,1,62,-22,63,-58","w":208},"\u0413":{"d":"39,0r-10,0r0,-251r148,0r0,9r-138,0r0,242","w":179,"k":{"\u044f":50,"\u0447":40,"\u0436":43,"\u0431":29,"\u042f":7,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0444":40,"\u0454":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u044e":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0415":{"d":"29,-251r148,0r0,9r-138,0r0,110r118,0r0,9r-118,0r0,114r138,0r0,9r-148,0r0,-251","w":187},"\u041a":{"d":"29,0r0,-251r9,0r0,116v50,-2,104,10,119,-39r24,-77r9,0v-18,41,-17,103,-59,119v49,16,45,86,64,132r-10,0v-20,-46,-11,-126,-72,-126r-75,0r0,126r-9,0","w":201},"\u041c":{"d":"231,-230r-93,190r-7,0r-94,-190r0,230r-9,0r0,-251r11,0r96,197r96,-197r9,0r0,251r-9,0r0,-230","w":265},"\u041d":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123","w":222},"\u041e":{"d":"15,-87v-5,-88,1,-165,86,-165v84,0,88,78,84,165v-2,55,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":201},"\u041f":{"d":"185,-242r-147,0r0,242r-9,0r0,-251r165,0r0,251r-9,0r0,-242","w":222},"\u0420":{"d":"193,-179v-2,42,-27,67,-72,68r-82,0r0,111r-9,0r0,-251v79,-1,167,-11,163,72xm183,-180v0,-70,-74,-64,-144,-62r0,122v69,1,144,9,144,-60","w":196,"k":{"\u0434":18,",":36,"\u0459":18,"\u043b":18,"\u0414":22,"\u0430":7,"\u0410":11,"\u2026":36,".":36}},"\u0421":{"d":"105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81","w":187},"\u0422":{"d":"91,0r-9,0r0,-242r-78,0r0,-9r163,0r0,9r-76,0r0,242","w":170,"k":{"\u041e":7,"\u0414":29,"\u0404":7,"\u0424":11,"\u0421":7,"\u0410":18}},"\u0424":{"d":"135,-239v71,2,111,40,111,110v0,70,-45,104,-111,108r0,21r-9,0r0,-22v-69,-3,-109,-36,-109,-107v0,-68,37,-108,109,-109r0,-13r9,0r0,12xm135,-30v113,15,136,-166,39,-194v-12,-4,-26,-6,-39,-6r0,200xm126,-230v-63,3,-100,37,-100,102v0,63,35,97,100,98r0,-200","w":260,"k":{"\u0434":18,",":14,"\u0459":18,"\u043b":18,"\u0414":7,"\u2026":14,".":14}},"\u0425":{"d":"88,-120r-71,120r-11,0r77,-129r-71,-122r10,0r66,113r66,-113r10,0r-71,122r77,129r-11,0","w":176},"\u0430":{"d":"139,-22v-24,38,-127,37,-127,-26v0,-58,70,-48,127,-48v4,-49,-8,-79,-57,-76v-22,1,-39,5,-53,18r-6,-6v34,-31,125,-33,125,34r0,126r-9,0r0,-22xm76,-5v30,0,63,-8,63,-41r0,-43v-51,2,-118,-13,-118,41v0,30,25,43,55,43","w":167},"\u0435":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0","w":167},"\u043a":{"d":"26,0r0,-178r9,0r0,83v39,-2,79,9,91,-28r18,-55r8,0v-12,29,-13,72,-41,85v33,13,30,61,44,93r-9,0v-14,-32,-8,-88,-53,-88r-58,0r0,88r-9,0","w":167},"\u043e":{"d":"15,-90v0,-55,19,-90,72,-90v53,0,70,37,70,92v0,56,-21,90,-72,90v-54,0,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83","w":171,"k":{"\u0459":7,"\u043b":7,"\u0434":7}},"\u043f":{"d":"147,-171r-117,0r0,171r-8,0r0,-178r134,0r0,178r-9,0r0,-171","w":177},"\u0440":{"d":"88,1v-32,1,-46,-17,-58,-37r0,108r-9,0r0,-251r9,0v1,11,-2,27,1,36v11,-23,27,-38,59,-38v53,0,67,40,67,93v0,49,-17,89,-69,89xm90,-174v-81,-1,-81,168,-2,168v47,0,60,-39,60,-84v0,-46,-12,-83,-58,-84","w":176},"\u0441":{"d":"20,-89v-8,69,65,107,113,68r6,6v-13,9,-28,18,-49,18v-53,0,-75,-36,-79,-92v-5,-76,71,-115,128,-74r-6,6v-47,-38,-122,-1,-113,68","w":145},"\u0443":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0","w":147,"k":{"\u0434":14,"\u043b":14,"\u0459":14}},"\u0445":{"d":"131,0r-54,-86r-54,86r-10,0r58,-91r-55,-87r10,0r51,80r50,-80r12,0r-57,87r60,91r-11,0","w":154},"\u0451":{"d":"86,-180v53,-1,70,37,70,90r-132,0v0,50,17,84,67,85v18,0,34,-7,44,-14r5,7v-57,37,-131,2,-125,-76v4,-54,20,-91,71,-92xm146,-98v7,-66,-65,-98,-104,-55v-11,13,-17,31,-18,55r122,0xm117,-237r13,0r0,13r-13,0r0,-13xm47,-237r13,0r0,13r-13,0r0,-13","w":167},"\u0455":{"d":"28,-132v6,58,119,16,117,86v-2,60,-100,59,-136,29r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26","w":163},"\u0456":{"d":"27,-251r12,0r0,12r-12,0r0,-12xm29,0r0,-179r9,0r0,179r-9,0","w":66},"\u0457":{"d":"62,-234r13,0r0,13r-13,0r0,-13xm-8,-234r13,0r0,13r-13,0r0,-13xm29,0r0,-179r9,0r0,179r-9,0","w":66},"\u0458":{"d":"33,-251r12,0r0,11r-12,0r0,-11xm44,29v-1,29,-15,46,-47,44v-1,-5,0,-10,6,-8v23,-2,31,-13,31,-38r0,-205r10,0r0,207","w":74},"\u045e":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0xm41,-239v5,34,66,39,70,0r8,0v-1,40,-68,49,-81,13v-2,-4,-4,-9,-5,-13r8,0","w":147,"k":{"\u0434":14,"\u043b":14,"\u0459":14}},"\u0402":{"d":"161,-169v91,0,96,144,26,168v-11,4,-25,6,-40,6r0,-8v53,1,80,-29,79,-80v-1,-46,-18,-78,-65,-78v-31,0,-54,16,-70,36r0,125r-9,0r0,-242r-78,0r0,-9r193,0r0,9r-106,0r0,104v15,-16,40,-31,70,-31","w":241},"\u0404":{"d":"105,-5v36,0,56,-20,68,-45r8,3v-11,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-41,-66,-40v-63,0,-82,45,-77,112r104,0r0,9r-104,0v-5,69,13,117,77,118","w":183},"\u0409":{"d":"316,-67v0,80,-87,67,-164,67r0,-242r-93,0r0,120v0,62,-10,107,-51,127r-5,-9v65,-31,41,-153,46,-247r113,0r0,118v74,-2,154,-8,154,66xm306,-67v0,-67,-76,-59,-144,-58r0,116v67,-1,144,13,144,-58","w":325,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u040a":{"d":"315,-67v0,80,-87,67,-163,67r0,-125r-113,0r0,125r-10,0r0,-251r10,0r0,118r113,0r0,-118r10,0r0,118v74,-2,153,-7,153,66xm305,-67v0,-67,-76,-59,-143,-58r0,116v66,-1,143,13,143,-58","w":321,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u040b":{"d":"91,-138v37,-41,137,-48,137,35r0,103r-9,0v-4,-68,20,-164,-54,-161v-30,2,-54,15,-74,34r0,127r-9,0r0,-242r-78,0r0,-9r193,0r0,9r-106,0r0,104","w":238},"\u040f":{"d":"116,0r0,60r-13,0r0,-60r-76,0r0,-250r10,0r0,242r145,0r0,-242r10,0r0,250r-76,0","w":219},"\u0411":{"d":"192,-67v0,80,-87,67,-163,67r0,-251r141,0r0,9r-131,0r0,109v74,-2,153,-7,153,66xm182,-67v0,-67,-76,-59,-143,-58r0,116v66,-1,143,13,143,-58","w":203},"\u0414":{"d":"214,-9r16,0r0,66r-11,0r0,-57r-201,0r0,57r-11,0r0,-66v54,-11,51,-77,55,-139r6,-103r146,0r0,242xm204,-242r-127,0v-6,84,1,189,-42,233r169,0r0,-233","w":247},"\u0416":{"d":"146,-126v-48,0,-92,-6,-106,41r-25,85r-10,0v20,-46,16,-115,64,-132v-43,-15,-41,-78,-59,-119r9,0v21,43,14,113,74,116r53,0r0,-116r9,0r0,116v46,0,88,4,102,-39r25,-77r9,0v-18,41,-17,104,-60,119v50,15,44,87,65,132r-10,0v-21,-45,-11,-121,-72,-126r-59,0r0,126r-9,0r0,-126","w":300},"\u0417":{"d":"133,-135v85,27,47,143,-37,138v-42,-2,-73,-19,-87,-50r8,-3v15,26,40,45,80,45v44,0,75,-24,75,-70v0,-47,-41,-59,-93,-55r0,-9v50,4,87,-10,87,-54v0,-73,-124,-61,-142,-12r-7,-4v20,-56,160,-65,159,15v0,31,-17,51,-43,59","w":196},"\u0418":{"d":"196,0r0,-237r-159,237r-10,0r0,-251r9,0r0,237r160,-237r9,0r0,251r-9,0","w":232},"\u0419":{"d":"196,0r0,-237r-159,237r-10,0r0,-251r9,0r0,237r160,-237r9,0r0,251r-9,0xm82,-299v3,35,68,37,70,0r8,0v-1,40,-68,49,-81,13v-2,-5,-8,-15,3,-13","w":232},"\u041b":{"d":"2,-4v64,-32,42,-153,46,-247r142,0r0,251r-11,0r0,-242r-121,0r0,120v1,63,-11,107,-52,127","w":220},"\u0423":{"d":"166,-251r-91,227v-8,18,-23,29,-51,27r0,-9v41,5,44,-29,57,-56r-76,-189r10,0r71,178r70,-178r10,0","w":169,"k":{"\u044f":18,"\u0447":18,"\u0431":14,"\u0414":29,"\u0445":14,"\u0430":22,"\u0424":7,"\u0410":25,",":25,".":25,"\u2026":25,"\u041e":4,"\u0421":4,"\u0404":4,"\u0435":22,"\u043e":22,"\u0441":22,"\u0451":22,"\u0444":22,"\u0454":22,"\u043a":25,"\u043f":25,"\u0440":25,"\u0456":25,"\u0457":25,"\u0432":25,"\u0433":25,"\u0438":25,"\u043c":25,"\u043d":25,"\u0446":25,"\u0448":25,"\u0449":25,"\u044c":25,"\u044e":25,"\u0453":25,"\u045a":25,"\u045f":25,"\u0491":25,"\u045c":25,"\u0439":25,"\u0443":14,"\u045e":14,"\u0434":32,"\u043b":32,"\u0459":32,"\u0437":14,"\u044d":14,"\u04d9":14,"\u044a":7,"\u0442":7}},"\u0426":{"d":"29,0r0,-251r9,0r0,243r147,0r0,-243r9,0r0,243r16,0r0,64r-11,0r0,-56r-170,0","w":219},"\u0427":{"d":"31,-182v-9,82,96,77,138,43r0,-112r10,0r0,251r-10,0r0,-129v-43,35,-157,36,-147,-48r0,-74r9,0r0,69","w":207},"\u0428":{"d":"27,0r0,-251r10,0r0,243r129,0r0,-243r10,0r0,243r133,0r0,-243r10,0r0,251r-292,0","w":345},"\u0429":{"d":"27,0r0,-251r10,0r0,243r129,0r0,-243r10,0r0,243r132,0r0,-243r11,0r0,243r15,0r0,64r-10,0r0,-56r-297,0","w":345},"\u042a":{"d":"230,-67v0,80,-87,67,-163,67r0,-241r-64,0r0,-10r74,0r0,118v74,-2,153,-7,153,66xm220,-67v0,-67,-76,-59,-143,-58r0,116v66,-1,143,13,143,-58","w":244,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u042b":{"d":"218,0r0,-251r10,0r0,251r-10,0xm192,-67v0,80,-87,67,-163,67r0,-251r10,0r0,118v74,-2,153,-7,153,66xm182,-67v0,-67,-76,-59,-143,-58r0,116v66,-1,143,13,143,-58","w":257},"\u042c":{"d":"192,-67v0,80,-87,67,-163,67r0,-251r10,0r0,118v74,-2,153,-7,153,66xm182,-67v0,-67,-76,-59,-143,-58r0,116v66,-1,143,13,143,-58","w":208,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u042d":{"d":"166,-165v4,89,0,169,-86,168v-37,0,-67,-22,-78,-50r8,-3v11,26,34,45,69,45v65,-1,83,-49,78,-120r-104,0r0,-9r104,0v3,-64,-12,-110,-73,-110v-33,0,-57,16,-67,40r-8,-4v12,-25,38,-44,75,-44v55,0,80,34,82,87","w":187},"\u042e":{"d":"81,-131v-5,-72,14,-120,81,-121v84,-1,81,80,81,165v0,54,-29,90,-81,90v-68,0,-87,-52,-81,-126r-42,0r0,123r-10,0r0,-251r10,0r0,120r42,0xm233,-88v2,-76,6,-155,-70,-155v-79,0,-74,79,-72,157v1,49,24,80,72,80v49,0,68,-34,70,-82","w":260},"\u042f":{"d":"23,-186v0,-76,87,-65,163,-65r0,251r-9,0r0,-121v-54,3,-117,-15,-132,41r-21,80r-10,0v16,-43,14,-105,53,-125v-27,-7,-44,-27,-44,-61xm33,-186v0,69,78,55,144,56r0,-112v-66,1,-144,-12,-144,56","w":215},"\u0431":{"d":"85,2v-92,5,-83,-128,-58,-195v15,-42,66,-53,111,-69r2,8v-60,19,-121,42,-115,122v10,-20,32,-40,62,-40v50,0,68,33,68,86v0,55,-19,85,-70,88xm146,-84v0,-53,-14,-79,-59,-79v-45,0,-64,35,-64,80v0,48,16,78,61,78v45,0,62,-29,62,-79","w":168},"\u0432":{"d":"94,-178v59,-10,72,70,27,85v20,6,33,20,33,45v1,61,-74,47,-133,48r0,-178r73,0xm30,-96v48,-1,109,10,110,-37v1,-47,-62,-38,-110,-38r0,75xm30,-8v50,-1,116,11,115,-40v0,-51,-64,-40,-115,-41r0,81","w":162},"\u0433":{"d":"30,-171r0,171r-9,0r0,-178r119,0r0,7r-110,0","w":140,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0434":{"d":"184,47r-9,0r0,-47r-159,0r0,47r-10,0r0,-56v61,-8,39,-107,49,-169r116,0r0,169r13,0r0,56xm64,-171v-4,60,0,131,-32,162r130,0r0,-162r-98,0","w":203},"\u0436":{"d":"120,-95r0,-84r9,0r0,84v37,-1,73,7,84,-28r17,-55r8,0v-13,29,-12,73,-41,85v34,12,31,61,45,93r-9,0v-14,-32,-8,-88,-53,-88r-51,0r0,88r-9,0r0,-88v-38,2,-76,-9,-87,29r-17,59r-9,0v13,-33,12,-80,45,-93v-29,-12,-28,-56,-41,-85r8,0v13,31,11,83,52,83r49,0","w":249},"\u0437":{"d":"120,-134v2,-48,-78,-44,-104,-22r-5,-6v31,-26,122,-28,119,28v-1,21,-15,35,-34,41v66,21,34,102,-30,96v-24,-2,-48,-6,-62,-18r5,-6v31,24,117,24,115,-28v-1,-36,-33,-41,-71,-40r0,-7v36,2,65,-6,67,-38","w":146},"\u0438":{"d":"149,0r0,-164r-121,164r-9,0r0,-178r9,0r0,165r122,-165r8,0r0,178r-9,0","w":177},"\u043b":{"d":"2,-3v48,-22,35,-105,37,-175r110,0r0,178r-9,0r0,-171r-92,0v-4,68,12,152,-42,176","w":174},"\u043c":{"d":"183,0r0,-161r-72,133r-7,0r-73,-133r0,161r-10,0r0,-178r10,0r76,140r76,-140r10,0r0,178r-10,0","w":213},"\u043d":{"d":"144,0r0,-87r-114,0r0,87r-9,0r0,-178r9,0r0,84r114,0r0,-84r9,0r0,178r-9,0","w":174},"\u0444":{"d":"103,-5v86,10,93,-139,32,-162v-9,-3,-20,-5,-32,-5r0,167xm15,-91v0,-58,23,-88,79,-89r0,-80r9,0r0,80v59,0,80,34,80,92v-1,56,-24,90,-80,90r0,70r-9,0r0,-70v-56,-3,-79,-32,-79,-93xm94,-172v-78,-11,-90,106,-48,151v10,11,27,16,48,16r0,-167","w":198},"\u0446":{"d":"22,0r0,-178r8,0r0,170r117,0r0,-170r9,0r0,170r12,0r0,55r-9,0r0,-47r-137,0","w":180},"\u0447":{"d":"20,-130v-5,61,77,56,111,30r0,-78r9,0r0,178r-9,0r0,-91v-39,27,-124,29,-120,-36r0,-51r9,0r0,48","w":161},"\u0448":{"d":"22,0r0,-178r8,0r0,170r105,0r0,-170r9,0r0,170r108,0r0,-170r8,0r0,178r-238,0","w":281},"\u0449":{"d":"22,0r0,-178r8,0r0,170r105,0r0,-170r9,0r0,170r108,0r0,-170r8,0r0,170r13,0r0,55r-10,0r0,-47r-241,0","w":285},"\u044a":{"d":"184,-49v0,60,-72,48,-131,49r0,-171r-51,0r0,-7r60,0r0,80v57,-1,122,-7,122,49xm62,-8v51,-1,114,10,114,-41v0,-47,-63,-42,-114,-41r0,82","w":192,"k":{"\u0442":11,"\u044a":11}},"\u044b":{"d":"171,0r0,-178r9,0r0,178r-9,0xm31,-98v57,-1,122,-7,122,49v0,60,-72,48,-131,49r0,-178r9,0r0,80xm31,-8v50,-1,114,11,113,-41v0,-48,-62,-42,-113,-41r0,82","w":201},"\u044c":{"d":"31,-98v57,-1,122,-7,122,49v0,60,-72,48,-131,49r0,-178r9,0r0,80xm31,-8v50,-1,114,11,113,-41v0,-48,-62,-42,-113,-41r0,82","w":160},"\u044d":{"d":"62,-180v52,0,68,37,71,90v4,77,-69,116,-129,77r5,-6v53,32,123,1,114,-68r-84,0r0,-8r84,0v10,-69,-63,-95,-110,-62r-5,-7v12,-9,34,-16,54,-16","w":150},"\u044e":{"d":"57,-94v1,-53,19,-87,69,-87v53,0,68,38,68,93v-1,55,-17,90,-69,90v-52,0,-67,-35,-68,-89r-27,0r0,87r-8,0r0,-178r8,0r0,84r27,0xm185,-89v0,-52,-12,-84,-59,-84v-45,0,-60,34,-60,83v0,50,14,85,59,85v46,0,60,-32,60,-84","w":209},"\u044f":{"d":"47,-89v-51,-11,-36,-89,19,-89r81,0r0,178r-9,0r0,-85v-41,4,-94,-15,-105,28r-15,57r-9,0v12,-31,10,-75,38,-89xm24,-130v2,49,66,35,114,37r0,-78v-50,1,-116,-12,-114,41","w":170},"\u0452":{"d":"95,-170v-75,0,-61,94,-62,170r-9,0r0,-213r-22,0r0,-8r22,0r0,-39r9,0r0,39r93,0r0,8r-93,0r0,77v11,-25,29,-40,63,-42v86,-5,87,150,23,175v-10,4,-22,8,-37,8r0,-7v49,-2,73,-34,74,-84v1,-47,-15,-84,-61,-84","w":180},"\u0453":{"d":"30,-168r0,168r-9,0r0,-176r119,0r0,8r-110,0xm69,-208r30,-51r12,6r-36,48","w":140,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0454":{"d":"139,-15v-13,10,-27,18,-50,18v-54,-1,-78,-34,-78,-91v0,-75,70,-116,128,-77r-6,7v-48,-37,-120,3,-112,64r83,0r0,8r-83,0v-10,69,67,102,113,65","w":142},"\u0459":{"d":"256,-51v1,61,-72,50,-132,51r1,-171r-76,0v-5,68,12,152,-43,176r-3,-8v48,-22,35,-105,37,-175r93,0r0,78v59,-1,122,-6,123,49xm133,-8v51,-1,114,10,114,-42v-1,-50,-63,-42,-114,-42r0,84","w":263},"\u045a":{"d":"128,-100v57,-1,122,-7,122,49v1,61,-71,50,-131,51r0,-93r-89,0r0,93r-8,0r0,-178r8,0r0,78r89,0r0,-78r9,0r0,78xm226,-18v33,-25,8,-75,-36,-75r-62,0r0,85v34,-2,76,6,98,-10","w":264},"\u045b":{"d":"96,-168v-37,3,-61,25,-61,64r0,104r-9,0r0,-214r-21,0r0,-8r21,0r0,-38r9,0r0,38r87,0r0,8r-87,0r0,75v11,-21,31,-35,62,-37v87,-5,59,100,63,176r-8,0v-4,-70,22,-172,-56,-168","w":180},"\u045f":{"d":"95,0r0,46r-9,0r0,-46r-63,0r0,-179r9,0r0,171r116,0r0,-171r9,0r0,179r-62,0","w":180},"\u0490":{"d":"178,-242r-139,0r0,242r-10,0r0,-251r139,0r0,-42r10,0r0,51","w":179,"k":{"\u044f":50,"\u0447":40,"\u0436":43,"\u0431":29,"\u042f":7,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0444":40,"\u0454":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u044e":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0491":{"d":"140,-170r-110,0r0,170r-9,0r0,-178r110,0r0,-38r9,0r0,46","w":140,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0442":{"d":"72,-171r0,171r-9,0r0,-171r-62,0r0,-7r132,0r0,7r-61,0","w":134,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u2044":{"d":"-54,6r152,-263r10,0r-153,263r-9,0","w":54,"k":{"\ue2fd":-7,"\ue2fc":-14,"\ue2fb":-22,"\ue2fa":11,"\ue2f9":-22,"\ue2f8":7,"\ue2f7":-4}},"\u2215":{"d":"-54,6r152,-263r10,0r-153,263r-9,0","w":54},"\u2105":{"d":"136,-64v1,-38,14,-64,51,-64v37,0,51,26,51,66v-1,39,-15,63,-52,63v-36,0,-51,-25,-50,-65xm229,-63v0,-33,-11,-57,-42,-56v-32,1,-41,22,-42,56v0,35,10,56,42,56v32,0,42,-20,42,-56xm108,-136v-36,30,-99,4,-91,-52v-6,-54,51,-81,91,-52v-6,15,-18,-7,-33,-4v-34,-1,-49,21,-49,56v0,49,45,72,77,46xm47,6r152,-263r10,0r-153,263r-9,0","w":251},"\u2113":{"d":"107,-5v26,0,35,-20,46,-40r11,4v-13,24,-26,45,-57,45v-43,0,-60,-37,-55,-87v-9,5,-16,12,-25,16v-2,-17,17,-15,26,-27v2,-68,-15,-160,52,-160v24,0,37,19,36,46v-3,59,-45,86,-79,119v-2,45,4,84,45,84xm104,-245v-56,4,-40,85,-42,144v37,-32,69,-59,69,-105v0,-18,-8,-40,-27,-39","w":181},"\u2116":{"d":"203,-113r84,0r0,8r-84,0r0,-8xm36,-235r0,235r-9,0r0,-251r10,0r130,236r0,-236r9,0r0,251r-10,0xm195,-194v1,-38,15,-59,51,-59v35,0,50,21,49,61v0,38,-15,59,-51,59v-37,0,-49,-23,-49,-61xm287,-192v0,-35,-11,-54,-41,-54v-30,0,-43,19,-43,53v1,33,10,53,42,53v32,-1,42,-18,42,-52","w":311},"\u212e":{"d":"26,-116v-7,-134,201,-162,242,-49v6,15,9,32,10,50r-210,0r0,72v28,54,135,52,169,3r13,0v-20,26,-56,44,-98,44v-74,0,-122,-45,-126,-120xm152,-234v-36,0,-64,21,-84,44r0,68r169,0r0,-68v-17,-24,-45,-44,-85,-44","w":294},"\u2202":{"d":"90,-145v-39,0,-56,31,-60,69v-7,69,79,94,109,39v10,-18,18,-43,20,-68v-17,-20,-36,-40,-69,-40xm88,4v-46,0,-67,-32,-67,-79v0,-45,25,-79,65,-79v34,0,56,17,74,38v1,-77,-28,-139,-109,-131v-2,-11,9,-9,19,-9v71,3,99,58,99,130v0,68,-18,130,-81,130","w":190},"\u2207":{"d":"6,-251r196,0r-91,251r-13,0xm188,-242r-167,0r83,233","w":208},"\u220f":{"d":"185,-242r-147,0r0,279r-9,0r0,-288r165,0r0,288r-9,0r0,-279","w":222},"\u2211":{"d":"23,-242r71,135r-72,136r139,0r0,8r-149,0r0,-9r71,-135r-70,-135r0,-9r144,0r0,9r-134,0","w":170},"\u2212":{"d":"9,-94r0,-9r143,0r0,9r-143,0","w":162},"\u221a":{"d":"113,32r-10,0r-62,-161r-26,11r-3,-8r34,-14r61,159r74,-308r9,0","w":202},"\u221e":{"d":"19,-98v0,-29,18,-48,48,-48v31,0,48,24,64,43v16,-19,33,-43,64,-43v30,0,48,19,48,48v0,31,-18,50,-48,50v-32,0,-45,-24,-64,-44v-19,21,-32,44,-64,44v-30,0,-48,-20,-48,-50xm126,-97v-14,-18,-31,-42,-59,-42v-25,0,-40,18,-41,41v-2,38,47,55,73,29v9,-9,20,-18,27,-28xm236,-98v2,-38,-47,-51,-73,-27v-9,8,-20,18,-27,28v15,17,30,42,58,42v26,0,41,-19,42,-43","w":262},"\u2227":{"d":"83,-181r9,0r71,181r-9,0r-67,-174r-67,174r-8,0","w":174},"\u2228":{"d":"12,-182r8,0r67,174r67,-174r9,0r-71,182r-9,0","w":174},"\u2229":{"d":"86,-177v-41,0,-68,25,-68,65r0,112r-8,0r0,-112v2,-45,29,-73,76,-73v47,0,78,27,78,73r0,112r-8,0r0,-112v-3,-40,-29,-65,-70,-65","w":174},"\u222a":{"d":"86,0v-47,0,-76,-28,-76,-73r0,-112r8,0r0,112v3,39,27,65,68,65v41,0,70,-25,70,-65r0,-112r8,0r0,112v-2,46,-31,73,-78,73","w":174},"\u222b":{"d":"114,-271v-86,-7,-39,159,-56,250v-8,44,-10,87,-62,78v2,-15,27,-2,36,-16v33,-53,17,-164,24,-256v3,-42,19,-73,60,-64","w":113},"\u2248":{"d":"20,-111v18,-30,61,-15,89,-4v17,3,20,-24,32,-10v-9,12,-16,19,-32,20v-27,-5,-63,-28,-82,0xm20,-62v18,-30,61,-15,89,-4v17,3,20,-24,32,-10v-9,12,-16,19,-32,20v-27,-5,-63,-28,-82,0","w":162},"\u2260":{"d":"9,-127r88,0r34,-51r9,0r-33,51r45,0r0,8r-51,0r-35,52r86,0r0,9r-92,0r-34,50r-9,0r33,-50r-41,0r0,-9r47,0r35,-52r-82,0r0,-8","w":162},"\u2264":{"d":"9,0r0,-9r143,0r0,9r-143,0xm8,-94r0,-9r145,-63r0,10r-134,57r134,58r0,10","w":162},"\u2265":{"d":"8,-31r0,-10r134,-58r-134,-57r0,-10r145,63r0,9xm9,0r0,-9r144,0r0,9r-144,0","w":162},"\u25ca":{"d":"83,40r-12,0r-70,-125r70,-125r12,0r69,125xm77,-199r-64,114r64,113r63,-113","w":153},"\ue000":{"d":"142,-188v0,81,22,193,-65,190v-40,-2,-64,-24,-64,-65v0,-80,-23,-192,64,-189v40,1,65,24,65,64xm77,-6v78,0,57,-105,57,-179v0,-34,-22,-59,-57,-59v-78,0,-56,105,-56,179v0,34,22,59,56,59","w":154},"\ue001":{"d":"58,-240r-39,25r0,-11v17,-8,25,-23,48,-25r0,251r-9,0r0,-240","w":111,"k":{"\ue071":14,"\u00ba":18,"\u00aa":14,"\ue326":18,"\ue31e":18,"\ue07e":7,"\ue07d":11,"\ue070":14}},"\ue002":{"d":"127,-192v4,-65,-98,-64,-109,-12r-9,-2v9,-26,31,-44,63,-46v60,-5,82,64,49,106r-105,137r120,0r0,9r-130,0r0,-9r113,-150v4,-10,7,-20,8,-33","w":151},"\ue003":{"d":"139,-68v6,72,-110,97,-133,32r9,-2v18,54,120,35,115,-29v-3,-40,-24,-63,-70,-59r0,-8v41,2,62,-16,65,-54v4,-63,-93,-75,-108,-23r-9,-2v7,-23,31,-38,60,-40v75,-6,88,107,26,123v28,7,42,30,45,62","w":147},"\ue004":{"d":"130,0r-9,0r0,-41r-115,0r0,-9r91,-201r11,0r-93,201r106,0r0,-79r9,0r0,79r23,0r0,9r-23,0r0,41","w":159},"\ue005":{"d":"139,-99v4,60,-10,102,-67,101v-32,0,-51,-16,-60,-38r7,-3v8,20,27,33,54,34v50,0,62,-41,57,-96v7,-64,-83,-69,-108,-30r-8,0r0,-120r119,0r0,9r-111,0r0,99v14,-13,30,-21,54,-22v43,0,60,25,63,66","w":149},"\ue006":{"d":"37,-125v37,-27,108,-7,104,53v-3,46,-23,73,-68,74v-54,1,-76,-62,-53,-110r71,-143r10,0xm133,-68v0,-39,-21,-63,-57,-63v-36,0,-57,24,-57,63v0,38,20,63,57,63v36,0,57,-26,57,-63","w":147},"\ue007":{"d":"35,0r94,-242r-113,0r0,40r-8,0r0,-49r130,0r0,9r-93,242r-10,0","w":144},"\ue008":{"d":"99,-129v28,8,46,30,46,63v0,43,-28,65,-70,68v-79,6,-92,-115,-25,-131v-23,-10,-41,-26,-40,-58v1,-39,26,-63,65,-65v72,-5,88,106,24,123xm132,-188v0,-35,-23,-57,-57,-57v-34,0,-57,22,-57,57v0,34,22,55,57,55v35,0,57,-20,57,-55xm137,-67v0,-37,-25,-59,-62,-59v-37,0,-62,22,-62,59v0,37,24,62,62,62v38,0,62,-25,62,-62","w":149},"\ue009":{"d":"108,-123v-46,28,-104,-2,-103,-58v1,-46,25,-71,68,-72v53,-1,78,62,54,110r-72,143r-9,0xm14,-182v0,38,20,62,57,62v36,0,56,-24,56,-62v0,-38,-19,-64,-56,-64v-37,0,-57,26,-57,64","w":140},"\ue00a":{"d":"109,-89r38,0r0,7r-39,0r-10,82r-8,0r11,-82r-58,0r-11,82r-8,0r12,-82r-36,0r0,-7r36,0r11,-74r-37,0r0,-7r38,0r11,-80r7,0r-11,80r58,0r12,-80r6,0r-11,80r38,0r0,7r-38,0xm44,-89r58,0r10,-74r-58,0","w":158},"\ue00b":{"d":"150,-63v0,-42,-29,-55,-65,-59r0,116v37,-1,64,-19,65,-57xm78,-244v-62,-4,-79,94,-19,107v7,2,13,4,19,5r0,-112xm129,-119v57,31,28,133,-44,122r0,41r-7,0r0,-41v-29,-1,-53,-11,-70,-24r6,-8v17,11,39,20,64,23r0,-117v-38,-6,-68,-21,-68,-64v0,-40,27,-64,68,-66r0,-26r7,0r0,26v22,0,43,6,61,17v-11,17,-37,-14,-61,-8r0,113v16,3,32,6,44,12","w":167},"\ue00c":{"d":"96,3v-58,0,-79,-46,-76,-108r-14,0r0,-8r14,0r0,-27r-14,0r0,-8r14,0v-19,-96,96,-141,142,-68r-8,4v-12,-21,-30,-33,-58,-33v-51,0,-70,41,-67,97r94,0r0,8r-94,0r0,27r94,0r0,8r-94,0v-3,56,15,100,67,100v31,0,46,-15,58,-36r8,4v-13,26,-32,40,-66,40","w":159},"\ue00d":{"d":"-24,31v3,-19,40,6,55,-17v23,-36,21,-101,31,-150r-34,0r0,-8r35,0v4,-57,16,-130,86,-104v-6,15,-41,-6,-54,15v-18,18,-18,57,-23,89r41,0r0,8r-42,0v-16,69,6,189,-95,167","w":143},"\ue00e":{"d":"50,-111v-1,44,-8,76,-30,102r133,0r0,9r-141,0v2,-23,18,-33,23,-53v4,-16,7,-36,7,-58r-31,0r0,-6r30,0v-2,-29,-17,-46,-19,-76v-4,-67,96,-75,123,-29r-7,4v-29,-48,-126,-28,-105,42v7,20,13,34,17,59r52,0r0,6r-52,0","w":163},"\ue00f":{"d":"140,-15v-14,10,-29,19,-53,18r0,37r-7,0r0,-38v-45,-6,-67,-38,-67,-91v0,-53,23,-83,67,-91r0,-40r7,0r0,40v24,-1,40,6,53,17r-5,6v-11,-8,-29,-19,-48,-15r0,167v22,1,36,-6,48,-16xm80,-172v-59,3,-72,96,-43,141v10,14,24,23,43,26r0,-167","w":151},"\ue010":{"d":"153,-77r-66,0r0,77r-9,0r0,-77r-65,0r0,-8r65,0v0,-11,0,-22,-5,-28r-60,0r0,-8r56,0r-66,-130r10,0r70,138r69,-138r10,0r-66,130r57,0r0,8r-61,0v-5,6,-5,17,-5,28r66,0r0,8","w":164},"\ue024":{"d":"145,-116v4,65,-4,119,-64,119v-59,-1,-68,-53,-64,-119v2,-40,24,-64,64,-64v40,0,62,24,64,64xm81,-5v54,0,56,-50,56,-108v0,-35,-22,-59,-56,-59v-54,0,-56,50,-56,108v0,35,22,59,56,59","w":162},"\ue025":{"d":"76,-8r0,-160r-39,25r0,-11v17,-8,25,-23,48,-25r0,171r59,0r0,8r-126,0r0,-8r58,0","w":162,"k":{"\ue374":14,"\ue071":29,"\ue370":14,"\ue36c":22,"\ue36b":22,"\ue363":18,"\ue360":11,"\u00ba":25,"\u00aa":25,"\ue326":29,"\ue31e":22,"\ue07e":29,"\ue07d":29,"\ue070":25}},"\ue026":{"d":"135,-130v1,-60,-98,-49,-107,-6r-9,-3v11,-51,128,-60,125,8v-1,25,-17,41,-35,55r-81,67r119,0r0,9r-132,0r0,-9v36,-32,78,-60,110,-96v6,-8,10,-16,10,-25","w":162},"\ue028":{"d":"134,57r-9,0r0,-57r-111,0r0,-8r80,-171r10,0r-81,170r102,0r0,-74r9,0r0,74r22,0r0,9r-22,0r0,57","w":162},"\ue02e":{"d":"108,-75r34,0r0,5r-35,0r-9,70r-7,0r10,-70r-52,0r-10,70r-8,0r11,-70r-32,0r0,-5r32,0r10,-64r-33,0r0,-5r34,0r10,-69r6,0r-10,69r53,0r10,-69r6,0r-10,69r34,0r0,5r-35,0xm49,-75r53,0r9,-64r-53,0","w":162},"\ue02f":{"d":"149,-54v-1,38,-29,54,-66,57r0,35r-7,0r0,-35v-24,-1,-48,-10,-63,-21r5,-8v16,11,35,18,58,20r0,-98v-33,-5,-61,-17,-61,-55v0,-33,27,-54,61,-56r0,-22r7,0r0,22v19,1,40,6,54,14v-8,18,-36,-10,-54,-6r0,95v36,5,66,17,66,58xm83,-6v60,6,80,-81,19,-93v-7,-2,-13,-3,-19,-4r0,97xm76,-207v-54,-4,-71,77,-18,90v6,2,12,3,18,4r0,-94","w":162},"\ue030":{"d":"91,2v-51,0,-70,-37,-68,-91v0,0,-15,2,-12,-7r12,0r0,-23v0,0,-15,2,-12,-7r12,0v-17,-84,87,-118,128,-58r-8,4v-10,-15,-28,-28,-52,-27v-45,1,-61,34,-60,81r85,0r0,7r-85,0r0,23r85,0r0,7r-85,0v-2,49,15,84,60,84v26,0,42,-12,52,-31r8,4v-11,23,-29,34,-60,34","w":162},"\ue031":{"d":"-3,29v3,-18,39,5,53,-16v22,-33,20,-95,30,-141r-32,0r0,-8r33,0v4,-54,19,-122,84,-97v-2,1,-3,4,-3,7v-56,-19,-69,38,-72,90r40,0r0,8r-41,0v-16,66,4,179,-92,157","w":162},"\ue032":{"d":"53,-94v-2,35,-7,64,-26,86r118,0r0,8r-127,0v8,-30,30,-53,27,-94r-28,0r0,-6r27,0v-3,-23,-15,-40,-17,-64v-5,-58,87,-64,111,-25r-7,5v-23,-38,-114,-27,-94,34v6,17,12,30,16,50r47,0r0,6r-47,0","w":162},"\ue033":{"d":"139,-29v-13,9,-27,16,-48,15r0,32r-7,0r0,-32v-38,-7,-61,-31,-61,-77v0,-47,22,-71,61,-78r0,-34r7,0r0,33v21,-1,35,6,48,15r-6,7v-11,-8,-23,-15,-42,-14r0,141v19,1,30,-6,42,-14xm84,-161v-50,2,-67,79,-38,117v9,12,22,20,38,23r0,-140","w":162},"\ue034":{"d":"144,-65r-59,0r0,65r-8,0r0,-65r-59,0r0,-8r59,0v1,-10,0,-18,-5,-23r-54,0r0,-7r51,0r-60,-110r9,0r63,116r63,-116r9,0r-59,110r50,0r0,7r-54,0v-5,5,-6,13,-5,23r59,0r0,8","w":162},"\ue048":{"d":"142,-116v4,66,-5,119,-65,119v-59,-1,-68,-53,-64,-119v2,-40,24,-64,64,-64v40,0,63,24,65,64xm77,-5v54,0,60,-50,57,-108v-2,-34,-22,-59,-57,-59v-53,0,-59,51,-56,108v2,34,22,59,56,59","w":154},"\ue049":{"d":"69,-8r0,-160r-39,25r0,-11v17,-8,24,-24,48,-25r0,171r59,0r0,8r-127,0r0,-8r59,0","w":147,"k":{"\ue071":18,"\ue36c":11,"\ue36b":11,"\u00ba":11,"\u00aa":11,"\ue326":22,"\ue31e":18,"\ue07e":11,"\ue07d":14,"\ue070":14}},"\ue04a":{"d":"128,-130v1,-60,-98,-49,-107,-6r-9,-3v12,-52,127,-59,125,8v-1,25,-17,41,-35,55r-81,67r118,0r0,9r-131,0r0,-9v36,-32,78,-60,110,-96v6,-8,10,-16,10,-25","w":150},"\ue04c":{"d":"125,57r-10,0r0,-57r-111,0r0,-8r81,-171r9,0r-80,170r101,0r0,-74r10,0r0,74r21,0r0,9r-21,0r0,57","w":150},"\ue052":{"d":"101,-75r34,0r0,5r-35,0r-9,70r-7,0r10,-70r-53,0r-10,70r-7,0r11,-70r-32,0r0,-5r32,0r10,-64r-33,0r0,-5r34,0r9,-69r7,0r-10,69r52,0r11,-69r6,0r-10,69r34,0r0,5r-35,0xm42,-75r52,0r10,-64r-53,0","w":147},"\ue053":{"d":"142,-54v-1,38,-29,54,-66,57r0,35r-7,0r0,-35v-24,-1,-48,-11,-64,-21r6,-8v16,11,35,18,58,20r0,-98v-33,-5,-60,-17,-61,-55v0,-33,27,-54,61,-56r0,-22r7,0r0,22v19,1,40,6,54,14v-8,18,-36,-10,-54,-6r0,95v36,5,66,17,66,58xm76,-6v60,6,80,-81,19,-93v-7,-2,-13,-3,-19,-4r0,97xm69,-207v-54,-5,-72,78,-18,90v6,2,12,3,18,4r0,-94","w":147},"\ue054":{"d":"87,2v-51,0,-71,-37,-68,-91v0,0,-15,2,-12,-7r12,0r0,-23v0,0,-15,2,-12,-7r12,0v-17,-84,88,-118,129,-58r-8,4v-10,-16,-28,-28,-53,-27v-45,1,-61,33,-59,81r84,0r0,7r-84,0r0,23r85,0r0,7r-85,0v-3,50,14,84,59,84v26,0,43,-12,53,-31r7,4v-11,23,-29,34,-60,34","w":147},"\ue055":{"d":"-10,29v4,-19,39,6,53,-16v21,-34,20,-94,30,-141r-33,0r0,-8r34,0v5,-55,16,-120,84,-98v-2,2,-3,4,-3,8v-56,-19,-69,38,-72,90r39,0r0,8r-40,0v-16,66,4,179,-92,157","w":147},"\ue056":{"d":"49,-94v-2,35,-7,64,-26,86r118,0r0,8r-127,0v8,-30,30,-53,27,-94r-27,0r0,-6r27,0v-4,-23,-16,-39,-18,-64v-4,-57,87,-64,112,-25r-7,5v-19,-32,-100,-34,-96,20v2,25,13,40,17,64r47,0r0,6r-47,0","w":148},"\ue057":{"d":"132,-29v-13,9,-27,16,-48,15r0,32r-7,0r0,-32v-39,-7,-61,-31,-61,-77v0,-47,22,-71,61,-78r0,-34r7,0r0,33v21,-1,35,6,47,15r-5,7v-11,-8,-23,-15,-42,-14r0,141v19,1,30,-7,42,-14xm77,-161v-50,3,-68,80,-38,117v9,12,22,20,38,23r0,-140","w":146},"\ue058":{"d":"135,-65r-59,0r0,65r-9,0r0,-65r-58,0r0,-8r58,0v0,-9,0,-18,-4,-23r-54,0r0,-7r50,0r-59,-110r9,0r63,116r62,-116r9,0r-58,110r50,0r0,7r-55,0v-4,5,-5,13,-4,23r59,0r0,8","w":143},"\ue059":{"d":"215,-94v0,44,9,95,-39,95v-47,0,-38,-51,-38,-95v0,-22,16,-33,38,-34v23,0,39,11,39,34xm101,-180v1,45,8,95,-39,95v-47,0,-39,-50,-39,-95v0,-23,16,-33,39,-34v22,-1,40,13,39,34xm176,-6v41,0,30,-49,31,-87v1,-17,-14,-28,-31,-28v-40,-2,-29,49,-30,87v-1,17,13,28,30,28xm62,-92v40,1,30,-49,31,-87v0,-17,-13,-28,-31,-28v-41,0,-30,49,-31,87v0,16,14,28,31,28xm46,5r137,-224r11,0r-138,224r-10,0","w":238},"\ue05a":{"d":"216,-94v0,44,9,95,-39,95v-48,0,-39,-51,-39,-95v0,-23,16,-34,39,-34v22,1,39,12,39,34xm310,-94v1,45,8,95,-40,95v-47,0,-40,-50,-39,-95v1,-21,16,-34,39,-34v23,0,39,12,40,34xm101,-119v2,21,-19,34,-38,34v-48,0,-41,-50,-40,-95v1,-23,16,-34,40,-34v20,-1,38,12,38,34r0,61xm177,-6v40,2,29,-49,30,-87v1,-17,-13,-28,-30,-28v-41,0,-30,49,-31,87v-1,17,14,28,31,28xm270,-6v41,0,30,-49,31,-87v1,-17,-14,-28,-31,-28v-40,-2,-29,49,-30,87v-1,17,13,28,30,28xm63,-92v40,2,29,-49,30,-87v1,-17,-13,-28,-30,-28v-41,0,-30,48,-31,87v-1,17,14,28,31,28xm46,5r138,-224r10,0r-137,224r-11,0","w":333},"\ue0d8":{"d":"37,-120v0,59,21,112,47,150r-3,2v-55,-54,-75,-191,-24,-267v7,-12,15,-23,23,-33r3,2v-25,39,-46,89,-46,146","w":89},"\ue0d9":{"d":"14,-267v56,54,73,195,21,269v-8,11,-13,22,-21,31r-3,-2v25,-38,46,-91,46,-150v0,-58,-21,-108,-46,-146","w":89},"\ue0da":{"d":"19,-111r91,0r0,9r-91,0r0,-9","w":129},"\ue0db":{"d":"28,-261r46,0r0,8r-36,0r0,274r36,0r0,8r-46,0r0,-290","w":79},"\ue0dc":{"d":"14,21r36,0r0,-274r-36,0r0,-8r46,0r0,290r-46,0r0,-8","w":79},"\ue0dd":{"d":"13,-114r0,-5v33,-11,25,-64,25,-106v0,-25,11,-40,39,-36v2,7,-6,5,-11,5v-48,8,4,120,-44,139v32,12,21,72,23,117v1,17,11,26,32,23r0,7v-81,9,-6,-134,-64,-144","w":79},"\ue0de":{"d":"77,-114v-36,9,-24,65,-24,108v0,25,-12,40,-40,36r0,-7v67,11,2,-117,55,-140v-30,-13,-21,-71,-23,-115v-1,-17,-11,-27,-32,-24v-2,-8,8,-4,13,-5v56,3,-3,122,51,142r0,5","w":79},"\ue0df":{"d":"7,-110r162,0r0,9r-162,0r0,-9","w":176},"\ue0e0":{"d":"7,-110r342,0r0,9r-342,0r0,-9","w":356},"\ue0e1":{"d":"38,-117r2,181r-10,0r2,-181r6,0xm42,-186r0,14r-13,0r0,-14r13,0","w":71},"\ue0e2":{"d":"75,58v32,0,51,-23,56,-51r9,2v-9,32,-29,57,-67,57v-38,0,-63,-23,-63,-61v0,-62,70,-64,60,-139r9,0v10,74,-52,80,-60,137v2,34,20,55,56,55xm80,-187r0,15r-13,0r0,-15r13,0","w":150},"\ue0e3":{"d":"66,-27r-40,-60r40,-60r10,0r-40,60r40,60r-10,0xm108,-27r-40,-60r40,-60r10,0r-40,60r40,60r-10,0","w":137},"\ue0e4":{"d":"68,-27r40,-60r-40,-60r10,0r40,60r-40,60r-10,0xm26,-27r40,-60r-40,-60r10,0r40,60r-40,60r-10,0","w":137},"\ue23f":{"d":"145,-188v0,81,22,192,-64,190v-40,-2,-64,-24,-64,-65v0,-80,-23,-192,64,-189v40,1,64,24,64,64xm33,-32v22,44,110,28,104,-33v-5,-48,5,-104,-4,-145xm129,-219v-23,-43,-110,-27,-104,34v5,47,-5,103,4,144","w":162},"\ue24c":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm6,-249v28,6,28,43,8,60v-13,-5,6,-19,4,-31v-2,-10,-7,-15,-17,-18xm108,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24d":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm30,-239v-23,5,-18,31,-8,47r-5,3v-20,-15,-22,-54,7,-60xm112,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24e":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-40,-192v10,-15,15,-42,-8,-46r6,-11v28,6,29,44,7,60xm22,-188r-36,-58r14,-3r28,59xm112,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24f":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-21,-239v-23,5,-18,31,-8,47r-5,3v-19,-15,-22,-54,7,-60xm22,-189r-36,-57r14,-3r28,58xm109,26v-1,29,-2,59,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue250":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-30,-192v10,-14,15,-42,-7,-46r5,-10v29,5,27,43,8,60xm-10,-190r32,-58r13,3r-40,57xm108,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue251":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-10,-239v-23,5,-18,31,-8,47r-5,3v-19,-16,-23,-54,7,-60xm-10,-191r32,-58r14,3r-40,57xm108,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue252":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-16,-158v12,-21,13,-37,-8,-44r5,-10v30,10,27,34,7,55xm10,-222v-23,-5,-52,-26,-67,0r-6,-5v18,-33,49,-12,74,-4v13,1,16,-22,26,-10v-7,11,-13,18,-27,19xm108,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue253":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm-5,-202v-22,6,-20,24,-8,44v-25,-10,-28,-48,3,-54xm8,-222v-23,-5,-52,-27,-67,-1r-7,-4v22,-47,73,19,94,-19r7,4v-7,11,-12,20,-27,20xm108,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue254":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-33,-194v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue255":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-12,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue256":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-87,-194v9,-15,16,-42,-8,-46r5,-11v28,5,28,43,8,60xm-25,-190r-37,-58r14,-3r29,58xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue257":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-72,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-28,-190r-36,-58r13,-3r29,58xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue258":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-81,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-59,-193r32,-58r13,3r-40,58xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue259":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-61,-240v-23,5,-18,32,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-60,-193r32,-58r13,3r-40,58xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue25a":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-82,-158v12,-20,14,-39,-8,-44r5,-10v31,9,28,34,8,55xm-55,-222v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-12,20,-27,20xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue25b":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm-63,-202v-22,6,-20,24,-8,44v-26,-9,-28,-49,3,-54xm-50,-222v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-12,20,-27,20xm116,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":228},"\ue25c":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-21,-194v10,-14,17,-42,-7,-46r5,-11v28,5,28,43,8,60xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue25d":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm1,-240v-24,4,-18,32,-7,46r-6,3v-19,-15,-22,-55,8,-60xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue25e":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-68,-194v9,-15,16,-42,-8,-46r6,-11v28,5,27,44,7,60xm-6,-190r-36,-58r14,-3r28,58xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue25f":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-49,-240v-23,5,-17,30,-7,46r-6,3v-19,-16,-21,-54,8,-60xm-5,-190r-36,-58r13,-3r29,58xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue260":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-67,-251v28,5,28,43,8,60v-13,-5,7,-20,4,-32v-1,-9,-8,-14,-17,-17xm-45,-193r32,-58r13,3r-40,58xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue261":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-45,-240v-23,4,-18,31,-8,46r-5,3v-19,-15,-22,-54,7,-60xm-45,-193r32,-58r14,3r-40,58xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue262":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-64,-158v12,-20,14,-38,-8,-43r5,-11v30,10,28,35,8,56xm-117,-233v26,-36,86,23,111,-14r7,4v-20,44,-82,-11,-113,17xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue263":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm-47,-202v-21,7,-21,23,-8,44v-26,-11,-26,-48,4,-54xm1,-243v-21,44,-84,-12,-113,17r-5,-7v25,-36,86,22,111,-14xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue264":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm108,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":208,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue265":{"d":"185,-123r-147,0r0,123r-9,0r0,-251r9,0r0,119r147,0r0,-119r9,0r0,251r-9,0r0,-123xm116,26v-1,30,-2,59,30,56v1,5,0,10,-6,8v-33,2,-35,-30,-33,-64r9,0","w":222},"\ue266":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0xm105,26v0,30,-3,60,30,56r0,8v-38,5,-41,-26,-39,-64r9,0","w":201},"\ue2d0":{"d":"94,-211v0,51,12,113,-43,113v-54,0,-43,-62,-43,-113v1,-26,17,-40,43,-40v27,0,43,14,43,40xm51,-105v48,1,33,-61,35,-105v0,-21,-13,-34,-35,-34v-49,0,-36,60,-36,105v0,20,15,34,36,34","w":102},"\ue2d1":{"d":"37,-241r-25,15v1,-18,16,-21,33,-24r0,151r-8,0r0,-142","w":73},"\ue2d2":{"d":"82,-214v2,-36,-63,-38,-69,-6r-8,-2v7,-38,92,-37,86,7v-7,50,-53,71,-78,108r77,0r0,8r-87,0r0,-8v26,-33,57,-60,78,-97v1,-4,1,-7,1,-10","w":100,"k":{"\u2044":-18}},"\ue2d3":{"d":"92,-141v3,46,-76,60,-89,18r8,-1v11,32,73,21,73,-16v0,-24,-18,-37,-45,-34r0,-7v24,3,41,-10,42,-30v3,-37,-60,-46,-69,-13r-8,-2v12,-36,89,-33,86,14v-1,17,-9,28,-23,34v14,7,24,17,25,37","w":97},"\ue2d4":{"d":"86,-99r-8,0r0,-25r-74,0v14,-48,41,-82,59,-126r10,0r-61,119r66,0r0,-47r8,0r0,47v7,1,19,-4,16,7r-16,0r0,25","w":105,"k":{"\u2044":-11}},"\ue2d5":{"d":"92,-159v16,61,-63,82,-86,36r8,-2v9,29,70,26,70,-12v0,-33,-3,-56,-36,-56v-16,0,-26,14,-39,16r0,-73r80,0r0,7r-73,0r0,55v26,-21,81,-11,76,29","w":98},"\ue2d6":{"d":"28,-178v28,-14,67,0,66,35v-1,29,-16,45,-45,45v-34,1,-52,-37,-36,-67r46,-85r9,0xm86,-141v0,-22,-16,-36,-36,-36v-20,0,-37,14,-36,36v1,21,14,37,36,36v20,0,36,-14,36,-36","w":97,"k":{"\u2044":-4}},"\ue2d7":{"d":"22,-99r61,-144r-71,0r0,24r-8,0r0,-31r88,0v-15,56,-43,99,-62,151r-8,0","w":95},"\ue2d8":{"d":"69,-177v45,13,29,79,-20,79v-49,0,-62,-66,-20,-79v-37,-13,-25,-79,20,-74v46,-5,59,60,20,74xm89,-140v-2,-21,-17,-34,-40,-34v-22,1,-39,12,-39,34v0,22,16,35,39,35v24,0,37,-14,40,-35xm85,-212v0,-21,-14,-33,-36,-33v-22,0,-35,12,-35,33v0,21,14,32,35,32v22,0,36,-11,36,-32","w":98,"k":{"\u2044":-7}},"\ue2d9":{"d":"68,-171v-29,13,-66,-2,-65,-36v0,-29,16,-43,45,-44v36,-1,52,36,36,66r-47,86r-9,0xm11,-208v-1,22,15,36,35,36v21,0,37,-14,36,-36v0,-22,-13,-38,-36,-37v-23,0,-34,15,-35,37","w":92,"k":{"\u2044":18}},"\ue2da":{"d":"56,-252v-38,42,-39,135,1,175r-4,3v-45,-38,-48,-143,0,-181","w":58},"\ue2db":{"d":"6,-76v37,-42,39,-133,0,-176r3,-2v47,39,46,143,0,180","w":58,"k":{"\u2044":-11}},"\ue2dc":{"d":"8,-80r5,-20v-5,0,-1,-8,-2,-12r11,0v1,15,-5,22,-8,32r-6,0","w":32},"\ue2dd":{"d":"11,-100r0,-11r11,0r0,11r-11,0","w":30},"\ue2f4":{"d":"94,-112v-1,50,13,113,-43,113v-55,0,-42,-62,-43,-113v0,-27,18,-40,43,-40v25,0,43,14,43,40xm51,-6v49,0,33,-61,35,-105v1,-21,-13,-34,-35,-34v-49,0,-36,60,-36,105v0,20,14,34,36,34","w":102},"\ue2f5":{"d":"37,-141r-25,14v1,-18,16,-21,33,-24r0,151r-8,0r0,-141","w":73},"\ue2f6":{"d":"82,-115v2,-36,-63,-38,-69,-6r-8,-2v9,-38,88,-37,86,8v-12,49,-54,71,-78,107r77,0r0,8r-87,0r0,-7v26,-33,56,-60,78,-97v1,-4,1,-8,1,-11","w":100},"\ue2f7":{"d":"92,-42v4,46,-76,60,-89,18r8,0v12,30,73,20,73,-17v0,-24,-18,-37,-45,-34r0,-7v24,3,41,-10,42,-30v3,-37,-58,-45,-69,-13r-8,-2v12,-36,89,-33,86,14v-1,18,-9,29,-23,35v15,6,23,17,25,36","w":97},"\ue2f8":{"d":"86,0r-8,0r0,-24r-74,0r0,-7r59,-120r10,0r-61,119r66,0r0,-47r8,0r0,47r16,0r0,8r-16,0r0,24","w":105},"\ue2f9":{"d":"92,-60v16,61,-61,82,-86,37r8,-3v8,30,70,26,70,-12v0,-33,-3,-56,-36,-56v-16,0,-26,15,-39,17r0,-74r80,0r0,8r-73,0r0,55v25,-23,81,-12,76,28","w":98},"\ue2fa":{"d":"28,-78v27,-15,68,0,66,34v-1,29,-16,44,-45,45v-36,1,-52,-37,-36,-67r46,-85r9,0xm86,-42v0,-22,-16,-35,-36,-35v-20,0,-37,13,-36,35v0,21,14,38,36,37v19,-1,36,-15,36,-37","w":97},"\ue2fb":{"d":"22,0r61,-143r-71,0r0,23r-8,0r0,-31r88,0v-15,56,-43,99,-62,151r-8,0","w":95},"\ue2fc":{"d":"69,-78v45,13,29,85,-20,79v-50,5,-62,-66,-20,-79v-13,-6,-23,-16,-23,-34v0,-26,19,-37,43,-40v45,-4,59,60,20,74xm89,-41v0,-21,-17,-34,-40,-34v-22,1,-38,12,-39,34v0,50,79,44,79,0xm85,-112v0,-22,-14,-34,-36,-34v-22,0,-35,13,-35,34v0,20,14,31,35,31v21,0,36,-10,36,-31","w":98},"\ue2fd":{"d":"68,-71v-31,12,-66,-3,-65,-37v0,-29,17,-43,45,-44v34,-1,53,36,36,67r-47,85r-9,0xm11,-109v-1,22,15,36,35,36v21,0,37,-14,36,-36v0,-22,-13,-38,-36,-37v-21,1,-34,14,-35,37","w":92},"\ue2fe":{"d":"56,-152v-38,42,-39,134,1,175r-4,3v-45,-38,-48,-143,0,-181","w":58},"\ue2ff":{"d":"6,23v37,-42,39,-133,0,-175r3,-2v48,38,45,143,0,180","w":58},"\ue300":{"d":"8,20r5,-20v-5,0,-1,-8,-2,-12r11,0v1,15,-5,22,-8,32r-6,0","w":32},"\ue301":{"d":"11,0r0,-11r11,0r0,11r-11,0","w":30},"\uf6c0":{"d":"104,-291r-44,30r-5,-5r44,-36r11,0r42,36r-4,5","w":216},"\uf6c3":{"d":"94,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0","w":208},"\uf6c9":{"d":"83,-265r47,-37r8,10r-51,31","w":215},"\uf6ca":{"d":"148,-302r4,5r-42,36r-11,0r-44,-36r5,-5r44,30","w":216},"\uf6cb":{"d":"129,-284r13,0r0,13r-13,0r0,-13xm64,-284r14,0r0,13r-14,0r0,-13","w":208},"\uf6cc":{"d":"133,-287r14,0r0,13r-14,0r0,-13xm72,-287r14,0r0,13r-14,0r0,-13xm92,-274r43,-43r9,9r-48,39","w":187},"\uf6cd":{"d":"82,-274r-14,0r0,-13r14,0r0,13xm143,-274r-14,0r0,-13r14,0r0,13xm119,-269r-48,-39r9,-9r43,43","w":187},"\uf6ce":{"d":"121,-261r-52,-31r9,-10r47,37","w":187},"\uf6cf":{"d":"106,-265r46,-37r9,10r-51,31xm70,-265r46,-37r9,10r-51,31","w":187},"\uf6d0":{"d":"59,-284r90,0r0,9r-90,0r0,-9","w":208},"\uf6d1":{"d":"69,-299v3,36,67,36,70,0r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":208},"\uf6d4":{"d":"63,-249v6,34,65,34,71,0r7,0v-1,40,-67,48,-81,13v-2,-5,-8,-15,3,-13","w":183},"\uf6d9":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138","w":292},"\uf6da":{"d":"90,-208r-36,-56r14,-3r28,56","w":185},"\uf6db":{"d":"80,-211r32,-56r13,3r-40,56","w":185},"\uf6dc":{"d":"109,-211v-23,-4,-52,-26,-67,-1r-7,-4v22,-47,73,18,94,-19r7,5v-7,11,-13,18,-27,19","w":167},"\ue0fb":{"d":"23,-48v1,-34,26,-44,46,-60v-11,-12,-25,-24,-26,-44v-3,-46,63,-49,88,-24r-6,8v-22,-30,-98,-5,-66,33r80,95v5,-9,10,-26,10,-39r10,0v-2,18,-5,34,-13,47r28,32v-22,2,-23,-16,-34,-25v-26,38,-119,39,-117,-23xm32,-49v-2,51,79,52,100,17r-57,-68v-20,12,-42,23,-43,51","w":185},"\ue0fc":{"d":"26,-52r-2,-137r11,0r-2,137r-7,0xm23,0r0,-13r13,0r0,13r-13,0","w":59},"\ue0fd":{"d":"107,-144v0,-61,-85,-47,-89,-1r-9,-2v7,-25,26,-47,56,-47v31,1,52,19,52,48v0,49,-56,48,-48,106r-10,0v-7,-55,48,-59,48,-104xm58,0r0,-14r14,0r0,14r-14,0","w":125},"\ue0fe":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue0ff":{"d":"153,-50v2,61,-71,49,-131,50r0,-189v58,0,127,-9,127,48v0,22,-12,37,-31,43v20,7,34,23,35,48xm143,-51v0,-51,-61,-42,-112,-42r0,84v51,0,112,9,112,-42xm140,-141v0,-47,-61,-39,-109,-39r0,78v48,0,109,8,109,-39","w":164},"\ue100":{"d":"24,-65v-8,67,94,76,111,25r8,3v-9,23,-31,39,-61,39v-66,1,-68,-57,-68,-126v0,-71,101,-87,128,-32r-8,5v-19,-47,-119,-38,-110,28r0,58","w":147},"\ue101":{"d":"155,-98v0,59,-15,98,-68,98r-65,0r0,-189r63,0v53,0,70,33,70,91xm85,-9v58,3,63,-45,61,-104v-2,-44,-18,-67,-63,-67r-52,0r0,171r54,0","w":170},"\ue102":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189","w":147},"\ue103":{"d":"32,-100r93,0r0,8r-93,0r0,92r-10,0r0,-189r118,0r0,9r-108,0r0,80","w":141,"k":{"\ue0fe":11,"\ue175":11,"\ue13c":11,"\ue13b":11,"\ue13a":11,"\ue122":11,"\ue121":11,"\ue120":11,"\ue11f":11,"\ue11e":11,"\ue11d":11,"\ue11c":11,"\ue107":25}},"\ue104":{"d":"14,-66v-3,-68,3,-125,68,-124v28,0,50,14,59,34v-1,1,-5,5,-7,5v-8,-17,-28,-31,-52,-31v-60,-1,-62,56,-59,117v2,37,21,59,59,59v43,0,62,-30,58,-79r-46,0r0,-9r55,0v5,58,-14,96,-67,96v-43,0,-66,-25,-68,-68","w":164},"\ue105":{"d":"144,-92r-113,0r0,92r-9,0r0,-189r9,0r0,89r113,0r0,-89r9,0r0,189r-9,0r0,-92","w":175},"\ue106":{"d":"24,-189r9,0r0,189r-9,0r0,-189","w":56},"\ue107":{"d":"105,-54v5,52,-61,71,-96,42r6,-7v29,25,81,11,81,-38r0,-132r9,0r0,135","w":124},"\ue108":{"d":"84,-110r-53,61r0,49r-9,0r0,-189r9,0r0,126r109,-126r10,0r-60,72r72,117r-10,0","w":170},"\ue109":{"d":"22,-189r9,0r0,180r109,0r0,9r-118,0r0,-189","w":147,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue10a":{"d":"181,-171r-71,142r-7,0r-72,-142r0,171r-9,0r0,-189r9,0r75,149r75,-149r9,0r0,189r-9,0r0,-171","w":209},"\ue10b":{"d":"32,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,189r-10,0","w":186},"\ue10c":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59","w":158},"\ue10d":{"d":"153,-135v0,56,-61,56,-121,53r0,82r-9,0r0,-189v61,0,131,-9,130,54xm143,-135v0,-52,-59,-45,-111,-45r0,89v52,0,111,7,111,-44","w":154,"k":{"\ue0fe":14,"\ue175":14,"\ue13c":14,"\ue13b":14,"\ue13a":14,"\ue122":14,"\ue121":14,"\ue120":14,"\ue11f":14,"\ue11e":14,"\ue11d":14,"\ue11c":14}},"\ue10e":{"d":"12,-66v-5,-68,3,-124,67,-124v65,0,67,56,67,124v0,16,-3,28,-9,38r29,24r-6,7r-28,-24v-32,43,-129,22,-120,-45xm129,-34v14,-54,19,-147,-49,-147v-60,0,-58,55,-58,116v0,58,74,76,103,37r-29,-24r6,-6","w":158},"\ue10f":{"d":"154,-137v-1,32,-20,51,-50,55r45,82r-11,0r-44,-81r-62,0r0,81r-9,0r0,-189v61,-1,132,-7,131,52xm144,-137v0,-51,-61,-43,-112,-43r0,90v54,1,112,6,112,-47","w":164},"\ue110":{"d":"124,-86v43,33,5,94,-52,88v-29,-3,-46,-8,-66,-19r6,-7v36,25,121,29,121,-24v0,-68,-118,-19,-118,-92v0,-53,75,-61,115,-37r-5,8v-32,-19,-102,-21,-101,29v2,50,70,32,100,54","w":153},"\ue111":{"d":"72,0r-9,0r0,-180r-60,0r0,-9r129,0r0,9r-60,0r0,180","w":134,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue112":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128","w":170},"\ue113":{"d":"69,0r-65,-189r10,0r60,175r60,-175r9,0r-65,189r-9,0","w":147,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue114":{"d":"174,0r-8,0r-52,-174r-51,174r-9,0r-48,-189r9,0r44,175r52,-175r7,0r52,175r43,-175r9,0","w":227,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue115":{"d":"69,-88r-55,88r-10,0r60,-97r-56,-92r10,0r51,83r51,-83r11,0r-56,93r61,96r-11,0","w":138},"\ue116":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78","w":130,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue117":{"d":"9,-9r107,-171r-102,0r0,-9r113,0r0,9r-107,171r107,0r0,9r-118,0r0,-9","w":136},"\ue118":{"d":"124,-86v43,33,5,94,-52,88v-29,-3,-46,-8,-66,-19r6,-7v36,25,121,29,121,-24v0,-68,-118,-19,-118,-92v0,-53,75,-61,115,-37r-5,8v-32,-19,-102,-21,-101,29v2,50,70,32,100,54xm117,-245r4,4r-43,40r-10,0r-44,-40r4,-5r45,34","w":153},"\ue119":{"d":"13,-124v-1,-93,123,-59,212,-65r0,9r-114,0r0,80r98,0r0,8r-98,0r0,83r114,0r0,9v-86,-4,-214,30,-212,-66r0,-58xm23,-123v-4,69,5,127,77,115r0,-172v-45,-5,-75,14,-77,57","w":232},"\ue11a":{"d":"9,-9r107,-171r-102,0r0,-9r113,0r0,9r-107,171r107,0r0,9r-118,0r0,-9xm115,-245r5,4r-43,40r-10,0r-44,-40r4,-5r44,34","w":136},"\ue11b":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78xm93,-234r14,0r0,13r-14,0r0,-13xm23,-234r14,0r0,13r-14,0r0,-13","w":130,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue11c":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm81,-205r-36,-48r12,-6r29,51","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11d":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm78,-208r30,-51r12,6r-36,48","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11e":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm82,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11f":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm107,-213v-24,-4,-52,-28,-67,-1r-7,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,19,-26,20","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue120":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm110,-234r14,0r0,13r-14,0r0,-13xm40,-234r14,0r0,13r-14,0r0,-13","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue121":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm113,-231v0,18,-13,30,-31,30v-18,0,-31,-12,-31,-30v-1,-17,15,-31,31,-31v17,0,31,14,31,31xm106,-231v0,-13,-11,-25,-24,-25v-13,0,-24,12,-24,25v0,13,11,24,24,24v13,0,24,-11,24,-24","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue122":{"d":"134,-47r-90,0r-33,47r-10,0r127,-189r130,0r0,9r-114,0r0,80r98,0r0,8r-98,0r0,83r114,0r0,9r-124,0r0,-47xm134,-56r0,-124r-84,124r84,0","w":266},"\ue123":{"d":"24,-65v-8,67,94,76,111,25r8,3v-10,23,-31,39,-62,39r-5,15v18,2,31,8,32,26v1,25,-34,28,-55,20v2,-16,46,10,46,-21v0,-15,-20,-18,-33,-20r7,-21v-59,-3,-59,-60,-59,-125v0,-71,101,-87,128,-32r-8,5v-19,-47,-119,-38,-110,28r0,58","w":147},"\ue124":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm86,-205r-36,-48r12,-6r29,51","w":147},"\ue125":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm72,-208r29,-51r12,6r-36,48","w":147},"\ue126":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm80,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":147},"\ue127":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm109,-234r14,0r0,13r-14,0r0,-13xm40,-234r13,0r0,13r-13,0r0,-13","w":147},"\ue128":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm27,-205r-36,-48r12,-6r29,51","w":56},"\ue129":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm27,-208r30,-51r11,6r-36,48","w":56},"\ue12a":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm30,-234r-44,33r-4,-5r44,-39r10,0r42,39r-4,5","w":56},"\ue12b":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm58,-234r14,0r0,13r-14,0r0,-13xm-12,-234r14,0r0,13r-14,0r0,-13","w":56},"\ue12c":{"d":"155,-98v0,59,-15,98,-68,98r-65,0r0,-91r-18,0r0,-8r18,0r0,-90r63,0v53,0,70,33,70,91xm85,-9v58,3,63,-45,61,-104v-2,-44,-18,-67,-63,-67r-52,0r0,81r57,0r0,8r-57,0r0,82r54,0","w":170},"\ue12d":{"d":"32,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,189r-10,0xm117,-213v-24,0,-52,-28,-67,-1r-7,-4v22,-47,73,19,93,-19r8,4v-7,11,-12,20,-27,20","w":186},"\ue12e":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm84,-205r-36,-48r11,-6r30,51","w":158},"\ue12f":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm71,-208r30,-51r11,6r-35,48","w":158},"\ue130":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm80,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":158},"\ue131":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm104,-213v-23,-5,-52,-27,-67,-1r-6,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,20,-27,20","w":158},"\ue132":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm106,-234r14,0r0,13r-14,0r0,-13xm36,-234r14,0r0,13r-14,0r0,-13","w":158},"\ue133":{"d":"23,-25v-23,-59,-22,-171,56,-165v23,2,38,7,50,19v7,-6,11,-25,21,-15r-16,22v18,22,8,61,12,98v6,65,-82,88,-118,48v-7,6,-11,25,-21,15xm34,-26v29,36,108,18,102,-40v-3,-31,5,-68,-8,-90xm122,-163v-30,-35,-106,-15,-101,40v3,32,-5,69,8,90","w":158},"\ue134":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm87,-205r-36,-48r12,-6r29,51","w":170},"\ue135":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm77,-208r29,-51r12,6r-36,48","w":170},"\ue136":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm83,-234r-44,33r-4,-5r43,-39r11,0r42,39r-4,5","w":170},"\ue137":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm113,-234r14,0r0,13r-14,0r0,-13xm44,-234r13,0r0,13r-13,0r0,-13","w":170},"\ue138":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78xm60,-208r29,-51r12,6r-36,48","w":130,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue139":{"d":"158,-97v0,57,-65,54,-124,52r0,45r-10,0r0,-189r10,0r0,38v60,-1,124,-7,124,54xm148,-98v-1,-51,-61,-45,-114,-44r0,88v52,0,114,8,114,-44","w":163},"\ue13a":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm37,-221r89,0r0,9r-89,0r0,-9","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13b":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm47,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,39,-68,50,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13c":{"d":"163,61v-35,2,-35,-44,-14,-61r-17,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189v-19,9,-27,54,4,53v10,2,21,-11,24,1v-5,4,-16,7,-25,7xm82,-179r-46,123r93,0","w":164,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13d":{"d":"24,-65v-8,67,94,76,111,25r8,3v-9,23,-31,39,-61,39v-66,1,-68,-57,-68,-126v0,-71,101,-87,128,-32r-8,5v-19,-47,-119,-38,-110,28r0,58xm72,-208r30,-51r11,6r-35,48","w":147},"\ue13e":{"d":"24,-65v-8,67,94,76,111,25r8,3v-9,23,-31,39,-61,39v-66,1,-68,-57,-68,-126v0,-71,101,-87,128,-32r-8,5v-19,-47,-119,-38,-110,28r0,58xm81,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":147},"\ue13f":{"d":"24,-65v-8,67,94,76,111,25r8,3v-9,23,-31,39,-61,39v-66,1,-68,-57,-68,-126v0,-71,101,-87,128,-32r-8,5v-19,-47,-119,-38,-110,28r0,58xm74,-234r13,0r0,13r-13,0r0,-13","w":147},"\ue140":{"d":"24,-65v-8,67,94,76,111,25r8,3v-9,23,-31,39,-61,39v-66,1,-68,-57,-68,-126v0,-71,101,-87,128,-32r-8,5v-19,-47,-119,-38,-110,28r0,58xm124,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":147},"\ue141":{"d":"155,-98v0,59,-15,98,-68,98r-65,0r0,-189r63,0v53,0,70,33,70,91xm85,-9v58,3,63,-45,61,-104v-2,-44,-18,-67,-63,-67r-52,0r0,171r54,0xm125,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":170},"\ue142":{"d":"155,-98v0,59,-15,98,-68,98r-65,0r0,-91r-18,0r0,-8r18,0r0,-90r63,0v53,0,70,33,70,91xm85,-9v58,3,63,-45,61,-104v-2,-44,-18,-67,-63,-67r-52,0r0,81r57,0r0,8r-57,0r0,82r54,0","w":170},"\ue143":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm34,-221r89,0r0,9r-89,0r0,-9","w":147},"\ue144":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm44,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":147},"\ue145":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm75,-234r14,0r0,13r-14,0r0,-13","w":147},"\ue146":{"d":"145,61v-35,1,-35,-45,-13,-61r-110,0r0,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0v3,15,-14,24,-14,41v0,23,26,25,41,16r4,6v-6,4,-17,7,-26,7","w":147},"\ue147":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm124,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":147},"\ue148":{"d":"14,-66v-3,-68,3,-125,68,-124v28,0,50,14,59,34v-1,1,-5,5,-7,5v-8,-17,-28,-31,-52,-31v-60,-1,-62,56,-59,117v2,37,21,59,59,59v43,0,62,-30,58,-79r-46,0r0,-9r55,0v5,58,-14,96,-67,96v-43,0,-66,-25,-68,-68xm81,-234r-44,33r-4,-5r44,-39r10,0r43,39r-5,5","w":164},"\ue149":{"d":"14,-66v-3,-68,3,-125,68,-124v28,0,50,14,59,34v-1,1,-5,5,-7,5v-8,-17,-28,-31,-52,-31v-60,-1,-62,56,-59,117v2,37,21,59,59,59v43,0,62,-30,58,-79r-46,0r0,-9r55,0v5,58,-14,96,-67,96v-43,0,-66,-25,-68,-68xm46,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r7,0v-1,40,-68,49,-81,13v-2,-4,-3,-9,-4,-13r8,0","w":164},"\ue14a":{"d":"14,-66v-3,-68,3,-125,68,-124v28,0,50,14,59,34v-1,1,-5,5,-7,5v-8,-17,-28,-31,-52,-31v-60,-1,-62,56,-59,117v2,37,21,59,59,59v43,0,62,-30,58,-79r-46,0r0,-9r55,0v5,58,-14,96,-67,96v-43,0,-66,-25,-68,-68xm73,-234r14,0r0,13r-14,0r0,-13","w":164},"\ue14b":{"d":"14,-66v-3,-68,3,-125,68,-124v28,0,50,14,59,34v-1,1,-5,5,-7,5v-8,-17,-28,-31,-52,-31v-60,-1,-62,56,-59,117v2,37,21,59,59,59v43,0,62,-30,58,-79r-46,0r0,-9r55,0v5,58,-14,96,-67,96v-43,0,-66,-25,-68,-68xm70,81r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0","w":164},"\ue14c":{"d":"144,-92r-113,0r0,92r-9,0r0,-189r9,0r0,89r113,0r0,-89r9,0r0,189r-9,0r0,-92xm88,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":175},"\ue14d":{"d":"144,-92r-113,0r0,92r-9,0r0,-153r-18,0r0,-8r18,0r0,-28r9,0r0,28r113,0r0,-28r9,0r0,28r19,0r0,8r-19,0r0,153r-9,0r0,-92xm144,-100r0,-53r-113,0r0,53r113,0","w":175},"\ue14e":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm54,-213v-23,-5,-52,-27,-67,-1r-6,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,20,-27,20","w":56},"\ue14f":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm-17,-221r90,0r0,9r-90,0r0,-9","w":56},"\ue150":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm-6,-239v3,16,17,28,35,28v20,0,30,-9,35,-28r8,0v-2,40,-68,49,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":56},"\ue151":{"d":"63,54v-19,14,-57,6,-54,-21v1,-14,5,-24,15,-33r0,-189r9,0r0,189v-15,12,-25,53,6,53v10,2,21,-11,24,1","w":56},"\ue152":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm22,-234r14,0r0,13r-14,0r0,-13","w":56},"\ue153":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm153,-54v5,52,-61,71,-96,42r6,-7v28,26,81,10,81,-38r0,-132r9,0r0,135","w":172},"\ue154":{"d":"105,-54v5,52,-61,71,-96,42r6,-7v29,25,81,11,81,-38r0,-132r9,0r0,135xm101,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":124},"\ue155":{"d":"84,-110r-53,61r0,49r-9,0r0,-189r9,0r0,126r109,-126r10,0r-60,72r72,117r-10,0xm73,81r9,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-7,0","w":170},"\ue156":{"d":"22,-189r9,0r0,180r109,0r0,9r-118,0r0,-189xm26,-208r29,-51r12,6r-36,48","w":147,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue157":{"d":"22,-189r9,0r0,180r109,0r0,9r-118,0r0,-189xm72,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0","w":147,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue158":{"d":"22,-189r9,0r0,180r109,0r0,9r-118,0r0,-189xm95,-139r9,-34v-8,1,-3,-11,-4,-16r14,0v2,23,-7,34,-12,50r-7,0","w":147,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue159":{"d":"22,-189r9,0r0,180r109,0r0,9r-118,0r0,-189xm87,-109r13,0r0,13r-13,0r0,-13","w":147,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue15a":{"d":"22,-66r-30,17r-4,-7r34,-19r0,-114r9,0r0,109r35,-20r3,6r-38,23r0,62r109,0r0,9r-118,0r0,-66","w":147,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue15b":{"d":"32,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,189r-10,0xm91,-208r30,-51r11,6r-36,48","w":186},"\ue15c":{"d":"32,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,189r-10,0xm81,81r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0","w":186},"\ue15d":{"d":"32,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,189r-10,0xm139,-245r4,4r-43,40r-10,0r-44,-40r4,-5r45,34","w":186},"\ue15e":{"d":"165,17v2,28,-30,32,-49,21r4,-8v13,10,34,8,34,-11r0,-19r-122,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,206","w":186},"\ue15f":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm33,-221r90,0r0,9r-90,0r0,-9","w":158},"\ue160":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm45,-239v3,16,17,28,35,28v19,0,29,-10,34,-28r8,0v-1,40,-68,49,-81,13v-2,-4,-3,-9,-4,-13r8,0","w":158},"\ue161":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm59,-208r30,-51r11,6r-35,48xm91,-208r29,-51r12,6r-36,48","w":158},"\ue162":{"d":"154,-137v-1,32,-20,51,-50,55r45,82r-11,0r-44,-81r-62,0r0,81r-9,0r0,-189v61,-1,132,-7,131,52xm144,-137v0,-51,-61,-43,-112,-43r0,90v54,1,112,6,112,-47xm73,-208r29,-51r12,6r-36,48","w":164},"\ue163":{"d":"154,-137v-1,32,-20,51,-50,55r45,82r-11,0r-44,-81r-62,0r0,81r-9,0r0,-189v61,-1,132,-7,131,52xm144,-137v0,-51,-61,-43,-112,-43r0,90v54,1,112,6,112,-47xm70,81r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0","w":164},"\ue164":{"d":"154,-137v-1,32,-20,51,-50,55r45,82r-11,0r-44,-81r-62,0r0,81r-9,0r0,-189v61,-1,132,-7,131,52xm144,-137v0,-51,-61,-43,-112,-43r0,90v54,1,112,6,112,-47xm126,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":164},"\ue165":{"d":"124,-86v43,33,5,94,-52,88v-29,-3,-46,-8,-66,-19r6,-7v36,25,121,29,121,-24v0,-68,-118,-19,-118,-92v0,-53,75,-61,115,-37r-5,8v-32,-19,-102,-21,-101,29v2,50,70,32,100,54xm72,-208r29,-51r12,6r-36,48","w":153},"\ue166":{"d":"124,-86v43,33,5,94,-52,88v-29,-3,-46,-8,-66,-19r6,-7v36,25,121,29,121,-24v0,-68,-118,-19,-118,-92v0,-53,75,-61,115,-37r-5,8v-32,-19,-102,-21,-101,29v2,50,70,32,100,54xm80,-234r-45,33r-4,-5r44,-39r10,0r43,39r-5,5","w":153},"\ue167":{"d":"96,42v1,-15,-20,-18,-33,-20r7,-20v-27,-1,-45,-8,-64,-19r6,-7v36,25,121,29,121,-24v0,-68,-118,-19,-118,-92v0,-53,75,-61,115,-37r-5,8v-32,-19,-103,-21,-101,29v3,66,119,12,119,92v0,31,-29,49,-65,49r-5,16v18,2,32,7,32,26v1,25,-34,28,-55,20v3,-15,47,9,46,-21","w":153},"\ue168":{"d":"72,0r-9,0r0,-180r-60,0r0,-9r129,0r0,9r-60,0r0,180xm55,81r8,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-6,0","w":134,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue169":{"d":"72,0r-9,0r0,-180r-60,0r0,-9r129,0r0,9r-60,0r0,180xm111,-245r4,4r-42,40r-11,0r-44,-40r5,-5r44,34","w":134,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue16a":{"d":"72,-105r46,0r0,8r-46,0r0,97r-9,0r0,-97r-49,0r0,-8r49,0r0,-75r-60,0r0,-9r129,0r0,9r-60,0r0,75","w":134,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue16b":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm109,-213v-24,-5,-52,-27,-67,-1r-6,-4v21,-48,73,19,93,-19r7,4v-7,11,-12,20,-27,20","w":170},"\ue16c":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm42,-221r89,0r0,9r-89,0r0,-9","w":170},"\ue16d":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm51,-239v5,34,66,39,70,0r8,0v-1,40,-68,49,-81,13v-2,-5,-8,-15,3,-13","w":170},"\ue16e":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm117,-231v0,17,-13,30,-32,30v-18,0,-31,-13,-31,-30v0,-16,15,-31,31,-31v17,0,32,14,32,31xm109,-231v1,-14,-10,-25,-24,-25v-13,0,-23,11,-23,25v0,13,10,24,23,24v13,0,25,-10,24,-24","w":170},"\ue16f":{"d":"152,-61v-1,40,-27,63,-67,63v-40,0,-66,-24,-66,-65r0,-126r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0r0,128xm64,-208r30,-51r11,6r-36,48xm95,-208r30,-51r11,6r-35,48","w":170},"\ue170":{"d":"123,54v-19,14,-58,6,-54,-21v1,-11,5,-24,13,-31v-84,0,-60,-110,-63,-191r8,0v4,76,-22,183,58,182v36,0,58,-20,58,-57r0,-125r9,0v-7,75,28,184,-60,190v-13,13,-24,52,7,52v10,2,21,-11,24,1","w":170},"\ue171":{"d":"174,0r-8,0r-52,-174r-51,174r-9,0r-48,-189r9,0r44,175r52,-175r7,0r52,175r43,-175r9,0xm115,-234r-44,33r-5,-5r44,-39r11,0r42,39r-4,5","w":227,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue172":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78xm66,-234r-45,33r-4,-5r44,-39r10,0r43,39r-5,5","w":130,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue173":{"d":"9,-9r107,-171r-102,0r0,-9r113,0r0,9r-107,171r107,0r0,9r-118,0r0,-9xm62,-208r29,-51r12,6r-36,48","w":136},"\ue174":{"d":"9,-9r107,-171r-102,0r0,-9r113,0r0,9r-107,171r107,0r0,9r-118,0r0,-9xm70,-234r14,0r0,13r-14,0r0,-13","w":136},"\ue175":{"d":"134,-47r-90,0r-33,47r-10,0r127,-189r130,0r0,9r-114,0r0,80r98,0r0,8r-98,0r0,83r114,0r0,9r-124,0r0,-47xm134,-56r0,-124r-84,124r84,0xm171,-208r29,-51r12,6r-36,48","w":266},"\ue176":{"d":"23,-25v-23,-59,-22,-171,56,-165v23,2,38,7,50,19v7,-6,11,-25,21,-15r-16,22v18,22,8,61,12,98v6,65,-82,88,-118,48v-7,6,-11,25,-21,15xm34,-26v29,36,108,18,102,-40v-3,-31,5,-68,-8,-90xm122,-163v-30,-35,-106,-15,-101,40v3,32,-5,69,8,90xm84,-208r29,-51r12,6r-36,48","w":158},"\ue177":{"d":"33,-137r2,137r-11,0r2,-137r7,0xm36,-189r0,13r-13,0r0,-13r13,0","w":59},"\ue178":{"d":"63,-6v25,0,40,-19,45,-40r9,2v-7,25,-26,46,-55,46v-31,-1,-52,-18,-52,-48v0,-48,56,-48,47,-106r10,0v8,57,-48,60,-48,105v0,25,17,41,44,41xm68,-192r0,14r-13,0r0,-14r13,0","w":125},"\ue183":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0","w":164,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue184":{"d":"153,-50v2,61,-71,49,-131,50r0,-189v58,0,127,-9,127,48v0,22,-12,37,-31,43v20,7,34,23,35,48xm143,-51v0,-51,-61,-42,-112,-42r0,84v51,0,112,9,112,-42xm140,-141v0,-47,-61,-39,-109,-39r0,78v48,0,109,8,109,-39","w":164},"\ue185":{"d":"32,0r-10,0r0,-189r118,0r0,9r-108,0r0,180","w":141,"k":{"\ue18a":7,"\ue183":29,"\ue1a1":7,"\ue19f":7,"\ue19b":29,"\ue19a":7,"\ue191":7,"\ue18d":29,"\ue186":29}},"\ue186":{"d":"76,-189r12,0r72,189r-156,0xm146,-9r-64,-170r-64,170r128,0","w":164,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue187":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189","w":147},"\ue188":{"d":"9,-9r107,-171r-102,0r0,-9r113,0r0,9r-107,171r107,0r0,9r-118,0r0,-9","w":136},"\ue189":{"d":"144,-92r-113,0r0,92r-9,0r0,-189r9,0r0,89r113,0r0,-89r9,0r0,189r-9,0r0,-92","w":175},"\ue18a":{"d":"32,-101r92,0r0,9r-92,0r0,-9xm12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59","w":158},"\ue18b":{"d":"24,-189r9,0r0,189r-9,0r0,-189","w":56},"\ue18c":{"d":"84,-110r-53,61r0,49r-9,0r0,-189r9,0r0,126r109,-126r10,0r-60,72r72,117r-10,0","w":170},"\ue18d":{"d":"149,0r-67,-178r-67,178r-11,0r72,-189r12,0r72,189r-11,0","w":164,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue18e":{"d":"181,-171r-71,142r-7,0r-72,-142r0,171r-9,0r0,-189r9,0r75,149r75,-149r9,0r0,189r-9,0r0,-171","w":209},"\ue18f":{"d":"32,-174r0,174r-9,0r0,-189r10,0r123,175r0,-175r9,0r0,189r-10,0","w":186},"\ue190":{"d":"17,-189r121,0r0,9r-121,0r0,-9xm17,-9r121,0r0,9r-121,0r0,-9xm33,-100r89,0r0,9r-89,0r0,-9","w":155},"\ue191":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59","w":158},"\ue192":{"d":"144,-180r-113,0r0,180r-9,0r0,-189r131,0r0,189r-9,0r0,-180","w":175},"\ue193":{"d":"153,-135v0,56,-61,56,-121,53r0,82r-9,0r0,-189v61,0,131,-9,130,54xm143,-135v0,-52,-59,-45,-111,-45r0,89v52,0,111,7,111,-44","w":154,"k":{"\ue183":11,"\ue19b":11,"\ue18d":11,"\ue186":11}},"\ue194":{"d":"20,-180r55,82r-55,89r107,0r0,9r-118,0r0,-9r55,-90r-55,-81r0,-9r116,0r0,9r-105,0","w":134},"\ue195":{"d":"72,0r-9,0r0,-180r-60,0r0,-9r129,0r0,9r-60,0r0,180","w":134,"k":{"\ue183":14,"\ue19b":14,"\ue18d":14,"\ue186":14}},"\ue196":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78","w":130,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue197":{"d":"107,-180v55,2,87,28,87,83v0,55,-34,79,-87,81r0,16r-8,0r0,-16v-54,-2,-86,-27,-86,-81v0,-53,32,-80,86,-83r0,-9r8,0r0,9xm107,-24v87,13,108,-122,31,-143v-10,-3,-20,-5,-31,-5r0,148xm99,-172v-47,4,-79,25,-78,76v1,48,27,70,78,72r0,-148","w":205},"\ue198":{"d":"69,-88r-55,88r-10,0r60,-97r-56,-92r10,0r51,83r51,-83r11,0r-56,93r61,96r-11,0","w":138},"\ue199":{"d":"183,-104v-1,42,-32,66,-78,66r0,38r-8,0r0,-38v-47,-2,-78,-23,-78,-69r0,-82r9,0v-1,70,-11,144,69,143r0,-143r8,0r0,143v39,0,69,-19,69,-58r0,-85r9,0r0,85","w":202},"\ue19a":{"d":"146,-124v2,50,1,98,-29,116r34,0r0,8r-55,0r0,-10v43,-9,42,-60,40,-113v-2,-35,-19,-58,-56,-58v-59,-1,-63,52,-59,113v2,30,15,51,40,58r0,10r-54,0r0,-9r34,0v-35,-16,-29,-66,-29,-115v0,-42,26,-66,67,-66v42,0,65,25,67,66","w":158},"\ue19b":{"d":"132,-47r-100,0r-17,47r-11,0r72,-189r12,0r72,189r-11,0xm82,-179r-46,123r93,0xm78,-208r29,-51r12,6r-36,48","w":164,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue19c":{"d":"22,-189r118,0r0,9r-109,0r0,80r94,0r0,8r-94,0r0,83r109,0r0,9r-118,0r0,-189xm69,-208r30,-51r12,6r-36,48","w":147},"\ue19d":{"d":"144,-92r-113,0r0,92r-9,0r0,-189r9,0r0,89r113,0r0,-89r9,0r0,189r-9,0r0,-92xm78,-208r29,-51r12,6r-36,48","w":175},"\ue19e":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm26,-208r29,-51r12,6r-36,48","w":56},"\ue19f":{"d":"12,-66v-3,-68,3,-124,67,-124v64,0,67,56,67,124v0,42,-25,68,-67,68v-43,-1,-65,-25,-67,-68xm136,-66v0,-59,2,-115,-56,-115v-60,0,-62,55,-59,116v2,36,21,57,59,58v35,1,56,-24,56,-59xm77,-208r30,-51r11,6r-35,48","w":158},"\ue1a0":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78xm57,-208r29,-51r12,6r-36,48","w":130,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue1a1":{"d":"146,-124v2,50,1,98,-29,116r34,0r0,8r-55,0r0,-10v43,-9,42,-60,40,-113v-2,-35,-19,-58,-56,-58v-59,-1,-63,52,-59,113v2,30,15,51,40,58r0,10r-54,0r0,-9r34,0v-35,-16,-29,-66,-29,-115v0,-42,26,-66,67,-66v42,0,65,25,67,66xm71,-208r30,-51r11,6r-35,48","w":158},"\ue1a2":{"d":"24,-189r9,0r0,189r-9,0r0,-189xm57,-234r14,0r0,13r-14,0r0,-13xm-13,-234r14,0r0,13r-14,0r0,-13","w":56},"\ue1a3":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78xm93,-234r14,0r0,13r-14,0r0,-13xm23,-234r14,0r0,13r-14,0r0,-13","w":130,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue027":{"d":"142,-7v6,68,-107,92,-129,30r9,-2v16,50,114,35,110,-26v-3,-39,-23,-59,-67,-55r0,-9v38,1,61,-14,64,-50v4,-59,-92,-71,-105,-21r-9,-2v7,-22,30,-38,59,-38v73,0,84,101,25,115v28,5,40,28,43,58","w":162},"\ue029":{"d":"143,-36v4,57,-11,95,-65,95v-32,0,-50,-15,-59,-37r8,-2v7,18,25,31,52,31v47,0,60,-38,55,-89v6,-59,-80,-64,-104,-28r-9,0r0,-113r117,0r0,9r-108,0r0,92v34,-35,121,-23,113,42","w":162},"\ue02a":{"d":"45,-118v38,-27,99,-4,99,50v0,46,-24,68,-66,70v-51,1,-76,-58,-52,-103r70,-134r10,0xm136,-64v0,-35,-20,-58,-55,-58v-35,0,-55,22,-55,58v0,36,20,59,55,59v34,0,55,-23,55,-59","w":162},"\ue02b":{"d":"44,57r91,-227r-109,0r0,38r-8,0r0,-47r126,0r0,9r-90,227r-10,0","w":162},"\ue02c":{"d":"105,-121v26,7,44,27,44,58v0,42,-27,62,-68,65v-75,6,-91,-107,-26,-123v-23,-9,-37,-25,-37,-55v1,-39,26,-58,63,-61v70,-6,83,101,24,116xm141,-63v0,-34,-26,-55,-60,-55v-35,0,-60,21,-60,55v0,35,25,58,60,58v35,0,60,-23,60,-58xm136,-177v0,-34,-23,-53,-55,-53v-32,0,-55,20,-55,53v0,34,22,51,55,51v33,0,55,-17,55,-51","w":162},"\ue02d":{"d":"116,-57v-44,23,-98,-1,-98,-55v0,-45,24,-67,66,-68v52,-2,75,58,52,103r-70,134r-10,0xm26,-114v0,35,20,58,55,58v35,0,55,-22,55,-58v0,-36,-19,-59,-55,-59v-34,0,-55,23,-55,59","w":162},"\ue04b":{"d":"132,-7v6,68,-107,92,-129,30r9,-2v16,50,114,35,110,-26v-3,-39,-23,-59,-67,-55r0,-9v38,1,60,-14,63,-50v5,-61,-91,-70,-104,-21r-9,-2v7,-22,30,-38,59,-38v73,0,84,101,25,115v28,5,40,28,43,58","w":144},"\ue04d":{"d":"137,-36v4,57,-11,95,-65,95v-32,0,-50,-15,-59,-37r9,-2v7,18,25,31,51,31v48,0,60,-37,55,-89v6,-59,-80,-64,-104,-28r-9,0r0,-113r117,0r0,9r-108,0r0,92v34,-35,121,-23,113,42","w":150},"\ue04e":{"d":"41,-118v38,-27,102,-4,99,50v-2,44,-23,69,-66,70v-51,2,-75,-58,-52,-103r70,-134r10,0xm131,-64v0,-36,-20,-58,-54,-58v-35,0,-55,22,-55,58v0,36,20,59,55,59v33,0,54,-23,54,-59","w":150},"\ue04f":{"d":"40,57r91,-227r-109,0r0,38r-9,0r0,-47r127,0r0,9r-90,227r-10,0","w":150},"\ue050":{"d":"102,-121v26,7,44,27,44,58v0,42,-27,61,-68,65v-75,7,-90,-107,-26,-123v-23,-8,-38,-26,-38,-55v0,-38,27,-61,64,-61v38,0,63,23,63,61v0,29,-17,45,-39,55xm138,-63v0,-33,-25,-55,-60,-55v-35,0,-60,21,-60,55v0,35,25,58,60,58v34,0,60,-22,60,-58xm132,-177v0,-34,-23,-53,-54,-53v-32,0,-55,20,-55,53v0,34,22,51,55,51v32,0,54,-17,54,-51","w":154},"\ue051":{"d":"112,-57v-44,23,-98,-1,-98,-55v0,-45,24,-67,66,-68v52,-2,75,59,52,103r-70,134r-10,0xm22,-114v0,35,20,58,55,58v35,0,55,-22,55,-58v0,-36,-19,-59,-55,-59v-34,0,-55,23,-55,59","w":154},"\u0218":{"d":"178,-63v0,75,-119,79,-167,42r5,-8v42,31,150,38,152,-34v2,-91,-137,-29,-144,-123v-5,-71,91,-81,143,-50r-5,8v-42,-26,-134,-24,-129,42v6,83,145,25,145,123xm86,81r9,-33v-8,1,-3,-11,-4,-16r14,0v2,22,-7,33,-12,49r-7,0","w":188},"\u0219":{"d":"28,-132v6,58,119,16,117,86v-2,60,-100,59,-136,29r5,-7v31,25,121,33,121,-23v0,-64,-113,-20,-116,-84v-2,-54,82,-61,120,-35r-5,8v-27,-21,-111,-22,-106,26xm73,81r8,-33v-6,0,-2,-11,-3,-16r14,0v2,23,-8,33,-13,49r-6,0","w":163},"\u04d9":{"d":"85,3v-51,0,-71,-36,-69,-90r132,0v0,-51,-17,-85,-67,-86v-17,0,-33,7,-44,14r-6,-7v57,-35,131,-2,125,76v-4,55,-21,93,-71,93xm25,-80v-7,66,64,98,104,56v12,-12,17,-32,18,-56r-122,0","w":167},"\u1e80":{"d":"221,0r-10,0r-66,-234r-66,234r-10,0r-60,-251r9,0r57,238r66,-238r9,0r66,238r57,-238r9,0xm149,-261r-51,-31r9,-10r46,37","w":288,"k":{"\u012d":7,"\u012b":7,"\u0129":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e3":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u1e81":{"d":"192,0r-10,0r-57,-163r-57,163r-10,0r-55,-178r10,0r51,166r56,-166r10,0r57,166r50,-166r10,0xm127,-205r-35,-48r11,-6r30,51","w":250,"k":{"e":7}},"\u1e82":{"d":"221,0r-10,0r-66,-234r-66,234r-10,0r-60,-251r9,0r57,238r66,-238r9,0r66,238r57,-238r9,0xm136,-265r47,-37r9,10r-52,31","w":288,"k":{"\u012d":7,"\u012b":7,"\u0129":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e3":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u1e83":{"d":"192,0r-10,0r-57,-163r-57,163r-10,0r-55,-178r10,0r51,166r56,-166r10,0r57,166r50,-166r10,0xm120,-208r30,-51r11,6r-35,48","w":250,"k":{"e":7}},"\u1e84":{"d":"221,0r-10,0r-66,-234r-66,234r-10,0r-60,-251r9,0r57,238r66,-238r9,0r66,238r57,-238r9,0xm170,-284r14,0r0,13r-14,0r0,-13xm106,-284r14,0r0,13r-14,0r0,-13","w":288,"k":{"\u012d":7,"\u012b":7,"\u0129":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e3":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u1e85":{"d":"192,0r-10,0r-57,-163r-57,163r-10,0r-55,-178r10,0r51,166r56,-166r10,0r57,166r50,-166r10,0xm153,-234r14,0r0,13r-14,0r0,-13xm84,-234r13,0r0,13r-13,0r0,-13","w":250,"k":{"e":7}},"\u1ef2":{"d":"87,0r-9,0r0,-104r-75,-147r10,0r70,138r69,-138r10,0r-75,147r0,104xm97,-261r-51,-31r9,-10r46,37","w":165,"k":{"\u012d":11,"\u012b":11,"\u0129":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e3":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u0169":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14}},"\u1ef3":{"d":"66,41v-6,19,-20,32,-44,31v-2,-15,17,-4,24,-15v13,-10,16,-34,23,-52r-66,-183r10,0r62,171r60,-171r10,0xm80,-205r-36,-48r11,-6r30,51","w":147,"k":{"e":7}},"\ue179":{"d":"124,-86v43,33,5,94,-52,88v-29,-3,-46,-8,-66,-19r6,-7v36,25,121,29,121,-24v0,-68,-118,-19,-118,-92v0,-53,75,-61,115,-37r-5,8v-32,-19,-102,-21,-101,29v2,50,70,32,100,54xm67,81r9,-33v-8,1,-3,-11,-4,-16r14,0v2,23,-8,33,-13,49r-6,0","w":153},"\ue17a":{"d":"174,0r-8,0r-52,-174r-51,174r-9,0r-48,-189r9,0r44,175r52,-175r7,0r52,175r43,-175r9,0xm111,-208r29,-51r12,6r-36,48","w":227,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue17b":{"d":"174,0r-8,0r-52,-174r-51,174r-9,0r-48,-189r9,0r44,175r52,-175r7,0r52,175r43,-175r9,0xm116,-205r-36,-48r12,-6r29,51","w":227,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue17c":{"d":"174,0r-8,0r-52,-174r-51,174r-9,0r-48,-189r9,0r44,175r52,-175r7,0r52,175r43,-175r9,0xm143,-234r14,0r0,13r-14,0r0,-13xm73,-234r14,0r0,13r-14,0r0,-13","w":227,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue17d":{"d":"69,0r-8,0r0,-78r-60,-111r11,0r54,102r53,-102r10,0r-60,111r0,78xm69,-205r-36,-48r12,-6r29,51","w":130,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\u0259":{"d":"85,3v-51,0,-71,-36,-69,-90r132,0v0,-51,-17,-85,-67,-86v-17,0,-33,7,-44,14r-6,-7v57,-35,131,-2,125,76v-4,55,-21,93,-71,93xm25,-80v-7,66,64,98,104,56v12,-12,17,-32,18,-56r-122,0","w":167},"\u02b9":{"d":"58,-242r-42,86r-8,-1r33,-89","w":56},"\u2023":{"d":"113,-100r-84,47r0,-90","w":124},"\u2103":{"d":"221,-5v36,0,56,-20,68,-45r8,3v-12,28,-39,50,-77,50v-85,1,-85,-79,-85,-168v0,-92,127,-117,160,-43r-8,4v-11,-22,-33,-40,-66,-40v-81,0,-80,77,-77,158v2,50,27,81,77,81xm109,-210v0,26,-17,43,-42,43v-25,0,-42,-17,-42,-43v0,-25,17,-41,42,-41v26,0,42,16,42,41xm101,-210v-2,-20,-14,-32,-34,-34v-20,-1,-33,16,-34,34v0,19,14,36,34,35v19,0,35,-14,34,-35","w":311},"\u2109":{"d":"148,-131r118,0r0,8r-118,0r0,123r-10,0r0,-251r148,0r0,9r-138,0r0,111xm109,-210v0,26,-17,43,-42,43v-25,0,-42,-17,-42,-43v0,-25,17,-41,42,-41v26,0,42,16,42,41xm101,-210v-2,-20,-14,-32,-34,-34v-20,-1,-33,16,-34,34v0,19,14,36,34,35v19,0,35,-14,34,-35","w":297},"\u2117":{"d":"202,-150v0,45,-45,46,-93,43r0,67r-9,0r0,-154v49,0,102,-7,102,44xm192,-150v0,-40,-43,-36,-83,-35r0,70v39,0,83,6,83,-35xm262,-123v0,77,-47,127,-122,127v-75,0,-122,-50,-122,-127v0,-77,47,-127,122,-127v75,0,122,50,122,127xm253,-123v0,-70,-43,-119,-113,-119v-71,0,-113,50,-113,119v0,70,42,119,113,119v70,0,113,-49,113,-119","w":276},"\u2126":{"d":"59,-9v-48,-19,-47,-88,-44,-156v2,-53,30,-86,86,-87v83,-2,84,76,84,162v0,40,-17,67,-42,82r48,0r0,8r-67,0r0,-11v54,-13,54,-84,51,-153v-2,-47,-26,-77,-74,-79v-78,-2,-78,74,-75,153v2,41,18,70,50,80r0,10r-66,0r0,-9r49,0","w":201},"\u212b":{"d":"168,-63r-128,0r-23,63r-11,0r92,-251r13,0r91,251r-12,0xm43,-72r122,0r-61,-169xm135,-288v0,19,-12,31,-31,31v-19,0,-30,-14,-31,-31v-1,-17,15,-30,31,-30v17,0,31,13,31,30xm128,-288v0,-13,-11,-24,-24,-24v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24","w":208},"\u2190":{"d":"268,-120r0,10r-231,0r64,61r-8,8r-75,-75r75,-74r8,8r-64,62r231,0","w":286},"\u2191":{"d":"91,-1r-10,0r0,-230r-62,63r-7,-8r74,-75r75,75r-8,8r-62,-63r0,230","w":174},"\u2192":{"d":"248,-120r-63,-62r8,-8r75,74r-75,75r-8,-8r63,-61r-230,0r0,-10r230,0","w":286},"\u2193":{"d":"91,-21r62,-63r8,8r-75,75r-74,-75r7,-8r62,63r0,-230r10,0r0,230","w":174},"\u2196":{"d":"271,-13r-7,7r-209,-206r0,88r-10,-1r0,-104r106,0r0,10r-89,0","w":302},"\u2198":{"d":"45,-223r8,-7r208,206r0,-88r10,0r0,105r-106,0r0,-11r89,0","w":302},"\u21a9":{"d":"287,-197v0,52,-8,87,-58,87r-187,0r62,62r-8,7r-73,-74r73,-74r8,7r-62,62r190,0v41,1,44,-34,44,-78v0,-37,-25,-46,-65,-43r0,-10v47,-4,76,11,76,54","w":302},"\u21aa":{"d":"34,-198v0,44,3,79,44,78r191,0r-63,-62r8,-7r74,74r-74,74r-8,-7r63,-62r-187,0v-50,1,-59,-34,-59,-87v0,-44,29,-58,77,-54r0,10v-40,-3,-66,5,-66,43","w":302},"\u21b3":{"d":"60,-120r211,0r-63,-62r8,-7r73,74r-73,74r-8,-7r63,-62r-222,0r0,-139r11,0r0,129","w":302},"\u21b5":{"d":"279,-249r11,0r0,139r-222,0r63,62r-8,7r-73,-74r73,-74r8,7r-63,62r211,0r0,-129","w":302},"\u21de":{"d":"96,-129r42,0r0,11r-42,0r0,42r42,0r0,11r-42,0r0,65r-11,0r0,-65r-42,0r0,-11r42,0r0,-42r-42,0r0,-11r42,0r0,-100r-62,62r-7,-8r74,-74r75,74r-8,8r-62,-62","w":174},"\u21df":{"d":"95,-21r62,-61r8,7r-75,75r-74,-75r7,-7r62,61r0,-99r-42,0r0,-11r42,0r0,-42r-42,0r0,-11r42,0r0,-65r11,0r0,65r42,0r0,11r-42,0r0,42r42,0r0,11r-42,0","w":174},"\u21e0":{"d":"109,-120r0,10r-72,0r64,61r-8,8r-75,-75r75,-74r8,8r-64,62r72,0xm126,-120r39,0r0,10r-39,0r0,-10xm183,-120r38,0r0,10r-38,0r0,-10xm239,-120r28,0r0,10r-28,0r0,-10","w":284},"\u21e1":{"d":"89,-158r-10,0r0,-71r-62,63r-8,-8r75,-75r74,75r-7,8r-62,-63r0,71xm89,-140r0,38r-11,0r0,-38r11,0xm89,-84r0,38r-11,0r0,-38r11,0xm89,-28r0,28r-11,0r0,-28r11,0","w":169},"\u21e2":{"d":"247,-120r-63,-62r8,-8r75,74r-75,75r-8,-8r63,-61r-72,0r0,-10r72,0xm158,-110r-38,0r0,-10r38,0r0,10xm102,-110r-39,0r0,-10r39,0r0,10xm45,-110r-27,0r0,-10r27,0r0,10","w":284},"\u21e3":{"d":"89,-20r62,-63r7,8r-74,75r-75,-75r8,-8r62,63r0,-71r10,0r0,71xm78,-109r0,-38r11,0r0,38r-11,0xm78,-165r0,-38r11,0r0,38r-11,0xm78,-221r0,-28r11,0r0,28r-11,0","w":169},"\u21e4":{"d":"257,-120r0,10r-191,0r64,61r-9,8r-75,-75r75,-74r9,8r-64,62r191,0xm28,-190r11,0r0,150r-11,0r0,-150","w":272},"\u21e5":{"d":"220,-120r-64,-62r9,-8r74,74r-74,75r-9,-8r64,-61r-191,0r0,-10r191,0xm257,-40r-10,0r0,-150r10,0r0,150","w":272},"\u21e7":{"d":"135,-236r-106,110r51,0r0,117r110,0r0,-117r50,0xm9,-118r126,-132r126,132r-62,0r0,118r-128,0r0,-118r-62,0","w":273},"\u21ea":{"d":"83,20r0,42r110,0r0,-42r-110,0xm74,11r128,0r0,60r-128,0r0,-60xm138,-236r-106,110r51,0r0,102r110,0r0,-102r51,0xm12,-118r126,-132r126,132r-62,0r0,103r-128,0r0,-103r-62,0","w":278},"\u2303":{"d":"39,-149r104,-103r103,102r-8,7r-95,-93r-96,95","w":286},"\u2318":{"d":"230,-244v-36,0,-40,34,-37,73v38,3,74,-2,73,-37v-1,-21,-15,-36,-36,-36xm28,-208v0,35,35,40,74,37v2,-38,-1,-72,-36,-73v-21,-1,-38,16,-38,36xm266,-43v-1,-35,-34,-40,-73,-37v-2,39,1,74,37,74v20,0,37,-17,36,-37xm66,-6v35,-1,38,-35,36,-74v-39,-3,-74,2,-74,37v0,20,17,37,38,37xm184,-89r0,-73r-73,0r0,73r73,0xm275,-208v0,41,-37,49,-82,46r0,73v45,-3,82,2,82,46v0,29,-17,46,-45,46v-42,0,-49,-37,-46,-83r-73,0v3,45,-3,84,-45,83v-28,-1,-47,-17,-47,-46v0,-42,37,-50,83,-46r0,-73v-46,3,-83,-5,-83,-46v0,-28,18,-45,47,-45v43,-1,48,37,45,82r73,0v-3,-45,3,-83,46,-82v29,0,45,17,45,45","w":296},"\u2324":{"d":"256,-251r0,11r-206,0r0,-11r206,0xm54,-121r99,-106r99,106r-7,8r-92,-98r-91,98","w":286},"\u2325":{"d":"187,-240r216,0r0,11r-216,0r0,-11xm15,-240r79,0r143,230r166,0r0,10r-173,0r-143,-229r-72,0r0,-11","w":427},"\u2326":{"d":"178,-120r-60,61r-6,-6r60,-60r-60,-60r6,-6r60,60r60,-60r5,6r-59,60r59,60r-5,6xm375,-125r-114,-116r-224,0r0,232r224,0xm267,0r-239,0r0,-250r239,0r122,125","w":398},"\u232b":{"d":"179,-59r-5,-6r59,-60r-59,-60r5,-6r60,60r60,-60r6,6r-60,60r60,60r-6,6r-60,-61xm156,-9r224,0r0,-232r-224,0r-115,116xm28,-125r122,-125r239,0r0,250r-239,0","w":398},"\u235f":{"d":"271,-125v6,113,-143,168,-217,90v-21,-21,-38,-49,-37,-90v3,-77,51,-127,127,-127v77,0,122,51,127,127xm143,-19v64,0,106,-42,106,-106v0,-64,-43,-106,-106,-106v-63,0,-106,42,-106,106v0,64,42,106,106,106xm188,-108r9,60r-57,-27r-50,27r7,-59r-42,-42r58,-12r27,-53r29,53r59,12","w":289},"\u23cf":{"d":"276,-82r0,49r-252,0r0,-49r252,0xm276,-113r-252,0r126,-126","w":307},"\u25a0":{"d":"272,-14r-228,0r0,-228r228,0r0,228","w":315},"\u25a1":{"d":"40,-9r225,0r0,-230r-225,0r0,230xm28,0r0,-249r248,0r0,249r-248,0","w":302},"\u25b2":{"d":"281,-63r-253,0r127,-127","w":295},"\u25b6":{"d":"50,-252r126,126r-126,126r0,-252","w":214},"\u25bc":{"d":"155,-63r-127,-127r253,0","w":295},"\u25c0":{"d":"163,0r-127,-126r127,-126r0,252","w":214},"\u25cf":{"d":"154,-242v68,0,114,47,114,113v0,68,-47,115,-114,115v-69,0,-114,-46,-114,-115v0,-68,47,-113,114,-113","w":303},"\u2605":{"d":"218,-91r14,92r-86,-42r-77,42r11,-90r-65,-65r90,-17r41,-81r44,80r90,18","w":293},"\u2606":{"d":"219,-93r14,94r-86,-42r-79,42r12,-91r-66,-66r91,-18r41,-81r45,81r91,18xm262,-149r-77,-16r-38,-69r-36,70r-76,15r55,55r-10,77r67,-35r74,35r-13,-79","w":301},"\u2610":{"d":"40,-9r225,0r0,-230r-225,0r0,230xm28,0r0,-249r248,0r0,249r-248,0","w":302},"\u2611":{"d":"98,-138v17,12,25,46,30,71v32,-52,76,-113,125,-144v-47,44,-85,108,-115,167v-10,2,-18,4,-24,7v-10,-31,-21,-72,-40,-94v5,-5,15,-7,24,-7xm41,-9r225,0r0,-230r-225,0r0,230xm30,0r0,-249r247,0r0,249r-247,0","w":306},"\u2612":{"d":"223,-207r10,9r-72,72r73,72r-10,9r-72,-72r-72,73r-10,-10r72,-72r-72,-72r10,-9r72,72xm41,-9r225,0r0,-230r-225,0r0,230xm30,0r0,-249r247,0r0,249r-247,0","w":306},"\u2622":{"d":"122,-126v0,-16,13,-31,28,-30v36,1,37,58,0,58v-14,0,-28,-12,-28,-28xm205,-32v-36,19,-75,21,-109,0r35,-62v14,6,24,7,38,0xm131,-159v-12,5,-17,19,-19,33r-71,0v1,-49,21,-73,54,-95xm205,-221v31,18,55,49,55,95r-71,0v-1,-15,-8,-27,-20,-34xm270,-123v0,-74,-47,-123,-120,-123v-72,0,-119,48,-119,120v0,73,49,119,120,119v70,0,119,-48,119,-116xm283,-128v0,80,-51,134,-133,134v-79,0,-132,-52,-132,-132v0,-79,53,-132,132,-132v80,0,133,50,133,130","w":301},"\u2623":{"d":"109,-166v26,-19,62,-22,90,0v-3,6,-7,11,-13,15v-23,-15,-40,-14,-63,0v-6,-3,-10,-9,-14,-15xm181,-43v-3,-6,-6,-12,-7,-19v24,-13,34,-28,32,-54v4,-4,13,-3,19,-4v6,38,-17,64,-44,77xm126,-43v-27,-12,-50,-38,-43,-77v10,0,22,0,19,15v0,18,11,32,32,43v-1,7,-4,14,-8,19xm27,-50v-19,-49,5,-96,49,-105v-1,-56,21,-88,69,-96r2,5v-33,9,-49,28,-49,55v1,35,20,52,54,56r0,8v-12,2,-19,12,-14,23r-7,4v-34,-52,-121,-16,-100,48xm277,-49v25,-67,-70,-101,-99,-50v-13,-4,-3,-27,-21,-28r0,-8v32,-3,52,-23,53,-57v0,-26,-15,-44,-43,-53r2,-6v46,9,66,41,64,95v41,14,67,57,49,108xm271,-31v-17,36,-86,41,-117,12v-33,30,-101,22,-118,-13r4,-3v45,54,123,-2,93,-60v10,-8,23,11,34,-4r8,4v-29,60,49,109,92,62","w":308},"\u262e":{"d":"56,-35v-77,-76,-25,-230,92,-222v79,5,128,51,133,129v6,116,-146,171,-225,93xm243,-73v22,-35,15,-101,-12,-126v-18,-17,-41,-31,-72,-36r0,86xm138,-235v-74,4,-123,91,-83,162r83,-76r0,-86xm159,-122r0,104v32,-5,53,-18,72,-39xm138,-122r-71,65v20,18,38,35,71,40r0,-105","w":300},"\u262f":{"d":"189,-99v26,0,22,36,0,36v-10,0,-17,-9,-17,-17v-1,-11,8,-19,17,-19xm108,-193v-8,0,-18,8,-17,17v0,9,6,18,18,18v11,0,18,-9,18,-18v0,-9,-8,-18,-19,-17xm149,3v-79,0,-131,-53,-131,-131v0,-80,54,-130,131,-130v81,0,131,51,131,131v0,80,-51,130,-131,130xm272,-127v2,-94,-99,-155,-184,-108v40,-6,79,17,82,56v4,48,-45,58,-45,104v0,37,25,60,63,57v53,-4,82,-51,84,-109","w":298},"\u2672":{"d":"240,-161r-75,-8r21,-14r-16,-29r-45,67r-61,-35v21,-24,25,-66,62,-74r97,1v11,8,16,25,25,36r23,-13xm75,-7v-16,-37,-65,-82,-33,-127r-24,-18r76,0r31,66r-22,-12v-9,6,-29,29,-6,29r69,0r0,76v-32,-3,-80,11,-91,-14xm213,-134r62,-37v10,29,44,54,34,89r-50,85v-9,8,-28,3,-43,4r0,28r-40,-63r40,-61r0,25r39,0xm167,-217v-8,-20,-44,-46,-60,-20r-35,56r51,29xm50,-135v-26,22,-15,78,34,66v-13,-14,11,-28,18,-36r10,6r-22,-47r-57,0xm161,-64v-37,-2,-83,4,-114,-5v13,22,23,48,39,68v17,9,51,2,75,4r0,-67xm247,-210v-11,-13,-13,-35,-33,-39r-73,0v28,11,36,45,52,69r-13,8r57,5r24,-52xm261,-64v23,-3,51,-16,44,-42r-32,-57r-53,31xm298,-75v-18,20,-50,17,-87,17r0,-16r-29,46r29,47r0,-16v19,-2,42,5,50,-10","w":330},"\u2673":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm163,-43r-20,0r0,-82r-13,9r0,-21v8,-7,16,-13,33,-11r0,105","w":312},"\u2674":{"d":"119,-118v-2,-38,64,-44,62,-4v-1,28,-25,40,-37,59r35,0r0,18r-61,0r0,-16v14,-20,34,-35,44,-60v0,-6,-4,-11,-11,-11v-8,0,-12,7,-13,16xm287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5","w":312},"\u2675":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm171,-100v25,18,5,66,-32,55v-12,-4,-18,-14,-21,-26r19,-3v2,8,5,12,12,13v8,0,16,-7,14,-16v1,-14,-10,-13,-23,-13r0,-18v23,7,30,-21,10,-24v-7,1,-10,6,-12,13r-19,-2v2,-15,15,-28,31,-29v29,-3,41,36,21,50","w":312},"\u2676":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm172,-60r0,15r-19,0r0,-15r-42,0v1,-40,25,-59,35,-90r20,0r-34,72r21,0r0,-25r19,0r0,25r8,0r0,18r-8,0","w":312},"\u2677":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm142,-113v25,-10,46,7,42,36v2,28,-29,45,-52,29v-6,-4,-10,-11,-12,-22r19,-3v2,19,25,15,26,0v8,-20,-16,-35,-24,-16r-17,0r0,-59r55,0r0,18r-37,0r0,17","w":312},"\u2678":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm154,-107v19,-2,31,14,31,31v0,21,-11,34,-32,34v-58,0,-15,-79,1,-106r20,0xm153,-60v8,0,13,-7,13,-15v0,-9,-5,-14,-13,-15v-6,1,-13,6,-12,15v0,9,4,15,12,15","w":312},"\u2679":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm148,-41r-20,0r34,-86r-22,0r0,14r-18,0r0,-33r62,0v-3,44,-25,69,-36,105","w":312},"\u267a":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5","w":312},"\u267b":{"d":"263,-222r-30,52r-60,0r19,-12v-15,-23,-24,-53,-47,-68v27,3,70,-8,84,8r17,30xm57,-181v18,-28,33,-88,81,-62v8,4,12,9,16,14r-44,79xm297,-125v15,30,-9,59,-41,58r-45,-80r55,-31xm109,-104r-16,-10v-12,26,-30,47,-38,76v-10,-25,-38,-46,-35,-77r18,-31r-15,-7r58,0xm169,-29r31,-49r0,21v32,-1,67,5,88,-10v-24,27,-28,77,-88,67r0,21xm93,0v-29,0,-38,-37,-21,-57r89,0r0,57r-68,0","w":320},"\u267c":{"d":"150,-259v80,0,133,53,133,132v0,81,-54,133,-133,133v-78,0,-132,-53,-132,-133v0,-79,53,-132,132,-132xm213,-194v-8,-10,-7,-28,-26,-28r-49,0v18,10,24,34,35,51r-14,9r45,0r22,-39xm145,-207v-8,-14,-39,-22,-50,-3r-22,39r40,24xm221,-85v25,1,44,-22,31,-44r-23,-39r-41,23xm90,-149r-43,0r11,5v-5,12,-23,24,-12,40r25,40v2,-17,20,-40,28,-56r12,7xm245,-85v-14,10,-41,8,-66,8r0,-17r-23,37r23,38r0,-16v42,8,48,-28,66,-50xm84,-77v-29,47,28,43,66,42r0,-42r-66,0","w":300},"\u267d":{"d":"150,-260v79,0,133,52,133,133v0,80,-53,132,-133,132v-79,0,-132,-53,-132,-132v0,-80,54,-133,132,-133xm150,-1v75,0,126,-51,126,-126v0,-75,-51,-126,-126,-126v-75,0,-125,51,-125,126v0,75,50,126,125,126xm227,-201r-22,39r-45,0r14,-9v-11,-17,-17,-40,-35,-51v21,2,52,-6,63,6r12,22xm73,-171v14,-19,23,-65,61,-46v5,3,9,6,12,10r-33,60xm252,-129v12,21,-6,46,-30,44r-33,-60r40,-23xm112,-113r-12,-7v-8,16,-25,38,-28,56v-8,-19,-31,-34,-27,-57r14,-23r-11,-5r43,0xm157,-57r23,-37r0,17v24,0,50,3,66,-8v-18,20,-21,57,-66,50r0,16xm151,-35v-30,-2,-74,10,-73,-23v0,-6,2,-13,6,-19r67,0r0,42","w":300},"\u2693":{"d":"125,-252v35,0,42,54,11,62r0,5r47,0r0,18r-47,0r1,143v23,-4,38,-9,55,-25r-15,-12r51,-15r-7,55r-14,-15v-22,22,-47,35,-81,39v-34,-4,-60,-17,-81,-39r-14,15r-8,-55r51,15r-14,12v14,14,30,22,54,25r0,-143r-46,0r0,-18r46,0r0,-4v-30,-8,-26,-63,11,-63","w":251},"\u26a0":{"d":"141,-172v-1,-14,19,-23,29,-12v3,3,6,7,5,12r-11,101v0,3,-5,5,-7,6v-2,0,-8,-2,-7,-6xm172,-42v0,11,-9,17,-20,14v-16,-4,-13,-30,5,-29v8,0,15,6,15,15xm37,0v-18,1,-24,-16,-15,-30r119,-211v6,-16,27,-15,35,-1r120,212v7,13,2,30,-16,30r-243,0xm154,-226r-113,203v65,6,167,6,235,0v-34,-69,-75,-132,-111,-199v-3,-6,-7,-8,-11,-4","w":318},"\u2706":{"d":"96,4v-83,-24,-78,-239,0,-259r0,75v-25,9,-22,96,0,112r0,72xm130,-3v0,11,-18,6,-29,7r0,-72v11,1,28,-5,29,7r0,58xm101,-255v11,1,28,-4,29,7r0,59v1,15,-18,7,-29,9r0,-75","w":155},"\u2708":{"d":"312,-104v0,9,-7,16,-18,15r-90,0r-75,127r-35,0r42,-127r-69,0r-22,29r-27,0r14,-45r-15,-46r27,0r23,30r69,0r-40,-129r34,0r74,129r89,0v11,0,19,8,19,17","w":320},"\u2709":{"d":"127,-119r-82,-82r0,164xm256,-121r82,81r0,-164xm61,-23r261,0r-80,-81r-51,52r-50,-49xm58,-220r133,134r132,-134r-265,0xm362,-242r0,242r-339,0r0,-242r339,0","w":385},"\u2713":{"d":"23,-128v12,-9,36,-22,48,-5v14,21,27,53,31,85v42,-72,98,-147,165,-194r5,6v-66,59,-114,149,-157,232v-15,3,-27,6,-36,11v-14,-47,-26,-104,-56,-135","w":275},"\u2716":{"d":"258,-62r-62,63r-62,-63r-63,63r-62,-63r63,-62r-63,-62r62,-62r63,62r62,-62r62,62r-63,62","w":267},"\u271a":{"d":"95,-240r83,0r0,79r78,0r0,83r-76,0r0,78r-84,0r0,-78r-78,0r0,-83r77,0r0,-79","w":269},"\u272a":{"d":"143,-252v77,0,128,51,128,127v0,77,-51,128,-128,128v-77,0,-128,-51,-128,-128v0,-76,51,-127,128,-127xm174,-168r-34,-64r-33,64r-71,14r51,51r-9,71r62,-33r68,33r-12,-73r50,-49","w":286},"\u2794":{"d":"130,-30r87,-87r-206,0r0,-16r206,0r-86,-86r25,0r92,94r-94,95r-24,0","w":255},"\ue356":{"d":"58,-252v20,0,31,7,39,24r0,-23r8,0r0,126r-8,0r0,-25v-8,13,-18,27,-40,26v-36,0,-48,-28,-48,-63v0,-36,12,-65,49,-65xm57,-131v31,-1,39,-26,39,-58v0,-30,-9,-57,-39,-57v-31,1,-41,26,-40,58v1,30,8,57,40,57xm176,-127v20,0,31,7,39,24r0,-23r8,0r0,126r-8,0r0,-25v-7,14,-18,26,-39,26v-36,0,-49,-29,-49,-63v0,-36,13,-64,49,-65xm176,-6v30,0,39,-26,39,-58v0,-29,-9,-57,-39,-57v-32,0,-41,28,-41,58v0,30,9,57,41,57xm46,6r152,-263r10,0r-153,263r-9,0","w":232},"\ue357":{"d":"112,-51v-2,-53,3,-94,54,-94v50,0,54,41,54,94v0,33,-21,52,-54,52v-34,0,-52,-19,-54,-52xm211,-51v0,-46,0,-86,-45,-86v-47,0,-45,41,-45,87v0,29,17,44,45,44v27,0,45,-18,45,-45xm18,6r152,-263r10,0r-153,263r-9,0xm64,-106r-9,0r0,-60r-47,-85r9,0r43,76r42,-76r10,0r-48,85r0,60","w":229},"\ue378":{"d":"203,-125r-88,-87r0,206r-15,0r0,-206r-86,85r0,-24r94,-92r95,94r0,24","w":217},"\ue379":{"d":"203,-99r-95,93r-94,-92r0,-24r86,86r0,-207r15,0r0,207r88,-87r0,24","w":217},"\ue37a":{"d":"104,-30r-93,-95r92,-94r24,0r-86,86r207,0r0,16r-207,0r88,87r-25,0","w":255},"\ue37b":{"d":"171,-64r0,-124r-147,146r-11,-11r146,-146r-121,0r16,-16r132,0r0,133","w":205},"\ue37c":{"d":"14,-82r0,-133r132,0r16,16r-121,0r146,146r-11,11r-146,-146r0,124","w":205},"\ue37d":{"d":"292,1r-126,-127r126,-126r0,253xm156,1r-127,-127r127,-126r0,253","w":323},"\ue37e":{"d":"44,-252r126,126r-126,126r0,-252xm180,-252r126,126r-126,126r0,-252","w":323},"\ue381":{"d":"209,0r-51,0r0,-253r51,0r0,253xm107,0r-50,0r0,-253r50,0r0,253","w":267},"\ue382":{"d":"147,-10r-78,-76r-42,0r0,-77r42,0r78,-76r0,229","w":182},"\ue383":{"d":"190,-212v51,30,50,144,0,174v-5,0,-8,-5,-6,-10v37,-31,40,-119,2,-152v-5,-3,-3,-13,4,-12xm75,-86r-43,0r0,-76r43,0r76,-77r0,229","w":256},"\ue384":{"d":"234,-252v70,47,70,211,0,257v-4,0,-7,-3,-7,-7v24,-31,46,-66,47,-121v1,-54,-25,-88,-47,-122v1,-3,3,-7,7,-7xm64,-86r-42,0r0,-76r42,0r77,-77r0,229xm177,-44v38,-29,42,-130,0,-162v-2,-5,1,-11,6,-11v51,29,54,155,0,184v-5,0,-9,-6,-6,-11","w":316},"\ue385":{"d":"185,-221v51,35,54,161,-1,193v-5,1,-7,-5,-7,-8v19,-20,34,-47,34,-87v0,-41,-16,-67,-33,-90v-1,-3,4,-8,7,-8xm220,-251v-4,-2,-1,-13,5,-12v74,44,80,236,-1,278v-4,1,-7,-4,-7,-7v66,-47,70,-210,3,-260r0,1xm262,44v42,-34,68,-92,68,-165v0,-78,-31,-133,-69,-175v1,-3,4,-8,8,-7v48,37,75,103,75,184v0,82,-29,139,-76,176v-6,0,-8,-7,-6,-13xm62,-86r-42,0r0,-76r42,0r77,-77r0,229","w":370},"\ue386":{"d":"144,-266v0,-5,4,-9,9,-9v5,0,10,3,9,9r0,122v1,6,-4,9,-9,9v-5,0,-9,-4,-9,-9r0,-122xm240,-223v30,13,44,51,44,93v0,80,-53,128,-132,132v-117,7,-174,-149,-92,-222v9,-7,25,4,15,13v-18,18,-37,37,-36,76v3,70,46,117,113,117v68,0,109,-48,113,-117v2,-40,-21,-58,-34,-83v0,-5,4,-9,9,-9","w":300},"\ue387":{"d":"271,-205r-42,-42r9,-8r41,42xm217,-210v10,-1,19,9,19,18v0,9,-10,19,-19,19v-9,0,-19,-9,-18,-19v-1,-9,9,-19,18,-18xm197,-129r-41,-41r8,-9r42,41xm142,-135v11,-1,19,10,19,19v0,9,-8,19,-19,18v-9,1,-19,-9,-18,-18v-1,-10,8,-20,18,-19xm183,-84v24,3,45,19,55,37v-6,24,-24,45,-48,52v-81,-26,-138,-88,-171,-162v9,-23,27,-42,52,-48v18,10,34,30,38,54v-5,10,-18,16,-28,21v19,26,49,61,82,74v4,-11,10,-21,20,-28","w":288},"\ue388":{"d":"252,-114v12,-1,24,10,24,23v0,13,-12,24,-24,24v-12,0,-24,-11,-24,-24v0,-13,12,-24,24,-23xm186,-114v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23xm120,-114v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23xm273,0r-19,-19r73,-72r-71,-70r19,-19r89,89xm100,0r-91,-91r89,-89r19,19r-71,70r73,72","w":372},"\ue389":{"d":"153,-256v77,0,129,52,129,129v0,79,-53,130,-129,130v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129xm153,-18v65,0,108,-45,108,-109v0,-64,-44,-108,-108,-108v-64,0,-108,43,-108,108v0,66,44,109,108,109xm153,-218v14,0,27,11,27,25v0,32,-54,32,-54,0v0,-14,13,-25,27,-25xm175,-30r-44,0r0,-124r44,0r0,124","w":307},"\ue38a":{"d":"288,-216r-17,6r5,15r-17,6r5,15r-17,6r4,14r-16,6r4,16r-16,5r4,15r-16,6r4,15r-17,6r5,15r-17,6r4,15r-16,5r5,16r-16,5r-16,-55r-17,6r5,15r-32,11r4,15r-32,11r5,15r-34,12r-4,-15r-14,5r-10,-36r14,-5r-5,-15r32,-11r-4,-15r31,-11r-4,-16r32,-11r-4,-13r-17,6r-4,-15r-17,6r-4,-15r-14,5r-5,-17r245,-87r4,16r-15,6","w":313},"\ue38b":{"d":"33,-231r-15,-6r4,-16r245,87r-5,17r-14,-5r-4,15r-16,-6r-5,15r-17,-6r-4,13r32,11r-4,16r31,11r-4,15r32,11r-5,15r14,5r-10,36r-14,-5r-4,15r-34,-12r5,-15r-32,-11r4,-15r-32,-11r5,-15r-16,-6r-17,55r-15,-5r4,-16r-16,-5r4,-15r-17,-6r5,-15r-17,-6r4,-15r-16,-6r4,-15r-16,-5r4,-16r-16,-6r4,-14r-16,-6r4,-15r-17,-6r5,-15r-17,-6","w":313},"\ue38c":{"d":"288,-215r-17,6r5,15r-17,5r5,15r-17,6r4,15r-16,6r4,15r-16,6r4,15r-16,6r4,15r-17,5r5,16r-17,6r4,14r-16,6r5,15r-16,6r-16,-56r-17,6r5,15r-32,11r4,15r-32,12r5,15r-34,12r-4,-16r-14,5r-10,-36r14,-5r-5,-14r32,-11r-4,-16r31,-11r-4,-15r32,-11r-4,-13r-17,5r-4,-14r-17,5r-4,-14r-14,4r-5,-16r245,-87r4,16r-15,6xm86,-160r4,13r16,-6r5,15r16,-6r5,17r-16,6r4,15r-32,11r5,15r-32,11r4,15r-32,12r10,32r30,-11r-4,-14r32,-11r-5,-16r32,-11r-4,-15r33,-11r12,40r15,-6r-4,-15r16,-5r-4,-15r16,-6r-4,-15r17,-6r-5,-15r17,-6r-4,-15r16,-6r-5,-15r17,-5r-4,-15r16,-6r-4,-14","w":313},"\ue38d":{"d":"33,-230r-15,-6r4,-16r245,87r-5,16r-14,-4r-4,14r-16,-5r-5,14r-17,-5r-4,13r32,11r-4,15r31,11r-4,16r32,11r-5,14r14,5r-10,36r-14,-5r-4,16r-34,-12r5,-15r-32,-12r4,-15r-32,-11r5,-15r-16,-6r-17,56r-15,-6r4,-15r-16,-6r4,-14r-17,-6r5,-16r-17,-5r4,-15r-16,-6r4,-15r-16,-6r4,-15r-16,-6r4,-15r-16,-6r4,-15r-17,-5r5,-15r-17,-6xm51,-224r-4,14r16,6r-4,15r17,5r-5,15r16,6r-4,15r17,6r-5,15r17,6r-4,15r16,6r-4,15r16,5r-4,15r15,6r12,-40r33,11r-4,15r32,11r-5,16r32,11r-4,14r30,11r10,-32r-32,-12r4,-15r-31,-11r4,-15r-32,-11r5,-15r-17,-6r5,-17r17,6r4,-15r16,6r4,-13","w":313},"\ue38e":{"d":"237,-6v-21,8,-44,8,-65,0v-22,7,-44,8,-67,0v-20,8,-44,9,-66,0v-13,1,-17,8,-31,8r0,-25v15,2,19,-9,31,-8v22,9,45,10,66,1v22,8,46,9,66,0v11,-1,21,9,33,8v13,-1,22,-9,34,-9v12,-1,16,10,30,8r0,25v-14,0,-19,-7,-31,-8xm8,-59v22,-4,42,-9,63,-1r0,-57v-6,-16,-14,-29,-18,-47v0,-9,12,-8,18,-12r0,-35r17,0r0,-19r32,0r0,-25r36,0r0,25r33,0r0,19r17,0r0,35v8,4,21,5,16,18r-16,41r0,57v19,-9,42,-6,62,1r0,24v-21,-8,-42,-7,-65,0v-13,0,-20,-8,-32,-8v-21,9,-42,8,-66,0v-22,8,-43,9,-66,1v-14,-1,-18,7,-31,7r0,-24xm103,-215r0,17r-17,0r0,15r52,-21r52,21r0,-15r-17,0r0,-17r-70,0","w":277},"\ue38f":{"d":"194,-203v-5,51,19,134,-25,147r37,56r-21,0r-27,-39r-74,0r-26,39r-22,0r38,-56v-46,-11,-26,-96,-26,-147v0,-47,68,-33,113,-33v18,0,35,14,33,33xm118,-248v0,5,-4,8,-9,8v-4,0,-9,-3,-9,-8v0,-5,4,-10,9,-9v6,-1,9,4,9,9xm143,-248v0,5,-5,8,-9,8v-5,1,-10,-3,-10,-8v0,-5,4,-10,10,-9v5,-1,9,4,9,9xm161,-103v-16,0,-18,30,0,29v8,0,15,-5,15,-13v0,-8,-6,-16,-15,-16xm66,-186v-1,18,-2,37,16,37r78,0v19,2,16,-19,16,-37v0,-9,-6,-16,-16,-16r-78,0v-9,0,-16,7,-16,16xm105,-228v-9,1,-6,18,0,20v16,-2,42,9,38,-16v-5,-8,-26,-2,-38,-4xm80,-103v-16,0,-18,30,0,29v7,0,15,-5,15,-13v0,-8,-7,-16,-15,-16","w":226},"\ue390":{"d":"55,-1v-14,0,-15,-15,-14,-30r-16,0v-1,-62,-4,-122,10,-172v13,-49,130,-42,166,-15v25,42,17,117,19,187r-17,0v1,16,0,32,-14,30v-15,1,-15,-14,-14,-30r-105,0v1,16,0,30,-15,30xm188,-90v-15,0,-16,28,0,28v7,1,14,-7,14,-14v0,-7,-7,-15,-14,-14xm42,-76v0,7,7,15,14,14v6,0,14,-7,13,-14v1,-7,-7,-14,-13,-14v-7,-1,-14,7,-14,14xm77,-214v0,3,2,6,5,6r80,0v7,0,8,-13,0,-12r-80,0v-4,0,-5,2,-5,6xm201,-126v-2,-24,3,-63,-18,-71r-122,0v-21,7,-12,44,-19,64v1,5,2,10,8,10r145,0v3,0,5,-1,6,-3","w":242},"\ue391":{"d":"195,1v-16,0,-17,-17,-16,-34r-115,0v1,17,0,34,-15,34v-16,0,-17,-17,-16,-34r-18,0v2,-31,-9,-76,19,-81v12,-29,14,-69,66,-60v0,-9,-2,-20,8,-19v17,2,41,-8,35,19v21,0,40,-1,47,16r17,44v30,4,19,49,21,81r-18,0v1,17,0,34,-15,34xm190,-116v-7,-14,-5,-39,-23,-42v-32,1,-70,-3,-98,2r-16,40r137,0xm34,-83v0,8,6,15,15,15v8,0,14,-7,14,-15v0,-8,-6,-15,-14,-15v-9,0,-15,7,-15,15xm179,-83v0,7,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15v-8,0,-15,8,-15,15","w":252},"\ue392":{"d":"132,-191v19,2,48,-7,48,14r0,23r32,0r0,154r-127,0r0,-154r31,0v0,-18,-3,-38,16,-37xm33,-132v1,-17,19,-25,40,-22r0,154v-22,2,-40,-4,-40,-24r0,-108xm170,-154r0,-25r-43,0r0,25r43,0xm263,-24v1,21,-17,26,-40,24r0,-154v22,-2,40,3,40,22r0,108","w":284},"\ue393":{"d":"103,-258v12,18,5,57,5,84v0,8,-8,19,-18,18r0,141v1,9,-6,15,-14,15v-7,0,-14,-7,-13,-15r0,-141v-32,-4,-13,-64,-18,-97v0,-2,2,-6,5,-5v3,0,5,2,5,6r0,57r8,0r0,-58v-1,-4,2,-5,5,-5v3,0,5,2,5,5r0,58r9,0r0,-58v0,-3,1,-5,4,-5v10,12,1,43,4,63r9,0r0,-58v0,-3,1,-5,4,-5xm160,-258v13,0,21,9,21,24r0,219v1,8,-6,15,-13,15v-7,0,-14,-6,-14,-15r0,-88r-15,0r0,-131v-2,-15,10,-24,21,-24","w":213},"\ue394":{"d":"302,-31v1,18,-13,30,-28,31r-240,-2v-11,-4,-20,-14,-20,-29r288,0xm214,-39v-48,-5,-138,21,-138,-26r0,-113r170,0v33,0,50,21,50,52v0,31,-22,51,-55,52v3,20,-9,37,-27,35xm241,-96v22,2,35,-11,35,-30v-1,-20,-12,-33,-35,-31r0,61","w":316},"\ue395":{"d":"46,-14v2,-24,44,-11,68,-14r0,-78r-100,-122r227,0r-99,122r0,78v24,4,67,-11,68,14v0,7,-5,14,-14,14r-136,0v-9,0,-13,-8,-14,-14xm125,-153v-1,9,10,18,19,17v8,1,18,-9,17,-17v1,-9,-9,-19,-17,-18v-10,-1,-20,8,-19,18","w":259},"\ue396":{"d":"181,-248r0,248r-23,0r0,-248r23,0xm105,-230v0,12,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,20,9,20,21xm98,1v-5,0,-10,-5,-10,-10r0,-72r-6,0r0,72v0,5,-5,10,-9,10v-4,0,-11,-5,-10,-10r0,-72r-26,0r27,-95r-4,0r-16,55v0,5,-5,6,-8,7v-5,0,-10,-6,-9,-13v16,-34,7,-86,69,-78v40,5,31,53,47,81v0,11,-15,14,-18,3r-16,-55r-4,0r27,95r-25,0r0,72v0,5,-5,10,-9,10xm204,-114v2,-39,-12,-91,30,-91v32,0,66,-4,66,28r0,63v0,6,-3,9,-9,9v-19,-6,-5,-46,-9,-67r-4,0r0,161v0,7,-6,11,-12,11v-6,0,-11,-4,-11,-11r0,-97r-4,0r0,97v1,7,-7,11,-13,11v-5,0,-13,-4,-12,-11r0,-161r-3,0r0,58v0,6,-4,9,-9,9v-6,0,-10,-3,-10,-9xm272,-230v0,12,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v12,0,20,9,20,21","w":316},"\ue397":{"d":"39,-157v0,-22,13,-36,30,-41r0,-11v-26,2,-40,20,-45,43r-11,-3v4,-24,21,-42,40,-48v-12,-10,-3,-34,14,-32v14,-2,11,17,25,15r0,11r30,0r0,-7r56,-14r0,54r-56,-12r0,-6r-30,0r0,10v17,5,30,19,30,41r0,147v-1,5,-2,10,-9,10r-66,0v-5,0,-9,-4,-8,-10r0,-147","w":195},"\ue398":{"d":"18,-128v0,-79,53,-132,131,-132v78,0,132,53,132,132v0,79,-53,131,-132,131v-79,0,-131,-52,-131,-131xm67,-193v-60,77,9,199,117,165v11,-4,21,-10,30,-17xm234,-65v55,-75,-12,-200,-118,-163v-11,4,-21,9,-30,16xm211,-103v-18,0,-20,-16,-31,-23r31,0r0,23xm127,-126r23,23r-86,0r0,-23r63,0xm163,-175v-18,-1,-30,-20,-23,-39r14,4v-6,10,-2,27,11,27v18,-1,-6,24,15,24v25,-2,48,0,43,29r-8,0v11,-41,-61,-1,-52,-45xm203,-170v-22,0,-15,-7,-12,-19v1,-10,-9,-19,-19,-19r0,-8v20,-1,34,21,23,39v31,-3,43,16,40,47r-7,0v2,-22,-6,-40,-25,-40xm215,-126r8,0r0,23r-8,0r0,-23xm228,-126r7,0r0,23r-7,0r0,-23","w":303},"\ue399":{"d":"153,-200v16,0,24,15,21,35v33,-31,55,-72,131,-62v24,3,38,18,38,41v0,39,-37,44,-77,45r-127,127v-15,19,-47,13,-77,13v-25,0,-41,-18,-41,-42v0,-30,23,-44,59,-40v29,-3,33,-27,52,-40v2,-30,-10,-77,21,-77xm304,-165v21,-1,23,-41,0,-41v-22,0,-53,-6,-65,6r-131,132v-13,16,-66,-8,-66,25v0,32,61,26,83,15r128,-130v10,-11,32,-6,51,-7xm262,-10r0,-35r-47,47r-13,-14r47,-46r-35,0r19,-19r47,0r0,49xm152,-205v-12,0,-21,-10,-21,-22v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22","w":353},"\ue39a":{"d":"150,-201v16,1,24,16,21,36v27,-21,38,-59,81,-62v44,-3,88,-3,87,41v-1,39,-37,44,-77,45r-127,127v-15,19,-47,13,-77,13v-25,0,-41,-18,-41,-42v0,-30,23,-44,59,-40v29,-3,34,-28,53,-41v2,-30,-11,-77,21,-77xm300,-165v22,-1,21,-39,0,-41v-22,3,-53,-7,-66,6r-138,137v-22,4,-59,-7,-59,20v0,32,62,25,84,15r128,-130v10,-11,32,-6,51,-7xm216,-66r0,35r47,-47r14,14r-48,46r36,0r-19,19r-48,0r0,-49xm149,-205v-12,0,-21,-10,-21,-22v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22","w":353},"\ue39b":{"d":"20,-27r52,0r0,-50r49,0r0,-52r52,0r0,-52r51,0r0,-50r74,0r0,25r-50,0r0,53r-50,0r0,50r-51,0r0,52r-51,0r0,51r-76,0r0,-27xm238,-12r0,-35r-47,47r-14,-13r48,-47r-36,0r19,-18r48,0r0,48","w":314},"\ue39c":{"d":"20,-27r52,0r0,-50r49,0r0,-52r52,0r0,-52r51,0r0,-50r74,0r0,25r-50,0r0,53r-50,0r0,50r-51,0r0,52r-51,0r0,51r-76,0r0,-27xm196,-66r0,35r47,-47r14,14r-48,46r35,0r-18,19r-48,0r0,-49","w":312},"\ue39d":{"d":"108,-18v33,0,55,-20,63,-48r12,25v-13,24,-40,42,-75,44v-92,4,-114,-132,-36,-163r3,22v-17,10,-33,29,-32,56v2,39,26,64,65,64xm176,-154v0,18,-32,9,-50,11r1,13v24,2,58,-8,66,11r21,51v12,-11,32,8,15,16v-12,2,-32,20,-39,3r-20,-47v-35,-3,-81,14,-84,-29v-2,-30,-16,-91,27,-71v10,4,9,20,10,33v18,2,53,-7,53,9xm96,-204v-12,0,-21,-11,-21,-23v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,13,-10,23,-22,23","w":257},"\ue39e":{"d":"268,-250v-3,70,-45,109,-105,123r0,98r66,19r0,10r-170,0r0,-10r67,-19r0,-98v-62,-12,-103,-52,-106,-123r162,0r-26,36r12,22r-24,42r48,-42r-11,-21r37,-37r50,0","w":276},"\ue39f":{"d":"76,-39r-29,0r0,-144r-34,0r49,-73r46,73r-32,0r0,144xm188,-39r-29,0r0,-144r-34,0r48,-73r46,73r-31,0r0,144xm12,-27r207,0r0,27r-207,0r0,-27","w":237},"\ue3a0":{"d":"144,3v-77,0,-127,-54,-127,-132v0,-75,52,-128,126,-128v79,0,133,50,133,130v0,80,-53,130,-132,130xm148,-13v-34,-10,-55,-36,-66,-65v9,-34,33,-54,66,-62v0,10,-2,20,1,28v28,-14,55,-35,66,-65v-12,-29,-34,-54,-68,-61v2,8,-1,19,0,29v-63,5,-106,37,-106,104v0,65,40,101,103,104v120,7,168,-163,77,-227v-10,-8,-22,-14,-35,-18v41,16,68,46,68,97v0,70,-44,100,-106,109v-2,9,-2,19,0,27","w":295},"\ue3a1":{"d":"24,0r0,-251r254,0r0,251r-254,0xm140,-234v-5,11,1,31,-5,41v-7,-1,-7,-13,-16,-9v7,17,0,35,-4,49v-5,-1,-1,-15,-11,-10v-1,13,-6,26,-6,42v-6,-4,-9,0,-9,7v-6,58,17,90,81,82v26,-12,54,-35,43,-72r-5,4v3,-20,7,-51,-8,-61v-1,5,-1,12,-7,15v0,-22,-10,-38,-18,-52v-5,10,-8,12,-11,0v-8,-11,-13,-28,-24,-36xm146,-91v14,-4,11,-27,12,-45v7,8,11,27,12,39v6,-8,13,-18,10,1v13,21,-9,43,-24,53v2,4,-1,7,-5,7v-30,-2,-50,-42,-30,-69v2,10,18,51,15,19v-1,-7,-1,-14,0,-21v5,2,8,11,10,16xm102,-18r96,0r0,-10r-96,0r0,10","w":300},"\ue3a2":{"d":"204,-98v20,0,14,-33,15,-55r17,0r0,66r-16,0r0,-10v-10,19,-45,15,-45,-15r0,-41r18,0v3,19,-9,55,11,55xm146,-177r18,0r0,90r-18,0r0,-90xm103,-97v12,0,16,-8,16,-21v-13,1,-24,2,-25,13v0,5,3,8,9,8xm77,-132v2,-14,12,-21,30,-21v39,0,28,33,31,66v-7,-1,-21,5,-18,-8v-9,15,-45,13,-44,-9v0,-22,27,-20,43,-27v0,-12,-23,-14,-24,-1r-18,0xm158,-14v84,2,134,-92,94,-166r18,-16v54,88,-4,209,-110,205v-29,0,-54,-8,-72,-21r1,19r-25,3r-5,-63r63,-6r2,25r-24,3v15,9,35,17,58,17xm158,-233v-85,-2,-137,96,-92,167r-18,15v-12,-21,-22,-43,-22,-73v-4,-105,118,-165,204,-111r-1,-20r24,-2r5,62r-63,6r-2,-25r25,-2v-16,-9,-37,-17,-60,-17","w":306},"\ue3a3":{"d":"180,-230v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21xm144,0v-7,0,-11,-4,-11,-12r0,-159v-8,8,-9,23,-24,24v-16,-2,-46,7,-46,-9v0,-15,27,-7,42,-9v11,-13,17,-37,39,-38v30,-1,65,-3,63,26v-2,24,10,65,-9,73v-18,-6,-5,-45,-9,-67r-5,0r0,159v0,7,-5,12,-11,12v-7,0,-12,-5,-12,-12r0,-93r-5,0r0,93v0,8,-5,12,-12,12xm57,-73r0,-16r15,0r0,16r-15,0xm69,-96r-11,-11r11,-11r11,11xm58,-117r-11,-11r11,-11r11,11xm42,0r-19,-105r14,0r17,90r26,0r17,-90r15,0r-19,105r-51,0","w":244},"\ue3a4":{"d":"115,-138r-20,132r-57,0r-18,-132r95,0xm165,-133r54,6r-12,128r-19,-89r-49,91xm165,-138v-3,-52,-53,-61,-87,-81r114,15v10,18,22,37,27,59xm191,-234v0,10,-10,20,-21,20v-11,0,-20,-10,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21xm67,-191v8,7,22,4,31,-1v9,17,-13,19,-13,34v-12,-7,-26,3,-38,-8v8,-3,18,-16,20,-25","w":241},"\ue3a5":{"d":"27,-126v0,-80,55,-134,135,-134v79,0,134,54,134,134v0,81,-54,135,-134,135v-81,0,-135,-54,-135,-135xm292,-126v0,-78,-52,-130,-130,-130v-78,0,-130,52,-130,130v0,78,51,131,130,131v78,0,130,-52,130,-131xm73,-126v0,-53,36,-88,89,-88v52,0,88,36,88,88v0,53,-35,89,-88,89v-53,0,-89,-36,-89,-89xm244,-126v0,-50,-32,-82,-82,-82v-51,0,-83,33,-83,82v0,50,32,84,83,84v50,0,82,-33,82,-84xm204,-148v9,9,27,0,23,20v1,6,6,5,11,5v-4,45,-30,75,-76,75v-49,0,-76,-34,-77,-84v7,-3,14,3,19,5v-3,-5,-3,-7,-11,-7v-4,-9,9,-18,12,-8v1,-11,8,-17,16,-20v-4,-9,16,-8,-1,-14v-2,9,-8,11,-13,4v1,-6,12,-15,17,-12v0,1,0,2,-1,4v12,1,-1,-14,8,-14v15,2,-4,25,21,10v10,-7,5,-14,0,-17v20,-5,54,6,54,17v-4,-4,-12,10,-14,1v-2,-9,-13,-5,-17,2v4,17,-19,-2,-8,11v1,6,-15,8,-6,11v11,-6,19,-6,24,2v3,-4,8,-9,14,-5v1,6,-14,2,-3,9v-12,13,-36,-18,-43,7v-9,6,-1,23,12,17v13,6,-4,49,18,39v12,-6,9,-27,19,-37v-6,-4,-9,-10,-10,-20v7,0,10,22,18,8v0,-5,-8,-1,-6,-9xm37,-120v1,14,31,15,30,-2v7,52,39,90,95,90v56,0,87,-37,93,-90v1,16,29,17,32,2v-8,70,-50,121,-125,121v-74,0,-119,-49,-125,-121xm112,-127v-8,-3,-5,18,-5,18v16,5,12,42,29,40v-8,-21,14,-32,4,-48v-12,2,-15,-13,-28,-12r0,2xm109,-17v13,0,16,-22,0,-22v-14,0,-12,21,0,22xm162,-27v-5,0,-11,4,-10,10v-1,6,4,12,9,12v6,0,10,-5,10,-11v1,-6,-3,-11,-9,-11xm192,-242v17,0,17,24,0,23r-9,-3xm118,-216v-4,8,-6,-11,-14,-1v1,4,6,8,1,10r-12,-18v4,-6,22,-10,18,2v4,-1,5,6,7,7xm175,-246v8,3,0,15,0,23v-8,-1,-7,-10,-11,-15v-1,5,2,15,-6,13r3,-22v8,1,7,11,11,16xm194,-33v-6,1,1,10,1,15v-6,-3,-10,-15,-17,-10v4,6,2,21,10,19r-4,-14v5,3,8,13,16,10xm140,-231v-1,10,14,-4,13,6r-15,3r-5,-21r15,-3v2,9,-14,1,-9,11v4,0,11,-5,11,2xm227,-26v-2,-10,-12,8,-14,-2v3,-2,11,-4,6,-8v-4,2,-10,8,-11,1v3,-3,12,-5,7,-9r-13,8r12,18xm146,-27v-6,0,-17,-9,-18,-1r11,3v-5,4,-12,7,-16,13v6,0,17,8,18,0r-11,-2v5,-5,13,-6,16,-13xm85,-203v2,3,9,7,3,10r-14,-16v4,-2,10,-14,13,-7v-3,3,-10,7,-4,10v3,-2,6,-8,10,-4xm103,-27v-1,-8,12,-13,13,-3v1,8,-13,14,-13,3xm231,-195v-8,-5,7,-12,5,-24v6,2,2,9,1,14v5,-1,10,-6,13,-1v-8,2,-16,4,-19,11xm207,-213v5,-5,9,-22,16,-15r-10,13v3,3,12,5,7,10xm156,-17v0,-4,2,-6,6,-6v4,-1,5,4,5,7v0,4,-1,7,-5,7v-4,-1,-6,-3,-6,-8xm189,-225v6,5,11,1,12,-6v0,-4,-3,-6,-7,-6xm117,-238v8,-5,8,13,13,18v-8,5,-8,-13,-13,-18xm183,-173v-9,0,-1,-9,0,-11v1,1,8,11,0,10r0,1xm103,-162v0,-6,7,-6,8,-1v0,2,-2,4,-5,4v-2,0,-3,-1,-3,-3xm208,-154v-2,-1,-8,-6,-4,-11v4,0,6,8,4,11xm99,-224v1,5,8,3,9,-1v-1,-5,-6,-1,-9,1xm235,-135v6,1,2,8,-2,9v-3,-2,1,-8,2,-9xm111,-134v4,-4,-4,-6,-6,-7v-4,5,7,4,6,7xm213,-164v1,1,2,4,-1,4v-2,-2,0,-3,1,-4xm213,-120v-2,2,-1,6,2,4v1,-1,-1,-5,-2,-4","w":316},"\ue3a6":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19","w":330},"\ue3a7":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19xm61,14r205,0r0,21r-205,0r0,-21","w":330},"\ue3a8":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19xm61,14r205,0r0,21r-205,0r0,-21xm61,50r205,0r0,21r-205,0r0,-21","w":330},"\ue3a9":{"d":"118,-222v67,0,134,68,198,11r9,-38r24,3r-15,69r36,-20r8,14r-49,26r-26,113r45,23r-7,15r-41,-21r-7,27r-203,0r-6,-29r-42,22r-7,-14r45,-24r-23,-108r-54,-28r7,-14r42,22r-16,-74r24,-4r9,45v13,-9,28,-16,49,-16xm238,-161v-60,0,-111,-68,-163,-18r5,20r109,57r116,-60r4,-18v-19,12,-41,19,-71,19xm274,-23r3,-16r-87,-45r-84,44r3,17r165,0xm281,-55r19,-87r-93,49xm84,-139r18,82r70,-36","w":383},"\ue3aa":{"d":"42,-206v16,-14,48,-20,75,-13v0,-4,2,-8,5,-10r85,-63r67,35r-36,69v22,-2,38,-14,51,-23r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4xm135,-186v-25,-17,-72,-16,-87,7r34,156r165,0r34,-157v-16,10,-32,16,-56,18v-3,13,-20,25,-30,12v-4,12,-18,21,-30,12v-7,11,-28,7,-27,-8v0,-4,1,-7,3,-10v-15,-1,-16,-22,-6,-30xm127,-218v8,13,23,-1,36,-10v15,7,-20,26,1,30v4,-7,7,-18,17,-10v-3,8,-11,17,2,18v4,-8,7,-17,16,-9v-4,7,-9,14,4,14v4,-7,7,-18,17,-10v-1,4,-9,11,0,10r5,0r35,-68r-52,-27xm162,-173v-3,9,-21,23,-9,30v10,-4,11,-18,18,-26xm180,-166v-4,7,-15,27,1,20r9,-17xm138,-170v6,10,12,-3,15,-7v-7,-6,-14,-1,-15,7xm207,-155v4,0,8,-8,0,-6v-2,0,-6,-3,-5,2v0,3,2,4,5,4","w":330},"\ue3ab":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm323,-97v14,0,25,11,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm236,-97v15,-1,27,11,26,26v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm149,-97v14,0,26,11,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ac":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm278,-97v14,0,25,11,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm191,-97v15,-1,27,11,26,26v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ad":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm235,-97v14,0,26,11,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ae":{"d":"343,-246v30,1,56,14,64,39r82,-43r8,14r-85,44r60,183r29,16r-8,14r-38,-21r-406,0r-40,22r-8,-14r39,-21v18,-72,57,-131,149,-131r-170,-92r8,-14r195,106r66,0r96,-50v-8,-17,-21,-29,-47,-28r-188,0r0,-24r194,0xm94,-24r317,0r-156,-84xm276,-120r-4,3r168,91r-30,-94r-134,0xm238,-117v-82,-17,-148,19,-163,85xm389,-179r-67,35r80,0","w":503},"\ue3af":{"d":"13,-22v13,-73,51,-133,139,-134r177,0v-13,-32,-15,-74,-61,-73r-151,0r0,-22v78,8,196,-29,219,40r62,189r-133,0r13,23r98,-16r4,15r-93,17r9,14r84,15r-4,17r-69,-13r7,13r-20,10r-16,-28r-76,-13r-71,12r-17,29r-20,-10r8,-14r-75,14r-4,-17r90,-16r7,-12r-97,-18r3,-15r103,17r14,-24r-130,0xm337,-133v-118,6,-272,-34,-291,89r319,0xm153,6r48,9r54,-10r-16,-27r-70,0xm250,23r16,3v-1,-8,-10,-3,-16,-3xm152,23v-4,0,-9,-2,-10,2","w":411},"\ue3b0":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211","w":323},"\ue3b1":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm37,14r252,0r0,21r-252,0r0,-21","w":323},"\ue3b2":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm37,14r252,0r0,21r-252,0r0,-21xm37,50r252,0r0,21r-252,0r0,-21","w":323},"\ue3b3":{"d":"301,-48r0,47r-252,0r0,-50r-34,18r-8,-14r42,-22r0,-110r-40,-21r8,-14r32,17r0,-55r252,0r0,53r33,-18r8,14r-41,21r0,116r42,22r-7,14xm174,-214v35,-1,60,20,74,42r33,-17r0,-43r-212,0r0,45r29,15v15,-23,41,-41,76,-42xm247,-76v-25,50,-124,49,-148,-1r-30,16r0,40r212,0r0,-37xm230,-163v-17,-39,-96,-41,-113,1r55,29xm118,-87v17,38,91,41,110,1r-56,-29xm256,-158v7,20,9,48,-1,68r26,14r0,-95xm92,-91v-9,-21,-9,-45,-1,-66r-22,-12r0,90xm236,-100v6,-15,7,-33,1,-49r-47,25xm110,-148v-5,15,-6,32,1,47r44,-23","w":350},"\ue3b4":{"d":"141,-252r132,252r-264,0xm43,-21r196,0r-98,-186","w":283},"\ue3b5":{"d":"139,-252r132,252r-263,0xm196,-99r-22,-41r-63,119r43,0xm176,-21r61,0r-30,-58xm163,-161r-24,-46r-98,186r49,0","w":278},"\ue3b6":{"d":"266,-48r25,48r-264,0r25,-48r-41,22r-7,-14r61,-33r33,-62r-95,-49r7,-14r95,49r54,-103r53,102r99,-51r7,14r-98,51r33,63r64,33r-7,14xm234,-64r-76,-39r-74,39r-23,43r196,0xm123,-139r35,18r36,-19r-35,-67xm176,-112r45,23r-19,-37xm116,-125r-18,36r43,-23","w":324},"\ue3b7":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm270,-213v-50,42,-165,46,-212,-2r0,194r212,0r0,-192xm62,-232v55,47,150,43,208,0r-208,0","w":323},"\ue3b8":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm107,-190r21,0r0,131r-21,0r0,-131xm153,-190r22,0r0,131r-22,0r0,-131xm202,-190r22,0r0,131r-22,0r0,-131","w":323},"\ue3b9":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm100,-120r0,-22r131,0r0,22r-131,0","w":323},"\ue3ba":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm91,-232r-33,0r0,37xm58,-112r0,91r212,0r0,-211r-102,0xm143,-232r-26,0r-59,63r0,29","w":323},"\ue3bb":{"d":"408,-161v0,48,13,115,-33,120v-44,5,-70,-31,-97,-37r92,71r-13,12r-93,-73v-30,19,-88,36,-127,12r-79,61r-13,-12r76,-59v-7,-6,-16,-12,-22,-18v-16,17,-35,34,-66,35v-10,-1,-15,-4,-14,-18r0,-106r109,0r-83,-65r12,-13v35,25,65,56,103,78v22,-23,76,-22,103,-4r96,-74r11,13r-88,69v19,5,35,9,44,20v22,-15,39,-34,67,-44v5,10,14,21,15,32xm294,-93v25,13,56,41,87,29v15,-26,8,-70,5,-104v-34,22,-65,46,-92,75xm37,-70v51,-10,69,-55,101,-83r-101,0r0,83xm311,-138v-11,-7,-31,-11,-47,-17r-42,33r41,31v19,-13,31,-33,48,-47xm114,-98v6,9,15,14,23,20r56,-44r-33,-26v-16,15,-31,34,-46,50xm154,-69v30,15,71,-1,93,-12r-39,-30xm245,-163v-21,-11,-53,-11,-71,4r34,25","w":433},"\ue3bc":{"d":"185,-61r-10,-29r-56,0r-11,29r-27,0r56,-134r20,0r56,134r-28,0xm168,-111r-21,-54r-20,54r41,0xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3bd":{"d":"128,-162r0,36r63,0r0,21r-63,0r0,56r-25,0r0,-134r98,0r0,21r-73,0xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3be":{"d":"103,-184v51,0,110,-7,110,43v0,39,-40,45,-84,42r0,51r-26,0r0,-136xm129,-121v25,0,57,4,57,-20v0,-26,-32,-21,-57,-21r0,41xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3bf":{"d":"271,-183v22,31,23,95,0,125r53,36r-9,14r-54,-36v-21,25,-53,47,-96,47v-44,0,-77,-21,-98,-47r-53,36r-9,-14r53,-35v-23,-31,-23,-93,-1,-126r-52,-36r8,-14r54,37v21,-27,53,-49,98,-49v44,0,77,22,97,49r54,-37r8,14xm244,-184v-29,-50,-130,-52,-160,0r81,54xm86,-56v20,32,78,52,122,29v14,-7,26,-18,35,-30r-78,-53xm76,-170v-18,29,-15,72,0,100r74,-50xm252,-70v17,-26,18,-73,1,-100r-74,50","w":334},"\u208e":{"d":"6,46v37,-42,39,-133,0,-176r3,-2v47,38,46,144,0,180","w":68},"\u2070":{"d":"94,-244v0,50,13,113,-43,113v-55,0,-42,-62,-43,-113v0,-26,18,-40,43,-40v25,0,43,14,43,40xm51,-138v49,0,33,-61,35,-105v1,-21,-14,-34,-35,-34v-48,-1,-36,60,-36,105v0,20,14,34,36,34","w":100},"\u2074":{"d":"86,-132r-8,0r0,-24r-74,0v14,-48,41,-83,59,-127r10,0r-61,120r66,0r0,-48r8,0r0,48v7,1,19,-4,16,7r-16,0r0,24","w":104},"\u2075":{"d":"92,-192v16,61,-61,83,-86,37r8,-2v9,29,70,25,70,-13v0,-33,-3,-55,-36,-55v-16,0,-26,14,-39,16r0,-74r80,0r0,8r-73,0r0,55v25,-23,81,-12,76,28","w":97},"\u2076":{"d":"28,-210v28,-14,67,0,66,34v0,29,-17,44,-45,46v-34,1,-52,-37,-36,-67r46,-86r9,0xm86,-174v0,-22,-16,-35,-36,-35v-20,0,-37,13,-36,35v0,21,14,38,36,37v19,-1,36,-15,36,-37","w":96},"\u2077":{"d":"22,-132r61,-143r-71,0r0,24r-8,0r0,-32r88,0v-15,56,-43,99,-62,151r-8,0","w":93},"\u2078":{"d":"69,-210v16,6,27,17,27,38v0,28,-20,40,-47,42v-50,3,-61,-66,-20,-80v-13,-6,-23,-16,-23,-34v1,-26,18,-37,43,-39v46,-4,59,59,20,73xm10,-172v0,48,79,43,79,0v0,-22,-18,-35,-40,-35v-21,0,-39,12,-39,35xm85,-244v0,-22,-15,-34,-36,-34v-20,0,-35,13,-35,34v0,21,15,31,35,31v21,0,36,-10,36,-31","w":97},"\u2079":{"d":"68,-203v-30,14,-66,-3,-65,-37v1,-28,17,-44,45,-44v34,-1,53,36,36,67r-47,85r-9,0xm11,-241v-1,22,14,36,35,36v22,0,37,-14,36,-36v0,-22,-14,-37,-36,-37v-21,0,-34,14,-35,37","w":91},"\u207a":{"d":"56,-148r-7,0r0,-41r-44,0r0,-8r44,0r0,-40r7,0r0,40r44,0r0,8r-44,0r0,41","w":105},"\u207b":{"d":"12,-195r60,0r0,7r-60,0r0,-7","w":83},"\u207c":{"d":"5,-211r95,0r0,7r-95,0r0,-7xm5,-176r95,0r0,8r-95,0r0,-8","w":105},"\u207d":{"d":"56,-284v-38,42,-39,134,1,175r-4,2v-46,-37,-47,-143,0,-180","w":57},"\u207e":{"d":"6,-109v37,-42,39,-133,0,-175r3,-2v48,38,45,143,0,180","w":57},"\u207f":{"d":"22,-197v18,-33,87,-24,87,20r0,78r-7,0v-2,-48,13,-112,-39,-112v-51,0,-41,62,-41,112r-7,0r0,-117r7,0r0,19","w":124},"\u2080":{"d":"94,-80v0,50,13,113,-43,113v-55,0,-42,-62,-43,-113v0,-26,18,-40,43,-40v25,0,43,14,43,40xm51,27v48,1,33,-61,35,-105v0,-21,-14,-35,-35,-35v-48,-1,-36,60,-36,105v0,21,14,35,36,35","w":100},"\u2081":{"d":"37,-109r-25,15v1,-18,16,-21,33,-24r0,150r-8,0r0,-141","w":72},"\u2082":{"d":"82,-82v2,-37,-61,-38,-69,-7r-8,-1v7,-38,93,-37,86,7v-8,50,-54,71,-78,108r77,0r0,7r-87,0r0,-7v26,-33,56,-60,78,-97v1,-4,1,-7,1,-10","w":98},"\u2083":{"d":"67,-46v42,14,26,85,-24,80v-20,-2,-35,-8,-40,-25r8,-1v12,31,74,21,73,-16v0,-24,-18,-37,-45,-34r0,-7v24,3,41,-11,42,-31v4,-37,-59,-44,-69,-13r-8,-1v11,-37,89,-34,86,14v-1,17,-9,28,-23,34","w":96},"\u2084":{"d":"86,32r-8,0r0,-24r-74,0v14,-48,41,-82,59,-126r10,0r-61,119r66,0r0,-47r8,0r0,47v7,1,19,-4,16,7r-16,0r0,24","w":104},"\u2085":{"d":"92,-27v16,60,-63,82,-86,36r8,-2v9,29,70,25,70,-12v0,-33,-2,-56,-36,-56v-16,0,-26,14,-39,16r0,-73r80,0r0,7r-73,0r0,55v27,-22,81,-13,76,29","w":97},"\u2086":{"d":"28,-46v28,-14,67,0,66,34v0,29,-17,44,-45,46v-34,1,-52,-37,-36,-67r46,-85r9,0xm86,-9v0,-22,-15,-36,-36,-36v-21,0,-37,14,-36,36v1,21,14,37,36,36v20,0,36,-14,36,-36","w":111},"\u2087":{"d":"22,32r61,-143r-71,0r0,24r-8,0r0,-31r88,0v-15,55,-43,98,-62,150r-8,0","w":93},"\u2088":{"d":"69,-45v46,12,28,85,-20,79v-49,4,-62,-66,-20,-79v-36,-14,-26,-79,20,-74v46,-5,58,60,20,74xm89,-8v0,-21,-17,-34,-40,-34v-22,1,-39,12,-39,34v0,48,79,43,79,0xm85,-80v0,-21,-14,-33,-36,-33v-22,0,-35,12,-35,33v0,21,15,31,35,31v21,0,36,-10,36,-31","w":97},"\u2089":{"d":"68,-39v-29,13,-66,-3,-65,-37v0,-29,18,-43,45,-44v34,-1,53,36,36,67r-47,85r-9,0xm11,-77v-1,22,14,36,35,36v22,0,36,-14,36,-36v0,-22,-14,-37,-36,-36v-22,1,-34,14,-35,36","w":91},"\u208a":{"d":"56,19r-7,0r0,-42r-44,0r0,-7r44,0r0,-41r7,0r0,41r44,0r0,7r-44,0r0,42","w":105},"\u208b":{"d":"12,-29r60,0r0,8r-60,0r0,-8","w":83},"\u208c":{"d":"5,-44r95,0r0,7r-95,0r0,-7xm5,-9r95,0r0,7r-95,0r0,-7","w":105},"\u208d":{"d":"56,-130v-38,42,-39,135,1,175r-4,3v-44,-38,-49,-143,0,-180","w":57},"\ue06c":{"d":"15,-203v24,-21,88,-23,88,22r0,82r-8,0r0,-14v-20,22,-88,24,-88,-18v0,-39,49,-32,88,-32v12,-51,-47,-59,-75,-35xm15,-131v0,36,78,36,80,-2r0,-24v-34,1,-80,-8,-80,26","w":115},"\ue06d":{"d":"104,-158v8,56,-63,82,-87,38r0,21r-8,0r0,-170r8,0r0,75v7,-13,19,-23,40,-23v34,0,42,26,47,59xm96,-158v1,-30,-10,-53,-39,-53v-30,0,-40,24,-40,54v0,28,9,54,40,53v31,-1,39,-24,39,-54","w":111},"\ue06f":{"d":"6,-158v-7,-57,65,-78,88,-37r0,-74r7,0r0,170r-7,0r0,-22v-9,14,-17,23,-40,23v-36,0,-44,-27,-48,-60xm54,-104v30,0,40,-25,40,-53v0,-29,-10,-54,-40,-54v-30,0,-39,24,-40,53v-1,31,9,54,40,54","w":111},"\ue070":{"d":"60,-217v35,0,48,24,48,59r-91,0v-7,46,43,68,75,45r5,5v-37,25,-92,3,-87,-49v3,-36,14,-60,50,-60xm100,-164v6,-43,-46,-61,-70,-34v-7,9,-11,20,-12,34r82,0","w":115},"\ue073":{"d":"23,-195v17,-34,87,-28,87,19r0,77r-7,0v-2,-48,13,-112,-39,-112v-52,0,-40,62,-41,112r-7,0r0,-170r7,0r0,74","w":126},"\ue074":{"d":"19,-99r0,-117r8,0r0,117r-8,0xm18,-263r10,0r0,9r-10,0r0,-9","w":46},"\ue077":{"d":"25,-125v1,14,7,19,23,19r0,7v-21,-1,-31,-4,-31,-24r0,-146r8,0r0,144","w":51},"\ue078":{"d":"108,-192v13,-39,88,-31,88,15r0,78r-8,0r0,-77v2,-22,-18,-35,-38,-35v-51,-1,-38,64,-39,112r-7,0v-2,-48,13,-112,-39,-112v-50,0,-37,64,-38,112r-8,0r0,-117r8,0r0,19v12,-28,74,-26,81,5","w":216},"\ue079":{"d":"9,-158v0,-38,14,-59,51,-59v36,0,49,20,49,60v0,38,-14,59,-50,59v-37,0,-50,-23,-50,-60xm102,-157v1,-35,-13,-54,-42,-54v-29,0,-43,20,-43,53v0,34,11,54,42,54v31,0,43,-19,43,-53","w":118},"\ue07c":{"d":"25,-195v9,-17,31,-26,58,-21v-1,10,-8,6,-17,5v-52,-1,-40,62,-41,112r-8,0r0,-117r8,0r0,21","w":81},"\ue07d":{"d":"19,-186v6,41,84,6,84,56v0,40,-69,38,-96,19r5,-6v21,17,83,22,83,-14v0,-43,-84,-8,-84,-54v0,-37,58,-38,85,-23v-7,13,-24,-5,-41,-3v-18,3,-35,7,-36,25","w":112},"\ue07e":{"d":"30,-127v0,16,9,22,27,21r0,7v-55,7,-30,-67,-35,-111r-18,0r0,-6r18,0r0,-32r8,0r0,32r25,0r0,6r-25,0r0,83","w":62},"\ue318":{"d":"14,-157v-10,-56,65,-82,87,-38r0,-21r8,0r0,117r-8,0r0,-23v-20,42,-97,22,-87,-35xm62,-105v30,-1,38,-24,39,-54v0,-29,-10,-52,-39,-52v-31,0,-41,22,-40,53v1,29,10,53,40,53","w":123},"\ue31e":{"d":"22,-197v18,-33,87,-24,87,20r0,78r-7,0v-2,-48,13,-112,-39,-112v-51,0,-41,62,-41,112r-7,0r0,-117r7,0r0,19","w":124},"\ue324":{"d":"57,-99r-8,0r-46,-117r9,0r41,107r41,-107r8,0","w":105},"\ue326":{"d":"9,-158v0,-38,14,-59,51,-59v36,0,49,20,49,60v0,38,-14,59,-50,59v-37,0,-50,-23,-50,-60xm102,-157v1,-35,-13,-54,-42,-54v-30,0,-42,19,-43,53v0,33,12,54,42,54v31,0,43,-19,43,-53","w":118},"\ue328":{"d":"112,-157v10,59,-65,77,-89,38r0,66r-8,0v5,-65,-22,-165,48,-164v36,1,51,20,49,60xm63,-211v-32,0,-40,25,-40,63v0,27,14,43,41,43v29,0,41,-19,41,-52v1,-35,-13,-54,-42,-54","w":121},"\ue329":{"d":"98,-201v-31,-21,-84,-3,-78,42v-4,47,46,44,73,63v9,14,-4,28,-10,37v-15,-7,21,-29,-7,-38v-32,-10,-64,-17,-64,-62v0,-51,53,-72,92,-48","w":102},"\ue32c":{"d":"112,-143v1,30,-20,45,-48,45v-26,0,-48,-17,-47,-43r0,-75r8,0v1,49,-11,112,39,112v54,0,38,-63,40,-112r8,0r0,73","w":128},"%":{"d":"240,-112v-1,50,13,113,-43,113v-55,0,-42,-62,-43,-113v0,-27,18,-40,43,-40v25,0,43,14,43,40xm197,-6v49,0,36,-60,36,-105v0,-20,-14,-34,-36,-34v-49,0,-33,61,-35,105v-1,21,13,34,35,34xm113,-211v0,52,11,113,-44,113v-54,0,-43,-62,-43,-113v0,-25,16,-40,43,-40v28,-1,44,15,44,40xm69,-105v48,1,36,-60,36,-105v0,-20,-14,-34,-36,-34v-48,0,-35,61,-35,105v0,20,14,34,35,34xm52,6r152,-263r11,0r-153,263r-10,0","w":265},"\u2030":{"d":"240,-112v-1,50,13,113,-43,113v-55,0,-42,-62,-43,-113v0,-27,18,-40,43,-40v25,0,43,14,43,40xm197,-6v49,0,36,-60,36,-105v0,-20,-14,-34,-36,-34v-49,0,-33,61,-35,105v-1,21,13,34,35,34xm113,-211v0,52,11,113,-44,113v-54,0,-43,-62,-43,-113v0,-25,16,-40,43,-40v28,-1,44,15,44,40xm69,-105v48,1,36,-60,36,-105v0,-20,-14,-34,-36,-34v-48,0,-35,61,-35,105v0,20,14,34,35,34xm52,6r152,-263r11,0r-153,263r-10,0xm345,-112v-1,51,13,113,-43,113v-55,0,-44,-62,-44,-113v0,-25,18,-40,44,-40v25,0,43,13,43,40xm302,-6v49,0,33,-61,35,-105v1,-21,-13,-34,-35,-34v-49,0,-36,60,-36,105v0,20,14,34,36,34","w":370},"\u00aa":{"d":"15,-203v24,-21,88,-23,88,22r0,82r-8,0r0,-14v-20,22,-88,24,-88,-18v0,-39,49,-32,88,-32v12,-51,-47,-59,-75,-35xm15,-131v0,36,78,36,80,-2r0,-24v-34,1,-80,-8,-80,26","w":115},"\u00b2":{"d":"82,-247v1,-36,-62,-37,-69,-6r-8,-2v9,-38,88,-37,86,8v-12,49,-54,71,-78,108r77,0r0,7r-87,0r0,-7v26,-33,56,-60,78,-97v1,-4,1,-8,1,-11","w":98},"\u00b3":{"d":"67,-210v42,14,26,86,-24,80v-19,-2,-36,-8,-40,-26r8,0v12,30,73,20,73,-16v0,-25,-17,-37,-45,-34r0,-7v24,3,41,-11,42,-31v3,-37,-58,-45,-69,-13r-8,-1v11,-37,89,-34,86,14v-1,17,-9,28,-23,34","w":96},"\u00b9":{"d":"37,-273r-25,15v2,-18,16,-21,33,-25r0,151r-8,0r0,-141","w":72},"\u00ba":{"d":"9,-158v0,-38,14,-59,51,-59v36,0,49,20,49,60v0,38,-14,59,-50,59v-37,0,-50,-23,-50,-60xm102,-157v1,-35,-13,-54,-42,-54v-29,0,-43,20,-43,53v0,34,11,54,42,54v31,0,43,-19,43,-53","w":118},"\u00bc":{"d":"59,-241r-26,15v1,-18,17,-20,34,-24r0,151r-8,0r0,-142xm45,6r152,-263r10,0r-153,263r-9,0xm218,0r-8,0r0,-24r-75,0r0,-7r60,-120r9,0r-60,119r66,0r0,-47r8,0r0,47r15,0r0,8r-15,0r0,24","w":265},"\u00bd":{"d":"40,6r153,-263r10,0r-153,263r-10,0xm229,-115v2,-36,-63,-38,-69,-6r-8,-2v9,-38,88,-37,86,8v-13,48,-54,70,-78,107r77,0r0,8r-87,0r0,-7v26,-33,56,-60,78,-97v1,-4,1,-8,1,-11xm55,-241r-26,15v1,-18,17,-20,34,-24r0,151r-8,0r0,-142","w":265},"\u00be":{"d":"107,-141v3,46,-76,59,-90,18r9,-1v10,31,72,23,72,-16v0,-24,-18,-37,-45,-34r0,-7v24,3,42,-9,42,-30v0,-38,-59,-45,-68,-13r-9,-2v12,-36,89,-33,86,14v-1,17,-9,28,-23,34v16,6,24,18,26,37xm59,6r153,-263r10,0r-153,263r-10,0xm235,0r-9,0r0,-24r-74,0r0,-7r60,-120r9,0r-60,119r65,0r0,-47r9,0r0,47r15,0r0,8r-15,0r0,24","w":265},"\u2153":{"d":"36,6r152,-263r10,0r-153,263r-9,0xm54,-241r-26,15v1,-18,17,-20,34,-24r0,151r-8,0r0,-142xm238,-42v4,48,-76,58,-89,18r8,0v11,30,73,22,73,-17v0,-24,-18,-37,-45,-34r0,-7v24,3,42,-9,42,-30v0,-39,-58,-44,-69,-13r-8,-2v12,-36,89,-33,86,14v-1,18,-9,29,-23,35v15,6,23,17,25,36","w":265},"\u2154":{"d":"53,6r152,-263r10,0r-153,263r-9,0xm253,-42v4,48,-76,58,-89,18r8,0v12,29,73,22,73,-17v0,-24,-18,-37,-45,-34r0,-7v24,3,42,-9,42,-30v0,-38,-58,-45,-68,-13r-9,-2v12,-36,89,-33,86,14v-1,18,-9,29,-23,35v15,6,23,17,25,36xm93,-214v2,-36,-63,-38,-69,-6r-9,-2v8,-37,93,-38,86,7v-8,50,-53,71,-77,108r77,0r0,8r-88,0r0,-8v26,-37,65,-60,80,-107","w":265},"\u2155":{"d":"31,6r152,-263r10,0r-153,263r-9,0xm54,-241r-26,15v1,-18,17,-20,34,-24r0,151r-8,0r0,-142xm238,-60v16,60,-61,82,-85,37r7,-3v9,29,70,26,70,-12v0,-33,-3,-57,-36,-56v-12,0,-28,9,-32,17r-7,0r0,-74r80,0r0,8r-73,0r0,55v25,-23,81,-12,76,28","w":265},"\u2156":{"d":"254,-60v16,61,-61,82,-86,37r8,-3v8,30,70,26,70,-12v0,-33,-3,-56,-36,-56v-16,0,-26,15,-39,17r0,-74r80,0r0,8r-73,0r0,55v25,-23,81,-12,76,28xm55,6r152,-263r10,0r-153,263r-9,0xm92,-214v2,-36,-63,-38,-69,-6r-8,-2v7,-38,85,-39,85,7v0,12,-5,22,-11,30r-66,78r77,0r0,8r-87,0r0,-8v26,-33,57,-60,78,-97v1,-4,1,-7,1,-10","w":265},"\u2157":{"d":"48,6r152,-263r10,0r-153,263r-9,0xm102,-141v4,46,-76,59,-90,18r9,-1v10,31,72,23,72,-16v0,-24,-18,-37,-45,-34r0,-7v24,3,42,-9,42,-30v0,-38,-59,-45,-68,-13r-9,-2v12,-36,89,-33,86,14v-1,17,-9,28,-23,34v16,6,24,19,26,37xm247,-61v3,-37,-54,-41,-69,-16r-7,0r0,-74r80,0r0,8r-72,0r0,55v33,-27,89,-7,76,48v6,47,-71,55,-86,17r8,-3v8,30,73,25,70,-12r0,-23","w":265},"\u2158":{"d":"55,6r152,-263r10,0r-153,263r-9,0xm92,-99r-8,0r0,-25r-75,0v14,-48,42,-82,60,-126r9,0r-60,119r66,0r0,-47r8,0r0,47v7,1,18,-3,15,7r-15,0r0,25xm257,-60v16,60,-61,82,-85,37r7,-3v9,29,70,26,70,-12v0,-33,-3,-57,-36,-56v-12,0,-28,9,-32,17r-7,0r0,-74r80,0r0,8r-73,0r0,55v25,-23,81,-12,76,28","w":265},"\u2159":{"d":"166,-78v26,-15,66,0,65,34v-1,29,-16,44,-45,45v-36,1,-52,-37,-36,-67r47,-85r9,0xm223,-42v0,-22,-16,-35,-36,-35v-20,0,-37,13,-36,35v0,21,14,38,36,37v19,-1,36,-15,36,-37xm44,6r152,-263r10,0r-153,263r-9,0xm61,-241r-25,15v1,-18,18,-19,33,-24r0,151r-8,0r0,-142","w":265},"\u215a":{"d":"179,-78v26,-15,66,0,65,34v-1,29,-16,44,-45,45v-36,1,-52,-37,-36,-67r47,-85r9,0xm236,-42v0,-22,-16,-35,-36,-35v-20,0,-37,13,-36,35v0,21,14,38,36,37v19,-1,36,-15,36,-37xm108,-159v16,60,-62,83,-85,36r7,-2v10,29,70,26,70,-12v0,-33,-3,-56,-36,-56v-16,0,-25,15,-39,16r0,-73r80,0r0,7r-73,0r0,55v26,-21,81,-11,76,29xm65,6r152,-263r10,0r-153,263r-9,0","w":265},"\u215b":{"d":"30,6r153,-263r10,0r-153,263r-10,0xm55,-241r-26,15v1,-18,17,-20,34,-24r0,151r-8,0r0,-142xm210,-78v44,11,31,85,-20,79v-50,5,-62,-66,-20,-79v-13,-6,-23,-16,-23,-34v0,-26,19,-37,43,-40v45,-4,60,61,20,74xm230,-41v0,-21,-17,-34,-40,-34v-22,1,-39,12,-39,34v0,49,79,44,79,0xm226,-112v0,-22,-14,-34,-36,-34v-22,0,-35,13,-35,34v0,20,14,31,35,31v21,0,36,-10,36,-31","w":265},"\u215c":{"d":"51,6r152,-263r10,0r-153,263r-9,0xm105,-141v4,47,-76,59,-89,18r8,-1v11,30,73,23,73,-16v0,-24,-18,-37,-45,-34r0,-7v24,3,42,-9,42,-30v0,-38,-59,-45,-68,-13r-9,-2v12,-36,89,-33,86,14v-1,17,-9,28,-23,34v15,6,23,18,25,37xm223,-78v44,11,31,85,-20,79v-50,5,-62,-66,-20,-79v-13,-6,-23,-16,-23,-34v0,-26,19,-37,43,-40v45,-4,60,61,20,74xm243,-41v0,-21,-17,-34,-40,-34v-22,1,-38,12,-39,34v0,50,79,44,79,0xm239,-112v0,-22,-14,-34,-36,-34v-22,0,-35,13,-35,34v0,20,14,31,35,31v21,0,36,-10,36,-31","w":265},"\u215d":{"d":"49,6r153,-263r10,0r-153,263r-10,0xm103,-159v16,60,-62,82,-86,36r7,-2v11,29,71,26,71,-12v0,-33,-4,-56,-36,-56v-16,0,-26,15,-40,16r0,-73r80,0r0,7r-72,0r0,55v26,-22,80,-10,76,29xm222,-78v45,13,29,85,-20,79v-50,5,-62,-66,-20,-79v-13,-6,-23,-16,-23,-34v0,-26,19,-37,43,-40v45,-4,59,60,20,74xm242,-41v0,-21,-17,-34,-40,-34v-22,1,-38,12,-39,34v0,50,79,44,79,0xm238,-112v0,-22,-14,-34,-36,-34v-22,0,-35,13,-35,34v0,20,14,31,35,31v21,0,36,-10,36,-31","w":265},"\u215e":{"d":"37,6r152,-263r10,0r-153,263r-9,0xm38,-99r61,-144r-71,0r0,24r-8,0r0,-31r88,0v-15,56,-43,99,-62,151r-8,0xm219,-78v43,11,29,85,-20,79v-50,5,-62,-66,-20,-79v-13,-6,-23,-16,-23,-34v0,-26,19,-37,43,-40v45,-4,59,60,20,74xm238,-41v0,-22,-16,-34,-39,-34v-23,0,-39,12,-39,34v0,23,17,36,39,36v22,0,39,-13,39,-36xm235,-112v0,-22,-14,-34,-36,-34v-21,0,-36,12,-36,34v0,20,15,31,36,31v21,0,36,-10,36,-31","w":265},"\u215f":{"d":"50,6r152,-263r10,0r-153,263r-9,0xm64,-241r-26,15v1,-18,17,-20,34,-24r0,151r-8,0r0,-142","w":155},"\ue40c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm368,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237xm229,-107r19,-92r3,0r20,92r-42,0xm280,-67r13,54r54,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0"},"\ue40d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm221,-107v8,-29,9,-66,21,-92r20,92r-41,0xm271,-67r13,54r54,0r-67,-236r-60,0r-66,236r54,0r13,-54r59,0xm352,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue40e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm219,-107v8,-29,9,-66,21,-92r20,92r-41,0xm269,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0xm498,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v27,-10,46,-29,46,-68xm400,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue40f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm236,-13v72,7,95,-109,29,-126v17,-9,32,-24,32,-49v0,-73,-82,-62,-153,-62r0,237r92,0xm196,-117v31,-2,56,2,56,32v0,31,-25,33,-56,32r0,-64xm196,-209v25,-1,49,-1,50,23v1,28,-22,30,-50,29r0,-52xm429,-255v-68,2,-98,52,-98,121v0,78,25,132,110,125v23,-2,43,-9,60,-19r0,-116r-69,0r0,30r19,3r0,55v-45,17,-66,-30,-64,-80v1,-41,12,-75,49,-76v14,0,32,5,43,9r13,-36v-17,-9,-36,-17,-63,-16"},"\ue410":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm252,-13v72,7,93,-108,29,-126v17,-9,32,-25,32,-49v2,-73,-82,-62,-154,-62r0,237r93,0xm212,-117v31,-2,56,2,56,32v0,31,-25,33,-56,32r0,-64xm212,-209v25,0,49,-2,49,23v0,29,-21,30,-49,29r0,-52xm422,-153v-12,-34,-26,-65,-40,-96r-55,0r69,145r0,91r52,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue411":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm243,-13v72,8,93,-109,29,-126v18,-9,33,-25,33,-49v0,-71,-82,-63,-154,-62r0,237r92,0xm203,-117v31,-2,58,2,57,32v0,30,-26,34,-57,32r0,-64xm203,-209v25,0,49,-2,49,23v0,29,-21,30,-49,29r0,-52xm498,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v27,-10,46,-29,46,-68xm400,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue412":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm338,-23v66,32,184,12,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,4,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-145,-20,-145,52v0,64,55,63,95,85v22,21,1,62,-36,50v-16,0,-31,-4,-44,-9xm147,-133v-3,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-55,0,-58,-159,4,-159v16,0,29,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121"},"\ue413":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm147,-133v-3,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-55,0,-58,-159,4,-159v16,0,29,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121xm328,-13r155,0r0,-42r-97,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39"},"\ue414":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm157,-133v-4,85,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-40,8,-74,43,-75v16,0,31,3,43,8r13,-35v-17,-10,-35,-16,-62,-16v-69,1,-91,54,-94,121xm427,-153v-12,-34,-26,-65,-40,-96r-55,0r69,145r0,91r52,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue415":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm152,-133v-3,85,37,142,125,120v12,-3,23,-8,33,-15r-13,-36v-19,6,-29,12,-49,12v-33,0,-40,-40,-40,-84v1,-40,9,-73,44,-75v15,0,30,4,42,8r13,-35v-17,-10,-35,-16,-62,-16v-67,0,-90,53,-93,121xm397,-107v8,-29,9,-66,21,-92r20,92r-41,0xm447,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0"},"\ue416":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm147,-133v0,69,17,124,85,124v32,0,54,-6,73,-19r-14,-36v-18,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-41,9,-74,44,-75v16,0,29,4,42,8r13,-35v-17,-10,-35,-16,-62,-16v-68,0,-93,53,-93,121xm451,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r54,0r0,-236r-50,0v-2,44,4,97,-2,137"},"\ue417":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm142,-133v-4,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-33,0,-40,-40,-40,-84v1,-40,9,-73,44,-75v15,0,30,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121xm448,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-52,0r0,237r52,0r0,-103r66,0r0,103"},"\ue418":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm412,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm147,-133v0,69,17,124,85,124v32,0,54,-6,73,-19r-14,-36v-19,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-40,8,-74,43,-75v16,0,30,3,43,8r13,-35v-17,-10,-36,-16,-63,-16v-68,0,-92,53,-92,121"},"\ue419":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm353,-14r139,0r0,-42r-86,0r0,-60r76,0r0,-42r-76,0r0,-50r86,0r0,-42r-139,0r0,236xm216,-13v76,1,102,-44,102,-120v0,-78,-30,-117,-103,-117r-64,0r0,237r65,0xm203,-209v52,-6,61,26,61,74v0,48,-6,88,-61,81r0,-155"},"\ue41a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm216,-13v76,1,102,-44,102,-120v0,-78,-30,-117,-103,-117r-64,0r0,237r65,0xm203,-209v52,-6,61,26,61,74v0,48,-6,88,-61,81r0,-155xm399,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue41b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm159,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237xm341,-23v66,33,184,10,153,-87v-12,-38,-62,-43,-94,-60v-20,-23,5,-50,41,-41v10,3,22,4,32,8v5,-9,7,-27,12,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,0,61,-37,50v-16,0,-32,-4,-44,-9v-4,10,-10,27,-13,38"},"\ue41c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm171,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237xm350,-13r140,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-140,0r0,237"},"\ue41d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm162,-13r139,0r0,-42r-86,0r0,-61r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237xm428,-255v-68,2,-97,53,-98,121v-2,79,26,130,109,125v23,-2,44,-9,61,-19r0,-116r-69,0r0,30r18,3r0,55v-45,17,-65,-29,-63,-80v2,-41,11,-75,48,-76v14,0,33,4,44,9r13,-36v-17,-9,-36,-17,-63,-16"},"\ue41e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm496,-182v2,-76,-76,-70,-151,-68r0,236r52,0r0,-95r21,0r35,95r53,0r-34,-82r-23,-18v29,-8,47,-30,47,-68xm174,-13r52,0r0,-102r76,0r0,-42r-76,0r0,-50r87,0r0,-42r-139,0r0,236xm397,-209v27,-2,47,3,47,29v0,27,-19,33,-47,31r0,-60"},"\ue41f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm200,-13r53,0r0,-103r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237xm385,-13r52,0r0,-236r-52,0r0,236"},"\ue420":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm473,-140v21,-6,32,-25,32,-49v1,-72,-82,-61,-154,-61r0,236r93,0v72,8,93,-108,29,-126xm404,-118v31,-2,57,3,57,32v1,31,-25,35,-57,33r0,-65xm404,-210v25,0,49,-2,49,24v0,26,-22,30,-49,28r0,-52xm234,-256v-69,0,-97,54,-98,122v-2,79,26,131,110,125v24,-2,44,-10,60,-20r0,-116r-69,0r0,31r19,3r0,55v-47,15,-65,-31,-64,-81v1,-40,12,-75,48,-75v15,0,34,3,45,8r13,-36v-18,-9,-37,-16,-64,-16"},"\ue421":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm502,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-82r-22,-18v29,-9,46,-29,46,-68xm404,-208v26,-2,47,3,46,28v0,27,-18,34,-46,32r0,-60xm234,-256v-69,0,-98,53,-98,122v0,77,26,131,111,125v24,-2,44,-10,60,-20r0,-116r-69,0r0,31r18,3r0,55v-46,15,-63,-31,-63,-81v0,-40,12,-75,49,-75v15,0,32,3,43,8r14,-36v-18,-10,-38,-16,-65,-16"},"\ue422":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm251,-256v-69,0,-98,53,-98,122v0,77,25,131,110,125v24,-2,45,-9,61,-20r0,-116r-69,0r0,31r18,3r0,55v-47,15,-64,-30,-63,-81v1,-40,12,-75,48,-75v15,-1,33,3,44,8r13,-36v-17,-10,-37,-16,-64,-16xm361,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue423":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm248,-14r53,0r0,-236r-53,0r0,93r-65,0r0,-93r-53,0r0,236r53,0r0,-102r65,0r0,102xm427,-9v52,0,86,-23,86,-73r0,-168r-53,0r0,163v-1,22,-10,35,-33,35v-22,0,-30,-13,-30,-35r0,-163r-52,0r0,168v1,50,30,73,82,73"},"\ue424":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm248,-14r53,0r0,-236r-53,0r0,93r-65,0r0,-93r-53,0r0,236r53,0r0,-102r65,0r0,102xm494,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-33,-83r-23,-17v27,-10,46,-29,46,-68xm396,-208v26,-2,46,3,46,28v0,28,-18,32,-46,31r0,-59"},"\ue425":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm260,-14r52,0r0,-236r-52,0r0,93r-66,0r0,-93r-53,0r0,236r53,0r0,-102r66,0r0,102xm410,-120r65,107r64,0r-83,-124r82,-112r-60,0v-24,32,-43,70,-70,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue426":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm207,-13r52,0r0,-236r-52,0r0,236xm419,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194"},"\ue427":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm221,-13r53,0r0,-236r-53,0r0,236xm341,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237"},"\ue428":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm314,-23v66,33,185,11,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-53,40,-41v11,1,23,4,33,8r11,-36v-49,-29,-146,-19,-146,52v0,63,56,64,96,85v22,21,1,62,-36,50v-16,-1,-33,-4,-45,-9xm210,-13r52,0r0,-236r-52,0r0,236"},"\ue429":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm210,-13r52,0r0,-236r-52,0r0,236xm329,-13r139,0r0,-42r-86,0r0,-61r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237"},"\ue42a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm191,-13r52,0r0,-236r-52,0r0,236xm433,-112v-25,-43,-45,-92,-68,-137r-60,0r0,236r50,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-51,0r0,137"},"\ue42b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm207,-13r52,0r0,-236r-52,0r0,236xm388,-13v76,1,102,-43,102,-120v0,-78,-29,-118,-102,-117r-65,0r0,237r65,0xm375,-209v51,-5,61,24,61,74v0,50,-6,88,-61,81r0,-155"},"\ue42c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm479,-132v-1,-70,-20,-122,-90,-122v-69,0,-90,51,-90,122v0,71,20,123,90,123r20,50r44,0v-8,-21,-16,-44,-36,-53v47,-14,62,-59,62,-120xm195,-13r52,0r0,-236r-52,0r0,236xm355,-132v0,-38,-1,-79,34,-79v35,0,33,42,33,79v0,38,1,81,-33,81v-35,0,-34,-43,-34,-81"},"\ue42d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm466,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm204,-13r53,0r0,-236r-53,0r0,236xm368,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue42e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm228,-90v6,41,-32,41,-62,32r-12,38v16,7,32,11,55,11v110,0,62,-145,72,-240r-53,0r0,159xm491,-180v2,-77,-76,-72,-151,-70r0,237r52,0r0,-92v59,3,98,-18,99,-75xm438,-179v1,28,-17,35,-46,33r0,-63v28,-2,46,4,46,30"},"\ue42f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm210,-90v7,43,-32,41,-62,32r-11,38v16,8,32,11,55,11v109,0,61,-145,71,-240r-53,0r0,159xm308,-132v0,71,20,122,90,123v71,0,90,-54,90,-123v0,-70,-20,-122,-90,-122v-70,0,-89,52,-90,122xm364,-132v0,-38,-1,-79,34,-79v35,0,34,42,34,79v0,38,1,80,-34,80v-36,0,-34,-43,-34,-80"},"\ue430":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm143,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107xm327,-13r65,0r28,-166r2,0r28,166r65,0r49,-236r-57,0r-24,178r-2,0r-31,-178r-58,0r-31,180r-2,0r-26,-180r-56,0"},"\ue431":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm183,-13r140,0r0,-42r-88,0r0,-195r-52,0r0,237xm448,-249r-41,188r-2,0r-40,-188r-55,0r64,236r63,0r64,-236r-53,0"},"\ue432":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm189,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237xm428,-207r53,0r0,-43r-156,0r0,43r50,0r0,194r53,0r0,-194"},"\ue433":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm175,-13r140,0r0,-42r-87,0r0,-195r-53,0r0,237xm430,-13v72,7,93,-108,29,-126v17,-9,32,-25,32,-49v1,-72,-82,-63,-154,-62r0,237r93,0xm390,-117v31,-2,56,3,56,32v0,30,-25,33,-56,32r0,-64xm390,-209v25,-1,48,-1,49,23v1,29,-21,30,-49,29r0,-52"},"\ue434":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm234,-132r-50,-117r-59,0r0,236r51,0v2,-48,-4,-106,2,-150r39,95r34,0v15,-31,23,-67,41,-95r0,150r50,0r0,-236r-58,0xm436,-13v76,0,102,-43,102,-120v0,-78,-29,-117,-102,-117r-65,0r0,237r65,0xm423,-209v51,-5,61,25,61,74v0,48,-6,88,-61,81r0,-155"},"\ue435":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm224,-132v-19,-37,-33,-79,-51,-117r-58,0r0,236r50,0v2,-48,-4,-106,2,-150r40,95r33,0r39,-95r3,0r0,150r49,0r0,-236r-58,0xm445,-93v15,24,25,54,39,80r57,0r-66,-122r62,-114r-57,0r-35,75r-35,-75r-57,0r61,114r-65,122r57,0"},"\ue436":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm246,-132r-50,-117r-59,0r0,236r51,0v2,-48,-4,-106,2,-150r39,95r33,0v15,-31,24,-67,42,-95r0,150r50,0r0,-236r-58,0xm478,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194"},"\ue437":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm269,-112r-67,-137r-59,0r0,236r49,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-50,0v-2,44,4,97,-2,137xm343,-132v0,71,20,122,90,123v71,0,90,-54,90,-123v0,-70,-20,-122,-90,-122v-70,0,-89,52,-90,122xm399,-132v0,-38,-1,-79,34,-79v36,0,34,43,34,79v0,36,2,80,-34,80v-36,0,-34,-43,-34,-80"},"\ue438":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm274,-112r-67,-137r-59,0r0,236r50,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-51,0v-2,44,4,97,-2,137xm382,-13r140,0r0,-42r-87,0r0,-195r-53,0r0,237"},"\ue439":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm281,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r54,0r0,-236r-50,0v-2,44,4,97,-2,137xm357,-13r154,0r0,-42r-96,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39"},"\ue43a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm439,-208r52,0r0,-42r-156,0r0,42r51,0r0,194r53,0r0,-194"},"\ue43b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm315,-180v0,-79,-75,-71,-150,-70r0,236r52,0r0,-92v60,3,98,-16,98,-74xm263,-179v0,28,-17,34,-46,32r0,-63v27,-2,46,4,46,31xm355,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237"},"\ue43c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm397,-120v24,34,44,72,67,107r63,0r-82,-124r82,-112r-60,0r-70,100r0,-100r-53,0r0,236r53,0r0,-107"},"\ue43d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm341,-23v65,33,184,12,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v22,21,1,62,-36,50v-16,-1,-33,-4,-45,-9"},"\ue43e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm301,-180v0,-79,-75,-71,-151,-70r0,236r53,0r0,-92v59,3,98,-16,98,-74xm248,-179v0,29,-16,34,-45,32r0,-63v27,-1,45,3,45,31xm449,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-52,0r0,237r52,0r0,-103r66,0r0,103"},"\ue43f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm326,-132v0,70,21,123,91,123v70,0,89,-52,89,-123v0,-69,-20,-122,-89,-122v-70,0,-91,52,-91,122xm304,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm382,-132v0,-38,-1,-79,35,-79v34,0,33,42,33,79v0,37,1,80,-33,80v-36,0,-35,-42,-35,-80xm206,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue440":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm297,-181v2,-76,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-9,46,-31,46,-68xm420,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm199,-208v26,-1,45,1,45,28v0,27,-17,33,-45,31r0,-59"},"\ue441":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm165,-23v66,33,184,12,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,3,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-146,-20,-146,52v0,63,56,63,96,85v21,21,1,62,-36,50v-16,0,-31,-4,-44,-9xm375,-13r52,0r0,-236r-52,0r0,236"},"\ue442":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm163,-23v66,33,184,10,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,-1,-32,-4,-44,-9v-2,12,-10,27,-13,38xm348,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue443":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm162,-23v66,33,184,10,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-53,40,-41v11,1,22,4,32,8r12,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,0,-31,-4,-44,-9v-4,10,-10,27,-13,38xm395,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue444":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm150,-23v66,33,183,11,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,3,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-146,-20,-146,52v0,63,56,64,96,85v20,22,1,61,-36,50v-17,-1,-32,-4,-45,-9xm430,-255v-67,3,-98,52,-98,121v0,78,25,132,110,125v23,-2,43,-9,60,-19r0,-116r-69,0r0,30r19,3r0,55v-45,17,-66,-30,-64,-80v1,-41,12,-75,49,-76v14,0,32,5,43,9r14,-36v-18,-8,-37,-17,-64,-16"},"\ue445":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm450,-67r13,54r54,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0xm153,-23v66,33,184,10,153,-87v-12,-38,-62,-43,-94,-60v-20,-23,4,-50,41,-41v10,3,22,4,32,8r12,-36v-49,-28,-146,-21,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,0,-31,-4,-44,-9xm399,-107v8,-29,9,-66,21,-92r21,92r-42,0"},"\ue446":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm490,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r35,95r53,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm255,-207r52,0r0,-43r-155,0r0,43r50,0r0,194r53,0r0,-194xm392,-208v26,-1,45,1,45,28v0,27,-17,33,-45,31r0,-59"},"\ue447":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm243,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194xm439,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-53,0r0,237r53,0r0,-103r66,0r0,103"},"\ue448":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm218,-9v52,-1,84,-22,85,-73r0,-167r-52,0r0,162v-1,22,-10,36,-33,36v-23,-1,-30,-14,-30,-36r0,-162r-52,0r0,167v1,48,30,74,82,73xm395,-107v8,-29,9,-66,21,-92r20,92r-41,0xm445,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0"},"\ue449":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm227,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm349,-23v65,33,185,11,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,22,1,61,-36,50v-16,-1,-33,-4,-45,-9"},"\ue44a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm274,-249r-41,188r-2,0r-41,-188r-54,0r63,236r64,0r64,-236r-53,0xm348,-13r140,0r0,-42r-87,0r0,-61r76,0r0,-41r-76,0r0,-50r87,0r0,-43r-140,0r0,237"},"\ue44b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm348,-13r140,0r0,-42r-87,0r0,-61r76,0r0,-41r-76,0r0,-50r87,0r0,-43r-140,0r0,237xm235,-153v-12,-34,-26,-65,-40,-96r-55,0r68,145r0,91r53,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue44c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm145,-13r155,0r0,-42r-97,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39xm386,-107r19,-92r3,0r20,92r-42,0xm437,-67r12,54r55,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0"},"\ue478":{"d":"368,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm271,-107r-20,-92r-3,0r-19,92r42,0xm220,-67r-12,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue479":{"d":"262,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm212,-67r-13,54r-54,0r66,-236r60,0r67,236r-54,0r-13,-54r-59,0xm352,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47a":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm498,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm210,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm400,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm260,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0"},"\ue47b":{"d":"297,-188v0,25,-14,41,-32,49v66,16,43,126,-29,126r-92,0r0,-237v71,0,153,-11,153,62xm196,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm196,-157v28,2,51,-2,50,-29v-1,-24,-25,-24,-50,-23r0,52xm441,-9v-85,6,-107,-47,-110,-125v-4,-93,77,-150,161,-105r-13,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160r19,-4r0,-55r-19,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47c":{"d":"313,-188v0,24,-15,40,-32,49v25,7,39,27,39,57v0,42,-26,69,-68,69r-93,0r0,-237v72,0,156,-11,154,62xm212,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm212,-157v28,2,49,-1,49,-29v0,-25,-24,-23,-49,-23r0,52xm424,-153r39,-96r55,0r-70,144r0,92r-52,0r0,-91r-69,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47d":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm234,-250v68,-10,96,87,39,110v62,18,44,127,-30,127r-92,0r0,-237r83,0xm498,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm203,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm400,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm203,-157v28,2,51,-2,50,-29v-1,-24,-25,-24,-50,-23r0,52"},"\ue47e":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm456,-147v70,36,37,153,-50,138v-25,-4,-50,-4,-68,-14r14,-38v34,19,116,12,81,-41v-39,-21,-96,-20,-96,-85v0,-72,96,-80,145,-52r-11,36v-24,-8,-80,-22,-80,15v-1,32,45,31,65,41xm306,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-5,-94,73,-149,156,-104r-14,35v-11,-5,-26,-8,-42,-8v-63,0,-58,159,-4,159v20,0,30,-6,49,-12"},"\ue47f":{"d":"306,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-5,-94,73,-149,156,-104r-14,35v-11,-5,-26,-8,-42,-8v-63,0,-58,159,-4,159v20,0,30,-6,49,-12xm328,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r97,0r0,42r-155,0r0,-39xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue480":{"d":"316,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-94,72,-149,155,-104r-13,35v-12,-5,-27,-8,-43,-8v-35,1,-43,35,-43,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm429,-153r39,-96r55,0r-70,144r0,92r-52,0r0,-91r-69,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue481":{"d":"310,-28v-19,13,-41,19,-72,19v-69,-1,-83,-55,-86,-125v-5,-93,73,-149,155,-104r-13,35v-12,-4,-27,-8,-42,-8v-35,1,-43,36,-44,75v0,43,7,84,40,84v20,0,30,-6,49,-12xm438,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm388,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue482":{"d":"305,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-93,73,-149,155,-104r-13,35v-13,-4,-26,-8,-42,-8v-35,1,-44,35,-44,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm453,-112r0,-137r50,0r0,236r-54,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue483":{"d":"301,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-4,-94,73,-149,156,-104r-14,35v-13,-4,-26,-8,-42,-8v-35,1,-43,36,-44,75v0,43,7,84,40,84v20,0,30,-6,49,-12xm448,-116r-66,0r0,103r-52,0r0,-237r52,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue484":{"d":"305,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-94,72,-149,155,-104r-13,35v-13,-5,-27,-8,-43,-8v-35,1,-43,35,-43,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm412,-51v23,0,32,-14,33,-36r0,-162r53,0r0,167v-1,51,-34,72,-86,73v-52,1,-82,-25,-82,-73r0,-167r53,0r0,162v0,23,7,36,29,36xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue485":{"d":"353,-250r139,0r0,42r-86,0r0,50r76,0r0,42r-76,0r0,60r86,0r0,42r-139,0r0,-236xm215,-250v73,0,103,38,103,116v0,76,-25,122,-102,121r-65,0r0,-237r64,0xm203,-54v54,7,62,-32,61,-81v-1,-48,-9,-80,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue486":{"d":"215,-250v73,0,103,38,103,116v0,76,-25,122,-102,121r-65,0r0,-237r64,0xm203,-54v54,7,62,-32,61,-81v-1,-48,-9,-80,-61,-74r0,155xm397,-120r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r69,-100r59,0r-81,112r82,124r-64,0v-23,-35,-41,-75,-67,-107xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue487":{"d":"159,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm458,-147v71,35,39,151,-49,138v-25,-4,-51,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,44,31,65,41xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue488":{"d":"171,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm350,-250r140,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue489":{"d":"162,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,61r86,0r0,42r-139,0r0,-237xm440,-9v-84,6,-110,-46,-110,-125v0,-93,77,-150,161,-105r-13,36v-11,-4,-29,-9,-43,-9v-37,1,-49,35,-49,76v0,51,16,96,63,80r0,-55r-18,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48a":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm496,-182v0,38,-18,59,-47,68r23,18r34,82r-53,0r-35,-95r-21,0r0,95r-52,0r0,-236v75,-1,153,-8,151,68xm174,-249r139,0r0,42r-87,0r0,50r76,0r0,42r-76,0r0,102r-52,0r0,-236xm397,-149v28,2,47,-4,47,-31v0,-26,-20,-31,-47,-29r0,60"},"\ue48b":{"d":"200,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,103r-53,0r0,-237xm385,-249r52,0r0,236r-52,0r0,-236xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48c":{"d":"473,-140v25,8,39,27,39,57v0,43,-25,69,-68,69r-93,0r0,-236v71,0,155,-11,154,61v0,24,-12,41,-32,49xm404,-53v32,2,58,-2,57,-33v0,-29,-26,-34,-57,-32r0,65xm404,-158v27,2,49,-2,49,-28v0,-26,-24,-25,-49,-24r0,52xm246,-9v-84,6,-110,-46,-110,-125v0,-95,79,-151,162,-106r-13,36v-11,-5,-30,-9,-44,-9v-68,-1,-65,157,-4,160v6,0,16,-2,19,-3r0,-55r-19,-3r0,-31r69,0r0,116v-16,10,-36,18,-60,20xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48d":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm502,-181v0,39,-18,59,-46,68r22,18r34,82r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-9,150,68xm247,-9v-85,6,-107,-48,-111,-125v-5,-95,80,-151,163,-106r-14,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160v6,0,15,-2,19,-3r0,-55r-19,-3r0,-31r69,0r0,116v-16,10,-36,18,-60,20xm404,-148v28,2,47,-5,46,-32v0,-25,-19,-30,-46,-28r0,60"},"\ue48e":{"d":"263,-9v-85,6,-107,-48,-110,-125v-4,-94,78,-152,162,-106r-13,36v-11,-5,-30,-9,-44,-9v-67,-1,-64,158,-4,160v6,0,15,-2,19,-3r0,-55r-18,-3r0,-31r69,0r0,116v-17,11,-37,18,-61,20xm361,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48f":{"d":"249,-116r-66,0r0,102r-53,0r0,-236r53,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm427,-52v23,0,32,-14,33,-35r0,-163r53,0r0,168v-3,49,-34,73,-86,73v-51,0,-82,-23,-82,-73r0,-168r52,0r0,163v1,22,8,34,30,35xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue490":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm494,-181v0,39,-19,58,-46,68r23,17r33,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm249,-116r-66,0r0,102r-53,0r0,-236r53,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm396,-149v28,1,47,-3,46,-31v-1,-25,-19,-31,-46,-29r0,60"},"\ue491":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm534,-249v-93,-71,-308,-71,-411,-6v-59,37,-109,117,-60,192v76,118,345,139,471,50r-59,0v-23,-35,-41,-75,-67,-107r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r68,-100r56,0xm260,-116r-66,0r0,102r-52,0r0,-236r52,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm537,-15v56,-31,99,-112,53,-180v-13,-20,-30,-37,-53,-53r-81,111"},"\ue492":{"d":"207,-249r52,0r0,236r-52,0r0,-236xm419,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue493":{"d":"221,-249r53,0r0,236r-53,0r0,-236xm341,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue494":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm432,-147v70,36,38,153,-50,138v-25,-4,-50,-4,-68,-14r14,-38v30,13,103,22,87,-32v-30,-36,-103,-21,-103,-94v0,-71,96,-81,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41xm210,-249r52,0r0,236r-52,0r0,-236"},"\ue495":{"d":"210,-249r52,0r0,236r-52,0r0,-236xm329,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,61r86,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue496":{"d":"191,-249r52,0r0,236r-52,0r0,-236xm432,-112v4,-42,0,-92,1,-137r51,0r0,236r-55,0r-72,-147r-2,0r0,147r-50,0r0,-236r60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue497":{"d":"207,-249r52,0r0,236r-52,0r0,-236xm388,-250v73,-1,102,39,102,116v0,77,-25,122,-102,121r-65,0r0,-237r65,0xm375,-54v55,7,61,-30,61,-81v0,-49,-9,-80,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue498":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm447,26v79,-26,154,-63,163,-157v-24,-221,-447,-218,-547,-69v-52,78,6,162,60,193v67,39,180,64,283,43r-17,-45v-69,-3,-89,-52,-90,-123v0,-71,21,-122,90,-122v70,0,89,52,90,122v0,61,-16,106,-62,120v13,9,25,21,30,38xm195,-249r52,0r0,236r-52,0r0,-236xm423,-132v0,-36,1,-79,-34,-79v-35,0,-34,42,-34,79v0,38,-1,81,34,81v35,0,34,-44,34,-81"},"\ue499":{"d":"204,-249r53,0r0,236r-53,0r0,-236xm466,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-53,0r0,-236v74,0,151,-10,151,68xm368,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49a":{"d":"281,-89v10,75,-65,97,-127,69r12,-38v29,9,62,11,62,-32r0,-159r53,0r0,160xm491,-180v-1,57,-39,78,-99,75r0,92r-52,0r0,-237v75,-1,153,-8,151,70xm438,-179v0,-26,-18,-32,-46,-30r0,63v29,2,47,-5,46,-33xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49b":{"d":"263,-89v12,76,-65,96,-126,69r11,-38v30,8,62,12,62,-32r0,-159r53,0r0,160xm488,-132v0,70,-19,123,-90,123v-70,0,-90,-54,-90,-123v0,-70,20,-122,90,-122v70,0,90,52,90,122xm432,-132v0,-38,1,-79,-34,-79v-35,0,-34,42,-34,79v0,37,-2,80,34,80v35,0,34,-42,34,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49c":{"d":"162,-120v-4,29,0,65,-1,96r-48,0r0,-213r48,0r1,91r62,-91r54,0r-74,102r75,111r-58,0xm283,-236r50,0r25,161r28,-161r53,0r29,160r22,-160r51,0r-44,212r-58,0r-27,-148r-26,148r-58,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49d":{"d":"183,-250r52,0r0,195r88,0r0,42r-140,0r0,-237xm448,-249r53,0r-64,236r-63,0r-64,-236r55,0r40,188r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49e":{"d":"189,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm428,-13r-53,0r0,-194r-50,0r0,-43r156,0r0,43r-53,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49f":{"d":"175,-250r53,0r0,195r87,0r0,42r-140,0r0,-237xm420,-250v69,-10,96,88,39,110v62,18,45,127,-29,127r-93,0r0,-237r83,0xm390,-53v31,1,56,-1,56,-32v0,-30,-25,-34,-56,-32r0,64xm390,-157v28,2,50,-2,49,-29v-1,-24,-24,-24,-49,-23r0,52xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a0":{"d":"234,-132r50,-117r58,0r0,236r-50,0v-2,-48,4,-106,-2,-150r-39,95r-34,0v-15,-31,-23,-67,-41,-95r0,150r-51,0r0,-236r59,0xm436,-250v72,0,102,39,102,116v0,78,-26,121,-102,121r-65,0r0,-237r65,0xm423,-54v55,7,61,-32,61,-81v0,-49,-10,-79,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a1":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm534,-249v-93,-71,-308,-71,-411,-6v-59,37,-109,117,-60,192v76,118,345,139,471,50r-50,0r-39,-80r-38,80r-58,0r66,-122r-62,-114r57,0r36,75r34,-75r54,0xm223,-132v20,-36,33,-78,50,-117r59,0r0,236r-50,0r0,-150r-3,0r-39,95r-33,0v-15,-31,-24,-67,-42,-95r0,150r-50,0r0,-236r59,0xm539,-16v54,-32,97,-112,51,-179v-13,-20,-31,-38,-54,-53r-61,113"},"\ue4a2":{"d":"246,-132r50,-117r58,0r0,236r-50,0v-2,-48,4,-106,-2,-150r-40,95r-33,0v-15,-31,-23,-67,-41,-95r0,150r-51,0r0,-236r59,0xm478,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a3":{"d":"271,-112r0,-137r50,0r0,236r-55,0r-72,-147r-2,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm523,-132v0,69,-19,123,-90,123v-70,0,-90,-52,-90,-123v1,-70,20,-122,90,-122v70,0,90,52,90,122xm467,-132v0,-36,2,-79,-34,-79v-35,0,-34,42,-34,79v0,37,-2,80,34,80v36,0,34,-44,34,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a4":{"d":"276,-112r0,-137r51,0r0,236r-55,0r-72,-147r-2,0r0,147r-50,0r0,-236r59,0r67,137r2,0xm382,-250r53,0r0,195r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a5":{"d":"283,-112r0,-137r50,0r0,236r-54,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm357,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r96,0r0,42r-154,0r0,-39xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a6":{"d":"310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32xm439,-14r-53,0r0,-194r-51,0r0,-42r156,0r0,42r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a7":{"d":"315,-180v0,58,-38,77,-98,74r0,92r-52,0r0,-236v75,-1,150,-9,150,70xm263,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-4,46,-32xm355,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a8":{"d":"310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32xm398,-120v-4,32,0,72,-1,107r-53,0r0,-236r53,0r1,100r69,-100r60,0r-82,112r82,124r-63,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a9":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm459,-147v70,35,38,152,-50,138v-26,-4,-50,-5,-68,-14r13,-38v31,12,104,22,88,-32v-30,-36,-103,-21,-103,-94v0,-72,94,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,31,66,41xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32"},"\ue4aa":{"d":"301,-180v0,58,-39,77,-98,74r0,92r-53,0r0,-236v75,-1,151,-10,151,70xm249,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-4,46,-32xm449,-116r-66,0r0,103r-52,0r0,-237r52,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ab":{"d":"304,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm206,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm506,-132v0,71,-20,123,-89,123v-71,0,-91,-53,-91,-123v0,-70,21,-122,91,-122v69,0,89,53,89,122xm450,-132v0,-37,1,-79,-33,-79v-36,0,-35,41,-35,79v0,36,-2,80,35,80v34,0,33,-43,33,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ac":{"d":"297,-181v-1,37,-18,59,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,152,-9,150,68xm199,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm420,-51v23,0,32,-14,33,-36r0,-162r53,0r0,167v-1,51,-34,72,-86,73v-52,1,-82,-25,-82,-73r0,-167r53,0r0,162v0,23,7,36,29,36xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ad":{"d":"291,-147v70,35,37,152,-50,138v-25,-4,-51,-4,-67,-14r12,-38v31,12,103,22,87,-32v-28,-36,-102,-21,-102,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-80,-23,-80,15v0,32,45,31,65,41xm383,-249r52,0r0,236r-52,0r0,-236xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ae":{"d":"281,-147v70,36,38,151,-50,138v-25,-4,-51,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41xm348,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4af":{"d":"280,-147v70,36,37,151,-50,138v-25,-4,-51,-5,-68,-14r13,-38v30,13,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,45,30,66,41xm393,-120r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r69,-100r59,0r-81,112r82,124r-64,0v-23,-35,-41,-75,-67,-107xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b0":{"d":"268,-147v70,35,37,152,-50,138v-25,-4,-50,-5,-68,-14r13,-38v31,12,104,22,88,-32v-30,-36,-103,-21,-103,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-80,-22,-80,15v0,32,45,31,65,41xm442,-9v-85,6,-107,-47,-110,-125v-4,-94,79,-149,162,-105r-14,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160r19,-4r0,-55r-19,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b1":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm390,-67r-12,54r-55,0r66,-236r61,0r67,236r-54,0r-13,-54r-60,0xm271,-147v70,36,37,152,-51,138v-25,-4,-50,-4,-67,-14r13,-38v30,13,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,45,30,66,41xm441,-107v-9,-29,-11,-66,-23,-92r-19,92r42,0"},"\ue4b2":{"d":"255,-13r-53,0r0,-194r-50,0r0,-43r155,0r0,43r-52,0r0,194xm490,-181v-1,37,-18,58,-46,68r22,17r34,83r-53,0r-35,-95r-20,0r0,95r-53,0r0,-236v75,-1,154,-9,151,68xm392,-149v27,1,45,-3,45,-31v0,-26,-19,-31,-45,-29r0,60xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b3":{"d":"243,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm439,-116r-66,0r0,103r-53,0r0,-237r53,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b4":{"d":"218,-51v23,0,32,-14,33,-36r0,-162r52,0r0,167v-1,51,-33,72,-85,73v-52,1,-82,-25,-82,-73r0,-167r52,0r0,162v1,22,7,35,30,36xm436,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm386,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b5":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm227,-51v24,0,33,-13,34,-36r0,-162r52,0r0,167v-1,51,-34,72,-86,73v-52,1,-81,-26,-81,-73r0,-167r52,0r0,162v0,23,7,36,29,36xm467,-147v70,36,38,152,-50,138v-26,-4,-50,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-21,-102,-94v0,-72,94,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41"},"\ue4b6":{"d":"274,-249r53,0r-64,236r-64,0r-63,-236r54,0r41,188r2,0xm348,-250r140,0r0,43r-87,0r0,50r76,0r0,41r-76,0r0,61r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b7":{"d":"348,-250r140,0r0,43r-87,0r0,50r76,0r0,41r-76,0r0,61r87,0r0,42r-140,0r0,-237xm237,-153r39,-96r55,0r-70,144r0,92r-53,0r0,-91r-68,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b8":{"d":"145,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r97,0r0,42r-155,0r0,-39xm428,-107r-20,-92r-3,0r-19,92r42,0xm377,-67r-12,54r-55,0r66,-236r61,0r67,236r-55,0r-12,-54r-60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue360":{"d":"115,-140r-87,0r-15,41r-9,0r63,-163r10,0r63,163r-10,0xm31,-147r81,0r-41,-108","w":143},"\ue361":{"d":"134,-143v1,54,-63,44,-115,44r0,-163v0,0,113,-9,111,41v0,20,-12,32,-27,37v18,6,30,19,31,41xm126,-143v-1,-44,-54,-37,-99,-37r0,74v45,0,100,8,99,-37xm122,-221v0,-41,-52,-35,-95,-35r0,69v42,-1,95,8,95,-34","w":143},"\ue362":{"d":"135,-184v0,54,-12,85,-63,85r-53,0r0,-163r56,0v47,-2,60,28,60,78xm28,-106v55,3,99,0,99,-57v0,-53,-2,-96,-54,-93r-45,0r0,150","w":149},"\ue363":{"d":"19,-262r104,0r0,6r-96,0r0,70r82,0r0,7r-82,0r0,73r96,0r0,7r-104,0r0,-163","w":128},"\ue364":{"d":"126,-179r-99,0r0,80r-8,0r0,-163r8,0r0,76r99,0r0,-76r8,0r0,163r-8,0r0,-80","w":153},"\ue365":{"d":"21,-262r7,0r0,163r-7,0r0,-163","w":48},"\ue366":{"d":"19,-262r8,0r0,156r96,0r0,7r-104,0r0,-163","w":128},"\ue367":{"d":"158,-245r-62,119r-6,0r-63,-119r0,146r-8,0r0,-163r8,0r66,126r66,-126r7,0r0,163r-8,0r0,-146","w":183},"\ue368":{"d":"28,-250r0,151r-7,0r0,-163r8,0r107,150r0,-150r8,0r0,163r-8,0","w":163},"\ue369":{"d":"10,-157v-4,-59,3,-107,59,-107v55,0,62,48,59,107v-2,35,-23,60,-59,59v-38,-1,-57,-22,-59,-59xm120,-157v2,-52,0,-100,-50,-100v-53,0,-53,48,-51,101v1,32,18,51,51,51v31,1,49,-23,50,-52","w":138},"\ue36a":{"d":"135,-221v0,25,-19,42,-44,44r40,78r-10,0r-39,-77r-54,0r0,77r-8,0r0,-163v51,1,116,-10,115,41xm126,-221v-1,-43,-55,-34,-98,-35r0,72v44,0,98,7,98,-37","w":143},"\ue36b":{"d":"125,-141v-1,50,-81,52,-116,28r4,-7v29,20,104,26,104,-21v0,-59,-104,-16,-104,-80v0,-46,66,-52,101,-32r-4,7v-29,-16,-92,-18,-89,26v3,56,105,17,104,79","w":133},"\ue36c":{"d":"63,-99r-8,0r0,-157r-52,0r0,-6r113,0r0,6r-53,0r0,157","w":117},"\ue36d":{"d":"115,-140r-87,0r-15,41r-9,0r63,-163r10,0r63,163r-10,0xm31,-147r81,0r-41,-108","w":143},"\ue36e":{"d":"126,-179r-99,0r0,80r-8,0r0,-163r8,0r0,76r99,0r0,-76r8,0r0,163r-8,0r0,-80","w":153},"\ue36f":{"d":"28,-250r0,151r-7,0r0,-163r8,0r107,150r0,-150r8,0r0,163r-8,0","w":163},"\ue370":{"d":"10,-157v-4,-59,3,-107,59,-107v55,0,62,48,59,107v-2,35,-23,60,-59,59v-38,-1,-57,-22,-59,-59xm120,-157v2,-52,0,-100,-50,-100v-53,0,-53,48,-51,101v1,32,18,51,51,51v31,1,49,-23,50,-52","w":138},"\ue371":{"d":"134,-216v0,49,-55,47,-106,45r0,72r-8,0r0,-163v53,0,114,-9,114,46xm125,-216v0,-47,-51,-40,-97,-40r0,78v45,0,97,8,97,-38","w":135},"\ue372":{"d":"18,-256r48,72r-49,78r94,0r0,7r-103,0r0,-7r48,-78r-47,-72r0,-6r100,0r0,6r-91,0","w":117},"\ue373":{"d":"61,-99r-8,0r0,-68r-52,-95r9,0r47,87r47,-87r9,0r-52,95r0,68","w":114},"\u0387":{"d":"19,-118r0,-16r14,0r0,16r-14,0","w":51},"\ue37f":{"d":"320,1r-125,-126r125,-127r0,253xm185,1r-126,-126r126,-127r0,253xm54,1r-26,0r0,-253r26,0r0,253","w":360},"\ue380":{"d":"327,1r-25,0r0,-252r25,0r0,252xm297,-125r-126,126r0,-252xm161,-125r-126,126r0,-252","w":360},"\u01a0":{"d":"15,-87v-5,-88,1,-165,86,-165v28,0,44,11,61,21v21,-1,30,-19,28,-45r8,0v2,30,-7,49,-31,53v24,28,18,85,18,136v0,56,-30,90,-84,90v-57,0,-83,-36,-86,-90xm175,-88v3,-79,3,-155,-74,-155v-80,0,-79,77,-76,157v2,49,27,80,76,80v49,0,72,-33,74,-82","w":203,"k":{"J":14}},"\u01a1":{"d":"15,-90v0,-55,19,-89,72,-90v25,0,42,8,53,23v25,1,34,-18,32,-45r8,0v2,31,-8,50,-34,54v24,55,12,155,-61,150v-54,-4,-70,-36,-70,-92xm148,-88v0,-54,-14,-84,-62,-84v-46,0,-62,33,-62,83v0,50,17,84,62,84v46,0,62,-33,62,-83","w":179},"\u01af":{"d":"192,-80v-1,52,-33,82,-84,82v-52,0,-83,-32,-84,-86r0,-167r9,0v6,100,-30,243,75,244v107,2,68,-145,75,-244r9,0r0,20v25,1,34,-18,32,-45r8,0v1,32,-8,54,-40,54r0,142","w":225},"\u01b0":{"d":"198,-202v2,33,-8,54,-39,54r0,148r-8,0v-1,-10,2,-25,-1,-33v-9,22,-32,34,-61,35v-40,1,-64,-24,-64,-62r0,-119r9,0v4,71,-23,175,55,173v37,-2,62,-24,62,-62r0,-111r8,0r0,22v24,1,33,-18,31,-45r8,0","w":194},"\u20ab":{"d":"83,-186v25,-1,38,14,45,29r0,-54r-42,0r0,-8r42,0r0,-31r9,0r0,31r16,0r0,8r-16,0r0,165r-9,0r0,-27v-9,17,-22,28,-46,28v-43,0,-56,-30,-56,-72v0,-39,16,-69,57,-69xm83,-52v34,-1,44,-30,45,-63v1,-36,-11,-64,-45,-64v-36,0,-48,28,-48,63v0,36,11,64,48,64xm33,-18r109,0r0,8r-109,0r0,-8","w":162},"\u2602":{"d":"262,-131v-14,-18,-50,-18,-64,0v-10,-15,-30,-17,-49,-9v-7,53,24,143,-36,143v-22,0,-37,-14,-35,-40r17,0v-7,26,33,33,35,11v4,-35,0,-77,1,-114v-17,-8,-39,-2,-49,9v-14,-18,-50,-18,-64,0v5,-67,53,-111,117,-120r0,-11r11,0r0,12v64,8,112,51,116,119xm263,-131r-1,0r1,0","w":280},"\ue3c0":{"d":"30,-143v-15,0,-17,-27,-15,-39v71,-41,160,-74,245,-98v24,-7,23,18,25,36v-75,45,-161,79,-255,101xm294,-122v4,0,6,6,7,10v-2,35,4,77,-3,106v-63,28,-190,27,-252,0v-7,-30,-3,-78,-2,-112v61,-32,183,-27,250,-4xm271,-271v-71,38,-159,76,-250,97r7,24v86,-18,178,-59,251,-96xm261,-273v-78,24,-163,55,-232,91v85,-21,163,-57,232,-91xm292,-112v-60,19,-179,15,-241,0r0,100v61,25,181,24,241,1r0,-101xm60,-116v59,13,163,13,223,0v-58,-21,-167,-22,-223,0","w":321},"\ue3c1":{"d":"31,-142v-19,-1,-24,-43,-5,-46v74,-37,160,-74,247,-92v8,7,19,35,6,42v-76,41,-159,74,-248,96xm45,-117v61,-32,195,-30,255,1v1,33,4,80,-2,110v-62,29,-190,28,-252,1v-5,-32,-2,-78,-1,-112xm28,-149v85,-19,179,-58,251,-96r-8,-25v-71,37,-158,76,-250,96xm261,-272v-79,24,-162,57,-232,91v87,-21,161,-58,232,-91xm292,-111v-60,19,-178,15,-240,0r0,100v61,26,179,23,240,1r0,-101xm283,-115v-54,-23,-169,-22,-223,0v60,13,163,12,223,0xm90,-8r0,-67r-12,9v-2,-20,7,-26,27,-25r0,83r-15,0xm141,-78v-6,0,-11,5,-11,12r-15,-2v0,-28,53,-32,51,-1v-2,23,-22,30,-31,46r31,0r0,15r-51,0v0,-32,30,-34,36,-60v-1,-5,-2,-11,-10,-10xm246,-8r0,-46r-16,34r-12,0r-16,-34r0,46r-16,0r0,-83r15,0r23,52r23,-52r15,0r0,83r-16,0","w":321},"\ue3c2":{"d":"57,-127r82,56r0,71r-58,0r8,-39r-68,-83r18,-84r18,0r0,79xm230,-206r18,0r19,84r-68,83r8,39r-58,0r0,-71r81,-56r0,-79xm142,-176r0,92r-74,-44r0,-89xm142,-258r76,38r-74,40r-75,-40xm221,-217r0,89r-75,44r0,-92","w":286},"\ue44d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm269,-249r-41,188r-2,0r-40,-188r-55,0r64,236r63,0r64,-236r-53,0xm455,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r55,0r0,-236r-51,0v-2,44,4,97,-2,137"},"\ue4b9":{"d":"269,-249r53,0r-64,236r-63,0r-64,-236r55,0r40,188r2,0xm457,-112r0,-137r51,0r0,236r-55,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\u1fc6":{"d":"135,-230v-15,46,-73,-18,-93,18r-7,-4v22,-47,73,19,93,-19xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37","w":180},"\u1fc7":{"d":"134,-230v-15,46,-73,-18,-93,18r-7,-4v21,-48,73,19,93,-19xm94,-180v87,0,58,103,63,180r-9,0v-5,-71,24,-176,-55,-172v-37,2,-62,25,-62,63r0,109r-8,0r0,-178r8,0v1,11,-2,26,1,35v11,-21,30,-37,62,-37xm98,26v-1,30,-4,59,29,56v1,5,0,10,-6,8v-33,2,-33,-31,-32,-64r9,0","w":180},"\u040c":{"d":"29,0r0,-251r9,0r0,116v50,-2,104,10,119,-39r24,-77r9,0v-18,41,-17,103,-59,119v49,16,45,86,64,132r-10,0v-20,-46,-11,-126,-72,-126r-75,0r0,126r-9,0xm87,-265r47,-37r8,10r-51,31","w":201},"\u045c":{"d":"76,-208r29,-51r12,6r-36,48xm26,0r0,-178r9,0r0,83v39,-2,79,9,91,-28r18,-55r8,0v-12,29,-13,72,-41,85v33,13,30,61,44,93r-9,0v-14,-32,-8,-88,-53,-88r-58,0r0,88r-9,0","w":167},"\ue29a":{"d":"242,-41v0,22,8,35,33,33v1,5,0,10,-6,8v-23,0,-36,-13,-36,-36r0,-143r9,0r0,138","w":292},"\ue071":{"d":"60,-217v35,0,48,24,48,59r-91,0v-7,46,43,68,75,45r5,5v-37,25,-92,3,-87,-49v3,-36,14,-60,50,-60xm100,-164v6,-43,-46,-61,-70,-34v-7,9,-11,20,-12,34r82,0xm65,-233r-28,-37r10,-6r23,40","w":115},"\ue26a":{"d":"29,-251r9,0r0,119v38,0,76,4,85,-29v11,-38,7,-94,61,-92r0,8v-68,-4,-21,103,-86,118v54,10,30,93,70,119v5,3,13,3,21,3v1,5,0,10,-6,8v-76,1,-20,-124,-107,-126r-38,0r0,123r-9,0r0,-251xm75,-265r46,-37r9,10r-51,31","w":191},"\ue26b":{"d":"149,0r-10,0r0,-123v-85,-17,-72,69,-101,114v-7,10,-20,13,-37,12v-2,-16,26,-3,32,-21v24,-31,10,-99,59,-109v-52,-8,-29,-86,-63,-114v-5,-4,-14,-4,-23,-4r0,-8v87,-6,9,139,133,121r0,-119r10,0r0,119v71,13,77,-39,89,-92v4,-19,19,-30,45,-29r0,8v-68,-4,-21,103,-86,118v54,10,30,93,70,119v5,3,13,3,21,3v1,5,0,10,-6,8v-82,-1,-11,-144,-133,-126r0,123","w":289},"\ue26c":{"d":"29,-251r9,0r0,119v38,0,76,4,85,-29v11,-38,7,-94,61,-92r0,8v-68,-4,-21,103,-86,118v54,10,30,93,70,119v5,3,13,3,21,3v1,5,0,10,-6,8v-76,1,-20,-124,-107,-126r-38,0r0,123r-9,0r0,-251","w":191},"\ue26d":{"d":"22,-186v1,-75,87,-66,164,-65r0,251r-9,0r0,-123v-55,-2,-107,-5,-113,52v-4,38,-11,78,-58,74v-3,-17,26,-5,31,-21v22,-28,12,-88,46,-105v-38,-3,-61,-24,-61,-63xm32,-186v0,69,80,52,145,54r0,-110v-66,1,-145,-12,-145,56","w":215},"\ue26e":{"d":"123,0r-9,0r0,-87v-48,-7,-63,17,-69,55v-4,22,-15,35,-41,35v-3,-13,19,-4,23,-16v19,-23,9,-70,44,-78v-43,-7,-12,-80,-64,-83v0,-4,-1,-7,4,-6v62,-2,9,100,103,85r0,-84r9,0r0,84v45,6,62,-14,67,-51v3,-20,14,-36,40,-34v-3,11,-33,9,-31,36v-6,22,-9,48,-33,53v45,7,16,84,68,87v0,3,2,8,-3,7v-65,1,-12,-106,-108,-90r0,87","w":238},"\ue26f":{"d":"26,-179r9,0r0,84v36,2,65,-1,70,-35v4,-26,10,-52,44,-50v-3,11,-33,9,-31,36v-6,22,-9,48,-33,53v45,7,16,84,68,87v0,3,2,8,-3,7v-60,2,-18,-91,-86,-90r-29,0r0,87r-9,0r0,-179","w":162},"\ue270":{"d":"16,-132v-1,-58,74,-45,131,-46r0,178r-9,0r0,-87v-41,0,-84,-6,-89,36v-4,29,-11,56,-45,54v-3,-13,19,-4,23,-16v18,-20,9,-62,36,-75v-29,-3,-47,-14,-47,-44xm24,-132v0,50,66,34,114,37r0,-76v-50,1,-115,-11,-114,39","w":170},"\ue271":{"d":"26,-179r9,0r0,84v36,2,65,-1,70,-35v4,-26,10,-52,44,-50v-3,11,-33,9,-31,36v-6,22,-9,48,-33,53v45,7,16,84,68,87v0,3,2,8,-3,7v-60,2,-18,-91,-86,-90r-29,0r0,87r-9,0r0,-179xm70,-208r29,-51r12,6r-36,48","w":162},"\ue374":{"d":"80,-269r-37,-21r7,-8r34,25xm19,-262r104,0r0,6r-96,0r0,70r82,0r0,7r-82,0r0,73r96,0r0,7r-104,0r0,-163","w":128},"\u0439":{"d":"53,-239v3,16,17,28,34,28v20,0,30,-9,35,-28r8,0v-1,40,-68,49,-81,13v-2,-4,-3,-9,-4,-13r8,0xm149,0r0,-164r-121,164r-9,0r0,-178r9,0r0,165r122,-165r8,0r0,178r-9,0","w":177},"\u040e":{"d":"166,-251r-91,227v-8,18,-23,29,-51,27r0,-9v41,5,44,-29,57,-56r-76,-189r10,0r71,178r70,-178r10,0xm52,-295v4,35,65,38,70,0r8,0v-1,40,-68,48,-82,13v-2,-4,-3,-9,-4,-13r8,0","w":169,"k":{"\u044f":18,"\u0447":18,"\u0431":14,"\u0414":29,"\u0445":14,"\u0430":22,"\u0424":7,"\u0410":25,",":25,".":25,"\u2026":25,"\u041e":4,"\u0421":4,"\u0404":4,"\u0435":22,"\u043e":22,"\u0441":22,"\u0451":22,"\u0444":22,"\u0454":22,"\u043a":25,"\u043f":25,"\u0440":25,"\u0456":25,"\u0457":25,"\u0432":25,"\u0433":25,"\u0438":25,"\u043c":25,"\u043d":25,"\u0446":25,"\u0448":25,"\u0449":25,"\u044c":25,"\u044e":25,"\u0453":25,"\u045a":25,"\u045f":25,"\u0491":25,"\u045c":25,"\u0439":25,"\u0443":14,"\u045e":14,"\u0434":32,"\u043b":32,"\u0459":32,"\u0437":14,"\u044d":14,"\u04d9":14,"\u044a":7,"\u0442":7}},"\u00a0":{"w":79,"k":{"\u0427":11}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2002, 2005 Parachute¨, www.parachute.gr.  All rights reserved.
 * 
 * Trademark:
 * Din Text is a trademark of Parachute¨
 * 
 * Description:
 * Based on DIN 1451 the German Industrial standard by the Deutsches Institut
 * Normung - (1936/1986)
 * 
 * Manufacturer:
 * Parachute¨ Worldwide
 * 
 * Designer:
 * Panos Vassiliou
 * 
 * Vendor URL:
 * http://www.parachute.gr
 * 
 * License information:
 * http://www.parachute.gr/support.aspx?Licensing=1
 */
Cufon.registerFont({"w":654,"face":{"font-family":"PF DinText Pro Thin","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"2","bbox":"-118 -326.273 632.729 92.5295","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB05"},"glyphs":{" ":{"w":79,"k":{"\u0427":11}},"\ue1f8":{"d":"126,27v-1,29,-18,50,-51,46v1,-7,-4,-17,8,-14v18,-1,28,-12,28,-33r0,-191r-62,0r0,165r-17,0r0,-165r-21,0r0,-14r21,0v-3,-47,3,-85,49,-83v22,1,37,7,48,19r-11,11v-16,-21,-73,-23,-69,17r0,36r77,0r0,206","w":154},"\ue1f9":{"d":"196,-230v-16,-21,-74,-23,-70,17r0,34r78,0r0,206v-1,29,-18,50,-51,46v1,-7,-4,-17,8,-14v18,-1,27,-12,27,-33r0,-191r-62,0r0,165r-15,0r0,-165r-62,0r0,165r-17,0r0,-165r-21,0r0,-14r21,0v-3,-44,6,-74,49,-74v17,0,28,4,38,10v16,-25,73,-20,88,2xm112,-229v-21,-15,-68,-14,-63,23r0,27r62,0","w":233},"\ufb00":{"d":"32,-179v-4,-46,8,-79,49,-78v16,0,27,5,37,10v9,-14,27,-18,50,-16r0,15v-45,-8,-44,27,-42,69r42,0r0,14r-42,0r0,165r-16,0r0,-165r-62,0r0,165r-16,0r0,-165r-21,0r0,-14r21,0xm112,-232v-19,-16,-69,-14,-64,22r0,31r62,0v1,-18,-2,-37,2,-53","w":170},"\ufb01":{"d":"118,-232v-16,-21,-73,-23,-69,17r0,36r77,0r0,179r-15,0r0,-165r-62,0r0,165r-17,0r0,-165r-21,0r0,-14r21,0v-3,-47,3,-85,49,-83v22,1,37,7,48,19","w":154},"\ufb02":{"d":"157,0v-29,0,-46,-6,-46,-37r0,-203v-23,-11,-63,-11,-63,25r0,36r43,0r0,14r-43,0r0,165r-16,0r0,-165r-21,0r0,-14r21,0v-4,-47,4,-85,49,-83v17,1,29,5,45,11r0,212v1,18,10,26,31,25r0,14","w":163},"\ufb03":{"d":"196,-230v-16,-21,-74,-23,-70,17r0,34r78,0r0,179r-16,0r0,-165r-62,0r0,165r-15,0r0,-165r-62,0r0,165r-17,0r0,-165r-21,0r0,-14r21,0v-3,-44,6,-74,49,-74v17,0,28,4,38,10v16,-25,73,-20,88,2xm112,-229v-19,-16,-68,-14,-63,23r0,27r62,0","w":233},"\ufb04":{"d":"32,-179v-3,-44,6,-74,49,-74v16,0,27,4,37,9v15,-25,59,-19,86,-7r0,212v1,18,10,26,31,25v-1,5,3,16,-5,14v-27,-1,-42,-8,-41,-37r0,-203v-24,-11,-63,-11,-63,25r0,36r42,0r0,14r-42,0r0,165r-15,0r0,-165r-62,0r0,165r-17,0r0,-165r-21,0r0,-14r21,0xm111,-216v4,-21,-14,-21,-31,-22v-32,-2,-32,27,-31,59r62,0r0,-37","w":241},"\ufb05":{"d":"164,0v-32,3,-54,-8,-53,-38r0,-128r-62,0r0,166r-17,0r0,-166r-21,0r0,-13r21,0v-4,-50,4,-90,58,-82r0,15v-43,-7,-43,27,-41,67r62,0r0,-47r15,0r0,47r33,0r0,13r-33,0r0,122v-1,24,11,32,38,30r0,14","w":169},"\"":{"d":"55,-185r0,-66r13,0r0,66r-13,0xm22,-185r0,-66r12,0r0,66r-12,0","w":87},"#":{"d":"40,-92r9,-68r-35,0r0,-11r37,0r10,-79r12,0r-10,79r52,0r11,-79r12,0r-11,79r37,0r0,11r-38,0r-10,68r37,0r0,11r-38,0r-11,81r-12,0r11,-81r-53,0r-11,81r-12,0r11,-81r-35,0r0,-11r37,0xm52,-92r52,0r9,-68r-52,0","w":168},"$":{"d":"144,-64v1,-36,-28,-45,-55,-53r0,104v31,-3,55,-17,55,-51xm78,-236v-55,-4,-67,83,-17,96v6,2,11,3,17,4r0,-100xm161,-64v-2,43,-30,64,-72,67r0,40r-11,0r0,-40v-28,-3,-53,-11,-70,-26v3,-5,5,-9,9,-13v17,11,35,21,61,23r0,-106v-36,-8,-67,-22,-67,-65v0,-41,26,-64,67,-67r0,-27r11,0r0,27v24,1,44,7,59,18r-8,14v-14,-9,-31,-16,-51,-17r0,103v39,8,73,21,72,69","w":168},"&":{"d":"27,-58v1,-42,26,-62,55,-83v-15,-21,-29,-33,-31,-61v-4,-56,79,-66,111,-33r-10,13v-27,-34,-112,-9,-78,38r92,127v8,-13,12,-33,15,-50r16,2v-3,24,-9,42,-20,61r34,44r-20,0r-25,-32v-35,50,-139,48,-139,-26xm43,-60v-3,64,91,56,113,16r-65,-85v-23,15,-46,34,-48,69","w":225},"'":{"d":"28,-185r0,-66r12,0r0,66r-12,0","w":68},"(":{"d":"82,43v-58,-54,-79,-193,-24,-270v8,-11,15,-22,23,-32r8,4v-27,37,-46,87,-47,145v0,59,22,110,47,147","w":94},")":{"d":"17,-258v60,53,78,196,22,270v-8,11,-14,23,-22,32r-7,-6v25,-37,48,-88,47,-147v-1,-57,-21,-108,-47,-145","w":94},"*":{"d":"54,-195r-43,-13r4,-15r43,17r-3,-45r15,0r-3,45r43,-17r5,15r-44,13r29,34r-13,10r-24,-39r-25,39r-12,-10","w":123},"+":{"d":"90,-94r0,70r-13,0r0,-70r-68,0r0,-14r68,0r0,-69r13,0r0,69r68,0r0,14r-68,0","w":168},",":{"d":"16,36r10,-36r-6,0r0,-24r22,0v2,27,-8,41,-15,60r-11,0","w":62},"-":{"d":"19,-86r0,-15r95,0r0,15r-95,0","w":133,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},".":{"d":"20,0r0,-23r21,0r0,23r-21,0","w":60},"\/":{"d":"14,9r-14,0r132,-267r14,0","w":146},"0":{"d":"84,-252v41,0,66,24,66,66r0,122v0,42,-27,66,-66,66v-40,0,-66,-24,-66,-66r0,-122v1,-42,25,-66,66,-66xm84,-13v73,0,48,-102,51,-171v1,-31,-20,-54,-51,-54v-73,0,-48,102,-51,171v-1,31,20,54,51,54","w":168},"1":{"d":"99,0r-16,0r0,-233r-37,24r0,-17v17,-9,25,-27,53,-25r0,251","w":168,"k":{"\ue374":22,"\ue071":29,"\ue370":29,"\ue36c":22,"\ue36b":22,"\ue363":25,"\ue360":18,"\u00ba":29,"\u00aa":29,"\ue326":32,"\ue31e":25,"\ue07e":25,"\ue07d":29,"\ue070":29}},"2":{"d":"85,-252v61,-5,82,64,49,108r-98,129r114,0r0,15r-134,0r0,-16v38,-52,86,-95,115,-154v17,-35,-9,-67,-46,-67v-25,1,-44,18,-50,39r-16,-3v8,-31,30,-49,66,-51","w":168},"3":{"d":"132,-186v4,-60,-87,-68,-99,-19r-15,-2v6,-26,33,-44,63,-46v74,-6,90,102,30,122v26,8,39,29,42,60v7,77,-117,102,-137,29r16,-2v15,51,109,36,104,-25v-3,-39,-23,-58,-66,-54r0,-15v38,2,59,-13,62,-48","w":168},"4":{"d":"139,-40r0,40r-16,0r0,-40r-113,0r0,-15r90,-196r17,0r-90,196r96,0r0,-78r16,0r0,78r22,0r0,15r-22,0","w":168},"5":{"d":"151,-98v0,60,-12,100,-69,100v-34,0,-56,-15,-63,-43r14,-4v7,21,23,34,50,33v46,0,53,-36,53,-84v0,-60,-75,-71,-98,-31r-15,0r0,-124r123,0r0,16r-108,0r0,89v38,-38,113,-20,113,48","w":168},"6":{"d":"55,-130v43,-26,101,2,98,57v-2,47,-24,74,-69,75v-56,2,-80,-64,-56,-112r71,-141r17,0xm86,-12v34,-1,52,-25,52,-58v0,-35,-19,-57,-52,-57v-33,0,-52,22,-52,57v0,34,19,58,52,58","w":168},"7":{"d":"61,0r-18,0r92,-235r-102,0r0,39r-15,0r0,-55r134,0r0,16","w":168},"8":{"d":"85,-252v72,0,90,103,30,123v26,8,42,29,42,61v0,45,-29,67,-72,70v-78,6,-94,-110,-30,-131v-59,-20,-40,-123,30,-123xm142,-68v0,-35,-23,-55,-57,-55v-33,0,-56,21,-56,55v0,34,23,56,56,56v34,0,57,-22,57,-56xm137,-186v-1,-33,-20,-52,-52,-52v-31,0,-50,20,-51,52v0,33,21,50,51,50v31,0,52,-17,52,-50","w":168},"9":{"d":"117,-119v-42,20,-101,-3,-98,-59v2,-48,25,-74,70,-75v54,-1,81,63,56,112r-72,141r-17,0xm86,-239v-34,1,-52,25,-52,59v0,34,20,57,52,57v31,0,52,-24,52,-57v0,-34,-19,-60,-52,-59","w":168},":":{"d":"21,0r0,-23r21,0r0,23r-21,0xm21,-113r0,-23r21,0r0,23r-21,0","w":62},";":{"d":"17,36r9,-36r-6,0r0,-24r22,0v2,27,-7,43,-15,60r-10,0xm21,-113r0,-23r21,0r0,23r-21,0","w":62},"<":{"d":"156,-29r-145,-65r0,-13r144,-66r0,15r-128,57r129,57r0,15","w":168},"=":{"d":"9,-122r0,-14r149,0r0,14r-149,0xm9,-59r0,-13r149,0r0,13r-149,0","w":168},">":{"d":"11,-44r128,-57r-127,-57r0,-15r144,66r0,13r-145,65r0,-15","w":168},"?":{"d":"81,-237v-31,0,-46,23,-53,48r-16,-3v8,-35,31,-57,71,-60v69,-5,82,83,38,118v-16,19,-36,36,-31,76r-16,0v-10,-71,58,-75,58,-130v0,-30,-18,-49,-51,-49xm72,0r0,-22r21,0r0,22r-21,0","w":160},"@":{"d":"87,-174v27,-23,102,-25,98,25v5,32,-15,86,21,86v37,0,47,-36,47,-77v0,-65,-43,-102,-107,-102v-74,0,-117,45,-120,121v-5,105,105,148,195,109r4,12v-23,7,-45,15,-75,14v-86,-2,-137,-49,-137,-135v0,-81,49,-133,131,-133v74,0,123,40,123,114v0,52,-19,91,-69,88v-11,-1,-20,-9,-24,-18v-18,30,-94,26,-94,-19v0,-41,48,-40,92,-38v2,-33,-2,-53,-38,-50v-15,1,-30,4,-40,12xm129,-62v34,0,48,-18,43,-55v-34,1,-79,-8,-79,27v0,20,14,28,36,28","w":278},"A":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0","w":210,"k":{"'":7}},"B":{"d":"149,-130v28,9,48,28,48,63v0,41,-26,67,-68,67r-101,0r0,-251v76,0,164,-11,163,64v-1,30,-17,50,-42,57xm174,-186v0,-58,-70,-51,-129,-50r0,100v59,1,129,8,129,-50xm179,-68v0,-63,-72,-53,-134,-53r0,106v62,1,134,9,134,-53","w":210},"C":{"d":"36,-88v0,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-70,74,-70,149","w":190},"D":{"d":"199,-130v0,81,-20,130,-95,130r-76,0r0,-251r81,0v69,0,90,46,90,121xm107,-15v71,1,78,-61,75,-135v-2,-53,-21,-85,-75,-85r-62,0r0,220r62,0","w":218,"k":{"J":14}},"E":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0","w":190},"F":{"d":"46,-235r0,101r115,0r0,15r-115,0r0,119r-18,0r0,-251r152,0r0,16r-134,0","w":182,"k":{"\ue116":4,"\ue110":4,"\ue0fe":14,"i":2,"a":7,"A":14,",":36,"\u00c3":14,"\u0129":-13,"\u00e3":7,"\ue17d":4,"\ue179":4,"\ue175":14,"\ue172":4,"\ue167":4,"\ue166":4,"\ue165":4,"\ue13c":14,"\ue13b":14,"\ue13a":14,"\ue138":4,"\ue122":14,"\ue121":14,"\ue120":14,"\ue11f":14,"\ue11e":14,"\ue11d":14,"\ue11c":14,"\ue11b":4,"\ue118":4,"\u012d":-13,"\u012b":-16,"\u01fd":7,"\u01fc":14,"\u0159":-5,"\u0157":2,"\u0155":2,"\u014b":2,"\u0149":-13,"\u0148":2,"\u0146":2,"\u0144":2,"\u0134":36,"\u0133":2,"\u012f":2,"\u0105":7,"\u0104":14,"\u0103":7,"\u0102":14,"\u0101":7,"\u0100":14,"\u00e5":7,"\u00ed":2,"\u00ec":-5,"\u00e1":7,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00e6":7,"\u00c6":14,"\u2026":36,"\u00ef":-16,"\u00ee":-13,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00c4":14,"r":2,"p":2,"n":2,"m":2,"J":36,".":36}},"G":{"d":"35,-162v-2,75,-5,153,70,150v53,-2,75,-40,70,-100r-57,0r0,-15r74,0v6,77,-18,129,-87,130v-85,1,-87,-77,-87,-166v0,-94,131,-120,164,-43r-15,8v-9,-22,-32,-39,-62,-39v-46,1,-69,29,-70,75","w":210},"H":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0","w":225},"I":{"d":"30,0r0,-251r16,0r0,251r-16,0","w":76},"J":{"d":"23,-29v33,32,97,11,97,-48r0,-174r16,0r0,180v7,70,-82,93,-125,53","w":161},"K":{"d":"190,0r-84,-141r-61,75r0,66r-17,0r0,-251r17,0r0,160r131,-160r19,0r-78,96r92,155r-19,0","w":218,"k":{"v":7,"w":7,"y":7,"\u0175":7,"\u1e81":7,"\u1e83":7,"\u1e85":7,"\u1ef3":7,"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":4,"\ue114":4,"\ue171":4,"\ue17a":4,"\ue17b":4,"\ue17c":4,"\ue116":11,"\ue11b":11,"\ue138":11,"\ue172":11,"\ue17d":11}},"L":{"d":"28,0r0,-251r17,0r0,236r135,0r0,15r-152,0","w":190,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"M":{"d":"225,-213r-83,174r-14,0r-83,-174r-1,213r-16,0r0,-251r17,0r90,191r91,-191r16,0r0,251r-17,0r0,-213","w":266},"N":{"d":"193,0r-147,-222r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,251r-17,0","w":238},"O":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76","w":205,"k":{"J":14}},"P":{"d":"29,-251v81,-1,170,-10,167,73v-2,43,-29,71,-74,71r-76,0r0,107r-17,0r0,-251xm46,-123v63,1,132,8,132,-56v0,-64,-69,-57,-132,-56r0,112","w":199,"k":{"\ue0fe":18,"A":14,",":40,"\u00c3":14,"\ue175":18,"\ue13c":18,"\ue13b":18,"\ue13a":18,"\ue122":18,"\ue121":18,"\ue120":18,"\ue11f":18,"\ue11e":18,"\ue11d":18,"\ue11c":18,"\u01fc":14,"\u0104":14,"\u0102":14,"\u0100":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00c6":14,"\u2026":40,"\u00c4":14,".":40}},"Q":{"d":"17,-89v-4,-87,1,-163,86,-163v84,0,86,76,86,163v0,21,-5,39,-13,52r36,28r-9,12r-35,-28v-14,16,-36,28,-65,28v-57,0,-84,-36,-86,-92xm171,-90v3,-73,4,-146,-68,-146v-73,0,-70,73,-70,148v0,66,80,100,121,52r-37,-30r10,-11r35,28v6,-12,9,-26,9,-41","w":210,"k":{"J":14}},"R":{"d":"197,-186v0,39,-27,64,-61,69r58,117r-20,0r-56,-116r-72,0r0,116r-17,0r0,-251v77,0,168,-13,168,65xm46,-131v62,0,133,10,133,-55v0,-62,-73,-49,-133,-50r0,105","w":210},"S":{"d":"162,-219v-38,-26,-127,-28,-124,34v4,80,143,16,143,119v0,82,-126,82,-173,41r10,-14v36,33,146,42,146,-27v0,-85,-139,-23,-143,-119v-4,-75,100,-82,150,-49","w":190},"T":{"d":"95,-236r0,236r-17,0r0,-236r-75,0r0,-15r167,0r0,15r-75,0","w":172,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"U":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237","w":218},"V":{"d":"87,0r-82,-251r17,0r73,225r72,-225r18,0r-83,251r-15,0","w":190,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"W":{"d":"223,0r-16,0r-62,-221r-61,221r-16,0r-61,-251r17,0r53,223r62,-223r14,0r62,223r52,-223r17,0","w":291,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"X":{"d":"157,0r-67,-114r-67,114r-19,0r77,-129r-72,-122r19,0r62,108r62,-108r19,0r-72,122r77,129r-19,0","w":180},"Y":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104","w":171,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"Z":{"d":"12,0r0,-15r133,-221r-127,0r0,-15r146,0r0,15r-133,221r133,0r0,15r-152,0","w":175},"[":{"d":"27,39r0,-290r51,0r0,13r-35,0r0,265r35,0r0,12r-51,0","w":84},"\\":{"d":"-1,-261r13,0r90,276r-13,0","w":105},"]":{"d":"13,39r0,-12r35,0r0,-265r-35,0r0,-13r50,0r0,290r-50,0","w":84},"^":{"d":"16,-120r62,-129r13,0r61,129r-15,0r-53,-114r-53,114r-15,0","w":168},"_":{"d":"0,39r0,-14r177,0r0,14r-177,0","w":177},"`":{"d":"110,-203r-36,-53r17,-6r29,55","w":173},"a":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37","w":170},"b":{"d":"86,3v-27,0,-42,-11,-52,-29v-3,6,0,18,-1,26r-16,0r0,-260r16,0r1,110v13,-15,25,-31,54,-30v50,1,67,39,67,89v0,53,-16,94,-69,94xm85,-12v44,1,52,-35,53,-77v0,-42,-12,-77,-53,-77v-40,0,-52,35,-52,78v1,40,10,76,52,76","w":167},"c":{"d":"27,-89v-8,66,64,97,105,61r10,10v-13,11,-29,21,-52,21v-53,-2,-75,-36,-79,-92v-5,-78,76,-116,131,-72r-10,12v-40,-38,-115,-6,-105,60","w":149},"d":{"d":"81,-180v28,-1,41,16,54,28r0,-108r15,0r0,260r-15,0v-1,-9,2,-21,-1,-28v-10,20,-28,31,-55,31v-51,0,-67,-42,-67,-92v0,-52,18,-90,69,-91xm82,-12v40,0,53,-36,53,-76v0,-42,-12,-78,-53,-78v-41,0,-53,35,-53,77v-1,42,12,77,53,77","w":167},"e":{"d":"87,-180v53,0,72,38,71,93r-127,0v-11,66,61,96,104,60r9,12v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm142,-100v8,-60,-60,-86,-95,-49v-11,11,-15,28,-16,49r111,0","w":170,"k":{"\u201d":7,"\u2019":7}},"f":{"d":"90,-246v-43,-7,-43,27,-41,67r41,0r0,13r-41,0r0,166r-17,0r0,-166r-21,0r0,-13r21,0v-4,-50,4,-90,58,-82r0,15","w":92,"k":{"\u2019":-7,"\u201d":-7}},"g":{"d":"84,-180v28,-1,43,14,56,30r0,-29r15,0v-6,108,38,282,-100,249v-8,-2,-16,-7,-23,-13r10,-12v33,30,102,11,98,-42v-1,-11,2,-26,-1,-35v-11,20,-26,34,-55,34v-51,-1,-67,-40,-67,-90v0,-49,14,-92,67,-92xm87,-166v-42,0,-54,36,-54,77v0,40,12,76,54,76v42,-1,53,-36,53,-77v0,-41,-12,-76,-53,-76","w":179},"h":{"d":"39,-148v24,-47,121,-43,121,28r0,120r-16,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-260r16,0r0,112","w":182},"i":{"d":"27,-233r0,-18r18,0r0,18r-18,0xm28,0r0,-179r16,0r0,179r-16,0","w":71},"j":{"d":"31,-251r18,0r0,18r-18,0r0,-18xm49,28v-1,29,-20,48,-52,46v1,-6,-3,-17,6,-14v19,0,30,-13,29,-34r0,-204r17,0r0,206","w":78},"k":{"d":"152,0r-66,-102r-45,51r0,51r-15,0r0,-260r15,0r0,188r95,-107r19,0r-59,66r74,113r-18,0","w":172,"k":{"\u00f5":4,"\u01a1":4,"\u01ff":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0123":4,"\u0121":4,"\u011f":4,"\u011d":4,"\u011b":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u0111":4,"\u010f":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f3":4,"\u00f2":4,"\u00f8":4,"\u00f0":4,"\u00f6":4,"\u00f4":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"l":{"d":"72,0v-29,0,-46,-6,-46,-37r0,-223r15,0r0,221v1,18,10,26,31,25r0,14","w":78},"m":{"d":"41,-149v17,-41,104,-41,115,5v11,-22,33,-36,64,-36v82,-3,56,104,60,180r-15,0v-5,-66,23,-165,-49,-165v-74,0,-54,94,-56,165r-15,0v-5,-67,23,-165,-51,-165v-73,0,-49,96,-53,165r-16,0r0,-179r16,0r0,30","w":307},"n":{"d":"37,-148v24,-46,121,-43,121,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-53,94,-56,165r-15,0r0,-178r15,0r0,30","w":180,"k":{"\u201d":7,"\u2019":7}},"o":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176,"k":{"v":7,"\u1ef3":7,"\u1e85":7,"\u1e83":7,"\u1e81":7,"\u0175":7,"y":7,"w":7}},"p":{"d":"90,2v-29,0,-42,-14,-53,-32r0,102r-16,0r0,-251r16,0r0,31v12,-19,28,-33,56,-33v51,0,65,40,66,92v0,51,-18,90,-69,91xm91,-166v-42,0,-53,36,-54,76v0,42,11,76,52,77v43,0,54,-34,54,-76v0,-40,-8,-77,-52,-77","w":177},"q":{"d":"83,2v-50,-1,-65,-39,-65,-89v0,-54,16,-93,68,-94v27,0,43,12,53,33r0,-31r16,0r0,251r-16,0r0,-103v-11,18,-28,32,-56,33xm87,-167v-42,0,-54,36,-54,78v0,42,12,76,54,76v41,0,52,-35,52,-77v-1,-40,-11,-77,-52,-77","w":178},"r":{"d":"41,-148v13,-26,46,-40,83,-28r-7,16v-38,-17,-76,8,-76,51r0,109r-15,0r0,-179r15,0r0,31","w":122,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11}},"s":{"d":"132,-152v-29,-25,-118,-17,-94,36v28,29,109,4,109,68v0,63,-101,61,-139,29r9,-13v25,26,114,35,114,-17v0,-59,-113,-15,-113,-80v0,-58,86,-62,123,-35","w":160},"t":{"d":"49,-43v-1,23,12,32,38,29r0,14v-36,3,-54,-8,-54,-42r0,-123r-24,0r0,-14r24,0r0,-47r16,0r0,47r33,0r0,14r-33,0r0,122","w":95},"u":{"d":"90,-13v75,0,52,-96,55,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,38,-121,-29r0,-121r16,0v5,67,-23,166,51,166","w":186},"v":{"d":"151,-178r-65,178r-15,0r-66,-178r17,0r57,156r55,-156r17,0","w":156,"k":{"e":7}},"w":{"d":"194,0r-16,0r-52,-154r-52,154r-16,0r-55,-178r17,0r47,155r51,-155r16,0r52,156r47,-156r17,0","w":253,"k":{"e":7}},"x":{"d":"130,0r-51,-80r-50,80r-19,0r60,-91r-57,-87r19,0r47,76r47,-76r19,0r-56,87r59,91r-18,0","w":158},"y":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0","w":150,"k":{"e":7}},"z":{"d":"13,0r0,-13r108,-152r-103,0r0,-13r121,0r0,13r-108,151r108,0r0,14r-126,0","w":151},"{":{"d":"26,-107v53,19,-13,139,56,136r0,10v-84,19,-14,-122,-72,-141r0,-9v61,-8,-20,-148,72,-140r0,11v-66,-11,-4,112,-56,133","w":84},"|":{"d":"26,58r0,-316r12,0r0,316r-12,0","w":62},"}":{"d":"81,-102v-60,9,21,149,-71,141r0,-10v65,9,4,-114,56,-136v-31,-13,-23,-66,-24,-111v-1,-17,-11,-25,-32,-22r0,-10v83,-18,13,118,71,139r0,9","w":84},"~":{"d":"151,-105v-10,14,-18,23,-38,24v-29,-6,-65,-33,-85,-2r-12,-8v24,-40,64,-15,98,-5v12,-1,18,-9,25,-18","w":168},"\u00c4":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm127,-292r20,0r0,19r-20,0r0,-19xm63,-292r19,0r0,19r-19,0r0,-19","w":210,"k":{"'":7}},"\u00c7":{"d":"105,-13v35,1,52,-18,63,-42r16,7v-12,28,-39,50,-77,50r-4,13v19,1,32,9,33,28v1,29,-36,30,-61,21r3,-9v16,7,44,9,45,-12v0,-17,-22,-15,-33,-21r6,-20v-77,-3,-77,-80,-77,-165v0,-96,132,-120,164,-42r-16,7v-9,-23,-32,-39,-62,-39v-73,0,-73,74,-70,149v2,44,24,74,70,75","w":190},"\u00c9":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm83,-270r49,-39r12,13r-54,34","w":190},"\u00d6":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm125,-273r0,-19r19,0r0,19r-19,0xm60,-273r0,-19r20,0r0,19r-20,0","w":205,"k":{"J":14}},"\u00dc":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm132,-273r0,-19r20,0r0,19r-20,0xm68,-273r0,-19r19,0r0,19r-19,0","w":218},"\u0385":{"d":"105,-218r0,-19r20,0r0,19r-20,0xm31,-218r0,-19r19,0r0,19r-19,0xm57,-207r29,-55r17,6r-36,53","w":161},"\u00e0":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm56,-255r17,-7r29,55r-10,4","w":170},"\u00e2":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm87,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":170},"\u00e4":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm113,-238r20,0r0,19r-20,0r0,-19xm45,-238r20,0r0,19r-20,0r0,-19","w":170},"\u0384":{"d":"74,-207r28,-55r18,6r-36,53","w":173},"\u00a8":{"d":"112,-219r0,-19r20,0r0,19r-20,0xm44,-219r0,-19r19,0r0,19r-19,0","w":173},"\u00e7":{"d":"26,-89v-9,67,65,97,106,61v4,4,6,6,10,11v-12,12,-30,19,-53,19r-4,13v19,1,32,9,33,28v1,29,-36,30,-61,21r3,-9v16,7,45,9,45,-12v0,-17,-22,-15,-33,-21r7,-21v-46,-6,-68,-37,-68,-90v0,-79,75,-116,131,-72r-10,12v-40,-38,-116,-6,-106,60","w":149},"\u00e9":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm75,-207r28,-55r18,6r-36,53","w":170,"k":{"\u201d":7,"\u2019":7}},"\u00e8":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm93,-203r-36,-53r17,-6r29,55","w":170,"k":{"\u201d":7,"\u2019":7}},"\u00ea":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm87,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":170,"k":{"\u201d":7,"\u2019":7}},"\u00eb":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm113,-219r0,-19r20,0r0,19r-20,0xm45,-219r0,-19r20,0r0,19r-20,0","w":170,"k":{"\u201d":7,"\u2019":7}},"\u00a3":{"d":"58,-109v-1,39,-8,69,-27,94r125,0r0,15r-144,0v0,-26,18,-35,23,-55v4,-15,8,-34,8,-54r-31,0r0,-12r28,0v-3,-26,-15,-43,-17,-70v-5,-70,99,-79,127,-30r-13,9v-24,-44,-117,-28,-96,36v5,18,13,35,16,55r54,0r0,12r-53,0","w":168},"\u2122":{"d":"199,-149r52,-101r12,0r0,138r-12,0r-1,-110r-46,90r-10,0r-46,-90r0,110r-13,0r0,-138r13,0xm70,-238r0,126r-12,0r0,-126r-44,0r0,-13r99,0r0,13r-43,0","w":290},"\u00ee":{"d":"38,0r0,-179r16,0r0,179r-16,0xm46,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":91},"\u00ef":{"d":"29,0r0,-179r16,0r0,179r-16,0xm61,-219r0,-19r20,0r0,19r-20,0xm-7,-219r0,-19r20,0r0,19r-20,0","w":73},"\u2022":{"d":"32,-95v0,-21,13,-34,33,-34v20,0,33,14,33,34v0,20,-13,33,-33,33v-19,0,-33,-12,-33,-33","w":127},"\u00f4":{"d":"88,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u00f6":{"d":"112,-219r0,-19r19,0r0,19r-19,0xm44,-219r0,-19r19,0r0,19r-19,0xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u00ad":{"d":"19,-86r0,-15r95,0r0,15r-95,0","w":133,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u00f9":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm97,-203r-36,-53r17,-6r29,55","w":186},"\u00fb":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm93,-235r-46,35r-8,-8r47,-44r14,0r45,44r-7,7","w":186},"\u00fc":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm114,-219r0,-19r20,0r0,19r-20,0xm46,-219r0,-19r20,0r0,19r-20,0","w":186},"\u2020":{"d":"89,-148r0,218r-17,0r0,-218r-64,0r0,-15r64,0r0,-88r17,0r0,88r64,0r0,15r-64,0","w":160},"\u0393":{"d":"46,-235r0,235r-18,0r0,-251r152,0r0,16r-134,0","w":182,"k":{"\ue196":40,"\ue18a":40,"\ue183":54,"\u03af":22,"\u03ae":43,"\u03ad":43,"\u03ac":47,"\u0394":40,",":50,"\u1ff7":47,"\u1ff6":47,"\u1fe7":54,"\u1fe6":25,"\u1fd7":40,"\u1fd6":-29,"\u1fc7":22,"\u1fc6":22,"\u1fb7":47,"\u1fb6":47,"\u1fa7":47,"\u1fa6":47,"\u1f97":43,"\u1f96":43,"\u1f87":47,"\u1f86":47,"\u1f67":47,"\u1f66":47,"\u1f57":54,"\u1f56":54,"\u1f37":40,"\u1f36":40,"\u1f27":43,"\u1f26":43,"\u1f07":47,"\u1f06":47,"\u1fd3":40,"\u1fd2":40,"\u1fd1":-14,"\u1fd0":-18,"\u1f35":40,"\u1f34":40,"\u1f33":40,"\u1f32":40,"\u1f31":40,"\u1f30":40,"\ue1a3":40,"\ue1a1":40,"\ue1a0":40,"\ue19f":40,"\ue19b":54,"\ue19a":40,"\ue193":43,"\ue191":40,"\ue18d":54,"\ue18c":43,"\ue187":43,"\ue186":54,"\ue185":43,"\ue184":43,"\ue264":40,"\u1fb9":40,"\u1fb8":40,"\u1ff4":47,"\u1ff3":47,"\u1ff2":47,"\u1fe3":54,"\u1fe2":54,"\u1fe1":36,"\u1fe0":54,"\u1fc4":43,"\u1fc3":43,"\u1fc2":36,"\u1fbc":40,"\u1fb4":47,"\u1fb3":47,"\u1fb2":32,"\u1fb1":36,"\u1fb0":47,"\u1fa5":47,"\u1fa4":47,"\u1fa3":47,"\u1fa2":47,"\u1fa1":47,"\u1fa0":47,"\u1f95":43,"\u1f94":43,"\u1f93":43,"\u1f92":43,"\u1f91":43,"\u1f90":43,"\u1f85":47,"\u1f84":47,"\u1f83":47,"\u1f82":47,"\u1f81":47,"\u1f80":47,"\u1f7d":47,"\u1f7c":47,"\u1f7b":54,"\u1f7a":40,"\u1f79":47,"\u1f78":40,"\u1f77":22,"\u1f76":-4,"\u1f75":43,"\u1f74":43,"\u1f73":43,"\u1f72":36,"\u1f71":47,"\u1f70":40,"\u1f65":47,"\u1f64":47,"\u1f63":47,"\u1f62":47,"\u1f61":47,"\u1f60":47,"\u1f55":54,"\u1f54":54,"\u1f53":54,"\u1f52":54,"\u1f51":54,"\u1f50":54,"\u1f45":47,"\u1f44":47,"\u1f43":47,"\u1f42":47,"\u1f41":47,"\u1f40":47,"\u1f25":43,"\u1f24":43,"\u1f23":43,"\u1f22":43,"\u1f21":43,"\u1f20":43,"\u1f15":43,"\u1f14":43,"\u1f13":43,"\u1f12":43,"\u1f11":43,"\u1f10":43,"\u1f05":47,"\u1f04":47,"\u1f03":47,"\u1f02":47,"\u1f01":47,"\u1f00":47,"\u03b0":22,"\u0390":40,"\u03cb":36,"\u03ca":-22,"\u03c5":54,"\u03c7":54,"\u03c9":47,"\u03c3":47,"\u03c1":54,"\u03ce":47,"\u03bf":47,"\u03bd":47,"\u00b5":43,"\u03bb":14,"\u03ba":43,"\u03b9":40,"\u03b7":43,"\u03c6":47,"\u03b5":43,"\u03b4":11,"\u03b1":47,"\u03cd":54,"\u03cc":47,"\u2026":50,"\u039f":4,"\u03a9":4,"\u0391":40,"\u039b":40,"\u0398":4,".":50}},"\u0394":{"d":"96,-251r18,0r91,251r-200,0xm105,-231r-77,216r154,0","w":210,"k":{"\u03a4":14}},"\u2206":{"d":"96,-251r18,0r91,251r-200,0xm105,-231r-77,216r154,0","w":210,"k":{"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u0398":{"d":"15,-89v-5,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-84,-37,-87,-92xm170,-90v2,-73,4,-146,-68,-146v-74,0,-74,73,-70,148v2,44,24,75,70,75v45,0,67,-30,68,-77xm49,-135r106,0r0,14r-106,0r0,-14","w":203},"\u039b":{"d":"187,0r-83,-229r-81,229r-18,0r91,-251r18,0r91,251r-18,0","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u039e":{"d":"21,-235r0,-16r156,0r0,16r-156,0xm42,-120r0,-14r114,0r0,14r-114,0xm21,0r0,-15r156,0r0,15r-156,0","w":199},"\u03a0":{"d":"180,0r0,-236r-135,0r0,236r-17,0r0,-251r169,0r0,251r-17,0","w":225},"\u00df":{"d":"125,-149v27,8,40,34,40,67v0,52,-22,85,-77,82r0,-13v45,3,60,-28,60,-69v0,-35,-16,-60,-54,-59v1,-5,-3,-16,5,-14v25,-1,39,-19,40,-44v0,-30,-18,-48,-48,-48v-35,0,-50,25,-50,57r0,190r-15,0r0,-192v0,-40,24,-68,67,-68v65,0,82,89,32,111","w":183},"\u00ae":{"d":"99,-253v44,0,73,30,73,76v0,46,-28,75,-73,75v-45,0,-73,-29,-73,-75v0,-46,29,-76,73,-76xm99,-110v40,0,64,-26,64,-67v0,-41,-24,-68,-64,-68v-39,0,-63,27,-63,68v0,42,24,67,63,67xm107,-221v32,-3,35,45,6,47r22,41r-11,0r-20,-39r-22,0r0,39r-10,0r0,-88r35,0xm124,-198v0,-19,-23,-15,-42,-15r0,32v20,0,42,4,42,-17","w":196},"\u00a9":{"d":"103,-100v0,46,63,56,76,19r12,5v-8,18,-24,31,-48,31v-52,0,-53,-46,-53,-99v0,-58,80,-73,100,-25r-12,6v-5,-12,-18,-22,-35,-22v-42,-1,-40,42,-40,85xm265,-123v0,76,-48,127,-124,127v-75,0,-122,-50,-122,-127v0,-76,46,-126,122,-126v77,0,124,50,124,126xm251,-123v0,-69,-42,-114,-110,-114v-67,0,-109,47,-109,114v0,67,41,114,109,114v69,0,110,-46,110,-114","w":280},"\u03a3":{"d":"12,0r0,-15r68,-115r-67,-106r0,-15r147,0r0,15r-129,0r68,106r-68,115r133,0r0,15r-152,0","w":174,"k":{"\u03bd":11,"\u03b3":14}},"\u03aa":{"d":"30,0r0,-251r16,0r0,251r-16,0xm61,-273r0,-19r19,0r0,19r-19,0xm-4,-273r0,-19r20,0r0,19r-20,0","w":76},"\u00a7":{"d":"127,-222v-27,-32,-109,-16,-84,36v30,35,105,23,105,85v0,17,-8,31,-19,41v42,48,-20,111,-84,82v-11,-4,-19,-10,-26,-17r9,-10v23,26,103,30,99,-21v-5,-62,-109,-32,-108,-101v0,-17,10,-30,20,-40v-33,-29,-9,-91,42,-86v23,2,41,8,55,19xm117,-69v29,-19,12,-66,-15,-70r-50,-20v-20,10,-26,47,-2,59v21,11,48,18,67,31","w":160},"\u00b0":{"d":"65,-252v26,0,44,17,44,44v0,27,-17,44,-44,44v-27,0,-44,-18,-44,-44v0,-26,18,-44,44,-44xm65,-175v19,0,33,-14,33,-33v0,-18,-15,-32,-33,-32v-18,-1,-33,14,-32,32v0,18,14,33,32,33","w":130},"\u00b7":{"d":"21,-84r0,-23r21,0r0,23r-21,0","w":62},"\u0391":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u00b1":{"d":"91,-98r0,68r-14,0r0,-68r-67,0r0,-13r67,0r0,-67r14,0r0,67r67,0r0,13r-67,0xm10,0r0,-13r148,0r0,13r-148,0","w":168},"\u00a5":{"d":"76,-82v0,-11,1,-24,-4,-30r-58,0r0,-12r52,0r-63,-127r17,0r65,132r63,-132r16,0r-62,127r52,0r0,12r-58,0v-5,7,-4,18,-4,30r62,0r0,12r-62,0r0,70r-16,0r0,-70r-62,0r0,-12r62,0","w":168},"\u0392":{"d":"149,-130v28,9,48,28,48,63v0,41,-26,67,-68,67r-101,0r0,-251v76,0,164,-11,163,64v-1,30,-17,50,-42,57xm174,-186v0,-58,-70,-51,-129,-50r0,100v59,1,129,8,129,-50xm179,-68v0,-63,-72,-53,-134,-53r0,106v62,1,134,9,134,-53","w":210},"\u0395":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0","w":190},"\u0396":{"d":"12,0r0,-15r133,-221r-127,0r0,-15r146,0r0,15r-133,221r133,0r0,15r-152,0","w":175},"\u0397":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0","w":225},"\u0399":{"d":"30,0r0,-251r16,0r0,251r-16,0","w":76},"\u039a":{"d":"190,0r-84,-141r-61,75r0,66r-17,0r0,-251r17,0r0,160r131,-160r19,0r-78,96r92,155r-19,0","w":218,"k":{"\u03c4":11,"\u03bd":11,"\u03b3":11}},"\u039c":{"d":"225,-213r-83,174r-14,0r-83,-174r-1,213r-16,0r0,-251r17,0r90,191r91,-191r16,0r0,251r-17,0r0,-213","w":266},"\u03a6":{"d":"139,-239v71,2,108,40,108,111v0,70,-41,103,-108,107r0,21r-16,0r0,-21v-68,-3,-106,-38,-106,-107v0,-70,36,-107,106,-110r0,-13r16,0r0,12xm139,-35v105,14,122,-155,38,-184v-11,-4,-24,-6,-38,-6r0,190xm123,-225v-102,-11,-121,150,-41,182v11,5,25,7,41,8r0,-190","w":261},"\u03ab":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm108,-292r19,0r0,19r-19,0r0,-19xm43,-292r20,0r0,19r-20,0r0,-19","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03a8":{"d":"234,-140v-1,59,-39,84,-96,87r0,53r-17,0r0,-53v-59,-3,-97,-33,-97,-91r0,-107r16,0v0,84,-17,183,81,182r0,-182r17,0r0,182v47,-1,79,-25,79,-72r0,-110r17,0r0,111","w":258,"k":{",":22,"\u2026":22,".":22}},"\u03a9":{"d":"53,-15v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-74,-68,-75v-73,-1,-73,71,-70,145v2,37,17,64,46,74r0,18r-68,0r0,-15r43,0","w":203},"\u03ac":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm77,-207r28,-55r18,6r-36,53","w":180},"\u039d":{"d":"193,0r-147,-222r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,251r-17,0","w":238},"\u039f":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76","w":205},"\u03a1":{"d":"29,-251v81,-1,170,-10,167,73v-2,43,-29,71,-74,71r-76,0r0,107r-17,0r0,-251xm46,-123v63,1,132,8,132,-56v0,-64,-69,-57,-132,-56r0,112","w":199,"k":{",":36,".":36,"\u2026":36,"\u2206":18,"\u039b":18,"\u0391":18,"\u1fbc":18,"\u1fb8":18,"\u1fb9":18,"\ue264":18,"\ue183":25,"\ue186":25,"\ue18d":25,"\ue19b":25}},"\u03a4":{"d":"95,-236r0,236r-17,0r0,-236r-75,0r0,-15r167,0r0,15r-75,0","w":172,"k":{"\ue196":22,"\ue18a":22,"\ue183":22,"\u03af":29,"\u03ae":22,"\u03ad":25,"\u03ac":29,"\u0394":7,",":14,"\u1ff7":29,"\u1ff6":29,"\u1fe7":32,"\u1fe6":22,"\u1fd7":29,"\u1fd6":29,"\u1fc7":14,"\u1fc6":14,"\u1fb7":29,"\u1fb6":22,"\u1fa7":29,"\u1fa6":29,"\u1f97":22,"\u1f96":22,"\u1f87":29,"\u1f86":29,"\u1f67":29,"\u1f66":29,"\u1f57":32,"\u1f56":32,"\u1f37":29,"\u1f36":29,"\u1f27":22,"\u1f26":22,"\u1f07":29,"\u1f06":29,"\u1fd3":29,"\u1fd2":29,"\u1fd1":29,"\u1fd0":29,"\u1f35":29,"\u1f34":29,"\u1f33":29,"\u1f32":29,"\u1f31":29,"\u1f30":29,"\ue1a3":22,"\ue1a1":18,"\ue1a0":22,"\ue19f":22,"\ue19b":22,"\ue19a":18,"\ue194":14,"\ue193":29,"\ue191":22,"\ue18d":22,"\ue18c":29,"\ue188":14,"\ue187":29,"\ue186":22,"\ue185":29,"\ue184":29,"\ue264":7,"\u1fb9":7,"\u1fb8":7,"\u1ff4":29,"\u1ff3":29,"\u1ff2":29,"\u1fe3":32,"\u1fe2":32,"\u1fe1":29,"\u1fe0":32,"\u1fc4":22,"\u1fc3":22,"\u1fc2":22,"\u1fbc":7,"\u1fb4":29,"\u1fb3":29,"\u1fb2":29,"\u1fb1":29,"\u1fb0":29,"\u1fa5":29,"\u1fa4":29,"\u1fa3":29,"\u1fa2":29,"\u1fa1":29,"\u1fa0":29,"\u1f95":22,"\u1f94":22,"\u1f93":22,"\u1f92":22,"\u1f91":22,"\u1f90":22,"\u1f85":29,"\u1f84":29,"\u1f83":29,"\u1f82":29,"\u1f81":29,"\u1f80":29,"\u1f7d":29,"\u1f7c":29,"\u1f7b":32,"\u1f7a":25,"\u1f79":29,"\u1f78":29,"\u1f77":29,"\u1f76":29,"\u1f75":22,"\u1f74":22,"\u1f73":25,"\u1f72":22,"\u1f71":29,"\u1f70":29,"\u1f65":29,"\u1f64":29,"\u1f63":29,"\u1f62":29,"\u1f61":29,"\u1f60":29,"\u1f55":32,"\u1f54":32,"\u1f53":32,"\u1f52":32,"\u1f51":32,"\u1f50":32,"\u1f45":29,"\u1f44":29,"\u1f43":29,"\u1f42":29,"\u1f41":29,"\u1f40":29,"\u1f25":22,"\u1f24":22,"\u1f23":22,"\u1f22":22,"\u1f21":22,"\u1f20":22,"\u1f15":25,"\u1f14":25,"\u1f13":25,"\u1f12":25,"\u1f11":25,"\u1f10":25,"\u1f05":29,"\u1f04":29,"\u1f03":29,"\u1f02":29,"\u1f01":29,"\u1f00":29,"\u03b0":18,"\u0390":29,"\u03cb":29,"\u03ca":29,"\u03b6":7,"\u03c5":32,"\u03c9":29,"\u03c3":29,"\u03c1":29,"\u03ce":29,"\u03bf":29,"\u00b5":22,"\u03bb":7,"\u03ba":22,"\u03b9":29,"\u03b7":22,"\u03c6":29,"\u03b5":25,"\u03b4":11,"\u03b1":29,"\u03cd":32,"\u03cc":29,"\u2026":14,"\u039f":7,"\u03a9":4,"\u0391":7,"\u039b":7,"\u0398":7,".":14}},"\u00ab":{"d":"113,-17r-42,-62r42,-62r16,0r-41,62r41,62r-16,0xm64,-17r-42,-62r43,-62r16,0r-42,62r42,62r-17,0","w":146},"\u00bb":{"d":"23,-17r41,-62r-41,-62r16,0r42,62r-42,62r-16,0xm71,-17r42,-62r-42,-62r16,0r43,62r-43,62r-16,0","w":146},"\u2026":{"d":"22,0r0,-23r21,0r0,23r-21,0xm162,0r0,-23r22,0r0,23r-22,0xm94,0r0,-23r21,0r0,23r-21,0","w":207},"\u03a5":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03a7":{"d":"157,0r-67,-114r-67,114r-19,0r77,-129r-72,-122r19,0r62,108r62,-108r19,0r-72,122r77,129r-19,0","w":180},"\u0386":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm-4,-204r28,-56v5,3,11,5,17,7r-36,53","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u0388":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm-36,-204r28,-56r17,7r-35,53","w":190},"\u0153":{"d":"216,-180v52,1,72,37,70,93r-127,0v-9,65,60,94,104,61r10,11v-35,29,-114,20,-121,-28v-9,28,-32,44,-66,45v-53,0,-71,-36,-71,-92v0,-56,20,-88,72,-90v33,-1,57,16,65,45v10,-26,28,-45,64,-45xm143,-88v0,-49,-14,-78,-56,-78v-42,0,-56,30,-56,77v0,47,13,77,56,77v42,0,56,-30,56,-76xm270,-100v5,-59,-58,-85,-94,-49v-10,11,-16,28,-17,49r111,0","w":298},"\u2013":{"d":"7,-87r0,-16r163,0r0,16r-163,0","w":177,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u2015":{"d":"7,-87r0,-16r343,0r0,16r-343,0","w":357},"\u201c":{"d":"14,-199v-3,-28,8,-41,15,-60r11,0r-10,36r6,0r0,24r-22,0xm76,-259r-10,36r6,0r0,24r-22,0v-3,-28,9,-41,16,-60r10,0","w":90},"\u201d":{"d":"78,-259v3,27,-7,42,-14,60r-11,0r10,-36r-6,0r0,-24r21,0xm17,-199r10,-36r-6,0r0,-24r21,0v3,28,-7,42,-15,60r-10,0","w":90,"k":{"t":7,"n":7,"a":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e6":18,"\u00e1":18,"\u00e5":18,"\u0101":18,"\u0103":18,"\u0105":18,"\u01fd":18,"\u00e3":18,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22}},"\u2018":{"d":"48,-259r-9,36r5,0r0,24r-21,0v-3,-28,7,-42,15,-60r10,0","w":68},"\u2019":{"d":"23,-199r9,-36r-6,0r0,-24r22,0v3,28,-8,42,-15,60r-10,0","w":68,"k":{"t":7,"n":7,"a":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e6":18,"\u00e1":18,"\u00e5":18,"\u0101":18,"\u0103":18,"\u0105":18,"\u01fd":18,"\u00e3":18,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22}},"\u00f7":{"d":"85,-175v18,0,18,29,0,28v-7,1,-15,-7,-14,-14v-1,-9,7,-13,14,-14xm9,-94r0,-13r150,0r0,13r-150,0xm85,-26v-11,0,-19,-15,-10,-23v8,-7,23,-2,24,9v1,7,-7,14,-14,14","w":168},"\u0389":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-35,-204r29,-56r17,7r-36,53","w":225},"\u038a":{"d":"30,0r0,-251r16,0r0,251r-16,0xm-37,-204r28,-56r18,7r-36,53","w":76},"\u038c":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm-35,-204r29,-56r17,7r-36,53","w":205},"\u038e":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-52,-204r29,-56v5,3,11,5,17,7r-36,53","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03ad":{"d":"87,1v-68,0,-92,-78,-35,-94v-54,-24,-25,-87,36,-87v23,0,43,7,56,18r-10,12v-22,-21,-95,-26,-95,18v-1,31,33,32,66,31r0,14v-37,-2,-69,3,-70,37v-1,46,75,43,100,22r10,11v-13,12,-34,18,-58,18xm72,-207r28,-55r17,6r-35,53","w":153},"\u03ae":{"d":"39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30xm69,-207r28,-55r17,6r-36,53","w":182},"\u03af":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm26,-207r28,-55r18,6r-36,53","w":74},"\u03cc":{"d":"76,-207r28,-55r17,6r-35,53xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u038f":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-35,-204r29,-56r16,7r-35,53","w":203},"\u03cd":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm77,-207r28,-55r18,6r-36,53","w":187},"\u03b1":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76","w":180},"\u03b2":{"d":"123,-150v27,9,40,33,40,68v0,50,-21,84,-69,84v-28,0,-44,-14,-53,-34r-1,80r-15,0r0,-238v1,-43,21,-67,65,-70v65,-5,79,87,33,110xm148,-82v1,-45,-26,-66,-77,-60r0,-13v39,3,64,-9,64,-44v0,-28,-15,-48,-45,-48v-72,1,-50,99,-50,166v0,37,14,68,52,69v41,0,55,-30,56,-70","w":181},"\u03c8":{"d":"197,-71v-2,47,-33,70,-80,72r0,71r-15,0r0,-71v-45,-2,-79,-24,-79,-69r0,-110r16,0v3,72,-22,163,63,164r0,-171r15,0r0,171v39,-2,64,-20,64,-61r0,-103r16,0r0,107","w":219},"\u03b4":{"d":"35,-212v-1,-50,71,-58,109,-36r-7,14v-30,-25,-106,-8,-80,39v37,34,101,29,101,111v0,53,-23,86,-72,86v-52,0,-71,-33,-71,-86v0,-45,18,-73,52,-84v-18,-8,-31,-21,-32,-44xm31,-85v0,45,12,73,55,73v41,0,57,-29,56,-72v-1,-46,-18,-68,-56,-75v-36,6,-55,30,-55,74","w":173},"\u03b5":{"d":"87,1v-68,0,-92,-78,-35,-94v-54,-24,-25,-87,36,-87v23,0,43,7,56,18r-10,12v-22,-21,-95,-26,-95,18v-1,31,33,32,66,31r0,14v-37,-2,-69,3,-70,37v-1,46,75,43,100,22r10,11v-13,12,-34,18,-58,18","w":153},"\u03c6":{"d":"112,-12v65,7,77,-79,53,-129v-8,-17,-29,-24,-53,-25r0,154xm191,-89v0,60,-23,88,-79,91r0,70r-17,0r0,-70v-86,11,-97,-111,-55,-164v6,-6,14,-10,23,-14r5,14v-49,16,-49,133,0,146v8,3,17,4,27,4r0,-168v68,-4,96,23,96,91","w":207},"\u03b3":{"d":"77,-28r57,-150r16,0r-65,173r0,77r-16,0r0,-76r-57,-158v-3,-4,-6,-3,-11,-2r-1,-14v44,-8,39,58,57,87","w":151,"k":{",":22,"\u03c1":11,"\u2026":22,".":22}},"\u03b7":{"d":"39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30","w":182},"\u03b9":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146","w":74},"\u03be":{"d":"127,-136v-72,-15,-123,43,-82,96v20,26,72,25,96,48v12,22,-8,45,-17,59r-13,-7v10,-15,27,-41,-2,-51v-43,-15,-97,-24,-95,-83v1,-37,20,-59,50,-70v-27,-5,-40,-26,-42,-54v-4,-62,77,-74,125,-50r-7,13v-37,-20,-102,-13,-101,37v2,43,41,51,88,48r0,14","w":142},"\u03ba":{"d":"86,-102r-45,51r0,51r-15,0r0,-179r15,0r0,107r95,-107r19,0r-59,66r75,113r-18,0","w":172},"\u03bb":{"d":"71,-175v-15,-26,-6,-72,-44,-70r-1,-14v31,-9,39,16,47,39r66,195v4,9,5,11,15,12v6,16,-14,18,-22,9v-23,-41,-34,-104,-53,-149r-61,153r-17,0","w":154},"\u00b5":{"d":"147,-29v-17,35,-81,40,-106,10r0,91r-15,0r0,-251r15,0v5,68,-22,166,53,166v73,0,49,-97,53,-166r15,0r0,179r-15,0r0,-29","w":185},"\u03bc":{"d":"147,-29v-17,35,-81,40,-106,10r0,91r-15,0r0,-251r15,0v5,68,-22,166,53,166v73,0,49,-97,53,-166r15,0r0,179r-15,0r0,-29","w":185},"\u03bd":{"d":"84,0r-15,0r-65,-178v31,-4,20,26,33,46r40,110r56,-156r17,0","w":154,"k":{",":14,"\u03c1":7,"\u2026":14,".":14}},"\u03bf":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u03c0":{"d":"147,0r0,-165r-106,0r0,165r-15,0r0,-178r136,0r0,178r-15,0","w":187},"\u03ce":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm130,-203r-9,-4r28,-55v7,2,10,4,17,7","w":272},"\u03c1":{"d":"22,72v8,-99,-34,-252,70,-252v53,0,73,34,71,92v-1,54,-19,90,-70,90v-27,0,-43,-9,-55,-30r0,100r-16,0xm147,-88v0,-49,-13,-78,-55,-78v-41,0,-54,31,-54,77v0,44,12,76,54,76v41,0,55,-28,55,-75","w":179,"k":{"\u03b8":-4}},"\u03c3":{"d":"15,-89v1,-53,19,-89,72,-90r85,0r0,14v-14,2,-35,-4,-45,2v52,31,42,173,-41,165v-51,-5,-72,-34,-71,-91xm142,-87v0,-43,-12,-77,-55,-77v-42,0,-56,31,-56,75v0,45,13,76,55,77v43,0,56,-31,56,-75","w":178},"\u03c4":{"d":"64,-43v0,24,14,31,40,29r0,14v-33,3,-56,-7,-55,-38r0,-127r-44,0r0,-14r108,0r0,14r-49,0r0,122","w":117},"\u03b8":{"d":"16,-131v0,-70,10,-130,74,-130v64,0,71,59,70,129v-1,71,-5,134,-73,134v-68,0,-71,-64,-71,-133xm31,-129v-4,69,15,140,81,111v32,-14,34,-60,33,-111r-114,0xm145,-143v4,-63,-19,-123,-79,-98v-30,13,-35,51,-35,98r114,0","w":176},"\u03c9":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120","w":265},"\u03c2":{"d":"109,55v10,-16,27,-41,-3,-51v-45,-16,-88,-29,-88,-93v0,-79,77,-115,135,-73r-10,13v-55,-48,-139,20,-100,98v19,38,88,27,100,70v-2,18,-10,28,-22,43","w":150},"\u03c7":{"d":"130,0r-51,-80r-50,80r-19,0r60,-91r-57,-87r19,0r47,76r47,-76r19,0r-56,87r59,91r-18,0","w":158},"\u03c5":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166","w":187},"\u03b6":{"d":"156,-243v-50,43,-117,89,-124,168v-6,62,77,50,107,82v18,20,-8,45,-17,61r-13,-7v11,-14,29,-44,0,-53v-43,-14,-94,-24,-94,-82v0,-80,66,-124,119,-168r-104,0r0,-14r126,0r0,13","w":134,"k":{"\u03ac":11,"\u1ff7":11,"\u1ff6":11,"\u1fb7":11,"\u1fb6":11,"\u1fa7":11,"\u1fa6":11,"\u1f87":11,"\u1f86":11,"\u1f67":11,"\u1f66":11,"\u1f07":11,"\u1f06":11,"\u1ff4":11,"\u1ff3":11,"\u1ff2":11,"\u1fb4":11,"\u1fb3":11,"\u1fb2":11,"\u1fb1":11,"\u1fb0":11,"\u1fa5":11,"\u1fa4":11,"\u1fa3":11,"\u1fa2":11,"\u1fa1":11,"\u1fa0":11,"\u1f85":11,"\u1f84":11,"\u1f83":11,"\u1f82":11,"\u1f81":11,"\u1f80":11,"\u1f7d":11,"\u1f7c":11,"\u1f79":11,"\u1f78":11,"\u1f71":11,"\u1f70":11,"\u1f65":11,"\u1f64":11,"\u1f63":11,"\u1f62":11,"\u1f61":11,"\u1f60":11,"\u1f45":11,"\u1f44":11,"\u1f43":11,"\u1f42":11,"\u1f41":11,"\u1f40":11,"\u1f05":11,"\u1f04":11,"\u1f03":11,"\u1f02":11,"\u1f01":11,"\u1f00":11,"\u03c9":11,"\u03c3":11,"\u03ce":11,"\u03bf":11,"\u03bb":-14,"\u03c6":11,"\u03b1":11,"\u03cc":11}},"\u03ca":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm58,-219r0,-19r20,0r0,19r-20,0xm-10,-219r0,-19r20,0r0,19r-20,0","w":74},"\u03cb":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm117,-219r0,-19r20,0r0,19r-20,0xm49,-219r0,-19r20,0r0,19r-20,0","w":187},"\u0390":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm64,-218r0,-19r20,0r0,19r-20,0xm-11,-218r0,-19r20,0r0,19r-20,0xm15,-207r29,-55r17,6r-35,53","w":74},"\u03b0":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm121,-218r0,-19r20,0r0,19r-20,0xm47,-218r0,-19r19,0r0,19r-19,0xm73,-207r28,-55r18,6r-36,53","w":187},"\u00c6":{"d":"167,0r0,-67r-105,0r-42,67r-19,0r158,-251r160,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm72,-81r95,0r0,-153","w":331},"\u00e6":{"d":"26,-161v30,-27,115,-30,122,17v11,-21,28,-37,60,-36v53,1,72,39,70,94r-127,0v0,44,16,75,61,75v16,0,34,-7,43,-15r10,11v-33,28,-107,21,-119,-21v-14,49,-133,56,-133,-11v0,-59,64,-53,123,-52v4,-41,-7,-68,-47,-67v-21,1,-41,5,-53,17xm78,-12v45,0,63,-25,58,-74v-47,1,-107,-9,-108,37v0,26,22,37,50,37xm262,-99v5,-59,-58,-88,-94,-49v-10,12,-15,28,-16,49r110,0","w":291,"k":{"\u201d":7,"\u2019":7}},"\u20ac":{"d":"96,-238v-47,0,-62,38,-60,88r87,0r0,12r-87,0r0,24r88,0r0,12r-88,0v-2,51,12,90,60,90v29,0,45,-15,56,-37r14,7v-14,30,-38,45,-70,45v-57,0,-79,-44,-77,-105r-14,0r0,-12r14,0r0,-24r-14,0r0,-12r14,0v-20,-99,106,-139,147,-61r-15,7v-11,-19,-28,-34,-55,-34","w":168},"\u0192":{"d":"95,-133v-14,75,-4,190,-99,162r4,-14v80,26,63,-87,78,-148r-33,0r0,-14r35,0v8,-48,7,-106,64,-105v9,0,19,1,27,4r-5,14v-57,-17,-65,36,-70,87r40,0r0,14r-41,0","w":168},"\u02c6":{"d":"87,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":173},"\u00d7":{"d":"100,-98r57,57r-9,9r-57,-57r-58,58r-9,-9r57,-58r-56,-57r10,-9r56,56r57,-57r9,9","w":178},"\u00a6":{"d":"26,-110r0,-148r12,0r0,148r-12,0xm38,-90r0,148r-12,0r0,-148r12,0","w":62},"\u00b4":{"d":"74,-207r28,-55r18,6r-36,53","w":173},"\u0131":{"d":"26,0r0,-179r17,0r0,179r-17,0","w":68},"\u00ac":{"d":"158,-24r-13,0r0,-70r-136,0r0,-14r149,0r0,84","w":168},"\u00b8":{"d":"105,43v1,-17,-22,-15,-33,-21r9,-27r10,0r-6,20v19,1,32,9,33,28v1,29,-36,30,-61,21r3,-9v16,7,44,9,45,-12","w":149},"\u00f0":{"d":"15,-85v0,-53,22,-83,73,-86v27,-1,50,18,58,37v0,-29,-3,-60,-15,-77r-26,18r-6,-8r27,-18v-12,-16,-29,-26,-56,-29r3,-13v30,1,52,14,65,32r27,-19r6,8r-27,19v19,30,19,79,17,127v-3,53,-19,96,-75,96v-51,-1,-71,-34,-71,-87xm144,-86v0,-44,-17,-71,-56,-71v-41,0,-57,29,-57,73v0,43,17,72,56,72v41,0,57,-30,57,-74","w":176},"\u02dc":{"d":"144,-235v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,17,99,-22","w":173},"\u02c7":{"d":"132,-252r8,7r-45,44r-14,0r-47,-44r7,-8r46,35","w":173},"\u02d8":{"d":"137,-243v0,45,-74,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v4,32,61,37,64,0r14,0","w":179},"!":{"d":"44,-68r-11,0r-3,-183r16,0xm29,0r0,-22r19,0r0,22r-19,0","w":76},"\u1fbd":{"d":"82,-273v34,5,36,49,11,68v-15,-4,2,-19,1,-31v0,-11,-8,-18,-19,-20","w":172},"\u1fbe":{"d":"129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":180},"\u1fc1":{"d":"115,-205r0,-20r20,0r0,20r-20,0xm60,-205r0,-20r20,0r0,20r-20,0xm152,-265v-16,51,-76,-13,-99,22r-11,-5v18,-38,49,-18,79,-9v11,-1,14,-6,20,-14","w":187},"\u1fcd":{"d":"54,-273v34,5,35,48,11,68r-9,-5v12,-19,15,-42,-10,-46xm128,-205r-41,-64r21,-4r30,64","w":180},"\u1fce":{"d":"62,-210v11,-14,15,-43,-9,-46r7,-17v34,5,35,48,11,68xm90,-209r32,-64r21,4r-43,64","w":172},"\u1fcf":{"d":"85,-198v11,-14,16,-38,-9,-41r7,-14v38,5,31,41,10,58xm148,-283v-16,51,-76,-13,-99,22r-10,-5v18,-38,48,-18,78,-9v11,-1,15,-6,21,-14","w":172},"\u1fdd":{"d":"82,-256v-23,5,-21,27,-9,46r-9,5v-24,-18,-24,-63,11,-68xm129,-205r-41,-64r21,-4r29,64","w":172},"\u1fde":{"d":"90,-256v-25,3,-20,31,-9,46r-9,5v-24,-18,-24,-63,11,-68xm90,-209r32,-64r21,4r-43,64","w":172},"\u1fdf":{"d":"108,-239v-23,5,-21,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,10,-21,28,-25xm148,-283v-16,51,-76,-13,-99,22r-10,-5v18,-38,48,-18,78,-9v11,-1,15,-6,21,-14","w":172},"\u1fed":{"d":"40,-220r0,-19r19,0r0,19r-19,0xm119,-220r0,-19r19,0r0,19r-19,0xm58,-269r21,-4r29,64r-9,3","w":174},"\u1fee":{"d":"122,-220r0,-19r19,0r0,19r-19,0xm43,-220r0,-19r19,0r0,19r-19,0xm81,-206r-9,-3r32,-64r20,4","w":174},"\u1ffe":{"d":"112,-256v-23,4,-20,32,-9,46r-9,5v-23,-19,-24,-62,11,-68","w":172},"\u00af":{"d":"46,-213r0,-15r92,0r0,15r-92,0","w":170},"\u02d9":{"d":"78,-219r0,-19r20,0r0,19r-20,0","w":170},"\u02da":{"d":"125,-231v0,17,-16,32,-33,32v-17,0,-32,-14,-32,-32v-1,-18,14,-33,32,-33v19,0,33,15,33,33xm115,-231v0,-12,-10,-23,-23,-23v-13,0,-22,10,-22,23v0,12,9,23,22,22v13,0,23,-10,23,-22","w":170},"\u02db":{"d":"103,55v-20,14,-64,7,-59,-22v2,-15,4,-36,28,-33v-14,12,-23,50,6,50v6,0,13,-2,21,-6","w":145},"\u02dd":{"d":"64,-207r28,-55r17,6r-35,53xm100,-207r29,-55r17,6r-36,53","w":178},"\u1f00":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm82,-273v34,5,36,49,11,68v-15,-4,2,-19,1,-31v0,-11,-8,-18,-19,-20","w":180},"\u1f01":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm115,-256v-24,4,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68v2,6,4,11,7,17","w":180},"\u1f02":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm54,-273v34,5,35,48,11,68r-9,-5v12,-19,15,-42,-10,-46xm128,-205r-41,-64r21,-4r30,64","w":180},"\u1f03":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm82,-256v-23,5,-21,27,-9,46r-9,5v-24,-18,-24,-63,11,-68xm129,-205r-41,-64r21,-4r29,64","w":180},"\u1f04":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm62,-210v11,-14,15,-43,-9,-46r7,-17v34,5,35,48,11,68xm90,-209r32,-64r21,4r-43,64","w":180},"\u1f05":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm90,-256v-25,3,-20,31,-9,46r-9,5v-24,-18,-24,-63,11,-68xm90,-209r32,-64r21,4r-43,64","w":180},"\u1f08":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm5,-252v34,4,36,49,11,67v-16,-3,2,-19,1,-31v-1,-11,-8,-18,-19,-20","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f09":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm34,-236v-24,4,-20,30,-10,46r-8,5v-22,-18,-28,-61,11,-68v2,6,4,11,7,17","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0a":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm-42,-252v34,4,36,49,11,67v-15,-5,2,-19,1,-31v0,-11,-8,-18,-19,-20xm32,-185r-40,-63r20,-4r29,63","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0b":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm-8,-236v-23,5,-23,27,-10,46r-8,5v-23,-18,-27,-61,11,-68xm38,-185r-41,-64r21,-4r29,64","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0c":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm-42,-252v33,5,36,48,11,67r-9,-4v12,-19,14,-42,-9,-46xm41,-248r-43,63r-10,-3r33,-64","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0d":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm-11,-236v-25,3,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68xm42,-249r-43,64r-9,-4r31,-64","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f10":{"d":"52,-93v-54,-25,-25,-92,35,-87v23,2,44,8,57,19v-5,3,-7,7,-10,11v-24,-21,-94,-25,-95,18v-1,32,32,33,65,32r0,13v-38,-3,-69,5,-69,38v0,45,75,42,100,21r10,11v-34,31,-131,25,-126,-34v2,-22,14,-36,33,-42xm78,-273v34,4,36,48,12,68r-9,-5v10,-16,15,-43,-10,-46","w":153},"\u1f11":{"d":"52,-93v-54,-25,-25,-92,35,-87v23,2,44,8,57,19v-5,3,-7,7,-10,11v-24,-21,-94,-25,-95,18v-1,32,32,33,65,32r0,13v-38,-3,-69,5,-69,38v0,45,75,42,100,21r10,11v-34,31,-131,25,-126,-34v2,-22,14,-36,33,-42xm106,-256v-24,4,-21,31,-9,46r-9,5v-23,-19,-24,-62,11,-68","w":153},"\u1f12":{"d":"52,-93v-54,-25,-25,-92,35,-87v23,2,44,8,57,19v-5,3,-7,7,-10,11v-24,-21,-94,-25,-95,18v-1,32,32,33,65,32r0,13v-38,-3,-69,5,-69,38v0,45,75,42,100,21r10,11v-34,31,-131,25,-126,-34v2,-22,14,-36,33,-42xm41,-273v35,5,37,48,12,68r-9,-5v12,-20,14,-41,-10,-46xm116,-205r-41,-64r21,-4r29,64","w":153},"\u1f13":{"d":"52,-93v-54,-25,-25,-92,35,-87v23,2,44,8,57,19v-5,3,-7,7,-10,11v-24,-21,-94,-25,-95,18v-1,32,32,33,65,32r0,13v-38,-3,-69,5,-69,38v0,45,75,42,100,21r10,11v-34,31,-131,25,-126,-34v2,-22,14,-36,33,-42xm69,-256v-23,5,-21,27,-9,46r-9,5v-13,-13,-27,-40,-10,-56v5,-5,13,-9,22,-12xm116,-205r-41,-64r21,-4r29,64","w":153},"\u1f14":{"d":"52,-93v-54,-25,-25,-92,35,-87v23,2,44,8,57,19v-5,3,-7,7,-10,11v-24,-21,-94,-25,-95,18v-1,32,32,33,65,32r0,13v-38,-3,-69,5,-69,38v0,45,75,42,100,21r10,11v-34,31,-131,25,-126,-34v2,-22,14,-36,33,-42xm60,-210v12,-14,14,-43,-10,-46v3,-6,5,-11,7,-17v34,4,36,48,12,68xm88,-209r32,-64r21,4r-44,64","w":153},"\u1f15":{"d":"52,-93v-54,-25,-25,-92,35,-87v23,2,44,8,57,19v-5,3,-7,7,-10,11v-24,-21,-94,-25,-95,18v-1,32,32,33,65,32r0,13v-38,-3,-69,5,-69,38v0,45,75,42,100,21r10,11v-34,31,-131,25,-126,-34v2,-22,14,-36,33,-42xm93,-256v-23,5,-23,27,-10,46r-9,5v-22,-18,-23,-63,11,-68xm93,-209r32,-64r20,4r-43,64","w":153},"\u1f18":{"d":"28,-251r152,0r0,16r-135,0r0,101r115,0r0,14r-115,0r0,105r135,0r0,15r-152,0r0,-251xm-33,-255v34,4,36,49,11,68v-15,-5,2,-18,1,-31v0,-11,-8,-18,-19,-20v3,-6,5,-11,7,-17","w":190},"\u1f19":{"d":"28,-251r152,0r0,16r-135,0r0,101r115,0r0,14r-115,0r0,105r135,0r0,15r-152,0r0,-251xm0,-238v-23,5,-21,27,-9,46r-9,5v-13,-13,-27,-40,-10,-56v5,-5,13,-9,22,-12","w":190},"\u1f1a":{"d":"28,-251r152,0r0,16r-135,0r0,101r115,0r0,14r-115,0r0,105r135,0r0,15r-152,0r0,-251xm-80,-255v34,4,36,49,11,68r-8,-5v13,-20,13,-41,-10,-46v3,-5,5,-11,7,-17xm-26,-255r30,64r-9,4r-41,-64","w":190},"\u1f1b":{"d":"28,-251r152,0r0,16r-135,0r0,101r115,0r0,14r-115,0r0,105r135,0r0,15r-152,0r0,-251xm-53,-238v-24,4,-21,31,-9,46r-9,5v-23,-19,-24,-63,11,-68xm-6,-187r-41,-64r21,-4r29,64","w":190},"\u1f1c":{"d":"28,-251r152,0r0,16r-135,0r0,101r115,0r0,14r-115,0r0,105r135,0r0,15r-152,0r0,-251xm-80,-255v34,4,36,48,12,68r-9,-5v10,-16,15,-43,-10,-46xm3,-251v-14,25,-28,40,-43,64r-9,-4r32,-64","w":190},"\u1f1d":{"d":"28,-251r152,0r0,16r-135,0r0,101r115,0r0,14r-115,0r0,105r135,0r0,15r-152,0r0,-251xm-45,-238v-23,4,-20,32,-9,46r-9,5v-23,-19,-24,-63,11,-68xm6,-251r-43,64r-9,-4r32,-64","w":190},"\u1f20":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm78,-273v34,5,35,48,11,68r-9,-5v11,-14,15,-44,-9,-46","w":182},"\u1f21":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm108,-256v-25,3,-20,31,-9,46r-9,5v-24,-18,-24,-63,11,-68","w":182},"\u1f22":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm46,-273v34,4,36,48,12,68r-9,-5v10,-16,15,-43,-10,-46xm121,-205r-41,-64r21,-4r29,64","w":182},"\u1f23":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm75,-256v-23,4,-20,32,-9,46r-9,5v-23,-19,-24,-62,11,-68xm122,-205r-41,-64r21,-4r29,64","w":182},"\u1f24":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm65,-210v12,-14,14,-43,-10,-46v3,-6,5,-11,7,-17v34,4,36,48,12,68xm93,-209r32,-64r21,4r-44,64","w":182},"\u1f25":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm93,-256v-24,3,-22,31,-10,46r-8,5v-24,-17,-25,-64,11,-68xm93,-209r32,-64r21,4r-44,64","w":182},"\u1f28":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm-28,-255v34,4,36,49,11,68v-15,-4,2,-19,1,-31v0,-11,-8,-18,-19,-20","w":225},"\u1f29":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm1,-238v-24,5,-22,27,-9,46r-9,5v-24,-18,-24,-63,11,-68","w":225},"\u1f2a":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm-79,-255v34,5,36,49,11,68v-15,-5,2,-19,1,-31v0,-11,-8,-18,-19,-20xm4,-191r-9,4r-40,-64r21,-4","w":225},"\u1f2b":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm-50,-238v-24,3,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68xm4,-191r-9,4r-40,-64r21,-4","w":225},"\u1f2c":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm-75,-255v34,4,36,48,12,68r-9,-5v10,-16,15,-43,-10,-46xm-41,-191r29,-64r21,4r-41,64","w":225},"\u1f2d":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm-46,-238v-23,3,-20,32,-9,46r-9,5v-24,-18,-24,-63,11,-68xm-41,-191r29,-64r21,4r-41,64","w":225},"\u1f38":{"d":"30,-251r16,0r0,251r-16,0r0,-251xm-26,-192v11,-15,14,-43,-10,-46v3,-6,5,-11,7,-17v38,6,34,48,12,68","w":76},"\u1f39":{"d":"30,-251r16,0r0,251r-16,0r0,-251xm1,-238v-25,3,-20,31,-9,46r-9,5v-22,-18,-28,-62,11,-68","w":76},"\u1f3a":{"d":"30,-251r16,0r0,251r-16,0r0,-251xm-83,-255v34,4,36,49,11,68v-15,-5,2,-19,1,-31v0,-11,-8,-18,-19,-20v3,-5,5,-11,7,-17xm-8,-187r-41,-64r21,-4r29,64","w":76},"\u1f3b":{"d":"30,-251r16,0r0,251r-16,0r0,-251xm-46,-238v-25,3,-20,31,-9,46r-9,5v-24,-18,-24,-63,11,-68v2,6,4,12,7,17xm-1,-187r-41,-64r21,-4r29,64","w":76},"\u1f3c":{"d":"30,-251r16,0r0,251r-16,0r0,-251xm-73,-192v11,-14,15,-43,-9,-46r6,-17v35,5,37,48,12,68xm-42,-191r28,-64r22,4r-41,64","w":76},"\u1f3d":{"d":"30,-251r16,0r0,251r-16,0r0,-251xm-46,-238v-24,3,-20,30,-10,46r-8,5v-24,-17,-25,-64,11,-68v2,6,4,12,7,17xm-42,-191r28,-64r22,4r-41,64","w":76},"\u1f40":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm82,-210v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68","w":176},"\u1f41":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm111,-256v-23,4,-20,32,-9,46r-9,5v-23,-19,-24,-62,11,-68","w":176},"\u1f42":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm48,-273v34,4,36,49,11,68r-8,-5v12,-20,14,-41,-10,-46xm123,-205r-41,-64r21,-4r29,64","w":176},"\u1f43":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm81,-256v-23,5,-23,27,-10,46r-8,5v-14,-12,-26,-39,-11,-56v5,-5,13,-9,22,-12v2,6,4,11,7,17xm127,-205r-41,-64r21,-4r29,64","w":176},"\u1f44":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm68,-210v12,-14,14,-43,-10,-46v3,-6,5,-11,7,-17v34,4,36,48,12,68xm96,-209r32,-64r21,4r-44,64","w":176},"\u1f45":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm94,-256v-24,3,-22,31,-10,46r-9,5v-22,-18,-23,-63,11,-68xm94,-209r32,-64r21,4r-44,64","w":176},"\u1f48":{"d":"16,-88v-4,-88,2,-164,87,-164v84,0,89,77,85,164v-3,56,-29,90,-85,90v-57,0,-85,-34,-87,-90xm171,-89v2,-73,5,-147,-68,-147v-74,0,-72,73,-70,148v1,46,24,75,70,75v45,0,66,-31,68,-76xm-35,-238r7,-17v38,7,32,49,11,68r-9,-5v11,-14,15,-44,-9,-46","w":205},"\u1f49":{"d":"16,-88v-4,-88,2,-164,87,-164v84,0,89,77,85,164v-3,56,-29,90,-85,90v-57,0,-85,-34,-87,-90xm171,-89v2,-73,5,-147,-68,-147v-74,0,-72,73,-70,148v1,46,24,75,70,75v45,0,66,-31,68,-76xm1,-238v-23,5,-21,27,-9,46r-8,5v-14,-12,-26,-39,-11,-56v5,-5,13,-9,22,-12","w":205},"\u1f4a":{"d":"16,-88v-4,-88,2,-164,87,-164v84,0,89,77,85,164v-3,56,-29,90,-85,90v-57,0,-85,-34,-87,-90xm171,-89v2,-73,5,-147,-68,-147v-74,0,-72,73,-70,148v1,46,24,75,70,75v45,0,66,-31,68,-76xm-80,-192v11,-14,15,-43,-9,-46r7,-17v34,5,35,48,11,68xm-8,-187r-41,-64r21,-4r29,64","w":205},"\u1f4b":{"d":"16,-88v-4,-88,2,-164,87,-164v84,0,89,77,85,164v-3,56,-29,90,-85,90v-57,0,-85,-34,-87,-90xm171,-89v2,-73,5,-147,-68,-147v-74,0,-72,73,-70,148v1,46,24,75,70,75v45,0,66,-31,68,-76xm-53,-238v-24,3,-20,30,-10,46r-8,5v-24,-17,-25,-64,11,-68v2,6,4,12,7,17xm-8,-187r-41,-64r21,-4r29,64","w":205},"\u1f4c":{"d":"16,-88v-4,-88,2,-164,87,-164v84,0,89,77,85,164v-3,56,-29,90,-85,90v-57,0,-85,-34,-87,-90xm171,-89v2,-73,5,-147,-68,-147v-74,0,-72,73,-70,148v1,46,24,75,70,75v45,0,66,-31,68,-76xm-79,-255v34,4,36,48,12,68r-9,-5v11,-15,14,-43,-10,-46v3,-6,5,-11,7,-17xm4,-251v-15,25,-27,40,-43,64r-9,-4r32,-64","w":205},"\u1f4d":{"d":"16,-88v-4,-88,2,-164,87,-164v84,0,89,77,85,164v-3,56,-29,90,-85,90v-57,0,-85,-34,-87,-90xm171,-89v2,-73,5,-147,-68,-147v-74,0,-72,73,-70,148v1,46,24,75,70,75v45,0,66,-31,68,-76xm-48,-238v-25,3,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68xm5,-251r-44,64r-9,-4r33,-64","w":205},"\u1f50":{"d":"162,-178v-2,80,20,185,-68,180v-41,-2,-68,-22,-68,-65r0,-115r15,0v4,69,-20,166,53,166v74,0,49,-97,53,-166r15,0xm80,-273v33,4,35,49,11,68r-9,-5v13,-19,13,-42,-10,-46","w":187},"\u1f51":{"d":"162,-178v-2,80,20,185,-68,180v-41,-2,-68,-22,-68,-65r0,-115r15,0v4,69,-20,166,53,166v74,0,49,-97,53,-166r15,0xm114,-256v-24,4,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68v2,6,4,11,7,17","w":187},"\u1f52":{"d":"162,-178v-2,80,20,185,-68,180v-41,-2,-68,-22,-68,-65r0,-115r15,0v4,69,-20,166,53,166v74,0,49,-97,53,-166r15,0xm52,-273v34,5,36,49,11,68r-9,-5v12,-19,15,-41,-9,-46xm126,-205r-41,-64r21,-4r30,64","w":187},"\u1f53":{"d":"162,-178v-2,80,20,185,-68,180v-41,-2,-68,-22,-68,-65r0,-115r15,0v4,69,-20,166,53,166v74,0,49,-97,53,-166r15,0xm87,-256v-24,4,-20,30,-10,46r-9,5v-23,-18,-23,-64,12,-68v2,6,4,11,7,17xm133,-205r-40,-64r20,-4r30,64","w":187},"\u1f54":{"d":"162,-178v-2,80,20,185,-68,180v-41,-2,-68,-22,-68,-65r0,-115r15,0v4,69,-20,166,53,166v74,0,49,-97,53,-166r15,0xm74,-210v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68xm102,-209r32,-64r21,4r-43,64","w":187},"\u1f55":{"d":"162,-178v-2,80,20,185,-68,180v-41,-2,-68,-22,-68,-65r0,-115r15,0v4,69,-20,166,53,166v74,0,49,-97,53,-166r15,0xm100,-256v-23,3,-20,32,-9,46r-9,5v-24,-18,-24,-63,11,-68xm100,-209r32,-64r21,4r-43,64","w":187},"\u1f59":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-13,-238v-24,3,-21,31,-10,46r-9,5v-22,-18,-23,-63,11,-68","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5b":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-53,-238v-24,3,-20,30,-10,46r-8,5v-24,-17,-25,-64,11,-68v2,6,4,12,7,17xm-8,-187r-41,-64r21,-4r29,64","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5d":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-65,-238v-24,3,-21,31,-10,46r-9,5v-23,-18,-23,-64,12,-68xm-65,-191r32,-64r21,4r-44,64","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f60":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm123,-273v34,5,36,49,11,68r-8,-5v12,-19,14,-41,-10,-46","w":272},"\u1f61":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm157,-256v-23,5,-23,27,-10,46r-8,5v-24,-18,-24,-63,11,-68","w":272},"\u1f62":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm96,-273v34,4,36,49,11,68r-8,-5v12,-20,14,-41,-10,-46xm171,-205r-41,-64r20,-4r30,64","w":272},"\u1f63":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm126,-256v-23,5,-23,27,-10,46r-9,5v-22,-18,-23,-63,11,-68xm172,-205r-41,-64r21,-4r29,64","w":272},"\u1f64":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm113,-273v35,5,37,48,12,68r-9,-5v11,-14,14,-42,-9,-46xm144,-209r32,-64r21,4r-44,64","w":272},"\u1f65":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,-256v-23,5,-23,27,-10,46r-9,5v-22,-18,-23,-63,11,-68xm143,-209r32,-64r20,4r-43,64","w":272},"\u1f68":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-35,-238r7,-17v38,7,32,49,11,68r-9,-5v11,-14,15,-44,-9,-46","w":203},"\u1f69":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm1,-238v-23,4,-20,32,-9,46r-9,5v-22,-20,-28,-61,12,-68","w":203},"\u1f6a":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-83,-255v34,5,36,49,11,68r-8,-5v13,-19,13,-41,-10,-46xm-8,-187r-41,-64r21,-4r28,64","w":203},"\u1f6b":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-53,-238v-24,3,-20,30,-10,46r-8,5v-24,-17,-25,-64,11,-68v2,6,4,12,7,17xm-8,-187r-41,-64r21,-4r29,64","w":203},"\u1f6c":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-75,-192v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68xm5,-251r-42,64r-10,-4r32,-64","w":203},"\u1f6d":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-46,-238v-24,3,-21,31,-10,46r-8,5v-24,-17,-25,-64,11,-68xm6,-251v-15,25,-27,40,-43,64r-9,-4r32,-64","w":203},"\u1f70":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm51,-267r21,-5r30,63r-10,3","w":180},"\u1f71":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm93,-206r-10,-3r33,-63r20,5","w":180},"\u1f72":{"d":"87,1v-68,0,-92,-78,-35,-94v-54,-24,-25,-87,36,-87v23,0,43,7,56,18r-10,12v-22,-21,-95,-26,-95,18v-1,31,33,32,66,31r0,14v-37,-2,-69,3,-70,37v-1,46,75,43,100,22r10,11v-13,12,-34,18,-58,18xm45,-267r21,-5r29,63r-9,3","w":153},"\u1f73":{"d":"87,1v-68,0,-92,-78,-35,-94v-54,-24,-25,-87,36,-87v23,0,43,7,56,18r-10,12v-22,-21,-95,-26,-95,18v-1,31,33,32,66,31r0,14v-37,-2,-69,3,-70,37v-1,46,75,43,100,22r10,11v-13,12,-34,18,-58,18xm83,-206r-9,-3r32,-63r20,5","w":153},"\u1f74":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm46,-267r21,-5r29,63r-9,3","w":182},"\u1f75":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm87,-206r-10,-3r32,-63r21,5","w":182},"\u1f76":{"d":"-7,-267r21,-5r30,63r-10,3xm42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146","w":74},"\u1f77":{"d":"36,-206r-9,-3r32,-63r21,5xm42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146","w":74},"\u1f78":{"d":"47,-267r21,-5r29,63r-9,3xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u1f79":{"d":"89,-206r-9,-3r32,-63r20,5xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u1f7a":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm52,-267r21,-5r29,63r-9,3","w":187},"\u1f7b":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm90,-206r-9,-3r32,-63r21,5","w":187},"\u1f7c":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm135,-205r-41,-62r21,-4r29,62","w":272},"\u1f7d":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm127,-209r33,-62r20,4r-43,62","w":272},"\u1f80":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm101,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm82,-273v34,5,36,49,11,68v-15,-4,2,-19,1,-31v0,-11,-8,-18,-19,-20","w":180},"\u1f81":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm101,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm115,-256v-24,4,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68v2,6,4,11,7,17","w":180},"\u1f82":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm101,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm54,-273v34,5,35,48,11,68r-9,-5v12,-19,15,-42,-10,-46xm128,-205r-41,-64r21,-4r30,64","w":180},"\u1f83":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm101,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm82,-256v-23,5,-21,27,-9,46r-9,5v-24,-18,-24,-63,11,-68xm129,-205r-41,-64r21,-4r29,64","w":180},"\u1f84":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm101,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm62,-210v11,-14,15,-43,-9,-46r7,-17v34,5,35,48,11,68xm90,-209r32,-64r21,4r-43,64","w":180},"\u1f85":{"d":"88,-181v28,0,43,14,54,33r0,-30r15,0r0,178r-15,0v-1,-10,2,-24,-1,-32v-10,17,-26,33,-54,33v-51,0,-66,-39,-67,-88v0,-53,16,-94,68,-94xm89,-13v42,0,53,-36,53,-77v0,-41,-12,-76,-53,-76v-43,-1,-53,36,-53,77v0,41,11,76,53,76xm101,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm90,-256v-25,3,-20,31,-9,46r-9,5v-24,-18,-24,-63,11,-68xm90,-209r32,-64r21,4r-43,64","w":180},"\u1f88":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm5,-252v34,4,36,49,11,67v-16,-3,2,-19,1,-31v-1,-11,-8,-18,-19,-20","w":288},"\u1f89":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm34,-236v-24,4,-20,30,-10,46r-8,5v-22,-18,-28,-61,11,-68v2,6,4,11,7,17","w":288},"\u1f8a":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-42,-252v34,4,36,49,11,67v-15,-5,2,-19,1,-31v0,-11,-8,-18,-19,-20xm32,-185r-40,-63r20,-4r29,63","w":288},"\u1f8b":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-8,-236v-23,5,-23,27,-10,46r-8,5v-23,-18,-27,-61,11,-68xm38,-185r-41,-64r21,-4r29,64","w":288},"\u1f8c":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-42,-252v33,5,36,48,11,67r-9,-4v12,-19,14,-42,-9,-46xm41,-248r-43,63r-10,-3r33,-64","w":288},"\u1f8d":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-11,-236v-25,3,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68xm42,-249r-43,64r-9,-4r31,-64","w":288},"\u1f90":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm99,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm78,-273v34,5,35,48,11,68r-9,-5v11,-14,15,-44,-9,-46","w":182},"\u1f91":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm99,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm108,-256v-25,3,-20,31,-9,46r-9,5v-24,-18,-24,-63,11,-68","w":182},"\u1f92":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm99,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm46,-273v34,4,36,48,12,68r-9,-5v10,-16,15,-43,-10,-46xm121,-205r-41,-64r21,-4r29,64","w":182},"\u1f93":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm99,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm75,-256v-23,4,-20,32,-9,46r-9,5v-23,-19,-24,-62,11,-68xm122,-205r-41,-64r21,-4r29,64","w":182},"\u1f94":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm99,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm65,-210v12,-14,14,-43,-10,-46v3,-6,5,-11,7,-17v34,4,36,48,12,68xm93,-209r32,-64r21,4r-44,64","w":182},"\u1f95":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm99,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm93,-256v-24,3,-22,31,-10,46r-8,5v-24,-17,-25,-64,11,-68xm93,-209r32,-64r21,4r-44,64","w":182},"\u1f98":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm259,-53v-1,25,4,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm-28,-255v34,4,36,49,11,68v-15,-4,2,-19,1,-31v0,-11,-8,-18,-19,-20","w":297},"\u1f99":{"d":"259,-53v-1,25,4,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm1,-238v-24,5,-22,27,-9,46r-9,5v-24,-18,-24,-63,11,-68","w":297},"\u1f9a":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm259,-53v-1,25,4,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm-80,-192v11,-15,14,-43,-10,-46r8,-17v33,4,35,49,11,68xm1,-191r-9,4r-41,-64r21,-4","w":297},"\u1f9b":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm259,-53v-2,25,3,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm-51,-238v-24,3,-21,32,-10,46r-9,5v-22,-18,-23,-63,11,-68xm3,-191r-9,4r-41,-64r21,-4","w":297},"\u1f9c":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm259,-53v-2,25,3,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm-79,-255v34,5,36,49,11,68v-15,-5,2,-19,1,-31v0,-11,-8,-18,-19,-20xm-45,-191r28,-64r21,4r-40,64","w":297},"\u1f9d":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm259,-53v-2,25,3,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm-50,-238v-24,3,-20,30,-10,46r-8,5v-24,-18,-24,-63,11,-68xm-45,-191r28,-64r21,4r-40,64","w":297},"\u1fa0":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm123,-273v34,5,36,49,11,68r-8,-5v12,-19,14,-41,-10,-46","w":272},"\u1fa1":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm157,-256v-23,5,-23,27,-10,46r-8,5v-24,-18,-24,-63,11,-68","w":272},"\u1fa2":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm96,-273v34,4,36,49,11,68r-8,-5v12,-20,14,-41,-10,-46xm171,-205r-41,-64r20,-4r30,64","w":272},"\u1fa3":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm126,-256v-23,5,-23,27,-10,46r-9,5v-22,-18,-23,-63,11,-68xm172,-205r-41,-64r21,-4r29,64","w":272},"\u1fa4":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm113,-273v35,5,37,48,12,68r-9,-5v11,-14,15,-44,-9,-46xm144,-209r32,-64r21,4r-44,64","w":272},"\u1fa5":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm143,-256v-23,5,-23,27,-10,46r-9,5v-22,-18,-23,-63,11,-68xm143,-209r32,-64r20,4r-43,64","w":272},"\u1fa8":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-35,-238r7,-17v38,7,32,49,11,68r-9,-5v11,-14,15,-44,-9,-46","w":288},"\u1fa9":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm1,-238v-23,4,-20,32,-9,46r-9,5v-22,-20,-28,-61,12,-68","w":288},"\u1faa":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-83,-255v34,5,36,49,11,68r-8,-5v13,-19,13,-41,-10,-46xm-8,-187r-41,-64r21,-4r28,64","w":288},"\u1fab":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-54,-238v-23,5,-23,27,-10,46r-8,5v-24,-18,-24,-63,11,-68xm-8,-187r-41,-64r21,-4r28,64","w":288},"\u1fac":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-75,-192v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68xm5,-251r-42,64r-10,-4r32,-64","w":288},"\u1fad":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm-46,-238v-24,3,-21,31,-10,46r-8,5v-24,-17,-25,-64,11,-68xm6,-251v-15,25,-27,40,-43,64r-9,-4r32,-64","w":288},"\u1fb0":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm139,-243v0,44,-75,54,-88,14v-2,-5,-4,-9,-4,-14r14,0v3,34,61,35,64,0r14,0","w":180},"\u1fb1":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm49,-213r0,-15r92,0r0,15r-92,0","w":180},"\u1fb2":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm49,-267r21,-5r29,63r-9,3xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":180},"\u1fb3":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":180},"\u1fb4":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm95,-206r-9,-3r32,-63r20,5xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":180},"\u1fba":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm22,-187r-40,-62r21,-4r29,62","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fbb":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm-9,-191r32,-62r20,4r-43,62","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fbc":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126","w":288},"\u1fc2":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm49,-267r21,-5r29,63r-9,3xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":182},"\u1fc3":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm129,92v-42,5,-47,-26,-44,-68r16,0v0,28,-5,58,28,54r0,14","w":182},"\u1fc4":{"d":"39,-149v23,-49,120,-38,120,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-48,97,-52,165r-16,0r0,-179r16,0r0,30xm90,-206r-9,-3r32,-63r21,5xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":182},"\u1fc8":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm-49,-249r21,-5r29,63r-9,3","w":190},"\u1fc9":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm-39,-188r-10,-3r32,-63r21,5","w":190},"\u1fca":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-55,-249r21,-5r29,63r-9,3","w":225},"\u1fcb":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-46,-188r-9,-3r32,-63r20,5","w":225},"\u1fcc":{"d":"259,-53v-1,25,4,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120","w":297},"\u1fd8":{"d":"31,0r0,-251r17,0r0,251r-17,0xm85,-303v0,52,-92,51,-91,0r14,0v2,35,62,34,64,0r13,0","w":79},"\u1fd9":{"d":"30,0r0,-251r17,0r0,251r-17,0xm-7,-277r0,-15r92,0r0,15r-92,0","w":77},"\u1fda":{"d":"30,0r0,-251r16,0r0,251r-16,0xm-47,-249r21,-5r30,63r-10,3","w":77},"\u1fdb":{"d":"30,0r0,-251r16,0r0,251r-16,0xm-41,-188r-9,-3r32,-63r21,5","w":77},"\u1fe0":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm140,-243v1,45,-75,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v4,32,61,37,64,0r14,0","w":187},"\u1fe1":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm47,-210r0,-15r92,0r0,15r-92,0","w":187},"\u1fe2":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm46,-220r0,-19r19,0r0,19r-19,0xm125,-220r0,-19r19,0r0,19r-19,0xm67,-269r21,-4r29,64r-9,3","w":187},"\u1fe3":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm125,-221r0,-19r19,0r0,19r-19,0xm46,-221r0,-19r19,0r0,19r-19,0xm84,-206r-9,-4r32,-64r20,4","w":187},"\u1fe4":{"d":"22,72v8,-99,-34,-252,70,-252v53,0,73,34,71,92v-1,54,-19,90,-70,90v-27,0,-43,-9,-55,-30r0,100r-16,0xm147,-88v0,-49,-13,-78,-55,-78v-41,0,-54,31,-54,77v0,44,12,76,54,76v41,0,55,-28,55,-75xm84,-273v34,5,36,49,11,68r-9,-5v12,-18,15,-41,-9,-46","w":180},"\u1fe5":{"d":"22,72v8,-99,-34,-252,70,-252v53,0,73,34,71,92v-1,54,-19,90,-70,90v-27,0,-43,-9,-55,-30r0,100r-16,0xm147,-88v0,-49,-13,-78,-55,-78v-41,0,-54,31,-54,77v0,44,12,76,54,76v41,0,55,-28,55,-75xm112,-256v-23,4,-20,32,-9,46r-9,5v-23,-19,-24,-62,11,-68","w":180},"\u1fe8":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm53,-302v3,32,62,34,64,0r14,0v0,52,-92,51,-91,0r13,0","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fe9":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm40,-292r91,0r0,15r-91,0r0,-15","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fea":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-26,-187r-41,-62r21,-4r29,62","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1feb":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-64,-191r32,-62r20,4r-43,62","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fec":{"d":"196,-177v-2,42,-30,70,-74,70r-76,0r0,107r-17,0r0,-251v82,-2,171,-9,167,74xm178,-179v0,-64,-69,-57,-132,-56r0,112v63,1,132,9,132,-56xm-31,-255v34,5,36,49,11,68r-9,-5v12,-14,16,-43,-9,-46","w":199,"k":{",":36,".":36,"\u2026":36,"\u2206":18,"\u039b":18,"\u0391":18,"\u1fbc":18,"\u1fb8":18,"\u1fb9":18,"\ue264":18,"\ue183":25,"\ue186":25,"\ue18d":25,"\ue19b":25}},"\u1ff2":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm130,-205r-41,-62r21,-4r29,62","w":272},"\u1ff3":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0","w":272},"\u1ff4":{"d":"258,-90v0,51,-13,92,-65,92v-29,0,-47,-14,-56,-36v-11,24,-27,34,-56,36v-82,6,-80,-135,-35,-170v7,-5,16,-9,28,-11r2,15v-39,5,-44,44,-44,88v1,36,13,64,49,64v55,0,48,-65,47,-121r16,0v-1,58,-8,122,50,121v41,-1,47,-36,48,-77v1,-40,-10,-70,-44,-76r2,-14v45,5,58,41,58,89xm143,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm120,-209r32,-62r21,4r-43,62","w":272},"\u1ff8":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm-50,-249r20,-5r30,63r-10,3","w":205},"\u1ff9":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm-41,-188r-10,-3r32,-63r21,5","w":205},"\u1ffa":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm0,-191r-9,4r-40,-62r21,-4","w":203},"\u1ffb":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-47,-191r32,-62r20,4r-43,62","w":203},"\u1ffc":{"d":"249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75","w":288},"\u1fb8":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm73,-302v3,32,62,34,64,0r14,0v1,45,-75,53,-88,14v-2,-5,-4,-9,-4,-14r14,0","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fb9":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm59,-292r92,0r0,15r-92,0r0,-15","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u203a":{"d":"23,-17r41,-62r-41,-62r16,0r42,62r-42,62r-16,0","w":99},"\u2039":{"d":"65,-17r-42,-62r42,-62r16,0r-41,62r41,62r-16,0","w":99},"\u00a1":{"d":"32,-108r12,0r2,183r-16,0xm48,-176r0,22r-19,0r0,-22r19,0","w":76},"\u00bf":{"d":"76,61v31,0,48,-23,54,-49r15,3v-7,36,-32,61,-71,61v-39,0,-65,-24,-65,-62v0,-60,67,-61,58,-132r17,0v9,70,-58,75,-58,130v0,30,18,49,50,49xm85,-176r0,22r-20,0r0,-22r20,0","w":154},"\u2014":{"d":"7,-87r0,-16r343,0r0,16r-343,0","w":357,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u00de":{"d":"196,-126v-2,43,-28,70,-74,71r-76,0r0,55r-17,0r0,-250r17,0r0,52v77,-3,153,-4,150,72xm46,-71v63,1,132,9,132,-56v0,-63,-68,-57,-132,-56r0,112","w":199},"\u00fe":{"d":"90,2v-29,0,-41,-14,-53,-32r0,102r-16,0r0,-323r16,0r0,103v12,-18,27,-33,55,-33v50,0,67,42,67,92v0,51,-18,90,-69,91xm89,-166v-42,0,-51,36,-52,76v0,42,11,77,52,77v42,0,53,-35,53,-76v0,-41,-10,-77,-53,-77","w":178},"\u0152":{"d":"15,-89v-7,-96,7,-162,109,-162r151,0r0,16r-135,0r0,100r115,0r0,15r-115,0r0,105r135,0r0,15r-173,3v-57,-1,-84,-37,-87,-92xm32,-162v-4,83,3,166,91,146r0,-218v-54,-13,-89,21,-91,72","w":284},"\u201a":{"d":"27,36r-9,0r9,-36r-6,0r0,-24r21,0v3,28,-8,42,-15,60","w":62,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"V":25,"W":25,"\u0174":25,"\u1e80":25,"\u1e82":25,"\u1e84":25}},"\u201e":{"d":"32,36r-9,0r9,-36r-6,0r0,-24r20,0v3,27,-8,42,-14,60xm85,36r-9,0r9,-36r-5,0r0,-23r20,0v3,27,-8,41,-15,59","w":126,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"V":25,"W":25,"\u0174":25,"\u1e80":25,"\u1e82":25,"\u1e84":25}},"\u2021":{"d":"72,-148r-64,0r0,-15r64,0r0,-88r17,0r0,88r64,0r0,15r-64,0r0,92r64,0r0,15r-64,0r0,111r-17,0r0,-111r-64,0r0,-15r64,0r0,-92","w":160},"\u00a2":{"d":"151,-17v-13,11,-31,19,-53,19r0,39r-11,0r0,-39v-45,-6,-67,-38,-67,-91v0,-53,22,-83,67,-90r0,-40r11,0r0,39v23,1,39,8,53,19r-10,12v-11,-9,-24,-17,-43,-17r0,154v20,0,32,-7,43,-16xm87,-165v-52,3,-64,88,-38,129v9,13,21,20,38,23r0,-152","w":168},"\u00a4":{"d":"48,-78v-16,-23,-16,-58,1,-78v-9,-10,-30,-20,-11,-30r21,20v22,-18,58,-16,77,0v10,-10,22,-28,31,-11r-21,21v20,21,19,58,2,79v9,9,28,22,10,31r-20,-21v-23,18,-57,19,-80,-1v-10,8,-21,29,-31,10xm98,-165v-29,0,-48,19,-48,48v0,29,18,49,48,49v29,0,48,-20,48,-49v0,-30,-19,-48,-48,-48","w":185},"\u00b6":{"d":"10,-195v0,-41,24,-66,65,-66r93,0r0,15r-22,0r0,275r-17,0r0,-275r-36,0r0,275r-16,0r0,-158v-41,-2,-67,-24,-67,-66","w":177},"\u00d8":{"d":"16,-89v-4,-87,2,-165,87,-163v26,0,46,9,60,22r15,-22r10,6r-17,26v24,26,18,82,18,131v0,57,-30,92,-86,92v-29,0,-49,-9,-63,-25r-16,23r-9,-6r17,-26v-10,-15,-15,-35,-16,-58xm103,-13v79,0,73,-97,65,-172v-1,-7,-4,-13,-7,-19r-111,167v11,14,28,24,53,24xm153,-215v-12,-12,-27,-22,-50,-22v-80,0,-76,95,-67,170v1,7,4,13,7,19","w":205,"k":{"J":14}},"\u00f8":{"d":"16,-90v0,-77,68,-113,121,-74r14,-19r9,7v-4,7,-18,15,-14,22v9,16,14,36,14,66v0,77,-68,113,-121,74r-13,18r-9,-7r15,-20v-11,-16,-16,-38,-16,-67xm49,-28v39,37,95,4,95,-60v0,-25,-3,-39,-10,-53xm127,-150v-41,-38,-95,-3,-95,61v0,22,4,38,10,52","w":176},"\u0160":{"d":"160,-219v-38,-25,-128,-29,-124,35v5,81,145,18,147,119v2,81,-124,81,-171,41r10,-13v37,30,144,38,144,-28v0,-84,-148,-26,-148,-120v0,-74,99,-82,152,-49xm144,-310r6,8r-45,39r-13,0r-47,-40r6,-7r47,30","w":196},"\u017d":{"d":"12,0r0,-15r133,-221r-127,0r0,-15r146,0r0,15r-133,221r133,0r0,15r-152,0xm139,-310r6,8r-45,39r-13,0r-47,-40r6,-7r47,30","w":175},"\u0161":{"d":"135,-49v0,-61,-118,-12,-118,-81v0,-59,85,-59,123,-35r-9,13v-28,-20,-98,-23,-98,22v0,58,118,1,118,82v0,60,-101,64,-140,28r10,-12v30,26,114,34,114,-17xm123,-252r7,7r-45,44r-13,0r-48,-44r8,-8r45,35","w":165},"\u017e":{"d":"13,0r0,-13r108,-152r-103,0r0,-13r121,0r0,13r-108,151r108,0r0,14r-126,0xm122,-252r7,7r-45,44r-13,0r-48,-44r8,-8r45,35","w":151},"\u0178":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm111,-292r20,0r0,19r-20,0r0,-19xm47,-292r19,0r0,19r-19,0r0,-19","w":171,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u00c0":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm114,-270r-6,8r-55,-34r13,-13","w":215,"k":{"'":7}},"\u00c1":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm102,-262r-8,-8r49,-39v4,5,8,9,13,13","w":210,"k":{"'":7}},"\u00c2":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm158,-270v-15,15,-35,-18,-53,-23r-46,31r-7,-8r48,-40r13,0","w":210,"k":{"'":7}},"\u00c5":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm138,-289v0,17,-16,32,-33,32v-17,0,-33,-15,-33,-32v0,-18,15,-32,33,-32v18,0,33,14,33,32xm127,-289v0,-13,-10,-23,-22,-23v-12,0,-23,11,-23,23v0,12,10,22,23,22v12,0,23,-9,22,-22","w":210,"k":{"'":7}},"\u00c8":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm114,-262r-54,-34r13,-13r48,39","w":190},"\u00ca":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm105,-293r-46,30r-7,-7r47,-40r14,0r45,39r-6,8","w":190},"\u00cb":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm126,-273r0,-19r20,0r0,19r-20,0xm62,-273r0,-19r20,0r0,19r-20,0","w":190},"\u00cc":{"d":"30,0r0,-251r16,0r0,251r-16,0xm41,-262r-55,-34r13,-13r49,39","w":76},"\u00cd":{"d":"30,0r0,-251r16,0r0,251r-16,0xm32,-270r49,-39r12,13r-54,34","w":76},"\u00ce":{"d":"35,0r0,-251r16,0r0,251r-16,0xm44,-293r-47,30r-6,-7r47,-40r13,0r46,39r-7,8","w":97},"\u00cf":{"d":"30,0r0,-251r16,0r0,251r-16,0xm61,-273r0,-19r20,0r0,19r-20,0xm-3,-273r0,-19r20,0r0,19r-20,0","w":76},"\u00d0":{"d":"199,-130v0,81,-20,130,-95,130r-76,0r0,-127r-23,0r0,-13r23,0r0,-111r81,0v69,0,90,46,90,121xm107,-15v71,1,78,-61,75,-135v-2,-53,-21,-85,-75,-85r-62,0r0,95r54,0r0,13r-54,0r0,112r62,0","w":218,"k":{"J":14}},"\u00d2":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm119,-262r-55,-34r13,-13r49,39","w":205,"k":{"J":14}},"\u00d3":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm86,-270r49,-39r13,13r-55,34","w":205,"k":{"J":14}},"\u00d4":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm103,-293r-47,30r-6,-7r47,-40r13,0r46,39r-7,8","w":205,"k":{"J":14}},"\u00d9":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm118,-262r-54,-34r12,-13r49,39","w":218},"\u00da":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm85,-270r49,-39r13,13r-54,34","w":218},"\u00db":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm109,-293r-47,30r-7,-7r48,-40r13,0r46,39r-7,8","w":218},"\u00dd":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm65,-270r48,-39r13,13r-54,34","w":171,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u00e1":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm94,-203r-10,-4r28,-55r18,7","w":170},"\u00ec":{"d":"26,0r0,-179r17,0r0,179r-17,0xm32,-203r-36,-53r18,-6r28,55","w":72},"\u00ed":{"d":"26,0r0,-179r17,0r0,179r-17,0xm30,-207r28,-55r18,6r-36,53","w":72},"\u00f2":{"d":"91,-203r-36,-53r18,-6r28,55xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u00f3":{"d":"81,-207r28,-55r18,6r-36,53xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u00fa":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm87,-207r28,-55r18,6r-36,53","w":186},"\u00e5":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm121,-231v0,17,-16,32,-33,32v-17,0,-32,-14,-32,-32v0,-18,14,-33,32,-33v18,0,33,15,33,33xm111,-231v0,-12,-10,-23,-23,-23v-13,0,-22,10,-22,23v0,12,9,23,22,22v13,0,23,-10,23,-22","w":170},"\u00fd":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0xm77,-203r-10,-4r28,-55r18,7","w":150},"\u00ff":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0xm102,-238r20,0r0,19r-20,0r0,-19xm34,-238r19,0r0,19r-19,0r0,-19","w":150},"\u0100":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm59,-292r91,0r0,15r-91,0r0,-15","w":210,"k":{"'":7}},"\u0101":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm44,-228r91,0r0,15r-91,0r0,-15","w":170},"\u0102":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm73,-302v3,32,62,34,64,0r14,0v1,45,-75,53,-88,14v-2,-5,-4,-9,-4,-14r14,0","w":210,"k":{"'":7}},"\u0103":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm59,-243v3,33,62,36,64,0r14,0v1,44,-75,55,-88,14v-2,-5,-4,-9,-4,-14r14,0","w":170},"\u0104":{"d":"230,54v-18,16,-62,6,-59,-21v2,-13,6,-24,15,-33r-21,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251v-23,3,-29,51,0,50v6,0,13,-2,21,-6xm105,-230r-55,154r110,0","w":210,"k":{"'":7}},"\u0105":{"d":"180,54v-18,15,-59,9,-59,-21v0,-21,20,-27,14,-52v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18r-11,-11v35,-33,128,-32,128,34r0,125v-16,11,-28,49,3,50v6,0,12,-2,20,-6xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37","w":170},"\u0106":{"d":"36,-88v0,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-70,74,-70,149xm83,-270r49,-39r12,13r-54,34","w":190},"\u0107":{"d":"27,-89v-8,66,64,97,105,61r10,10v-13,11,-29,21,-52,21v-53,-2,-75,-36,-79,-92v-5,-78,76,-116,131,-72r-10,12v-40,-38,-115,-6,-105,60xm75,-207r28,-55r18,6r-36,53","w":149},"\u0108":{"d":"36,-88v0,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-70,74,-70,149xm105,-293r-46,30r-7,-7r47,-40r14,0r45,39r-6,8","w":190},"\u0109":{"d":"27,-89v-8,66,64,97,105,61r10,10v-13,11,-29,21,-52,21v-53,-2,-75,-36,-79,-92v-5,-78,76,-116,131,-72r-10,12v-40,-38,-115,-6,-105,60xm85,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":149},"\u010a":{"d":"36,-88v0,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-70,74,-70,149xm94,-275r0,-19r20,0r0,19r-20,0","w":190},"\u010b":{"d":"27,-89v-8,66,64,97,105,61r10,10v-13,11,-29,21,-52,21v-53,-2,-75,-36,-79,-92v-5,-78,76,-116,131,-72r-10,12v-40,-38,-115,-6,-105,60xm78,-219r0,-19r20,0r0,19r-20,0","w":149},"\u010c":{"d":"36,-88v0,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-70,74,-70,149xm150,-310r7,8r-45,39r-14,0r-47,-40r6,-7r47,30","w":190},"\u010d":{"d":"27,-89v-8,66,64,97,105,61r10,10v-13,11,-29,21,-52,21v-53,-2,-75,-36,-79,-92v-5,-78,76,-116,131,-72r-10,12v-40,-38,-115,-6,-105,60xm132,-252r8,7r-46,44r-13,0r-47,-44r7,-8r46,35","w":149},"\u010e":{"d":"141,-310r6,8r-45,39r-13,0r-48,-40r7,-7r46,30xm199,-130v0,81,-20,130,-95,130r-76,0r0,-251r81,0v69,0,90,46,90,121xm107,-15v71,1,78,-61,75,-135v-2,-53,-21,-85,-75,-85r-62,0r0,220r62,0","w":218,"k":{"J":14}},"\u010f":{"d":"181,-203r-10,0r10,-34r-7,0r0,-23r22,0v3,27,-8,40,-15,57xm12,-89v-4,-65,43,-111,103,-82v9,5,12,16,20,22r0,-111r15,0r0,260r-15,0v-1,-10,2,-23,-1,-31v-12,20,-26,34,-55,34v-51,0,-64,-42,-67,-92xm82,-12v40,0,53,-36,53,-76v0,-42,-12,-78,-53,-78v-41,0,-53,35,-53,77v-1,42,12,77,53,77","w":204},"\u0110":{"d":"199,-130v0,81,-20,130,-95,130r-76,0r0,-127r-23,0r0,-13r23,0r0,-111r81,0v69,0,90,46,90,121xm107,-15v71,1,78,-61,75,-135v-2,-53,-21,-85,-75,-85r-62,0r0,95r54,0r0,13r-54,0r0,112r62,0","w":218,"k":{"J":14}},"\u0111":{"d":"12,-89v-4,-65,43,-111,103,-82v9,5,12,16,20,22r0,-60r-46,0r0,-11r46,0r0,-40r15,0r0,40r20,0r0,11r-20,0r0,209r-15,0v-1,-10,2,-23,-1,-31v-12,20,-26,34,-55,34v-51,0,-64,-42,-67,-92xm82,-12v40,0,53,-36,53,-76v0,-42,-12,-78,-53,-78v-41,0,-53,35,-53,77v-1,42,12,77,53,77","w":167},"\u0112":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm59,-277r0,-15r92,0r0,15r-92,0","w":190},"\u0113":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm43,-213r0,-15r92,0r0,15r-92,0","w":170,"k":{"\u201d":7,"\u2019":7}},"\u0114":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm150,-302v1,44,-76,53,-88,13v-2,-5,-4,-8,-4,-13r14,0v3,32,62,34,64,0r14,0","w":190},"\u0115":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm133,-243v1,45,-75,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v3,34,61,35,64,0r14,0","w":170,"k":{"\u201d":7,"\u2019":7}},"\u0116":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm93,-275r0,-19r19,0r0,19r-19,0","w":190},"\u0117":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm78,-219r0,-19r20,0r0,19r-20,0","w":170,"k":{"\u201d":7,"\u2019":7}},"\u0118":{"d":"211,55v-20,14,-62,6,-59,-22v2,-13,6,-24,15,-33r-139,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0v3,22,-14,29,-14,46v1,21,24,23,41,13","w":190},"\u0119":{"d":"169,44v-21,18,-72,4,-57,-32v1,-4,3,-9,6,-13v-63,16,-105,-21,-103,-87v2,-54,21,-92,72,-92v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-16,9,-34,54,0,54v6,0,13,-2,21,-6xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0","w":170,"k":{"\u201d":7,"\u2019":7}},"\u011a":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm149,-310r6,8r-45,39r-14,0r-47,-40r6,-7r47,30","w":190},"\u011b":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm134,-252r7,7r-45,44r-14,0r-47,-44r8,-8r45,35","w":170,"k":{"\u201d":7,"\u2019":7}},"\u011c":{"d":"35,-162v-2,75,-5,153,70,150v53,-2,75,-40,70,-100r-57,0r0,-15r74,0v6,77,-18,129,-87,130v-85,1,-87,-77,-87,-166v0,-94,131,-120,164,-43r-15,8v-9,-22,-32,-39,-62,-39v-46,1,-69,29,-70,75xm105,-293r-47,30r-6,-7r47,-40r14,0r45,39r-6,8","w":210},"\u011d":{"d":"84,-180v29,-1,44,13,56,31r0,-30r15,0v-6,108,38,282,-100,249v-8,-2,-16,-7,-23,-13r10,-12v33,30,102,11,98,-42v-1,-11,2,-26,-1,-35v-11,20,-26,34,-55,34v-51,-1,-67,-40,-67,-90v0,-49,14,-92,67,-92xm87,-166v-42,0,-54,36,-54,77v0,40,12,76,54,76v42,-1,53,-36,53,-77v0,-41,-12,-76,-53,-76xm87,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":179},"\u011e":{"d":"35,-162v-2,75,-5,153,70,150v53,-2,75,-40,70,-100r-57,0r0,-15r74,0v6,77,-18,129,-87,130v-85,1,-87,-77,-87,-166v0,-94,131,-120,164,-43r-15,8v-9,-22,-32,-39,-62,-39v-46,1,-69,29,-70,75xm151,-302v0,44,-75,52,-88,13v-2,-5,-4,-8,-4,-13r14,0v3,32,62,34,64,0r14,0","w":210},"\u011f":{"d":"84,-180v29,-1,44,13,56,31r0,-30r15,0v-6,108,38,282,-100,249v-8,-2,-16,-7,-23,-13r10,-12v33,30,102,11,98,-42v-1,-11,2,-26,-1,-35v-11,20,-26,34,-55,34v-51,-1,-67,-40,-67,-90v0,-49,14,-92,67,-92xm87,-166v-42,0,-54,36,-54,77v0,40,12,76,54,76v42,-1,53,-36,53,-77v0,-41,-12,-76,-53,-76xm137,-243v0,45,-74,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v4,32,61,37,64,0r14,0","w":179},"\u0120":{"d":"35,-162v-2,75,-5,153,70,150v53,-2,75,-40,70,-100r-57,0r0,-15r74,0v6,77,-18,129,-87,130v-85,1,-87,-77,-87,-166v0,-94,131,-120,164,-43r-15,8v-9,-22,-32,-39,-62,-39v-46,1,-69,29,-70,75xm95,-275r0,-19r19,0r0,19r-19,0","w":210},"\u0121":{"d":"84,-180v29,-1,44,13,56,31r0,-30r15,0v-6,108,38,282,-100,249v-8,-2,-16,-7,-23,-13r10,-12v33,30,102,11,98,-42v-1,-11,2,-26,-1,-35v-11,20,-26,34,-55,34v-51,-1,-67,-40,-67,-90v0,-49,14,-92,67,-92xm87,-166v-42,0,-54,36,-54,77v0,40,12,76,54,76v42,-1,53,-36,53,-77v0,-41,-12,-76,-53,-76xm82,-219r0,-19r20,0r0,19r-20,0","w":179},"\u0122":{"d":"35,-162v-2,75,-5,153,70,150v53,-2,75,-40,70,-100r-57,0r0,-15r74,0v6,77,-18,129,-87,130v-85,1,-87,-77,-87,-166v0,-94,131,-120,164,-43r-15,8v-9,-22,-32,-39,-62,-39v-46,1,-69,29,-70,75xm102,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":210},"\u0123":{"d":"98,-264r10,0r-10,33r7,0r0,24r-22,0v-3,-27,8,-40,15,-57xm84,-180v29,-1,44,13,56,31r0,-30r15,0v-6,108,38,282,-100,249v-8,-2,-16,-7,-23,-13r10,-12v33,30,102,11,98,-42v-1,-11,2,-26,-1,-35v-11,20,-26,34,-55,34v-51,-1,-67,-40,-67,-90v0,-49,14,-92,67,-92xm87,-166v-42,0,-54,36,-54,77v0,40,12,76,54,76v42,-1,53,-36,53,-77v0,-41,-12,-76,-53,-76","w":179},"\u0124":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm111,-293r-47,30r-6,-7r47,-40r13,0r46,39r-6,8","w":225},"\u0125":{"d":"44,-149v24,-49,121,-38,121,29r0,120r-16,0v-4,-68,22,-165,-52,-165v-73,0,-49,96,-53,165r-16,0r0,-260r16,0r0,111xm36,-293r-46,30r-7,-7r47,-40r14,0r45,39r-7,8","w":188},"\u0126":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-195r-20,0r0,-12r20,0r0,-44r17,0r0,44r135,0r0,-44r17,0r0,44r20,0r0,12r-20,0r0,195r-17,0xm180,-135r0,-60r-135,0r0,60r135,0","w":225},"\u0127":{"d":"97,-162v-72,0,-53,92,-55,162r-16,0r0,-211r-21,0r0,-14r21,0r0,-35r16,0r0,35r85,0r0,14r-85,0r0,67v20,-49,121,-42,121,28r0,116r-16,0v-5,-65,24,-162,-50,-162","w":182},"\u012a":{"d":"30,0r0,-251r16,0r0,251r-16,0xm-7,-277r0,-15r91,0r0,15r-91,0","w":76},"\u012c":{"d":"95,-302v1,43,-75,53,-87,13v-2,-5,-4,-8,-4,-13r14,0v3,33,61,33,64,0r13,0xm41,0r0,-251r17,0r0,251r-17,0","w":97},"\u012e":{"d":"74,54v-18,14,-61,9,-59,-21v1,-14,6,-24,15,-33r0,-251r16,0r-1,251v-15,11,-27,50,4,50v6,0,12,-2,20,-6","w":76},"\u012f":{"d":"72,54v-18,16,-63,7,-59,-21v1,-13,7,-24,15,-33r0,-179r16,0r0,179v-17,10,-27,49,3,50v6,0,12,-2,20,-6xm27,-251r17,0r0,18r-17,0r0,-18","w":71},"\u0130":{"d":"30,0r0,-251r16,0r0,251r-16,0xm28,-275r0,-19r20,0r0,19r-20,0","w":76},"\u0132":{"d":"30,0r0,-251r17,0r0,251r-17,0xm98,-29v33,32,96,12,96,-48r0,-174r17,0r0,180v8,69,-82,93,-125,53","w":236},"\u0133":{"d":"27,-251r18,0r0,18r-18,0r0,-18xm28,0r0,-179r16,0r0,179r-16,0xm96,-251r18,0r0,18r-18,0r0,-18xm113,28v-1,29,-20,48,-52,46v1,-6,-3,-17,6,-14v19,0,30,-13,29,-34r0,-204r17,0r0,206","w":142},"\u0134":{"d":"23,-30v34,33,97,11,97,-47r0,-174r16,0r0,180v7,69,-81,94,-125,53xm128,-294r-47,30r-6,-7r47,-39r13,0r46,39r-7,7","w":161},"\u0135":{"d":"54,28v-1,29,-20,48,-52,46v1,-6,-3,-17,6,-14v19,0,30,-13,29,-34r0,-204r17,0r0,206xm46,-235r-46,35r-7,-8r47,-44v22,-2,26,12,36,22r23,22r-8,7","w":91},"\u0136":{"d":"190,0r-84,-141r-61,75r0,66r-17,0r0,-251r17,0r0,160r131,-160r19,0r-78,96r92,155r-19,0xm93,78r10,-33r-6,0r0,-24r21,0v3,27,-8,40,-15,57r-10,0","w":218,"k":{"v":7,"w":7,"y":7,"\u0175":7,"\u1e81":7,"\u1e83":7,"\u1e85":7,"\u1ef3":7,"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":4,"\ue114":4,"\ue171":4,"\ue17a":4,"\ue17b":4,"\ue17c":4,"\ue116":11,"\ue11b":11,"\ue138":11,"\ue172":11,"\ue17d":11}},"\u0137":{"d":"152,0r-66,-102r-45,51r0,51r-15,0r0,-260r15,0r0,188r95,-107r19,0r-59,66r74,113r-18,0xm79,85r10,-33r-7,0r0,-24r22,0v3,27,-7,41,-15,57r-10,0","w":172},"\u0138":{"d":"86,-102r-45,51r0,51r-15,0r0,-179r15,0r0,107r95,-107r19,0r-59,66r75,113r-18,0","w":172},"\u0139":{"d":"28,0r0,-251r17,0r0,236r135,0r0,15r-152,0xm29,-270r49,-39r12,13r-54,34","w":190,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u013a":{"d":"41,-39v1,18,10,26,31,25v-1,5,3,16,-5,14v-27,-1,-42,-8,-41,-37r0,-223r15,0r0,221xm87,-302r-54,34r-7,-8r49,-39","w":78},"\u013b":{"d":"28,0r0,-251r17,0r0,236r135,0r0,15r-152,0xm101,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":190,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u013c":{"d":"41,-39v1,18,10,26,31,25v-1,5,3,16,-5,14v-27,-1,-42,-8,-41,-37r0,-223r15,0r0,221xm31,85r11,-33r-7,0r0,-24r22,0v3,27,-8,40,-15,57r-11,0","w":78},"\u013d":{"d":"28,0r0,-251r17,0r0,236r135,0r0,15r-152,0xm130,-194r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":190,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u013e":{"d":"72,-203r10,-33r-6,0r0,-24r21,0v2,28,-7,40,-15,57r-10,0xm41,-39v1,18,10,26,31,25v-1,5,3,16,-5,14v-27,-1,-42,-8,-41,-37r0,-223r15,0r0,221","w":102},"\u013f":{"d":"28,0r0,-251r17,0r0,236r135,0r0,15r-152,0xm105,-125r0,-19r19,0r0,19r-19,0","w":190,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u0140":{"d":"78,-147r20,0r0,19r-20,0r0,-19xm41,-39v1,18,10,26,31,25v-1,5,3,16,-5,14v-27,-1,-42,-8,-41,-37r0,-223r15,0r0,221","w":113},"\u0141":{"d":"36,0r0,-96r-30,17r-7,-12r37,-21r0,-139r17,0r0,129r48,-28r7,12r-55,32r0,91r135,0r0,15r-152,0","w":198,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u0142":{"d":"85,0v-63,9,-44,-64,-47,-116r-31,18r-7,-12r38,-22r0,-128r16,0r0,119r38,-21r7,11r-45,26v7,41,-22,115,31,111r0,14","w":98},"\u0143":{"d":"193,0r-147,-222r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,251r-17,0xm96,-270r49,-39r13,13r-55,34","w":238},"\u0144":{"d":"39,-149v23,-50,119,-37,119,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-49,96,-53,165r-15,0r0,-179r15,0v2,9,-3,25,2,30xm76,-207r29,-55r17,6r-36,53","w":180},"\u0145":{"d":"193,0r-147,-222r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,251r-17,0xm129,16v3,27,-8,40,-15,57r-10,0r10,-33r-7,0r0,-24r22,0","w":238},"\u0146":{"d":"39,-149v23,-50,119,-37,119,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-49,96,-53,165r-15,0r0,-179r15,0v2,9,-3,25,2,30xm85,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":180},"\u0147":{"d":"193,0r-147,-222r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,251r-17,0xm119,-280r47,-30r6,8r-46,39r-13,0r-47,-39v13,-18,36,17,53,22","w":238},"\u0148":{"d":"39,-149v23,-50,119,-37,119,29r0,120r-15,0v-5,-68,23,-165,-53,-165v-73,0,-49,96,-53,165r-15,0r0,-179r15,0v2,9,-3,25,2,30xm132,-252r8,7r-45,44r-14,0r-47,-44r7,-8r46,35","w":180},"\u0149":{"d":"56,-149v25,-48,121,-38,121,29r0,120r-16,0v-5,-67,22,-165,-52,-165v-73,0,-49,97,-53,165r-16,0r0,-179r16,0r0,30xm12,-177r-10,0r10,-33r-6,0r0,-23r21,0v3,27,-8,40,-15,56","w":199},"\u014a":{"d":"210,24v4,35,-34,46,-59,29r5,-12v18,10,38,8,38,-15r0,-25r-148,-223r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,275","w":242},"\u014b":{"d":"158,24v4,35,-34,46,-59,29r5,-12v18,10,41,8,39,-15v-6,-72,29,-190,-50,-191v-74,-1,-54,94,-56,165r-15,0r0,-179r15,0v2,9,-3,25,2,30v22,-49,119,-38,119,29r0,144","w":180},"\u014c":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm59,-277r0,-15r92,0r0,15r-92,0","w":205,"k":{"J":14}},"\u014d":{"d":"44,-213r0,-15r92,0r0,15r-92,0xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u014e":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm150,-302v0,50,-91,51,-91,0r13,0v3,32,63,35,64,0r14,0","w":205,"k":{"J":14}},"\u014f":{"d":"134,-243v0,44,-75,54,-88,14v-2,-5,-4,-9,-4,-14r14,0v3,34,61,35,64,0r14,0xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u0150":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm112,-270r49,-39r13,13r-54,34xm70,-270r49,-39r12,13r-54,34","w":205,"k":{"J":14}},"\u0151":{"d":"64,-207r28,-55r17,6r-35,53xm100,-207r29,-55r17,6r-36,53xm16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176},"\u0154":{"d":"197,-186v0,39,-27,64,-61,69r62,117r-21,0r-59,-116r-72,0r0,116r-17,0r0,-251v77,0,168,-13,168,65xm46,-131v62,0,133,10,133,-55v0,-62,-73,-49,-133,-50r0,105xm78,-270r49,-39r13,13r-55,34","w":210},"\u0155":{"d":"41,-148v13,-26,46,-40,83,-28r-7,16v-38,-17,-76,8,-76,51r0,109r-15,0r0,-179r15,0r0,31xm51,-207r29,-55r17,6r-36,53","w":122,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11}},"\u0156":{"d":"197,-186v0,39,-27,64,-61,69r62,117r-21,0r-59,-116r-72,0r0,116r-17,0r0,-251v77,0,168,-13,168,65xm46,-131v62,0,133,10,133,-55v0,-62,-73,-49,-133,-50r0,105xm102,78r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-8,40,-15,57","w":210},"\u0157":{"d":"41,-148v13,-26,46,-40,83,-28r-7,16v-38,-17,-76,8,-76,51r0,109r-15,0r0,-179r15,0r0,31xm31,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":122,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11}},"\u0158":{"d":"197,-186v0,39,-27,64,-61,69r62,117r-21,0r-59,-116r-72,0r0,116r-17,0r0,-251v77,0,168,-13,168,65xm46,-131v62,0,133,10,133,-55v0,-62,-73,-49,-133,-50r0,105xm145,-310r6,8r-45,39r-13,0r-48,-40r6,-7r47,30","w":210},"\u0159":{"d":"41,-148v13,-26,46,-40,83,-28r-7,16v-38,-17,-76,8,-76,51r0,109r-15,0r0,-179r15,0r0,31xm110,-252r7,7r-45,44r-13,0r-47,-44r7,-8r46,35","w":122,"k":{"r":18,"o":11,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11}},"\u0162":{"d":"95,-236r0,236r-17,0r0,-236r-75,0r0,-15r167,0r0,15r-75,0xm82,85r-10,0r10,-33r-6,0r0,-24r22,0v3,27,-8,41,-16,57","w":172,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"\u0163":{"d":"35,85v4,-12,5,-22,10,-33r-7,0r0,-24r22,0v3,27,-8,40,-15,57r-10,0xm49,-43v-1,23,12,32,38,29r0,14v-36,3,-54,-8,-54,-42r0,-123r-24,0r0,-14r24,0r0,-47r16,0r0,47r33,0r0,14r-33,0r0,122","w":95},"\u0164":{"d":"95,-236r0,236r-17,0r0,-236r-75,0r0,-15r167,0r0,15r-75,0xm132,-310r7,8r-46,39r-13,0r-47,-40r6,-7r47,30","w":172,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"\u0165":{"d":"49,-43v-1,23,12,32,38,29r0,14v-36,3,-54,-8,-54,-42r0,-123r-24,0r0,-14r24,0r0,-47r16,0r0,47r33,0r0,14r-33,0r0,122xm74,-206r11,-33r-7,0r0,-24r22,0v3,27,-8,40,-15,57r-11,0","w":109},"\u0166":{"d":"95,-236r0,96r55,0r0,13r-55,0r0,127r-17,0r0,-127r-56,0r0,-13r56,0r0,-96r-75,0r0,-15r167,0r0,15r-75,0","w":172,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue131":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"o":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f0":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue11f":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue0ff":25,"\ue101":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16b":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18}},"\u0167":{"d":"87,0v-33,3,-55,-7,-54,-37r0,-58r-25,0r0,-12r25,0r0,-58r-24,0r0,-14r24,0r0,-47r16,0r0,47r33,0r0,14r-33,0r0,58r32,0r0,12r-32,0v2,38,-13,89,38,81r0,14","w":95},"\u016a":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm59,-277r0,-15r92,0r0,15r-92,0","w":218},"\u016b":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm46,-213r0,-15r92,0r0,15r-92,0","w":186},"\u016c":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm153,-297v0,52,-92,52,-91,0r14,0v3,33,61,36,63,0r14,0","w":218},"\u016d":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm138,-243v1,45,-75,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v3,33,62,36,64,0r14,0","w":186},"\u016e":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm142,-290v0,18,-15,33,-33,33v-18,0,-32,-15,-32,-33v-1,-18,14,-33,32,-32v18,0,33,14,33,32xm132,-290v0,-12,-10,-22,-23,-22v-12,0,-23,9,-22,22v0,13,10,23,22,23v12,0,23,-11,23,-23","w":218},"\u016f":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm123,-231v0,18,-15,32,-32,32v-17,0,-33,-15,-33,-32v0,-18,14,-33,33,-33v18,0,33,15,32,33xm113,-231v0,-13,-9,-23,-22,-23v-13,0,-23,11,-23,23v0,12,10,22,23,22v12,0,22,-9,22,-22","w":186},"\u0170":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm115,-270r49,-39r12,13r-54,34xm73,-270r48,-39r13,13r-54,34","w":218},"\u0171":{"d":"92,-13v73,1,49,-97,53,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-29r0,-121r16,0r0,115v-1,32,22,51,53,51xm64,-207r28,-55r17,6r-35,53xm100,-207r29,-55r17,6r-36,53","w":186},"\u0172":{"d":"151,54v-20,14,-59,9,-59,-21v0,-13,4,-22,12,-31v-50,-4,-81,-36,-81,-88r0,-165r17,0v7,95,-31,236,69,237v102,1,61,-143,69,-237r17,0v-9,99,36,242,-77,252v-13,13,-20,49,8,48v6,0,12,-2,20,-6","w":218},"\u0173":{"d":"189,54v-18,14,-62,9,-59,-21v1,-14,5,-24,14,-33r0,-29v-22,49,-121,37,-121,-29r0,-121r16,0v4,68,-22,166,53,166v73,0,49,-97,53,-166r15,0r0,179v-16,10,-27,50,3,49v6,0,13,-1,21,-5","w":186},"\u0174":{"d":"223,0r-16,0r-62,-221r-61,221r-16,0r-61,-251r17,0r53,223r62,-223r14,0r62,223r52,-223r17,0xm199,-270v-16,15,-35,-18,-53,-23r-47,31r-6,-8r47,-40r13,0","w":291,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u0175":{"d":"194,0r-16,0r-52,-154r-52,154r-16,0r-55,-178r17,0r47,155r51,-155r16,0r52,156r47,-156r17,0xm126,-235r-45,35r-8,-8r47,-44r14,0r45,44r-8,7","w":253,"k":{"e":7}},"\u0176":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm132,-263r-47,-30r-46,31r-7,-8r47,-40r14,0r45,40","w":171,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u0177":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0xm77,-235r-45,35r-8,-8r48,-44r13,0r45,44r-7,7","w":150},"\u0179":{"d":"12,0r0,-15r133,-221r-127,0r0,-15r146,0r0,15r-133,221r133,0r0,15r-152,0xm73,-270r48,-39r13,13r-54,34","w":175},"\u017a":{"d":"13,0r0,-13r108,-152r-103,0r0,-13r121,0r0,13r-108,151r108,0r0,14r-126,0xm72,-207r28,-55r17,6r-35,53","w":151},"\u017b":{"d":"12,0r0,-15r133,-221r-127,0r0,-15r146,0r0,15r-133,221r133,0r0,15r-152,0xm83,-275r0,-19r20,0r0,19r-20,0","w":175},"\u017c":{"d":"13,0r0,-13r108,-152r-103,0r0,-13r121,0r0,13r-108,151r108,0r0,14r-126,0xm69,-219r0,-19r20,0r0,19r-20,0","w":151},"\u01fc":{"d":"167,0r0,-67r-105,0r-42,67r-19,0r158,-251r160,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm72,-81r95,0r0,-153xm211,-270r49,-39r13,13r-55,34","w":330},"\u01fd":{"d":"26,-161v30,-27,115,-30,122,17v11,-21,28,-37,60,-36v53,1,72,39,70,94r-127,0v0,44,16,75,61,75v16,0,34,-7,43,-15r10,11v-33,28,-107,21,-119,-21v-14,49,-133,56,-133,-11v0,-59,64,-53,123,-52v4,-41,-7,-68,-47,-67v-21,1,-41,5,-53,17xm78,-12v45,0,63,-25,58,-74v-47,1,-107,-9,-108,37v0,26,22,37,50,37xm262,-99v5,-59,-58,-88,-94,-49v-10,12,-15,28,-16,49r110,0xm156,-203r-10,-4r28,-55r18,7","w":287},"\u01fe":{"d":"16,-89v-4,-87,2,-165,87,-163v26,0,46,9,60,22r15,-22r10,6r-17,26v24,26,18,82,18,131v0,57,-30,92,-86,92v-29,0,-49,-9,-63,-25r-16,23r-9,-6r17,-26v-10,-15,-15,-35,-16,-58xm103,-13v79,0,73,-97,65,-172v-1,-7,-4,-13,-7,-19r-111,167v11,14,28,24,53,24xm153,-215v-12,-12,-27,-22,-50,-22v-80,0,-76,95,-67,170v1,7,4,13,7,19xm86,-270r49,-39r13,13r-55,34","w":205,"k":{"J":14}},"\u01ff":{"d":"32,-23v-31,-54,-21,-157,57,-157v21,0,36,6,47,17r15,-20r9,7r-16,21v31,52,22,157,-57,157v-22,0,-37,-6,-48,-17r-13,19r-9,-7xm49,-28v30,33,99,10,94,-43v-2,-27,3,-53,-9,-70xm127,-150v-31,-34,-98,-8,-94,43v2,26,-3,54,9,70xm79,-207r29,-55r17,6r-36,53","w":176},"\u012b":{"d":"31,0r0,-179r16,0r0,179r-16,0xm-8,-213r0,-15r92,0r0,15r-92,0","w":77},"\u012d":{"d":"36,0r0,-179r17,0r0,179r-17,0xm13,-245v2,33,61,35,64,0r13,0v1,44,-74,53,-87,14v-2,-5,-4,-9,-4,-14r14,0","w":92},"\u0401":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0xm128,-273r0,-19r19,0r0,19r-19,0xm63,-273r0,-19r20,0r0,19r-20,0","w":190},"\u0403":{"d":"46,-235r0,235r-18,0r0,-251r152,0r0,16r-134,0xm77,-270r49,-39r13,13r-55,34","w":182,"k":{"\u044f":50,"\u0447":40,"\u0436":43,"\u0431":29,"\u042f":7,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0444":40,"\u0454":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u044e":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0406":{"d":"30,0r0,-251r16,0r0,251r-16,0","w":76},"\u0407":{"d":"30,0r0,-251r16,0r0,251r-16,0xm63,-283r0,-20r19,0r0,20r-19,0xm-5,-283r0,-20r19,0r0,20r-19,0","w":76},"\u0408":{"d":"23,-29v33,32,97,11,97,-48r0,-174r16,0r0,180v7,70,-82,93,-125,53","w":161},"\u0410":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0","w":210,"k":{"\u042a":11,"\u0427":14,"\u040b":11,"\u0402":11,"\u0422":11}},"\u0412":{"d":"149,-130v28,9,48,28,48,63v0,41,-26,67,-68,67r-101,0r0,-251v76,0,164,-11,163,64v-1,30,-17,50,-42,57xm174,-186v0,-58,-70,-51,-129,-50r0,100v59,1,129,8,129,-50xm179,-68v0,-63,-72,-53,-134,-53r0,106v62,1,134,9,134,-53","w":210},"\u0413":{"d":"46,-235r0,235r-18,0r0,-251r152,0r0,16r-134,0","w":182,"k":{"\u044f":50,"\u0447":40,"\u0436":43,"\u0431":29,"\u042f":7,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0444":40,"\u0454":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u044e":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0415":{"d":"28,0r0,-251r152,0r0,16r-135,0r0,100r116,0r0,15r-116,0r0,105r135,0r0,15r-152,0","w":190},"\u041a":{"d":"28,0r0,-250r16,0r0,113v47,-1,93,7,108,-38r24,-75r17,0v-18,41,-19,101,-59,119v48,17,43,86,63,131r-18,0v-19,-45,-11,-122,-70,-122r-65,0r0,122r-16,0","w":204},"\u041c":{"d":"225,-213r-83,174r-14,0r-83,-174r-1,213r-16,0r0,-251r17,0r90,191r91,-191r16,0r0,251r-17,0r0,-213","w":266},"\u041d":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0","w":225},"\u041e":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76","w":205},"\u041f":{"d":"180,0r0,-236r-135,0r0,236r-17,0r0,-251r169,0r0,251r-17,0","w":225},"\u0420":{"d":"29,-251v81,-1,170,-10,167,73v-2,43,-29,71,-74,71r-76,0r0,107r-17,0r0,-251xm46,-123v63,1,132,8,132,-56v0,-64,-69,-57,-132,-56r0,112","w":199,"k":{"\u0434":18,",":36,"\u0459":18,"\u043b":18,"\u0414":22,"\u0430":7,"\u0410":11,"\u2026":36,".":36}},"\u0421":{"d":"36,-88v0,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-70,74,-70,149","w":190},"\u0422":{"d":"95,-236r0,236r-17,0r0,-236r-75,0r0,-15r167,0r0,15r-75,0","w":172,"k":{"\u041e":7,"\u0414":29,"\u0404":7,"\u0424":11,"\u0421":7,"\u0410":18}},"\u0424":{"d":"139,-239v71,2,108,40,108,111v0,70,-41,103,-108,107r0,21r-16,0r0,-21v-68,-3,-106,-38,-106,-107v0,-70,36,-107,106,-110r0,-13r16,0r0,12xm139,-35v105,14,122,-155,38,-184v-11,-4,-24,-6,-38,-6r0,190xm123,-225v-102,-11,-121,150,-41,182v11,5,25,7,41,8r0,-190","w":261,"k":{"\u0434":18,",":14,"\u0459":18,"\u043b":18,"\u0414":7,"\u2026":14,".":14}},"\u0425":{"d":"157,0r-67,-114r-67,114r-19,0r77,-129r-72,-122r19,0r62,108r62,-108r19,0r-72,122r77,129r-19,0","w":180},"\u0430":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37","w":170},"\u0435":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0","w":170},"\u043a":{"d":"23,0r0,-178r16,0r0,81v36,-2,72,8,83,-27r17,-54r15,0v-12,30,-13,73,-42,85v34,11,31,61,45,93r-16,0v-14,-31,-8,-85,-51,-84r-51,0r0,84r-16,0","w":168},"\u043e":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76","w":176,"k":{"\u0459":7,"\u043b":7,"\u0434":7}},"\u043f":{"d":"147,0r0,-165r-106,0r0,165r-15,0r0,-178r136,0r0,178r-15,0","w":187},"\u0440":{"d":"90,2v-29,0,-41,-14,-53,-32r0,102r-16,0r0,-251r16,0r0,31v12,-18,27,-33,55,-33v50,0,67,42,67,92v0,51,-18,90,-69,91xm89,-166v-42,0,-51,36,-52,76v0,42,11,77,52,77v42,0,53,-35,53,-76v0,-41,-10,-77,-53,-77","w":177},"\u0441":{"d":"27,-89v-8,66,64,97,105,61r10,10v-13,11,-29,21,-52,21v-53,-2,-75,-36,-79,-92v-5,-78,76,-116,131,-72r-10,12v-40,-38,-115,-6,-105,60","w":149},"\u0443":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0","w":150,"k":{"\u0434":14,"\u043b":14,"\u0459":14}},"\u0445":{"d":"130,0r-51,-80r-50,80r-19,0r60,-91r-57,-87r19,0r47,76r47,-76r19,0r-56,87r59,91r-18,0","w":158},"\u0451":{"d":"87,-180v53,0,72,38,71,93r-127,0v-10,66,59,95,104,61r9,11v-53,40,-136,8,-129,-73v5,-54,21,-92,72,-92xm141,-100v6,-60,-59,-86,-94,-49v-11,11,-15,28,-16,49r110,0xm113,-221r0,-20r19,0r0,20r-19,0xm45,-221r0,-20r19,0r0,20r-19,0","w":170},"\u0456":{"d":"27,-233r0,-18r18,0r0,18r-18,0xm28,0r0,-179r16,0r0,179r-16,0","w":71},"\u0457":{"d":"58,-219r0,-19r19,0r0,19r-19,0xm-10,-219r0,-19r19,0r0,19r-19,0xm26,0r0,-179r17,0r0,179r-17,0","w":68},"\u0458":{"d":"31,-251r18,0r0,18r-18,0r0,-18xm49,28v-1,29,-20,48,-52,46v1,-6,-3,-17,6,-14v19,0,30,-13,29,-34r0,-204r17,0r0,206","w":78},"\u045e":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0xm45,-243v3,33,62,36,64,0r14,0v1,44,-75,55,-88,14v-2,-5,-4,-9,-4,-14r14,0","w":150,"k":{"\u0434":14,"\u043b":14,"\u0459":14}},"\u0402":{"d":"95,-141v14,-15,40,-26,67,-28v92,-6,97,146,25,169v-12,4,-25,6,-41,6r0,-14v50,1,74,-26,74,-74v0,-41,-19,-72,-60,-72v-29,1,-50,14,-65,33r0,121r-17,0r0,-236r-75,0r0,-15r195,0r0,15r-103,0r0,95","w":245},"\u0404":{"d":"36,-88v-10,82,113,99,133,33r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-56,1,-75,41,-70,102r98,0r0,15r-98,0r0,32","w":187},"\u040a":{"d":"320,-69v0,81,-89,69,-167,69r0,-121r-108,0r0,121r-17,0r0,-251r17,0r0,115r108,0r0,-115r18,0r0,115v73,-2,149,-6,149,67xm171,-15v61,0,133,10,132,-53v-1,-61,-70,-54,-132,-53r0,106","w":326,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u040b":{"d":"95,-141v38,-40,136,-43,136,37r0,104r-16,0v-4,-64,20,-157,-51,-154v-29,1,-51,14,-69,31r0,123r-17,0r0,-236r-75,0r0,-15r195,0r0,15r-103,0r0,95","w":246},"\u040f":{"d":"195,-250r0,250r-74,0r0,60r-20,0r0,-60r-74,0r0,-250r18,0r0,235r133,0r0,-235r17,0","w":222},"\u0411":{"d":"185,-69v0,79,-88,70,-167,69r0,-251r145,0r0,16r-128,0r0,99v74,-3,150,-4,150,67xm35,-15v61,-1,132,11,132,-53v0,-61,-70,-54,-132,-53r0,106","w":195},"\u0414":{"d":"217,-15r18,0r0,70r-17,0r0,-55r-194,0r0,55r-17,0r0,-68v75,-21,45,-146,59,-238r151,0r0,236xm199,-235r-117,0r-5,95v-4,55,-6,97,-31,125r153,0r0,-220","w":250},"\u0416":{"d":"146,-251r17,0r0,114v43,0,81,3,95,-38r25,-75r15,0v-17,42,-18,102,-59,119v49,15,44,86,64,131r-18,0v-19,-45,-11,-117,-70,-122r-52,0r0,122r-17,0r0,-122v-46,-1,-85,-4,-98,41r-24,81r-18,0v13,-38,20,-82,38,-114v6,-9,13,-14,25,-17v-40,-17,-41,-78,-59,-119r17,0v20,42,13,110,72,113r47,0r0,-114","w":309},"\u0417":{"d":"182,-75v7,95,-150,98,-175,27r15,-7v12,25,38,43,74,43v41,0,69,-22,69,-62v0,-45,-38,-55,-88,-52r0,-15v47,3,83,-8,83,-50v0,-65,-115,-54,-131,-8r-15,-7v20,-59,165,-69,163,14v-1,30,-17,49,-41,58v28,8,44,27,46,59","w":197},"\u0418":{"d":"191,0r-1,-220r-148,220r-16,0r0,-251r16,0r1,223r149,-223r15,0r0,251r-16,0","w":231},"\u0423":{"d":"175,-251r-91,229v-10,19,-25,28,-56,25r0,-16v37,4,44,-19,54,-46r-76,-191r19,0r67,171r65,-172r18,0","w":178,"k":{"\u044f":18,"\u0447":18,"\u0431":14,"\u0414":29,"\u0445":14,"\u0430":22,"\u0424":7,"\u0410":25,",":25,".":25,"\u2026":25,"\u041e":4,"\u0421":4,"\u0404":4,"\u0435":22,"\u043e":22,"\u0441":22,"\u0451":22,"\u0444":22,"\u0454":22,"\u043a":25,"\u043f":25,"\u0440":25,"\u0456":25,"\u0457":25,"\u0432":25,"\u0433":25,"\u0438":25,"\u043c":25,"\u043d":25,"\u0446":25,"\u0448":25,"\u0449":25,"\u044c":25,"\u044e":25,"\u0453":25,"\u045a":25,"\u045f":25,"\u0491":25,"\u045c":25,"\u0439":25,"\u0443":14,"\u045e":14,"\u0434":32,"\u043b":32,"\u0459":32,"\u0437":14,"\u044d":14,"\u04d9":14,"\u044a":7,"\u0442":7}},"\u0426":{"d":"199,0r-171,0r0,-251r17,0r0,236r135,0r0,-236r17,0r0,236r19,0r0,70r-17,0r0,-55","w":225},"\u0427":{"d":"97,-118v27,-2,51,-9,69,-23r0,-110r17,0r0,251r-17,0r0,-125v-50,36,-152,29,-145,-52r0,-74r16,0v-1,66,-7,136,60,133","w":211},"\u0428":{"d":"312,-251r0,251r-285,0r0,-251r17,0r0,236r115,0r0,-236r18,0r0,236r118,0r0,-236r17,0","w":338},"\u0429":{"d":"314,0r-288,0r0,-251r18,0r0,236r115,0r0,-236r17,0r0,236r118,0r0,-236r18,0r0,236r19,0r0,70r-17,0r0,-55","w":342},"\u042a":{"d":"89,-136v74,-3,150,-4,150,67v0,80,-88,70,-167,69r0,-235r-69,0r0,-16r86,0r0,115xm89,-15v61,-1,132,11,132,-53v0,-61,-70,-54,-132,-53r0,106","w":249,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u042b":{"d":"197,-69v1,80,-89,70,-168,69r0,-251r17,0r0,115v74,-2,151,-5,151,67xm222,0r0,-251r17,0r0,251r-17,0xm46,-15v62,0,134,11,133,-53v-1,-61,-71,-54,-133,-53r0,106","w":266},"\u042c":{"d":"185,-69v0,81,-89,69,-167,69r0,-251r17,0r0,115v74,-3,150,-4,150,67xm35,-15v61,-1,132,11,132,-53v0,-61,-70,-54,-132,-53r0,106","w":197,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u042d":{"d":"82,-13v60,0,76,-45,71,-109r-98,0r0,-15r98,0v4,-59,-11,-100,-66,-100v-31,0,-54,17,-64,39r-14,-8v11,-26,40,-46,78,-46v85,0,83,78,83,163v0,99,-135,124,-166,41r15,-7v10,24,30,42,63,42","w":191},"\u042e":{"d":"85,-134v-4,-70,16,-117,82,-118v84,-2,86,79,82,164v-1,55,-27,91,-82,91v-67,0,-87,-50,-82,-123r-39,0r0,120r-18,0r0,-251r18,0r0,117r39,0xm231,-89v0,-72,8,-148,-64,-148v-72,0,-67,76,-65,149v1,45,20,75,65,75v44,0,64,-30,64,-76","w":266},"\u042f":{"d":"171,-236v-61,0,-131,-11,-131,53v0,63,71,50,131,51r0,-104xm22,-183v0,-43,29,-68,74,-68r92,0r0,251r-17,0r0,-118v-52,1,-106,-10,-120,42r-20,76r-18,0v16,-43,13,-105,54,-122v-27,-9,-45,-27,-45,-61","w":216},"\u0431":{"d":"87,2v-99,7,-84,-157,-48,-214v18,-29,64,-37,102,-50r5,13v-58,16,-120,36,-114,111v8,-19,32,-35,58,-34v50,2,68,30,68,86v0,56,-20,84,-71,88xm143,-85v0,-45,-12,-72,-55,-72v-41,0,-56,32,-57,73v-1,43,13,71,55,72v43,1,57,-30,57,-73","w":172},"\u0432":{"d":"125,-93v19,6,32,21,32,44v0,60,-75,49,-136,49r0,-178v57,2,132,-13,131,46v-1,18,-10,34,-27,39xm37,-98v42,-1,99,9,99,-33v0,-42,-56,-34,-99,-34r0,67xm37,-14v45,-1,103,9,104,-35v0,-47,-59,-35,-104,-36r0,71","w":165},"\u0433":{"d":"37,-165r0,165r-16,0r0,-178r122,0r0,13r-106,0","w":144,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0434":{"d":"188,48r-16,0r0,-48r-150,0r0,48r-16,0r0,-61v60,-10,38,-103,48,-165r118,0r0,164r16,0r0,62xm68,-165v-3,56,-1,120,-27,151r115,0r0,-151r-88,0","w":203},"\u0436":{"d":"118,-97r0,-81r16,0r0,81v33,0,65,4,75,-27r17,-54r15,0v-12,30,-13,73,-42,85v34,11,31,61,45,93r-15,0v-15,-30,-8,-85,-52,-84r-43,0r0,84r-16,0r0,-84v-36,1,-69,-8,-79,28r-16,56r-16,0v13,-33,12,-80,45,-93v-30,-12,-28,-58,-42,-85r16,0v13,31,9,79,51,81r41,0","w":252},"\u0437":{"d":"54,-99v33,1,63,-3,64,-33v1,-44,-73,-39,-96,-18r-10,-11v30,-27,124,-30,122,27v-1,22,-14,34,-31,41v64,24,29,100,-34,96v-24,-1,-51,-7,-64,-19r10,-11v28,22,108,23,107,-24v-1,-33,-32,-37,-68,-35r0,-13","w":152},"\u0438":{"d":"149,0r0,-152r-112,152r-16,0r0,-178r16,0r0,154r114,-154r14,0r0,178r-16,0","w":185},"\u043c":{"d":"178,0r0,-145r-64,118r-12,0r-65,-118r0,145r-16,0r0,-178v28,-5,24,26,37,40r50,93r71,-133r15,0r0,178r-16,0","w":211},"\u043d":{"d":"141,0r0,-84r-104,0r0,84r-16,0r0,-178r16,0r0,82r104,0r0,-82r16,0r0,178r-16,0","w":177},"\u0444":{"d":"111,-11v76,9,85,-126,28,-150v-8,-3,-18,-5,-28,-5r0,155xm17,-90v0,-57,24,-89,79,-90r0,-80r15,0r0,80v57,0,79,33,79,92v0,57,-24,90,-79,90r0,70r-15,0r0,-70v-55,-1,-79,-33,-79,-92xm96,-166v-59,-3,-71,53,-60,111v5,26,26,45,60,44r0,-155","w":204},"\u0446":{"d":"22,0r0,-178r15,0r0,164r106,0r0,-164r15,0r0,164r17,0r0,62r-16,0r0,-48r-137,0","w":186},"\u0447":{"d":"27,-128v-3,56,72,50,102,26r0,-76r15,0r0,178r-15,0r0,-86v-41,26,-123,26,-118,-40r0,-52r16,0r0,50","w":165},"\u0448":{"d":"259,-178r0,178r-237,0r0,-178r15,0r0,164r94,0r0,-164r16,0r0,164r96,0r0,-164r16,0","w":280},"\u0449":{"d":"22,0r0,-178r15,0r0,164r94,0r0,-164r16,0r0,164r96,0r0,-164r16,0r0,164r17,0r0,62r-16,0r0,-48r-238,0","w":286},"\u044a":{"d":"72,-14v46,-1,104,9,104,-37v0,-43,-58,-37,-104,-36r0,73xm192,-51v0,61,-74,51,-135,51r0,-165r-55,0r0,-13r71,0r0,76v58,-2,119,-4,119,51","w":198,"k":{"\u0442":11,"\u044a":11}},"\u044b":{"d":"172,0r0,-178r16,0r0,178r-16,0xm34,-14v45,-1,103,10,103,-37v0,-44,-58,-36,-103,-36r0,73xm153,-51v0,62,-74,51,-135,51r0,-178r16,0r0,76v58,-2,119,-4,119,51","w":209},"\u044c":{"d":"33,-14v46,-1,103,9,103,-37v0,-43,-58,-36,-103,-36r0,73xm152,-51v0,62,-74,51,-135,51r0,-178r16,0r0,76v58,-2,119,-4,119,51","w":157},"\u044d":{"d":"14,-28v21,19,71,22,90,-4v10,-14,17,-31,17,-53r-79,0r0,-13r79,0v7,-62,-63,-85,-103,-52r-10,-11v13,-11,35,-19,57,-19v52,0,69,34,72,88v5,80,-74,120,-133,76","w":153},"\u044e":{"d":"129,2v-48,0,-68,-35,-69,-86r-25,0r0,84r-16,0r0,-178r16,0r0,82r25,0v2,-51,21,-85,70,-85v49,0,70,36,68,93v-2,54,-18,90,-69,90xm182,-89v0,-48,-12,-78,-52,-78v-40,0,-54,32,-54,78v0,46,12,77,53,77v39,0,53,-34,53,-77","w":212},"\u044f":{"d":"47,-86v-20,-4,-31,-21,-31,-42v-2,-62,74,-50,134,-50r0,178r-15,0r0,-81v-39,3,-87,-12,-96,27r-13,54r-17,0v12,-30,8,-75,38,-86xm135,-165v-45,1,-104,-11,-104,37v0,46,61,30,104,33r0,-70","w":172},"\u0452":{"d":"96,-164v-69,1,-55,94,-56,164r-15,0r0,-211r-22,0r0,-13r22,0r0,-36r15,0r0,36r90,0r0,13r-90,0v1,22,-2,49,1,69v12,-24,31,-36,59,-36v48,1,69,35,68,90v-2,56,-26,92,-84,92v1,-4,-3,-13,2,-13v46,-1,67,-31,67,-77v0,-44,-13,-77,-57,-78","w":190},"\u0453":{"d":"35,-163r0,163r-16,0r0,-177r122,0r0,14r-106,0xm67,-207r29,-55r17,6r-36,53","w":141,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0454":{"d":"143,-18v-13,11,-30,21,-53,21v-54,-1,-79,-33,-79,-90v0,-78,75,-118,131,-75r-10,12v-41,-38,-112,0,-105,54r78,0r0,12r-78,0v2,43,19,73,64,72v15,0,35,-8,42,-16","w":146},"\u045a":{"d":"136,-14v46,-1,103,10,103,-38v0,-46,-58,-36,-103,-37r0,75xm256,-53v1,63,-73,53,-135,53r0,-89r-84,0r0,89r-15,0r0,-178r15,0r0,75r84,0r0,-75r15,0r0,75v58,-2,119,-4,120,50","w":266},"\u045b":{"d":"97,-162v-72,0,-53,92,-55,162r-16,0r0,-211r-21,0r0,-14r21,0r0,-35r16,0r0,35r84,0r0,14r-84,0r0,67v21,-49,121,-43,121,28r0,116r-16,0v-5,-65,24,-162,-50,-162","w":182},"\u045f":{"d":"159,-179r0,179r-60,0r0,48r-17,0r0,-48r-60,0r0,-179r16,0r0,165r105,0r0,-165r16,0","w":181},"\u0490":{"d":"180,-235r-134,0r0,235r-18,0r0,-251r136,0r0,-41r16,0r0,57","w":182,"k":{"\u044f":50,"\u0447":40,"\u0436":43,"\u0431":29,"\u042f":7,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0444":40,"\u0454":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u044e":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0491":{"d":"143,-164r-106,0r0,164r-16,0r0,-178r107,0r0,-37r15,0r0,51","w":144,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0442":{"d":"76,-165r0,165r-16,0r0,-165r-59,0r0,-13r135,0r0,13r-60,0","w":136,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0444":7,"\u0454":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u2044":{"d":"-40,9r-13,0r153,-267r13,0","w":54,"k":{"\ue2fd":-7,"\ue2fc":-14,"\ue2fb":-22,"\ue2fa":11,"\ue2f9":-22,"\ue2f8":7,"\ue2f7":-4}},"\u2215":{"d":"-40,9r-13,0r153,-267r13,0","w":54},"\u2113":{"d":"106,-10v25,0,34,-19,44,-39r15,5v-12,25,-28,48,-60,48v-43,0,-61,-36,-56,-85v-6,6,-17,10,-24,15v-8,-16,16,-19,24,-28v2,-69,-14,-161,54,-161v24,0,39,18,38,45v-3,54,-41,87,-77,121v-2,42,3,78,42,79xm102,-242v-52,0,-35,82,-38,136v33,-31,63,-57,63,-102v0,-18,-6,-34,-25,-34","w":181},"\u2116":{"d":"164,0r-120,-221r0,221r-17,0r0,-251r17,0r121,220r0,-220r16,0r0,251r-17,0xm200,-193v1,-36,16,-59,52,-59v33,0,49,21,49,59v0,41,-15,61,-51,61v-35,0,-51,-23,-50,-61xm289,-193v0,-30,-11,-48,-37,-48v-27,0,-39,18,-39,49v0,30,11,48,38,48v28,-1,38,-19,38,-49xm206,-115r89,0r0,12r-89,0r0,-12","w":318},"\u212e":{"d":"24,-117v-7,-131,202,-161,242,-48v6,15,10,32,11,50r-208,0r0,70v26,54,133,52,165,4r16,0v-20,25,-57,45,-99,45v-73,0,-123,-47,-127,-121xm151,-232v-35,0,-62,22,-82,43r0,67r164,0r0,-67v-16,-24,-43,-43,-82,-43","w":294},"\u2202":{"d":"90,-142v-35,0,-51,28,-55,65v-7,66,75,87,102,36v9,-18,17,-39,18,-65v-17,-19,-38,-36,-65,-36xm89,4v-47,0,-70,-31,-70,-80v0,-46,25,-80,68,-80v30,0,51,15,68,34v-1,-72,-27,-130,-104,-121r0,-12v84,-13,121,51,121,129v0,69,-20,130,-83,130","w":190},"\u2207":{"d":"5,-251r200,0r-91,251r-18,0xm104,-19r78,-216r-154,0","w":210},"\u220f":{"d":"180,35r0,-271r-135,0r0,271r-17,0r0,-286r169,0r0,286r-17,0","w":225},"\u2211":{"d":"12,35r0,-16r68,-127r-67,-128r0,-15r147,0r0,15r-129,0r68,128r-68,127r133,0r0,16r-152,0","w":174},"\u2212":{"d":"9,-94r0,-14r149,0r0,14r-149,0","w":168},"\u221a":{"d":"116,31r-14,0r-60,-157r-26,10r-5,-12r40,-15r57,151r71,-296r15,0","w":202},"\u221e":{"d":"18,-98v0,-31,20,-51,50,-51v31,0,48,24,63,43v15,-19,33,-43,64,-43v31,0,50,21,50,51v0,32,-20,52,-51,52v-31,0,-46,-24,-63,-43v-16,19,-31,43,-64,43v-31,0,-49,-20,-49,-52xm30,-98v-2,37,45,51,68,27v10,-7,19,-16,25,-26v-14,-17,-27,-39,-55,-39v-22,0,-37,15,-38,38xm233,-98v0,-47,-64,-44,-82,-13v-3,6,-8,8,-12,13v15,16,28,37,55,40v23,-2,38,-16,39,-40","w":262},"\u2227":{"d":"168,0r-15,0r-63,-166r-63,166r-15,0r72,-184r13,0","w":180},"\u2228":{"d":"168,-184r-71,184r-13,0r-72,-184r15,0r63,167r63,-167r15,0","w":180},"\u2229":{"d":"89,-186v47,0,78,25,79,73r0,113r-14,0r0,-113v-2,-37,-27,-60,-65,-60v-39,0,-64,24,-64,60r0,113r-13,0r0,-113v3,-45,30,-73,77,-73","w":180},"\u222a":{"d":"89,-13v37,-2,65,-22,65,-60r0,-113r14,0r0,113v-1,48,-32,73,-79,73v-47,0,-77,-27,-77,-73r0,-113r13,0v2,77,-17,177,64,173","w":180},"\u222b":{"d":"67,-199v-12,102,29,260,-74,253v1,-21,30,-3,38,-22v20,-47,19,-130,19,-202v0,-57,9,-122,71,-107v-2,8,-5,15,-16,10v-32,4,-34,33,-38,68","w":113},"\u2248":{"d":"47,-142v35,0,82,44,103,3r11,9v-9,12,-18,26,-39,25v-35,-2,-79,-42,-104,-6r-11,-8v9,-12,21,-23,40,-23xm47,-87v37,1,80,43,103,3r11,8v-9,12,-18,26,-39,25v-36,-2,-79,-42,-104,-5r-11,-8v9,-12,21,-23,40,-23","w":168},"\u2260":{"d":"17,-12r31,-47r-39,0r0,-13r48,0r34,-50r-82,0r0,-14r91,0r33,-48r15,0r-33,48r43,0r0,14r-52,0r-34,50r86,0r0,13r-95,0r-32,47r-14,0","w":171},"\u2264":{"d":"158,-33r-149,-62r0,-13r149,-61r0,15r-132,52r132,54r0,15xm9,0r0,-14r149,0r0,14r-149,0","w":171},"\u2265":{"d":"9,-48r132,-53r-132,-53r0,-15r149,62r0,12r-149,62r0,-15xm10,0r0,-14r148,0r0,14r-148,0","w":171},"\u25ca":{"d":"157,-95r-66,123r-16,0r-68,-123r68,-123r16,0xm139,-95r-57,-104r-56,104r57,105","w":165},"\ue000":{"d":"84,-252v41,0,66,24,66,66r0,122v0,42,-27,66,-66,66v-40,0,-66,-24,-66,-66r0,-122v1,-42,25,-66,66,-66xm84,-13v73,0,48,-102,51,-171v1,-31,-20,-54,-51,-54v-73,0,-48,102,-51,171v-1,31,20,54,51,54","w":180},"\ue001":{"d":"89,0r-16,0r0,-233r-37,24r0,-17v17,-9,25,-27,53,-25r0,251","w":154,"k":{"\ue071":14,"\u00ba":18,"\u00aa":14,"\ue326":18,"\ue31e":18,"\ue07e":7,"\ue07d":11,"\ue070":14}},"\ue002":{"d":"85,-252v61,-5,82,64,49,108r-98,129r114,0r0,15r-134,0r0,-16v38,-52,86,-95,115,-154v17,-35,-9,-67,-46,-67v-25,1,-44,18,-50,39r-16,-3v8,-31,30,-49,66,-51","w":180},"\ue003":{"d":"132,-186v4,-60,-87,-68,-99,-19r-15,-2v6,-26,33,-44,63,-46v74,-6,90,102,30,122v26,8,39,29,42,60v7,77,-117,102,-137,29r16,-2v15,51,109,36,104,-25v-3,-39,-23,-58,-66,-54r0,-15v38,2,59,-13,62,-48","w":168},"\ue004":{"d":"139,-40r0,40r-16,0r0,-40r-113,0r0,-15r90,-196r17,0r-90,196r96,0r0,-78r16,0r0,78r22,0r0,15r-22,0","w":180},"\ue005":{"d":"158,-98v0,60,-13,99,-69,100v-34,0,-56,-15,-63,-43r14,-4v7,21,23,34,50,33v45,0,53,-36,53,-84v0,-60,-75,-71,-98,-31r-15,0r0,-124r123,0r0,16r-108,0r0,89v38,-39,113,-18,113,48","w":180},"\ue006":{"d":"55,-130v43,-26,101,2,98,57v-2,47,-24,74,-69,75v-56,2,-80,-64,-56,-112r71,-141r17,0xm86,-12v34,-1,52,-25,52,-58v0,-35,-19,-57,-52,-57v-33,0,-52,22,-52,57v0,34,19,58,52,58","w":180},"\ue007":{"d":"58,0r-17,0r91,-235r-101,0r0,39r-16,0r0,-55r134,0r0,16","w":171},"\ue008":{"d":"85,-252v72,0,90,103,30,123v26,8,42,29,42,61v0,45,-29,67,-72,70v-77,6,-94,-110,-30,-131v-59,-20,-40,-123,30,-123xm142,-68v0,-35,-23,-55,-57,-55v-33,0,-56,21,-56,55v0,34,23,56,56,56v34,0,57,-22,57,-56xm137,-186v-1,-33,-20,-52,-52,-52v-31,0,-50,20,-51,52v0,33,21,50,51,50v31,0,52,-17,52,-50","w":180},"\ue009":{"d":"117,-119v-42,20,-101,-3,-98,-59v2,-48,25,-74,70,-75v54,-1,81,63,56,112r-72,141r-17,0xm86,-239v-34,1,-52,25,-52,59v0,34,20,57,52,57v31,0,52,-24,52,-57v0,-34,-19,-60,-52,-59","w":180},"\ue00a":{"d":"40,-92r9,-68r-35,0r0,-11r37,0r10,-79r12,0r-10,79r52,0r11,-79r12,0r-11,79r37,0r0,11r-38,0r-10,68r37,0r0,11r-38,0r-11,81r-12,0r11,-81r-53,0r-11,81r-12,0r11,-81r-35,0r0,-11r37,0xm52,-92r52,0r9,-68r-52,0","w":180},"\ue00b":{"d":"144,-64v1,-36,-28,-45,-55,-53r0,104v31,-3,55,-17,55,-51xm78,-236v-55,-4,-67,83,-17,96v6,2,11,3,17,4r0,-100xm161,-64v-1,43,-30,64,-72,67r0,40r-11,0r0,-40v-28,-3,-53,-11,-70,-26v3,-5,5,-9,9,-13v17,11,35,21,61,23r0,-106v-36,-8,-67,-22,-67,-65v0,-41,26,-64,67,-67r0,-27r11,0r0,27v24,1,44,7,59,18r-8,14v-14,-9,-31,-16,-51,-17r0,103v40,7,73,22,72,69","w":180},"\ue00c":{"d":"96,-238v-47,0,-62,38,-60,88r87,0r0,12r-87,0r0,24r88,0r0,12r-88,0v-2,51,12,90,60,90v29,0,45,-15,56,-37r14,7v-14,30,-38,45,-70,45v-57,0,-79,-44,-77,-105r-14,0r0,-12r14,0r0,-24r-14,0r0,-12r14,0v-20,-99,106,-139,147,-61r-15,7v-11,-19,-28,-34,-55,-34","w":180},"\ue00d":{"d":"95,-133v-14,75,-4,190,-99,162r4,-14v80,26,63,-87,78,-148r-33,0r0,-14r35,0v8,-48,7,-106,64,-105v9,0,19,1,27,4r-5,14v-57,-17,-65,36,-70,87r40,0r0,14r-41,0","w":180},"\ue00e":{"d":"55,-109v0,40,-7,70,-27,94r125,0r0,15r-143,0v0,-26,17,-35,22,-55v3,-15,8,-34,8,-54r-31,0r0,-12r29,0v-4,-25,-17,-42,-18,-70v-5,-68,99,-79,128,-30r-13,9v-20,-37,-103,-37,-98,21v2,26,14,45,17,70r54,0r0,12r-53,0","w":171},"\ue00f":{"d":"146,-17v-13,11,-32,17,-54,18r0,40r-10,0r0,-40v-45,-6,-68,-38,-68,-90v0,-52,23,-84,68,-90r0,-40r10,0r0,39v24,0,40,7,53,19v-5,4,-5,8,-9,12v-11,-9,-26,-16,-44,-17r0,154v20,0,32,-7,44,-16v4,4,6,6,10,11xm82,-165v-53,3,-65,87,-39,129v9,13,22,20,39,23r0,-152","w":153},"\ue010":{"d":"76,-82v0,-11,1,-24,-4,-30r-58,0r0,-12r52,0r-63,-127r17,0r65,132r63,-132r16,0r-62,127r52,0r0,12r-58,0v-5,7,-4,18,-4,30r62,0r0,12r-62,0r0,70r-16,0r0,-70r-62,0r0,-12r62,0","w":180},"\ue0d8":{"d":"82,32v-58,-55,-78,-192,-24,-270v8,-11,15,-22,23,-32r8,5v-27,37,-46,86,-47,144v0,59,22,111,47,148","w":94},"\ue0d9":{"d":"17,-269v60,53,78,196,22,270v-8,11,-14,23,-22,32r-7,-6v25,-37,48,-88,47,-147v-1,-57,-21,-108,-47,-145","w":94},"\ue0da":{"d":"19,-97r0,-15r95,0r0,15r-95,0","w":133},"\ue0db":{"d":"27,28r0,-290r51,0r0,13r-35,0r0,265r35,0r0,12r-51,0","w":84},"\ue0dc":{"d":"13,28r0,-12r35,0r0,-265r-35,0r0,-13r50,0r0,290r-50,0","w":84},"\ue0dd":{"d":"26,-117v54,17,-14,139,56,135r0,10v-84,19,-13,-122,-72,-140r0,-9v60,-9,-19,-149,72,-140r0,10v-65,-10,-4,112,-56,134","w":84},"\ue0de":{"d":"81,-112v-60,9,21,148,-71,140r0,-10v66,10,3,-114,56,-135v-30,-14,-23,-66,-24,-111v0,-17,-11,-26,-32,-23r0,-10v83,-18,14,119,71,140r0,9","w":84},"\ue0df":{"d":"7,-98r0,-16r163,0r0,16r-163,0","w":177},"\ue0e0":{"d":"7,-98r0,-16r343,0r0,16r-343,0","w":357},"\ue0e1":{"d":"32,-119r12,0r2,183r-16,0xm48,-187r0,22r-19,0r0,-22r19,0","w":76},"\ue0e2":{"d":"76,50v32,0,48,-23,54,-49r15,3v-7,36,-32,61,-71,61v-39,0,-65,-23,-65,-62v0,-60,67,-61,58,-132r17,0v9,70,-58,75,-58,130v0,31,18,49,50,49xm85,-187r0,22r-20,0r0,-22r20,0","w":154},"\ue0e3":{"d":"113,-27r-42,-63r42,-62r16,0r-41,62r41,63r-16,0xm64,-27r-42,-63r43,-62r16,0r-42,62r42,63r-17,0","w":146},"\ue0e4":{"d":"23,-27r41,-63r-41,-62r16,0r42,62r-42,63r-16,0xm71,-27r42,-63r-42,-62r16,0r43,62r-43,63r-16,0","w":146},"\ue23f":{"d":"84,-252v41,0,66,24,66,66r0,122v0,42,-27,66,-66,66v-40,0,-66,-24,-66,-66r0,-122v1,-42,25,-66,66,-66xm126,-216v-22,-39,-97,-22,-93,32v4,45,-4,97,3,137xm42,-33v24,37,97,19,93,-34v-4,-45,4,-96,-3,-136","w":168},"\ue24c":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm112,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm5,-252v34,4,36,49,11,67v-16,-3,2,-19,1,-31v-1,-11,-8,-18,-19,-20","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24d":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm116,24v0,29,-6,59,27,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r16,0xm34,-236v-24,4,-20,30,-10,46r-8,5v-22,-18,-28,-61,11,-68v2,6,4,11,7,17","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24e":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm116,24v0,29,-6,59,27,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r16,0xm-49,-252v35,4,36,47,12,67r-9,-5v13,-20,13,-41,-10,-46xm-15,-248r20,-4r30,63r-9,4","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24f":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm113,24v0,29,-6,59,27,54v0,6,2,16,-7,13v-37,3,-36,-31,-35,-67r15,0xm-20,-236v-23,6,-22,27,-9,46r-9,5v-23,-19,-24,-62,11,-68xm26,-185r-40,-64r20,-4r30,64","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue250":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm112,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-40,-189v11,-14,14,-43,-10,-46r8,-17v33,4,34,48,11,67xm40,-248v-15,25,-27,39,-43,63r-9,-3r32,-64","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue251":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm112,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-12,-236v-24,4,-21,31,-9,46r-9,5v-24,-18,-24,-63,11,-68xm41,-249r-43,64r-10,-4r32,-64","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue254":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm119,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-34,-192v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68","w":228},"\ue255":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm119,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-8,-238v-23,4,-20,32,-9,46r-9,5v-13,-13,-27,-40,-10,-56v5,-5,13,-9,22,-12","w":228},"\ue256":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm119,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-96,-255v34,5,36,49,11,68r-9,-5v12,-19,14,-41,-9,-46xm-22,-187r-41,-64r21,-4r30,64","w":228},"\ue257":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm119,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-70,-238v-23,5,-23,27,-10,46r-8,5v-14,-12,-26,-39,-11,-56v5,-5,13,-9,22,-12v2,6,4,11,7,17xm-24,-187r-40,-64r20,-4r30,64","w":228},"\ue258":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm119,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-89,-192v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68xm-61,-191r32,-64r21,4r-43,64","w":228},"\ue259":{"d":"180,-120r-135,0r0,120r-17,0r0,-251r17,0r0,117r135,0r0,-117r16,0r0,251r-16,0r0,-120xm119,24v0,28,-4,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0xm-62,-238v-24,3,-21,31,-10,46r-9,5v-23,-18,-23,-64,12,-68v2,6,4,11,7,17xm-62,-191r32,-64r21,4r-44,64","w":228},"\ue25c":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0xm-35,-238r7,-17v38,7,32,49,11,68r-9,-5v11,-14,15,-44,-9,-46","w":203},"\ue25d":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0xm1,-238v-23,4,-20,32,-9,46r-9,5v-22,-20,-28,-61,12,-68","w":203},"\ue25e":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0xm-83,-255v34,5,36,49,11,68r-8,-5v13,-19,13,-41,-10,-46xm-8,-187r-41,-64r21,-4r28,64","w":203},"\ue25f":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0xm-54,-238v-23,5,-23,27,-10,46r-8,5v-24,-18,-24,-63,11,-68xm-8,-187r-41,-64r21,-4r28,64","w":203},"\ue260":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0xm-75,-192v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68xm5,-251r-42,64r-10,-4r32,-64","w":203},"\ue261":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-44,-19,-40,-86,-38,-148v1,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0xm-46,-238v-24,3,-21,31,-10,46r-8,5v-24,-17,-25,-64,11,-68xm6,-251v-15,25,-27,40,-43,64r-9,-4r32,-64","w":203},"\ue264":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm112,24v0,28,-5,58,28,54r0,13v-43,6,-45,-26,-43,-67r15,0","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue265":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm148,92v-42,5,-46,-27,-43,-68r15,0v0,28,-5,58,28,54r0,14","w":225},"\ue266":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-41,-24,-40,-83,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm109,24v0,28,-4,58,28,54v0,6,2,16,-7,13v-38,3,-38,-31,-36,-67r15,0","w":203},"\ue2d0":{"d":"53,-252v53,-1,45,60,44,112v-1,26,-18,40,-44,41v-54,2,-46,-60,-45,-112v1,-26,18,-40,45,-41xm53,-111v43,0,29,-58,31,-99v0,-17,-13,-30,-31,-30v-44,0,-30,57,-32,99v0,17,15,30,32,30","w":104},"\ue2d1":{"d":"51,-101r-13,0r0,-135r-24,14v-1,-23,16,-26,37,-29r0,150","w":81},"\ue2d2":{"d":"81,-214v1,-33,-58,-32,-62,-2r-13,-3v6,-41,90,-44,89,4v0,11,-5,23,-12,30r-62,72r73,0r0,12r-90,0r0,-11v25,-31,53,-58,75,-92v1,-4,2,-7,2,-10","w":102,"k":{"\u2044":-18}},"\ue2d3":{"d":"48,-252v45,-4,60,58,24,73v42,15,22,85,-26,80v-22,-2,-38,-9,-42,-29r13,-2v8,29,67,23,65,-13v-1,-23,-18,-32,-43,-30r0,-11v23,2,41,-8,41,-28v2,-32,-55,-37,-62,-8r-13,-3v5,-17,22,-27,43,-29","w":101},"\ue2d4":{"d":"90,-124r0,23r-14,0r0,-23r-72,0r0,-11r58,-116r15,0r-59,115r58,0r0,-45r14,0r0,45r14,0r0,12r-14,0","w":108,"k":{"\u2044":-11}},"\ue2d5":{"d":"95,-159v14,62,-69,81,-90,32r13,-3v4,12,15,19,31,19v27,1,33,-19,33,-47v0,-33,-46,-40,-61,-17r-13,0r0,-76r83,0r0,12r-70,0r0,48v27,-21,79,-8,74,32","w":101},"\ue2d6":{"d":"50,-99v-41,2,-50,-45,-32,-78r41,-74r14,0r-37,69v28,-11,60,5,60,37v0,31,-19,44,-46,46xm84,-143v0,-19,-15,-32,-33,-32v-18,0,-32,14,-32,32v0,19,13,33,32,33v20,-1,33,-13,33,-33","w":101,"k":{"\u2044":-4}},"\ue2d7":{"d":"34,-101r-14,0r59,-137r-62,0r0,23r-13,0r0,-36r90,0r0,12","w":96},"\ue2d8":{"d":"75,-178v15,5,24,17,24,36v-1,28,-20,41,-48,43v-48,4,-65,-64,-23,-79v-38,-15,-21,-78,23,-73v45,-6,61,57,24,73xm51,-111v20,0,34,-10,35,-31v0,-21,-15,-31,-35,-31v-20,0,-35,11,-35,31v0,19,15,31,35,31xm51,-183v18,0,32,-9,32,-28v0,-19,-13,-29,-32,-29v-18,0,-32,10,-32,29v0,19,14,28,32,28","w":102,"k":{"\u2044":-7}},"\ue2d9":{"d":"65,-169v-31,12,-61,-6,-61,-38v0,-30,19,-44,47,-45v34,-2,54,37,37,68r-47,84r-14,0xm49,-241v-17,0,-32,15,-32,33v-1,19,13,32,32,32v19,0,33,-13,32,-32v0,-19,-13,-33,-32,-33","w":97,"k":{"\u2044":18}},"\ue2da":{"d":"60,-252v-39,40,-40,133,0,172r-6,5v-30,-28,-54,-88,-29,-139v8,-16,16,-30,28,-42","w":61},"\ue2db":{"d":"4,-80v40,-41,40,-131,0,-172r8,-4v37,33,53,118,14,162v-7,7,-12,25,-22,14","w":61,"k":{"\u2044":-11}},"\ue2dc":{"d":"28,-118v2,18,-5,27,-10,38r-9,0v4,-13,4,-21,3,-38r16,0","w":40},"\ue2dd":{"d":"12,-101r0,-17r16,0r0,17r-16,0","w":38},"\ue2f4":{"d":"53,-151v53,-2,45,60,44,112v0,26,-18,39,-44,40v-55,3,-46,-60,-45,-112v1,-26,19,-39,45,-40xm53,-10v42,0,29,-58,31,-99v0,-17,-13,-30,-31,-30v-44,0,-30,57,-32,98v0,18,14,31,32,31","w":104},"\ue2f5":{"d":"51,0r-13,0r0,-135r-24,14v-1,-23,16,-26,37,-29r0,150","w":81},"\ue2f6":{"d":"6,-118v5,-42,91,-44,89,4v0,12,-5,22,-12,30r-62,72r73,0r0,12r-90,0r0,-12v25,-31,53,-57,75,-91v7,-20,-8,-36,-29,-36v-14,1,-28,11,-31,23","w":102},"\ue2f7":{"d":"72,-78v41,14,23,84,-26,79v-22,-2,-37,-9,-42,-28r13,-2v8,29,65,23,65,-13v0,-24,-17,-33,-43,-30r0,-12v23,2,41,-7,41,-27v1,-33,-53,-38,-62,-9r-13,-2v5,-17,22,-27,43,-29v47,-5,59,58,24,73","w":101},"\ue2f8":{"d":"90,-23r0,23r-14,0r0,-23r-72,0r0,-11r58,-116r15,0r-59,115r58,0r0,-46r14,0r0,46r14,0r0,12r-14,0","w":108},"\ue2f9":{"d":"95,-59v15,61,-70,82,-90,32r13,-3v9,31,68,25,64,-12v11,-45,-41,-60,-61,-32r-13,0r0,-76r83,0r0,12r-70,0r0,48v27,-21,78,-8,74,31","w":101},"\ue2fa":{"d":"36,-81v30,-12,61,6,61,37v-1,29,-17,45,-47,45v-38,0,-54,-39,-37,-70r46,-81r14,0xm51,-10v18,1,34,-13,33,-32v0,-19,-14,-32,-33,-32v-19,0,-32,14,-32,32v0,19,13,32,32,32","w":101},"\ue2fb":{"d":"34,0r-14,0r59,-138r-62,0r0,24r-13,0r0,-36r90,0r0,11","w":96},"\ue2fc":{"d":"75,-77v15,4,24,19,24,36v0,28,-20,40,-48,42v-48,4,-65,-63,-23,-78v-37,-16,-21,-74,23,-74v45,0,60,58,24,74xm51,-10v20,0,34,-11,35,-31v0,-22,-15,-31,-35,-31v-21,0,-35,11,-35,31v0,19,15,31,35,31xm51,-82v19,0,31,-10,32,-29v1,-18,-17,-29,-32,-29v-18,0,-32,11,-32,29v0,20,14,29,32,29","w":102},"\ue2fd":{"d":"65,-68v-31,10,-62,-7,-61,-38v0,-30,19,-45,47,-45v25,0,46,15,43,43v-5,44,-35,73,-53,108r-14,0xm49,-140v-18,0,-32,14,-32,33v-1,19,14,32,32,32v18,0,33,-13,32,-32v0,-19,-13,-33,-32,-33","w":97},"\ue2fe":{"d":"60,-151v-39,40,-40,132,0,172r-6,5v-31,-28,-54,-89,-29,-140v8,-16,16,-30,28,-42","w":61},"\ue2ff":{"d":"12,-155v29,29,53,89,27,140v-8,16,-17,29,-28,41r-7,-5v16,-22,32,-52,32,-87v-1,-33,-16,-63,-32,-85","w":61},"\ue300":{"d":"9,21v4,-13,4,-21,3,-38r16,0v2,17,-5,27,-10,38r-9,0","w":40},"\ue301":{"d":"12,0r0,-17r16,0r0,17r-16,0","w":38},"\uf6c0":{"d":"105,-293r-46,30r-7,-7r47,-40r14,0r45,39r-6,8","w":216},"\uf6c3":{"d":"102,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":209},"\uf6c9":{"d":"85,-270r49,-39r13,13r-54,34","w":215},"\uf6ca":{"d":"151,-310r7,8r-46,39r-13,0r-47,-40r6,-7r47,30","w":215},"\uf6cb":{"d":"127,-273r0,-19r20,0r0,19r-20,0xm63,-273r0,-19r19,0r0,19r-19,0","w":210},"\uf6cc":{"d":"47,-276r0,-19r19,0r0,19r-19,0xm121,-276r0,-19r20,0r0,19r-20,0xm72,-276r42,-47r14,11r-48,43","w":171},"\uf6cd":{"d":"47,-276r0,-19r19,0r0,19r-19,0xm121,-276r0,-19r20,0r0,19r-20,0xm107,-269r-48,-43r14,-11r42,47","w":171},"\uf6ce":{"d":"118,-262r-54,-34r12,-13r49,39","w":196},"\uf6cf":{"d":"108,-270r49,-39r12,13r-54,34xm66,-270r48,-39r13,13r-55,34","w":196},"\uf6d0":{"d":"59,-277r0,-15r92,0r0,15r-92,0","w":210},"\uf6d1":{"d":"151,-302v0,44,-75,52,-88,13v-2,-5,-4,-8,-4,-13r14,0v3,32,62,34,64,0r14,0","w":210},"\uf6d4":{"d":"144,-251v-1,51,-91,51,-91,0r13,0v3,32,61,34,64,0r14,0","w":183},"\uf6d9":{"d":"249,-51v-2,24,4,39,29,37v0,7,3,17,-7,14v-24,0,-39,-12,-38,-37r0,-142r16,0r0,128","w":293},"\uf6da":{"d":"49,-267r21,-5r29,63r-9,3","w":185},"\uf6db":{"d":"90,-206r-9,-3r32,-63r21,5","w":185},"\uf6dc":{"d":"144,-237v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14","w":173},"\ue0fb":{"d":"22,-48v1,-31,22,-43,44,-58v-10,-11,-24,-27,-25,-43v-2,-48,68,-51,96,-25r-11,11v-22,-25,-89,-10,-63,28v21,31,51,60,75,89v5,-9,9,-24,11,-36r16,1v-3,18,-6,35,-16,47r30,34r-21,0r-20,-23v-32,37,-117,33,-116,-25xm39,-49v-1,47,69,43,88,15r-51,-61v-18,11,-36,21,-37,46","w":187},"\ue0fc":{"d":"39,-50r-13,0r-3,-138r18,0xm22,0r0,-19r20,0r0,19r-20,0","w":63},"\ue0fd":{"d":"67,-178v-23,1,-34,19,-37,39r-17,-3v5,-27,25,-51,56,-51v33,1,52,20,52,51v0,45,-52,45,-44,100r-17,0v-9,-54,41,-58,44,-99v2,-24,-13,-37,-37,-37xm59,0r0,-19r20,0r0,19r-20,0","w":133},"\ue0fe":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue0ff":{"d":"123,-98v19,8,32,23,33,47v1,63,-73,50,-134,51r0,-188v58,0,132,-9,130,48v-1,21,-11,36,-29,42xm139,-52v0,-47,-56,-36,-101,-37r0,74v45,-1,101,9,101,-37xm135,-139v0,-42,-53,-36,-97,-35r0,70v43,-1,97,9,97,-35","w":166},"\ue100":{"d":"30,-67v-7,61,88,71,102,22r15,6v-9,23,-31,41,-63,41v-65,1,-70,-55,-70,-124v0,-74,107,-89,132,-30r-15,7v-16,-45,-107,-37,-101,24r0,54","w":150},"\ue101":{"d":"158,-97v0,62,-16,97,-72,97r-64,0r0,-188r64,0v54,-1,72,32,72,91xm38,-15v59,3,103,0,103,-60v0,-57,-3,-101,-57,-99r-46,0r0,159","w":172},"\ue102":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0","w":150},"\ue103":{"d":"38,-174r0,72r90,0r0,14r-90,0r0,88r-16,0r0,-188r122,0r0,14r-106,0","w":144,"k":{"\ue0fe":11,"\ue175":11,"\ue13c":11,"\ue13b":11,"\ue13a":11,"\ue122":11,"\ue121":11,"\ue120":11,"\ue11f":11,"\ue11e":11,"\ue11d":11,"\ue11c":11,"\ue107":25}},"\ue104":{"d":"30,-121v0,57,-1,111,54,109v37,-2,56,-27,52,-70r-44,0r0,-15r61,0v5,60,-15,98,-70,99v-65,1,-69,-55,-69,-124v0,-75,107,-89,132,-30r-15,7v-16,-45,-101,-37,-101,24","w":166},"\ue105":{"d":"140,0r0,-88r-103,0r0,88r-15,0r0,-188r15,0r0,85r103,0r0,-85r16,0r0,188r-16,0","w":178},"\ue106":{"d":"22,0r0,-188r17,0r0,188r-17,0","w":60},"\ue107":{"d":"18,-26v26,23,75,15,75,-33r0,-129r16,0v-3,84,26,217,-81,185v-8,-3,-14,-7,-20,-12","w":127},"\ue108":{"d":"149,0r-65,-103r-47,53r0,50r-15,0r0,-188r16,0r0,115r100,-115r19,0r-62,72r72,116r-18,0","w":173},"\ue109":{"d":"22,0r0,-188r16,0r0,173r106,0r0,15r-122,0","w":150,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue10a":{"d":"176,-154r-63,126r-13,0r-63,-126r0,154r-15,0r0,-188r15,0r70,141r70,-141r15,0r0,188r-16,0r0,-154","w":211},"\ue10b":{"d":"152,0r-114,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,188r-15,0","w":188},"\ue10c":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54","w":162},"\ue10d":{"d":"22,-188v63,0,136,-10,134,55v-1,55,-58,57,-118,54r0,79r-16,0r0,-188xm38,-94v47,0,102,7,101,-40v-1,-46,-54,-41,-101,-40r0,80","w":158,"k":{"\ue0fe":14,"\ue175":14,"\ue13c":14,"\ue13b":14,"\ue13a":14,"\ue122":14,"\ue121":14,"\ue120":14,"\ue11f":14,"\ue11e":14,"\ue11d":14,"\ue11c":14}},"\ue10e":{"d":"13,-67v0,-67,2,-122,68,-122v78,0,80,95,61,159r27,22r-9,11r-27,-22v-36,39,-120,20,-120,-48xm128,-41v13,-50,16,-133,-46,-133v-56,0,-53,52,-53,107v0,50,61,71,91,37r-27,-22r9,-10","w":164},"\ue10f":{"d":"157,-136v0,30,-20,48,-47,54r44,82r-19,0r-42,-81r-54,0r0,81r-17,0r0,-188v62,0,135,-9,135,52xm39,-95v48,1,101,6,101,-41v0,-47,-56,-37,-101,-38r0,79","w":166},"\ue110":{"d":"31,-138v0,61,114,14,114,88v0,62,-101,62,-140,32r9,-14v28,24,115,32,115,-18v0,-62,-115,-17,-115,-88v0,-58,80,-62,122,-37r-9,14v-31,-21,-96,-22,-96,23","w":155},"\ue111":{"d":"77,-174r0,174r-17,0r0,-174r-58,0r0,-14r133,0r0,14r-58,0","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue112":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174","w":172},"\ue113":{"d":"68,0r-65,-188r17,0r56,163r55,-163r17,0r-66,188r-14,0","w":151,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue114":{"d":"176,0r-14,0r-47,-161r-46,161r-15,0r-49,-188r17,0r40,161r47,-161r13,0r48,162r38,-162r18,0","w":230,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue115":{"d":"124,0r-52,-84r-51,84r-19,0r61,-96r-57,-92r19,0r47,78r48,-78r18,0r-57,92r62,96r-19,0","w":144},"\ue116":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue117":{"d":"9,0r0,-14r102,-160r-98,0r0,-14r118,0r0,13r-103,160r103,0r0,15r-122,0","w":139},"\ue118":{"d":"31,-138v0,61,114,14,114,88v0,62,-101,62,-140,32r9,-14v28,24,115,32,115,-18v0,-62,-115,-17,-115,-88v0,-58,80,-62,122,-37r-9,14v-31,-21,-96,-22,-96,23xm123,-252r7,7r-45,44r-13,0r-48,-44r8,-8r45,35","w":155},"\ue119":{"d":"13,-67v0,-77,10,-121,91,-121r125,0r0,14r-111,0r0,71r95,0r0,15r-95,0r0,73r111,0r0,15v-88,-4,-216,31,-216,-67xm30,-121v0,63,3,119,71,107r0,-159v-41,-5,-71,12,-71,52","w":236},"\ue11a":{"d":"9,0r0,-14r102,-160r-98,0r0,-14r118,0r0,13r-103,160r103,0r0,15r-122,0xm118,-252r7,7r-45,44r-13,0r-48,-44r8,-8r45,35","w":139},"\ue11b":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78xm93,-219r0,-19r20,0r0,19r-20,0xm25,-219r0,-19r19,0r0,19r-19,0","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue11c":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm80,-203r-36,-53r18,-6r28,55","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11d":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm78,-207r29,-55r17,6r-36,53","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11e":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm84,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11f":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm140,-235v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,17,99,-22","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue120":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm108,-219r0,-19r19,0r0,19r-19,0xm40,-219r0,-19r19,0r0,19r-19,0","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue121":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm116,-231v0,17,-16,32,-33,32v-17,0,-32,-14,-32,-32v-1,-18,14,-33,32,-33v19,0,33,15,33,33xm106,-231v0,-12,-10,-23,-23,-23v-13,0,-22,10,-22,23v0,12,9,23,22,22v13,0,23,-10,23,-22","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue122":{"d":"137,-49r-84,0r-34,49r-19,0r129,-188r137,0r0,15r-111,0r0,70r94,0r0,15r-94,0r0,73r111,0r0,15r-129,0r0,-49xm137,-63r0,-111r-74,111r74,0","w":276},"\ue123":{"d":"30,-67v-7,61,88,71,102,22r15,6v-9,23,-31,41,-63,41r-5,13v19,2,34,9,34,28v0,27,-36,31,-62,21r4,-9v16,7,44,9,45,-12v1,-17,-22,-15,-33,-21r6,-21v-58,-3,-59,-59,-59,-123v0,-74,107,-89,132,-30r-15,7v-16,-45,-107,-37,-101,24r0,54","w":150},"\ue124":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm82,-203r-36,-53r18,-6r28,55","w":150},"\ue125":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm71,-207r28,-55r18,6r-36,53","w":150},"\ue126":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm82,-235r-45,35r-8,-8r48,-44r13,0r45,44r-7,7","w":150},"\ue127":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm108,-219r0,-19r19,0r0,19r-19,0xm40,-219r0,-19r19,0r0,19r-19,0","w":150},"\ue128":{"d":"22,0r0,-188r17,0r0,188r-17,0xm28,-203r-35,-53r17,-6r29,55","w":60},"\ue129":{"d":"22,0r0,-188r17,0r0,188r-17,0xm27,-207r28,-55r17,6r-36,53","w":60},"\ue12a":{"d":"22,0r0,-188r17,0r0,188r-17,0xm33,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":60},"\ue12b":{"d":"22,0r0,-188r17,0r0,188r-17,0xm57,-219r0,-19r19,0r0,19r-19,0xm-12,-219r0,-19r20,0r0,19r-20,0","w":60},"\ue12c":{"d":"158,-97v0,62,-16,97,-72,97r-64,0r0,-89r-19,0r0,-12r19,0r0,-87r64,0v54,-1,72,32,72,91xm38,-15v59,3,103,0,103,-60v0,-57,-3,-101,-57,-99r-46,0r0,73r49,0r0,12r-49,0r0,74","w":172},"\ue12d":{"d":"152,0r-114,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,188r-15,0xm151,-235v-16,51,-76,-13,-99,22r-10,-6v21,-55,75,17,99,-22","w":188},"\ue12e":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm85,-203r-35,-53r17,-6r28,55","w":162},"\ue12f":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm76,-207r28,-55r17,6r-36,53","w":162},"\ue130":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm84,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":162},"\ue131":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm138,-235v-16,51,-76,-13,-99,22r-10,-6v21,-55,75,16,99,-22","w":162},"\ue132":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm107,-219r0,-19r20,0r0,19r-20,0xm39,-219r0,-19r19,0r0,19r-19,0","w":162},"\ue133":{"d":"23,-26v-24,-60,-21,-163,58,-163v23,0,38,6,50,17r14,-19r10,8r-16,21v16,22,8,60,11,95v6,65,-80,88,-119,51r-13,18r-10,-7xm41,-30v26,32,98,16,92,-37v-3,-27,4,-60,-5,-80xm120,-158v-26,-31,-97,-14,-91,37v3,27,-4,60,5,80","w":162},"\ue134":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm86,-203r-35,-53r17,-6r28,55","w":172},"\ue135":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm77,-207r28,-55r18,6r-36,53","w":172},"\ue136":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm88,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":172},"\ue137":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm111,-219r0,-19r20,0r0,19r-20,0xm43,-219r0,-19r19,0r0,19r-19,0","w":172},"\ue138":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78xm63,-207r28,-55r18,6r-36,53","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue139":{"d":"160,-96v-1,55,-60,56,-120,53r0,43r-17,0r0,-188r17,0r0,36v60,-2,122,-4,120,56xm40,-58v47,0,102,8,102,-40v0,-47,-56,-39,-102,-39r0,79","w":166},"\ue13a":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm37,-213r0,-15r92,0r0,15r-92,0","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13b":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm129,-243v0,45,-74,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v4,32,61,37,64,0r14,0","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13c":{"d":"163,62v-35,0,-37,-46,-15,-62r-2,0r-16,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188v-21,5,-27,52,1,50v6,0,13,-2,21,-6r5,11v-8,3,-17,7,-29,7xm125,-59r-41,-108r-41,108r82,0","w":167,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13d":{"d":"30,-67v-7,61,88,71,102,22r15,6v-9,23,-31,41,-63,41v-65,1,-70,-55,-70,-124v0,-74,107,-89,132,-30r-15,7v-16,-45,-107,-37,-101,24r0,54xm68,-207r28,-55r18,6r-36,53","w":150},"\ue13e":{"d":"30,-67v-7,61,88,71,102,22r15,6v-9,23,-31,41,-63,41v-65,1,-70,-55,-70,-124v0,-74,107,-89,132,-30r-15,7v-16,-45,-107,-37,-101,24r0,54xm84,-235r-46,35r-8,-8r48,-44r13,0r45,44r-7,7","w":150},"\ue13f":{"d":"30,-67v-7,61,88,71,102,22r15,6v-9,23,-31,41,-63,41v-65,1,-70,-55,-70,-124v0,-74,107,-89,132,-30r-15,7v-16,-45,-107,-37,-101,24r0,54xm73,-219r0,-19r20,0r0,19r-20,0","w":150},"\ue140":{"d":"30,-67v-7,61,88,71,102,22r15,6v-9,23,-31,41,-63,41v-65,1,-70,-55,-70,-124v0,-74,107,-89,132,-30r-15,7v-16,-45,-107,-37,-101,24r0,54xm129,-252r7,7r-45,44r-13,0r-48,-44r8,-8r46,35","w":150},"\ue141":{"d":"158,-97v0,62,-16,97,-72,97r-64,0r0,-188r64,0v54,-1,72,32,72,91xm38,-15v59,3,103,0,103,-60v0,-57,-3,-101,-57,-99r-46,0r0,159xm125,-252r8,7r-46,44r-13,0r-47,-44r7,-8r46,35","w":172},"\ue142":{"d":"158,-97v0,62,-16,97,-72,97r-64,0r0,-89r-19,0r0,-12r19,0r0,-87r64,0v54,-1,72,32,72,91xm38,-15v59,3,103,0,103,-60v0,-57,-3,-101,-57,-99r-46,0r0,73r49,0r0,12r-49,0r0,74","w":172},"\ue143":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm36,-213r0,-15r91,0r0,15r-91,0","w":150},"\ue144":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm128,-243v0,45,-74,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v4,32,61,37,64,0r14,0","w":150},"\ue145":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm73,-219r0,-19r20,0r0,19r-20,0","w":150},"\ue146":{"d":"174,55v-21,13,-62,8,-59,-22v1,-14,5,-24,15,-33r-108,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0v1,23,-35,58,5,65v6,0,13,-2,21,-6","w":150},"\ue147":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm127,-252r8,7r-45,44r-14,0r-47,-44r7,-8r46,35","w":150},"\ue148":{"d":"30,-121v0,57,-1,111,54,109v37,-2,56,-27,52,-70r-44,0r0,-15r61,0v5,60,-15,98,-70,99v-65,1,-69,-55,-69,-124v0,-75,107,-89,132,-30r-15,7v-16,-45,-101,-37,-101,24xm82,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":166},"\ue149":{"d":"30,-121v0,57,-1,111,54,109v37,-2,56,-27,52,-70r-44,0r0,-15r61,0v5,60,-15,98,-70,99v-65,1,-69,-55,-69,-124v0,-75,107,-89,132,-30r-15,7v-16,-45,-101,-37,-101,24xm128,-243v0,45,-74,53,-88,14v-2,-5,-4,-9,-4,-14r14,0v4,32,61,37,64,0r14,0","w":166},"\ue14a":{"d":"30,-121v0,57,-1,111,54,109v37,-2,56,-27,52,-70r-44,0r0,-15r61,0v5,60,-15,98,-70,99v-65,1,-69,-55,-69,-124v0,-75,107,-89,132,-30r-15,7v-16,-45,-101,-37,-101,24xm70,-219r0,-19r20,0r0,19r-20,0","w":166},"\ue14b":{"d":"30,-121v0,57,-1,111,54,109v37,-2,56,-27,52,-70r-44,0r0,-15r61,0v5,60,-15,98,-70,99v-65,1,-69,-55,-69,-124v0,-75,107,-89,132,-30r-15,7v-16,-45,-101,-37,-101,24xm78,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":166},"\ue14c":{"d":"140,0r0,-88r-103,0r0,88r-15,0r0,-188r15,0r0,85r103,0r0,-85r16,0r0,188r-16,0xm89,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":178},"\ue14d":{"d":"140,0r0,-88r-103,0r0,88r-15,0r0,-149r-18,0r0,-12r18,0r0,-27r15,0r0,27r103,0r0,-27r16,0r0,27r20,0r0,12r-20,0r0,149r-16,0xm140,-103r0,-46r-103,0r0,46r103,0","w":178},"\ue14e":{"d":"22,0r0,-188r17,0r0,188r-17,0xm86,-235v-16,51,-76,-13,-99,22r-10,-6v21,-54,75,17,99,-22","w":60},"\ue14f":{"d":"22,0r0,-188r17,0r0,188r-17,0xm-15,-213r0,-15r91,0r0,15r-91,0","w":60},"\ue150":{"d":"22,0r0,-188r17,0r0,188r-17,0xm77,-243v-1,51,-93,52,-92,0r14,0v3,34,61,35,64,0r14,0","w":60},"\ue151":{"d":"68,55v-20,14,-63,7,-59,-22v-1,-13,12,-27,13,-33r0,-188r17,0r0,188v-17,9,-25,50,4,50v6,0,13,-2,21,-6","w":60},"\ue152":{"d":"22,0r0,-188r17,0r0,188r-17,0xm21,-219r0,-19r20,0r0,19r-20,0","w":60},"\ue153":{"d":"22,0r0,-188r17,0r0,188r-17,0xm69,-26v26,22,74,16,74,-33r0,-129r16,0v-4,83,27,217,-80,185v-8,-3,-14,-7,-20,-12","w":180},"\ue154":{"d":"18,-26v26,23,75,15,75,-33r0,-129r16,0v-3,84,26,217,-81,185v-8,-3,-14,-7,-20,-12xm101,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":127},"\ue155":{"d":"149,0r-65,-103r-47,53r0,50r-15,0r0,-188r16,0r0,115r100,-115r19,0r-62,72r72,116r-18,0xm85,85r-10,0r10,-33r-7,0r0,-24r22,0v3,27,-7,41,-15,57","w":173},"\ue156":{"d":"22,0r0,-188r16,0r0,173r106,0r0,15r-122,0xm24,-207r28,-55r18,6r-36,53","w":150,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue157":{"d":"22,0r0,-188r16,0r0,173r106,0r0,15r-122,0xm80,85r-10,0r10,-33r-7,0r0,-24r22,0v3,27,-7,41,-15,57","w":150,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue158":{"d":"22,0r0,-188r16,0r0,173r106,0r0,15r-122,0xm104,-131r-10,0r10,-33r-6,0r0,-24r22,0v3,27,-8,40,-16,57","w":150,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue159":{"d":"22,0r0,-188r16,0r0,173r106,0r0,15r-122,0xm88,-93r0,-19r20,0r0,19r-20,0","w":150,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue15a":{"d":"22,0r0,-62r-24,13r-7,-10r31,-18r0,-111r16,0r0,102r38,-22r6,10r-44,26r0,57r106,0r0,15r-122,0","w":150,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue131":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4}},"\ue15b":{"d":"152,0r-114,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,188r-15,0xm91,-207r29,-55r17,6r-36,53","w":188},"\ue15c":{"d":"152,0r-114,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,188r-15,0xm90,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":188},"\ue15d":{"d":"152,0r-114,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,188r-15,0xm140,-252r8,7r-46,44r-13,0r-48,-44r8,-8r46,35","w":188},"\ue15e":{"d":"167,24v4,35,-34,46,-59,29r5,-12v18,10,38,8,38,-15r0,-26r-113,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,212","w":188},"\ue15f":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm36,-213r0,-15r91,0r0,15r-91,0","w":162},"\ue160":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm127,-243v0,52,-92,51,-91,0r14,0v3,33,61,36,63,0r14,0","w":162},"\ue161":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm58,-207r28,-55r17,6r-35,53xm94,-207r28,-55r18,6r-36,53","w":162},"\ue162":{"d":"157,-136v0,30,-20,48,-47,54r44,82r-19,0r-42,-81r-54,0r0,81r-17,0r0,-188v62,0,135,-9,135,52xm39,-95v48,1,101,6,101,-41v0,-47,-56,-37,-101,-38r0,79xm72,-207r28,-55r18,6r-36,53","w":166},"\ue163":{"d":"157,-136v0,30,-20,48,-47,54r44,82r-19,0r-42,-81r-54,0r0,81r-17,0r0,-188v62,0,135,-9,135,52xm39,-95v48,1,101,6,101,-41v0,-47,-56,-37,-101,-38r0,79xm79,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":166},"\ue164":{"d":"157,-136v0,30,-20,48,-47,54r44,82r-19,0r-42,-81r-54,0r0,81r-17,0r0,-188v62,0,135,-9,135,52xm39,-95v48,1,101,6,101,-41v0,-47,-56,-37,-101,-38r0,79xm128,-252r7,7r-45,44r-13,0r-48,-44r8,-8r45,35","w":166},"\ue165":{"d":"31,-138v0,61,114,14,114,88v0,62,-101,62,-140,32r9,-14v28,24,115,32,115,-18v0,-62,-115,-17,-115,-88v0,-58,80,-62,122,-37r-9,14v-31,-21,-96,-22,-96,23xm62,-207r28,-55r18,6r-36,53","w":155},"\ue166":{"d":"31,-138v0,61,114,14,114,88v0,62,-101,62,-140,32r9,-14v28,24,115,32,115,-18v0,-62,-115,-17,-115,-88v0,-58,80,-62,122,-37r-9,14v-31,-21,-96,-22,-96,23xm79,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":155},"\ue167":{"d":"31,-138v0,61,114,14,114,88v0,34,-29,51,-65,51r-5,14v20,1,34,10,34,28v0,27,-36,31,-62,21r4,-9v16,7,44,8,45,-12v1,-17,-23,-15,-34,-21r7,-20v-27,-1,-45,-9,-64,-20r9,-14v28,24,115,32,115,-18v0,-62,-115,-17,-115,-88v0,-58,80,-62,122,-37r-9,14v-31,-21,-96,-22,-96,23","w":155},"\ue168":{"d":"77,-174r0,174r-17,0r0,-174r-58,0r0,-14r133,0r0,14r-58,0xm65,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue169":{"d":"77,-174r0,174r-17,0r0,-174r-58,0r0,-14r133,0r0,14r-58,0xm113,-252r8,7r-45,44r-14,0r-47,-44r7,-8r46,35","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue16a":{"d":"77,-174r0,67r46,0r0,13r-46,0r0,94r-17,0r0,-94r-46,0r0,-13r46,0r0,-67r-58,0r0,-14r133,0r0,14r-58,0","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue16b":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm141,-235v-8,12,-13,23,-30,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,17,99,-22","w":172},"\ue16c":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm41,-213r0,-15r91,0r0,15r-91,0","w":172},"\ue16d":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm132,-243v0,52,-92,51,-91,0r14,0v3,33,61,36,63,0r14,0","w":172},"\ue16e":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm120,-231v0,18,-16,32,-33,32v-17,0,-32,-14,-32,-32v-1,-18,14,-33,32,-33v19,0,33,14,33,33xm110,-231v0,-13,-10,-23,-23,-23v-13,0,-22,11,-22,23v0,12,10,22,22,22v13,1,23,-9,23,-22","w":172},"\ue16f":{"d":"86,-14v31,0,52,-19,52,-52r0,-122r17,0r0,125v-2,42,-27,65,-69,65v-42,0,-68,-23,-68,-67r0,-123r16,0v5,70,-23,174,52,174xm61,-207r28,-55r18,6r-36,53xm97,-207r29,-55r17,6r-36,53","w":172},"\ue170":{"d":"129,55v-21,14,-62,7,-60,-22v2,-12,6,-22,14,-31v-40,-3,-65,-25,-65,-67r0,-123r16,0v5,70,-23,174,52,174v31,0,52,-19,52,-52r0,-122r17,0v-6,76,26,181,-59,189v-13,13,-20,49,7,49v6,0,13,-2,21,-6","w":172},"\ue171":{"d":"176,0r-14,0r-47,-161r-46,161r-15,0r-49,-188r17,0r40,161r47,-161r13,0r48,162r38,-162r18,0xm116,-235r-46,35r-8,-8r48,-44r13,0r45,44r-7,7","w":230,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue172":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78xm69,-235r-46,35r-7,-8r47,-44r14,0r45,44r-8,7","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue173":{"d":"9,0r0,-14r102,-160r-98,0r0,-14r118,0r0,13r-103,160r103,0r0,15r-122,0xm62,-207r28,-55r17,6r-36,53","w":139},"\ue174":{"d":"9,0r0,-14r102,-160r-98,0r0,-14r118,0r0,13r-103,160r103,0r0,15r-122,0xm69,-219r0,-19r20,0r0,19r-20,0","w":139},"\ue175":{"d":"137,-49r-84,0r-34,49r-19,0r129,-188r137,0r0,15r-111,0r0,70r94,0r0,15r-94,0r0,73r111,0r0,15r-129,0r0,-49xm137,-63r0,-111r-74,111r74,0xm164,-207r28,-55r18,6r-36,53","w":276},"\ue176":{"d":"23,-26v-24,-59,-21,-163,58,-163v23,0,39,6,50,18r14,-20r10,8r-16,21v16,22,8,60,11,95v6,65,-80,88,-119,51r-13,18r-10,-7xm121,-158v-27,-31,-97,-15,-92,37v3,28,-4,59,5,80xm41,-30v26,32,97,16,92,-37v-3,-28,4,-59,-5,-80xm78,-207r28,-55r17,6r-36,53","w":162},"\ue177":{"d":"25,-139r14,0r1,139r-16,0xm42,-189r0,20r-20,0r0,-20r20,0","w":63},"\ue178":{"d":"64,-10v23,-2,36,-19,39,-40r15,4v-5,27,-25,50,-55,50v-33,0,-52,-19,-52,-50v0,-46,52,-46,44,-100r17,0v8,54,-39,58,-45,98v2,22,12,39,37,38xm73,-189r0,20r-20,0r0,-20r20,0","w":128},"\ue183":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0","w":167,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue184":{"d":"123,-98v19,8,32,23,33,47v1,63,-73,50,-134,51r0,-188v58,0,132,-9,130,48v-1,21,-11,36,-29,42xm139,-52v0,-47,-56,-36,-101,-37r0,74v45,-1,101,9,101,-37xm135,-139v0,-42,-53,-36,-97,-35r0,70v43,-1,97,9,97,-35","w":166},"\ue185":{"d":"38,-174r0,174r-16,0r0,-188r122,0r0,14r-106,0","w":144,"k":{"\ue18a":7,"\ue183":29,"\ue1a1":7,"\ue19f":7,"\ue19b":29,"\ue19a":7,"\ue191":7,"\ue18d":29,"\ue186":29}},"\ue186":{"d":"75,-188r16,0r73,188r-161,0xm141,-14r-58,-154r-57,154r115,0","w":166,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue187":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0","w":150},"\ue188":{"d":"9,0r0,-14r102,-160r-98,0r0,-14r118,0r0,13r-103,160r103,0r0,15r-122,0","w":139},"\ue189":{"d":"140,0r0,-88r-103,0r0,88r-15,0r0,-188r15,0r0,85r103,0r0,-85r16,0r0,188r-16,0","w":178},"\ue18a":{"d":"40,-103r82,0r0,14r-82,0r0,-14xm12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54","w":162},"\ue18b":{"d":"22,0r0,-188r17,0r0,188r-17,0","w":60},"\ue18c":{"d":"149,0r-65,-103r-47,53r0,50r-15,0r0,-188r16,0r0,115r100,-115r19,0r-62,72r72,116r-18,0","w":173},"\ue18d":{"d":"83,-167r-63,167r-17,0r72,-188r16,0r73,188v-31,9,-26,-36,-39,-56","w":166,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue18e":{"d":"176,-154r-63,126r-13,0r-63,-126r0,154r-15,0r0,-188r15,0r70,141r70,-141r15,0r0,188r-16,0r0,-154","w":211},"\ue18f":{"d":"152,0r-114,-161r0,161r-16,0r0,-188r16,0r113,162r0,-162r16,0r0,188r-15,0","w":188},"\ue190":{"d":"16,-174r0,-14r125,0r0,14r-125,0xm16,0r0,-15r125,0r0,15r-125,0xm32,-88r0,-15r93,0r0,15r-93,0","w":158},"\ue191":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54","w":162},"\ue192":{"d":"140,0r0,-174r-103,0r0,174r-15,0r0,-188r134,0r0,188r-16,0","w":178},"\ue193":{"d":"22,-188v63,0,136,-10,134,55v-1,55,-58,57,-118,54r0,79r-16,0r0,-188xm38,-94v47,0,102,7,101,-40v-1,-46,-54,-41,-101,-40r0,80","w":158,"k":{"\ue183":11,"\ue19b":11,"\ue18d":11,"\ue186":11}},"\ue194":{"d":"9,0r0,-14r52,-84r-52,-77r0,-13r119,0r0,14r-100,0r52,77r-52,82r103,0r0,15r-122,0","w":137},"\ue195":{"d":"77,-174r0,174r-17,0r0,-174r-58,0r0,-14r133,0r0,14r-58,0","w":137,"k":{"\ue183":14,"\ue19b":14,"\ue18d":14,"\ue186":14}},"\ue196":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78","w":137,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue197":{"d":"112,-179v54,2,83,29,84,83v0,54,-35,76,-84,81r0,15r-16,0r0,-16v-52,-3,-82,-27,-83,-80v-1,-54,29,-81,83,-83r0,-9r16,0r0,9xm96,-166v-64,-5,-87,74,-52,117v10,13,28,19,52,20r0,-137xm112,-29v41,-3,68,-22,68,-67v0,-45,-27,-68,-68,-70r0,137","w":207},"\ue198":{"d":"124,0r-52,-84r-51,84r-19,0r61,-96r-57,-92r19,0r47,78r48,-78r18,0r-57,92r62,96r-19,0","w":144},"\ue199":{"d":"186,-102v-1,41,-32,65,-75,66r0,36r-17,0r0,-37v-45,-2,-74,-25,-75,-68r0,-83r15,0v0,64,-12,136,60,137r0,-137r17,0r0,137v33,-1,59,-19,59,-52r0,-85r16,0r0,86","w":204},"\ue19a":{"d":"149,-122v1,44,4,90,-24,107r28,1r0,14r-57,0r0,-16v38,-8,37,-57,36,-105v-1,-33,-18,-52,-51,-53v-55,-2,-56,50,-53,105v0,26,14,46,36,53r0,16r-57,0r0,-15r29,0v-32,-15,-25,-62,-25,-107v0,-43,25,-67,69,-67v43,0,68,25,69,67","w":161},"\ue19b":{"d":"130,-45r-93,0r-16,45r-18,0r73,-188r16,0r73,188r-19,0xm125,-59r-41,-108r-41,108r82,0xm79,-207r28,-55r18,6r-36,53","w":167,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue19c":{"d":"22,0r0,-188r122,0r0,14r-106,0r0,71r90,0r0,15r-90,0r0,73r106,0r0,15r-122,0xm72,-207r28,-55r17,6r-36,53","w":150},"\ue19d":{"d":"140,0r0,-88r-103,0r0,88r-15,0r0,-188r15,0r0,85r103,0r0,-85r16,0r0,188r-16,0xm80,-207r28,-55r17,6r-36,53","w":178},"\ue19e":{"d":"22,0r0,-188r17,0r0,188r-17,0xm25,-207r28,-55r18,6r-36,53","w":60},"\ue19f":{"d":"12,-67v-3,-67,4,-122,69,-122v65,0,69,54,69,122v0,43,-27,69,-69,69v-44,0,-67,-25,-69,-69xm133,-67v2,-54,3,-107,-51,-107v-56,0,-55,52,-53,107v1,34,18,54,53,54v33,0,50,-21,51,-54xm74,-207r28,-55r18,6r-36,53","w":162},"\ue1a0":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78xm62,-207r28,-55r18,6r-36,53","w":137,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue1a1":{"d":"149,-122v1,44,4,90,-24,107r28,1r0,14r-57,0r0,-16v38,-8,37,-57,36,-105v-1,-33,-18,-52,-51,-53v-55,-2,-56,50,-53,105v0,26,14,46,36,53r0,16r-57,0r0,-15r29,0v-32,-15,-25,-62,-25,-107v0,-43,25,-67,69,-67v43,0,68,25,69,67xm71,-207r28,-55r18,6r-36,53","w":161},"\ue1a2":{"d":"22,0r0,-188r17,0r0,188r-17,0xm55,-219r0,-19r20,0r0,19r-20,0xm-13,-219r0,-19r19,0r0,19r-19,0","w":60},"\ue1a3":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78xm93,-219r0,-19r20,0r0,19r-20,0xm25,-219r0,-19r19,0r0,19r-19,0","w":137,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\u04d9":{"d":"86,3v-51,0,-73,-38,-70,-94r127,0v-1,-44,-16,-76,-61,-76v-16,0,-33,7,-43,15r-10,-11v14,-10,31,-17,52,-17v54,0,77,34,77,90v1,57,-22,93,-72,93xm32,-78v-5,59,59,87,94,49v11,-11,16,-28,17,-49r-111,0","w":170},"\u1e80":{"d":"223,0r-16,0r-62,-221r-61,221r-16,0r-61,-251r17,0r53,223r62,-223r14,0r62,223r52,-223r17,0xm147,-262r-55,-34r13,-13r49,39","w":291,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u1e81":{"d":"194,0r-16,0r-52,-154r-52,154r-16,0r-55,-178r17,0r47,155r51,-155r16,0r52,156r47,-156r17,0xm125,-203r-35,-53r17,-6r28,55","w":253,"k":{"e":7}},"\u1e82":{"d":"223,0r-16,0r-62,-221r-61,221r-16,0r-61,-251r17,0r53,223r62,-223r14,0r62,223r52,-223r17,0xm139,-270r49,-39r12,13r-54,34","w":291,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u1e83":{"d":"194,0r-16,0r-52,-154r-52,154r-16,0r-55,-178r17,0r47,155r51,-155r16,0r52,156r47,-156r17,0xm118,-207r28,-55r18,6r-36,53","w":253,"k":{"e":7}},"\u1e84":{"d":"223,0r-16,0r-62,-221r-61,221r-16,0r-61,-251r17,0r53,223r62,-223r14,0r62,223r52,-223r17,0xm104,-273r0,-19r19,0r0,19r-19,0xm168,-273r0,-19r20,0r0,19r-20,0","w":291,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue131":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"o":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f0":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue11f":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue0ff":11,"\ue101":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16b":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11}},"\u1e85":{"d":"194,0r-16,0r-52,-154r-52,154r-16,0r-55,-178r17,0r47,155r51,-155r16,0r52,156r47,-156r17,0xm150,-219r0,-19r20,0r0,19r-20,0xm82,-219r0,-19r19,0r0,19r-19,0","w":253,"k":{"e":7}},"\u1ef2":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm91,-262r-54,-34r12,-13r49,39","w":171,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"o":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f0":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u1ef3":{"d":"76,-18r56,-160r17,0r-78,218v-8,21,-21,33,-49,32r0,-14v34,3,37,-32,46,-56r-67,-180r18,0xm77,-203r-35,-53r17,-6r28,55","w":150,"k":{"e":7}},"\ue179":{"d":"31,-138v0,61,114,14,114,88v0,62,-101,62,-140,32r9,-14v28,24,115,32,115,-18v0,-62,-115,-17,-115,-88v0,-58,80,-62,122,-37r-9,14v-31,-21,-96,-22,-96,23xm76,85r-10,0r10,-33r-7,0r0,-24r22,0v3,27,-7,41,-15,57","w":155},"\ue17a":{"d":"176,0r-14,0r-47,-161r-46,161r-15,0r-49,-188r17,0r40,161r47,-161r13,0r48,162r38,-162r18,0xm112,-207r28,-55r18,6r-36,53","w":230,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue17b":{"d":"176,0r-14,0r-47,-161r-46,161r-15,0r-49,-188r17,0r40,161r47,-161r13,0r48,162r38,-162r18,0xm116,-203r-36,-53r18,-6r28,55","w":230,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue17c":{"d":"176,0r-14,0r-47,-161r-46,161r-15,0r-49,-188r17,0r40,161r47,-161r13,0r48,162r38,-162r18,0xm139,-219r0,-19r20,0r0,19r-20,0xm71,-219r0,-19r19,0r0,19r-19,0","w":230,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\ue17d":{"d":"76,0r-16,0r0,-78r-59,-110r17,0r50,96r51,-96r17,0r-60,110r0,78xm67,-203r-36,-53r17,-6r29,55","w":137,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue11f":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14}},"\u0259":{"d":"86,3v-51,0,-73,-38,-70,-94r127,0v-1,-44,-16,-76,-61,-76v-16,0,-33,7,-43,15r-10,-11v14,-10,31,-17,52,-17v54,0,77,34,77,90v1,57,-22,93,-72,93xm32,-78v-5,59,59,87,94,49v11,-11,16,-28,17,-49r-111,0","w":170},"\u02b9":{"d":"67,-242r-44,90r-12,-3r34,-92","w":69},"\u2103":{"d":"222,-13v33,1,51,-19,63,-42r15,7v-11,30,-40,50,-79,51v-84,0,-86,-77,-86,-166v0,-95,131,-119,164,-43r-15,8v-9,-21,-32,-39,-62,-39v-75,-2,-73,74,-70,149v1,45,24,74,70,75xm66,-252v27,0,45,18,45,44v0,26,-17,44,-45,44v-27,0,-44,-18,-44,-44v0,-26,18,-44,44,-44xm66,-175v19,0,33,-14,33,-33v0,-18,-15,-32,-33,-32v-18,-1,-33,14,-32,32v0,18,14,33,32,33","w":306},"\u2109":{"d":"154,-235r0,101r115,0r0,15r-115,0r0,119r-17,0r0,-251r152,0r0,16r-135,0xm66,-252v27,0,45,18,45,44v0,26,-17,44,-45,44v-27,0,-44,-18,-44,-44v0,-26,18,-44,44,-44xm66,-175v19,0,33,-14,33,-33v0,-18,-15,-32,-33,-32v-18,-1,-33,14,-32,32v0,18,14,33,32,33","w":291},"\u2117":{"d":"204,-149v0,45,-44,46,-90,44r0,65r-14,0r0,-155v51,0,104,-7,104,46xm190,-150v0,-37,-40,-32,-76,-32r0,64v37,0,76,5,76,-32xm265,-123v0,76,-48,127,-124,127v-75,0,-122,-50,-122,-127v0,-76,46,-126,122,-126v77,0,124,50,124,126xm251,-123v0,-69,-42,-114,-110,-114v-67,0,-109,47,-109,114v0,67,41,114,109,114v69,0,110,-46,110,-114","w":280},"\u2126":{"d":"53,-15v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-74,-68,-75v-73,-1,-73,71,-70,145v2,37,17,64,46,74r0,18r-68,0r0,-15r43,0","w":203},"\u212b":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm138,-288v0,18,-15,33,-33,33v-18,0,-32,-15,-32,-33v-1,-18,14,-33,32,-32v18,0,33,14,33,32xm128,-288v0,-12,-10,-22,-23,-22v-12,0,-23,9,-22,22v0,13,10,23,22,23v12,0,23,-11,23,-23","w":210},"\u2023":{"d":"132,-100r-103,57r0,-109","w":143},"\u2105":{"d":"142,-63v1,-38,16,-64,52,-64v35,0,50,24,50,64v0,40,-15,65,-52,65v-36,0,-50,-26,-50,-65xm17,-187v-6,-56,54,-82,94,-51r-8,11v-28,-24,-79,-5,-72,40v-7,45,45,65,71,39r10,10v-38,33,-101,8,-95,-49xm230,-63v0,-31,-9,-50,-37,-50v-28,0,-36,20,-37,50v0,31,8,51,37,51v28,0,37,-18,37,-51xm62,9r-13,0r153,-267r13,0","w":259},"\u2190":{"d":"272,-122r0,14r-223,0r60,58r-11,11r-76,-77r76,-76r11,11r-60,59r223,0","w":291},"\u2191":{"d":"94,-1r-14,0r0,-222r-58,59r-11,-11r76,-76r76,76r-10,11r-59,-59r0,222","w":174},"\u2192":{"d":"245,-122r-60,-59r11,-11r77,76r-77,77r-11,-11r60,-58r-223,0r0,-14r223,0","w":291},"\u2193":{"d":"94,-28r59,-60r10,11r-76,76r-76,-76r11,-11r58,60r0,-223r14,0r0,223","w":174},"\u2196":{"d":"69,-215r204,201r-11,10r-203,-202r0,84r-14,0r0,-108r108,0r0,15r-84,0","w":302},"\u2198":{"d":"248,-19r-203,-202r10,-10r203,202r0,-83r14,0r0,107r-108,0r0,-14r84,0","w":302},"\u21a9":{"d":"288,-196v0,53,-10,88,-60,88r-182,0r59,58r-10,11r-76,-76r76,-77r10,11r-59,59r185,0v40,1,42,-33,42,-75v0,-35,-26,-43,-65,-40r0,-14v49,-4,80,9,80,55","w":302},"\u21aa":{"d":"35,-197v0,41,1,76,41,75r185,0r-59,-59r11,-11r75,77r-75,76r-11,-11r59,-58r-182,0v-50,1,-60,-35,-60,-88v0,-45,31,-59,80,-55r0,14v-38,-3,-64,4,-64,40","w":300},"\u21b3":{"d":"62,-122r201,0r-59,-59r10,-11r76,77r-75,76r-11,-11r59,-58r-217,0r0,-141r16,0r0,127","w":302},"\u21b5":{"d":"271,-249r16,0r0,141r-217,0r59,58r-11,11r-75,-76r75,-77r11,11r-59,59r201,0r0,-127","w":302},"\u21de":{"d":"98,-131r41,0r0,15r-41,0r0,37r41,0r0,15r-41,0r0,64r-16,0r0,-64r-41,0r0,-15r41,0r0,-37r-41,0r0,-15r41,0r0,-90r-58,58r-10,-11r76,-75r76,75r-10,11r-59,-58","w":174},"\u21df":{"d":"97,-28r59,-59r10,11r-76,76r-76,-76r10,-11r58,59r0,-91r-41,0r0,-15r41,0r0,-37r-41,0r0,-15r41,0r0,-64r16,0r0,64r41,0r0,15r-41,0r0,37r41,0r0,15r-41,0","w":174},"\u21e0":{"d":"110,-122r0,14r-64,0r61,58r-12,11r-76,-77r76,-76r12,11r-61,59r64,0xm130,-122r35,0r0,14r-35,0r0,-14xm185,-122r35,0r0,14r-35,0r0,-14xm240,-122r29,0r0,14r-29,0r0,-14","w":290},"\u21e1":{"d":"92,-139r0,35r-14,0r0,-35r14,0xm92,-84r0,35r-14,0r0,-35r14,0xm92,-28r0,28r-14,0r0,-28r14,0xm92,-159r-14,0r0,-63r-58,60r-11,-12r77,-76r76,76r-11,12r-59,-60r0,63","w":171},"\u21e2":{"d":"158,-108r-35,0r0,-14r35,0r0,14xm103,-108r-35,0r0,-14r35,0r0,14xm48,-108r-29,0r0,-14r29,0r0,14xm242,-122r-61,-59r12,-11r76,76r-76,77r-12,-11r61,-58r-64,0r0,-14r64,0","w":290},"\u21e3":{"d":"92,-27r59,-60r10,11r-76,76r-76,-76r10,-11r59,60r0,-64r14,0r0,64xm78,-166r0,-35r14,0r0,35r-14,0xm78,-111r0,-35r14,0r0,35r-14,0xm78,-221r0,-28r14,0r0,28r-14,0","w":171},"\u21e4":{"d":"28,-39r0,-153r15,0r0,153r-15,0xm269,-122r0,14r-186,0r60,58r-12,11r-76,-77r76,-76r12,11r-60,59r186,0","w":282},"\u21e5":{"d":"255,-39r0,-153r15,0r0,153r-15,0xm215,-122r-60,-59r11,-11r76,76r-76,77r-11,-11r60,-58r-187,0r0,-14r187,0","w":282},"\u21e7":{"d":"12,-117r129,-134r128,134r-63,0r0,117r-130,0r0,-117r-64,0xm141,-232r-100,104r47,0r0,116r106,0r0,-116r47,0","w":282},"\u21ea":{"d":"77,8r130,0r0,61r-130,0r0,-61xm89,19r0,38r105,0r0,-38r-105,0xm13,-117r129,-134r128,134r-63,0r0,95r-130,0r0,-95r-64,0xm142,-232r-101,104r48,0r0,93r105,0r0,-93r48,0","w":286},"\u2303":{"d":"39,-149r104,-104r103,103r-11,11r-92,-91r-93,92","w":286},"\u2318":{"d":"34,-206v-1,32,31,36,66,33v2,-35,0,-66,-33,-66v-18,0,-33,15,-33,33xm228,-239v-30,1,-36,32,-33,66v35,2,66,0,66,-33v0,-18,-15,-33,-33,-33xm67,-12v34,0,35,-32,33,-66v-34,-2,-67,1,-66,33v0,19,13,33,33,33xm261,-45v0,-32,-31,-35,-66,-33v-2,34,0,67,33,66v21,0,33,-14,33,-33xm180,-92r0,-67r-66,0r0,67r66,0xm275,-206v0,41,-35,51,-80,47r0,67v45,-3,80,4,80,47v0,31,-17,48,-47,48v-42,0,-51,-35,-48,-81r-66,0v3,46,-4,82,-47,81v-30,-1,-48,-19,-48,-48v0,-40,35,-51,81,-47r0,-67v-45,4,-81,-8,-81,-47v0,-27,18,-46,48,-47v44,-1,50,35,47,80r66,0v-3,-45,6,-80,48,-80v31,-1,47,19,47,47","w":296},"\u2324":{"d":"49,-116r101,-108r101,107r-12,12r-89,-96r-90,96xm253,-251r0,16r-207,0r0,-16r207,0","w":286},"\u2325":{"d":"15,-239r82,0r140,224r168,0r0,15r-180,0r-140,-223r-70,0r0,-16xm188,-239r217,0r0,16r-217,0r0,-16","w":427},"\u2326":{"d":"268,0r-238,0r0,-250r238,0r122,125xm369,-125r-109,-110r-216,0r0,221r216,0xm180,-116r-59,59r-9,-10r58,-58r-58,-59r9,-10r59,59r58,-59r10,10r-58,59r58,58r-10,10","w":405},"\u232b":{"d":"30,-125r122,-125r238,0r0,250r-238,0xm161,-14r215,0r0,-221r-215,0r-110,110xm182,-57r-10,-10r59,-58r-59,-59r10,-10r59,59r58,-59r10,10r-59,59r59,58r-10,10r-58,-59","w":405},"\u235f":{"d":"271,-125v6,113,-143,168,-217,90v-21,-21,-38,-49,-37,-90v3,-77,51,-127,127,-127v77,0,122,51,127,127xm143,-19v64,0,106,-42,106,-106v0,-64,-43,-106,-106,-106v-63,0,-106,42,-106,106v0,64,42,106,106,106xm188,-108r9,60r-57,-27r-50,27r7,-59r-42,-42r58,-12r27,-53r29,53r59,12","w":289},"\u23cf":{"d":"276,-82r0,49r-252,0r0,-49r252,0xm276,-113r-252,0r126,-126","w":307},"\u25a0":{"d":"272,-14r-228,0r0,-228r228,0r0,228","w":315},"\u25a1":{"d":"44,-13r218,0r0,-222r-218,0r0,222xm29,0r0,-249r247,0r0,249r-247,0","w":302},"\u25b2":{"d":"281,-63r-253,0r127,-127","w":295},"\u25b6":{"d":"50,-252r126,126r-126,126r0,-252","w":214},"\u25bc":{"d":"155,-63r-127,-127r253,0","w":295},"\u25c0":{"d":"163,0r-127,-126r127,-126r0,252","w":214},"\u25cf":{"d":"154,-242v68,0,114,47,114,113v0,68,-47,115,-114,115v-69,0,-114,-46,-114,-115v0,-68,47,-113,114,-113","w":303},"\u2605":{"d":"218,-91r14,92r-86,-42r-77,42r11,-90r-65,-65r90,-17r41,-81r44,80r90,18","w":293},"\u2606":{"d":"219,-93r14,94r-86,-42r-79,42r12,-91r-66,-66r91,-18r41,-81r45,81r91,18xm262,-149r-77,-16r-38,-69r-36,70r-76,15r55,55r-10,77r67,-35r74,35r-13,-79","w":301},"\u2610":{"d":"44,-13r218,0r0,-222r-218,0r0,222xm29,0r0,-249r247,0r0,249r-247,0","w":302},"\u2611":{"d":"97,-139v18,12,26,44,30,71v33,-52,74,-109,124,-144v3,7,-13,12,-18,21v-37,43,-68,96,-95,147v-11,2,-20,5,-25,8v-9,-32,-22,-73,-41,-95v6,-5,17,-7,25,-8xm44,-13r218,0r0,-222r-218,0r0,222xm30,0r0,-249r247,0r0,249r-247,0","w":306},"\u2612":{"d":"222,-208r12,11r-70,71r71,71r-13,12r-70,-71r-71,72r-12,-13r71,-71r-71,-71r12,-11r71,71xm45,-13r218,0r0,-222r-218,0r0,222xm30,0r0,-249r247,0r0,249r-247,0","w":306},"\u2622":{"d":"122,-126v0,-16,13,-31,28,-30v36,1,37,58,0,58v-14,0,-28,-12,-28,-28xm205,-32v-36,19,-75,21,-109,0r35,-62v14,6,24,7,38,0xm131,-159v-12,5,-17,19,-19,33r-71,0v1,-49,21,-73,54,-95xm205,-221v31,18,55,49,55,95r-71,0v-1,-15,-8,-27,-20,-34xm270,-123v0,-74,-47,-123,-120,-123v-72,0,-119,48,-119,120v0,73,49,119,120,119v70,0,119,-48,119,-116xm283,-128v0,80,-51,134,-133,134v-79,0,-132,-52,-132,-132v0,-79,53,-132,132,-132v80,0,133,50,133,130","w":301},"\u2623":{"d":"109,-166v26,-19,62,-22,90,0v-3,6,-7,11,-13,15v-23,-15,-40,-14,-63,0v-6,-3,-10,-9,-14,-15xm181,-43v-3,-6,-6,-12,-7,-19v24,-13,34,-28,32,-54v4,-4,13,-3,19,-4v6,38,-17,64,-44,77xm126,-43v-27,-12,-50,-38,-43,-77v10,0,22,0,19,15v0,18,11,32,32,43v-1,7,-4,14,-8,19xm27,-50v-19,-49,5,-96,49,-105v-1,-56,21,-88,69,-96r2,5v-33,9,-49,28,-49,55v1,35,20,52,54,56r0,8v-12,2,-19,12,-14,23r-7,4v-34,-52,-121,-16,-100,48xm277,-49v25,-67,-70,-101,-99,-50v-13,-4,-3,-27,-21,-28r0,-8v32,-3,52,-23,53,-57v0,-26,-15,-44,-43,-53r2,-6v46,9,66,41,64,95v41,14,67,57,49,108xm271,-31v-17,36,-86,41,-117,12v-33,30,-101,22,-118,-13r4,-3v45,54,123,-2,93,-60v10,-8,23,11,34,-4r8,4v-29,60,49,109,92,62","w":308},"\u262e":{"d":"56,-35v-77,-76,-25,-230,92,-222v79,5,128,51,133,129v6,116,-146,171,-225,93xm243,-73v22,-35,15,-101,-12,-126v-18,-17,-41,-31,-72,-36r0,86xm138,-235v-74,4,-123,91,-83,162r83,-76r0,-86xm159,-122r0,104v32,-5,53,-18,72,-39xm138,-122r-71,65v20,18,38,35,71,40r0,-105","w":300},"\u262f":{"d":"189,-99v26,0,22,36,0,36v-10,0,-17,-9,-17,-17v-1,-11,8,-19,17,-19xm108,-193v-8,0,-18,8,-17,17v0,9,6,18,18,18v11,0,18,-9,18,-18v0,-9,-8,-18,-19,-17xm149,3v-79,0,-131,-53,-131,-131v0,-80,54,-130,131,-130v81,0,131,51,131,131v0,80,-51,130,-131,130xm272,-127v2,-94,-99,-155,-184,-108v40,-6,79,17,82,56v4,48,-45,58,-45,104v0,37,25,60,63,57v53,-4,82,-51,84,-109","w":298},"\u2672":{"d":"240,-161r-75,-8r21,-14r-16,-29r-45,67r-61,-35v21,-24,25,-66,62,-74r97,1v11,8,16,25,25,36r23,-13xm75,-7v-16,-37,-65,-82,-33,-127r-24,-18r76,0r31,66r-22,-12v-9,6,-29,29,-6,29r69,0r0,76v-32,-3,-80,11,-91,-14xm213,-134r62,-37v10,29,44,54,34,89r-50,85v-9,8,-28,3,-43,4r0,28r-40,-63r40,-61r0,25r39,0xm167,-217v-8,-20,-44,-46,-60,-20r-35,56r51,29xm50,-135v-26,22,-15,78,34,66v-13,-14,11,-28,18,-36r10,6r-22,-47r-57,0xm161,-64v-37,-2,-83,4,-114,-5v13,22,23,48,39,68v17,9,51,2,75,4r0,-67xm247,-210v-11,-13,-13,-35,-33,-39r-73,0v28,11,36,45,52,69r-13,8r57,5r24,-52xm261,-64v23,-3,51,-16,44,-42r-32,-57r-53,31xm298,-75v-18,20,-50,17,-87,17r0,-16r-29,46r29,47r0,-16v19,-2,42,5,50,-10","w":330},"\u2673":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm163,-43r-20,0r0,-82r-13,9r0,-21v8,-7,16,-13,33,-11r0,105","w":312},"\u2674":{"d":"119,-118v-2,-38,64,-44,62,-4v-1,28,-25,40,-37,59r35,0r0,18r-61,0r0,-16v14,-20,34,-35,44,-60v0,-6,-4,-11,-11,-11v-8,0,-12,7,-13,16xm287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5","w":312},"\u2675":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm171,-100v25,18,5,66,-32,55v-12,-4,-18,-14,-21,-26r19,-3v2,8,5,12,12,13v8,0,16,-7,14,-16v1,-14,-10,-13,-23,-13r0,-18v23,7,30,-21,10,-24v-7,1,-10,6,-12,13r-19,-2v2,-15,15,-28,31,-29v29,-3,41,36,21,50","w":312},"\u2676":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm172,-60r0,15r-19,0r0,-15r-42,0v1,-40,25,-59,35,-90r20,0r-34,72r21,0r0,-25r19,0r0,25r8,0r0,18r-8,0","w":312},"\u2677":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm142,-113v25,-10,46,7,42,36v2,28,-29,45,-52,29v-6,-4,-10,-11,-12,-22r19,-3v2,19,25,15,26,0v8,-20,-16,-35,-24,-16r-17,0r0,-59r55,0r0,18r-37,0r0,17","w":312},"\u2678":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm154,-107v19,-2,31,14,31,31v0,21,-11,34,-32,34v-58,0,-15,-79,1,-106r20,0xm153,-60v8,0,13,-7,13,-15v0,-9,-5,-14,-13,-15v-6,1,-13,6,-12,15v0,9,4,15,12,15","w":312},"\u2679":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm148,-41r-20,0r34,-86r-22,0r0,14r-18,0r0,-33r62,0v-3,44,-25,69,-36,105","w":312},"\u267a":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5","w":312},"\u267b":{"d":"263,-222r-30,52r-60,0r19,-12v-15,-23,-24,-53,-47,-68v27,3,70,-8,84,8r17,30xm57,-181v18,-28,33,-88,81,-62v8,4,12,9,16,14r-44,79xm297,-125v15,30,-9,59,-41,58r-45,-80r55,-31xm109,-104r-16,-10v-12,26,-30,47,-38,76v-10,-25,-38,-46,-35,-77r18,-31r-15,-7r58,0xm169,-29r31,-49r0,21v32,-1,67,5,88,-10v-24,27,-28,77,-88,67r0,21xm93,0v-29,0,-38,-37,-21,-57r89,0r0,57r-68,0","w":320},"\u267c":{"d":"150,-259v80,0,133,53,133,132v0,81,-54,133,-133,133v-78,0,-132,-53,-132,-133v0,-79,53,-132,132,-132xm213,-194v-8,-10,-7,-28,-26,-28r-49,0v18,10,24,34,35,51r-14,9r45,0r22,-39xm145,-207v-8,-14,-39,-22,-50,-3r-22,39r40,24xm221,-85v25,1,44,-22,31,-44r-23,-39r-41,23xm90,-149r-43,0r11,5v-5,12,-23,24,-12,40r25,40v2,-17,20,-40,28,-56r12,7xm245,-85v-14,10,-41,8,-66,8r0,-17r-23,37r23,38r0,-16v42,8,48,-28,66,-50xm84,-77v-29,47,28,43,66,42r0,-42r-66,0","w":300},"\u267d":{"d":"150,-260v79,0,133,52,133,133v0,80,-53,132,-133,132v-79,0,-132,-53,-132,-132v0,-80,54,-133,132,-133xm150,-1v75,0,126,-51,126,-126v0,-75,-51,-126,-126,-126v-75,0,-125,51,-125,126v0,75,50,126,125,126xm227,-201r-22,39r-45,0r14,-9v-11,-17,-17,-40,-35,-51v21,2,52,-6,63,6r12,22xm73,-171v14,-19,23,-65,61,-46v5,3,9,6,12,10r-33,60xm252,-129v12,21,-6,46,-30,44r-33,-60r40,-23xm112,-113r-12,-7v-8,16,-25,38,-28,56v-8,-19,-31,-34,-27,-57r14,-23r-11,-5r43,0xm157,-57r23,-37r0,17v24,0,50,3,66,-8v-18,20,-21,57,-66,50r0,16xm151,-35v-30,-2,-74,10,-73,-23v0,-6,2,-13,6,-19r67,0r0,42","w":300},"\u2693":{"d":"125,-252v35,0,42,54,11,62r0,5r47,0r0,18r-47,0r1,143v23,-4,38,-9,55,-25r-15,-12r51,-15r-7,55r-14,-15v-22,22,-47,35,-81,39v-34,-4,-60,-17,-81,-39r-14,15r-8,-55r51,15r-14,12v14,14,30,22,54,25r0,-143r-46,0r0,-18r46,0r0,-4v-30,-8,-26,-63,11,-63","w":251},"\u26a0":{"d":"141,-172v-1,-14,19,-23,29,-12v3,3,6,7,5,12r-11,101v0,3,-5,5,-7,6v-2,0,-8,-2,-7,-6xm172,-42v0,11,-9,17,-20,14v-16,-4,-13,-30,5,-29v8,0,15,6,15,15xm37,0v-18,1,-24,-16,-15,-30r119,-211v6,-16,27,-15,35,-1r120,212v7,13,2,30,-16,30r-243,0xm154,-226r-113,203v65,6,167,6,235,0v-34,-69,-75,-132,-111,-199v-3,-6,-7,-8,-11,-4","w":318},"\u2706":{"d":"96,4v-83,-24,-78,-239,0,-259r0,75v-25,9,-22,96,0,112r0,72xm130,-3v0,11,-18,6,-29,7r0,-72v11,1,28,-5,29,7r0,58xm101,-255v11,1,28,-4,29,7r0,59v1,15,-18,7,-29,9r0,-75","w":155},"\u2708":{"d":"312,-104v0,9,-7,16,-18,15r-90,0r-75,127r-35,0r42,-127r-69,0r-22,29r-27,0r14,-45r-15,-46r27,0r23,30r69,0r-40,-129r34,0r74,129r89,0v11,0,19,8,19,17","w":320},"\u2709":{"d":"127,-119r-82,-82r0,164xm256,-121r82,81r0,-164xm61,-23r261,0r-80,-81r-51,52r-50,-49xm58,-220r133,134r132,-134r-265,0xm362,-242r0,242r-339,0r0,-242r339,0","w":385},"\u2713":{"d":"23,-128v12,-9,36,-22,48,-5v14,21,27,53,31,85v42,-72,98,-147,165,-194r5,6v-66,59,-114,149,-157,232v-15,3,-27,6,-36,11v-14,-47,-26,-104,-56,-135","w":275},"\u2716":{"d":"258,-62r-62,63r-62,-63r-63,63r-62,-63r63,-62r-63,-62r62,-62r63,62r62,-62r62,62r-63,62","w":267},"\u271a":{"d":"95,-240r83,0r0,79r78,0r0,83r-76,0r0,78r-84,0r0,-78r-78,0r0,-83r77,0r0,-79","w":269},"\u272a":{"d":"143,-252v77,0,128,51,128,127v0,77,-51,128,-128,128v-77,0,-128,-51,-128,-128v0,-76,51,-127,128,-127xm174,-168r-34,-64r-33,64r-71,14r51,51r-9,71r62,-33r68,33r-12,-73r50,-49","w":286},"\u2794":{"d":"120,-27r87,-86r-197,0r0,-23r197,0r-86,-86r34,0r96,97r-97,98r-34,0","w":258},"\ue356":{"d":"56,-124v-34,-1,-47,-27,-47,-62v0,-38,11,-66,48,-66v18,1,30,7,37,23r0,-22r11,0r0,125r-11,0r0,-23v-7,12,-18,25,-38,25xm58,-242v-30,0,-37,24,-37,54v0,30,8,53,37,53v28,0,37,-24,36,-54v0,-28,-7,-53,-36,-53xm168,1v-36,-1,-47,-27,-47,-62v0,-36,11,-65,48,-65v18,0,29,8,38,22r0,-21r11,0r0,125r-11,0v-1,-7,2,-18,-1,-23v-7,12,-18,24,-38,24xm170,-116v-30,0,-37,23,-37,53v0,30,8,53,37,54v50,0,51,-108,0,-107xm54,9r-13,0r153,-267r13,0","w":226},"\ue357":{"d":"131,-51v-3,-53,4,-94,56,-94v50,0,55,41,55,94v0,32,-22,52,-55,52v-35,0,-54,-18,-56,-52xm228,-52v2,-42,0,-81,-41,-81v-43,0,-44,39,-42,82v2,24,15,40,42,40v26,0,40,-17,41,-41xm70,-106r-13,0r0,-60r-48,-85r14,0r40,73r40,-73r15,0r-48,85r0,60xm41,9r-13,0r153,-267r13,0","w":250},"\ue378":{"d":"208,-114r-87,-87r0,197r-23,0r0,-197r-85,86r0,-34r97,-96r98,97r0,34","w":220},"\ue379":{"d":"208,-101r-98,97r-97,-96r0,-34r85,86r0,-197r23,0r0,197r87,-87r0,34","w":220},"\ue37a":{"d":"107,-27r-97,-98r95,-97r35,0r-86,86r197,0r0,23r-197,0r86,86r-33,0","w":258},"\ue37b":{"d":"171,-54r0,-124r-140,141r-17,-17r141,-140r-123,0r24,-24r138,0r0,140","w":207},"\ue37c":{"d":"14,-78r0,-140r139,0r24,24r-123,0r141,140r-17,17r-141,-141r0,124","w":207},"\ue37d":{"d":"292,1r-126,-127r126,-126r0,253xm156,1r-127,-127r127,-126r0,253","w":323},"\ue37e":{"d":"44,-252r126,126r-126,126r0,-252xm180,-252r126,126r-126,126r0,-252","w":323},"\ue381":{"d":"209,0r-51,0r0,-253r51,0r0,253xm107,0r-50,0r0,-253r50,0r0,253","w":267},"\ue382":{"d":"148,-6r-80,-78r-42,0r0,-81r42,0r80,-78r0,237","w":182},"\ue383":{"d":"194,-212v52,28,52,145,0,174v-3,0,-9,-5,-9,-8v39,-34,38,-123,1,-158v-1,-4,4,-9,8,-8xm72,-84r-43,0r0,-80r43,0r78,-78r0,236","w":256},"\ue384":{"d":"230,-236v-6,-6,-2,-16,6,-16v74,45,75,214,-1,257v-8,0,-11,-12,-4,-17v56,-42,57,-180,-1,-224xm144,-6r-79,-78r-43,0r0,-80r43,0r79,-78r0,236xm188,-216v54,30,54,154,-1,183v-5,0,-10,-4,-9,-9v15,-23,32,-44,32,-82v0,-38,-18,-61,-32,-83v0,-4,5,-9,10,-9","w":321},"\ue385":{"d":"63,-84r-42,0r0,-80r42,0r79,-78r0,236xm278,56v-23,-14,15,-31,21,-47v61,-77,39,-251,-28,-296v-7,-8,5,-20,13,-13v42,41,71,100,71,181v0,80,-28,140,-77,175xm228,-247v-7,-8,5,-23,13,-13v67,53,74,229,-7,275v-22,-10,10,-26,15,-39v44,-57,31,-190,-21,-223xm194,-221v53,35,56,164,-2,194v-24,-13,17,-29,17,-50v16,-43,6,-108,-23,-128v-5,-7,0,-16,8,-16","w":377},"\ue386":{"d":"141,-263v0,-6,6,-11,12,-11v6,0,11,5,11,11r0,119v0,18,-22,13,-23,0r0,-119xm238,-223v61,23,57,152,7,186v-21,22,-53,40,-93,39v-80,-3,-133,-53,-133,-132v0,-41,18,-81,49,-92v30,8,-6,32,-12,44v-36,72,15,159,96,159v94,0,141,-122,78,-184v-6,-7,-2,-21,8,-20","w":300},"\ue387":{"d":"271,-205r-42,-42r9,-8r41,42xm217,-210v10,-1,19,9,19,18v0,9,-10,19,-19,19v-9,0,-19,-9,-18,-19v-1,-9,9,-19,18,-18xm197,-129r-41,-41r8,-9r42,41xm142,-135v11,-1,19,10,19,19v0,9,-8,19,-19,18v-9,1,-19,-9,-18,-18v-1,-10,8,-20,18,-19xm183,-84v24,3,45,19,55,37v-6,24,-24,45,-48,52v-81,-26,-138,-88,-171,-162v9,-23,27,-42,52,-48v18,10,34,30,38,54v-5,10,-18,16,-28,21v19,26,49,61,82,74v4,-11,10,-21,20,-28","w":288},"\ue388":{"d":"252,-114v12,-1,24,10,24,23v0,13,-12,24,-24,24v-12,0,-24,-11,-24,-24v0,-13,12,-24,24,-23xm186,-114v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23xm120,-114v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23xm273,0r-19,-19r73,-72r-71,-70r19,-19r89,89xm100,0r-91,-91r89,-89r19,19r-71,70r73,72","w":372},"\ue389":{"d":"153,-256v77,0,129,52,129,129v0,79,-53,130,-129,130v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129xm153,-18v65,0,108,-45,108,-109v0,-64,-44,-108,-108,-108v-64,0,-108,43,-108,108v0,66,44,109,108,109xm153,-218v14,0,27,11,27,25v0,32,-54,32,-54,0v0,-14,13,-25,27,-25xm175,-30r-44,0r0,-124r44,0r0,124","w":307},"\ue38a":{"d":"288,-216r-17,6r5,15r-17,6r5,15r-17,6r4,14r-16,6r4,16r-16,5r4,15r-16,6r4,15r-17,6r5,15r-17,6r4,15r-16,5r5,16r-16,5r-16,-55r-17,6r5,15r-32,11r4,15r-32,11r5,15r-34,12r-4,-15r-14,5r-10,-36r14,-5r-5,-15r32,-11r-4,-15r31,-11r-4,-16r32,-11r-4,-13r-17,6r-4,-15r-17,6r-4,-15r-14,5r-5,-17r245,-87r4,16r-15,6","w":313},"\ue38b":{"d":"33,-231r-15,-6r4,-16r245,87r-5,17r-14,-5r-4,15r-16,-6r-5,15r-17,-6r-4,13r32,11r-4,16r31,11r-4,15r32,11r-5,15r14,5r-10,36r-14,-5r-4,15r-34,-12r5,-15r-32,-11r4,-15r-32,-11r5,-15r-16,-6r-17,55r-15,-5r4,-16r-16,-5r4,-15r-17,-6r5,-15r-17,-6r4,-15r-16,-6r4,-15r-16,-5r4,-16r-16,-6r4,-14r-16,-6r4,-15r-17,-6r5,-15r-17,-6","w":313},"\ue38c":{"d":"288,-215r-17,6r5,15r-17,5r5,15r-17,6r4,15r-16,6r4,15r-16,6r4,15r-16,6r4,15r-17,5r5,16r-17,6r4,14r-16,6r5,15r-16,6r-16,-56r-17,6r5,15r-32,11r4,15r-32,12r5,15r-34,12r-4,-16r-14,5r-10,-36r14,-5r-5,-14r32,-11r-4,-16r31,-11r-4,-15r32,-11r-4,-13r-17,5r-4,-14r-17,5r-4,-14r-14,4r-5,-16r245,-87r4,16r-15,6xm86,-160r4,13r16,-6r5,15r16,-6r5,17r-16,6r4,15r-32,11r5,15r-32,11r4,15r-32,12r10,32r30,-11r-4,-14r32,-11r-5,-16r32,-11r-4,-15r33,-11r12,40r15,-6r-4,-15r16,-5r-4,-15r16,-6r-4,-15r17,-6r-5,-15r17,-6r-4,-15r16,-6r-5,-15r17,-5r-4,-15r16,-6r-4,-14","w":313},"\ue38d":{"d":"33,-230r-15,-6r4,-16r245,87r-5,16r-14,-4r-4,14r-16,-5r-5,14r-17,-5r-4,13r32,11r-4,15r31,11r-4,16r32,11r-5,14r14,5r-10,36r-14,-5r-4,16r-34,-12r5,-15r-32,-12r4,-15r-32,-11r5,-15r-16,-6r-17,56r-15,-6r4,-15r-16,-6r4,-14r-17,-6r5,-16r-17,-5r4,-15r-16,-6r4,-15r-16,-6r4,-15r-16,-6r4,-15r-16,-6r4,-15r-17,-5r5,-15r-17,-6xm51,-224r-4,14r16,6r-4,15r17,5r-5,15r16,6r-4,15r17,6r-5,15r17,6r-4,15r16,6r-4,15r16,5r-4,15r15,6r12,-40r33,11r-4,15r32,11r-5,16r32,11r-4,14r30,11r10,-32r-32,-12r4,-15r-31,-11r4,-15r-32,-11r5,-15r-17,-6r5,-17r17,6r4,-15r16,6r4,-13","w":313},"\ue38e":{"d":"237,-6v-21,8,-44,8,-65,0v-22,7,-44,8,-67,0v-20,8,-44,9,-66,0v-13,1,-17,8,-31,8r0,-25v15,2,19,-9,31,-8v22,9,45,10,66,1v22,8,46,9,66,0v11,-1,21,9,33,8v13,-1,22,-9,34,-9v12,-1,16,10,30,8r0,25v-14,0,-19,-7,-31,-8xm8,-59v22,-4,42,-9,63,-1r0,-57v-6,-16,-14,-29,-18,-47v0,-9,12,-8,18,-12r0,-35r17,0r0,-19r32,0r0,-25r36,0r0,25r33,0r0,19r17,0r0,35v8,4,21,5,16,18r-16,41r0,57v19,-9,42,-6,62,1r0,24v-21,-8,-42,-7,-65,0v-13,0,-20,-8,-32,-8v-21,9,-42,8,-66,0v-22,8,-43,9,-66,1v-14,-1,-18,7,-31,7r0,-24xm103,-215r0,17r-17,0r0,15r52,-21r52,21r0,-15r-17,0r0,-17r-70,0","w":277},"\ue38f":{"d":"194,-203v-5,51,19,134,-25,147r37,56r-21,0r-27,-39r-74,0r-26,39r-22,0r38,-56v-46,-11,-26,-96,-26,-147v0,-47,68,-33,113,-33v18,0,35,14,33,33xm118,-248v0,5,-4,8,-9,8v-4,0,-9,-3,-9,-8v0,-5,4,-10,9,-9v6,-1,9,4,9,9xm143,-248v0,5,-5,8,-9,8v-5,1,-10,-3,-10,-8v0,-5,4,-10,10,-9v5,-1,9,4,9,9xm161,-103v-16,0,-18,30,0,29v8,0,15,-5,15,-13v0,-8,-6,-16,-15,-16xm66,-186v-1,18,-2,37,16,37r78,0v19,2,16,-19,16,-37v0,-9,-6,-16,-16,-16r-78,0v-9,0,-16,7,-16,16xm105,-228v-9,1,-6,18,0,20v16,-2,42,9,38,-16v-5,-8,-26,-2,-38,-4xm80,-103v-16,0,-18,30,0,29v7,0,15,-5,15,-13v0,-8,-7,-16,-15,-16","w":226},"\ue390":{"d":"55,-1v-14,0,-15,-15,-14,-30r-16,0v-1,-62,-4,-122,10,-172v13,-49,130,-42,166,-15v25,42,17,117,19,187r-17,0v1,16,0,32,-14,30v-15,1,-15,-14,-14,-30r-105,0v1,16,0,30,-15,30xm188,-90v-15,0,-16,28,0,28v7,1,14,-7,14,-14v0,-7,-7,-15,-14,-14xm42,-76v0,7,7,15,14,14v6,0,14,-7,13,-14v1,-7,-7,-14,-13,-14v-7,-1,-14,7,-14,14xm77,-214v0,3,2,6,5,6r80,0v7,0,8,-13,0,-12r-80,0v-4,0,-5,2,-5,6xm201,-126v-2,-24,3,-63,-18,-71r-122,0v-21,7,-12,44,-19,64v1,5,2,10,8,10r145,0v3,0,5,-1,6,-3","w":242},"\ue391":{"d":"195,1v-16,0,-17,-17,-16,-34r-115,0v1,17,0,34,-15,34v-16,0,-17,-17,-16,-34r-18,0v2,-31,-9,-76,19,-81v12,-29,14,-69,66,-60v0,-9,-2,-20,8,-19v17,2,41,-8,35,19v21,0,40,-1,47,16r17,44v30,4,19,49,21,81r-18,0v1,17,0,34,-15,34xm190,-116v-7,-14,-5,-39,-23,-42v-32,1,-70,-3,-98,2r-16,40r137,0xm34,-83v0,8,6,15,15,15v8,0,14,-7,14,-15v0,-8,-6,-15,-14,-15v-9,0,-15,7,-15,15xm179,-83v0,7,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15v-8,0,-15,8,-15,15","w":252},"\ue392":{"d":"132,-191v19,2,48,-7,48,14r0,23r32,0r0,154r-127,0r0,-154r31,0v0,-18,-3,-38,16,-37xm33,-132v1,-17,19,-25,40,-22r0,154v-22,2,-40,-4,-40,-24r0,-108xm170,-154r0,-25r-43,0r0,25r43,0xm263,-24v1,21,-17,26,-40,24r0,-154v22,-2,40,3,40,22r0,108","w":284},"\ue393":{"d":"103,-258v12,18,5,57,5,84v0,8,-8,19,-18,18r0,141v1,9,-6,15,-14,15v-7,0,-14,-7,-13,-15r0,-141v-32,-4,-13,-64,-18,-97v0,-2,2,-6,5,-5v3,0,5,2,5,6r0,57r8,0r0,-58v-1,-4,2,-5,5,-5v3,0,5,2,5,5r0,58r9,0r0,-58v0,-3,1,-5,4,-5v10,12,1,43,4,63r9,0r0,-58v0,-3,1,-5,4,-5xm160,-258v13,0,21,9,21,24r0,219v1,8,-6,15,-13,15v-7,0,-14,-6,-14,-15r0,-88r-15,0r0,-131v-2,-15,10,-24,21,-24","w":213},"\ue394":{"d":"302,-31v1,18,-13,30,-28,31r-240,-2v-11,-4,-20,-14,-20,-29r288,0xm214,-39v-48,-5,-138,21,-138,-26r0,-113r170,0v33,0,50,21,50,52v0,31,-22,51,-55,52v3,20,-9,37,-27,35xm241,-96v22,2,35,-11,35,-30v-1,-20,-12,-33,-35,-31r0,61","w":316},"\ue395":{"d":"46,-14v2,-24,44,-11,68,-14r0,-78r-100,-122r227,0r-99,122r0,78v24,4,67,-11,68,14v0,7,-5,14,-14,14r-136,0v-9,0,-13,-8,-14,-14xm125,-153v-1,9,10,18,19,17v8,1,18,-9,17,-17v1,-9,-9,-19,-17,-18v-10,-1,-20,8,-19,18","w":259},"\ue396":{"d":"181,-248r0,248r-23,0r0,-248r23,0xm105,-230v0,12,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,20,9,20,21xm98,1v-5,0,-10,-5,-10,-10r0,-72r-6,0r0,72v0,5,-5,10,-9,10v-4,0,-11,-5,-10,-10r0,-72r-26,0r27,-95r-4,0r-16,55v0,5,-5,6,-8,7v-5,0,-10,-6,-9,-13v16,-34,7,-86,69,-78v40,5,31,53,47,81v0,11,-15,14,-18,3r-16,-55r-4,0r27,95r-25,0r0,72v0,5,-5,10,-9,10xm204,-114v2,-39,-12,-91,30,-91v32,0,66,-4,66,28r0,63v0,6,-3,9,-9,9v-19,-6,-5,-46,-9,-67r-4,0r0,161v0,7,-6,11,-12,11v-6,0,-11,-4,-11,-11r0,-97r-4,0r0,97v1,7,-7,11,-13,11v-5,0,-13,-4,-12,-11r0,-161r-3,0r0,58v0,6,-4,9,-9,9v-6,0,-10,-3,-10,-9xm272,-230v0,12,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v12,0,20,9,20,21","w":316},"\ue397":{"d":"39,-157v0,-22,13,-36,30,-41r0,-11v-26,2,-40,20,-45,43r-11,-3v4,-24,21,-42,40,-48v-12,-10,-3,-34,14,-32v14,-2,11,17,25,15r0,11r30,0r0,-7r56,-14r0,54r-56,-12r0,-6r-30,0r0,10v17,5,30,19,30,41r0,147v-1,5,-2,10,-9,10r-66,0v-5,0,-9,-4,-8,-10r0,-147","w":195},"\ue398":{"d":"18,-128v0,-79,53,-132,131,-132v78,0,132,53,132,132v0,79,-53,131,-132,131v-79,0,-131,-52,-131,-131xm67,-193v-60,77,9,199,117,165v11,-4,21,-10,30,-17xm234,-65v55,-75,-12,-200,-118,-163v-11,4,-21,9,-30,16xm211,-103v-18,0,-20,-16,-31,-23r31,0r0,23xm127,-126r23,23r-86,0r0,-23r63,0xm163,-175v-18,-1,-30,-20,-23,-39r14,4v-6,10,-2,27,11,27v18,-1,-6,24,15,24v25,-2,48,0,43,29r-8,0v11,-41,-61,-1,-52,-45xm203,-170v-22,0,-15,-7,-12,-19v1,-10,-9,-19,-19,-19r0,-8v20,-1,34,21,23,39v31,-3,43,16,40,47r-7,0v2,-22,-6,-40,-25,-40xm215,-126r8,0r0,23r-8,0r0,-23xm228,-126r7,0r0,23r-7,0r0,-23","w":303},"\ue399":{"d":"153,-200v16,0,24,15,21,35v33,-31,55,-72,131,-62v24,3,38,18,38,41v0,39,-37,44,-77,45r-127,127v-15,19,-47,13,-77,13v-25,0,-41,-18,-41,-42v0,-30,23,-44,59,-40v29,-3,33,-27,52,-40v2,-30,-10,-77,21,-77xm304,-165v21,-1,23,-41,0,-41v-22,0,-53,-6,-65,6r-131,132v-13,16,-66,-8,-66,25v0,32,61,26,83,15r128,-130v10,-11,32,-6,51,-7xm262,-10r0,-35r-47,47r-13,-14r47,-46r-35,0r19,-19r47,0r0,49xm152,-205v-12,0,-21,-10,-21,-22v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22","w":353},"\ue39a":{"d":"150,-201v16,1,24,16,21,36v27,-21,38,-59,81,-62v44,-3,88,-3,87,41v-1,39,-37,44,-77,45r-127,127v-15,19,-47,13,-77,13v-25,0,-41,-18,-41,-42v0,-30,23,-44,59,-40v29,-3,34,-28,53,-41v2,-30,-11,-77,21,-77xm300,-165v22,-1,21,-39,0,-41v-22,3,-53,-7,-66,6r-138,137v-22,4,-59,-7,-59,20v0,32,62,25,84,15r128,-130v10,-11,32,-6,51,-7xm216,-66r0,35r47,-47r14,14r-48,46r36,0r-19,19r-48,0r0,-49xm149,-205v-12,0,-21,-10,-21,-22v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22","w":353},"\ue39b":{"d":"20,-27r52,0r0,-50r49,0r0,-52r52,0r0,-52r51,0r0,-50r74,0r0,25r-50,0r0,53r-50,0r0,50r-51,0r0,52r-51,0r0,51r-76,0r0,-27xm238,-12r0,-35r-47,47r-14,-13r48,-47r-36,0r19,-18r48,0r0,48","w":314},"\ue39c":{"d":"20,-27r52,0r0,-50r49,0r0,-52r52,0r0,-52r51,0r0,-50r74,0r0,25r-50,0r0,53r-50,0r0,50r-51,0r0,52r-51,0r0,51r-76,0r0,-27xm196,-66r0,35r47,-47r14,14r-48,46r35,0r-18,19r-48,0r0,-49","w":312},"\ue39d":{"d":"108,-18v33,0,55,-20,63,-48r12,25v-13,24,-40,42,-75,44v-92,4,-114,-132,-36,-163r3,22v-17,10,-33,29,-32,56v2,39,26,64,65,64xm176,-154v0,18,-32,9,-50,11r1,13v24,2,58,-8,66,11r21,51v12,-11,32,8,15,16v-12,2,-32,20,-39,3r-20,-47v-35,-3,-81,14,-84,-29v-2,-30,-16,-91,27,-71v10,4,9,20,10,33v18,2,53,-7,53,9xm96,-204v-12,0,-21,-11,-21,-23v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,13,-10,23,-22,23","w":257},"\ue39e":{"d":"268,-250v-3,70,-45,109,-105,123r0,98r66,19r0,10r-170,0r0,-10r67,-19r0,-98v-62,-12,-103,-52,-106,-123r162,0r-26,36r12,22r-24,42r48,-42r-11,-21r37,-37r50,0","w":276},"\ue39f":{"d":"76,-39r-29,0r0,-144r-34,0r49,-73r46,73r-32,0r0,144xm188,-39r-29,0r0,-144r-34,0r48,-73r46,73r-31,0r0,144xm12,-27r207,0r0,27r-207,0r0,-27","w":237},"\ue3a0":{"d":"144,3v-77,0,-127,-54,-127,-132v0,-75,52,-128,126,-128v79,0,133,50,133,130v0,80,-53,130,-132,130xm148,-13v-34,-10,-55,-36,-66,-65v9,-34,33,-54,66,-62v0,10,-2,20,1,28v28,-14,55,-35,66,-65v-12,-29,-34,-54,-68,-61v2,8,-1,19,0,29v-63,5,-106,37,-106,104v0,65,40,101,103,104v120,7,168,-163,77,-227v-10,-8,-22,-14,-35,-18v41,16,68,46,68,97v0,70,-44,100,-106,109v-2,9,-2,19,0,27","w":295},"\ue3a1":{"d":"24,0r0,-251r254,0r0,251r-254,0xm140,-234v-5,11,1,31,-5,41v-7,-1,-7,-13,-16,-9v7,17,0,35,-4,49v-5,-1,-1,-15,-11,-10v-1,13,-6,26,-6,42v-6,-4,-9,0,-9,7v-6,58,17,90,81,82v26,-12,54,-35,43,-72r-5,4v3,-20,7,-51,-8,-61v-1,5,-1,12,-7,15v0,-22,-10,-38,-18,-52v-5,10,-8,12,-11,0v-8,-11,-13,-28,-24,-36xm146,-91v14,-4,11,-27,12,-45v7,8,11,27,12,39v6,-8,13,-18,10,1v13,21,-9,43,-24,53v2,4,-1,7,-5,7v-30,-2,-50,-42,-30,-69v2,10,18,51,15,19v-1,-7,-1,-14,0,-21v5,2,8,11,10,16xm102,-18r96,0r0,-10r-96,0r0,10","w":300},"\ue3a2":{"d":"204,-98v20,0,14,-33,15,-55r17,0r0,66r-16,0r0,-10v-10,19,-45,15,-45,-15r0,-41r18,0v3,19,-9,55,11,55xm146,-177r18,0r0,90r-18,0r0,-90xm103,-97v12,0,16,-8,16,-21v-13,1,-24,2,-25,13v0,5,3,8,9,8xm77,-132v2,-14,12,-21,30,-21v39,0,28,33,31,66v-7,-1,-21,5,-18,-8v-9,15,-45,13,-44,-9v0,-22,27,-20,43,-27v0,-12,-23,-14,-24,-1r-18,0xm158,-14v84,2,134,-92,94,-166r18,-16v54,88,-4,209,-110,205v-29,0,-54,-8,-72,-21r1,19r-25,3r-5,-63r63,-6r2,25r-24,3v15,9,35,17,58,17xm158,-233v-85,-2,-137,96,-92,167r-18,15v-12,-21,-22,-43,-22,-73v-4,-105,118,-165,204,-111r-1,-20r24,-2r5,62r-63,6r-2,-25r25,-2v-16,-9,-37,-17,-60,-17","w":306},"\ue3a3":{"d":"180,-230v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21xm144,0v-7,0,-11,-4,-11,-12r0,-159v-8,8,-9,23,-24,24v-16,-2,-46,7,-46,-9v0,-15,27,-7,42,-9v11,-13,17,-37,39,-38v30,-1,65,-3,63,26v-2,24,10,65,-9,73v-18,-6,-5,-45,-9,-67r-5,0r0,159v0,7,-5,12,-11,12v-7,0,-12,-5,-12,-12r0,-93r-5,0r0,93v0,8,-5,12,-12,12xm57,-73r0,-16r15,0r0,16r-15,0xm69,-96r-11,-11r11,-11r11,11xm58,-117r-11,-11r11,-11r11,11xm42,0r-19,-105r14,0r17,90r26,0r17,-90r15,0r-19,105r-51,0","w":244},"\ue3a5":{"d":"27,-126v0,-80,55,-134,135,-134v79,0,134,54,134,134v0,81,-54,135,-134,135v-81,0,-135,-54,-135,-135xm292,-126v0,-78,-52,-130,-130,-130v-78,0,-130,52,-130,130v0,78,51,131,130,131v78,0,130,-52,130,-131xm73,-126v0,-53,36,-88,89,-88v52,0,88,36,88,88v0,53,-35,89,-88,89v-53,0,-89,-36,-89,-89xm244,-126v0,-50,-32,-82,-82,-82v-51,0,-83,33,-83,82v0,50,32,84,83,84v50,0,82,-33,82,-84xm204,-148v9,9,27,0,23,20v1,6,6,5,11,5v-4,45,-30,75,-76,75v-49,0,-76,-34,-77,-84v7,-3,14,3,19,5v-3,-5,-3,-7,-11,-7v-4,-9,9,-18,12,-8v1,-11,8,-17,16,-20v-4,-9,16,-8,-1,-14v-2,9,-8,11,-13,4v1,-6,12,-15,17,-12v0,1,0,2,-1,4v12,1,-1,-14,8,-14v15,2,-4,25,21,10v10,-7,5,-14,0,-17v20,-5,54,6,54,17v-4,-4,-12,10,-14,1v-2,-9,-13,-5,-17,2v4,17,-19,-2,-8,11v1,6,-15,8,-6,11v11,-6,19,-6,24,2v3,-4,8,-9,14,-5v1,6,-14,2,-3,9v-12,13,-36,-18,-43,7v-9,6,-1,23,12,17v13,6,-4,49,18,39v12,-6,9,-27,19,-37v-6,-4,-9,-10,-10,-20v7,0,10,22,18,8v0,-5,-8,-1,-6,-9xm37,-120v1,14,31,15,30,-2v7,52,39,90,95,90v56,0,87,-37,93,-90v1,16,29,17,32,2v-8,70,-50,121,-125,121v-74,0,-119,-49,-125,-121xm112,-127v-8,-3,-5,18,-5,18v16,5,12,42,29,40v-8,-21,14,-32,4,-48v-12,2,-15,-13,-28,-12r0,2xm109,-17v13,0,16,-22,0,-22v-14,0,-12,21,0,22xm162,-27v-5,0,-11,4,-10,10v-1,6,4,12,9,12v6,0,10,-5,10,-11v1,-6,-3,-11,-9,-11xm192,-242v17,0,17,24,0,23r-9,-3xm118,-216v-4,8,-6,-11,-14,-1v1,4,6,8,1,10r-12,-18v4,-6,22,-10,18,2v4,-1,5,6,7,7xm175,-246v8,3,0,15,0,23v-8,-1,-7,-10,-11,-15v-1,5,2,15,-6,13r3,-22v8,1,7,11,11,16xm194,-33v-6,1,1,10,1,15v-6,-3,-10,-15,-17,-10v4,6,2,21,10,19r-4,-14v5,3,8,13,16,10xm140,-231v-1,10,14,-4,13,6r-15,3r-5,-21r15,-3v2,9,-14,1,-9,11v4,0,11,-5,11,2xm227,-26v-2,-10,-12,8,-14,-2v3,-2,11,-4,6,-8v-4,2,-10,8,-11,1v3,-3,12,-5,7,-9r-13,8r12,18xm146,-27v-6,0,-17,-9,-18,-1r11,3v-5,4,-12,7,-16,13v6,0,17,8,18,0r-11,-2v5,-5,13,-6,16,-13xm85,-203v2,3,9,7,3,10r-14,-16v4,-2,10,-14,13,-7v-3,3,-10,7,-4,10v3,-2,6,-8,10,-4xm103,-27v-1,-8,12,-13,13,-3v1,8,-13,14,-13,3xm231,-195v-8,-5,7,-12,5,-24v6,2,2,9,1,14v5,-1,10,-6,13,-1v-8,2,-16,4,-19,11xm207,-213v5,-5,9,-22,16,-15r-10,13v3,3,12,5,7,10xm156,-17v0,-4,2,-6,6,-6v4,-1,5,4,5,7v0,4,-1,7,-5,7v-4,-1,-6,-3,-6,-8xm189,-225v6,5,11,1,12,-6v0,-4,-3,-6,-7,-6xm117,-238v8,-5,8,13,13,18v-8,5,-8,-13,-13,-18xm183,-173v-9,0,-1,-9,0,-11v1,1,8,11,0,10r0,1xm103,-162v0,-6,7,-6,8,-1v0,2,-2,4,-5,4v-2,0,-3,-1,-3,-3xm208,-154v-2,-1,-8,-6,-4,-11v4,0,6,8,4,11xm99,-224v1,5,8,3,9,-1v-1,-5,-6,-1,-9,1xm235,-135v6,1,2,8,-2,9v-3,-2,1,-8,2,-9xm111,-134v4,-4,-4,-6,-6,-7v-4,5,7,4,6,7xm213,-164v1,1,2,4,-1,4v-2,-2,0,-3,1,-4xm213,-120v-2,2,-1,6,2,4v1,-1,-1,-5,-2,-4","w":316},"\ue3a6":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19","w":330},"\ue3a7":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19xm61,14r205,0r0,21r-205,0r0,-21","w":330},"\ue3a8":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19xm61,14r205,0r0,21r-205,0r0,-21xm61,50r205,0r0,21r-205,0r0,-21","w":330},"\ue3a9":{"d":"118,-222v67,0,134,68,198,11r9,-38r24,3r-15,69r36,-20r8,14r-49,26r-26,113r45,23r-7,15r-41,-21r-7,27r-203,0r-6,-29r-42,22r-7,-14r45,-24r-23,-108r-54,-28r7,-14r42,22r-16,-74r24,-4r9,45v13,-9,28,-16,49,-16xm238,-161v-60,0,-111,-68,-163,-18r5,20r109,57r116,-60r4,-18v-19,12,-41,19,-71,19xm274,-23r3,-16r-87,-45r-84,44r3,17r165,0xm281,-55r19,-87r-93,49xm84,-139r18,82r70,-36","w":383},"\ue3aa":{"d":"42,-206v16,-14,48,-20,75,-13v0,-4,2,-8,5,-10r85,-63r67,35r-36,69v22,-2,38,-14,51,-23r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4xm135,-186v-25,-17,-72,-16,-87,7r34,156r165,0r34,-157v-16,10,-32,16,-56,18v-3,13,-20,25,-30,12v-4,12,-18,21,-30,12v-7,11,-28,7,-27,-8v0,-4,1,-7,3,-10v-15,-1,-16,-22,-6,-30xm127,-218v8,13,23,-1,36,-10v15,7,-20,26,1,30v4,-7,7,-18,17,-10v-3,8,-11,17,2,18v4,-8,7,-17,16,-9v-4,7,-9,14,4,14v4,-7,7,-18,17,-10v-1,4,-9,11,0,10r5,0r35,-68r-52,-27xm162,-173v-3,9,-21,23,-9,30v10,-4,11,-18,18,-26xm180,-166v-4,7,-15,27,1,20r9,-17xm138,-170v6,10,12,-3,15,-7v-7,-6,-14,-1,-15,7xm207,-155v4,0,8,-8,0,-6v-2,0,-6,-3,-5,2v0,3,2,4,5,4","w":330},"\ue3ab":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm323,-97v14,0,25,11,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm236,-97v15,-1,27,11,26,26v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm149,-97v14,0,26,11,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ac":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm278,-97v14,0,25,11,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm191,-97v15,-1,27,11,26,26v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ad":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm235,-97v14,0,26,11,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ae":{"d":"343,-246v30,1,56,14,64,39r82,-43r8,14r-85,44r60,183r29,16r-8,14r-38,-21r-406,0r-40,22r-8,-14r39,-21v18,-72,57,-131,149,-131r-170,-92r8,-14r195,106r66,0r96,-50v-8,-17,-21,-29,-47,-28r-188,0r0,-24r194,0xm94,-24r317,0r-156,-84xm276,-120r-4,3r168,91r-30,-94r-134,0xm238,-117v-82,-17,-148,19,-163,85xm389,-179r-67,35r80,0","w":503},"\ue3af":{"d":"13,-22v13,-73,51,-133,139,-134r177,0v-13,-32,-15,-74,-61,-73r-151,0r0,-22v78,8,196,-29,219,40r62,189r-133,0r13,23r98,-16r4,15r-93,17r9,14r84,15r-4,17r-69,-13r7,13r-20,10r-16,-28r-76,-13r-71,12r-17,29r-20,-10r8,-14r-75,14r-4,-17r90,-16r7,-12r-97,-18r3,-15r103,17r14,-24r-130,0xm337,-133v-118,6,-272,-34,-291,89r319,0xm153,6r48,9r54,-10r-16,-27r-70,0xm250,23r16,3v-1,-8,-10,-3,-16,-3xm152,23v-4,0,-9,-2,-10,2","w":411},"\ue3b0":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211","w":323},"\ue3b1":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm37,14r252,0r0,21r-252,0r0,-21","w":323},"\ue3b2":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm37,14r252,0r0,21r-252,0r0,-21xm37,50r252,0r0,21r-252,0r0,-21","w":323},"\ue3b3":{"d":"301,-48r0,47r-252,0r0,-50r-34,18r-8,-14r42,-22r0,-110r-40,-21r8,-14r32,17r0,-55r252,0r0,53r33,-18r8,14r-41,21r0,116r42,22r-7,14xm174,-214v35,-1,60,20,74,42r33,-17r0,-43r-212,0r0,45r29,15v15,-23,41,-41,76,-42xm247,-76v-25,50,-124,49,-148,-1r-30,16r0,40r212,0r0,-37xm230,-163v-17,-39,-96,-41,-113,1r55,29xm118,-87v17,38,91,41,110,1r-56,-29xm256,-158v7,20,9,48,-1,68r26,14r0,-95xm92,-91v-9,-21,-9,-45,-1,-66r-22,-12r0,90xm236,-100v6,-15,7,-33,1,-49r-47,25xm110,-148v-5,15,-6,32,1,47r44,-23","w":350},"\ue3b4":{"d":"141,-252r132,252r-264,0xm43,-21r196,0r-98,-186","w":283},"\ue3b5":{"d":"139,-252r132,252r-263,0xm196,-99r-22,-41r-63,119r43,0xm176,-21r61,0r-30,-58xm163,-161r-24,-46r-98,186r49,0","w":278},"\ue3b6":{"d":"266,-48r25,48r-264,0r25,-48r-41,22r-7,-14r61,-33r33,-62r-95,-49r7,-14r95,49r54,-103r53,102r99,-51r7,14r-98,51r33,63r64,33r-7,14xm234,-64r-76,-39r-74,39r-23,43r196,0xm123,-139r35,18r36,-19r-35,-67xm176,-112r45,23r-19,-37xm116,-125r-18,36r43,-23","w":324},"\ue3b7":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm270,-213v-50,42,-165,46,-212,-2r0,194r212,0r0,-192xm62,-232v55,47,150,43,208,0r-208,0","w":323},"\ue3b8":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm107,-190r21,0r0,131r-21,0r0,-131xm153,-190r22,0r0,131r-22,0r0,-131xm202,-190r22,0r0,131r-22,0r0,-131","w":323},"\ue3b9":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm100,-120r0,-22r131,0r0,22r-131,0","w":323},"\ue3ba":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm91,-232r-33,0r0,37xm58,-112r0,91r212,0r0,-211r-102,0xm143,-232r-26,0r-59,63r0,29","w":323},"\ue3bb":{"d":"408,-161v0,48,13,115,-33,120v-44,5,-70,-31,-97,-37r92,71r-13,12r-93,-73v-30,19,-88,36,-127,12r-79,61r-13,-12r76,-59v-7,-6,-16,-12,-22,-18v-16,17,-35,34,-66,35v-10,-1,-15,-4,-14,-18r0,-106r109,0r-83,-65r12,-13v35,25,65,56,103,78v22,-23,76,-22,103,-4r96,-74r11,13r-88,69v19,5,35,9,44,20v22,-15,39,-34,67,-44v5,10,14,21,15,32xm294,-93v25,13,56,41,87,29v15,-26,8,-70,5,-104v-34,22,-65,46,-92,75xm37,-70v51,-10,69,-55,101,-83r-101,0r0,83xm311,-138v-11,-7,-31,-11,-47,-17r-42,33r41,31v19,-13,31,-33,48,-47xm114,-98v6,9,15,14,23,20r56,-44r-33,-26v-16,15,-31,34,-46,50xm154,-69v30,15,71,-1,93,-12r-39,-30xm245,-163v-21,-11,-53,-11,-71,4r34,25","w":433},"\ue3bc":{"d":"185,-61r-10,-29r-56,0r-11,29r-27,0r56,-134r20,0r56,134r-28,0xm168,-111r-21,-54r-20,54r41,0xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3bd":{"d":"128,-162r0,36r63,0r0,21r-63,0r0,56r-25,0r0,-134r98,0r0,21r-73,0xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3be":{"d":"103,-184v51,0,110,-7,110,43v0,39,-40,45,-84,42r0,51r-26,0r0,-136xm129,-121v25,0,57,4,57,-20v0,-26,-32,-21,-57,-21r0,41xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3bf":{"d":"271,-183v22,31,23,95,0,125r53,36r-9,14r-54,-36v-21,25,-53,47,-96,47v-44,0,-77,-21,-98,-47r-53,36r-9,-14r53,-35v-23,-31,-23,-93,-1,-126r-52,-36r8,-14r54,37v21,-27,53,-49,98,-49v44,0,77,22,97,49r54,-37r8,14xm244,-184v-29,-50,-130,-52,-160,0r81,54xm86,-56v20,32,78,52,122,29v14,-7,26,-18,35,-30r-78,-53xm76,-170v-18,29,-15,72,0,100r74,-50xm252,-70v17,-26,18,-73,1,-100r-74,50","w":334},"\u2070":{"d":"53,-284v54,-2,44,60,44,112v0,25,-17,40,-44,40v-56,0,-45,-59,-45,-111v0,-27,18,-40,45,-41xm53,-144v43,0,29,-57,31,-98v0,-17,-14,-31,-31,-31v-43,-1,-31,57,-32,99v-1,17,14,30,32,30","w":104},"\u2074":{"d":"90,-157r0,24r-14,0r0,-24r-72,0r0,-10r58,-116r15,0r-59,115r58,0r0,-46r14,0r0,46r14,0r0,11r-14,0","w":108},"\u2075":{"d":"95,-192v15,61,-70,82,-90,32r13,-2v4,12,15,19,31,19v26,0,36,-20,33,-48v4,-33,-47,-40,-61,-16r-13,0r0,-76r83,0r0,12r-70,0r0,48v27,-21,78,-9,74,31","w":101},"\u2076":{"d":"50,-131v-42,2,-50,-47,-32,-79r41,-73r14,0r-37,69v28,-11,60,5,60,37v0,31,-19,44,-46,46xm84,-175v0,-19,-14,-32,-33,-32v-19,0,-32,14,-32,32v0,19,13,32,32,32v20,0,33,-12,33,-32","w":101},"\u2077":{"d":"34,-133r-14,0r59,-138r-62,0r0,23r-13,0r0,-35r90,0r0,11","w":96},"\u2078":{"d":"75,-211v14,6,24,17,24,37v0,28,-20,40,-48,42v-48,4,-65,-63,-23,-78v-37,-16,-21,-78,23,-74v44,-5,61,58,24,73xm51,-143v20,0,35,-11,35,-32v0,-21,-15,-30,-35,-30v-20,0,-35,11,-35,30v0,20,14,32,35,32xm51,-216v20,0,32,-9,32,-28v0,-18,-14,-29,-32,-29v-18,0,-32,10,-32,29v0,19,13,28,32,28","w":102},"\u2079":{"d":"65,-201v-32,11,-61,-7,-61,-38v1,-29,18,-44,47,-45v35,-1,54,36,37,68r-47,83r-14,0xm49,-273v-18,0,-32,15,-32,33v-1,19,14,32,32,32v18,0,33,-13,32,-32v0,-19,-13,-33,-32,-33","w":97},"\u207a":{"d":"60,-189r0,41r-11,0r0,-41r-44,0r0,-10r44,0r0,-41r11,0r0,41r44,0r0,10r-44,0","w":109},"\u207b":{"d":"12,-185r0,-12r63,0r0,12r-63,0","w":86},"\u207c":{"d":"5,-168r0,-11r99,0r0,11r-99,0xm5,-205r0,-11r99,0r0,11r-99,0","w":109},"\u207d":{"d":"60,-284v-39,40,-40,132,0,172r-6,5v-31,-28,-54,-89,-29,-140v8,-16,16,-30,28,-42","w":61},"\u207e":{"d":"12,-288v37,33,53,118,14,162v-7,7,-12,25,-22,14v16,-21,32,-52,32,-86v-1,-34,-16,-64,-32,-86","w":61},"\u207f":{"d":"28,-200v18,-32,83,-23,83,21r0,78r-13,0v-3,-44,14,-106,-35,-106v-47,0,-33,61,-35,106r-13,0r0,-117r13,0r0,18","w":126},"\u2080":{"d":"53,-118v55,0,44,60,44,111v0,25,-17,40,-44,40v-56,0,-45,-59,-45,-111v0,-26,17,-40,45,-40xm53,22v43,0,29,-58,31,-99v0,-17,-13,-30,-31,-30v-44,0,-30,57,-32,99v-1,17,14,30,32,30","w":104},"\u2081":{"d":"51,32r-13,0r0,-135v-8,4,-15,11,-24,14r0,-14v12,-5,18,-16,37,-14r0,149","w":81},"\u2082":{"d":"81,-81v1,-33,-58,-32,-62,-2r-13,-3v4,-19,24,-31,45,-32v39,-3,55,39,32,66r-62,72r73,0r0,12r-90,0r0,-11v25,-31,53,-58,75,-92v1,-4,2,-7,2,-10","w":102},"\u2083":{"d":"72,-46v41,15,24,86,-26,80v-22,-3,-38,-9,-42,-29r13,-1v9,28,65,23,65,-13v0,-24,-17,-33,-43,-31r0,-11v23,2,40,-7,41,-27v2,-33,-54,-39,-62,-9r-13,-3v8,-39,92,-39,88,11v-1,17,-9,27,-21,33","w":101},"\u2084":{"d":"90,9r0,23r-14,0r0,-23r-72,0r0,-11r58,-115r15,0r-59,114r58,0r0,-45r14,0r0,45r14,0r0,12r-14,0","w":108},"\u2085":{"d":"82,-10v10,-44,-40,-60,-61,-32r-13,0r0,-75r83,0r0,12r-70,0r0,47v31,-22,83,-7,74,41v10,55,-73,67,-90,23r13,-3v9,31,68,24,64,-13","w":101},"\u2086":{"d":"36,-49v30,-12,61,6,61,37v0,30,-19,45,-47,46v-36,2,-55,-39,-37,-70r46,-81r14,0xm51,23v18,0,33,-14,33,-33v0,-19,-15,-32,-33,-32v-18,0,-32,14,-32,32v0,19,13,33,32,33","w":101},"\u2087":{"d":"34,32r-14,0r59,-137r-62,0r0,23r-13,0r0,-35r90,0r0,11","w":96},"\u2088":{"d":"75,-45v15,4,24,20,24,36v-1,28,-20,41,-48,43v-48,4,-65,-64,-23,-79v-38,-15,-21,-78,23,-73v45,-6,61,57,24,73xm51,22v20,0,34,-11,35,-31v-1,-41,-70,-39,-70,0v0,19,15,31,35,31xm51,-50v18,0,31,-9,32,-28v1,-18,-16,-29,-32,-29v-18,1,-32,10,-32,29v0,19,14,28,32,28","w":102},"\u2089":{"d":"65,-36v-30,12,-61,-6,-61,-37v0,-30,17,-45,47,-45v27,0,46,16,43,43v-5,44,-35,73,-53,107r-14,0xm49,-108v-17,0,-32,14,-32,33v-1,19,13,32,32,32v19,0,33,-13,32,-32v0,-19,-13,-33,-32,-33","w":97},"\u208a":{"d":"60,-23r0,41r-11,0r0,-41r-44,0r0,-10r44,0r0,-41r11,0r0,41r44,0r0,10r-44,0","w":109},"\u208b":{"d":"12,-19r0,-12r63,0r0,12r-63,0","w":86},"\u208c":{"d":"5,-2r0,-11r99,0r0,11r-99,0xm5,-39r0,-11r99,0r0,11r-99,0","w":109},"\u208d":{"d":"60,-130v-39,40,-40,133,0,172r-6,5v-30,-28,-54,-88,-29,-139v8,-16,16,-30,28,-42","w":61},"\u208e":{"d":"4,42v40,-41,40,-131,0,-172r8,-4v37,33,53,118,14,162v-7,7,-13,27,-22,14","w":61},"\u2153":{"d":"49,9r-13,0r153,-267r13,0xm64,-101r-14,0r0,-135r-23,14v-1,-23,15,-27,37,-29r0,150xm220,-78v41,15,24,79,-26,79v-23,0,-37,-9,-42,-28r13,-2v8,29,65,23,65,-13v0,-24,-17,-33,-43,-30r0,-12v23,2,41,-7,41,-27v1,-33,-54,-38,-62,-9r-13,-2v5,-17,22,-27,43,-29v46,-5,59,58,24,73","w":270},"\u2154":{"d":"11,-219v7,-40,91,-45,89,4v-1,10,-5,23,-11,30r-62,72r72,0r0,12r-89,0r0,-11r75,-92v5,-21,-7,-36,-29,-35v-15,0,-29,10,-32,23xm236,-78v41,14,24,79,-25,79v-24,0,-37,-10,-43,-28r13,-2v9,30,68,22,66,-13v-1,-23,-18,-33,-44,-30r0,-12v23,2,41,-7,41,-27v1,-33,-53,-38,-62,-9r-13,-2v5,-17,22,-27,43,-29v47,-5,59,58,24,73xm73,9r-13,0r153,-267r13,0","w":270},"\u2155":{"d":"243,-59v15,61,-69,82,-89,32r13,-3v5,13,15,20,31,20v27,0,32,-20,32,-48v0,-35,-48,-39,-61,-16r-12,0r0,-76r83,0r0,12r-70,0r0,48v26,-21,78,-8,73,31xm48,9r-13,0r153,-267r13,0xm64,-101r-13,0r0,-135r-24,14v-1,-23,15,-27,37,-29r0,150","w":270},"\u2156":{"d":"260,-59v15,61,-70,82,-89,32r13,-3v5,13,15,20,31,20v27,0,32,-20,32,-48v0,-35,-48,-39,-61,-16r-12,0r0,-76r83,0r0,12r-71,0r0,48v27,-21,78,-8,74,31xm86,-214v1,-33,-58,-32,-62,-2r-13,-3v7,-40,90,-44,89,4v0,11,-5,23,-12,30r-62,72r73,0r0,12r-90,0r0,-11v25,-31,53,-58,75,-92v1,-4,2,-7,2,-10xm65,9r-13,0r153,-267r13,0","w":270},"\u2157":{"d":"261,-59v14,61,-70,82,-90,32r13,-3v9,31,68,25,64,-12v11,-46,-41,-60,-62,-32r-12,0r0,-76r83,0r0,12r-70,0r0,48v27,-21,78,-8,74,31xm53,-252v45,-4,60,58,24,73v42,15,22,85,-26,80v-22,-2,-38,-9,-42,-29r13,-2v8,29,67,23,65,-13v-1,-23,-18,-32,-43,-30r0,-11v23,2,41,-8,41,-28v2,-32,-55,-37,-62,-8r-13,-3v5,-17,22,-27,43,-29xm62,9r-13,0r153,-267r13,0","w":270},"\u2158":{"d":"264,-59v15,61,-70,82,-89,32r12,-3v5,13,15,20,31,20v28,1,35,-19,33,-48v5,-35,-48,-39,-61,-16r-13,0r0,-76r84,0r0,12r-71,0r0,48v27,-21,78,-8,74,31xm93,-124r0,23r-15,0r0,-23r-72,0r0,-11r58,-116r15,0r-58,115r57,0r0,-45r15,0r0,45r14,0r0,12r-14,0xm68,9r-13,0r153,-267r13,0","w":270},"\u2159":{"d":"177,-81v29,-11,63,5,62,37v-1,29,-18,44,-47,45v-38,2,-54,-39,-37,-70r46,-81r14,0xm57,9r-13,0r153,-267r13,0xm193,-10v18,1,32,-13,32,-32v0,-19,-13,-32,-32,-32v-19,0,-32,14,-32,32v0,19,13,32,32,32xm68,-101r-13,0r0,-135r-24,14v-1,-23,16,-26,37,-29r0,150","w":270},"\u215a":{"d":"193,-81v30,-12,61,6,61,37v-1,29,-18,44,-47,45v-38,2,-54,-39,-37,-70r46,-81r14,0xm105,-159v15,61,-69,81,-89,32r12,-3v5,12,15,19,31,19v27,1,35,-19,33,-47v5,-34,-46,-39,-61,-17r-12,0r0,-76r83,0r0,12r-71,0r0,48v27,-21,79,-8,74,32xm74,9r-13,0r153,-267r13,0xm208,-10v18,1,32,-13,32,-32v0,-19,-13,-32,-32,-32v-19,0,-32,14,-32,32v0,19,13,32,32,32","w":270},"\u215b":{"d":"45,9r-13,0r153,-267r13,0xm64,-101r-14,0r0,-135r-23,14v-1,-23,15,-27,37,-29r0,150xm219,-77v15,4,25,20,25,36v0,27,-21,40,-49,42v-47,4,-64,-63,-23,-78v-36,-17,-21,-78,23,-74v45,-5,60,58,24,74xm195,-10v21,0,36,-12,36,-31v0,-20,-15,-31,-36,-31v-21,0,-35,11,-35,31v0,19,15,31,35,31xm195,-82v19,0,32,-9,33,-29v1,-19,-17,-29,-33,-29v-17,0,-31,10,-31,29v-1,20,13,29,31,29","w":270},"\u215c":{"d":"63,9r-13,0r153,-267r13,0xm79,-179v42,15,23,85,-25,80v-22,-2,-38,-9,-42,-29r12,-2v9,30,68,22,66,-13v-1,-23,-18,-32,-43,-30r0,-11v23,2,39,-9,40,-28v2,-33,-54,-37,-61,-8r-13,-3v5,-17,22,-27,43,-29v46,-4,60,59,23,73xm233,-77v43,15,25,83,-23,78v-48,5,-64,-62,-24,-78v-36,-17,-20,-74,24,-74v45,0,61,59,23,74xm210,-10v21,0,35,-12,35,-31v0,-20,-14,-31,-35,-31v-21,0,-35,11,-35,31v0,19,15,31,35,31xm210,-82v18,0,32,-9,32,-29v1,-18,-17,-29,-32,-29v-18,0,-32,11,-32,29v0,19,13,29,32,29","w":270},"\u215d":{"d":"233,-77v43,15,25,83,-23,78v-48,5,-64,-62,-24,-78v-36,-17,-20,-74,24,-74v45,0,61,59,23,74xm101,-159v15,61,-69,81,-89,32r12,-3v5,12,15,19,31,19v27,1,35,-19,33,-47v5,-34,-46,-39,-61,-17r-12,0r0,-76r83,0r0,12r-71,0r0,48v27,-21,79,-8,74,32xm63,9r-13,0r153,-267r13,0xm210,-10v21,0,35,-12,35,-31v0,-20,-14,-31,-35,-31v-21,0,-35,11,-35,31v0,19,15,31,35,31xm210,-82v18,0,32,-9,32,-29v1,-18,-17,-29,-32,-29v-18,0,-32,11,-32,29v0,19,13,29,32,29","w":270},"\u215e":{"d":"54,9r-13,0r153,-267r13,0xm44,-101r-14,0r59,-137r-62,0r0,23r-13,0r0,-36r90,0r0,12xm231,-77v15,4,25,20,25,36v0,27,-21,40,-49,42v-48,3,-65,-63,-23,-78v-36,-17,-21,-78,23,-74v45,-5,60,58,24,74xm207,-10v21,0,36,-12,36,-31v0,-20,-15,-31,-36,-31v-21,0,-35,11,-35,31v0,19,15,31,35,31xm207,-82v18,-2,32,-8,32,-29v0,-19,-16,-29,-32,-29v-17,0,-31,10,-31,29v-1,20,14,27,31,29","w":270},"\u215f":{"d":"51,9r-13,0r153,-267r13,0xm64,-101r-14,0r0,-135r-23,14v-1,-23,15,-27,37,-29r0,150","w":145},"\ue024":{"d":"84,-180v60,-1,70,51,66,116v-2,43,-26,67,-66,67v-58,0,-71,-50,-66,-117v3,-42,25,-65,66,-66xm84,-12v48,1,51,-47,51,-100v0,-32,-20,-54,-51,-54v-48,-1,-51,47,-51,99v0,32,20,55,51,55","w":168},"\ue025":{"d":"21,-14r55,0r0,-147r-37,24r0,-17v17,-8,24,-27,52,-25r0,165r56,0r0,14r-126,0r0,-14","w":168,"k":{"\ue374":14,"\ue071":29,"\ue370":14,"\ue36c":22,"\ue36b":22,"\ue363":18,"\ue360":11,"\u00ba":25,"\u00aa":25,"\ue326":29,"\ue31e":22,"\ue07e":29,"\ue07d":29,"\ue070":25}},"\ue026":{"d":"132,-129v0,-54,-88,-43,-96,-2r-15,-5v10,-54,128,-64,128,6v-12,57,-73,79,-109,115r112,0r0,15r-135,0r0,-15v35,-31,75,-56,106,-91v6,-7,9,-15,9,-23","w":168},"\ue027":{"d":"108,-66v25,7,36,28,39,57v7,73,-115,95,-133,27r16,-3v5,19,22,30,46,30v33,-1,55,-21,55,-53v0,-36,-25,-54,-65,-50r0,-15v37,3,59,-12,61,-45v4,-55,-83,-63,-95,-17r-16,-2v8,-24,31,-43,62,-43v71,0,87,96,30,114","w":168},"\ue028":{"d":"137,0r0,57r-16,0r0,-57r-108,0r0,-14r81,-165r17,0r-81,164r91,0r0,-72r16,0r0,72r21,0r0,15r-21,0","w":168},"\ue029":{"d":"148,-35v4,57,-13,94,-67,94v-32,0,-53,-14,-62,-42r15,-3v6,18,23,32,48,31v42,-1,51,-32,51,-78v0,-56,-72,-66,-94,-29r-16,0r0,-117r120,0r0,15r-105,0r0,83v37,-36,119,-17,110,46","w":168},"\ue02a":{"d":"149,-68v-2,44,-24,69,-67,70v-63,3,-73,-73,-47,-122r61,-115r17,0r-58,112v41,-24,97,4,94,55xm133,-66v0,-32,-18,-53,-49,-53v-32,0,-49,21,-50,53v-1,31,19,55,50,54v31,-1,49,-22,49,-54","w":168},"\ue02b":{"d":"60,57r-17,0r89,-220r-97,0r0,37r-16,0r0,-53r130,0r0,16","w":168},"\ue02c":{"d":"84,-237v69,-5,87,95,30,116v23,8,40,27,40,57v0,41,-29,63,-70,66v-74,6,-94,-104,-30,-123v-21,-9,-35,-24,-35,-53v2,-39,26,-60,65,-63xm84,-12v32,0,55,-21,55,-52v0,-31,-23,-51,-55,-51v-31,0,-55,19,-55,51v0,31,23,52,55,52xm84,-128v29,0,50,-17,50,-47v0,-29,-20,-48,-50,-48v-30,0,-50,19,-50,48v0,30,21,47,50,47","w":168},"\ue02d":{"d":"112,-54v-44,22,-96,-5,-94,-56v2,-45,23,-70,68,-70v54,0,77,59,54,105r-69,132r-17,0xm34,-112v0,32,19,53,50,53v31,0,48,-21,49,-53v1,-31,-18,-56,-49,-55v-31,1,-50,22,-50,55","w":168},"\ue02e":{"d":"12,-78r32,0r9,-58r-32,0r0,-9r33,0r10,-68r11,0r-10,68r47,0r10,-68r10,0r-9,68r33,0r0,9r-34,0r-9,58r34,0r0,9r-35,0r-9,69r-12,0r10,-69r-47,0r-10,69r-11,0r10,-69r-31,0r0,-9xm55,-78r47,0r9,-58r-48,0","w":168},"\ue02f":{"d":"153,-55v0,36,-28,55,-64,57r0,35r-11,0r0,-35v-26,0,-48,-10,-63,-22r9,-12v15,10,32,19,54,20r0,-89v-32,-6,-60,-19,-60,-55v0,-36,25,-53,60,-57r0,-24r11,0r0,24v21,0,39,7,53,15r-8,12v-13,-6,-28,-13,-45,-14r0,87v36,5,64,19,64,58xm89,-12v42,4,67,-52,32,-75v-8,-6,-21,-10,-32,-12r0,87xm78,-200v-47,-2,-61,69,-15,80v5,2,10,3,15,4r0,-84","w":168},"\ue030":{"d":"143,-174v-25,-51,-118,-26,-103,46r79,0r0,11r-79,0r0,20r80,0r0,11r-80,0v-2,44,14,75,55,75v26,0,39,-12,50,-30r13,7v-13,22,-30,36,-63,36v-51,0,-72,-34,-70,-88r-13,0r0,-11r13,0r0,-20r-13,0r0,-11r13,0v-17,-86,96,-116,132,-52","w":168},"\ue031":{"d":"4,19v72,24,63,-81,75,-139r-32,0r0,-13r34,0v2,-56,20,-117,87,-96r-3,14v-54,-18,-64,32,-68,82r38,0r0,13r-40,0v-16,65,2,177,-96,152","w":168},"\ue032":{"d":"61,-93v-1,33,-7,60,-24,80r112,0r0,13r-129,0v-1,-23,14,-29,19,-48v4,-14,8,-29,8,-45r-28,0r0,-11r26,0v-5,-22,-15,-34,-17,-58v-3,-59,90,-67,116,-26r-12,9v-21,-33,-89,-32,-88,17v1,23,13,36,16,58r49,0r0,11r-48,0","w":168},"\ue033":{"d":"24,-91v0,-46,23,-70,61,-77r0,-33r10,0r0,32v19,0,35,6,48,17r-9,10v-12,-10,-25,-15,-39,-14r0,130v16,0,30,-8,40,-15r8,11v-12,10,-28,17,-48,17r0,32r-10,0r0,-33v-38,-7,-61,-31,-61,-77xm85,-155v-44,3,-59,72,-34,108v8,11,20,17,34,20r0,-128","w":168},"\ue034":{"d":"147,-59r-56,0r0,59r-14,0r0,-59r-56,0r0,-11r56,0v0,-10,0,-20,-4,-25r-52,0r0,-11r47,0r-57,-107r16,0r57,111r57,-111r16,0r-56,107r46,0r0,11r-52,0v-4,5,-4,15,-4,25r56,0r0,11","w":168},"\ue048":{"d":"80,-180v60,-1,71,50,67,116v-3,42,-27,67,-67,67v-58,0,-71,-50,-66,-117v3,-42,25,-65,66,-66xm80,-12v48,1,51,-47,51,-100v0,-32,-20,-54,-51,-54v-48,-1,-51,47,-51,99v0,32,20,55,51,55","w":159},"\ue049":{"d":"13,-14r54,0r0,-147r-36,24r0,-17v17,-8,24,-27,52,-25r0,165r55,0r0,14r-125,0r0,-14","w":150,"k":{"\ue071":18,"\ue36c":11,"\ue36b":11,"\u00ba":11,"\u00aa":11,"\ue326":22,"\ue31e":18,"\ue07e":11,"\ue07d":14,"\ue070":14}},"\ue04a":{"d":"80,-166v-25,2,-45,16,-52,35r-15,-5v10,-54,129,-64,128,6v0,25,-17,39,-35,55r-74,60r112,0r0,15r-135,0r0,-15v35,-31,76,-56,107,-91v23,-25,0,-63,-36,-60","w":155},"\ue04b":{"d":"99,-66v65,20,43,131,-32,125v-33,-3,-55,-13,-61,-41r15,-3v14,47,105,35,101,-23v-3,-35,-25,-54,-64,-50r0,-15v37,3,59,-12,61,-45v4,-55,-84,-63,-96,-17r-15,-2v7,-25,30,-43,61,-43v72,0,87,96,30,114","w":151},"\ue04c":{"d":"131,0r0,57r-16,0r0,-57r-108,0r0,-14r81,-165r17,0r-81,164r91,0r0,-72r16,0r0,72r21,0r0,15r-21,0","w":157},"\ue04d":{"d":"142,-35v0,57,-14,93,-67,94v-32,0,-53,-14,-62,-42r15,-3v6,17,22,31,47,31v43,0,51,-32,51,-78v0,-57,-71,-66,-94,-29r-15,0r0,-117r119,0r0,15r-104,0r0,83v37,-37,110,-15,110,46","w":155},"\ue04e":{"d":"144,-68v-2,44,-24,69,-67,70v-63,3,-73,-73,-47,-122r61,-115r17,0r-58,112v41,-24,97,4,94,55xm128,-66v0,-32,-19,-53,-50,-53v-31,0,-48,21,-49,53v0,31,18,54,49,54v32,-1,50,-21,50,-54","w":154},"\ue04f":{"d":"55,57r-18,0r89,-220r-97,0r0,37r-15,0r0,-53r129,0r0,16","w":154},"\ue050":{"d":"81,-237v68,-5,86,96,29,116v24,8,40,27,40,57v0,42,-28,62,-69,66v-74,7,-94,-104,-31,-123v-21,-9,-35,-25,-35,-53v0,-38,27,-60,66,-63xm81,-12v32,0,54,-22,54,-52v0,-31,-23,-51,-54,-51v-31,0,-55,18,-55,51v0,32,23,52,55,52xm81,-128v29,0,49,-17,49,-47v0,-30,-20,-48,-49,-48v-30,0,-49,17,-50,48v0,31,21,47,50,47","w":159},"\ue051":{"d":"108,-54v-44,21,-97,-5,-95,-56v2,-45,24,-69,68,-70v54,-2,78,59,54,105r-69,132r-17,0xm29,-112v0,32,18,53,50,53v31,0,49,-21,50,-53v0,-31,-19,-56,-50,-55v-31,1,-50,22,-50,55","w":157},"\ue052":{"d":"3,-78r33,0r9,-58r-32,0r0,-9r33,0r9,-68r11,0r-9,68r47,0r10,-68r10,0r-9,68r33,0r0,9r-35,0r-8,58r33,0r0,9r-34,0r-10,69r-11,0r10,-69r-47,0r-10,69r-12,0r11,-69r-32,0r0,-9xm47,-78r47,0r9,-58r-48,0","w":152},"\ue053":{"d":"116,-102v50,26,23,111,-38,104r0,35r-10,0r0,-35v-26,0,-48,-10,-63,-22v3,-4,5,-8,9,-12v15,10,32,19,54,20r0,-89v-31,-6,-60,-19,-60,-55v0,-37,25,-54,60,-57r0,-24r10,0r0,24v20,0,41,7,54,15r-8,12v-13,-6,-29,-13,-46,-14r0,87v16,0,27,5,38,11xm78,-12v52,6,67,-72,17,-83v-6,-2,-12,-3,-17,-4r0,87xm68,-200v-46,-3,-61,69,-15,80v5,2,10,3,15,4r0,-84","w":149},"\ue054":{"d":"138,-174v-27,-50,-118,-26,-104,46r79,0r0,11r-79,0r0,20r79,0r0,11r-79,0v-1,43,14,75,55,75v26,0,39,-12,50,-30r13,7v-13,22,-30,36,-63,36v-51,0,-72,-34,-70,-88r-13,0r0,-11r13,0r0,-20r-13,0r0,-11r13,0v-18,-86,97,-116,133,-52","w":153},"\ue055":{"d":"-4,19v76,23,62,-84,75,-139r-32,0r0,-13r34,0v2,-57,22,-118,88,-96r-4,14v-54,-18,-64,32,-68,82r38,0r0,13r-40,0v-16,65,2,177,-96,152","w":153},"\ue056":{"d":"55,-93v-1,33,-7,60,-24,80r112,0r0,13r-129,0v-1,-23,14,-29,19,-48v4,-14,8,-29,8,-45r-28,0r0,-11r26,0v-5,-19,-14,-35,-16,-58v-4,-61,89,-66,115,-26r-12,9v-18,-31,-90,-33,-88,17v1,23,13,36,16,58r49,0r0,11r-48,0","w":151},"\ue057":{"d":"14,-91v0,-46,23,-70,61,-77r0,-33r10,0r0,32v19,0,35,6,48,17r-9,10v-12,-10,-25,-15,-39,-14r0,130v16,0,30,-8,40,-15r9,11v-12,9,-28,17,-49,17r0,32r-10,0r0,-33v-38,-7,-61,-31,-61,-77xm75,-155v-44,3,-59,72,-34,108v8,11,20,17,34,20r0,-128","w":147},"\ue058":{"d":"139,-59r-56,0r0,59r-15,0r0,-59r-55,0r0,-11r55,0v0,-10,0,-20,-4,-25r-51,0r0,-11r46,0r-56,-107r15,0r58,111r56,-111r16,0r-55,107r46,0r0,11r-52,0v-4,5,-4,15,-4,25r56,0r0,11","w":150},"\ue059":{"d":"182,-129v45,-2,41,48,40,94v-1,24,-16,35,-40,36v-47,3,-41,-49,-40,-94v1,-24,18,-35,40,-36xm62,-214v46,-2,41,48,40,93v-1,23,-16,35,-40,36v-48,2,-41,-49,-40,-93v1,-23,16,-35,40,-36xm60,5r-13,0r137,-224r14,0xm182,-10v37,0,27,-46,28,-81v0,-14,-12,-26,-28,-26v-37,0,-26,46,-27,81v-1,15,11,26,27,26xm62,-96v37,0,25,-46,27,-81v1,-16,-11,-26,-27,-26v-37,0,-27,46,-28,81v0,15,12,26,28,26","w":244},"\ue05a":{"d":"183,-129v45,-2,40,49,39,94v-1,24,-15,35,-39,36v-48,2,-42,-48,-41,-93v0,-25,18,-36,41,-37xm279,-129v45,-2,41,48,40,94v-1,24,-16,35,-40,36v-47,3,-41,-48,-40,-93v0,-24,17,-36,40,-37xm62,-214v46,-2,41,48,40,93v0,24,-16,35,-40,36v-47,3,-41,-48,-40,-93v1,-23,17,-35,40,-36xm61,5r-14,0r137,-224r15,0xm279,-10v37,0,27,-46,28,-81v0,-14,-12,-26,-28,-26v-37,0,-26,46,-27,81v-1,15,11,26,27,26xm183,-10v36,0,26,-46,27,-81v0,-14,-11,-26,-27,-26v-37,0,-27,46,-28,81v0,14,12,26,28,26xm62,-96v37,0,25,-46,27,-81v1,-16,-11,-26,-27,-26v-37,0,-25,46,-27,81v-1,16,11,26,27,26","w":341},"\ue06c":{"d":"93,-167v11,-46,-47,-50,-69,-29r-9,-8v23,-24,90,-25,90,21r0,82r-12,0r0,-14v-21,23,-85,23,-85,-19v0,-38,46,-34,85,-33xm93,-156v-30,2,-72,-9,-72,22v1,32,72,31,72,-2r0,-20","w":117},"\ue06d":{"d":"61,-219v35,0,47,26,47,58v0,38,-15,68,-57,61v-13,-2,-22,-9,-27,-20r0,19r-13,0r0,-170r13,0r0,71v7,-11,18,-19,37,-19xm59,-111v28,0,35,-21,35,-48v0,-27,-9,-49,-35,-49v-27,0,-35,23,-35,49v0,26,6,48,35,48","w":115},"\ue06f":{"d":"8,-160v-11,-53,60,-78,83,-41r0,-70r13,0r0,170r-13,0r0,-20v-23,44,-94,16,-83,-39xm57,-111v26,0,34,-22,34,-48v0,-28,-8,-49,-34,-49v-27,0,-36,22,-36,49v0,27,9,48,36,48","w":115},"\ue070":{"d":"60,-220v35,0,51,24,49,63r-86,0v-6,41,42,59,69,36r8,9v-34,29,-90,8,-90,-47v0,-38,16,-61,50,-61xm96,-167v4,-38,-40,-53,-62,-30v-6,7,-10,18,-11,30r73,0","w":117},"\ue073":{"d":"28,-200v18,-32,83,-22,83,22r0,77r-13,0v-3,-44,15,-106,-34,-106v-48,0,-35,61,-36,106r-13,0r0,-170r13,0r0,71","w":126},"\ue074":{"d":"18,-101r0,-117r13,0r0,117r-13,0xm17,-251r0,-14r15,0r0,14r-15,0","w":49},"\ue077":{"d":"49,-100v-24,2,-32,-7,-32,-27r0,-144r13,0r0,142v0,14,6,16,19,16r0,13","w":54},"\ue078":{"d":"108,-198v16,-34,86,-26,86,19r0,78r-13,0v-3,-44,14,-106,-34,-106v-48,0,-33,62,-35,106r-13,0v-3,-44,15,-106,-35,-106v-47,0,-32,62,-34,106r-13,0r0,-117r13,0r0,16v15,-23,68,-23,78,4","w":212},"\ue079":{"d":"10,-160v0,-37,16,-58,51,-59v34,0,50,22,50,59v0,41,-16,61,-51,61v-35,0,-50,-23,-50,-61xm98,-160v0,-31,-12,-45,-37,-48v-27,2,-38,19,-38,49v0,29,10,48,37,48v28,-1,38,-18,38,-49","w":121},"\ue07c":{"d":"30,-199v9,-17,35,-27,56,-17r-5,12v-24,-10,-51,5,-51,32r0,71r-13,0r0,-117r13,0r0,19","w":84},"\ue07d":{"d":"24,-186v10,35,84,5,81,53v-2,43,-72,41,-99,18r8,-10v20,17,74,25,78,-9v-6,-38,-82,-7,-82,-52v0,-39,62,-41,88,-23r-6,10v-17,-12,-67,-16,-68,13","w":114},"\ue07e":{"d":"61,-112r0,11v-23,2,-40,-5,-39,-26r0,-80r-17,0r0,-11r17,0r0,-31r13,0r0,31r23,0r0,11r-23,0v6,36,-19,101,26,95","w":66},"\ue318":{"d":"60,-100v-34,0,-43,-25,-47,-58v-6,-55,57,-82,84,-43r0,-17r12,0r0,117r-12,0r0,-20v-6,12,-19,21,-37,21xm62,-208v-27,0,-37,21,-36,48v1,26,8,49,36,48v26,-1,34,-22,35,-48v1,-27,-9,-47,-35,-48","w":124},"\ue31e":{"d":"28,-200v18,-32,83,-23,83,21r0,78r-13,0v-3,-44,14,-106,-35,-106v-47,0,-33,61,-35,106r-13,0r0,-117r13,0r0,18","w":126},"\ue324":{"d":"105,-218r-45,117r-12,0r-46,-117r14,0r38,100r37,-100r14,0","w":107},"\ue326":{"d":"10,-160v0,-37,17,-59,52,-59v32,0,49,20,49,58v0,40,-15,61,-51,61v-37,0,-50,-22,-50,-60xm98,-160v0,-30,-10,-48,-37,-48v-28,0,-38,20,-38,49v0,28,10,49,37,48v28,-1,38,-18,38,-49","w":121},"\ue328":{"d":"14,-54v5,-67,-22,-167,50,-165v35,1,51,20,49,60v9,55,-58,77,-86,42r0,63r-13,0xm100,-159v0,-31,-9,-49,-37,-49v-31,0,-39,30,-35,63v2,19,12,35,35,34v25,-1,37,-18,37,-48","w":123},"\ue329":{"d":"74,-66v18,-13,8,-35,-13,-36v-28,-10,-49,-19,-49,-58v0,-53,55,-74,94,-47r-8,10v-29,-22,-73,-6,-73,37v0,43,46,42,70,60v11,15,-3,32,-11,41","w":103},"\ue32c":{"d":"65,-111v49,0,32,-62,35,-107r13,0v0,55,11,119,-48,119v-59,0,-48,-63,-48,-119r13,0v2,45,-13,107,35,107","w":129},"%":{"d":"203,-151v54,-3,46,59,45,112v-1,26,-19,40,-45,40v-25,0,-44,-13,-44,-40r0,-72v0,-27,19,-39,44,-40xm203,-10v43,1,31,-57,32,-99v1,-17,-14,-30,-32,-30v-43,0,-29,57,-31,98v0,17,14,31,31,31xm68,-252v53,-1,45,60,44,112v-1,26,-18,40,-44,41v-54,2,-47,-60,-45,-112v1,-26,19,-40,45,-41xm68,-111v43,0,29,-58,31,-99v0,-17,-13,-30,-31,-30v-44,0,-30,57,-32,99v0,17,15,30,32,30xm66,9r-13,0r153,-267r13,0","w":271},"\u2030":{"d":"203,-151v54,-3,46,59,45,112v-1,26,-19,40,-45,40v-25,0,-44,-13,-44,-40r0,-72v0,-27,19,-39,44,-40xm203,-10v43,1,31,-57,32,-99v1,-17,-14,-30,-32,-30v-43,0,-29,57,-31,98v0,17,14,31,31,31xm68,-252v53,-1,45,60,44,112v-1,26,-18,40,-44,41v-54,2,-47,-60,-45,-112v1,-26,19,-40,45,-41xm68,-111v43,0,29,-58,31,-99v0,-17,-13,-30,-31,-30v-44,0,-30,57,-32,99v0,17,15,30,32,30xm67,9r-13,0r153,-267r13,0xm311,-151v25,0,44,13,44,40v0,51,11,112,-44,112v-54,0,-46,-60,-45,-112v1,-26,19,-40,45,-40xm311,-10v43,1,29,-58,31,-99v1,-18,-13,-30,-31,-30v-44,0,-30,57,-32,98v0,18,14,31,32,31","w":381},"\u00aa":{"d":"93,-167v11,-46,-47,-50,-69,-29r-9,-8v23,-24,90,-25,90,21r0,82r-12,0r0,-14v-21,23,-85,23,-85,-19v0,-38,46,-34,85,-33xm93,-156v-30,2,-72,-9,-72,22v1,32,72,31,72,-2r0,-20","w":117},"\u00b2":{"d":"81,-247v0,-33,-58,-32,-62,-2r-13,-2v5,-42,91,-44,89,4v0,11,-5,23,-12,30r-62,72r73,0r0,12r-90,0r0,-11v25,-31,53,-58,75,-92v1,-4,2,-8,2,-11","w":102},"\u00b3":{"d":"72,-211v41,14,23,84,-26,79v-22,-2,-37,-9,-42,-28r13,-2v8,29,65,23,65,-13v0,-24,-17,-33,-43,-30r0,-12v23,2,40,-7,41,-27v2,-33,-54,-39,-62,-9r-13,-2v5,-17,22,-27,43,-29v47,-5,59,58,24,73","w":101},"\u00b9":{"d":"51,-133r-13,0r0,-136r-24,15v-1,-23,16,-26,37,-29r0,150","w":81},"\u00ba":{"d":"10,-160v0,-37,16,-58,51,-59v34,0,50,22,50,59v0,41,-16,61,-51,61v-35,0,-50,-23,-50,-61xm98,-160v0,-31,-12,-45,-37,-48v-27,2,-38,19,-38,49v0,29,10,48,37,48v28,-1,38,-18,38,-49","w":121},"\u00bc":{"d":"68,-101r-13,0r0,-135r-24,14v-1,-23,16,-26,37,-29r0,150xm63,9r-13,0r153,-267r13,0xm225,-23r0,23r-14,0r0,-23r-72,0r0,-11r58,-116r15,0r-59,115r58,0r0,-46r14,0r0,46r14,0r0,12r-14,0","w":270},"\u00bd":{"d":"229,-113v0,-34,-57,-32,-62,-3r-13,-2v5,-41,90,-44,89,4v0,12,-5,22,-12,30r-61,72r72,0r0,12r-89,0r0,-12r67,-79v6,-6,9,-12,9,-22xm58,9r-13,0r153,-267r13,0xm64,-101r-13,0r0,-135r-24,14v-1,-23,15,-27,37,-29r0,150","w":270},"\u00be":{"d":"81,-179v42,15,22,84,-25,80v-23,-2,-38,-10,-43,-29r13,-2v9,30,66,22,66,-13v0,-23,-18,-32,-43,-30r0,-11v23,2,39,-9,40,-28v2,-33,-54,-37,-62,-8r-13,-3v5,-17,23,-27,44,-29v46,-4,60,59,23,73xm79,9r-13,0r153,-267r13,0xm243,-23r0,23r-14,0r0,-23r-73,0r0,-11r59,-116r14,0r-58,115r58,0r0,-46r14,0r0,46r14,0r0,12r-14,0","w":270},"\ue40c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm368,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237xm229,-107r19,-92r3,0r20,92r-42,0xm280,-67r13,54r54,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0"},"\ue40d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm221,-107v8,-29,9,-66,21,-92r20,92r-41,0xm271,-67r13,54r54,0r-67,-236r-60,0r-66,236r54,0r13,-54r59,0xm352,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue40e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm219,-107v8,-29,9,-66,21,-92r20,92r-41,0xm269,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0xm498,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v27,-10,46,-29,46,-68xm400,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue40f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm236,-13v72,7,95,-109,29,-126v17,-9,32,-24,32,-49v0,-73,-82,-62,-153,-62r0,237r92,0xm196,-117v31,-2,56,2,56,32v0,31,-25,33,-56,32r0,-64xm196,-209v25,-1,49,-1,50,23v1,28,-22,30,-50,29r0,-52xm429,-255v-68,2,-98,52,-98,121v0,78,25,132,110,125v23,-2,43,-9,60,-19r0,-116r-69,0r0,30r19,3r0,55v-45,17,-66,-30,-64,-80v1,-41,12,-75,49,-76v14,0,32,5,43,9r13,-36v-17,-9,-36,-17,-63,-16"},"\ue410":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm252,-13v72,7,93,-108,29,-126v17,-9,32,-25,32,-49v2,-73,-82,-62,-154,-62r0,237r93,0xm212,-117v31,-2,56,2,56,32v0,31,-25,33,-56,32r0,-64xm212,-209v25,0,49,-2,49,23v0,29,-21,30,-49,29r0,-52xm422,-153v-12,-34,-26,-65,-40,-96r-55,0r69,145r0,91r52,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue411":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm243,-13v72,8,93,-109,29,-126v18,-9,33,-25,33,-49v0,-71,-82,-63,-154,-62r0,237r92,0xm203,-117v31,-2,58,2,57,32v0,30,-26,34,-57,32r0,-64xm203,-209v25,0,49,-2,49,23v0,29,-21,30,-49,29r0,-52xm498,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v27,-10,46,-29,46,-68xm400,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue412":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm338,-23v66,32,184,12,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,4,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-145,-20,-145,52v0,64,55,63,95,85v22,21,1,62,-36,50v-16,0,-31,-4,-44,-9xm147,-133v-3,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-55,0,-58,-159,4,-159v16,0,29,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121"},"\ue413":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm147,-133v-3,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-55,0,-58,-159,4,-159v16,0,29,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121xm328,-13r155,0r0,-42r-97,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39"},"\ue414":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm157,-133v-4,85,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-40,8,-74,43,-75v16,0,31,3,43,8r13,-35v-17,-10,-35,-16,-62,-16v-69,1,-91,54,-94,121xm427,-153v-12,-34,-26,-65,-40,-96r-55,0r69,145r0,91r52,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue415":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm152,-133v-3,85,37,142,125,120v12,-3,23,-8,33,-15r-13,-36v-19,6,-29,12,-49,12v-33,0,-40,-40,-40,-84v1,-40,9,-73,44,-75v15,0,30,4,42,8r13,-35v-17,-10,-35,-16,-62,-16v-67,0,-90,53,-93,121xm397,-107v8,-29,9,-66,21,-92r20,92r-41,0xm447,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0"},"\ue416":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm147,-133v0,69,17,124,85,124v32,0,54,-6,73,-19r-14,-36v-18,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-41,9,-74,44,-75v16,0,29,4,42,8r13,-35v-17,-10,-35,-16,-62,-16v-68,0,-93,53,-93,121xm451,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r54,0r0,-236r-50,0v-2,44,4,97,-2,137"},"\ue417":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm142,-133v-4,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-33,0,-40,-40,-40,-84v1,-40,9,-73,44,-75v15,0,30,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121xm448,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-52,0r0,237r52,0r0,-103r66,0r0,103"},"\ue418":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm412,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm147,-133v0,69,17,124,85,124v32,0,54,-6,73,-19r-14,-36v-19,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-40,8,-74,43,-75v16,0,30,3,43,8r13,-35v-17,-10,-36,-16,-63,-16v-68,0,-92,53,-92,121"},"\ue419":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm353,-14r139,0r0,-42r-86,0r0,-60r76,0r0,-42r-76,0r0,-50r86,0r0,-42r-139,0r0,236xm216,-13v76,1,102,-44,102,-120v0,-78,-30,-117,-103,-117r-64,0r0,237r65,0xm203,-209v52,-6,61,26,61,74v0,48,-6,88,-61,81r0,-155"},"\ue41a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm216,-13v76,1,102,-44,102,-120v0,-78,-30,-117,-103,-117r-64,0r0,237r65,0xm203,-209v52,-6,61,26,61,74v0,48,-6,88,-61,81r0,-155xm399,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue41b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm159,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237xm341,-23v66,33,184,10,153,-87v-12,-38,-62,-43,-94,-60v-20,-23,5,-50,41,-41v10,3,22,4,32,8v5,-9,7,-27,12,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,0,61,-37,50v-16,0,-32,-4,-44,-9v-4,10,-10,27,-13,38"},"\ue41c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm171,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237xm350,-13r140,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-140,0r0,237"},"\ue41d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm162,-13r139,0r0,-42r-86,0r0,-61r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237xm428,-255v-68,2,-97,53,-98,121v-2,79,26,130,109,125v23,-2,44,-9,61,-19r0,-116r-69,0r0,30r18,3r0,55v-45,17,-65,-29,-63,-80v2,-41,11,-75,48,-76v14,0,33,4,44,9r13,-36v-17,-9,-36,-17,-63,-16"},"\ue41e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm496,-182v2,-76,-76,-70,-151,-68r0,236r52,0r0,-95r21,0r35,95r53,0r-34,-82r-23,-18v29,-8,47,-30,47,-68xm174,-13r52,0r0,-102r76,0r0,-42r-76,0r0,-50r87,0r0,-42r-139,0r0,236xm397,-209v27,-2,47,3,47,29v0,27,-19,33,-47,31r0,-60"},"\ue41f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm200,-13r53,0r0,-103r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237xm385,-13r52,0r0,-236r-52,0r0,236"},"\ue420":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm473,-140v21,-6,32,-25,32,-49v1,-72,-82,-61,-154,-61r0,236r93,0v72,8,93,-108,29,-126xm404,-118v31,-2,57,3,57,32v1,31,-25,35,-57,33r0,-65xm404,-210v25,0,49,-2,49,24v0,26,-22,30,-49,28r0,-52xm234,-256v-69,0,-97,54,-98,122v-2,79,26,131,110,125v24,-2,44,-10,60,-20r0,-116r-69,0r0,31r19,3r0,55v-47,15,-65,-31,-64,-81v1,-40,12,-75,48,-75v15,0,34,3,45,8r13,-36v-18,-9,-37,-16,-64,-16"},"\ue421":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm502,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-82r-22,-18v29,-9,46,-29,46,-68xm404,-208v26,-2,47,3,46,28v0,27,-18,34,-46,32r0,-60xm234,-256v-69,0,-98,53,-98,122v0,77,26,131,111,125v24,-2,44,-10,60,-20r0,-116r-69,0r0,31r18,3r0,55v-46,15,-63,-31,-63,-81v0,-40,12,-75,49,-75v15,0,32,3,43,8r14,-36v-18,-10,-38,-16,-65,-16"},"\ue422":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm251,-256v-69,0,-98,53,-98,122v0,77,25,131,110,125v24,-2,45,-9,61,-20r0,-116r-69,0r0,31r18,3r0,55v-47,15,-64,-30,-63,-81v1,-40,12,-75,48,-75v15,-1,33,3,44,8r13,-36v-17,-10,-37,-16,-64,-16xm361,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue423":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm248,-14r53,0r0,-236r-53,0r0,93r-65,0r0,-93r-53,0r0,236r53,0r0,-102r65,0r0,102xm427,-9v52,0,86,-23,86,-73r0,-168r-53,0r0,163v-1,22,-10,35,-33,35v-22,0,-30,-13,-30,-35r0,-163r-52,0r0,168v1,50,30,73,82,73"},"\ue424":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm248,-14r53,0r0,-236r-53,0r0,93r-65,0r0,-93r-53,0r0,236r53,0r0,-102r65,0r0,102xm494,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-33,-83r-23,-17v27,-10,46,-29,46,-68xm396,-208v26,-2,46,3,46,28v0,28,-18,32,-46,31r0,-59"},"\ue425":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm260,-14r52,0r0,-236r-52,0r0,93r-66,0r0,-93r-53,0r0,236r53,0r0,-102r66,0r0,102xm410,-120r65,107r64,0r-83,-124r82,-112r-60,0v-24,32,-43,70,-70,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue426":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm207,-13r52,0r0,-236r-52,0r0,236xm419,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194"},"\ue427":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm221,-13r53,0r0,-236r-53,0r0,236xm341,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237"},"\ue428":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm314,-23v66,33,185,11,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-53,40,-41v11,1,23,4,33,8r11,-36v-49,-29,-146,-19,-146,52v0,63,56,64,96,85v22,21,1,62,-36,50v-16,-1,-33,-4,-45,-9xm210,-13r52,0r0,-236r-52,0r0,236"},"\ue429":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm210,-13r52,0r0,-236r-52,0r0,236xm329,-13r139,0r0,-42r-86,0r0,-61r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237"},"\ue42a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm191,-13r52,0r0,-236r-52,0r0,236xm433,-112v-25,-43,-45,-92,-68,-137r-60,0r0,236r50,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-51,0r0,137"},"\ue42b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm207,-13r52,0r0,-236r-52,0r0,236xm388,-13v76,1,102,-43,102,-120v0,-78,-29,-118,-102,-117r-65,0r0,237r65,0xm375,-209v51,-5,61,24,61,74v0,50,-6,88,-61,81r0,-155"},"\ue42c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm479,-132v-1,-70,-20,-122,-90,-122v-69,0,-90,51,-90,122v0,71,20,123,90,123r20,50r44,0v-8,-21,-16,-44,-36,-53v47,-14,62,-59,62,-120xm195,-13r52,0r0,-236r-52,0r0,236xm355,-132v0,-38,-1,-79,34,-79v35,0,33,42,33,79v0,38,1,81,-33,81v-35,0,-34,-43,-34,-81"},"\ue42d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm466,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm204,-13r53,0r0,-236r-53,0r0,236xm368,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue42e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm228,-90v6,41,-32,41,-62,32r-12,38v16,7,32,11,55,11v110,0,62,-145,72,-240r-53,0r0,159xm491,-180v2,-77,-76,-72,-151,-70r0,237r52,0r0,-92v59,3,98,-18,99,-75xm438,-179v1,28,-17,35,-46,33r0,-63v28,-2,46,4,46,30"},"\ue42f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm210,-90v7,43,-32,41,-62,32r-11,38v16,8,32,11,55,11v109,0,61,-145,71,-240r-53,0r0,159xm308,-132v0,71,20,122,90,123v71,0,90,-54,90,-123v0,-70,-20,-122,-90,-122v-70,0,-89,52,-90,122xm364,-132v0,-38,-1,-79,34,-79v35,0,34,42,34,79v0,38,1,80,-34,80v-36,0,-34,-43,-34,-80"},"\ue430":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm143,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107xm327,-13r65,0r28,-166r2,0r28,166r65,0r49,-236r-57,0r-24,178r-2,0r-31,-178r-58,0r-31,180r-2,0r-26,-180r-56,0"},"\ue431":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm183,-13r140,0r0,-42r-88,0r0,-195r-52,0r0,237xm448,-249r-41,188r-2,0r-40,-188r-55,0r64,236r63,0r64,-236r-53,0"},"\ue432":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm189,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237xm428,-207r53,0r0,-43r-156,0r0,43r50,0r0,194r53,0r0,-194"},"\ue433":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm175,-13r140,0r0,-42r-87,0r0,-195r-53,0r0,237xm430,-13v72,7,93,-108,29,-126v17,-9,32,-25,32,-49v1,-72,-82,-63,-154,-62r0,237r93,0xm390,-117v31,-2,56,3,56,32v0,30,-25,33,-56,32r0,-64xm390,-209v25,-1,48,-1,49,23v1,29,-21,30,-49,29r0,-52"},"\ue434":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm234,-132r-50,-117r-59,0r0,236r51,0v2,-48,-4,-106,2,-150r39,95r34,0v15,-31,23,-67,41,-95r0,150r50,0r0,-236r-58,0xm436,-13v76,0,102,-43,102,-120v0,-78,-29,-117,-102,-117r-65,0r0,237r65,0xm423,-209v51,-5,61,25,61,74v0,48,-6,88,-61,81r0,-155"},"\ue435":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm224,-132v-19,-37,-33,-79,-51,-117r-58,0r0,236r50,0v2,-48,-4,-106,2,-150r40,95r33,0r39,-95r3,0r0,150r49,0r0,-236r-58,0xm445,-93v15,24,25,54,39,80r57,0r-66,-122r62,-114r-57,0r-35,75r-35,-75r-57,0r61,114r-65,122r57,0"},"\ue436":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm246,-132r-50,-117r-59,0r0,236r51,0v2,-48,-4,-106,2,-150r39,95r33,0v15,-31,24,-67,42,-95r0,150r50,0r0,-236r-58,0xm478,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194"},"\ue437":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm269,-112r-67,-137r-59,0r0,236r49,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-50,0v-2,44,4,97,-2,137xm343,-132v0,71,20,122,90,123v71,0,90,-54,90,-123v0,-70,-20,-122,-90,-122v-70,0,-89,52,-90,122xm399,-132v0,-38,-1,-79,34,-79v36,0,34,43,34,79v0,36,2,80,-34,80v-36,0,-34,-43,-34,-80"},"\ue438":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm274,-112r-67,-137r-59,0r0,236r50,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-51,0v-2,44,4,97,-2,137xm382,-13r140,0r0,-42r-87,0r0,-195r-53,0r0,237"},"\ue439":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm281,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r54,0r0,-236r-50,0v-2,44,4,97,-2,137xm357,-13r154,0r0,-42r-96,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39"},"\ue43a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm439,-208r52,0r0,-42r-156,0r0,42r51,0r0,194r53,0r0,-194"},"\ue43b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm315,-180v0,-79,-75,-71,-150,-70r0,236r52,0r0,-92v60,3,98,-16,98,-74xm263,-179v0,28,-17,34,-46,32r0,-63v27,-2,46,4,46,31xm355,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237"},"\ue43c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm397,-120v24,34,44,72,67,107r63,0r-82,-124r82,-112r-60,0r-70,100r0,-100r-53,0r0,236r53,0r0,-107"},"\ue43d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm341,-23v65,33,184,12,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v22,21,1,62,-36,50v-16,-1,-33,-4,-45,-9"},"\ue43e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm301,-180v0,-79,-75,-71,-151,-70r0,236r53,0r0,-92v59,3,98,-16,98,-74xm248,-179v0,29,-16,34,-45,32r0,-63v27,-1,45,3,45,31xm449,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-52,0r0,237r52,0r0,-103r66,0r0,103"},"\ue43f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm326,-132v0,70,21,123,91,123v70,0,89,-52,89,-123v0,-69,-20,-122,-89,-122v-70,0,-91,52,-91,122xm304,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm382,-132v0,-38,-1,-79,35,-79v34,0,33,42,33,79v0,37,1,80,-33,80v-36,0,-35,-42,-35,-80xm206,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue440":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm297,-181v2,-76,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-9,46,-31,46,-68xm420,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm199,-208v26,-1,45,1,45,28v0,27,-17,33,-45,31r0,-59"},"\ue441":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm165,-23v66,33,184,12,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,3,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-146,-20,-146,52v0,63,56,63,96,85v21,21,1,62,-36,50v-16,0,-31,-4,-44,-9xm375,-13r52,0r0,-236r-52,0r0,236"},"\ue442":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm163,-23v66,33,184,10,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,-1,-32,-4,-44,-9v-2,12,-10,27,-13,38xm348,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue443":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm162,-23v66,33,184,10,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-53,40,-41v11,1,22,4,32,8r12,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,0,-31,-4,-44,-9v-4,10,-10,27,-13,38xm395,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue444":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm150,-23v66,33,183,11,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,3,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-146,-20,-146,52v0,63,56,64,96,85v20,22,1,61,-36,50v-17,-1,-32,-4,-45,-9xm430,-255v-67,3,-98,52,-98,121v0,78,25,132,110,125v23,-2,43,-9,60,-19r0,-116r-69,0r0,30r19,3r0,55v-45,17,-66,-30,-64,-80v1,-41,12,-75,49,-76v14,0,32,5,43,9r14,-36v-18,-8,-37,-17,-64,-16"},"\ue445":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm450,-67r13,54r54,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0xm153,-23v66,33,184,10,153,-87v-12,-38,-62,-43,-94,-60v-20,-23,4,-50,41,-41v10,3,22,4,32,8r12,-36v-49,-28,-146,-21,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,0,-31,-4,-44,-9xm399,-107v8,-29,9,-66,21,-92r21,92r-42,0"},"\ue446":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm490,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r35,95r53,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm255,-207r52,0r0,-43r-155,0r0,43r50,0r0,194r53,0r0,-194xm392,-208v26,-1,45,1,45,28v0,27,-17,33,-45,31r0,-59"},"\ue447":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm243,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194xm439,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-53,0r0,237r53,0r0,-103r66,0r0,103"},"\ue448":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm218,-9v52,-1,84,-22,85,-73r0,-167r-52,0r0,162v-1,22,-10,36,-33,36v-23,-1,-30,-14,-30,-36r0,-162r-52,0r0,167v1,48,30,74,82,73xm395,-107v8,-29,9,-66,21,-92r20,92r-41,0xm445,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0"},"\ue449":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm227,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm349,-23v65,33,185,11,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,22,1,61,-36,50v-16,-1,-33,-4,-45,-9"},"\ue44a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm274,-249r-41,188r-2,0r-41,-188r-54,0r63,236r64,0r64,-236r-53,0xm348,-13r140,0r0,-42r-87,0r0,-61r76,0r0,-41r-76,0r0,-50r87,0r0,-43r-140,0r0,237"},"\ue44b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm348,-13r140,0r0,-42r-87,0r0,-61r76,0r0,-41r-76,0r0,-50r87,0r0,-43r-140,0r0,237xm235,-153v-12,-34,-26,-65,-40,-96r-55,0r68,145r0,91r53,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue44c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm145,-13r155,0r0,-42r-97,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39xm386,-107r19,-92r3,0r20,92r-42,0xm437,-67r12,54r55,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0"},"\ue478":{"d":"368,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm271,-107r-20,-92r-3,0r-19,92r42,0xm220,-67r-12,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue479":{"d":"262,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm212,-67r-13,54r-54,0r66,-236r60,0r67,236r-54,0r-13,-54r-59,0xm352,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47a":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm498,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm210,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm400,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm260,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0"},"\ue47b":{"d":"297,-188v0,25,-14,41,-32,49v66,16,43,126,-29,126r-92,0r0,-237v71,0,153,-11,153,62xm196,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm196,-157v28,2,51,-2,50,-29v-1,-24,-25,-24,-50,-23r0,52xm441,-9v-85,6,-107,-47,-110,-125v-4,-93,77,-150,161,-105r-13,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160r19,-4r0,-55r-19,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47c":{"d":"313,-188v0,24,-15,40,-32,49v25,7,39,27,39,57v0,42,-26,69,-68,69r-93,0r0,-237v72,0,156,-11,154,62xm212,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm212,-157v28,2,49,-1,49,-29v0,-25,-24,-23,-49,-23r0,52xm424,-153r39,-96r55,0r-70,144r0,92r-52,0r0,-91r-69,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47d":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm234,-250v68,-10,96,87,39,110v62,18,44,127,-30,127r-92,0r0,-237r83,0xm498,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm203,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm400,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm203,-157v28,2,51,-2,50,-29v-1,-24,-25,-24,-50,-23r0,52"},"\ue47e":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm456,-147v70,36,37,153,-50,138v-25,-4,-50,-4,-68,-14r14,-38v34,19,116,12,81,-41v-39,-21,-96,-20,-96,-85v0,-72,96,-80,145,-52r-11,36v-24,-8,-80,-22,-80,15v-1,32,45,31,65,41xm306,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-5,-94,73,-149,156,-104r-14,35v-11,-5,-26,-8,-42,-8v-63,0,-58,159,-4,159v20,0,30,-6,49,-12"},"\ue47f":{"d":"306,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-5,-94,73,-149,156,-104r-14,35v-11,-5,-26,-8,-42,-8v-63,0,-58,159,-4,159v20,0,30,-6,49,-12xm328,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r97,0r0,42r-155,0r0,-39xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue480":{"d":"316,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-94,72,-149,155,-104r-13,35v-12,-5,-27,-8,-43,-8v-35,1,-43,35,-43,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm429,-153r39,-96r55,0r-70,144r0,92r-52,0r0,-91r-69,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue481":{"d":"310,-28v-19,13,-41,19,-72,19v-69,-1,-83,-55,-86,-125v-5,-93,73,-149,155,-104r-13,35v-12,-4,-27,-8,-42,-8v-35,1,-43,36,-44,75v0,43,7,84,40,84v20,0,30,-6,49,-12xm438,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm388,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue482":{"d":"305,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-93,73,-149,155,-104r-13,35v-13,-4,-26,-8,-42,-8v-35,1,-44,35,-44,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm453,-112r0,-137r50,0r0,236r-54,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue483":{"d":"301,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-4,-94,73,-149,156,-104r-14,35v-13,-4,-26,-8,-42,-8v-35,1,-43,36,-44,75v0,43,7,84,40,84v20,0,30,-6,49,-12xm448,-116r-66,0r0,103r-52,0r0,-237r52,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue484":{"d":"305,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-94,72,-149,155,-104r-13,35v-13,-5,-27,-8,-43,-8v-35,1,-43,35,-43,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm412,-51v23,0,32,-14,33,-36r0,-162r53,0r0,167v-1,51,-34,72,-86,73v-52,1,-82,-25,-82,-73r0,-167r53,0r0,162v0,23,7,36,29,36xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue485":{"d":"353,-250r139,0r0,42r-86,0r0,50r76,0r0,42r-76,0r0,60r86,0r0,42r-139,0r0,-236xm215,-250v73,0,103,38,103,116v0,76,-25,122,-102,121r-65,0r0,-237r64,0xm203,-54v54,7,62,-32,61,-81v-1,-48,-9,-80,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue486":{"d":"215,-250v73,0,103,38,103,116v0,76,-25,122,-102,121r-65,0r0,-237r64,0xm203,-54v54,7,62,-32,61,-81v-1,-48,-9,-80,-61,-74r0,155xm397,-120r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r69,-100r59,0r-81,112r82,124r-64,0v-23,-35,-41,-75,-67,-107xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue487":{"d":"159,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm458,-147v71,35,39,151,-49,138v-25,-4,-51,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,44,31,65,41xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue488":{"d":"171,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm350,-250r140,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue489":{"d":"162,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,61r86,0r0,42r-139,0r0,-237xm440,-9v-84,6,-110,-46,-110,-125v0,-93,77,-150,161,-105r-13,36v-11,-4,-29,-9,-43,-9v-37,1,-49,35,-49,76v0,51,16,96,63,80r0,-55r-18,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48a":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm496,-182v0,38,-18,59,-47,68r23,18r34,82r-53,0r-35,-95r-21,0r0,95r-52,0r0,-236v75,-1,153,-8,151,68xm174,-249r139,0r0,42r-87,0r0,50r76,0r0,42r-76,0r0,102r-52,0r0,-236xm397,-149v28,2,47,-4,47,-31v0,-26,-20,-31,-47,-29r0,60"},"\ue48b":{"d":"200,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,103r-53,0r0,-237xm385,-249r52,0r0,236r-52,0r0,-236xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48c":{"d":"473,-140v25,8,39,27,39,57v0,43,-25,69,-68,69r-93,0r0,-236v71,0,155,-11,154,61v0,24,-12,41,-32,49xm404,-53v32,2,58,-2,57,-33v0,-29,-26,-34,-57,-32r0,65xm404,-158v27,2,49,-2,49,-28v0,-26,-24,-25,-49,-24r0,52xm246,-9v-84,6,-110,-46,-110,-125v0,-95,79,-151,162,-106r-13,36v-11,-5,-30,-9,-44,-9v-68,-1,-65,157,-4,160v6,0,16,-2,19,-3r0,-55r-19,-3r0,-31r69,0r0,116v-16,10,-36,18,-60,20xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48d":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm502,-181v0,39,-18,59,-46,68r22,18r34,82r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-9,150,68xm247,-9v-85,6,-107,-48,-111,-125v-5,-95,80,-151,163,-106r-14,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160v6,0,15,-2,19,-3r0,-55r-19,-3r0,-31r69,0r0,116v-16,10,-36,18,-60,20xm404,-148v28,2,47,-5,46,-32v0,-25,-19,-30,-46,-28r0,60"},"\ue48e":{"d":"263,-9v-85,6,-107,-48,-110,-125v-4,-94,78,-152,162,-106r-13,36v-11,-5,-30,-9,-44,-9v-67,-1,-64,158,-4,160v6,0,15,-2,19,-3r0,-55r-18,-3r0,-31r69,0r0,116v-17,11,-37,18,-61,20xm361,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48f":{"d":"249,-116r-66,0r0,102r-53,0r0,-236r53,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm427,-52v23,0,32,-14,33,-35r0,-163r53,0r0,168v-3,49,-34,73,-86,73v-51,0,-82,-23,-82,-73r0,-168r52,0r0,163v1,22,8,34,30,35xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue490":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm494,-181v0,39,-19,58,-46,68r23,17r33,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm249,-116r-66,0r0,102r-53,0r0,-236r53,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm396,-149v28,1,47,-3,46,-31v-1,-25,-19,-31,-46,-29r0,60"},"\ue491":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm534,-249v-93,-71,-308,-71,-411,-6v-59,37,-109,117,-60,192v76,118,345,139,471,50r-59,0v-23,-35,-41,-75,-67,-107r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r68,-100r56,0xm260,-116r-66,0r0,102r-52,0r0,-236r52,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm537,-15v56,-31,99,-112,53,-180v-13,-20,-30,-37,-53,-53r-81,111"},"\ue492":{"d":"207,-249r52,0r0,236r-52,0r0,-236xm419,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue493":{"d":"221,-249r53,0r0,236r-53,0r0,-236xm341,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue494":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm432,-147v70,36,38,153,-50,138v-25,-4,-50,-4,-68,-14r14,-38v30,13,103,22,87,-32v-30,-36,-103,-21,-103,-94v0,-71,96,-81,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41xm210,-249r52,0r0,236r-52,0r0,-236"},"\ue495":{"d":"210,-249r52,0r0,236r-52,0r0,-236xm329,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,61r86,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue496":{"d":"191,-249r52,0r0,236r-52,0r0,-236xm432,-112v4,-42,0,-92,1,-137r51,0r0,236r-55,0r-72,-147r-2,0r0,147r-50,0r0,-236r60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue497":{"d":"207,-249r52,0r0,236r-52,0r0,-236xm388,-250v73,-1,102,39,102,116v0,77,-25,122,-102,121r-65,0r0,-237r65,0xm375,-54v55,7,61,-30,61,-81v0,-49,-9,-80,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue498":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm447,26v79,-26,154,-63,163,-157v-24,-221,-447,-218,-547,-69v-52,78,6,162,60,193v67,39,180,64,283,43r-17,-45v-69,-3,-89,-52,-90,-123v0,-71,21,-122,90,-122v70,0,89,52,90,122v0,61,-16,106,-62,120v13,9,25,21,30,38xm195,-249r52,0r0,236r-52,0r0,-236xm423,-132v0,-36,1,-79,-34,-79v-35,0,-34,42,-34,79v0,38,-1,81,34,81v35,0,34,-44,34,-81"},"\ue499":{"d":"204,-249r53,0r0,236r-53,0r0,-236xm466,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-53,0r0,-236v74,0,151,-10,151,68xm368,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49a":{"d":"281,-89v10,75,-65,97,-127,69r12,-38v29,9,62,11,62,-32r0,-159r53,0r0,160xm491,-180v-1,57,-39,78,-99,75r0,92r-52,0r0,-237v75,-1,153,-8,151,70xm438,-179v0,-26,-18,-32,-46,-30r0,63v29,2,47,-5,46,-33xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49b":{"d":"263,-89v12,76,-65,96,-126,69r11,-38v30,8,62,12,62,-32r0,-159r53,0r0,160xm488,-132v0,70,-19,123,-90,123v-70,0,-90,-54,-90,-123v0,-70,20,-122,90,-122v70,0,90,52,90,122xm432,-132v0,-38,1,-79,-34,-79v-35,0,-34,42,-34,79v0,37,-2,80,34,80v35,0,34,-42,34,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49c":{"d":"162,-120v-4,29,0,65,-1,96r-48,0r0,-213r48,0r1,91r62,-91r54,0r-74,102r75,111r-58,0xm283,-236r50,0r25,161r28,-161r53,0r29,160r22,-160r51,0r-44,212r-58,0r-27,-148r-26,148r-58,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49d":{"d":"183,-250r52,0r0,195r88,0r0,42r-140,0r0,-237xm448,-249r53,0r-64,236r-63,0r-64,-236r55,0r40,188r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49e":{"d":"189,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm428,-13r-53,0r0,-194r-50,0r0,-43r156,0r0,43r-53,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49f":{"d":"175,-250r53,0r0,195r87,0r0,42r-140,0r0,-237xm420,-250v69,-10,96,88,39,110v62,18,45,127,-29,127r-93,0r0,-237r83,0xm390,-53v31,1,56,-1,56,-32v0,-30,-25,-34,-56,-32r0,64xm390,-157v28,2,50,-2,49,-29v-1,-24,-24,-24,-49,-23r0,52xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a0":{"d":"234,-132r50,-117r58,0r0,236r-50,0v-2,-48,4,-106,-2,-150r-39,95r-34,0v-15,-31,-23,-67,-41,-95r0,150r-51,0r0,-236r59,0xm436,-250v72,0,102,39,102,116v0,78,-26,121,-102,121r-65,0r0,-237r65,0xm423,-54v55,7,61,-32,61,-81v0,-49,-10,-79,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a1":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm534,-249v-93,-71,-308,-71,-411,-6v-59,37,-109,117,-60,192v76,118,345,139,471,50r-50,0r-39,-80r-38,80r-58,0r66,-122r-62,-114r57,0r36,75r34,-75r54,0xm223,-132v20,-36,33,-78,50,-117r59,0r0,236r-50,0r0,-150r-3,0r-39,95r-33,0v-15,-31,-24,-67,-42,-95r0,150r-50,0r0,-236r59,0xm539,-16v54,-32,97,-112,51,-179v-13,-20,-31,-38,-54,-53r-61,113"},"\ue4a2":{"d":"246,-132r50,-117r58,0r0,236r-50,0v-2,-48,4,-106,-2,-150r-40,95r-33,0v-15,-31,-23,-67,-41,-95r0,150r-51,0r0,-236r59,0xm478,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a3":{"d":"271,-112r0,-137r50,0r0,236r-55,0r-72,-147r-2,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm523,-132v0,69,-19,123,-90,123v-70,0,-90,-52,-90,-123v1,-70,20,-122,90,-122v70,0,90,52,90,122xm467,-132v0,-36,2,-79,-34,-79v-35,0,-34,42,-34,79v0,37,-2,80,34,80v36,0,34,-44,34,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a4":{"d":"276,-112r0,-137r51,0r0,236r-55,0r-72,-147r-2,0r0,147r-50,0r0,-236r59,0r67,137r2,0xm382,-250r53,0r0,195r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a5":{"d":"283,-112r0,-137r50,0r0,236r-54,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm357,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r96,0r0,42r-154,0r0,-39xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a6":{"d":"310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32xm439,-14r-53,0r0,-194r-51,0r0,-42r156,0r0,42r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a7":{"d":"315,-180v0,58,-38,77,-98,74r0,92r-52,0r0,-236v75,-1,150,-9,150,70xm263,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-4,46,-32xm355,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a8":{"d":"310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32xm398,-120v-4,32,0,72,-1,107r-53,0r0,-236r53,0r1,100r69,-100r60,0r-82,112r82,124r-63,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a9":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm459,-147v70,35,38,152,-50,138v-26,-4,-50,-5,-68,-14r13,-38v31,12,104,22,88,-32v-30,-36,-103,-21,-103,-94v0,-72,94,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,31,66,41xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32"},"\ue4aa":{"d":"301,-180v0,58,-39,77,-98,74r0,92r-53,0r0,-236v75,-1,151,-10,151,70xm249,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-4,46,-32xm449,-116r-66,0r0,103r-52,0r0,-237r52,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ab":{"d":"304,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm206,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm506,-132v0,71,-20,123,-89,123v-71,0,-91,-53,-91,-123v0,-70,21,-122,91,-122v69,0,89,53,89,122xm450,-132v0,-37,1,-79,-33,-79v-36,0,-35,41,-35,79v0,36,-2,80,35,80v34,0,33,-43,33,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ac":{"d":"297,-181v-1,37,-18,59,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,152,-9,150,68xm199,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm420,-51v23,0,32,-14,33,-36r0,-162r53,0r0,167v-1,51,-34,72,-86,73v-52,1,-82,-25,-82,-73r0,-167r53,0r0,162v0,23,7,36,29,36xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ad":{"d":"291,-147v70,35,37,152,-50,138v-25,-4,-51,-4,-67,-14r12,-38v31,12,103,22,87,-32v-28,-36,-102,-21,-102,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-80,-23,-80,15v0,32,45,31,65,41xm383,-249r52,0r0,236r-52,0r0,-236xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ae":{"d":"281,-147v70,36,38,151,-50,138v-25,-4,-51,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41xm348,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4af":{"d":"280,-147v70,36,37,151,-50,138v-25,-4,-51,-5,-68,-14r13,-38v30,13,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,45,30,66,41xm393,-120r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r69,-100r59,0r-81,112r82,124r-64,0v-23,-35,-41,-75,-67,-107xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b0":{"d":"268,-147v70,35,37,152,-50,138v-25,-4,-50,-5,-68,-14r13,-38v31,12,104,22,88,-32v-30,-36,-103,-21,-103,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-80,-22,-80,15v0,32,45,31,65,41xm442,-9v-85,6,-107,-47,-110,-125v-4,-94,79,-149,162,-105r-14,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160r19,-4r0,-55r-19,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b1":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm390,-67r-12,54r-55,0r66,-236r61,0r67,236r-54,0r-13,-54r-60,0xm271,-147v70,36,37,152,-51,138v-25,-4,-50,-4,-67,-14r13,-38v30,13,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,45,30,66,41xm441,-107v-9,-29,-11,-66,-23,-92r-19,92r42,0"},"\ue4b2":{"d":"255,-13r-53,0r0,-194r-50,0r0,-43r155,0r0,43r-52,0r0,194xm490,-181v-1,37,-18,58,-46,68r22,17r34,83r-53,0r-35,-95r-20,0r0,95r-53,0r0,-236v75,-1,154,-9,151,68xm392,-149v27,1,45,-3,45,-31v0,-26,-19,-31,-45,-29r0,60xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b3":{"d":"243,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm439,-116r-66,0r0,103r-53,0r0,-237r53,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b4":{"d":"218,-51v23,0,32,-14,33,-36r0,-162r52,0r0,167v-1,51,-33,72,-85,73v-52,1,-82,-25,-82,-73r0,-167r52,0r0,162v1,22,7,35,30,36xm436,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm386,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b5":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm227,-51v24,0,33,-13,34,-36r0,-162r52,0r0,167v-1,51,-34,72,-86,73v-52,1,-81,-26,-81,-73r0,-167r52,0r0,162v0,23,7,36,29,36xm467,-147v70,36,38,152,-50,138v-26,-4,-50,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-21,-102,-94v0,-72,94,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41"},"\ue4b6":{"d":"274,-249r53,0r-64,236r-64,0r-63,-236r54,0r41,188r2,0xm348,-250r140,0r0,43r-87,0r0,50r76,0r0,41r-76,0r0,61r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b7":{"d":"348,-250r140,0r0,43r-87,0r0,50r76,0r0,41r-76,0r0,61r87,0r0,42r-140,0r0,-237xm237,-153r39,-96r55,0r-70,144r0,92r-53,0r0,-91r-68,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b8":{"d":"145,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r97,0r0,42r-155,0r0,-39xm428,-107r-20,-92r-3,0r-19,92r42,0xm377,-67r-12,54r-55,0r66,-236r61,0r67,236r-55,0r-12,-54r-60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue360":{"d":"143,-101v-27,4,-21,-25,-30,-39r-81,0r-15,39r-15,0r64,-163r13,0xm72,-248r-36,96r72,0","w":145},"\ue361":{"d":"107,-185v18,4,29,20,29,40v0,53,-64,44,-117,44r0,-163v51,0,114,-8,113,42v-1,17,-8,31,-25,37xm122,-146v0,-39,-49,-34,-90,-33r0,66v40,0,90,8,90,-33xm118,-222v0,-37,-48,-31,-86,-31r0,62v39,0,86,7,86,-31","w":145},"\ue362":{"d":"138,-185v0,55,-16,85,-66,84r-53,0r0,-163r56,0v47,0,63,29,63,79xm33,-113v51,3,91,-2,91,-52v0,-49,-2,-90,-51,-87r-40,0r0,139","w":150},"\ue363":{"d":"19,-101r0,-163r106,0r0,12r-92,0r0,62r79,0r0,12r-79,0r0,65r92,0r0,12r-106,0","w":131},"\ue364":{"d":"122,-101r0,-77r-90,0r0,77r-13,0r0,-163r13,0r0,74r90,0r0,-74r14,0r0,163r-14,0","w":155},"\ue365":{"d":"19,-101r0,-163r14,0r0,163r-14,0","w":52},"\ue366":{"d":"19,-101r0,-163r13,0r0,151r93,0r0,12r-106,0","w":131},"\ue367":{"d":"154,-235r-55,109r-12,0r-55,-109r0,134r-13,0r0,-163r13,0r62,120r61,-120r12,0r0,163r-13,0r0,-134","w":184},"\ue368":{"d":"145,-101v-24,2,-22,-19,-34,-30r-78,-111r0,141r-14,0r0,-163r13,0r100,141r0,-141r13,0r0,163","w":164},"\ue369":{"d":"10,-159v-3,-60,4,-107,61,-107v55,0,60,48,60,107v0,36,-23,61,-60,60v-39,-1,-59,-22,-61,-60xm117,-160v0,-48,1,-93,-46,-93v-49,0,-49,45,-47,94v1,29,18,46,47,47v28,1,46,-20,46,-48","w":141},"\ue36a":{"d":"137,-221v-1,25,-17,41,-41,44r38,76r-17,0r-36,-75r-48,0r0,75r-14,0r0,-163v0,0,119,-10,118,43xm33,-188v41,0,89,7,89,-33v0,-41,-50,-31,-89,-32r0,65","w":145},"\ue36b":{"d":"26,-221v5,51,101,16,101,77v0,53,-87,53,-120,27r8,-10v26,19,98,26,98,-17v0,-54,-101,-16,-101,-77v0,-48,71,-55,106,-32r-7,11v-26,-15,-89,-19,-85,21","w":135},"\ue36c":{"d":"67,-253r0,152r-14,0r0,-152r-52,0r0,-11r117,0r0,11r-51,0","w":118},"\ue36d":{"d":"143,-101v-27,4,-21,-25,-30,-39r-81,0r-15,39r-15,0r64,-163r13,0xm72,-248r-36,96r72,0","w":145},"\ue36e":{"d":"122,-101r0,-77r-90,0r0,77r-13,0r0,-163r13,0r0,74r90,0r0,-74r14,0r0,163r-14,0","w":155},"\ue36f":{"d":"145,-101v-24,2,-22,-19,-34,-30r-78,-111r0,141r-14,0r0,-163r13,0r100,141r0,-141r13,0r0,163","w":164},"\ue370":{"d":"10,-159v-3,-60,4,-107,61,-107v55,0,60,48,60,107v0,36,-23,61,-60,60v-39,-1,-59,-22,-61,-60xm117,-160v0,-48,1,-93,-46,-93v-49,0,-49,45,-47,94v1,29,18,46,47,47v28,1,46,-20,46,-48","w":141},"\ue371":{"d":"19,-264v56,-1,118,-8,117,48v-1,48,-52,48,-103,46r0,69r-14,0r0,-163xm33,-182v41,0,88,7,88,-35v0,-42,-47,-35,-88,-35r0,70","w":137},"\ue372":{"d":"7,-101r0,-11r46,-73r-45,-68r0,-11r103,0r0,11r-87,0r45,68r-45,72r90,0r0,12r-107,0","w":120},"\ue373":{"d":"66,-101r-13,0r0,-67r-53,-96v27,-4,24,26,35,38r24,45r44,-83r14,0r-51,96r0,67","w":118},"\ue37f":{"d":"320,1r-125,-126r125,-127r0,253xm185,1r-126,-126r126,-127r0,253xm54,1r-26,0r0,-253r26,0r0,253","w":360},"\ue380":{"d":"327,1r-25,0r0,-252r25,0r0,252xm297,-125r-126,126r0,-252xm161,-125r-126,126r0,-252","w":360},"\u0387":{"d":"21,-113r0,-23r21,0r0,23r-21,0","w":62},"\u01a0":{"d":"16,-89v-4,-87,2,-163,87,-163v25,0,45,9,58,20v22,0,27,-20,26,-45r15,0v2,30,-7,52,-30,57v23,28,17,82,17,131v0,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76","w":206,"k":{"J":14}},"\u01a1":{"d":"16,-90v0,-56,22,-87,73,-90v24,-1,41,9,53,21v23,0,30,-19,28,-45r15,0v1,31,-7,55,-35,58v22,57,12,153,-63,148v-52,-4,-72,-35,-71,-92xm144,-90v0,-47,-13,-76,-55,-76v-42,0,-57,31,-57,77v0,46,14,77,56,77v43,0,55,-31,56,-78","w":183},"\u01af":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,19v23,0,30,-19,28,-45r15,0v1,35,-9,58,-43,59r0,134v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237","w":229},"\u01b0":{"d":"202,-204v1,35,-8,59,-42,59r0,145r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,37,-121,-30r0,-120r16,0r0,115v-1,32,22,51,53,51v73,1,49,-97,53,-166r15,0r0,20v22,0,29,-19,27,-45r15,0","w":197},"\u2602":{"d":"262,-131v-14,-18,-50,-18,-64,0v-10,-15,-30,-17,-49,-9v-7,53,24,143,-36,143v-22,0,-37,-14,-35,-40r17,0v-7,26,33,33,35,11v4,-35,0,-77,1,-114v-17,-8,-39,-2,-49,9v-14,-18,-50,-18,-64,0v5,-67,53,-111,117,-120r0,-11r11,0r0,12v64,8,112,51,116,119xm263,-131r-1,0r1,0","w":280},"\ue3a4":{"d":"115,-138r-20,132r-57,0r-18,-132r95,0xm165,-133r54,6r-12,128r-19,-89r-49,91xm165,-138v-3,-52,-53,-61,-87,-81r114,15v10,18,22,37,27,59xm191,-234v0,10,-10,20,-21,20v-11,0,-20,-10,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21xm67,-191v8,7,22,4,31,-1v9,17,-13,19,-13,34v-12,-7,-26,3,-38,-8v8,-3,18,-16,20,-25","w":241},"\ue3c0":{"d":"30,-143v-15,0,-17,-27,-15,-39v71,-41,160,-74,245,-98v24,-7,23,18,25,36v-75,45,-161,79,-255,101xm294,-122v4,0,6,6,7,10v-2,35,4,77,-3,106v-63,28,-190,27,-252,0v-7,-30,-3,-78,-2,-112v61,-32,183,-27,250,-4xm271,-271v-71,38,-159,76,-250,97r7,24v86,-18,178,-59,251,-96xm261,-273v-78,24,-163,55,-232,91v85,-21,163,-57,232,-91xm292,-112v-60,19,-179,15,-241,0r0,100v61,25,181,24,241,1r0,-101xm60,-116v59,13,163,13,223,0v-58,-21,-167,-22,-223,0","w":321},"\ue3c1":{"d":"31,-142v-19,-1,-24,-43,-5,-46v74,-37,160,-74,247,-92v8,7,19,35,6,42v-76,41,-159,74,-248,96xm45,-117v61,-32,195,-30,255,1v1,33,4,80,-2,110v-62,29,-190,28,-252,1v-5,-32,-2,-78,-1,-112xm28,-149v85,-19,179,-58,251,-96r-8,-25v-71,37,-158,76,-250,96xm261,-272v-79,24,-162,57,-232,91v87,-21,161,-58,232,-91xm292,-111v-60,19,-178,15,-240,0r0,100v61,26,179,23,240,1r0,-101xm283,-115v-54,-23,-169,-22,-223,0v60,13,163,12,223,0xm90,-8r0,-67r-12,9v-2,-20,7,-26,27,-25r0,83r-15,0xm141,-78v-6,0,-11,5,-11,12r-15,-2v0,-28,53,-32,51,-1v-2,23,-22,30,-31,46r31,0r0,15r-51,0v0,-32,30,-34,36,-60v-1,-5,-2,-11,-10,-10xm246,-8r0,-46r-16,34r-12,0r-16,-34r0,46r-16,0r0,-83r15,0r23,52r23,-52r15,0r0,83r-16,0","w":321},"\ue3c2":{"d":"57,-127r82,56r0,71r-58,0r8,-39r-68,-83r18,-84r18,0r0,79xm230,-206r18,0r19,84r-68,83r8,39r-58,0r0,-71r81,-56r0,-79xm142,-176r0,92r-74,-44r0,-89xm142,-258r76,38r-74,40r-75,-40xm221,-217r0,89r-75,44r0,-92","w":286},"\ue44d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm269,-249r-41,188r-2,0r-40,-188r-55,0r64,236r63,0r64,-236r-53,0xm455,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r55,0r0,-236r-51,0v-2,44,4,97,-2,137"},"\ue4b9":{"d":"269,-249r53,0r-64,236r-63,0r-64,-236r55,0r40,188r2,0xm457,-112r0,-137r51,0r0,236r-55,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\u20ab":{"d":"84,-187v21,0,35,12,42,25r0,-46r-36,0r0,-12r36,0r0,-31r15,0r0,31r16,0r0,12r-16,0r0,162r-15,0r0,-23v-8,15,-23,23,-44,24v-43,1,-56,-30,-56,-71v0,-40,16,-71,58,-71xm85,-58v31,0,41,-26,41,-57v-1,-32,-9,-59,-41,-59v-32,0,-42,27,-43,58v0,32,9,59,43,58xm31,-21r117,0r0,14r-117,0r0,-14","w":168},"\u1f30":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm28,-210v11,-14,14,-43,-10,-46r8,-17v33,4,35,49,11,68","w":74},"\u1f31":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm54,-256v-23,4,-20,32,-9,46r-9,5v-13,-13,-27,-40,-10,-56v5,-5,13,-9,22,-12","w":74},"\u1f32":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm-6,-273v34,5,36,49,11,68r-9,-5v12,-19,15,-41,-9,-46xm68,-205r-41,-64r21,-4r30,64","w":74},"\u1f33":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm22,-257v-23,5,-21,28,-9,47r-9,4v-24,-18,-24,-63,11,-67xm68,-206r-40,-63r21,-4r29,63","w":74},"\u1f34":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm1,-273v34,4,36,48,12,68r-9,-5v10,-16,15,-43,-10,-46xm32,-209r32,-64r21,4r-44,64","w":74},"\u1f35":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm35,-256v-25,3,-20,31,-9,46r-9,5v-24,-17,-25,-64,11,-68xm35,-209r32,-64r21,4r-43,64","w":74},"\u1fd0":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm81,-243v0,52,-92,51,-91,0r14,0v3,33,61,36,63,0r14,0","w":74},"\u1fd1":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm-13,-210r0,-15r92,0r0,15r-92,0","w":74},"\u1fd2":{"d":"-13,-220r0,-19r19,0r0,19r-19,0xm66,-220r0,-19r20,0r0,19r-20,0xm6,-269r21,-4r29,64r-10,3xm42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146","w":74},"\u1fd3":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm66,-220r0,-19r19,0r0,19r-19,0xm-13,-220r0,-19r19,0r0,19r-19,0xm25,-206r-10,-3r33,-64r20,4","w":74},"\u00e3":{"d":"24,-159v35,-33,128,-32,128,34r0,125r-16,0v-1,-6,2,-15,-1,-19v-26,35,-122,30,-122,-30v0,-56,66,-52,123,-50v3,-44,-7,-69,-52,-67v-21,1,-38,5,-49,18xm78,-12v30,0,57,-8,58,-38r0,-35v-46,2,-109,-11,-108,36v0,26,22,37,50,37xm148,-235v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,17,99,-22","w":170},"\u00f1":{"d":"37,-148v24,-46,121,-43,121,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-53,94,-56,165r-15,0r0,-178r15,0r0,30xm141,-235v-8,12,-13,23,-30,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,17,99,-22","w":180},"\u00f5":{"d":"16,-90v0,-56,21,-90,74,-90v53,0,71,35,70,92v0,56,-21,90,-73,90v-52,0,-72,-35,-71,-92xm144,-88v0,-48,-12,-78,-55,-78v-42,0,-57,31,-57,77v0,46,14,77,56,77v40,0,56,-30,56,-76xm143,-235v-16,51,-76,-13,-99,22r-10,-6v21,-55,75,16,99,-22","w":176},"\u0128":{"d":"30,0r0,-251r16,0r0,251r-16,0xm94,-296v-12,35,-51,19,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-17,78,-8v11,-1,15,-6,21,-14","w":76},"\u0129":{"d":"41,0r0,-179r17,0r0,179r-17,0xm105,-235v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,16,99,-22","w":92},"\u015a":{"d":"162,-219v-38,-26,-127,-28,-124,34v4,80,143,16,143,119v0,82,-126,82,-173,41r10,-14v36,33,146,42,146,-27v0,-85,-139,-23,-143,-119v-4,-75,100,-82,150,-49xm71,-270r49,-39r12,13r-54,34","w":190},"\u015b":{"d":"132,-152v-29,-25,-118,-17,-94,36v28,29,109,4,109,68v0,63,-101,61,-139,29r9,-13v25,26,114,35,114,-17v0,-59,-113,-15,-113,-80v0,-58,86,-62,123,-35xm70,-207r28,-55r18,6r-36,53","w":160},"\u015c":{"d":"162,-219v-38,-26,-127,-28,-124,34v4,80,143,16,143,119v0,82,-126,82,-173,41r10,-14v36,33,146,42,146,-27v0,-85,-139,-23,-143,-119v-4,-75,100,-82,150,-49xm99,-293r-46,30r-7,-7r47,-40r14,0r45,39r-6,8","w":190},"\u015d":{"d":"132,-152v-29,-25,-118,-17,-94,36v28,29,109,4,109,68v0,63,-101,61,-139,29r9,-13v25,26,114,35,114,-17v0,-59,-113,-15,-113,-80v0,-58,86,-62,123,-35xm80,-235r-46,35r-7,-8r47,-44r13,0r46,44r-8,7","w":160},"\u015e":{"d":"162,-219v-38,-26,-127,-28,-124,34v4,80,143,16,143,119v0,44,-36,67,-82,68r-4,13v20,1,34,10,34,28v0,27,-36,31,-62,21r4,-9v16,8,45,8,45,-12v0,-16,-23,-15,-34,-21r7,-20v-33,-1,-60,-10,-81,-27r10,-14v36,33,146,42,146,-27v0,-85,-139,-23,-143,-119v-4,-75,100,-82,150,-49","w":190},"\u015f":{"d":"132,-152v-29,-25,-118,-17,-94,36v28,29,109,4,109,68v0,32,-29,50,-65,51r-4,12v19,2,34,9,34,28v0,27,-36,31,-62,21r4,-9v16,8,44,8,45,-12v1,-17,-22,-15,-33,-21r6,-20v-26,-1,-48,-8,-64,-21r9,-13v25,26,114,35,114,-17v0,-59,-113,-15,-113,-80v0,-58,86,-62,123,-35","w":160},"\u0169":{"d":"90,-13v75,0,52,-96,55,-166r15,0r0,179r-15,0v-1,-9,2,-22,-1,-29v-22,49,-121,38,-121,-29r0,-121r16,0v5,67,-23,166,51,166xm150,-235v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,16,99,-22","w":186},"\u0218":{"d":"162,-219v-38,-26,-127,-28,-124,34v4,80,143,16,143,119v0,82,-126,82,-173,41r10,-14v36,33,146,42,146,-27v0,-85,-139,-23,-143,-119v-4,-75,100,-82,150,-49xm94,85r-10,0r10,-33r-7,0r0,-24r22,0v3,27,-7,41,-15,57","w":190},"\u0219":{"d":"132,-152v-29,-25,-118,-17,-94,36v28,29,109,4,109,68v0,63,-101,61,-139,29r9,-13v25,26,114,35,114,-17v0,-59,-113,-15,-113,-80v0,-58,86,-62,123,-35xm77,85r-10,0r10,-33r-6,0r0,-24r21,0v3,27,-7,41,-15,57","w":160},"\u0405":{"d":"162,-219v-38,-26,-127,-28,-124,34v4,80,143,16,143,119v0,82,-126,82,-173,41r10,-14v36,33,146,42,146,-27v0,-85,-139,-23,-143,-119v-4,-75,100,-82,150,-49","w":190},"\u040c":{"d":"28,0r0,-250r16,0r0,113v47,-1,93,7,108,-38r24,-75r17,0v-18,41,-19,101,-59,119v48,17,43,86,63,131r-18,0v-19,-45,-11,-122,-70,-122r-65,0r0,122r-16,0xm90,-270r49,-39r12,13r-54,34","w":204},"\u0455":{"d":"132,-152v-29,-25,-118,-17,-94,36v28,29,109,4,109,68v0,63,-101,61,-139,29r9,-13v25,26,114,35,114,-17v0,-59,-113,-15,-113,-80v0,-58,86,-62,123,-35","w":160},"\u045c":{"d":"69,-207r29,-55r17,6r-36,53xm23,0r0,-178r16,0r0,81v36,-2,72,8,83,-27r17,-54r15,0v-12,30,-13,73,-42,85v34,11,31,61,45,93r-16,0v-14,-31,-8,-85,-51,-84r-51,0r0,84r-16,0","w":168},"\u1f06":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm81,-198v11,-14,14,-38,-9,-41r6,-14v37,5,31,40,11,58xm144,-283v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-5v18,-39,49,-17,79,-9v11,-1,14,-6,20,-14","w":180},"\u1f07":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm108,-239v-23,5,-21,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,10,-21,28,-25xm148,-283v-16,51,-76,-13,-99,22r-10,-5v18,-38,48,-18,78,-9v11,-1,15,-6,21,-14","w":180},"\u1f0e":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm51,-243v-12,35,-50,18,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14xm-12,-158v12,-13,16,-38,-8,-41r6,-15v37,6,32,42,10,59","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0f":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm54,-244v-8,12,-15,23,-31,24v-23,-5,-54,-28,-69,-1r-10,-6v18,-38,50,-18,79,-8v10,-2,14,-7,20,-15xm14,-199v-25,4,-22,22,-9,41v-16,5,-26,-17,-26,-30v0,-13,10,-22,28,-26","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f26":{"d":"39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30xm76,-198v12,-13,16,-38,-8,-41r6,-14v38,5,31,41,10,58xm139,-283v-8,12,-13,23,-30,23v-24,0,-53,-28,-69,-1r-10,-5v20,-55,75,15,99,-23","w":182},"\u1f27":{"d":"39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30xm103,-238v-23,5,-21,23,-8,41v-15,8,-26,-17,-26,-30v0,-13,10,-22,28,-26xm143,-283v-8,13,-14,23,-30,24v-23,-4,-54,-29,-69,-1r-10,-6v17,-37,51,-19,78,-8v11,-1,15,-7,21,-15","w":182},"\u1f2e":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-56,-158v10,-14,17,-39,-9,-41r7,-15v37,5,30,41,10,58xm7,-244v-8,12,-15,23,-31,24v-23,-5,-54,-28,-69,-1r-10,-6v18,-38,50,-19,79,-8v10,-2,14,-7,20,-15","w":225},"\u1f2f":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-34,-199v-24,4,-20,23,-8,41v-16,5,-26,-17,-26,-30v0,-13,10,-22,28,-26xm6,-244v-8,13,-14,23,-30,24v-23,-4,-54,-29,-69,-1r-10,-6v18,-38,50,-18,78,-8v11,-1,15,-7,21,-15","w":225},"\u1f36":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm29,-198v11,-14,16,-38,-9,-41r7,-14v37,5,30,41,10,58xm92,-283v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-5v18,-38,49,-18,79,-9v11,-1,14,-6,20,-14","w":74},"\u1f37":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm53,-239v-23,5,-21,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,9,-21,27,-25xm93,-283v-8,12,-14,23,-31,23v-24,0,-53,-28,-68,-1r-11,-5v18,-38,49,-18,79,-9v11,-1,14,-6,20,-14","w":74},"\u1f3e":{"d":"30,0r0,-251r16,0r0,251r-16,0xm-51,-158v11,-14,14,-38,-9,-41r6,-15v37,6,32,42,10,59xm12,-243v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14","w":76},"\u1f3f":{"d":"30,0r0,-251r16,0r0,251r-16,0xm-31,-199v-23,5,-21,23,-8,41v-15,8,-26,-17,-26,-30v0,-13,10,-22,28,-26xm9,-243v-12,35,-50,18,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-18,78,-8v11,0,15,-6,21,-14","w":76},"\u1f56":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm83,-198v11,-14,16,-38,-8,-41r6,-14v38,5,31,41,10,58xm146,-283v-16,51,-76,-13,-99,22r-10,-5v20,-55,75,15,99,-23","w":187},"\u1f57":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm107,-239v-23,5,-21,23,-8,42v-17,5,-26,-18,-26,-31v0,-13,10,-21,28,-25xm147,-283v-16,51,-76,-13,-99,22r-10,-5v20,-55,75,15,99,-23","w":187},"\u1f5f":{"d":"93,0r-16,0r0,-104r-75,-147v30,-4,24,22,37,39r46,93r66,-132r17,0r-75,147r0,104xm-8,-244v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-6v21,-55,76,17,99,-22xm-48,-200v-24,5,-22,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,9,-22,27,-26","w":171,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03b6":18,"\u03c7":18,"\u03b8":14,"\u03c4":22,"\u03c1":25,"\u03c0":22,"\u03b3":18,"\u03b4":11,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03c6":22,"\u03bf":22,"\u03ce":22,"\u03c3":22,"\u03c9":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f66":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120xm125,-198v11,-14,16,-38,-8,-41r6,-14v38,5,31,41,10,58xm188,-283v-16,51,-76,-13,-99,22r-10,-5v20,-55,75,15,99,-23","w":265},"\u1f67":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120xm146,-239v-24,5,-22,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,9,-21,27,-25xm186,-283v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-5v18,-38,49,-18,79,-9v11,-1,14,-6,20,-14","w":265},"\u1f6e":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-54,-158v11,-14,16,-38,-9,-41r7,-14v38,5,31,41,10,58xm9,-243v-16,51,-76,-13,-99,22r-10,-5v18,-38,49,-18,78,-9v11,-1,15,-6,21,-14","w":203},"\u1f6f":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-33,-199v-23,5,-21,23,-8,41v-15,8,-26,-17,-26,-30v0,-13,10,-22,28,-26xm7,-243v-12,35,-50,19,-76,8v-12,1,-15,6,-23,14r-10,-6v21,-55,76,16,99,-22","w":203},"\u1f86":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm85,-198v11,-14,16,-38,-9,-41r7,-14v38,5,31,41,10,58xm148,-283v-16,51,-76,-13,-99,22r-10,-5v18,-38,48,-18,78,-9v11,-1,15,-6,21,-14xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":180},"\u1f87":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm108,-239v-23,5,-21,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,10,-21,28,-25xm148,-283v-16,51,-76,-13,-99,22r-10,-5v18,-38,48,-18,78,-9v11,-1,15,-6,21,-14xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":180},"\u1f8e":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm49,-243v-12,35,-50,18,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-18,78,-8v11,0,15,-6,21,-14xm-14,-158v12,-13,16,-38,-8,-41r6,-15v37,6,32,42,10,59","w":288},"\u1f8f":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm48,-244v-8,12,-15,23,-31,24v-23,-5,-54,-28,-69,-1r-10,-6v18,-38,50,-18,79,-8v10,-2,14,-7,20,-15xm8,-199v-25,4,-22,22,-9,41v-16,5,-26,-17,-26,-30v0,-13,10,-22,28,-26","w":288},"\u1f96":{"d":"39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30xm77,-198v11,-14,16,-38,-9,-41r7,-14v38,5,31,41,10,58xm140,-283v-16,51,-76,-13,-99,22r-10,-5v20,-55,75,16,99,-23xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":182},"\u1f97":{"d":"39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30xm108,-238v-23,5,-23,22,-9,41v-15,8,-26,-17,-26,-30v0,-13,10,-22,28,-26xm148,-283v-8,12,-15,23,-31,24v-23,-5,-54,-28,-69,-1r-10,-6v17,-37,51,-18,79,-8v10,-2,14,-7,20,-15xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":182},"\u1f9e":{"d":"259,-53v-2,25,3,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-55,-158v10,-14,17,-39,-9,-41r7,-15v36,4,31,42,10,58xm8,-244v-8,13,-14,23,-31,24v-23,-5,-53,-28,-68,-1r-11,-6v18,-38,50,-19,79,-8v10,-2,14,-7,20,-15","w":297},"\u1f9f":{"d":"259,-53v-2,25,3,42,30,39r0,14v-29,2,-47,-9,-46,-37r0,-142r16,0r0,126xm180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-35,-199v-25,4,-22,22,-9,41v-16,5,-24,-16,-25,-30v0,-13,9,-22,27,-26xm5,-244v-8,12,-15,23,-31,24v-23,-5,-54,-28,-69,-1r-10,-6v18,-38,50,-18,79,-8v10,-2,14,-7,20,-15","w":297},"\u1fa6":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120xm125,-198v11,-14,16,-38,-8,-41r6,-14v38,5,31,41,10,58xm188,-283v-16,51,-76,-13,-99,22r-10,-5v20,-55,75,15,99,-23xm169,92v-42,5,-46,-27,-43,-68r15,0v0,28,-5,58,28,54r0,14","w":265},"\u1fa7":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120xm146,-239v-24,5,-22,23,-9,42v-16,5,-25,-18,-25,-31v0,-13,9,-21,27,-25xm186,-283v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-5v18,-38,49,-18,79,-9v11,-1,14,-6,20,-14xm169,92v-42,5,-46,-27,-43,-68r15,0v0,28,-5,58,28,54r0,14","w":265},"\u1fae":{"d":"249,-53v-2,25,5,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-58,-158v11,-14,14,-38,-9,-41r7,-14v37,5,30,41,10,58xm5,-243v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-5v18,-38,50,-18,79,-9v11,-1,14,-6,20,-14","w":288},"\u1faf":{"d":"249,-53v-1,25,4,42,31,39r0,14v-29,2,-47,-9,-47,-37r0,-142r16,0r0,126xm32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-33,-199v-23,5,-21,23,-8,41v-15,8,-26,-17,-26,-30v0,-13,10,-22,28,-26xm7,-243v-12,35,-50,19,-76,8v-12,1,-15,6,-23,14r-10,-6v21,-55,76,16,99,-22","w":288},"\u1fb6":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm147,-237v-8,12,-14,23,-31,23v-25,0,-52,-29,-68,-1r-11,-6v18,-37,51,-18,79,-8v11,-1,14,-6,20,-14","w":180},"\u1fb7":{"d":"87,2v-50,-1,-66,-39,-67,-89v0,-53,16,-94,68,-94v28,0,43,13,54,33r0,-31r16,0r0,179r-16,0v-1,-10,2,-25,-1,-33v-10,18,-26,35,-54,35xm90,-166v-43,0,-54,36,-54,77v0,42,12,76,54,76v41,0,52,-36,52,-77v0,-40,-10,-76,-52,-76xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14xm145,-237v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14","w":180},"\u1fc6":{"d":"142,-237v-8,12,-14,23,-31,23v-25,0,-52,-28,-69,-1r-10,-6v18,-37,51,-18,79,-8v11,-1,14,-6,20,-14xm39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30","w":182},"\u1fc7":{"d":"143,-237v-12,35,-50,19,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-18,78,-8v11,0,15,-6,21,-14xm39,-148v22,-48,120,-42,120,28r0,120r-15,0v-6,-66,24,-165,-50,-165v-74,0,-52,95,-55,165r-16,0r0,-178r16,0r0,30xm129,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":182},"\u1fd6":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm90,-237v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14","w":74},"\u1fd7":{"d":"42,-32v0,14,5,19,18,19v-1,5,3,16,-5,14v-22,0,-29,-11,-28,-33r0,-146r15,0r0,146xm51,-191r0,-20r20,0r0,20r-20,0xm-4,-191r0,-20r20,0r0,20r-20,0xm88,-251v-16,51,-76,-13,-99,22r-10,-5v20,-55,75,15,99,-23","w":74},"\u1fe6":{"d":"148,-237v-12,35,-51,19,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-17,78,-8v11,-1,15,-6,21,-14xm94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166","w":187},"\u1fe7":{"d":"94,-12v74,0,49,-98,53,-166r16,0r0,114v1,43,-28,67,-69,67v-41,0,-67,-23,-68,-66r0,-115r15,0v4,69,-20,166,53,166xm112,-190r0,-20r19,0r0,20r-19,0xm57,-190r0,-20r19,0r0,20r-19,0xm149,-250v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v21,-55,76,17,99,-22","w":187},"\u1ff6":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120xm185,-237v-12,35,-50,18,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-18,78,-8v11,0,15,-6,21,-14","w":265},"\u1ff7":{"d":"186,-13v66,0,64,-145,6,-152r3,-14v41,6,56,41,56,90v-1,51,-15,91,-65,91v-28,0,-46,-15,-54,-37v-10,22,-24,37,-52,37v-74,0,-76,-104,-51,-153v9,-16,24,-25,43,-28r3,15v-61,6,-62,153,5,152v53,-1,44,-67,44,-121r16,0v1,54,-11,120,46,120xm170,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14xm187,-237v-8,12,-14,23,-31,23v-25,0,-52,-28,-69,-1r-10,-6v18,-37,51,-18,79,-8v11,-1,14,-6,20,-14","w":265},"\ue252":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm46,-243v-12,35,-50,18,-76,8v-12,1,-15,6,-23,14r-10,-6v18,-37,50,-18,78,-8v11,0,15,-6,21,-14xm140,92v-42,5,-46,-27,-43,-68r15,0v0,28,-4,58,28,54r0,14xm-17,-158v12,-13,16,-38,-8,-41r6,-15v37,6,32,42,10,59","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue253":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm49,-244v-8,13,-14,23,-31,24v-23,-5,-53,-28,-68,-1r-10,-6v18,-38,50,-18,78,-8v10,-2,15,-7,21,-15xm140,92v-42,5,-46,-27,-43,-68r15,0v0,28,-4,58,28,54r0,14xm9,-199v-23,4,-21,22,-9,41v-16,5,-25,-17,-25,-30v0,-13,10,-22,28,-26","w":210,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue25a":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-62,-158v11,-13,17,-39,-8,-41r6,-15v38,5,32,42,10,58xm1,-244v-8,13,-14,23,-30,24v-23,-5,-54,-28,-69,-1r-10,-6v17,-38,50,-19,78,-8v11,-1,15,-7,21,-15xm147,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":225},"\ue25b":{"d":"180,0r0,-120r-135,0r0,120r-17,0r0,-251r17,0r0,116r135,0r0,-116r17,0r0,251r-17,0xm-39,-199v-25,4,-22,22,-9,41v-16,5,-25,-17,-25,-30v0,-13,9,-22,27,-26xm1,-244v-8,12,-15,23,-31,24v-23,-5,-54,-28,-69,-1r-10,-6v18,-38,50,-18,79,-8v10,-2,14,-7,20,-15xm147,92v-42,5,-46,-27,-43,-68r16,0v0,0,-6,58,27,54r0,14","w":225},"\ue262":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-58,-158v11,-14,14,-38,-9,-41r7,-14v37,5,30,41,10,58xm5,-243v-8,12,-14,23,-31,23v-24,0,-53,-27,-69,-1r-10,-5v18,-38,50,-18,79,-9v11,-1,14,-6,20,-14xm140,92v-42,5,-46,-27,-43,-68r15,0v0,28,-4,58,28,54r0,14","w":203},"\ue263":{"d":"32,-162v-2,65,-4,130,46,144r0,18r-68,0r0,-15r43,0v-42,-18,-40,-86,-38,-148v2,-54,31,-88,87,-89v82,-2,85,73,85,159v0,37,-17,65,-36,78r42,0r0,15r-69,0r0,-18v50,-13,48,-79,46,-144v-2,-44,-23,-75,-68,-75v-46,0,-69,29,-70,75xm-33,-199v-23,5,-21,23,-8,41v-15,8,-26,-17,-26,-30v0,-13,10,-22,28,-26xm7,-243v-12,35,-50,19,-76,8v-12,1,-15,6,-23,14r-10,-6v21,-55,76,16,99,-22xm140,92v-42,5,-46,-27,-43,-68r15,0v0,28,-4,58,28,54r0,14","w":203},"\u00d5":{"d":"16,-89v-4,-87,2,-163,87,-163v84,0,90,76,86,163v-2,57,-30,92,-86,92v-57,0,-85,-35,-87,-92xm171,-89v3,-74,4,-148,-68,-148v-73,0,-74,74,-70,149v2,44,24,75,70,75v45,0,67,-30,68,-76xm157,-296v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14","w":205,"k":{"J":14}},"\u00d1":{"d":"193,0r-147,-222r0,222r-17,0r0,-251r17,0r148,223r0,-223r16,0r0,251r-17,0xm177,-296v-8,12,-14,23,-31,23v-25,0,-53,-28,-69,-1r-10,-6v18,-38,51,-17,79,-8v11,-1,14,-6,20,-14","w":238},"\u00c3":{"d":"165,-61r-120,0r-22,61r-18,0r91,-251r18,0r91,251r-18,0xm105,-230r-55,154r110,0xm160,-296v-12,35,-50,19,-76,8v-12,1,-15,6,-23,14r-10,-6v21,-55,76,16,99,-22","w":210,"k":{"'":7}},"\u0168":{"d":"109,-14v102,1,61,-143,69,-237r17,0r0,167v-1,55,-33,86,-86,86v-55,0,-86,-35,-86,-88r0,-165r17,0v7,95,-31,236,69,237xm165,-296v-12,35,-50,19,-76,8v-12,1,-15,6,-23,14r-10,-6v21,-55,76,16,99,-22","w":218},"\u0409":{"d":"319,-69v3,80,-89,70,-168,69r0,-236r-84,0v-4,94,21,213,-58,241r-6,-15v69,-26,42,-150,47,-241r118,0r0,115r77,0v45,1,72,25,74,67xm168,-15v62,0,134,10,133,-54v-1,-60,-71,-53,-133,-52r0,106","w":327,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u041b":{"d":"2,-10v68,-27,42,-149,47,-241r146,0r0,251r-18,0r0,-235r-111,0r0,119v0,63,-13,105,-58,121v-3,-5,-5,-10,-6,-15","w":225},"\u043b":{"d":"2,-8v50,-19,34,-102,37,-170r115,0r0,178r-16,0r0,-165r-83,0v-1,71,9,151,-48,170","w":179},"\u0459":{"d":"4,-9v51,-18,34,-102,37,-169r97,0r0,75v57,-2,118,-5,119,50v1,63,-73,53,-135,53r0,-165r-65,0v-1,71,9,151,-48,170xm138,-14v46,-1,104,10,103,-38v-1,-45,-57,-37,-103,-37r0,75","w":263},"\ue29a":{"d":"249,-51v-2,24,4,39,29,37v0,7,3,17,-7,14v-24,0,-39,-12,-38,-37r0,-142r16,0r0,128","w":293},"\ue071":{"d":"60,-220v35,0,51,24,49,63r-86,0v-6,41,42,59,69,36r8,9v-34,29,-90,8,-90,-47v0,-38,16,-61,50,-61xm96,-167v4,-38,-40,-53,-62,-30v-6,7,-10,18,-11,30r73,0xm63,-231r-29,-44r15,-5r24,45","w":117},"\ue26a":{"d":"27,-251r17,0r0,117v45,4,77,-5,83,-45v6,-36,11,-78,61,-73v0,7,3,17,-7,14v-56,4,-17,97,-76,112v61,7,15,111,87,114v0,7,3,17,-7,14v-85,1,-13,-143,-141,-122r0,120r-17,0r0,-251xm77,-270r49,-39r13,13r-55,34","w":196},"\ue26b":{"d":"138,-134r0,-117r17,0r0,117v78,14,64,-63,92,-106v7,-11,21,-13,40,-12v0,7,3,17,-7,14v-56,4,-17,97,-76,112v61,7,14,111,87,114r0,14v-93,12,-18,-132,-136,-122r0,120r-17,0r0,-120v-80,-16,-67,70,-96,110v-8,9,-22,13,-40,12v1,-6,-3,-17,6,-14v59,-5,21,-100,81,-115v-48,-8,-29,-83,-61,-108v-5,-4,-13,-3,-22,-3v-6,-17,13,-16,26,-11v52,20,4,130,106,115","w":294},"\ue26c":{"d":"27,-251r17,0r0,117v45,4,77,-5,83,-45v6,-36,11,-78,61,-73v0,7,3,17,-7,14v-56,4,-17,97,-76,112v61,7,15,111,87,114v0,7,3,17,-7,14v-85,1,-13,-143,-141,-122r0,120r-17,0r0,-251","w":196},"\ue26d":{"d":"22,-182v-1,-79,87,-70,166,-69r0,251r-17,0r0,-118v-51,-2,-97,-4,-103,49v-4,39,-14,76,-63,72v1,-7,-4,-19,7,-16v53,-4,24,-87,66,-107v-36,-5,-55,-25,-56,-62xm171,-236v-61,0,-132,-10,-132,53v0,63,73,48,132,50r0,-103","w":216},"\ue26e":{"d":"114,-84v-60,-11,-52,48,-75,79v-7,6,-19,9,-33,8v1,-5,-3,-15,4,-13v44,-2,19,-71,62,-80v-32,-9,-24,-56,-46,-75v-4,-3,-10,-2,-16,-2v1,-5,-3,-15,5,-13v63,-4,15,94,99,83r0,-81r16,0r0,81v58,11,51,-44,73,-74v6,-8,17,-10,32,-9v-1,5,3,15,-5,13v-40,3,-17,67,-57,77v41,8,16,78,65,80r0,13v-72,10,-18,-97,-108,-87r0,84r-16,0r0,-84","w":245},"\ue26f":{"d":"23,-178r16,0r0,81v52,10,63,-25,72,-63v7,-13,17,-22,39,-20v-1,5,3,15,-4,13v-40,3,-17,67,-57,77v42,7,15,79,65,80r0,13v-73,9,-17,-101,-115,-87r0,84r-16,0r0,-178","w":160},"\ue270":{"d":"61,-84v-27,-3,-43,-16,-44,-45v-2,-61,73,-48,133,-49r0,178r-15,0r0,-82v-36,-1,-73,-4,-79,32v-5,28,-12,57,-51,53v1,-5,-3,-15,4,-13v40,-2,22,-60,52,-74xm135,-165v-45,1,-103,-10,-103,36v0,45,60,30,103,33r0,-69","w":172},"\ue271":{"d":"23,-178r16,0r0,81v52,10,63,-25,72,-63v7,-13,17,-22,39,-20v-1,5,3,15,-4,13v-40,3,-17,67,-57,77v42,7,15,79,65,80r0,13v-73,9,-17,-101,-115,-87r0,84r-16,0r0,-178xm70,-207r28,-55r18,6r-36,53","w":160},"\ue374":{"d":"80,-273r-39,-23r10,-10r35,26xm19,-101r0,-163r106,0r0,12r-92,0r0,62r79,0r0,12r-79,0r0,65r92,0r0,12r-106,0","w":131},"\u0439":{"d":"62,-232v2,32,61,36,63,0r14,0v0,51,-92,50,-91,0r14,0xm149,0r0,-152r-112,152r-16,0r0,-178r16,0r0,154r114,-154r14,0r0,178r-16,0","w":185},"\u0419":{"d":"80,-297v2,32,61,36,63,0r14,0v0,52,-92,51,-91,0r14,0xm191,0r-1,-220r-148,220r-16,0r0,-251r16,0r1,223r149,-223r15,0r0,251r-16,0","w":231},"\u040e":{"d":"175,-251r-91,229v-10,19,-25,28,-56,25r0,-16v37,4,44,-19,54,-46r-76,-191r19,0r67,171r65,-172r18,0xm62,-299v3,32,62,36,64,0r14,0v0,43,-74,52,-88,14v-2,-5,-4,-9,-4,-14r14,0","w":178,"k":{"\u044f":18,"\u0447":18,"\u0431":14,"\u0414":29,"\u0445":14,"\u0430":22,"\u0424":7,"\u0410":25,",":25,".":25,"\u2026":25,"\u041e":4,"\u0421":4,"\u0404":4,"\u0435":22,"\u043e":22,"\u0441":22,"\u0451":22,"\u0444":22,"\u0454":22,"\u043a":25,"\u043f":25,"\u0440":25,"\u0456":25,"\u0457":25,"\u0432":25,"\u0433":25,"\u0438":25,"\u043c":25,"\u043d":25,"\u0446":25,"\u0448":25,"\u0449":25,"\u044c":25,"\u044e":25,"\u0453":25,"\u045a":25,"\u045f":25,"\u0491":25,"\u045c":25,"\u0439":25,"\u0443":14,"\u045e":14,"\u0434":32,"\u043b":32,"\u0459":32,"\u0437":14,"\u044d":14,"\u04d9":14,"\u044a":7,"\u0442":7}},"\u00a0":{"w":79,"k":{"\u0427":11}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2002, 2005 Parachute¨, www.parachute.gr.  All rights reserved.
 * 
 * Trademark:
 * Din Text is a trademark of Parachute¨
 * 
 * Description:
 * Based on DIN 1451 the German Industrial standard by the Deutsches Institut
 * Normung - (1936/1986)
 * 
 * Manufacturer:
 * Parachute¨ Worldwide
 * 
 * Designer:
 * Panos Vassiliou
 * 
 * Vendor URL:
 * http://www.parachute.gr
 * 
 * License information:
 * http://www.parachute.gr/support.aspx?Licensing=1
 */
Cufon.registerFont({"w":654,"face":{"font-family":"PF DinText Pro Light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","bbox":"-127 -330 632.729 94.7051","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB05"},"glyphs":{" ":{"w":80,"k":{"\u0427":11}},"\ue1f8":{"d":"136,26v0,31,-21,50,-56,47r0,-21v22,1,34,-7,34,-28r0,-183r-60,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-5,-52,8,-87,55,-85v23,0,40,8,53,22r-15,15v-17,-20,-73,-24,-70,16r0,32r82,0r0,205","w":163},"\ue1f9":{"d":"206,-226v-17,-21,-74,-24,-70,16r0,31r83,0r0,205v-1,31,-21,51,-57,47r0,-21v22,2,34,-6,34,-28r0,-183r-60,0r0,159r-22,0r0,-159r-60,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-13,-67,44,-93,94,-67v19,-25,79,-20,96,4xm114,-210v5,-23,-12,-22,-29,-24v-31,-2,-33,24,-31,55r60,0r0,-31","w":247},"\ufb00":{"d":"31,-179v-14,-66,42,-94,92,-69v10,-13,30,-17,54,-15r0,21v-43,-8,-44,23,-41,63r40,0r0,20r-40,0r0,159r-23,0r0,-159r-59,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0xm114,-228v-20,-13,-64,-10,-60,23r0,26r59,0","w":178},"\ufb01":{"d":"124,-227v-17,-20,-73,-24,-70,16r0,32r82,0r0,179r-22,0r0,-159r-60,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-5,-52,8,-87,55,-85v23,0,40,8,53,22","w":163},"\ufb02":{"d":"31,-211v-3,-56,64,-61,105,-41r0,210v0,16,11,22,29,21r0,21v-31,1,-52,-8,-52,-39r0,-198v-25,-10,-62,-7,-59,26r0,32r40,0r0,20r-40,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0r0,-32","w":171},"\ufb03":{"d":"206,-226v-17,-21,-74,-24,-70,16r0,31r83,0r0,179r-23,0r0,-159r-60,0r0,159r-22,0r0,-159r-60,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-13,-67,44,-93,94,-67v19,-25,79,-20,96,4xm114,-210v5,-23,-12,-22,-29,-24v-31,-2,-33,24,-31,55r60,0r0,-31","w":247},"\ufb04":{"d":"124,-247v19,-24,66,-18,95,-5r0,210v0,16,11,22,29,21r0,21v-31,1,-52,-8,-52,-39r0,-198v-25,-9,-63,-8,-60,25r0,33r40,0r0,20r-40,0r0,159r-22,0r0,-159r-60,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-13,-67,42,-93,93,-68xm115,-226v-20,-14,-66,-12,-61,23r0,24r60,0v0,-15,-1,-34,1,-47","w":254},"\ufb05":{"d":"172,0v-35,3,-58,-8,-58,-40r0,-119r-60,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-5,-53,6,-91,63,-83r0,21v-41,-7,-43,23,-40,62r60,0r0,-45r22,0r0,45r31,0r0,20r-31,0r0,113v-1,20,13,28,36,25r0,21","w":177},"\"":{"d":"60,-181r0,-70r18,0r0,70r-18,0xm22,-181r0,-70r18,0r0,70r-18,0","w":99},"#":{"d":"55,-79r-10,79r-18,0r12,-79r-35,0r0,-16r37,0r8,-61r-34,0r0,-16r36,0r11,-78r17,0r-11,78r46,0v5,-23,8,-54,11,-78r18,0r-11,78r36,0r0,16r-38,0r-9,61r37,0r0,16r-39,0r-10,79r-18,0r11,-79r-47,0xm104,-95r8,-61r-46,0r-8,61r46,0","w":174},"$":{"d":"95,-20v49,4,61,-74,15,-86v-8,-2,-8,-3,-15,-6r0,92xm81,-228v-45,-3,-58,72,-15,84v5,2,10,4,15,5r0,-89xm164,-66v-1,43,-28,64,-69,68r0,40r-14,0r0,-40v-29,-3,-53,-12,-71,-27r14,-18v14,12,34,22,57,24r0,-96v-34,-10,-66,-22,-66,-66v1,-43,27,-65,66,-69r0,-28r14,0r0,29v23,2,43,7,58,18r-12,20v-13,-8,-29,-15,-46,-17r0,93v38,9,70,21,69,69","w":174},"&":{"d":"26,-59v2,-40,24,-60,54,-80v-13,-19,-28,-31,-30,-60v-4,-61,83,-69,117,-34r-14,17v-25,-32,-101,-15,-75,32v24,42,60,84,87,120v7,-14,14,-29,16,-47r21,3v-4,25,-12,44,-23,62r36,46r-28,0r-23,-29v-32,44,-141,43,-138,-30xm49,-61v-2,55,81,49,102,15r-59,-77v-22,14,-42,31,-43,62","w":227},"'":{"d":"30,-181r0,-70r17,0r0,70r-17,0","w":77},"(":{"d":"84,43v-61,-53,-86,-196,-25,-272v9,-11,15,-22,24,-32r12,8v-26,37,-49,83,-49,142v0,62,22,108,49,146","w":99},")":{"d":"21,-261v48,48,84,153,43,236v-12,24,-28,50,-44,68r-12,-8v26,-36,50,-86,49,-146v0,-61,-23,-105,-49,-142","w":99},"*":{"d":"71,-207r41,-18r6,20r-42,12r28,33r-16,13r-24,-38r-23,38r-17,-13r28,-33r-42,-12r6,-20r41,18r-3,-44r20,0","w":126},"+":{"d":"96,-94r0,69r-18,0r0,-69r-68,0r0,-19r68,0r0,-68r18,0r0,68r68,0r0,19r-68,0","w":174},",":{"d":"19,38r11,-38r-8,0r0,-32r29,0v3,32,-8,50,-17,70r-15,0","w":76},"-":{"d":"19,-81r0,-21r99,0r0,21r-99,0","w":137,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},".":{"d":"23,0r0,-32r29,0r0,32r-29,0","w":73},"\/":{"d":"28,12r-19,0r111,-272r19,0","w":158},"0":{"d":"87,-253v41,0,67,26,68,69r0,117v-1,43,-26,69,-68,69v-42,0,-68,-27,-68,-69r0,-117v2,-42,27,-69,68,-69xm87,-20v68,0,41,-99,45,-162v2,-28,-17,-48,-45,-48v-68,0,-46,98,-46,161v0,28,17,50,46,49","w":174},"1":{"d":"103,0r-23,0r0,-226r-34,24r0,-25v17,-10,26,-28,57,-24r0,251","w":174,"k":{"\ue374":22,"\ue071":29,"\ue370":29,"\ue36c":22,"\ue36b":22,"\ue363":25,"\ue360":18,"\u00ba":29,"\u00aa":29,"\ue07e":25,"\ue07d":29,"\ue070":29,"\ue326":32,"\ue31e":25}},"4":{"d":"144,-39r0,39r-23,0r0,-39r-111,0r0,-22r88,-190r25,0r-88,190r86,0r0,-75r23,0r0,75r21,0r0,22r-21,0","w":174},"6":{"d":"66,-136v45,-21,93,11,91,61v-2,48,-25,75,-71,77v-56,2,-83,-64,-58,-114r70,-139r25,0xm88,-18v30,-1,46,-24,46,-54v0,-30,-16,-51,-46,-51v-31,0,-47,20,-47,51v0,30,17,54,47,54","w":174},"7":{"d":"67,0r-26,0r90,-228r-90,0r0,38r-22,0r0,-61r137,0r0,24","w":174},"8":{"d":"123,-129v23,9,38,29,38,60v0,45,-30,68,-74,71v-76,6,-98,-109,-34,-131v-21,-9,-34,-27,-34,-55v0,-42,26,-64,68,-68v71,-6,92,98,36,123xm139,-70v0,-31,-22,-50,-52,-50v-30,0,-51,20,-51,50v0,31,21,51,51,51v31,0,52,-20,52,-51xm134,-184v0,-29,-18,-47,-47,-47v-28,0,-46,19,-46,47v0,28,18,45,46,45v29,0,47,-16,47,-45","w":174},"9":{"d":"112,-116v-45,22,-95,-8,-93,-60v1,-48,25,-75,71,-76v58,-2,85,64,59,114r-71,138r-25,0xm88,-232v-30,1,-47,22,-47,53v0,31,16,52,47,52v30,0,46,-20,46,-52v1,-30,-17,-54,-46,-53","w":174},":":{"d":"22,0r0,-32r29,0r0,32r-29,0xm22,-108r0,-32r29,0r0,32r-29,0","w":74},";":{"d":"19,38r11,-38r-8,0r0,-32r29,0v3,32,-7,51,-17,70r-15,0xm22,-108r0,-31r29,0r0,31r-29,0","w":74},"<":{"d":"159,-26r-146,-69r0,-17r146,-69r0,20r-123,57r123,58r0,20","w":174},"=":{"d":"10,-126r0,-18r154,0r0,18r-154,0xm10,-59r0,-19r154,0r0,19r-154,0","w":174},">":{"d":"14,-26v-5,-29,17,-27,35,-36r87,-42r-122,-57r0,-20r145,69r0,17","w":174},"@":{"d":"90,-174v26,-26,100,-29,100,25v0,31,-12,82,21,82v35,0,43,-33,43,-72v0,-63,-42,-98,-104,-98v-71,0,-114,44,-117,116v-6,102,106,143,193,103r6,17v-22,9,-48,15,-78,15v-86,-2,-139,-49,-139,-135v0,-81,51,-133,134,-133v74,0,124,42,124,115v0,51,-17,86,-64,88v-17,0,-28,-10,-34,-21v-18,29,-92,26,-92,-20v0,-42,46,-41,89,-39v13,-49,-47,-54,-70,-31xm172,-116v-30,1,-72,-8,-72,23v1,16,14,24,33,24v30,0,43,-14,39,-47","w":288},"A":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0","w":213,"k":{"'":7}},"B":{"d":"153,-130v26,9,45,28,46,62v2,81,-92,68,-171,68r0,-251v76,0,165,-13,165,65v0,31,-16,47,-40,56xm169,-184v0,-52,-63,-46,-117,-45r0,90v54,1,117,8,117,-45xm174,-70v0,-57,-66,-48,-122,-48r0,96v56,0,122,10,122,-48","w":213},"C":{"d":"107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,3,-88,-75,-88,-163v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70","w":192},"E":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0","w":192},"F":{"d":"53,-228r0,92r111,0r0,21r-111,0r0,115r-25,0r0,-251r155,0r0,23r-130,0","w":185,"k":{"\ue116":4,"\ue110":4,"\ue0fe":14,"i":2,"a":7,"A":14,",":36,"\u00c3":14,"\ue179":4,"\ue167":4,"\ue166":4,"\ue165":4,"\ue11f":14,"\u0129":-13,"\u00e3":7,"\ue17d":4,"\ue175":14,"\ue172":4,"\ue13c":14,"\ue13b":14,"\ue13a":14,"\ue138":4,"\ue122":14,"\ue121":14,"\ue120":14,"\ue11e":14,"\ue11d":14,"\ue11c":14,"\ue11b":4,"\ue118":4,"\u012d":-13,"\u012b":-16,"\u01fd":7,"\u01fc":14,"\u0159":-5,"\u0157":2,"\u0155":2,"\u014b":2,"\u0149":-13,"\u0148":2,"\u0146":2,"\u0144":2,"\u0134":36,"\u0133":2,"\u012f":2,"\u0105":7,"\u0104":14,"\u0103":7,"\u0102":14,"\u0101":7,"\u0100":14,"\u00e5":7,"\u00ed":2,"\u00ec":-5,"\u00e1":7,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00e6":7,"\u00c6":14,"\u2026":36,"\u00ef":-16,"\u00ee":-13,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00c4":14,"r":2,"p":2,"n":2,"m":2,"J":36,".":36}},"G":{"d":"42,-160v-2,71,-4,143,65,141v47,-1,67,-37,63,-90r-55,0r0,-22r79,0v7,80,-17,133,-88,134v-84,1,-88,-75,-88,-164v0,-97,137,-123,168,-41r-23,10v-8,-21,-27,-38,-56,-37v-44,0,-63,28,-65,69","w":213},"H":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0","w":227},"I":{"d":"28,0r0,-251r25,0r0,251r-25,0","w":81},"J":{"d":"26,-37v30,32,90,14,90,-42r0,-172r24,0r0,177v9,75,-89,98,-132,53","w":164},"K":{"d":"202,-251r-80,98r93,153r-28,0r-80,-134r-55,66r0,68r-24,0r0,-251r24,0r1,148r121,-148r28,0","w":220,"k":{"v":7,"w":7,"y":7,"\u0175":7,"\u1e81":7,"\u1e83":7,"\u1e85":7,"\u1ef3":7,"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":4,"\ue114":4,"\ue171":4,"\ue17a":4,"\ue17b":4,"\ue17c":4,"\ue116":11,"\ue11b":11,"\ue138":11,"\ue172":11,"\ue17d":11}},"L":{"d":"28,0r0,-251r24,0r0,229r131,0r0,22r-155,0","w":192,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"M":{"d":"220,0r-1,-195r-72,157r-22,0r-73,-157r0,195r-24,0r0,-251r24,0r85,183r83,-183r24,0r0,251r-24,0","w":268},"N":{"d":"189,0r-136,-209r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,251r-24,0","w":240},"O":{"d":"17,-90v-4,-87,3,-162,88,-162v86,0,92,74,88,162v-2,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,6,-138,-63,-138v-69,0,-66,70,-64,139v2,42,21,70,64,70v41,0,63,-28,63,-71","w":209,"k":{"J":14}},"P":{"d":"28,-251v83,-2,173,-9,171,75v-1,70,-69,77,-146,72r0,104r-25,0r0,-251xm53,-127v57,1,120,8,120,-50v0,-60,-63,-51,-120,-51r0,101","w":203,"k":{"\ue0fe":18,"A":14,",":40,"\u00c3":14,"\ue11f":18,"\ue175":18,"\ue13c":18,"\ue13b":18,"\ue13a":18,"\ue122":18,"\ue121":18,"\ue120":18,"\ue11e":18,"\ue11d":18,"\ue11c":18,"\u01fc":14,"\u0104":14,"\u0102":14,"\u0100":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00c6":14,"\u2026":40,"\u00c4":14,".":40}},"Q":{"d":"18,-90v-4,-87,2,-162,87,-162v84,0,88,74,88,162v0,19,-5,36,-12,50r35,27v-8,5,-10,24,-20,12r-27,-22v-15,17,-37,25,-64,25v-58,0,-85,-36,-87,-92xm161,-56v14,-65,22,-173,-56,-173v-67,0,-63,69,-63,138v0,61,66,91,107,52v-11,-7,-26,-20,-36,-28r14,-17","w":213,"k":{"J":14}},"R":{"d":"200,-184v1,38,-27,62,-58,69r53,115r-27,0r-51,-113r-64,0r0,113r-25,0r0,-251v80,-1,172,-12,172,67xm53,-135v57,0,122,9,122,-49v0,-55,-66,-45,-122,-45r0,94","w":213},"S":{"d":"161,-211v-39,-32,-145,-21,-114,47v35,40,137,9,137,95v0,88,-132,84,-180,41r15,-20v32,32,140,46,140,-21v0,-77,-141,-24,-141,-115v0,-77,108,-84,157,-47","w":193},"T":{"d":"99,-229r0,229r-24,0r0,-229r-74,0r0,-22r171,0r0,22r-73,0","w":173,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,"\ue131":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"o":18,"\u00f0":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue11f":22,"\ue0ff":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue101":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18,"\ue16b":18}},"U":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230","w":220},"V":{"d":"96,-40r67,-211r26,0r-83,251r-20,0r-83,-251r26,0","w":192,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,"\ue131":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"o":11,"\u00f0":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue11f":18,"\ue0ff":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue101":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11,"\ue16b":11}},"W":{"d":"225,0r-22,0r-57,-207r-56,207r-22,0r-62,-251r26,0r48,207r56,-207r21,0r58,207r46,-207r26,0","w":293,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,"\ue131":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"o":11,"\u00f0":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue11f":18,"\ue0ff":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue101":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11,"\ue16b":11}},"X":{"d":"155,0r-63,-109r-63,109r-27,0r76,-129r-71,-122r27,0r58,103r58,-103r27,0r-72,122r77,129r-27,0","w":184},"Y":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103","w":177,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"Z":{"d":"12,0r0,-22r127,-207r-122,0r0,-22r150,0r0,20r-128,209r128,0r0,22r-155,0","w":178},"[":{"d":"27,39r0,-290r56,0r0,16r-35,0r0,257r35,0r0,17r-56,0","w":89},"\\":{"d":"-1,-261r18,0r91,276r-18,0","w":109},"]":{"d":"11,39r0,-17r34,0r0,-257r-34,0r0,-16r56,0r0,290r-56,0","w":89},"^":{"d":"12,-119r68,-131r17,0r67,131r-20,0r-56,-110r-55,110r-21,0","w":174},"_":{"d":"0,42r0,-17r179,0r0,17r-179,0","w":178},"`":{"d":"108,-201r-36,-57r23,-8r27,60","w":175},"a":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33","w":173},"b":{"d":"94,-180v51,0,64,40,65,89v1,53,-15,92,-66,93v-24,0,-40,-7,-51,-24r0,22r-23,0r0,-261r23,0r0,108v12,-18,30,-27,52,-27xm90,-18v39,1,46,-33,46,-71v0,-36,-9,-69,-47,-69v-38,0,-46,32,-47,69v0,38,10,70,48,71","w":173},"c":{"d":"33,-89v-8,62,63,89,98,53r15,15v-13,13,-30,23,-55,23v-53,-2,-77,-35,-81,-91v-5,-81,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52","w":152},"d":{"d":"84,-180v24,-1,37,11,48,23r0,-104r23,0r0,261r-23,0v-1,-7,2,-18,-1,-24v-13,17,-27,25,-51,26v-51,0,-66,-40,-66,-90v0,-50,17,-92,70,-92xm86,-20v37,-1,46,-33,46,-69v0,-37,-9,-68,-46,-69v-39,-1,-48,32,-48,69v0,36,8,70,48,69","w":173},"e":{"d":"89,-180v53,0,74,40,71,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v0,-55,23,-91,74,-91xm137,-102v7,-52,-53,-74,-84,-43v-9,10,-14,24,-15,43r99,0","w":173,"k":{"\u201d":7,"\u2019":7}},"f":{"d":"94,-241v-41,-7,-43,23,-40,62r40,0r0,20r-40,0r0,159r-23,0r0,-159r-22,0r0,-20r22,0v-5,-53,6,-91,63,-83r0,21","w":96,"k":{"\u2019":-7,"\u201d":-7}},"g":{"d":"83,-181v24,0,39,9,52,25r0,-23r22,0r1,177v6,70,-84,98,-129,55r15,-16v28,29,95,15,91,-35v-1,-8,2,-21,-1,-27v-11,16,-28,27,-52,27v-49,0,-65,-39,-65,-88v0,-52,15,-94,66,-95xm88,-159v-39,0,-48,33,-48,70v0,37,9,68,48,68v37,-1,47,-32,47,-69v0,-35,-10,-68,-47,-69","w":181},"h":{"d":"44,-152v27,-44,117,-35,117,33r0,119r-23,0v-7,-61,25,-159,-45,-158v-68,1,-46,93,-49,158r-22,0r0,-261r22,0r0,109","w":182},"i":{"d":"26,-227r0,-24r24,0r0,24r-24,0xm27,0r0,-179r23,0r0,179r-23,0","w":76},"j":{"d":"30,-227r0,-24r24,0r0,24r-24,0xm-3,53v23,2,33,-9,34,-29r0,-203r23,0r0,205v-2,32,-20,50,-57,47r0,-20","w":83},"k":{"d":"86,-96v-10,13,-28,29,-38,43r0,53r-23,0r0,-261r23,0r0,179r86,-97r27,0r-59,67r73,112r-27,0","w":177,"k":{"\u00f5":4,"\u01a1":4,"\u00f0":4,"o":4,"\u01ff":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0123":4,"\u0121":4,"\u011f":4,"\u011d":4,"\u011b":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u0111":4,"\u010f":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f3":4,"\u00f2":4,"\u00f8":4,"\u00f6":4,"\u00f4":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"q":4,"g":4,"e":4,"d":4,"c":4}},"l":{"d":"77,0v-31,1,-52,-8,-52,-39r0,-222r23,0r0,219v0,16,11,22,29,21r0,21","w":83},"m":{"d":"155,-149v24,-49,122,-39,122,30r0,119r-23,0v-7,-61,25,-158,-44,-158v-70,0,-45,94,-49,158r-23,0v-6,-63,23,-158,-45,-158v-68,0,-44,94,-48,158r-22,0r0,-179r22,0v1,8,-2,20,1,26v18,-41,97,-30,109,4","w":300},"n":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27","w":181,"k":{"\u201d":7,"\u2019":7}},"p":{"d":"92,2v-25,1,-38,-11,-49,-25r0,94r-22,0r0,-250r22,0v1,8,-2,20,1,26v11,-18,27,-27,52,-27v52,0,65,40,65,90v0,51,-16,92,-69,92xm91,-159v-38,0,-48,33,-48,70v0,37,9,69,47,69v38,-1,48,-31,47,-69v0,-38,-8,-70,-46,-70","w":178},"q":{"d":"85,2v-51,0,-66,-39,-66,-89v0,-53,16,-92,69,-93v23,1,40,10,48,27r0,-26r23,0r0,251r-23,0r0,-97v-12,14,-26,27,-51,27xm90,-160v-40,-1,-48,34,-48,71v0,37,9,70,48,69v37,-1,46,-32,46,-69v0,-36,-8,-71,-46,-71","w":181},"r":{"d":"48,-152v12,-24,50,-37,80,-22r-9,22v-32,-17,-71,4,-71,43r0,109r-23,0r0,-179r23,0r0,27","w":127,"k":{"o":11,"r":18,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u00f0":11,"\u01a1":11,"\u00f5":11}},"s":{"d":"131,-144v-24,-24,-109,-20,-87,28v28,26,104,3,105,65v1,64,-106,65,-142,29r14,-17v28,30,118,32,102,-25v-23,-31,-103,-2,-105,-63v-3,-60,89,-65,126,-35","w":162},"t":{"d":"57,-46v-3,23,12,27,35,25r0,21v-36,3,-59,-8,-59,-42r0,-117r-22,0r0,-20r22,0r0,-45r24,0r0,45r30,0r0,20r-30,0r0,113","w":100},"u":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160","w":185},"v":{"d":"28,-178r53,146r50,-146r25,0r-66,178r-21,0r-65,-178r24,0","w":159,"k":{"e":7}},"w":{"d":"185,-32v17,-46,28,-98,43,-146r25,0r-56,178r-23,0r-47,-145r-46,145r-22,0r-56,-178r24,0r44,144r46,-144r22,0","w":255,"k":{"e":7}},"x":{"d":"127,0r-46,-75r-46,75r-27,0r60,-91r-57,-88r27,0r43,72r44,-72r27,0r-57,88r60,91r-28,0","w":162},"y":{"d":"76,39v-9,26,-24,34,-56,33r0,-20v37,6,37,-29,47,-53r-66,-177r25,0r52,148r51,-148r24,0","w":154,"k":{"e":7}},"z":{"d":"12,0r0,-19r103,-139r-97,0r0,-21r123,0r0,20r-101,138r101,0r0,21r-129,0","w":154},"{":{"d":"29,-107v56,15,-11,132,57,130r0,15v-32,4,-51,-8,-51,-38v0,-40,9,-94,-27,-99r0,-14v61,-11,-18,-151,78,-138r0,16v-43,-8,-30,42,-31,79v-1,24,-11,41,-26,49","w":89},"|":{"d":"26,58r0,-316r18,0r0,316r-18,0","w":68},"}":{"d":"86,-99v-63,7,21,151,-79,137r0,-15v65,10,3,-112,57,-130v-30,-12,-25,-63,-25,-107v0,-16,-12,-24,-32,-21r0,-14v90,-23,20,117,79,136r0,14","w":89},"~":{"d":"162,-109v-11,16,-21,28,-44,29v-29,-7,-68,-38,-89,-4r-15,-10v12,-18,26,-28,43,-28v32,0,70,39,90,2","w":174},"\u00c4":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm125,-300r26,0r0,25r-26,0r0,-25xm61,-300r25,0r0,25r-25,0r0,-25","w":213,"k":{"'":7}},"\u00c7":{"d":"107,-21v30,0,49,-17,58,-39r22,10v-11,31,-38,52,-78,52r-4,13v20,1,35,11,35,29v0,30,-42,33,-67,22r4,-11v15,7,44,9,46,-11v1,-13,-16,-20,-29,-17v-9,-5,0,-17,1,-26v-76,-3,-76,-79,-76,-162v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70","w":192},"\u00c9":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm83,-276r51,-41r17,17r-58,36","w":192},"\u00d6":{"d":"123,-275r0,-26r26,0r0,26r-26,0xm59,-275r0,-26r26,0r0,26r-26,0xm17,-90v-4,-87,3,-162,88,-162v86,0,92,74,88,162v-2,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,6,-138,-63,-138v-69,0,-66,70,-64,139v2,42,21,70,64,70v41,0,63,-28,63,-71","w":209,"k":{"J":14}},"\u00dc":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm130,-275r0,-26r26,0r0,26r-26,0xm66,-275r0,-26r25,0r0,26r-25,0","w":220},"\u0385":{"d":"105,-215r0,-26r26,0r0,26r-26,0xm17,-215r0,-26r25,0r0,26r-25,0xm51,-206r27,-60r24,8r-36,57","w":151},"\u00e0":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm54,-258r23,-8r27,60r-14,5","w":173},"\u00e2":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm89,-236r-47,37r-11,-11r51,-50r16,0r48,50r-11,10","w":173},"\u00e4":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm111,-242r25,0r0,25r-25,0r0,-25xm45,-242r25,0r0,25r-25,0r0,-25","w":173},"\u0384":{"d":"72,-206r27,-60r23,8r-36,57","w":175},"\u00a8":{"d":"108,-217r0,-26r26,0r0,26r-26,0xm41,-217r0,-26r26,0r0,26r-26,0","w":175},"\u00e7":{"d":"33,-89v-8,62,63,89,98,53r15,16v-14,12,-31,22,-56,22r-4,13v20,1,35,11,35,29v0,30,-40,32,-67,23r4,-12v16,7,44,8,46,-11v2,-18,-25,-13,-34,-22r7,-21v-44,-7,-63,-39,-67,-90v-6,-80,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52","w":152},"\u00e9":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm74,-206r27,-60r24,8r-36,57","w":173,"k":{"\u201d":7,"\u2019":7}},"\u00e8":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm90,-201r-36,-57r23,-8r27,60","w":173,"k":{"\u201d":7,"\u2019":7}},"\u00ea":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm89,-237r-47,38r-11,-11r51,-50r16,0r49,49r-11,11","w":173,"k":{"\u201d":7,"\u2019":7}},"\u00eb":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm110,-217r0,-26r26,0r0,26r-26,0xm44,-217r0,-26r26,0r0,26r-26,0","w":173,"k":{"\u201d":7,"\u2019":7}},"\u00a3":{"d":"67,-107v-1,37,-7,62,-25,86r118,0r0,21r-146,0v-2,-29,16,-37,22,-58v5,-15,9,-31,9,-49r-31,0r0,-19r27,0v-5,-23,-16,-37,-17,-63v-5,-71,105,-82,134,-30r-20,13v-17,-35,-92,-35,-89,17v2,25,13,41,17,63r55,0r0,19r-54,0","w":174},"\u2122":{"d":"256,-108r-1,-101r-41,80r-14,0r-42,-80r0,101r-17,0r0,-142r17,0r50,97r48,-97r17,0r0,142r-17,0xm76,-234r0,125r-18,0r0,-125r-44,0r0,-17r106,0r0,17r-44,0","w":297},"\u00ee":{"d":"39,0r0,-178r24,0r0,178r-24,0xm51,-237r-47,38r-11,-11r50,-50r17,0r48,49r-11,11","w":101},"\u00ef":{"d":"27,0r0,-178r24,0r0,178r-24,0xm59,-217r0,-26r26,0r0,26r-26,0xm-7,-217r0,-26r26,0r0,26r-26,0","w":77},"\u2022":{"d":"69,-137v25,0,41,16,41,41v0,24,-16,40,-41,40v-24,0,-40,-16,-40,-40v0,-25,16,-41,40,-41","w":137},"\u00f4":{"d":"90,-237r-47,38r-11,-11r51,-50r16,0r49,49r-12,11xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u00f6":{"d":"109,-217r0,-26r26,0r0,26r-26,0xm43,-217r0,-26r26,0r0,26r-26,0xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u00ad":{"d":"19,-81r0,-21r99,0r0,21r-99,0","w":137,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u00f9":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm92,-201r-36,-57r24,-8r27,60","w":185},"\u00fb":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm91,-237r-46,38r-11,-11r50,-50r17,0r48,49r-11,11","w":185},"\u00fc":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm109,-217r0,-26r26,0r0,26r-26,0xm43,-217r0,-26r26,0r0,26r-26,0","w":185},"\u2020":{"d":"94,-144r0,212r-23,0r0,-212r-63,0r0,-19r63,0r0,-88r23,0r0,88r62,0r0,19r-62,0","w":164},"\u0393":{"d":"53,-228r0,228r-25,0r0,-251r155,0r0,23r-130,0","w":185,"k":{"\ue196":40,"\ue18a":40,"\ue183":54,"\u03af":22,"\u03ae":43,"\u03ad":43,"\u03ac":47,"\u0394":40,",":50,"\u1fc4":43,"\u1fc3":43,"\u1fc2":36,"\u1f95":43,"\u1f94":43,"\u1f93":43,"\u1f92":43,"\u1f91":43,"\u1f90":43,"\u1f75":43,"\u1f74":43,"\u1f25":43,"\u1f24":43,"\u1f23":43,"\u1f22":43,"\u1f21":43,"\u1f20":43,"\u1ff7":47,"\u1ff6":47,"\u1fe7":54,"\u1fe6":25,"\u1fd7":40,"\u1fd6":-29,"\u1fc7":22,"\u1fc6":22,"\u1fb7":47,"\u1fb6":47,"\u1fa7":47,"\u1fa6":47,"\u1f97":43,"\u1f96":43,"\u1f87":47,"\u1f86":47,"\u1f67":47,"\u1f66":47,"\u1f57":54,"\u1f56":54,"\u1f37":40,"\u1f36":40,"\u1f27":43,"\u1f26":43,"\u1f07":47,"\u1f06":47,"\u1fd3":40,"\u1fd2":40,"\u1fd1":-14,"\u1fd0":-18,"\u1f35":40,"\u1f34":40,"\u1f33":40,"\u1f32":40,"\u1f31":40,"\u1f30":40,"\u03c9":47,"\u03c6":47,"\u03c3":47,"\u03c1":54,"\u03b4":11,"\ue1a3":40,"\ue1a1":40,"\ue1a0":40,"\ue19f":40,"\ue19b":54,"\ue19a":40,"\ue193":43,"\ue191":40,"\ue18d":54,"\ue18c":43,"\ue187":43,"\ue186":54,"\ue185":43,"\ue184":43,"\ue264":40,"\u1fb9":40,"\u1fb8":40,"\u1ff4":47,"\u1ff3":47,"\u1ff2":47,"\u1fe3":54,"\u1fe2":54,"\u1fe1":36,"\u1fe0":54,"\u1fbc":40,"\u1fb4":47,"\u1fb3":47,"\u1fb2":32,"\u1fb1":36,"\u1fb0":47,"\u1fa5":47,"\u1fa4":47,"\u1fa3":47,"\u1fa2":47,"\u1fa1":47,"\u1fa0":47,"\u1f85":47,"\u1f84":47,"\u1f83":47,"\u1f82":47,"\u1f81":47,"\u1f80":47,"\u1f7d":47,"\u1f7c":47,"\u1f7b":54,"\u1f7a":40,"\u1f79":47,"\u1f78":40,"\u1f77":22,"\u1f76":-4,"\u1f73":43,"\u1f72":36,"\u1f71":47,"\u1f70":40,"\u1f65":47,"\u1f64":47,"\u1f63":47,"\u1f62":47,"\u1f61":47,"\u1f60":47,"\u1f55":54,"\u1f54":54,"\u1f53":54,"\u1f52":54,"\u1f51":54,"\u1f50":54,"\u1f45":47,"\u1f44":47,"\u1f43":47,"\u1f42":47,"\u1f41":47,"\u1f40":47,"\u1f15":43,"\u1f14":43,"\u1f13":43,"\u1f12":43,"\u1f11":43,"\u1f10":43,"\u1f05":47,"\u1f04":47,"\u1f03":47,"\u1f02":47,"\u1f01":47,"\u1f00":47,"\u03b0":22,"\u0390":40,"\u03cb":36,"\u03ca":-22,"\u03c5":54,"\u03c7":54,"\u03ce":47,"\u03bf":47,"\u03bd":47,"\u00b5":43,"\u03bb":14,"\u03ba":43,"\u03b9":40,"\u03b7":43,"\u03b5":43,"\u03b1":47,"\u03cd":54,"\u03cc":47,"\u2026":50,"\u039f":4,"\u03a9":4,"\u0391":40,"\u039b":40,"\u0398":4,".":50}},"\u0394":{"d":"4,0r91,-251r22,0r92,251r-205,0xm105,-222r-68,201r139,0r-69,-201r-2,0","w":213,"k":{"\u03a4":14}},"\u2206":{"d":"4,0r91,-251r22,0r92,251r-205,0xm105,-222r-68,201r139,0r-69,-201r-2,0","w":213,"k":{"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u0398":{"d":"15,-90v-4,-87,3,-162,88,-162v84,0,90,75,87,162v-2,57,-30,92,-87,92v-59,0,-85,-37,-88,-92xm166,-91v2,-69,5,-138,-63,-138v-68,0,-65,69,-63,138v1,42,21,70,63,70v42,0,62,-28,63,-70xm54,-139r99,0r0,22r-99,0r0,-22","w":206},"\u039b":{"d":"183,0r-76,-217r-2,0r-76,217r-25,0r91,-251r22,0r92,251r-26,0","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u039e":{"d":"21,-228r0,-23r159,0r0,23r-159,0xm41,-116r0,-22r119,0r0,22r-119,0xm21,0r0,-22r159,0r0,22r-159,0","w":201},"\u03a0":{"d":"175,0r0,-229r-123,0r0,229r-24,0r0,-251r171,0r0,251r-24,0","w":227},"\u00df":{"d":"127,-149v25,10,40,32,39,67v0,53,-24,85,-81,82r0,-19v45,5,57,-25,57,-65v0,-33,-15,-57,-53,-54r0,-19v30,3,45,-16,45,-41v0,-27,-15,-43,-43,-44v-31,0,-43,21,-44,50r0,192r-22,0r0,-192v2,-43,24,-66,68,-69v66,-5,85,89,34,112","w":184},"\u00ae":{"d":"100,-253v46,0,74,30,74,76v0,45,-29,75,-74,75v-45,0,-75,-30,-75,-75v0,-46,29,-76,75,-76xm100,-113v38,0,62,-26,62,-64v0,-38,-24,-65,-62,-65v-38,0,-62,25,-62,65v0,40,24,64,62,64xm108,-221v29,-3,35,42,8,48r20,39r-14,0r-19,-37r-18,0r0,37r-13,0r0,-87r36,0xm122,-197v0,-17,-21,-13,-37,-13r0,27v17,0,38,4,37,-14","w":199},"\u00a9":{"d":"109,-101v-5,45,59,54,69,16r17,8v-7,20,-25,34,-50,34v-51,0,-54,-45,-54,-100v0,-61,85,-75,104,-24r-17,8v-11,-33,-74,-27,-69,17r0,41xm268,-123v0,77,-47,126,-124,126v-78,0,-125,-50,-125,-126v0,-76,47,-126,125,-126v77,0,124,49,124,126xm249,-123v0,-65,-39,-109,-105,-109v-66,0,-106,44,-106,109v0,65,40,109,106,109v66,0,105,-44,105,-109","w":285},"\u03a3":{"d":"12,0r0,-22r64,-107r-64,-102r0,-20r151,0r0,22r-123,0r64,100r-64,107r127,0r0,22r-155,0","w":178,"k":{"\u03bd":11,"\u03b3":14}},"\u03aa":{"d":"28,0r0,-251r25,0r0,251r-25,0xm60,-275r0,-26r26,0r0,26r-26,0xm-4,-275r0,-26r26,0r0,26r-26,0","w":81},"\u00a7":{"d":"131,-216v-24,-29,-104,-19,-81,29v28,34,102,23,103,85v0,17,-7,30,-17,40v41,51,-25,115,-90,83v-12,-5,-21,-12,-28,-19r13,-14v21,26,101,31,96,-16v-6,-58,-108,-30,-107,-98v1,-16,8,-31,19,-39v-32,-30,-6,-88,46,-88v24,0,43,7,59,20xm120,-75v23,-17,8,-60,-17,-61v-15,-7,-33,-10,-46,-18v-28,14,-12,57,13,59v17,6,35,12,50,20","w":164},"\u00b0":{"d":"67,-252v29,0,46,18,46,46v0,28,-18,46,-46,46v-28,0,-46,-18,-46,-46v0,-28,18,-46,46,-46xm67,-176v17,0,31,-13,31,-30v0,-19,-14,-31,-31,-31v-17,0,-30,12,-30,31v-1,16,14,30,30,30","w":134},"\u00b7":{"d":"23,-81r0,-32r29,0r0,32r-29,0","w":74},"\u0391":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u00b1":{"d":"97,-101r0,65r-18,0r0,-65r-67,0r0,-19r67,0r0,-64r18,0r0,64r66,0r0,19r-66,0xm12,0r0,-18r152,0r0,18r-152,0","w":174},"\u00a5":{"d":"29,-251r59,126r56,-126r24,0r-57,124r47,0r0,15r-55,0v-5,8,-4,20,-4,33r59,0r0,16r-59,0r0,63r-23,0r0,-63r-58,0r0,-16r58,0v0,-12,2,-27,-4,-33r-54,0r0,-15r46,0r-59,-124r24,0","w":174},"\u0392":{"d":"153,-130v26,9,45,28,46,62v2,81,-92,68,-171,68r0,-251v76,0,165,-13,165,65v0,31,-16,47,-40,56xm169,-184v0,-52,-63,-46,-117,-45r0,90v54,1,117,8,117,-45xm174,-70v0,-57,-66,-48,-122,-48r0,96v56,0,122,10,122,-48","w":213},"\u0395":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0","w":192},"\u0396":{"d":"12,0r0,-22r127,-207r-122,0r0,-22r150,0r0,20r-128,209r128,0r0,22r-155,0","w":178},"\u0397":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0","w":227},"\u0399":{"d":"28,0r0,-251r25,0r0,251r-25,0","w":81},"\u039a":{"d":"202,-251r-80,98r93,153r-28,0r-80,-134r-55,66r0,68r-24,0r0,-251r24,0r1,148r121,-148r28,0","w":220,"k":{"\u03c4":11,"\u03bd":11,"\u03b3":11}},"\u039c":{"d":"220,0r-1,-195r-73,157r-21,0r-74,-157r0,195r-23,0r0,-251r24,0r84,183r84,-183r24,0r0,251r-24,0","w":268},"\u03a6":{"d":"143,-239v69,4,104,40,104,111v-1,69,-39,104,-104,108r0,20r-24,0r0,-20v-65,-4,-104,-41,-104,-108v0,-68,38,-106,104,-111r0,-12r24,0r0,12xm143,-41v79,9,102,-101,61,-153v-14,-16,-34,-25,-61,-25r0,178xm119,-219v-90,-8,-107,140,-36,170v10,4,22,7,36,8r0,-178","w":262},"\u03ab":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm108,-300r25,0r0,25r-25,0r0,-25xm43,-300r25,0r0,25r-25,0r0,-25","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03a8":{"d":"237,-138v-2,57,-40,82,-95,87r0,51r-24,0r0,-52v-58,-2,-95,-33,-95,-90r0,-109r24,0v2,77,-20,175,71,176r0,-176r24,0r0,176v41,-1,71,-24,70,-66r0,-110r25,0r0,113","w":259,"k":{",":22,"\u2026":22,".":22}},"\u03a9":{"d":"47,-22v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-68,-63,-69v-67,-1,-67,66,-64,135v2,34,16,59,42,69r0,26r-71,0r0,-22r37,0","w":206},"\u03ac":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm74,-206r27,-60r24,8r-36,57","w":181},"\u039d":{"d":"189,0r-136,-209r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,251r-24,0","w":240},"\u039f":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71","w":209},"\u03a1":{"d":"28,-251v83,-2,173,-9,171,75v-1,70,-69,77,-146,72r0,104r-25,0r0,-251xm53,-127v57,1,120,8,120,-50v0,-60,-63,-51,-120,-51r0,101","w":203,"k":{",":36,".":36,"\u2026":36,"\u2206":18,"\u039b":18,"\u0391":18,"\u1fbc":18,"\u1fb8":18,"\u1fb9":18,"\ue264":18,"\ue183":25,"\ue186":25,"\ue18d":25,"\ue19b":25}},"\u03a4":{"d":"99,-229r0,229r-24,0r0,-229r-74,0r0,-22r171,0r0,22r-73,0","w":173,"k":{"\ue196":22,"\ue18a":22,"\ue183":22,"\u03af":29,"\u03ae":22,"\u03ad":25,"\u03ac":29,"\u0394":7,",":14,"\u1fc4":22,"\u1fc3":22,"\u1fc2":22,"\u1f95":22,"\u1f94":22,"\u1f93":22,"\u1f92":22,"\u1f91":22,"\u1f90":22,"\u1f75":22,"\u1f74":22,"\u1f25":22,"\u1f24":22,"\u1f23":22,"\u1f22":22,"\u1f21":22,"\u1f20":22,"\u1ff7":29,"\u1ff6":29,"\u1fe7":32,"\u1fe6":22,"\u1fd7":29,"\u1fd6":29,"\u1fc7":14,"\u1fc6":14,"\u1fb7":29,"\u1fb6":22,"\u1fa7":29,"\u1fa6":29,"\u1f97":22,"\u1f96":22,"\u1f87":29,"\u1f86":29,"\u1f67":29,"\u1f66":29,"\u1f57":32,"\u1f56":32,"\u1f37":29,"\u1f36":29,"\u1f27":22,"\u1f26":22,"\u1f07":29,"\u1f06":29,"\u1fd3":29,"\u1fd2":29,"\u1fd1":29,"\u1fd0":29,"\u1f35":29,"\u1f34":29,"\u1f33":29,"\u1f32":29,"\u1f31":29,"\u1f30":29,"\u03c9":29,"\u03c6":29,"\u03c3":29,"\u03c1":29,"\u03b6":7,"\u03b4":11,"\ue1a3":22,"\ue1a1":18,"\ue1a0":22,"\ue19f":22,"\ue19b":22,"\ue19a":18,"\ue194":14,"\ue193":29,"\ue191":22,"\ue18d":22,"\ue18c":29,"\ue188":14,"\ue187":29,"\ue186":22,"\ue185":29,"\ue184":29,"\ue264":7,"\u1fb9":7,"\u1fb8":7,"\u1ff4":29,"\u1ff3":29,"\u1ff2":29,"\u1fe3":32,"\u1fe2":32,"\u1fe1":29,"\u1fe0":32,"\u1fbc":7,"\u1fb4":29,"\u1fb3":29,"\u1fb2":29,"\u1fb1":29,"\u1fb0":29,"\u1fa5":29,"\u1fa4":29,"\u1fa3":29,"\u1fa2":29,"\u1fa1":29,"\u1fa0":29,"\u1f85":29,"\u1f84":29,"\u1f83":29,"\u1f82":29,"\u1f81":29,"\u1f80":29,"\u1f7d":29,"\u1f7c":29,"\u1f7b":32,"\u1f7a":25,"\u1f79":29,"\u1f78":29,"\u1f77":29,"\u1f76":29,"\u1f73":25,"\u1f72":22,"\u1f71":29,"\u1f70":29,"\u1f65":29,"\u1f64":29,"\u1f63":29,"\u1f62":29,"\u1f61":29,"\u1f60":29,"\u1f55":32,"\u1f54":32,"\u1f53":32,"\u1f52":32,"\u1f51":32,"\u1f50":32,"\u1f45":29,"\u1f44":29,"\u1f43":29,"\u1f42":29,"\u1f41":29,"\u1f40":29,"\u1f15":25,"\u1f14":25,"\u1f13":25,"\u1f12":25,"\u1f11":25,"\u1f10":25,"\u1f05":29,"\u1f04":29,"\u1f03":29,"\u1f02":29,"\u1f01":29,"\u1f00":29,"\u03b0":18,"\u0390":29,"\u03cb":29,"\u03ca":29,"\u03c5":32,"\u03ce":29,"\u03bf":29,"\u00b5":22,"\u03bb":7,"\u03ba":22,"\u03b9":29,"\u03b7":22,"\u03b5":25,"\u03b1":29,"\u03cd":32,"\u03cc":29,"\u2026":14,"\u039f":7,"\u03a9":4,"\u0391":7,"\u039b":7,"\u0398":7,".":14}},"\u00ab":{"d":"118,-17r-43,-64r43,-65r22,0r-42,65r42,64r-22,0xm63,-17r-44,-64r44,-65r22,0r-43,65r43,64r-22,0","w":155},"\u00bb":{"d":"19,-17r43,-64r-43,-65r22,0r45,65r-44,64r-23,0xm75,-17r43,-64r-43,-65r22,0r44,65r-44,64r-22,0","w":155},"\u2026":{"d":"26,0r0,-32r29,0r0,32r-29,0xm108,0r0,-32r30,0r0,32r-30,0xm193,0r0,-32r29,0r0,32r-29,0","w":249},"\u03a5":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03a7":{"d":"155,0r-63,-109r-63,109r-27,0r76,-129r-71,-122r27,0r58,103r58,-103r27,0r-72,122r77,129r-27,0","w":184},"\u0386":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-9,-201r27,-60r23,8r-36,58v-5,-2,-9,-4,-14,-6","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u0388":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm-42,-201r28,-60r23,8r-36,58","w":192},"\u2013":{"d":"7,-85r0,-22r165,0r0,22r-165,0","w":178,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u2015":{"d":"7,-85r0,-22r345,0r0,22r-345,0","w":358},"\u201c":{"d":"56,-192v-3,-32,8,-50,17,-70r15,0r-11,38r8,0r0,32r-29,0xm44,-262r-11,38r8,0r0,32r-29,0v-4,-33,8,-50,18,-70r14,0","w":100},"\u201d":{"d":"91,-262v4,33,-8,50,-18,70r-14,0r10,-38r-7,0r0,-32r29,0xm47,-262v3,32,-8,50,-17,70r-15,0r11,-38r-8,0r0,-32r29,0","w":100,"k":{"t":7,"n":7,"a":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e6":18,"\u00e1":18,"\u00e5":18,"\u0101":18,"\u0103":18,"\u0105":18,"\u01fd":18,"\u00e3":18,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22}},"\u2018":{"d":"22,-192v-3,-32,8,-50,17,-70r15,0r-11,38r8,0r0,32r-29,0","w":73},"\u2019":{"d":"54,-262v4,33,-8,50,-18,70r-14,0r10,-38r-8,0r0,-32r30,0","w":73,"k":{"t":7,"n":7,"a":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e6":18,"\u00e1":18,"\u00e5":18,"\u0101":18,"\u0103":18,"\u0105":18,"\u01fd":18,"\u00e3":18,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22}},"\u00f7":{"d":"88,-183v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17v0,-10,7,-17,17,-17xm10,-94r0,-18r156,0r0,18r-156,0xm71,-41v0,-10,8,-17,18,-17v9,0,16,8,16,17v0,10,-7,18,-17,18v-10,0,-17,-8,-17,-18","w":174},"\u0389":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-40,-201r27,-60r24,8r-36,58","w":227},"\u038a":{"d":"28,0r0,-251r25,0r0,251r-25,0xm-41,-201r27,-60r24,8r-36,58","w":81},"\u038c":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm-37,-201r27,-60r24,8r-36,58","w":209},"\u038e":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-44,-195v-5,-3,-8,-5,-14,-6r27,-60r23,8","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u03ad":{"d":"88,1v-64,0,-94,-74,-38,-94v-54,-27,-20,-91,39,-87v25,2,45,10,58,22r-15,16v-17,-21,-87,-25,-87,11v0,26,32,30,63,28r0,18v-34,-2,-66,3,-66,34v0,39,71,37,91,14r15,17v-14,13,-34,21,-60,21xm71,-206r27,-60r23,8r-36,57","w":156},"\u03ae":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm69,-206r27,-60r24,8r-36,57","w":181},"\u03af":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm26,-206r27,-60r24,8r-36,57","w":77},"\u03cc":{"d":"75,-206r27,-60r24,8r-36,57xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u038f":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-22,-195v-5,-3,-8,-5,-15,-6r28,-60r22,8","w":206},"\u03cd":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm77,-206r27,-60r23,8r-36,57","w":189},"\u03b1":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70","w":181},"\u03b2":{"d":"127,-150v61,17,50,152,-29,152v-26,0,-42,-16,-51,-27r0,75r-23,0r0,-241v0,-44,23,-67,67,-70v64,-4,83,86,36,111xm142,-85v1,-42,-24,-60,-70,-54r0,-19v36,3,60,-7,59,-40v-1,-25,-14,-44,-41,-44v-65,0,-43,96,-43,157v0,36,10,67,47,67v37,0,47,-31,48,-67","w":183},"\u03c8":{"d":"200,-68v-2,46,-34,66,-78,70r0,70r-22,0r0,-70v-44,-3,-77,-25,-77,-68r0,-112r23,0v5,65,-23,157,54,158r0,-165r22,0r0,165v32,0,56,-19,55,-53r0,-105r23,0r0,110","w":222},"\u03b5":{"d":"88,1v-64,0,-94,-74,-38,-94v-54,-27,-20,-91,39,-87v25,2,45,10,58,22r-15,16v-17,-21,-87,-25,-87,11v0,26,32,30,63,28r0,18v-34,-2,-66,3,-66,34v0,39,71,37,91,14r15,17v-14,13,-34,21,-60,21","w":156},"\u03b3":{"d":"155,-178r-64,171r0,79r-22,0r0,-75v-20,-56,-28,-109,-58,-155r-8,0r-2,-19v47,-15,49,46,60,78r19,58r51,-137r24,0","w":156,"k":{",":22,"\u03c1":11,"\u2026":22,".":22}},"\u03b7":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27","w":181},"\u03b9":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141","w":77},"\u03ba":{"d":"86,-96v-10,13,-28,29,-38,43r0,53r-23,0r0,-179r23,0r0,97r86,-97r27,0r-59,67r73,112r-26,0","w":177},"\u03bb":{"d":"69,-176v-12,-24,-5,-68,-43,-63r-2,-21v31,-8,46,12,54,36r69,203v2,3,7,2,12,2r0,19v-50,9,-43,-54,-59,-86v-9,-18,-11,-41,-20,-58r-54,144r-25,0","w":159},"\u00b5":{"d":"141,-24v-16,28,-69,35,-93,11r0,85r-23,0r0,-251r23,0v5,63,-22,160,47,159v67,-1,41,-96,46,-159r23,0r0,179r-23,0r0,-24","w":186},"\u03bc":{"d":"141,-24v-16,28,-69,35,-93,11r0,85r-23,0r0,-251r23,0v5,63,-22,160,47,159v67,-1,41,-96,46,-159r23,0r0,179r-23,0r0,-24","w":186},"\u03bd":{"d":"87,0r-20,0r-66,-178r25,0r52,146r51,-146r24,0","w":155,"k":{",":14,"\u03c1":7,"\u2026":14,".":14}},"\u03bf":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u03c0":{"d":"141,0r0,-159r-93,0r0,159r-23,0r0,-179r139,0r0,179r-23,0","w":189},"\u03ce":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm120,-206r27,-60r23,8r-36,57","w":268},"\u03c4":{"d":"109,0v-36,3,-62,-6,-61,-40r0,-118r-42,0r0,-21r112,0r0,21r-47,0r0,112v-2,23,15,27,38,25r0,21","w":124},"\u03c7":{"d":"127,0r-46,-75r-46,75r-27,0r60,-91r-57,-88r27,0r43,72r44,-72r27,0r-57,88r60,91r-28,0","w":162},"\u03c5":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160","w":189},"\u03ca":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm56,-217r0,-26r26,0r0,26r-26,0xm-11,-217r0,-26r26,0r0,26r-26,0","w":77},"\u03cb":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm114,-217r0,-26r26,0r0,26r-26,0xm48,-217r0,-26r25,0r0,26r-25,0","w":189},"\u0390":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm70,-215r0,-26r26,0r0,26r-26,0xm-18,-215r0,-26r25,0r0,26r-25,0xm17,-206r27,-60r23,8r-36,57","w":77},"\u03b0":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm126,-215r0,-26r26,0r0,26r-26,0xm37,-215r0,-26r26,0r0,26r-26,0xm72,-206r27,-60r24,8r-36,57","w":189},"\u00c6":{"d":"172,0r0,-70r-99,0r-45,70r-25,0r159,-251r165,0r0,23r-130,0r0,90r111,0r0,22r-111,0r0,94r130,0r0,22r-155,0xm86,-91r86,0r0,-136","w":341},"\u00e6":{"d":"266,-18v-30,30,-105,26,-120,-13v-17,46,-132,48,-132,-18v0,-56,60,-54,118,-52v3,-38,-6,-58,-44,-58v-21,0,-36,5,-47,16r-15,-16v26,-28,108,-31,123,8v11,-19,30,-29,56,-29v53,0,75,39,72,98r-122,0v-7,59,61,81,97,48xm80,-18v40,0,57,-20,52,-64v-41,1,-96,-9,-96,31v0,22,19,33,44,33xm254,-101v5,-51,-52,-76,-84,-43v-9,10,-14,24,-15,43r99,0","w":289,"k":{"\u201d":7,"\u2019":7}},"\u20ac":{"d":"99,-231v-42,0,-56,33,-55,78r82,0r0,17r-82,0r0,22r82,0r0,16r-82,0v-2,45,12,78,55,79v31,1,41,-19,53,-38r20,10v-13,28,-35,49,-73,49v-57,0,-80,-41,-79,-100r-15,0r0,-16r15,0r0,-22r-15,0r0,-17r15,0v-19,-99,117,-135,152,-52r-23,10v-9,-21,-23,-36,-50,-36","w":174},"\u0192":{"d":"-2,27r6,-19v73,27,58,-81,72,-138r-32,0r0,-19r35,0v5,-59,24,-121,96,-99r-6,21v-52,-18,-62,33,-66,78r39,0r1,19r-43,0v-11,72,-3,188,-102,157","w":174},"\u02c6":{"d":"89,-237r-47,38r-11,-11r51,-50r16,0r49,49r-11,11","w":175},"\u00d7":{"d":"114,-99r58,59r-13,12r-58,-57r-58,58r-13,-13r58,-59r-57,-57r13,-13r57,57r58,-57r12,13","w":194},"\u00a6":{"d":"26,-109r0,-149r18,0r0,149r-18,0xm44,-89r0,147r-18,0r0,-147r18,0","w":68},"\u00b4":{"d":"72,-206r27,-60r23,8r-36,57","w":175},"\u0131":{"d":"23,0r0,-178r25,0r0,178r-25,0","w":70},"\u00ac":{"d":"163,-25r-18,0r0,-69r-135,0r0,-19r154,0","w":174},"\u00b8":{"d":"78,26v-16,0,1,-24,2,-36r13,1r-7,24v20,1,35,11,35,29v0,30,-42,33,-67,22r4,-11v15,7,44,9,46,-11v0,-12,-13,-18,-26,-18","w":152},"\u02dc":{"d":"30,-219v10,-31,47,-33,72,-14v15,6,25,-1,32,-13r14,8v-8,16,-16,26,-34,28v-25,-3,-54,-29,-71,-1","w":175},"\u02c7":{"d":"136,-260r11,11r-49,49r-16,0r-51,-50r11,-10r47,36","w":175},"\u02d8":{"d":"143,-247v2,49,-82,58,-94,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r20,0","w":181},"!":{"d":"49,-66r-17,0r-2,-185r22,0xm28,0r0,-28r26,0r0,28r-26,0","w":81},"\u1fbd":{"d":"81,-276v40,2,44,53,15,74r-12,-5v11,-16,15,-44,-12,-46","w":177},"\u1fbe":{"d":"131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1fc1":{"d":"111,-209r0,-25r25,0r0,25r-25,0xm53,-209r0,-25r26,0r0,25r-26,0xm36,-259v10,-31,47,-33,72,-14v16,6,24,-1,32,-13r14,8v-8,17,-16,26,-34,28v-25,-4,-53,-29,-71,-2","w":189},"\u1fcd":{"d":"50,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm131,-202r-45,-69r28,-5r30,69","w":181},"\u1fce":{"d":"49,-276v40,2,44,53,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm89,-207r32,-69r27,5r-46,69","w":177},"\u1fcf":{"d":"84,-255v38,3,41,43,12,62r-11,-4v14,-16,15,-37,-10,-39xm37,-269v9,-14,18,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-16,26,-34,28v-25,-3,-55,-31,-71,-2","w":177},"\u1fdd":{"d":"84,-253v-27,2,-25,28,-12,46r-12,5v-28,-20,-26,-71,15,-74xm133,-202r-46,-69r29,-5r30,69","w":177},"\u1fde":{"d":"89,-253v-26,1,-24,31,-12,46r-12,5v-29,-20,-27,-71,15,-74xm89,-207r32,-69r27,5r-46,69","w":177},"\u1fdf":{"d":"113,-236v-27,1,-21,26,-9,39r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-7,24,-9xm37,-270v8,-15,17,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-16,28,-35,28v-26,0,-54,-29,-71,-1","w":177},"\u1fed":{"d":"36,-216r0,-26r26,0r0,26r-26,0xm123,-216r0,-26r26,0r0,26r-26,0xm58,-272r28,-5r30,70r-13,5","w":182},"\u1fee":{"d":"125,-216r0,-26r25,0r0,26r-25,0xm37,-216r0,-26r26,0r0,26r-26,0xm85,-202r-13,-5r32,-70r28,5","w":182},"\u1ffe":{"d":"117,-253v-27,2,-23,30,-12,46r-11,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12","w":177},"\u00af":{"d":"46,-215r0,-21r94,0r0,21r-94,0","w":173},"\u02d9":{"d":"76,-217r0,-26r26,0r0,26r-26,0","w":173},"\u02da":{"d":"130,-232v0,20,-13,34,-35,34v-21,0,-32,-13,-33,-34v0,-21,13,-34,33,-34v21,0,35,13,35,34xm117,-232v0,-12,-10,-21,-22,-21v-12,0,-20,9,-20,21v0,12,8,21,20,21v12,0,22,-9,22,-21","w":173},"\u02db":{"d":"96,55v-21,15,-65,10,-63,-22v1,-14,5,-23,14,-34v5,1,14,-2,17,1v-15,17,-21,44,6,46v9,0,13,-3,20,-6","w":123},"\u02dd":{"d":"59,-206r27,-60r24,8r-36,57xm101,-206r27,-60r24,8r-36,57","w":190},"\u1f00":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm81,-276v40,2,44,53,15,74r-12,-5v11,-16,15,-44,-12,-46","w":181},"\u1f01":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm120,-253v-26,1,-24,32,-12,46r-12,5v-28,-20,-26,-71,15,-74","w":181},"\u1f02":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm50,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm131,-202r-45,-69r28,-5r30,69","w":181},"\u1f03":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm84,-253v-27,2,-25,28,-12,46r-12,5v-28,-20,-26,-71,15,-74xm133,-202r-46,-69r29,-5r30,69","w":181},"\u1f04":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm49,-276v40,2,44,53,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm89,-207r32,-69r27,5r-46,69","w":181},"\u1f05":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm89,-253v-26,1,-24,31,-12,46r-12,5v-29,-20,-27,-71,15,-74xm89,-207r32,-69r27,5r-46,69","w":181},"\u1f08":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm4,-256v41,2,44,54,15,75r-12,-6v11,-16,15,-44,-12,-46v3,-9,4,-15,9,-23","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f09":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-17,39,-34,100,-50,139r98,0xm39,-234v-26,1,-24,32,-12,46r-12,6v-28,-20,-26,-71,15,-75","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0a":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm105,-219r-48,139r98,0v-18,-45,-29,-97,-50,-139xm-49,-188v12,-14,14,-45,-12,-46v5,-7,5,-14,9,-22v40,2,44,53,15,74xm32,-182r-45,-69r28,-5r30,69","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0b":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-17,39,-34,100,-50,139r98,0xm-12,-234v-26,1,-24,32,-12,46r-12,6v-29,-21,-26,-71,15,-75xm37,-183r-46,-69r28,-5r30,70","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0c":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-53,-256v39,3,45,54,15,75r-12,-5v11,-17,14,-44,-12,-47xm-13,-186r32,-70r27,5r-46,69","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0d":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-13,-234v-26,3,-23,31,-11,47r-13,5v-27,-20,-27,-72,15,-74xm-13,-187r32,-70r27,5r-46,69","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f10":{"d":"41,-51v0,39,73,38,92,14r15,17v-32,34,-132,28,-129,-32v1,-22,14,-34,31,-42v-18,-5,-27,-17,-28,-37v0,-57,94,-61,125,-27r-15,16v-17,-21,-87,-25,-87,11v0,27,33,30,63,28r0,18v-35,-2,-67,4,-67,34xm80,-207v12,-14,14,-45,-12,-46r9,-23v41,3,45,53,15,74","w":156},"\u1f11":{"d":"41,-51v0,39,73,38,92,14r15,17v-32,34,-132,28,-129,-32v1,-22,14,-34,31,-42v-18,-5,-27,-17,-28,-37v0,-57,94,-61,125,-27r-15,16v-17,-21,-87,-25,-87,11v0,27,33,30,63,28r0,18v-35,-2,-67,4,-67,34xm111,-253v-27,2,-23,30,-12,46r-12,5v-27,-21,-27,-71,15,-74","w":156},"\u1f12":{"d":"41,-51v0,39,73,38,92,14r15,17v-32,34,-132,28,-129,-32v1,-22,14,-34,31,-42v-18,-5,-27,-17,-28,-37v0,-57,94,-61,125,-27r-15,16v-17,-21,-87,-25,-87,11v0,27,33,30,63,28r0,18v-35,-2,-67,4,-67,34xm35,-276v41,1,44,54,15,74r-13,-6v12,-14,16,-45,-11,-46xm119,-202r-45,-69r28,-5r30,69","w":156},"\u1f13":{"d":"41,-51v0,39,73,38,92,14r15,17v-32,34,-132,28,-129,-32v1,-22,14,-34,31,-42v-18,-5,-27,-17,-28,-37v0,-57,94,-61,125,-27r-15,16v-17,-21,-87,-25,-87,11v0,27,33,30,63,28r0,18v-35,-2,-67,4,-67,34xm71,-253v-26,3,-25,28,-12,46r-11,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12xm120,-202r-45,-69r28,-5r30,69","w":156},"\u1f14":{"d":"41,-51v0,39,73,38,92,14r15,17v-32,34,-132,28,-129,-32v1,-22,14,-34,31,-42v-18,-5,-27,-17,-28,-37v0,-57,94,-61,125,-27r-15,16v-17,-21,-87,-25,-87,11v0,27,33,30,63,28r0,18v-35,-2,-67,4,-67,34xm56,-207v12,-14,14,-45,-12,-46r9,-23v40,2,44,53,15,74xm93,-207r32,-69r27,5r-47,69","w":156},"\u1f15":{"d":"41,-51v0,39,73,38,92,14r15,17v-32,34,-132,28,-129,-32v1,-22,14,-34,31,-42v-18,-5,-27,-17,-28,-37v0,-57,94,-61,125,-27r-15,16v-17,-21,-87,-25,-87,11v0,27,33,30,63,28r0,18v-35,-2,-67,4,-67,34xm93,-253v-26,3,-23,30,-11,46r-13,5v-28,-21,-25,-71,16,-74xm93,-207r33,-69r27,5r-47,69","w":156},"\u1f18":{"d":"28,-251r155,0r0,23r-131,0r0,91r111,0r0,21r-111,0r0,94r131,0r0,22r-155,0r0,-251xm-36,-258v40,3,43,53,14,74r-11,-5v11,-16,15,-45,-12,-46","w":192},"\u1f19":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm0,-235v-27,2,-23,31,-11,46r-12,5v-29,-20,-27,-71,15,-74","w":192},"\u1f1a":{"d":"28,-251r155,0r0,23r-131,0r0,91r111,0r0,21r-111,0r0,94r131,0r0,22r-155,0r0,-251xm-91,-258v42,2,45,53,15,74r-12,-6v12,-14,15,-44,-11,-46xm-6,-184r-45,-69r28,-5r29,69","w":192},"\u1f1b":{"d":"28,-251r155,0r0,23r-131,0r0,91r111,0r0,21r-111,0r0,94r131,0r0,22r-155,0r0,-251xm-57,-235v-27,2,-23,31,-11,46r-13,5v-27,-21,-26,-71,15,-74xm-8,-184r-45,-69r28,-5r30,69","w":192},"\u1f1c":{"d":"28,-251r155,0r0,23r-131,0r0,91r111,0r0,21r-111,0r0,94r131,0r0,22r-155,0r0,-251xm-93,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-44,-12,-46xm-53,-189r32,-69r27,5r-46,69","w":192},"\u1f1d":{"d":"28,-251r155,0r0,23r-131,0r0,91r111,0r0,21r-111,0r0,94r131,0r0,22r-155,0r0,-251xm-51,-235v-26,1,-24,31,-12,46r-12,5v-28,-19,-26,-72,15,-74xm-52,-189r32,-69r27,5r-46,69","w":192},"\u1f28":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-33,-258v40,3,43,52,15,74r-13,-5v12,-15,16,-44,-11,-46","w":227},"\u1f29":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm1,-235v-27,1,-22,32,-11,46r-12,5v-29,-20,-27,-71,15,-74","w":227},"\u1f2a":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm-94,-258v42,1,43,53,15,74r-12,-6v11,-15,15,-45,-12,-46xm-10,-184r-45,-69r28,-5r30,69","w":227},"\u1f2b":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm-59,-235v-26,3,-23,31,-11,46r-12,5v-29,-20,-27,-71,15,-74xm-10,-184r-45,-69r28,-5r30,69","w":227},"\u1f2c":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm-84,-189v11,-14,15,-44,-11,-46r8,-23v41,3,45,53,15,74xm-18,-258r28,5r-46,69r-12,-5","w":227},"\u1f2d":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm-55,-235v-27,2,-23,30,-12,46r-12,5v-27,-20,-27,-72,15,-74xm-22,-258r28,5r-45,69r-13,-5","w":227},"\u1f38":{"d":"28,-251r25,0r0,251r-25,0r0,-251xm-35,-258v40,2,44,52,16,74r-13,-5v12,-15,16,-45,-11,-46","w":81},"\u1f39":{"d":"28,-251r25,0r0,251r-25,0r0,-251xm1,-235v-27,2,-23,31,-11,46r-13,5v-28,-19,-26,-72,15,-74v3,7,7,15,9,23","w":81},"\u1f3a":{"d":"28,-251r25,0r0,251r-25,0r0,-251xm-96,-258v42,1,43,53,15,74r-13,-6v13,-15,15,-43,-11,-46xm-12,-184r-45,-69r28,-5r30,69","w":81},"\u1f3b":{"d":"28,-251r25,0r0,251r-25,0r0,-251xm-57,-235v-27,2,-23,30,-12,46r-12,5v-27,-20,-27,-72,15,-74xm-8,-184r-46,-69r28,-5r30,69","w":81},"\u1f3c":{"d":"28,-251r25,0r0,251r-25,0r0,-251xm-85,-258v40,3,43,53,14,74r-11,-5v11,-16,15,-45,-12,-46xm-17,-258r29,5r-46,69r-13,-5","w":81},"\u1f3d":{"d":"28,-251r25,0r0,251r-25,0r0,-251xm-56,-235v-27,2,-23,31,-11,46r-13,5v-27,-21,-27,-72,16,-74xm-23,-258r27,5r-45,69r-13,-5","w":81},"\u1f40":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm81,-207v12,-14,14,-45,-12,-46r9,-23v41,3,45,53,15,74","w":180},"\u1f41":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm116,-253v-27,2,-23,30,-12,46r-11,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12","w":180},"\u1f42":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm41,-276v42,1,44,53,16,74r-13,-6v12,-14,16,-45,-11,-46xm126,-202r-45,-69r28,-5r30,69","w":180},"\u1f43":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm82,-253v-26,3,-23,28,-11,46r-12,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12xm131,-202r-45,-69r28,-5r30,69","w":180},"\u1f44":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm60,-276v40,3,45,52,16,74r-13,-5v12,-14,16,-45,-11,-46xm100,-207r32,-69r28,5r-47,69","w":180},"\u1f45":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm98,-253v-26,2,-24,31,-12,46r-12,5v-27,-20,-27,-72,15,-74xm98,-207r32,-69r28,5r-47,69","w":180},"\u1f48":{"d":"17,-89v-4,-88,2,-163,88,-163v84,0,91,75,87,163v-2,57,-30,91,-87,91v-57,0,-86,-35,-88,-91xm168,-91v3,-69,4,-138,-63,-138v-69,0,-66,70,-64,139v2,42,22,70,64,70v43,0,61,-30,63,-71xm-33,-258v39,2,43,53,15,74r-13,-5v12,-15,16,-45,-11,-46","w":209},"\u1f49":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,91,75,87,162v-2,57,-30,92,-87,92v-58,0,-85,-37,-88,-92xm168,-91v2,-69,4,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm3,-235v-27,1,-23,31,-12,46r-12,5v-28,-19,-26,-72,15,-74","w":209},"\u1f4a":{"d":"17,-89v-4,-88,2,-163,88,-163v84,0,91,75,87,163v-2,57,-30,91,-87,91v-57,0,-86,-35,-88,-91xm168,-91v3,-69,4,-138,-63,-138v-69,0,-66,70,-64,139v2,42,22,70,64,70v43,0,61,-30,63,-71xm-93,-190v12,-14,14,-43,-11,-46r8,-22v42,2,45,53,15,74xm-11,-184r-46,-69r29,-5r29,69","w":209},"\u1f4b":{"d":"17,-89v-4,-88,2,-163,88,-163v84,0,91,75,87,163v-2,57,-30,91,-87,91v-57,0,-86,-35,-88,-91xm168,-91v3,-69,4,-138,-63,-138v-69,0,-66,70,-64,139v2,42,22,70,64,70v43,0,61,-30,63,-71xm-59,-235v-27,2,-23,30,-12,46r-11,5v-28,-20,-27,-71,14,-74xm-10,-184r-46,-69r29,-5r30,69","w":209},"\u1f4c":{"d":"17,-89v-4,-88,2,-163,88,-163v84,0,91,75,87,163v-2,57,-30,91,-87,91v-57,0,-86,-35,-88,-91xm168,-91v3,-69,4,-138,-63,-138v-69,0,-66,70,-64,139v2,42,22,70,64,70v43,0,61,-30,63,-71xm-91,-258v41,3,45,53,15,74r-12,-5v12,-14,15,-44,-11,-46xm-51,-189r32,-69r27,5r-46,69","w":209},"\u1f4d":{"d":"17,-89v-4,-88,2,-163,88,-163v84,0,91,75,87,163v-2,57,-30,91,-87,91v-57,0,-86,-35,-88,-91xm168,-91v3,-69,4,-138,-63,-138v-69,0,-66,70,-64,139v2,42,22,70,64,70v43,0,61,-30,63,-71xm-51,-235v-26,3,-23,30,-11,46r-13,5v-28,-21,-25,-71,16,-74xm-50,-189r32,-69r27,5r-47,69","w":209},"\u1f50":{"d":"95,-19v67,-1,43,-96,47,-160r23,0v-1,82,18,187,-71,181v-41,-2,-68,-23,-69,-65r0,-116r23,0v4,65,-21,161,47,160xm80,-276v41,1,44,54,15,74r-12,-5v11,-16,15,-44,-12,-46","w":189},"\u1f51":{"d":"164,-63v-1,42,-26,66,-70,65v-41,-1,-68,-23,-69,-65r0,-115r23,0v4,65,-21,159,47,159v68,0,43,-95,47,-159r22,0r0,115xm118,-253v-26,2,-22,32,-11,46r-12,5v-28,-20,-26,-71,15,-74","w":189},"\u1f52":{"d":"164,-63v-1,42,-26,66,-70,65v-41,-1,-68,-23,-69,-65r0,-115r23,0v4,65,-21,159,47,159v68,0,43,-95,47,-159r22,0r0,115xm48,-208v12,-14,14,-45,-12,-46r9,-22v42,2,45,53,15,74xm130,-202r-46,-69r28,-5r31,69","w":189},"\u1f53":{"d":"164,-63v-1,42,-26,66,-70,65v-41,-1,-68,-23,-69,-65r0,-115r23,0v4,65,-21,159,47,159v68,0,43,-95,47,-159r22,0r0,115xm88,-253v-26,1,-24,32,-12,46r-12,5v-28,-19,-26,-72,15,-74xm137,-202r-45,-69r28,-5r30,69","w":189},"\u1f54":{"d":"164,-63v-1,42,-26,66,-70,65v-41,-1,-68,-23,-69,-65r0,-115r23,0v4,65,-21,159,47,159v68,0,43,-95,47,-159r22,0r0,115xm68,-207v12,-15,14,-45,-12,-46r9,-23v40,2,44,53,15,74xm105,-207r32,-69r28,5r-47,69","w":189},"\u1f55":{"d":"164,-63v-1,42,-26,66,-70,65v-41,-1,-68,-23,-69,-65r0,-115r23,0v4,65,-21,159,47,159v68,0,43,-95,47,-159r22,0r0,115xm102,-253v-26,2,-22,31,-11,46r-12,5v-29,-20,-27,-71,15,-74xm103,-207r32,-69r27,5r-46,69","w":189},"\u1f59":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-9,-235v-28,1,-24,31,-12,46r-12,5v-29,-20,-27,-71,15,-74","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5b":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-64,-235v-27,2,-23,30,-12,46r-11,5v-28,-20,-27,-71,14,-74xm-15,-184r-46,-69r29,-5r29,69","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f5d":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-67,-235v-26,2,-24,31,-12,46r-12,5v-28,-19,-26,-72,15,-74xm-67,-189r32,-69r27,5r-46,69","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f60":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm122,-276v41,1,44,54,15,74r-12,-5v11,-16,15,-44,-12,-46","w":268},"\u1f61":{"d":"160,-253v-27,2,-25,28,-12,46r-12,5v-28,-19,-26,-72,15,-74xm188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116","w":268},"\u1f62":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm91,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm172,-202r-45,-69r28,-5r30,69","w":268},"\u1f63":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm128,-253v-27,2,-23,31,-11,46r-13,5v-28,-21,-25,-71,16,-74xm177,-202r-45,-69r28,-5r30,69","w":268},"\u1f64":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm109,-207v12,-14,14,-45,-12,-46r9,-23v40,2,43,52,15,74xm145,-207r33,-69r27,5r-47,69","w":268},"\u1f65":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm144,-253v-26,3,-23,30,-11,46r-12,5v-29,-20,-27,-71,15,-74xm144,-207r33,-69r27,5r-47,69","w":268},"\u1f68":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-34,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-45,-12,-46","w":206},"\u1f69":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm1,-235v-26,2,-22,32,-11,46r-12,5v-28,-19,-26,-72,15,-74","w":206},"\u1f6a":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-93,-190v12,-14,14,-45,-12,-46v5,-7,5,-14,9,-22v42,2,45,53,15,74xm-11,-184r-46,-69r29,-5r29,69","w":206},"\u1f6b":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-60,-235v-26,1,-24,31,-12,46r-12,5v-29,-20,-27,-71,15,-74xm-12,-184r-45,-69r28,-5r30,69","w":206},"\u1f6c":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-88,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm-49,-189r33,-69r27,5r-47,69","w":206},"\u1f6d":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-47,-235v-26,2,-24,31,-12,46r-12,5v-27,-20,-27,-72,15,-74xm-47,-189r32,-69r27,5r-46,69","w":206},"\u1f70":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm45,-271r28,-5r30,69r-13,5","w":181},"\u1f71":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm93,-202r-13,-5r32,-69r28,5","w":181},"\u1f72":{"d":"88,1v-64,0,-94,-74,-38,-94v-54,-27,-20,-91,39,-87v25,2,45,10,58,22r-15,16v-17,-21,-87,-25,-87,11v0,26,32,30,63,28r0,18v-34,-2,-66,3,-66,34v0,39,71,37,91,14r15,17v-14,13,-34,21,-60,21xm40,-271r28,-5r30,69r-13,5","w":156},"\u1f73":{"d":"88,1v-64,0,-94,-74,-38,-94v-54,-27,-20,-91,39,-87v25,2,45,10,58,22r-15,16v-17,-21,-87,-25,-87,11v0,26,32,30,63,28r0,18v-34,-2,-66,3,-66,34v0,39,71,37,91,14r15,17v-14,13,-34,21,-60,21xm85,-202r-14,-5r33,-69r27,5","w":156},"\u1f76":{"d":"-9,-271r28,-5r31,69r-13,5xm48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141","w":77},"\u1f77":{"d":"42,-202r-13,-5r32,-69r28,5xm48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141","w":77},"\u1f78":{"d":"42,-271r29,-5r30,69r-13,5xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u1f79":{"d":"94,-202r-13,-5r32,-69r27,5xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u1f7a":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm49,-271r28,-5r30,69r-13,5","w":189},"\u1f7b":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm94,-202r-14,-5r33,-69r27,5","w":189},"\u1f7c":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm131,-202r-45,-69r28,-5r30,69","w":268},"\u1f7d":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm125,-207r32,-69r27,5r-46,69","w":268},"\u1f80":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm105,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm81,-276v40,2,44,53,15,74r-12,-5v11,-16,15,-44,-12,-46","w":181},"\u1f81":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm105,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm120,-253v-26,1,-24,32,-12,46r-12,5v-28,-20,-26,-71,15,-74","w":181},"\u1f82":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm105,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm50,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm131,-202r-45,-69r28,-5r30,69","w":181},"\u1f83":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm105,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm84,-253v-27,2,-25,28,-12,46r-12,5v-28,-20,-26,-71,15,-74xm133,-202r-46,-69r29,-5r30,69","w":181},"\u1f84":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm105,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm49,-276v40,2,44,53,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm89,-207r32,-69r27,5r-46,69","w":181},"\u1f85":{"d":"85,-180v25,-1,39,11,51,27r0,-25r22,0r0,178r-22,0v-1,-8,2,-20,-1,-26v-11,16,-28,28,-51,28v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94xm89,-20v37,0,47,-32,47,-69v0,-35,-8,-69,-47,-69v-39,0,-47,31,-47,69v-1,38,9,69,47,69xm105,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm89,-253v-26,1,-24,31,-12,46r-12,5v-29,-20,-27,-71,15,-74xm89,-207r32,-69r27,5r-46,69","w":181},"\u1f88":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm105,-219r-48,139r98,0v-18,-45,-29,-97,-50,-139xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm4,-256v41,2,44,54,15,75r-12,-6v11,-16,15,-44,-12,-46v3,-9,4,-15,9,-23","w":294},"\u1f89":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm39,-234v-26,1,-24,32,-12,46r-12,6v-28,-20,-26,-71,15,-75","w":294},"\u1f8a":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm105,-219r-48,139r98,0v-18,-45,-29,-97,-50,-139xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-49,-188v12,-14,14,-45,-12,-46v5,-7,5,-14,9,-22v40,2,44,53,15,74xm32,-182r-45,-69r28,-5r30,69","w":294},"\u1f8b":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-12,-234v-26,1,-24,32,-12,46r-12,6v-29,-21,-26,-71,15,-75xm37,-183r-46,-69r28,-5r30,70","w":294},"\u1f8c":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-53,-256v39,3,45,54,15,75r-12,-5v11,-17,14,-44,-12,-47xm-13,-186r32,-70r27,5r-46,69","w":294},"\u1f8d":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm105,-219r-48,139r98,0v-18,-45,-29,-97,-50,-139xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-13,-234v-26,3,-23,31,-11,47r-13,5v-27,-20,-27,-72,15,-74xm-13,-187r32,-70r27,5r-46,69","w":294},"\u1f98":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm269,-48v-2,20,7,29,28,27r0,21v-31,2,-51,-9,-51,-40r0,-139r23,0r0,131xm-33,-258v40,3,43,52,15,74r-13,-5v12,-15,16,-44,-11,-46","w":306},"\u1f99":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm269,-48v-2,20,7,29,28,27r0,21v-31,2,-51,-9,-51,-40r0,-139r23,0r0,131xm1,-235v-27,1,-22,32,-11,46r-12,5v-29,-20,-27,-71,15,-74","w":306},"\u1f9a":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm268,-48v0,19,8,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-93,-190v12,-14,14,-45,-12,-46r9,-22v42,1,43,53,15,74xm-12,-184r-45,-69r28,-5r30,69","w":306},"\u1f9b":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm268,-65v-1,26,0,48,29,45r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,114xm-59,-235v-26,1,-24,31,-12,46r-12,5v-28,-19,-26,-72,15,-74xm-10,-184r-46,-69r28,-5r30,69","w":306},"\u1f9c":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm268,-65v-1,26,0,48,29,45r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,114xm-93,-189v12,-14,14,-45,-12,-46r9,-23v40,2,43,52,15,74xm-55,-189r31,-69r27,5r-45,69","w":306},"\u1f9d":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm268,-65v-1,26,0,48,29,45r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,114xm-61,-235v-27,2,-23,31,-11,46r-13,5v-28,-21,-25,-71,16,-74xm-55,-189r31,-69r27,5r-45,69","w":306},"\u1fa0":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm172,94v-45,6,-50,-28,-47,-72r21,0v1,26,-7,57,26,52r0,20xm122,-276v41,1,44,54,15,74r-12,-5v11,-16,15,-44,-12,-46","w":268},"\u1fa1":{"d":"160,-253v-27,2,-25,28,-12,46r-12,5v-28,-19,-26,-72,15,-74xm172,94v-45,6,-50,-28,-47,-72r21,0v1,26,-7,57,26,52r0,20xm188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116","w":268},"\u1fa2":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm172,94v-45,6,-50,-28,-47,-72r21,0v1,26,-7,57,26,52r0,20xm91,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm172,-202r-45,-69r28,-5r30,69","w":268},"\u1fa3":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm172,94v-45,6,-50,-28,-47,-72r21,0v1,26,-7,57,26,52r0,20xm128,-253v-27,2,-23,31,-11,46r-13,5v-28,-21,-25,-71,16,-74xm177,-202r-45,-69r28,-5r30,69","w":268},"\u1fa4":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm172,94v-45,6,-50,-28,-47,-72r21,0v1,26,-7,57,26,52r0,20xm109,-207v12,-14,14,-45,-12,-46r9,-23v40,2,43,52,15,74xm145,-207r33,-69r27,5r-47,69","w":268},"\u1fa5":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm172,94v-45,6,-50,-28,-47,-72r21,0v1,26,-7,57,26,52r0,20xm144,-253v-26,3,-23,30,-11,46r-12,5v-29,-20,-27,-71,15,-74xm144,-207r33,-69r27,5r-47,69","w":268},"\u1fa8":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm-34,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-45,-12,-46","w":294},"\u1fa9":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm1,-235v-26,2,-22,32,-11,46r-12,5v-28,-19,-26,-72,15,-74","w":294},"\u1faa":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm-93,-190v12,-14,14,-45,-12,-46v5,-7,5,-14,9,-22v42,2,45,53,15,74xm-11,-184r-46,-69r29,-5r29,69","w":294},"\u1fab":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm-61,-235v-27,2,-23,30,-12,46r-12,5v-27,-20,-27,-72,15,-74v5,7,5,15,9,23xm-12,-184r-46,-69r29,-5v12,24,19,44,29,69","w":294},"\u1fac":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm-88,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm-49,-189r33,-69r27,5r-47,69","w":294},"\u1fad":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm-47,-235v-26,2,-24,31,-12,46r-12,5v-27,-20,-27,-72,15,-74xm-47,-189r32,-69r27,5r-46,69","w":294},"\u1fb0":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm66,-247v3,30,56,33,58,0r20,0v0,57,-98,55,-98,0r20,0","w":181},"\u1fb1":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm49,-215r0,-21r94,0r0,21r-94,0","w":181},"\u1fb2":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm43,-271r29,-5r30,69r-13,5xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1fb3":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1fb4":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm98,-202r-13,-5r32,-69r27,5xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1fba":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm21,-184r-45,-69r27,-5r30,69","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fbb":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-9,-189r32,-69r27,5r-46,69","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fbc":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm105,-219r-48,139r98,0v-18,-45,-29,-97,-50,-139xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131","w":294},"\u1fc8":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm-57,-253r28,-5r31,69r-14,5","w":192},"\u1fc9":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm-40,-184r-13,-5r32,-69r28,5","w":192},"\u1fca":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-61,-253r29,-5r30,69r-13,5","w":227},"\u1fcb":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-41,-184r-13,-5r32,-69r27,5","w":227},"\u1fcc":{"d":"269,-48v-2,20,7,29,28,27r0,21v-31,2,-51,-9,-51,-40r0,-139r23,0r0,131xm175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0","w":306},"\u1fd8":{"d":"31,0r0,-251r24,0r0,251r-24,0xm93,-306v0,48,-81,58,-95,14v-2,-5,-3,-9,-3,-14r20,0v2,30,57,32,58,0r20,0","w":87},"\u1fd9":{"d":"29,0r0,-251r25,0r0,251r-25,0xm-5,-279r0,-21r94,0r0,21r-94,0","w":83},"\u1fda":{"d":"28,0r0,-251r25,0r0,251r-25,0xm-52,-253r29,-5r29,69r-12,5","w":84},"\u1fdb":{"d":"28,0r0,-251r25,0r0,251r-25,0xm-42,-184r-13,-5r32,-69r28,5","w":84},"\u1fe0":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm143,-247v0,48,-81,58,-95,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r21,0","w":189},"\u1fe1":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm47,-211r0,-21r94,0r0,21r-94,0","w":189},"\u1fe2":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm39,-216r0,-26r25,0r0,26r-25,0xm126,-216r0,-26r25,0r0,26r-25,0xm60,-272r29,-5r30,70r-13,5","w":189},"\u1fe3":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm126,-216r0,-26r25,0r0,26r-25,0xm39,-216r0,-26r25,0r0,26r-25,0xm86,-203r-13,-4r32,-71r28,6","w":189},"\u1fe4":{"d":"163,-78v11,72,-83,106,-118,55v-3,27,0,64,-1,95r-23,0v8,-100,-35,-252,73,-252v55,0,74,42,69,102xm93,-159v-43,0,-51,38,-49,85v1,33,16,55,49,55v44,0,50,-41,48,-87v-1,-30,-16,-53,-48,-53xm82,-276v40,2,43,52,15,74r-12,-5v11,-16,15,-44,-12,-46","w":182},"\u1fe5":{"d":"163,-78v11,72,-83,106,-118,55v-3,27,0,64,-1,95r-23,0v8,-100,-35,-252,73,-252v55,0,74,42,69,102xm93,-159v-43,0,-51,38,-49,85v1,33,16,55,49,55v44,0,50,-41,48,-87v-1,-30,-16,-53,-48,-53xm117,-253v-27,2,-23,30,-12,46r-11,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12","w":182},"\u1fe8":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm60,-306v1,31,57,33,57,0r20,0v3,49,-82,58,-94,15v-2,-5,-3,-10,-3,-15r20,0","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fe9":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm41,-300r94,0r0,21r-94,0r0,-21","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fea":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-46,-258r29,69r-13,5r-45,-69","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1feb":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-68,-189r32,-69r27,5r-46,69","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1fec":{"d":"199,-176v-1,70,-70,78,-147,72r0,104r-24,0r0,-251v83,-2,173,-9,171,75xm173,-177v0,-60,-64,-51,-121,-51r0,102v58,1,121,7,121,-51xm-38,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-45,-12,-46","w":203,"k":{",":36,".":36,"\u2026":36,"\u2206":18,"\u039b":18,"\u0391":18,"\u1fbc":18,"\u1fb8":18,"\u1fb9":18,"\ue264":18,"\ue183":25,"\ue186":25,"\ue18d":25,"\ue19b":25}},"\u1ff2":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm146,22v1,25,-7,57,25,52r0,19v-45,6,-49,-27,-46,-71r21,0xm112,-276r30,69r-12,5r-46,-69","w":268},"\u1ff3":{"d":"171,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116","w":268},"\u1ff4":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm146,22v1,25,-7,57,25,52r0,19v-45,6,-49,-27,-46,-71r21,0xm122,-207r32,-69r27,5r-46,69","w":268},"\u1ff8":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm-57,-253r28,-5r30,69r-13,5","w":209},"\u1ff9":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm-44,-184r-13,-5r33,-69r27,5","w":209},"\u1ffa":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-12,-184r-45,-69r28,-5r30,69","w":206},"\u1ffb":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-49,-189r32,-69r27,5r-46,69","w":206},"\u1ffc":{"d":"256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69","w":294},"\u1fb8":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm78,-306v1,31,57,33,57,0r20,0v3,49,-82,58,-94,15v-2,-5,-3,-10,-3,-15r20,0","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1fb9":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm59,-300r94,0r0,21r-94,0r0,-21","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u203a":{"d":"19,-17r43,-64r-43,-65r22,0r45,65r-44,64r-23,0","w":103},"\u2039":{"d":"63,-17r-44,-64r45,-65r22,0r-43,65r43,64r-23,0","w":103},"\u00a1":{"d":"32,-111r19,0r2,185r-23,0xm54,-176r0,28r-26,0r0,-28r26,0","w":81},"\u2014":{"d":"7,-85r0,-22r345,0r0,22r-345,0","w":358,"k":{"\ue007":14,"\u03ab":22,"\u03a5":22,"\u1fe8":22,"\u1fe9":22}},"\u00de":{"d":"199,-127v-2,44,-29,71,-76,72r-70,0r0,55r-25,0r0,-250r25,0r0,49v76,-4,149,0,146,74xm53,-77v57,1,120,7,120,-51v0,-59,-63,-52,-120,-51r0,102","w":203},"\u00fe":{"d":"92,2v-26,1,-36,-11,-49,-25r0,94r-22,0r0,-322r22,0r1,98v11,-18,27,-27,52,-27v51,1,65,40,65,90v0,51,-16,92,-69,92xm90,-159v-38,0,-47,34,-47,70v0,37,10,69,47,69v38,0,47,-31,47,-69v0,-38,-9,-70,-47,-70","w":182},"\u0152":{"d":"15,-90v-7,-95,8,-161,109,-161r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-176,2v-59,0,-85,-37,-88,-92xm40,-161v0,77,1,157,83,138r0,-204v-50,-11,-83,19,-83,66","w":288},"\u201a":{"d":"34,39r-12,0r11,-39r-8,0r0,-32r27,0v4,33,-9,51,-18,71","w":76,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"V":25,"W":25,"\u0174":25,"\u1e80":25,"\u1e82":25,"\u1e84":25}},"\u201e":{"d":"37,39r-12,0r10,-39r-8,0r0,-32r27,0v3,33,-8,51,-17,71xm102,39r-12,0r10,-38r-7,0r0,-32r27,0v4,33,-9,50,-18,70","w":146,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"V":25,"W":25,"\u0174":25,"\u1e80":25,"\u1e82":25,"\u1e84":25}},"\u2021":{"d":"71,-144r-63,0r0,-19r63,0r0,-88r23,0r0,88r62,0r0,19r-62,0r0,80r62,0r0,19r-62,0r0,113r-23,0r0,-113r-63,0r0,-19r63,0r0,-80","w":164},"\u00a2":{"d":"158,-20v-13,11,-30,22,-54,22r0,39r-13,0r0,-40v-46,-5,-68,-39,-68,-90v0,-51,22,-85,68,-90r0,-38r13,0r0,37v26,1,38,9,54,22r-14,17v-9,-9,-23,-18,-40,-18r0,140v17,0,31,-8,40,-17xm91,-157v-46,3,-56,77,-34,116v8,12,20,18,34,21r0,-137","w":174},"\u00a4":{"d":"44,-75v-18,-24,-17,-60,0,-82r-23,-22r14,-14r23,23v25,-18,55,-19,81,-1r23,-22r14,14r-23,22v20,25,17,60,1,82v7,7,16,14,22,22r-14,14r-22,-22v-24,19,-59,18,-83,-1r-22,23r-14,-14xm99,-164v-29,0,-48,20,-48,48v0,28,18,48,48,48v30,0,48,-20,48,-48v0,-28,-19,-48,-48,-48","w":192},"\u00b6":{"d":"13,-189v0,-41,22,-68,64,-68r99,0r0,19r-19,0r0,267r-21,0r0,-267r-33,0r0,267r-22,0r0,-152v-45,1,-68,-23,-68,-66","w":190},"\u00d8":{"d":"17,-90v-4,-87,3,-164,88,-162v26,0,46,7,60,19r13,-19r13,9r-15,22v22,28,17,82,17,131v0,56,-31,91,-88,92v-29,0,-49,-9,-63,-24r-15,23r-13,-9r18,-26v-10,-15,-14,-33,-15,-56xm105,-20v68,0,65,-71,63,-141v0,-14,-3,-26,-8,-36r-104,155v10,13,25,22,49,22xm151,-211v-11,-12,-25,-17,-46,-18v-69,-2,-66,70,-64,139v0,12,2,23,6,33","w":209,"k":{"J":14}},"\u00f8":{"d":"33,-22v-32,-53,-20,-158,60,-158v18,0,32,4,44,14r15,-20r11,8r-16,22v11,15,16,37,16,68v0,75,-64,112,-120,76r-13,18r-12,-8xm57,-31v38,33,90,-1,83,-58v-3,-21,-1,-34,-8,-46xm124,-147v-49,-39,-100,18,-82,85v1,7,3,13,6,19","w":180},"\u0160":{"d":"161,-210v-33,-24,-124,-33,-118,28v7,74,142,16,143,115v1,85,-129,83,-176,40r14,-18v39,37,164,34,131,-44v-33,-44,-135,-8,-137,-94v-2,-79,106,-84,157,-48xm148,-319r8,11r-48,43r-17,0r-50,-43r8,-11r50,31","w":199},"\u017d":{"d":"12,0r0,-22r127,-207r-122,0r0,-22r150,0r0,20r-128,209r128,0r0,22r-155,0xm143,-319r8,11r-48,43r-17,0r-50,-43r8,-11r50,31","w":178},"\u0161":{"d":"39,-128v11,50,115,0,115,78v0,63,-105,64,-144,28r14,-18v22,25,101,37,106,-11v-7,-55,-112,-2,-114,-78v-2,-60,92,-62,128,-33r-13,18v-23,-19,-91,-25,-92,16xm126,-260r11,11r-48,49r-17,0r-51,-50r11,-10r47,36","w":167},"\u017e":{"d":"12,0r0,-19r103,-139r-97,0r0,-21r123,0r0,20r-101,138r101,0r0,21r-129,0xm125,-260r11,11r-49,49r-16,0r-51,-50r11,-10r47,36","w":154},"\u0178":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm45,-300r26,0r0,25r-26,0r0,-25xm109,-300r26,0r0,25r-26,0r0,-25","w":177,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u00c0":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm116,-275v-4,4,-6,6,-10,11r-57,-35r17,-18","w":215,"k":{"'":7}},"\u00c1":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm92,-275r51,-42r17,18r-58,35","w":213,"k":{"'":7}},"\u00c2":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm107,-295r-50,31r-8,-11r51,-43r16,0r48,43r-8,10","w":213,"k":{"'":7}},"\u00c5":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm140,-291v-2,20,-14,34,-34,34v-20,0,-32,-14,-34,-34v-1,-18,15,-33,34,-33v18,0,35,15,34,33xm127,-291v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":213,"k":{"'":7}},"\u00c8":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm113,-264r-58,-36r17,-17r51,41","w":192},"\u00ca":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm107,-295r-50,30r-8,-10r51,-43r16,0r49,42r-9,11","w":192},"\u00cb":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm124,-275r0,-25r26,0r0,25r-26,0xm59,-275r0,-25r26,0r0,25r-26,0","w":192},"\u00cc":{"d":"28,0r0,-251r25,0r0,251r-25,0xm43,-264r-58,-36r18,-17r50,41","w":81},"\u00cd":{"d":"28,0r0,-251r25,0r0,251r-25,0xm32,-276r51,-41r17,17r-58,36","w":81},"\u00ce":{"d":"31,0r0,-251r24,0r0,251r-24,0xm44,-295r-49,30r-9,-10r51,-43r16,0r49,42r-9,11","w":91},"\u00cf":{"d":"28,0r0,-251r25,0r0,251r-25,0xm61,-275r0,-25r26,0r0,25r-26,0xm-4,-275r0,-25r26,0r0,25r-26,0","w":81},"\u00d0":{"d":"202,-130v0,82,-21,130,-98,130r-76,0r0,-122r-25,0r0,-18r25,0r0,-111r81,0v70,0,93,46,93,121xm52,-22v73,5,125,-4,125,-78v0,-70,-1,-132,-70,-128r-55,0r0,88r46,0r0,18r-46,0r0,100","w":220,"k":{"J":14}},"\u00d2":{"d":"117,-264r-58,-36r18,-17r51,41xm17,-90v-4,-87,3,-162,88,-162v86,0,92,74,88,162v-2,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,6,-138,-63,-138v-69,0,-66,70,-64,139v2,42,21,70,64,70v41,0,63,-28,63,-71","w":209,"k":{"J":14}},"\u00d3":{"d":"90,-276r51,-41r17,17r-58,36xm17,-90v-4,-87,3,-162,88,-162v86,0,92,74,88,162v-2,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,6,-138,-63,-138v-69,0,-66,70,-64,139v2,42,21,70,64,70v41,0,63,-28,63,-71","w":209,"k":{"J":14}},"\u00d4":{"d":"105,-295r-50,30r-8,-10r51,-43r16,0r49,42r-9,11xm17,-90v-4,-87,3,-162,88,-162v86,0,92,74,88,162v-2,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,6,-138,-63,-138v-69,0,-66,70,-64,139v2,42,21,70,64,70v41,0,63,-28,63,-71","w":209,"k":{"J":14}},"\u00d9":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm116,-264r-58,-36r17,-17r51,41","w":220},"\u00da":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm88,-276r51,-41r17,17r-58,36","w":220},"\u00db":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm110,-295r-50,30r-8,-10r51,-43r16,0r49,42r-9,11","w":220},"\u00dd":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm67,-275r51,-42r17,18r-58,35","w":177,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u00e1":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm84,-206r28,-60r23,8r-36,57","w":173},"\u00ec":{"d":"23,0r0,-178r25,0r0,178r-25,0xm33,-201r-36,-57r24,-8r27,60","w":72},"\u00ed":{"d":"23,0r0,-178r25,0r0,178r-25,0xm29,-206r27,-60r23,8r-35,57","w":72},"\u00f2":{"d":"91,-201r-36,-57r23,-8r27,60xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u00f3":{"d":"82,-206r27,-60r23,8r-36,57xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u00fa":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm85,-206r27,-60r23,8r-36,57","w":185},"\u00e5":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm126,-231v-3,19,-13,33,-35,33v-20,-1,-33,-13,-33,-33v0,-21,12,-34,33,-34v22,0,33,14,35,34xm113,-231v0,-12,-9,-23,-22,-22v-12,0,-20,9,-20,22v0,12,8,21,20,21v12,0,22,-9,22,-21","w":173},"\u00fd":{"d":"76,39v-8,23,-25,34,-54,33r0,-20v35,4,36,-29,45,-53r-66,-177r25,0r52,148r51,-148r24,0xm67,-206r27,-60r23,8r-36,57","w":154},"\u00ff":{"d":"76,39v-8,23,-25,34,-54,33r0,-20v35,4,36,-29,45,-53r-66,-177r25,0r52,148r51,-148r24,0xm34,-242r25,0r0,25r-25,0r0,-25xm100,-242r26,0r0,25r-26,0r0,-25","w":154},"\u0100":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm59,-300r94,0r0,21r-94,0r0,-21","w":213,"k":{"'":7}},"\u0101":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm45,-235r94,0r0,20r-94,0r0,-20","w":173},"\u0102":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm78,-306v1,31,57,33,57,0r20,0v3,49,-82,58,-94,15v-2,-5,-3,-10,-3,-15r20,0","w":213,"k":{"'":7}},"\u0103":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm66,-247v2,31,56,33,57,0r20,0v1,49,-81,59,-94,15v-2,-5,-4,-10,-4,-15r21,0","w":173},"\u0104":{"d":"233,55v-21,14,-66,9,-64,-22v1,-14,6,-24,14,-33r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251v-26,2,-30,47,-3,46v9,0,13,-3,20,-6v2,6,4,10,7,15xm107,-219v-19,41,-32,99,-50,139r98,0","w":213,"k":{"'":7}},"\u0105":{"d":"182,55v-21,15,-66,8,-64,-22v1,-19,17,-27,14,-51v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16r-14,-15v30,-35,129,-34,129,34r0,124v-16,8,-30,46,1,46v9,0,13,-3,20,-6xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33","w":173},"\u0106":{"d":"83,-276r51,-41r17,17r-58,36xm107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,3,-88,-75,-88,-163v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70","w":192},"\u0107":{"d":"33,-89v-8,62,63,89,98,53r15,15v-13,13,-30,23,-55,23v-53,-2,-77,-35,-81,-91v-5,-81,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52xm72,-206r27,-60r24,8r-36,57","w":152},"\u0108":{"d":"107,-295r-50,30r-8,-10r51,-43r16,0r49,42r-9,11xm107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,3,-88,-75,-88,-163v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70","w":192},"\u0109":{"d":"33,-89v-8,62,63,89,98,53r15,15v-13,13,-30,23,-55,23v-53,-2,-77,-35,-81,-91v-5,-81,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52xm86,-237r-47,38r-11,-11r51,-50r16,0r49,49r-11,11","w":152},"\u010a":{"d":"91,-276r0,-25r26,0r0,25r-26,0xm107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,3,-88,-75,-88,-163v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70","w":192},"\u010b":{"d":"33,-89v-8,62,63,89,98,53r15,15v-13,13,-30,23,-55,23v-53,-2,-77,-35,-81,-91v-5,-81,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52xm76,-217r0,-26r26,0r0,26r-26,0","w":152},"\u010c":{"d":"154,-319r9,11r-49,43r-16,0r-50,-43r8,-11r49,31xm107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,3,-88,-75,-88,-163v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70","w":192},"\u010d":{"d":"33,-89v-8,62,63,89,98,53r15,15v-13,13,-30,23,-55,23v-53,-2,-77,-35,-81,-91v-5,-81,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52xm134,-260r11,11r-49,49r-16,0r-51,-50r11,-10r47,36","w":152},"\u010e":{"d":"142,-319r8,11r-48,43r-16,0r-51,-43r9,-11r49,31xm202,-130v0,82,-21,130,-98,130r-76,0r0,-251r81,0v70,0,93,46,93,121xm52,-22v73,5,125,-4,125,-78v0,-70,-1,-132,-70,-128r-55,0r0,206","w":220,"k":{"J":14}},"\u010f":{"d":"189,-196r-14,0r12,-33r-9,0r0,-32r29,0v4,31,-8,48,-18,65xm84,-180v27,-1,35,11,48,24r0,-105r23,0r0,261r-23,0v-1,-8,2,-19,-1,-25v-11,16,-25,27,-51,27v-51,0,-66,-40,-66,-90v0,-52,17,-91,70,-92xm86,-20v37,-1,46,-33,46,-69v0,-37,-9,-68,-46,-69v-39,-1,-48,32,-48,69v0,36,8,70,48,69","w":208},"\u0110":{"d":"202,-130v0,82,-21,130,-98,130r-76,0r0,-122r-25,0r0,-18r25,0r0,-111r81,0v70,0,93,46,93,121xm52,-22v73,5,125,-4,125,-78v0,-70,-1,-132,-70,-128r-55,0r0,88r46,0r0,18r-46,0r0,100","w":220,"k":{"J":14}},"\u0111":{"d":"84,-180v27,-1,35,11,48,24r0,-50r-38,0r0,-16r38,0r0,-39r23,0r0,39r20,0r0,16r-20,0r0,206r-23,0v-1,-8,2,-19,-1,-25v-11,16,-25,27,-51,27v-51,0,-66,-40,-66,-90v0,-52,17,-91,70,-92xm86,-20v37,-1,46,-33,46,-69v0,-37,-9,-68,-46,-69v-39,-1,-48,32,-48,69v0,36,8,70,48,69","w":173},"\u0112":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm59,-279r0,-21r95,0r0,21r-95,0","w":192},"\u0113":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm45,-215r0,-21r94,0r0,21r-94,0","w":173,"k":{"\u201d":7,"\u2019":7}},"\u0114":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm155,-306v0,57,-98,55,-98,0r20,0v1,30,58,32,58,0r20,0","w":192},"\u0115":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm138,-247v1,48,-82,59,-95,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r21,0","w":173,"k":{"\u201d":7,"\u2019":7}},"\u0116":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm91,-276r0,-25r26,0r0,25r-26,0","w":192},"\u0117":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm76,-217r0,-26r26,0r0,26r-26,0","w":173,"k":{"\u201d":7,"\u2019":7}},"\u0118":{"d":"215,55v-21,15,-65,10,-63,-22v1,-14,5,-23,13,-33r-137,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22v-9,11,-13,21,-13,29v0,20,27,20,39,11","w":192},"\u0119":{"d":"171,45v-30,23,-85,-4,-57,-45v-63,10,-101,-24,-99,-89v2,-54,22,-91,73,-91v54,0,75,39,72,97r-122,0v-8,59,58,82,97,50r14,15v-11,6,-23,26,-23,37v0,21,27,20,39,11xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0","w":173,"k":{"\u201d":7,"\u2019":7}},"\u011a":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm152,-319r9,11r-49,43r-16,0r-51,-43r9,-11r49,31","w":192},"\u011b":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm135,-260r12,11r-49,49r-16,0r-51,-50r11,-10r47,36","w":173,"k":{"\u201d":7,"\u2019":7}},"\u011c":{"d":"107,-295r-50,30r-8,-10r51,-43r16,0r48,42r-8,11xm42,-160v-2,71,-4,143,65,141v47,-1,67,-37,63,-90r-55,0r0,-22r79,0v7,80,-17,133,-88,134v-84,1,-88,-75,-88,-164v0,-97,137,-123,168,-41r-23,10v-8,-21,-27,-38,-56,-37v-44,0,-63,28,-65,69","w":213},"\u011d":{"d":"82,-181v24,0,40,12,53,27r0,-25r22,0r1,177v6,70,-84,98,-129,55r15,-16v28,29,95,15,91,-35v-1,-9,2,-21,-1,-28v-12,16,-25,28,-52,28v-49,-1,-64,-39,-65,-88v0,-53,14,-93,65,-95xm88,-159v-39,0,-48,33,-48,70v0,37,9,68,48,68v37,-1,47,-32,47,-69v0,-35,-10,-68,-47,-69xm89,-237r-47,38r-11,-11r51,-50r16,0r49,49r-11,11","w":181},"\u011e":{"d":"156,-306v1,48,-82,59,-95,14v-2,-5,-3,-9,-3,-14r20,0v1,30,57,32,57,0r21,0xm42,-160v-2,71,-4,143,65,141v47,-1,67,-37,63,-90r-55,0r0,-22r79,0v7,80,-17,133,-88,134v-84,1,-88,-75,-88,-164v0,-97,137,-123,168,-41r-23,10v-8,-21,-27,-38,-56,-37v-44,0,-63,28,-65,69","w":213},"\u011f":{"d":"82,-181v24,0,40,12,53,27r0,-25r22,0r1,177v6,70,-84,98,-129,55r15,-16v28,29,95,15,91,-35v-1,-9,2,-21,-1,-28v-12,16,-25,28,-52,28v-49,-1,-64,-39,-65,-88v0,-53,14,-93,65,-95xm88,-159v-39,0,-48,33,-48,70v0,37,9,68,48,68v37,-1,47,-32,47,-69v0,-35,-10,-68,-47,-69xm143,-247v2,49,-82,58,-94,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r20,0","w":181},"\u0120":{"d":"91,-276r0,-25r26,0r0,25r-26,0xm42,-160v-2,71,-4,143,65,141v47,-1,67,-37,63,-90r-55,0r0,-22r79,0v7,80,-17,133,-88,134v-84,1,-88,-75,-88,-164v0,-97,137,-123,168,-41r-23,10v-8,-21,-27,-38,-56,-37v-44,0,-63,28,-65,69","w":213},"\u0121":{"d":"82,-181v24,0,40,12,53,27r0,-25r22,0r1,177v6,70,-84,98,-129,55r15,-16v28,29,95,15,91,-35v-1,-9,2,-21,-1,-28v-12,16,-25,28,-52,28v-49,-1,-64,-39,-65,-88v0,-53,14,-93,65,-95xm88,-159v-39,0,-48,33,-48,70v0,37,9,68,48,68v37,-1,47,-32,47,-69v0,-35,-10,-68,-47,-69xm80,-217r0,-26r25,0r0,26r-25,0","w":181},"\u0122":{"d":"105,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33xm42,-160v-2,71,-4,143,65,141v47,-1,67,-37,63,-90r-55,0r0,-22r79,0v7,80,-17,133,-88,134v-84,1,-88,-75,-88,-164v0,-97,137,-123,168,-41r-23,10v-8,-21,-27,-38,-56,-37v-44,0,-63,28,-65,69","w":213},"\u0123":{"d":"97,-267r14,0r-12,32r10,0r0,32r-30,0r0,-32xm82,-181v24,0,40,12,53,27r0,-25r22,0r1,177v6,70,-84,98,-129,55r15,-16v28,29,95,15,91,-35v-1,-9,2,-21,-1,-28v-12,16,-25,28,-52,28v-49,-1,-64,-39,-65,-88v0,-53,14,-93,65,-95xm88,-159v-39,0,-48,33,-48,70v0,37,9,68,48,68v37,-1,47,-32,47,-69v0,-35,-10,-68,-47,-69","w":181},"\u0124":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm113,-295r-50,30r-8,-10r50,-43r17,0r48,42r-8,11","w":227},"\u0125":{"d":"55,-153v27,-45,116,-32,116,34r0,119r-22,0v-5,-63,22,-158,-47,-158v-67,0,-43,94,-47,158r-23,0r0,-261r23,0r0,108xm43,-295r-49,30r-9,-10r51,-43r16,0r48,42r-8,11","w":193},"\u0126":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-197r-19,0r0,-17r19,0r0,-37r24,0r0,37r123,0r0,-37r24,0r0,37r20,0r0,17r-20,0r0,197r-24,0xm175,-138r0,-59r-123,0r0,59r123,0","w":227},"\u0127":{"d":"44,-152v27,-44,117,-35,117,33r0,119r-23,0v-7,-61,25,-159,-45,-158v-68,1,-46,93,-49,158r-22,0r0,-210r-22,0r0,-17r22,0r0,-34r22,0r0,34r83,0r0,17r-83,0r0,58","w":182},"\u012a":{"d":"28,0r0,-251r25,0r0,251r-25,0xm-5,-279r0,-21r94,0r0,21r-94,0","w":81},"\u012c":{"d":"96,-306v0,57,-98,55,-98,0r20,0v1,30,58,32,58,0r20,0xm34,0r0,-251r25,0r0,251r-25,0","w":97},"\u012e":{"d":"78,55v-20,15,-67,8,-64,-22v2,-12,6,-23,14,-33r0,-251r25,0r0,251v-21,2,-30,47,-2,46v9,0,14,-3,21,-6","w":81},"\u012f":{"d":"76,55v-20,15,-65,9,-63,-22v0,-15,6,-23,14,-33r0,-179r22,0r0,179v-17,9,-29,45,1,46v9,0,13,-3,20,-6xm26,-251r24,0r0,24r-24,0r0,-24","w":76},"\u0130":{"d":"28,0r0,-251r25,0r0,251r-25,0xm27,-276r0,-25r26,0r0,25r-26,0","w":81},"\u0132":{"d":"28,0r0,-251r25,0r0,251r-25,0xm100,-37v30,31,90,15,90,-42r0,-172r25,0r0,177v9,76,-89,97,-133,53","w":239},"\u0133":{"d":"26,-227r0,-24r24,0r0,24r-24,0xm27,0r0,-179r23,0r0,179r-23,0xm101,-227r0,-24r24,0r0,24r-24,0xm68,53v22,2,33,-9,34,-29r0,-203r23,0r0,205v-2,31,-21,49,-57,47r0,-20","w":153},"\u0134":{"d":"26,-37v31,31,90,13,90,-42r0,-172r24,0r0,177v9,75,-89,98,-132,53xm127,-296r-49,31r-9,-11r51,-43r17,0r48,43r-9,10","w":164},"\u0135":{"d":"65,26v-1,33,-20,49,-56,47r0,-20v22,1,34,-8,33,-29r0,-202r23,0r0,204xm100,-200r-46,-36r-47,37r-11,-11r50,-50r17,0r48,50","w":107},"\u0136":{"d":"202,-251r-80,98r93,153r-28,0r-80,-134r-55,66r0,68r-24,0r0,-251r24,0r1,148r121,-148r28,0xm95,82r12,-33r-9,0r0,-32r29,0v4,31,-8,48,-18,65r-14,0","w":220,"k":{"v":7,"w":7,"y":7,"\u0175":7,"\u1e81":7,"\u1e83":7,"\u1e85":7,"\u1ef3":7,"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":4,"\ue114":4,"\ue171":4,"\ue17a":4,"\ue17b":4,"\ue17c":4,"\ue116":11,"\ue11b":11,"\ue138":11,"\ue172":11,"\ue17d":11}},"\u0137":{"d":"86,-96v-10,13,-28,29,-38,43r0,53r-23,0r0,-261r23,0r0,179r86,-97r27,0r-59,67r73,112r-26,0xm77,89r13,-32r-10,0r0,-33r29,0v3,31,-7,48,-17,65r-15,0","w":177},"\u0138":{"d":"86,-96v-10,13,-28,29,-38,43r0,53r-23,0r0,-179r23,0r0,97r86,-97r27,0r-59,67r73,112r-26,0","w":177},"\u0139":{"d":"28,0r0,-251r24,0r0,229r131,0r0,22r-155,0xm29,-276r51,-41r17,17r-58,36","w":192,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u013a":{"d":"48,-41v-1,16,11,22,28,21r0,20v-31,1,-51,-8,-51,-39r0,-222r23,0r0,220xm26,-280r50,-41r18,17r-58,35","w":83},"\u013b":{"d":"28,0r0,-251r24,0r0,229r131,0r0,22r-155,0xm103,89r-15,0r12,-32r-9,0r0,-33r29,0v3,31,-7,48,-17,65","w":192,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u013c":{"d":"64,24v4,31,-8,48,-18,65r-14,0r12,-33r-9,0r0,-32r29,0xm48,-41v-1,16,11,22,28,21r0,20v-31,1,-51,-8,-51,-39r0,-222r23,0r0,220","w":83},"\u013d":{"d":"28,0r0,-251r24,0r0,229r131,0r0,22r-155,0xm135,-186r-14,0r12,-33r-10,0r0,-32r30,0v4,31,-8,48,-18,65","w":192,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u013e":{"d":"105,-260v4,31,-8,47,-18,64r-14,0r12,-33r-9,0r0,-31r29,0xm48,-41v-1,16,11,22,28,21r0,20v-31,1,-51,-8,-51,-39r0,-222r23,0r0,220","w":107},"\u013f":{"d":"28,0r0,-251r24,0r0,229r131,0r0,22r-155,0xm108,-118r0,-26r26,0r0,26r-26,0","w":192,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u0140":{"d":"80,-125r0,-25r25,0r0,25r-25,0xm77,0v-31,1,-52,-8,-52,-39r0,-222r23,0r0,219v0,16,11,22,29,21r0,21","w":114},"\u0141":{"d":"37,0r0,-91r-29,16r-10,-16r39,-23r0,-137r25,0r0,123r46,-27r10,16r-56,33r0,84r131,0r0,22r-156,0","w":202,"k":{"'":40,"T":32,"\u0162":32,"\u0164":32,"\u0166":32,"V":32,"W":32,"\u0174":32,"\u1e80":32,"\u1e82":32,"\u1e84":32,"Y":32,"\u0178":32,"\u00dd":32,"\u0176":32,"\u1ef2":32,"v":18,"w":18,"y":18,"\u0175":18,"\u1e81":18,"\u1e83":18,"\u1e85":18,"\u1ef3":18,"C":18,"G":18,"O":18,"Q":18,"\u00c7":18,"\u00d6":18,"\u0152":18,"\u00d8":18,"\u00d2":18,"\u00d3":18,"\u00d4":18,"\u0106":18,"\u0108":18,"\u010a":18,"\u010c":18,"\u011c":18,"\u011e":18,"\u0120":18,"\u0122":18,"\u014c":18,"\u014e":18,"\u0150":18,"\u01fe":18,"\u01a0":18,"\u00d5":18,"\u201d":25,"\u2019":25}},"\u0142":{"d":"0,-109v11,-7,28,-17,39,-23r0,-129r23,0r0,116r37,-21r9,16r-46,27v7,38,-21,106,29,102r0,21v-31,1,-52,-8,-52,-39r0,-71r-30,17","w":108},"\u0143":{"d":"189,0r-136,-209r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,251r-24,0xm98,-275r51,-42r17,18r-58,35","w":240},"\u0144":{"d":"44,-153v27,-45,116,-31,116,34r0,119r-23,0v-5,-63,22,-158,-46,-158v-67,0,-43,94,-47,158r-23,0r0,-179r23,0r0,26xm73,-206r27,-60r23,8r-36,57","w":181},"\u0145":{"d":"189,0r-136,-209r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,251r-24,0xm134,15v4,31,-8,47,-18,64r-14,0r12,-32r-10,0r0,-32r30,0","w":240},"\u0146":{"d":"44,-153v27,-45,116,-31,116,34r0,119r-23,0v-5,-63,22,-158,-46,-158v-67,0,-43,94,-47,158r-23,0r0,-179r23,0r0,26xm87,89r-15,0r13,-32r-10,0r0,-33r29,0v3,31,-7,48,-17,65","w":181},"\u0147":{"d":"189,0r-136,-209r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,251r-24,0xm71,-319r49,31r49,-30r8,11r-48,42v-24,3,-29,-12,-41,-22r-26,-21","w":240},"\u0148":{"d":"44,-153v27,-45,116,-31,116,34r0,119r-23,0v-5,-63,22,-158,-46,-158v-67,0,-43,94,-47,158r-23,0r0,-179r23,0r0,26xm136,-260r11,11r-49,49r-16,0r-51,-50r11,-10r47,36","w":181},"\u0149":{"d":"62,-153v27,-45,117,-31,117,34r0,119r-23,0v-5,-63,22,-158,-47,-158v-67,0,-43,94,-47,158r-23,0r0,-179r23,0r0,26xm10,-173r-14,0r12,-32r-10,0r0,-32r30,0r0,32","w":199},"\u014a":{"d":"155,38v13,6,35,10,35,-13r0,-24r-137,-210r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,276v3,37,-36,45,-64,30","w":240},"\u014b":{"d":"160,25v3,37,-36,45,-64,30r7,-17v13,6,36,9,34,-13v-7,-69,28,-182,-46,-183v-67,-1,-43,94,-47,158r-23,0r0,-179r23,0v1,8,-2,20,1,26v25,-47,115,-30,115,34r0,144","w":181},"\u014c":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm61,-279r0,-21r94,0r0,21r-94,0","w":209,"k":{"J":14}},"\u014d":{"d":"45,-215r0,-21r94,0r0,21r-94,0xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u014e":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm156,-306v1,48,-82,59,-95,14v-2,-5,-3,-9,-3,-14r20,0v1,30,58,32,58,0r20,0","w":209,"k":{"J":14}},"\u014f":{"d":"62,-247v3,30,56,33,58,0r20,0v0,57,-98,55,-98,0r20,0xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u0150":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71xm115,-276r51,-41r17,17r-57,36xm66,-276r51,-41r18,17r-58,36","w":209,"k":{"J":14}},"\u0151":{"d":"59,-206r27,-60r24,8r-36,57xm101,-206r27,-60r24,8r-36,57xm17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180},"\u0154":{"d":"200,-184v1,38,-27,62,-58,69r61,115r-29,0r-57,-113r-64,0r0,113r-25,0r0,-251v80,-1,172,-12,172,67xm53,-135v57,0,122,9,122,-49v0,-55,-66,-45,-122,-45r0,94xm81,-276r51,-41r17,17r-58,36","w":213},"\u0155":{"d":"48,-152v12,-24,50,-37,80,-22r-9,22v-32,-17,-71,4,-71,43r0,109r-23,0r0,-179r23,0r0,27xm53,-206r27,-60r23,8r-36,57","w":127,"k":{"o":11,"r":18,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u00f0":11,"\u01a1":11,"\u00f5":11}},"\u0156":{"d":"200,-184v1,38,-27,62,-58,69r61,115r-29,0r-57,-113r-64,0r0,113r-25,0r0,-251v80,-1,172,-12,172,67xm53,-135v57,0,122,9,122,-49v0,-55,-66,-45,-122,-45r0,94xm105,82r-14,0r12,-33r-10,0r0,-32r30,0v4,31,-8,48,-18,65","w":213},"\u0157":{"d":"48,-152v12,-24,50,-37,80,-22r-9,22v-32,-17,-71,4,-71,43r0,109r-23,0r0,-179r23,0r0,27xm36,89r-14,0r11,-32r-9,0r0,-33r29,0v3,31,-7,48,-17,65","w":127,"k":{"o":11,"r":18,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u00f0":11,"\u01a1":11,"\u00f5":11}},"\u0158":{"d":"200,-184v1,38,-27,62,-58,69r61,115r-29,0r-57,-113r-64,0r0,113r-25,0r0,-251v80,-1,172,-12,172,67xm53,-135v57,0,122,9,122,-49v0,-55,-66,-45,-122,-45r0,94xm148,-319r9,11r-49,43r-16,0r-51,-43r8,-11r50,31","w":213},"\u0159":{"d":"48,-152v12,-24,50,-37,80,-22r-9,22v-32,-17,-71,4,-71,43r0,109r-23,0r0,-179r23,0r0,27xm113,-260r11,11r-48,49r-17,0r-50,-50r10,-10r48,36","w":127,"k":{"o":11,"r":18,",":29,".":29,"\u2026":29,"a":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e6":7,"\u00e1":7,"\u00e5":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u01fd":7,"\u00e3":7,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"\u00f0":11,"\u01a1":11,"\u00f5":11}},"\u0162":{"d":"99,-229r0,229r-24,0r0,-229r-74,0r0,-22r171,0r0,22r-73,0xm84,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":173,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,"\ue131":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"o":18,"\u00f0":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue11f":22,"\ue0ff":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue101":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18,"\ue16b":18}},"\u0163":{"d":"65,24v4,31,-8,48,-18,65r-14,0r12,-33r-9,0r0,-32r29,0xm56,-46v-1,22,12,28,35,26r0,20v-36,3,-59,-8,-58,-42r0,-117r-23,0r0,-20r23,0r0,-45r23,0r0,45r30,0r0,20r-30,0r0,113","w":100},"\u0164":{"d":"99,-229r0,229r-24,0r0,-229r-74,0r0,-22r171,0r0,22r-73,0xm136,-319r8,11r-48,43r-16,0r-51,-43r8,-11r50,31","w":173,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,"\ue131":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"o":18,"\u00f0":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue11f":22,"\ue0ff":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue101":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18,"\ue16b":18}},"\u0165":{"d":"108,-266v3,30,-7,47,-17,64r-15,0r13,-33r-10,0r0,-31r29,0xm56,-46v-1,22,12,28,35,26r0,20v-36,3,-59,-8,-58,-42r0,-117r-23,0r0,-20r23,0r0,-45r23,0r0,45r30,0r0,20r-30,0r0,113","w":113},"\u0166":{"d":"99,-229r0,86r54,0r0,20r-54,0r0,123r-24,0r0,-123r-54,0r0,-20r54,0r0,-86r-74,0r0,-22r171,0r0,22r-73,0","w":173,"k":{"\u0129":2,"\ue117":25,"\u012d":2,"\u012b":2,"\u0159":2,"\u0157":2,"\u0155":2,"\u0149":2,"\u00ec":2,"\u00ef":2,"\u00ee":2,"r":2,":":11,"v":22,"w":22,"y":22,"\u0175":22,"\u1e81":22,"\u1e83":22,"\u1e85":22,"\u1ef3":22,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,"\ue100":18,"\ue104":18,"\ue10c":18,"\ue10e":18,"\ue119":18,"\ue123":18,"\ue12e":18,"\ue12f":18,"\ue130":18,"\ue132":18,"\ue133":18,"\ue13d":18,"\ue13e":18,"\ue13f":18,"\ue140":18,"\ue148":18,"\ue149":18,"\ue14a":18,"\ue14b":18,"\ue15f":18,"\ue160":18,"\ue161":18,"\ue176":18,"\ue131":18,",":11,".":11,"\u2026":11,"-":22,"\u00ad":22,"\u2013":22,"\u2014":22,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":18,"d":18,"e":18,"g":18,"q":18,"\u00e7":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"\u00f4":18,"\u00f6":18,"\u00f8":18,"\u00f2":18,"\u00f3":18,"\u0107":18,"\u0109":18,"\u010b":18,"\u010d":18,"\u010f":18,"\u0111":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"\u011b":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u01ff":18,"o":18,"\u00f0":18,"\u01a1":18,"\u00f5":18,"i":2,"m":2,"n":2,"p":2,"\u00ed":2,"\u012f":2,"\u0133":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"s":22,"\u0161":22,"\u015b":22,"\u015d":22,"\u015f":22,"\u0219":22,"u":18,"\u00f9":18,"\u00fb":18,"\u00fc":18,"\u00fa":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"\u01b0":18,"\u0169":18,"\ue0fe":22,"\ue11c":22,"\ue11d":22,"\ue11e":22,"\ue120":22,"\ue121":22,"\ue122":22,"\ue13a":22,"\ue13b":22,"\ue13c":22,"\ue175":22,"\ue11f":22,"\ue0ff":25,"\ue102":25,"\ue103":25,"\ue108":25,"\ue109":25,"\ue10d":25,"\ue10f":25,"\ue124":25,"\ue125":25,"\ue126":25,"\ue127":25,"\ue12c":25,"\ue139":25,"\ue141":25,"\ue142":25,"\ue143":25,"\ue144":25,"\ue145":25,"\ue146":25,"\ue147":25,"\ue153":25,"\ue156":25,"\ue157":25,"\ue158":25,"\ue159":25,"\ue15a":25,"\ue162":25,"\ue163":25,"\ue164":25,"\ue101":25,"\ue110":25,"\ue118":25,"\ue165":25,"\ue166":25,"\ue167":25,"\ue179":25,"\ue112":18,"\ue16c":18,"\ue16d":18,"\ue16e":18,"\ue16f":18,"\ue170":18,"\ue16b":18}},"\u0167":{"d":"57,-91v3,34,-14,79,35,70r0,21v-35,3,-59,-8,-59,-39r0,-52r-25,0r0,-19r25,0r0,-49r-22,0r0,-20r22,0r0,-45r24,0r0,45r30,0r0,20r-30,0r0,49r27,0r0,19r-27,0","w":100},"\u016a":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm59,-279r0,-21r95,0r0,21r-95,0","w":220},"\u016b":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm46,-215r0,-21r94,0r0,21r-94,0","w":185},"\u016c":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm81,-301v2,31,56,33,58,0r19,0v0,58,-98,54,-97,0r20,0","w":220},"\u016d":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm63,-247v3,30,56,33,58,0r20,0v0,57,-98,55,-98,0r20,0","w":185},"\u016e":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm145,-290v0,20,-14,34,-34,34v-20,0,-34,-14,-34,-34v0,-20,14,-34,34,-34v20,0,34,14,34,34xm132,-290v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":220},"\u016f":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm125,-232v0,21,-13,34,-34,34v-22,0,-34,-14,-34,-34v0,-20,14,-34,34,-34v20,0,34,13,34,34xm112,-232v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":185},"\u0170":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm113,-276r52,-41r16,17r-58,36xm64,-276r52,-41r16,17r-57,36","w":220},"\u0171":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm59,-206r27,-60r24,8r-36,57xm101,-206r27,-60r24,8r-36,57","w":185},"\u0172":{"d":"156,55v-23,14,-66,9,-64,-23v1,-12,6,-21,12,-30v-51,-5,-80,-36,-81,-91r0,-162r24,0v7,91,-31,230,64,230v39,0,62,-28,62,-69r0,-161r25,0v-8,100,34,240,-76,252v-14,17,-18,42,7,45v8,-1,14,-3,21,-6","w":220},"\u0173":{"d":"188,54v-21,15,-65,11,-64,-21v0,-14,6,-24,14,-33v-1,-7,2,-18,-1,-24v-27,45,-115,28,-115,-35r0,-120r22,0v5,64,-22,161,47,160v68,0,42,-96,47,-160r23,0r0,179v-18,8,-29,46,1,46v8,-1,13,-3,20,-6","w":185},"\u0174":{"d":"225,0r-22,0r-57,-207r-56,207r-22,0r-62,-251r26,0r48,207r56,-207r21,0r58,207r46,-207r26,0xm147,-295r-49,31r-9,-11r51,-43r16,0r48,43r-8,10","w":293,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,"\ue131":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"o":11,"\u00f0":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue11f":18,"\ue0ff":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue101":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11,"\ue16b":11}},"\u0175":{"d":"185,-32v17,-46,28,-98,43,-146r25,0r-56,178r-23,0r-47,-145r-46,145r-22,0r-56,-178r24,0r44,144r46,-144r22,0xm127,-236r-47,37r-11,-11r51,-50v36,-1,42,36,65,49v-3,5,-8,7,-11,11","w":255,"k":{"e":7}},"\u0176":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm88,-295r-49,31r-9,-11r51,-43r16,0r48,43r-8,10","w":177,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u0177":{"d":"76,39v-8,23,-25,34,-54,33r0,-20v35,4,36,-29,45,-53r-66,-177r25,0r52,148r51,-148r24,0xm125,-200r-47,-36r-46,37r-11,-11r50,-50r16,0r49,50","w":154},"\u0179":{"d":"12,0r0,-22r127,-207r-122,0r0,-22r150,0r0,20r-128,209r128,0r0,22r-155,0xm71,-276r51,-41r17,17r-58,36","w":178},"\u017a":{"d":"12,0r0,-19r103,-139r-97,0r0,-21r123,0r0,20r-101,138r101,0r0,21r-129,0xm71,-206r27,-60r23,8r-36,57","w":154},"\u017b":{"d":"12,0r0,-22r127,-207r-122,0r0,-22r150,0r0,20r-128,209r128,0r0,22r-155,0xm82,-276r0,-25r26,0r0,25r-26,0","w":178},"\u017c":{"d":"12,0r0,-19r103,-139r-97,0r0,-21r123,0r0,20r-101,138r101,0r0,21r-129,0xm67,-217r0,-26r26,0r0,26r-26,0","w":154},"\u01fc":{"d":"172,0r0,-70r-99,0r-45,70r-25,0r159,-251r165,0r0,23r-130,0r0,90r111,0r0,22r-111,0r0,94r130,0r0,22r-155,0xm86,-91r86,0r0,-136xm213,-276r52,-41r17,17r-58,36","w":341},"\u01fd":{"d":"266,-18v-30,30,-105,26,-120,-13v-17,46,-132,48,-132,-18v0,-56,60,-54,118,-52v3,-38,-6,-58,-44,-58v-21,0,-36,5,-47,16r-15,-16v26,-28,108,-31,123,8v11,-19,30,-29,56,-29v53,0,75,39,72,98r-122,0v-7,59,61,81,97,48xm80,-18v40,0,57,-20,52,-64v-41,1,-96,-9,-96,31v0,22,19,33,44,33xm254,-101v5,-51,-52,-76,-84,-43v-9,10,-14,24,-15,43r99,0xm158,-201r-14,-5r27,-60r23,8","w":287},"\u01fe":{"d":"17,-90v-4,-87,3,-164,88,-162v26,0,46,7,60,19r13,-19r13,9r-15,22v22,28,17,82,17,131v0,56,-31,91,-88,92v-29,0,-49,-9,-63,-24r-15,23r-13,-9r18,-26v-10,-15,-14,-33,-15,-56xm105,-20v68,0,65,-71,63,-141v0,-14,-3,-26,-8,-36r-104,155v10,13,25,22,49,22xm151,-211v-11,-12,-25,-17,-46,-18v-69,-2,-66,70,-64,139v0,12,2,23,6,33xm84,-276r51,-41r17,17r-58,36","w":209,"k":{"J":14}},"\u01ff":{"d":"33,-22v-32,-53,-20,-158,60,-158v18,0,32,4,44,14r15,-20r11,8r-16,22v11,15,16,37,16,68v0,75,-64,112,-120,76r-13,18r-12,-8xm57,-31v38,33,90,-1,83,-58v-3,-21,-1,-34,-8,-46xm124,-147v-49,-39,-100,18,-82,85v1,7,3,13,6,19xm81,-206r27,-60r24,8r-36,57","w":180},"\u012b":{"d":"31,0r0,-178r24,0r0,178r-24,0xm-4,-215r0,-21r95,0r0,21r-95,0","w":87},"\u012d":{"d":"35,0r0,-178r24,0r0,178r-24,0xm95,-249v3,50,-81,56,-94,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,32,58,0r19,0","w":93},"\u0401":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0xm126,-275r0,-26r26,0r0,26r-26,0xm61,-275r0,-26r26,0r0,26r-26,0","w":192},"\u0403":{"d":"53,-228r0,228r-25,0r0,-251r155,0r0,23r-130,0xm77,-276r51,-41r17,17r-58,36","w":185,"k":{"\u044f":50,"\u0431":29,"\u042f":7,"\u0447":40,"\u0436":43,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0454":40,"\u0444":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u044e":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0406":{"d":"28,0r0,-251r25,0r0,251r-25,0","w":81},"\u0407":{"d":"28,0r0,-251r25,0r0,251r-25,0xm61,-281r0,-26r26,0r0,26r-26,0xm-5,-281r0,-26r26,0r0,26r-26,0","w":81},"\u0408":{"d":"26,-37v30,32,90,14,90,-42r0,-172r24,0r0,177v9,75,-89,98,-132,53","w":164},"\u0410":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0","w":213,"k":{"\u040b":11,"\u0402":11,"\u042a":11,"\u0427":14,"\u0422":11}},"\u0412":{"d":"153,-130v26,9,45,28,46,62v2,81,-92,68,-171,68r0,-251v76,0,165,-13,165,65v0,31,-16,47,-40,56xm169,-184v0,-52,-63,-46,-117,-45r0,90v54,1,117,8,117,-45xm174,-70v0,-57,-66,-48,-122,-48r0,96v56,0,122,10,122,-48","w":213},"\u0413":{"d":"53,-228r0,228r-25,0r0,-251r155,0r0,23r-130,0","w":185,"k":{"\u044f":50,"\u0431":29,"\u042f":7,"\u0447":40,"\u0436":43,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0454":40,"\u0444":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u044e":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0415":{"d":"28,0r0,-251r155,0r0,23r-131,0r0,90r112,0r0,22r-112,0r0,94r131,0r0,22r-155,0","w":192},"\u041a":{"d":"27,0r0,-250r24,0r0,111v44,0,84,4,97,-38r23,-73r24,0v-16,43,-19,101,-58,120v46,17,44,85,63,130r-26,0v-14,-37,-17,-86,-43,-111v-18,-12,-52,-6,-80,-7r0,118r-24,0","w":206},"\u041c":{"d":"220,0r-1,-195r-73,157r-21,0r-74,-157r0,195r-23,0r0,-251r24,0r84,183r84,-183r24,0r0,251r-24,0","w":268},"\u041d":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0","w":227},"\u041e":{"d":"17,-90v-4,-87,3,-162,88,-162v84,0,93,74,88,162v-3,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71","w":209},"\u041f":{"d":"175,0r0,-229r-123,0r0,229r-24,0r0,-251r171,0r0,251r-24,0","w":227},"\u0420":{"d":"28,-251v83,-2,173,-9,171,75v-1,70,-69,77,-146,72r0,104r-25,0r0,-251xm53,-127v57,1,120,8,120,-50v0,-60,-63,-51,-120,-51r0,101","w":203,"k":{"\u0434":18,",":36,"\u0459":18,"\u043b":18,"\u0414":22,"\u0430":7,"\u0410":11,"\u2026":36,".":36}},"\u0421":{"d":"107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,2,-88,-75,-88,-163v0,-99,137,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-69,0,-66,69,-64,138v2,41,21,70,64,70","w":192},"\u0422":{"d":"99,-229r0,229r-24,0r0,-229r-74,0r0,-22r171,0r0,22r-73,0","w":173,"k":{"\u041e":7,"\u0414":29,"\u0404":7,"\u0424":11,"\u0421":7,"\u0410":18}},"\u0424":{"d":"143,-239v69,4,104,40,104,111v-1,69,-39,104,-104,108r0,20r-24,0r0,-20v-65,-4,-104,-41,-104,-108v0,-68,38,-106,104,-111r0,-12r24,0r0,12xm143,-41v79,9,102,-101,61,-153v-14,-16,-34,-25,-61,-25r0,178xm119,-219v-90,-8,-107,140,-36,170v10,4,22,7,36,8r0,-178","w":262,"k":{"\u0434":18,",":14,"\u0459":18,"\u043b":18,"\u0414":7,"\u2026":14,".":14}},"\u0425":{"d":"155,0r-63,-109r-63,109r-27,0r76,-129r-71,-122r27,0r58,103r58,-103r27,0r-72,122r77,129r-27,0","w":184},"\u0430":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33","w":173},"\u0435":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0","w":173},"\u043a":{"d":"21,0r0,-179r23,0r0,80v32,0,63,4,73,-27r17,-53r22,0v-12,30,-13,74,-42,86v34,11,31,61,45,93r-23,0v-12,-31,-9,-81,-50,-81r-42,0r0,81r-23,0","w":168},"\u043e":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180,"k":{"\u0459":7,"\u043b":7,"\u0434":7}},"\u043f":{"d":"141,0r0,-159r-93,0r0,159r-23,0r0,-179r139,0r0,179r-23,0","w":189},"\u0440":{"d":"92,2v-26,1,-36,-11,-49,-25r0,94r-22,0r0,-250r22,0v1,8,-2,20,1,26v11,-18,27,-27,52,-27v51,1,65,40,65,90v0,51,-16,92,-69,92xm90,-159v-38,0,-47,34,-47,70v0,37,10,69,47,69v38,0,47,-31,47,-69v0,-38,-9,-70,-47,-70","w":178},"\u0441":{"d":"33,-89v-8,62,63,89,98,53r15,15v-13,13,-30,23,-55,23v-53,-2,-77,-35,-81,-91v-5,-81,82,-116,136,-69r-15,17v-34,-38,-107,-9,-98,52","w":152},"\u0443":{"d":"76,39v-8,23,-25,34,-54,33r0,-20v35,4,36,-29,45,-53r-66,-177r25,0r52,148r51,-148r24,0","w":154,"k":{"\u0434":14,"\u043b":14,"\u0459":14}},"\u0445":{"d":"127,0r-46,-75r-46,75r-27,0r60,-91r-57,-88r27,0r43,72r44,-72r27,0r-57,88r60,91r-28,0","w":162},"\u0451":{"d":"88,-180v54,0,75,39,72,97r-122,0v-9,60,58,81,97,50r14,15v-14,12,-31,20,-55,20v-54,0,-80,-33,-79,-91v1,-54,22,-91,73,-91xm136,-102v6,-50,-52,-74,-83,-43v-9,10,-14,24,-15,43r98,0xm109,-219r0,-26r26,0r0,26r-26,0xm42,-219r0,-26r26,0r0,26r-26,0","w":173},"\u0456":{"d":"26,-227r0,-24r24,0r0,24r-24,0xm27,0r0,-179r23,0r0,179r-23,0","w":76},"\u0457":{"d":"54,-217r0,-26r26,0r0,26r-26,0xm-13,-217r0,-26r26,0r0,26r-26,0xm23,0r0,-178r25,0r0,178r-25,0","w":70},"\u0458":{"d":"30,-227r0,-24r24,0r0,24r-24,0xm-3,53v23,2,33,-9,34,-29r0,-203r23,0r0,205v-2,32,-20,50,-57,47r0,-20","w":83},"\u045e":{"d":"76,39v-8,23,-25,34,-54,33r0,-20v35,4,36,-29,45,-53r-66,-177r25,0r52,148r51,-148r24,0xm50,-247v2,31,56,33,57,0r20,0v-1,58,-98,56,-97,0r20,0","w":154,"k":{"\u0434":14,"\u043b":14,"\u0459":14}},"\u0404":{"d":"107,-21v30,0,49,-17,58,-39r22,10v-11,31,-39,52,-80,52v-86,2,-88,-75,-88,-163v0,-99,137,-123,167,-41r-22,10v-9,-20,-28,-38,-57,-37v-50,1,-67,37,-64,91r92,0r0,22r-92,0v-3,55,12,95,64,95","w":191},"\u040a":{"d":"326,-71v0,82,-90,72,-171,71r0,-117r-103,0r0,117r-24,0r0,-251r24,0r0,112r103,0r0,-112r25,0r0,112v73,-3,146,-2,146,68xm180,-22v56,0,122,8,121,-48v-1,-54,-65,-48,-121,-47r0,95","w":331,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u040f":{"d":"199,-251r0,251r-73,0r0,59r-27,0r0,-59r-72,0r0,-251r25,0r0,229r122,0r0,-229r25,0","w":225},"\u0411":{"d":"193,-71v0,82,-89,72,-170,71r0,-251r150,0r0,23r-126,0r0,89v73,-3,146,-2,146,68xm47,-22v56,0,122,10,121,-48v-1,-55,-65,-48,-121,-47r0,95","w":205},"\u0414":{"d":"7,-18v77,-18,44,-146,57,-233r156,0r0,230r20,0r0,75r-24,0r0,-54r-185,0r0,54r-24,0r0,-72xm195,-229r-109,0r-3,86v-3,52,-4,94,-26,122r138,0r0,-208","w":252},"\u0416":{"d":"147,-251r24,0r0,112v41,1,75,1,88,-38r24,-73r23,0v-17,42,-18,102,-58,120v46,17,44,85,63,130r-26,0v-19,-43,-11,-114,-70,-118r-44,0r0,118r-24,0r0,-118v-45,-2,-80,-1,-92,40r-22,78r-26,0v18,-46,17,-112,63,-130v-40,-17,-42,-79,-59,-120r24,0v19,41,13,108,70,111r42,0r0,-112","w":317},"\u0417":{"d":"183,-74v5,95,-154,95,-178,25r23,-11v16,52,131,58,130,-13v-1,-43,-35,-54,-82,-50r0,-21v43,3,77,-6,77,-45v0,-60,-107,-45,-119,-3r-22,-11v12,-29,44,-49,86,-49v48,0,80,19,80,62v0,29,-18,46,-38,57v26,8,42,28,43,59","w":198},"\u0418":{"d":"187,0r-1,-207r-136,207r-24,0r0,-251r24,0r1,212r139,-212r21,0r0,251r-24,0","w":236},"\u0423":{"d":"184,-251r-79,207v-12,31,-27,51,-72,47r0,-22v32,4,42,-12,50,-37r-75,-194r26,0r62,165r2,0r60,-166r26,0","w":187,"k":{"\u044f":18,"\u0431":14,"\u0447":18,"\u0414":29,"\u0445":14,"\u0430":22,"\u0424":7,"\u0410":25,",":25,".":25,"\u2026":25,"\u041e":4,"\u0421":4,"\u0404":4,"\u0435":22,"\u043e":22,"\u0441":22,"\u0451":22,"\u0454":22,"\u0444":22,"\u043a":25,"\u043f":25,"\u0440":25,"\u0456":25,"\u0457":25,"\u0432":25,"\u0433":25,"\u0438":25,"\u043c":25,"\u043d":25,"\u0446":25,"\u0448":25,"\u0449":25,"\u044c":25,"\u0453":25,"\u045a":25,"\u045f":25,"\u0491":25,"\u044e":25,"\u045c":25,"\u0439":25,"\u0443":14,"\u045e":14,"\u0434":32,"\u043b":32,"\u0459":32,"\u0437":14,"\u044d":14,"\u04d9":14,"\u044a":7,"\u0442":7}},"\u0426":{"d":"198,0r-170,0r0,-251r24,0r0,229r123,0r0,-229r24,0r0,229r23,0r0,76r-24,0r0,-54","w":231},"\u0427":{"d":"163,-121v-51,37,-149,23,-143,-55r0,-75r24,0v0,62,-10,133,56,129v25,-1,46,-8,63,-22r0,-107r25,0r0,251r-25,0r0,-121","w":215},"\u0428":{"d":"305,-251r0,251r-279,0r0,-251r24,0r0,229r103,0r0,-229r24,0r0,229r104,0r0,-229r24,0","w":331},"\u0429":{"d":"304,0r-279,0r0,-251r25,0r0,229r102,0r0,-229r25,0r0,229r103,0r0,-229r25,0r0,229r23,0r0,76r-24,0r0,-54","w":338},"\u042a":{"d":"101,-139v73,-3,146,-2,146,68v0,82,-90,72,-171,71r0,-228r-73,0r0,-23r98,0r0,112xm101,-22v56,0,122,9,121,-48v-1,-54,-65,-48,-121,-47r0,95","w":254,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u042b":{"d":"201,-71v1,81,-90,72,-171,71r0,-251r24,0r0,112v74,-3,147,-2,147,68xm226,0r0,-251r24,0r0,251r-24,0xm54,-22v56,0,122,10,121,-48v-1,-55,-65,-48,-121,-47r0,95","w":276},"\u042c":{"d":"193,-71v0,82,-89,72,-170,71r0,-251r24,0r0,112v73,-3,146,-2,146,68xm47,-22v56,0,122,10,121,-48v-1,-55,-65,-48,-121,-47r0,95","w":201,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u042d":{"d":"86,-21v55,0,68,-41,64,-98r-92,0r0,-22r92,0v2,-51,-11,-88,-60,-88v-30,-1,-50,16,-59,37r-23,-10v11,-29,42,-50,82,-50v86,0,84,76,84,162v0,101,-138,123,-169,40r23,-10v9,22,28,39,58,39","w":195},"\u042e":{"d":"89,-138v-4,-68,19,-112,83,-114v85,-2,87,78,83,163v-2,55,-27,91,-83,91v-66,0,-87,-49,-83,-118r-37,0r0,116r-25,0r0,-251r25,0r0,113r37,0xm230,-91v0,-65,9,-138,-58,-138v-67,0,-60,73,-59,139v1,41,18,70,59,70v41,0,58,-29,58,-71","w":272},"\u0432":{"d":"129,-93v17,7,30,18,30,42v1,63,-76,50,-138,51r0,-178v58,1,134,-12,134,47v-1,18,-9,32,-26,38xm44,-100v38,0,88,7,88,-30v0,-36,-51,-27,-88,-28r0,58xm44,-21v39,-1,93,9,93,-30v0,-39,-53,-31,-93,-31r0,61","w":169},"\u0433":{"d":"44,-158r0,158r-23,0r0,-179r126,0r0,21r-103,0","w":147,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u0444":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0434":{"d":"191,48r-23,0r0,-48r-140,0r0,48r-22,0r0,-66v60,-8,38,-98,46,-160r122,0r0,158r17,0r0,68xm72,-158v-2,51,-1,106,-21,138r100,0r0,-138r-79,0","w":202},"\u0436":{"d":"80,-81v-41,-1,-37,52,-50,81r-23,0v13,-32,11,-81,45,-93v-30,-12,-28,-58,-42,-85r23,0v13,30,8,78,51,79r32,0r0,-79r23,0r0,79r32,0v42,0,37,-51,51,-79r22,0v-12,30,-13,73,-42,85v34,11,31,61,45,93r-23,0v-12,-31,-9,-81,-50,-81r-35,0r0,81r-23,0r0,-81r-36,0","w":254},"\u0437":{"d":"54,-102v31,2,62,-1,62,-29v0,-38,-69,-32,-89,-13r-14,-15v30,-31,128,-32,126,26v-1,20,-13,33,-28,40v61,28,24,101,-39,96v-25,-1,-52,-7,-66,-21r15,-16v22,21,99,24,99,-19v0,-30,-33,-33,-66,-31r0,-18","w":157},"\u0438":{"d":"21,0r0,-179r23,0r0,143r104,-143r19,0r0,179r-23,0r0,-139r-101,139r-22,0","w":187},"\u043c":{"d":"173,0r0,-130r-55,104r-19,0r-55,-104r0,130r-23,0r0,-178r22,0r66,125r65,-125r22,0r0,178r-23,0","w":213},"\u043d":{"d":"137,0r0,-83r-93,0r0,83r-23,0r0,-179r23,0r0,77r93,0r0,-77r23,0r0,179r-23,0","w":180},"\u0446":{"d":"22,0r0,-178r22,0r0,158r94,0r0,-158r23,0r0,158r22,0r0,68r-23,0r0,-48r-138,0","w":191},"\u0447":{"d":"35,-127v-4,52,65,44,91,24r0,-76r23,0r0,179r-23,0r0,-82v-39,26,-122,23,-114,-43r0,-54r23,0r0,52","w":169},"\u0448":{"d":"257,-179r0,179r-235,0r0,-179r22,0r0,158r83,0r0,-158r23,0r0,158r85,0r0,-158r22,0","w":279},"\u0449":{"d":"22,0r0,-178r22,0r0,157r83,0r0,-157r23,0r0,157r85,0r0,-157r22,0r0,158r22,0r0,68r-22,0r0,-48r-235,0","w":288},"\u044a":{"d":"83,-21v40,-1,93,9,93,-32v0,-38,-53,-31,-93,-32r0,64xm199,-53v0,63,-76,53,-139,53r0,-158r-57,0r0,-21r81,0r0,74v57,-2,115,-3,115,52","w":204,"k":{"\u0442":11}},"\u044b":{"d":"177,0r0,-178r24,0r0,178r-24,0xm42,-21v40,-1,92,9,92,-32v1,-39,-52,-32,-92,-32r0,64xm158,-53v0,63,-76,53,-139,53r0,-179r23,0r0,74v57,-2,116,-3,116,52","w":222},"\u044c":{"d":"42,-21v40,-1,93,9,93,-32v0,-38,-53,-31,-93,-32r0,64xm158,-53v0,63,-76,53,-139,53r1,-179r22,0r0,74v57,-2,116,-4,116,52","w":161},"\u044d":{"d":"19,-36v18,19,64,23,83,0v9,-12,15,-26,16,-46r-72,0r0,-18r72,0v7,-58,-62,-74,-95,-42r-14,-16v12,-13,36,-22,59,-22v52,0,71,34,74,87v5,82,-80,122,-137,73","w":157},"\u0453":{"d":"40,-158r0,158r-23,0r0,-178r126,0r0,20r-103,0xm65,-206r27,-60r24,8r-36,57","w":142,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u0444":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0454":{"d":"147,-21v-14,13,-31,23,-57,23v-53,-2,-76,-34,-80,-89v-6,-81,82,-120,136,-71r-15,16v-35,-35,-102,-8,-97,43r73,0r0,18r-74,0v-5,56,65,80,98,45","w":150},"\u045a":{"d":"145,-21v40,-1,92,10,92,-33v0,-38,-52,-31,-92,-31r0,64xm261,-54v0,64,-76,54,-139,54r0,-86r-77,0r0,86r-23,0r0,-179r23,0r0,72r77,0r0,-72r23,0r0,73v57,-2,116,-3,116,52","w":268},"\u045f":{"d":"161,-178r0,178r-57,0r0,49r-26,0r0,-49r-56,0r0,-178r22,0r0,157r94,0r0,-157r23,0","w":182},"\u0490":{"d":"183,-228r-130,0r0,228r-25,0r0,-251r132,0r0,-40r23,0r0,63","w":185,"k":{"\u044f":50,"\u0431":29,"\u042f":7,"\u0447":40,"\u0436":43,"\u0414":40,"\u0445":40,"\u0430":50,"\u0424":14,"\u0410":40,",":43,".":43,"\u2026":43,"\u041e":7,"\u0421":7,"\u0404":7,"\u0435":40,"\u043e":40,"\u0441":40,"\u0451":40,"\u0454":40,"\u0444":40,"\u043a":47,"\u043f":47,"\u0440":47,"\u0456":47,"\u0457":47,"\u0432":47,"\u0433":47,"\u0438":47,"\u043c":47,"\u043d":47,"\u0446":47,"\u0448":47,"\u0449":47,"\u044c":47,"\u0453":47,"\u045a":47,"\u045f":47,"\u0491":47,"\u044e":47,"\u045c":47,"\u0439":47,"\u0443":40,"\u045e":40,"\u0434":54,"\u043b":54,"\u0459":54,"\u0437":47,"\u044d":47,"\u04d9":47,"\u044a":32,"\u0442":32}},"\u0491":{"d":"147,-158r-103,0r0,158r-23,0r0,-179r104,0r0,-36r22,0r0,57","w":147,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u0444":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u0442":{"d":"81,-159r0,159r-23,0r0,-159r-58,0r0,-19r139,0r0,19r-58,0","w":138,"k":{"\u044f":4,"\u0430":11,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u0444":7,"\u0434":25,"\u043b":25,"\u0459":25}},"\u2044":{"d":"-44,8r-17,0r153,-266r17,0","w":54,"k":{"\ue2f9":-22,"\ue2f7":-4,"\ue2fd":-7,"\ue2fc":-14,"\ue2fb":-22,"\ue2fa":11,"\ue2f8":7}},"\u2215":{"d":"-44,8r-17,0r153,-266r17,0","w":54},"\u2113":{"d":"105,-15v23,0,33,-19,43,-38r17,6v-13,26,-29,51,-62,51v-43,0,-61,-32,-57,-82v-8,3,-23,20,-25,8r-4,-5v9,-5,21,-14,29,-20v2,-69,-15,-159,54,-160v27,0,41,19,41,44v0,56,-38,85,-74,121v-1,39,1,76,38,75xm99,-240v-46,0,-29,79,-32,129v29,-31,55,-55,55,-100v0,-16,-7,-29,-23,-29","w":181},"\u2116":{"d":"212,-98r0,-18r94,0r0,18r-94,0xm161,0r-110,-207r0,207r-24,0r0,-251r24,0r111,203r0,-203r24,0r0,251r-25,0xm207,-193v-1,-38,20,-59,53,-59v32,0,50,20,50,57v0,41,-16,63,-52,63v-36,0,-51,-23,-51,-61xm292,-194v0,-26,-11,-43,-32,-43v-29,1,-38,28,-33,60v2,17,13,29,31,29v27,0,34,-14,34,-46","w":324},"\u212e":{"d":"70,-46v26,52,131,52,161,3r19,0v-21,27,-58,47,-101,47v-74,0,-122,-48,-126,-122v-5,-109,143,-156,215,-85v22,20,36,50,38,89r-206,0r0,68xm150,-230v-33,0,-62,21,-80,42r0,65r159,0r0,-65v-15,-24,-42,-42,-79,-42","w":294},"\u2202":{"d":"91,-139v-34,0,-47,27,-51,61v-7,62,71,83,95,33v8,-16,15,-39,15,-62v-16,-18,-34,-32,-59,-32xm90,4v-47,0,-70,-32,-73,-81v-4,-76,90,-105,133,-52v-1,-66,-29,-122,-100,-109r0,-18v87,-14,125,48,124,130v-1,70,-21,130,-84,130","w":190},"\u2207":{"d":"95,0r-91,-251r205,0r-92,251r-22,0xm37,-229r68,201r2,0r69,-201r-139,0","w":213},"\u220f":{"d":"175,32r0,-261r-123,0r0,261r-24,0r0,-283r171,0r0,283r-24,0","w":227},"\u2211":{"d":"12,32r0,-22r64,-119r-64,-122r0,-20r151,0r0,22r-123,0r64,120r-64,119r127,0r0,22r-155,0","w":178},"\u2212":{"d":"10,-94r0,-19r153,0r0,19r-153,0","w":174},"\u221a":{"d":"120,30r-20,0r-58,-152r-25,9r-7,-17r45,-15r54,142r67,-284r21,0","w":202},"\u221e":{"d":"16,-98v0,-32,22,-53,53,-53v31,0,49,22,63,42v15,-20,32,-42,64,-42v31,0,51,21,51,53v0,32,-21,54,-53,54v-31,0,-46,-24,-62,-41v-17,19,-30,41,-64,41v-32,0,-52,-21,-52,-54xm120,-98v-11,-17,-27,-33,-51,-36v-21,2,-34,14,-36,36v-1,34,42,47,65,25v8,-7,17,-15,22,-25xm230,-98v1,-33,-39,-46,-63,-25v-9,8,-17,16,-24,25v14,15,25,37,51,37v22,0,35,-15,36,-37","w":262},"\u2227":{"d":"173,0r-21,0r-59,-158r-60,158r-20,0r71,-186r18,0","w":185},"\u2228":{"d":"173,-186r-71,186r-18,0r-71,-186r20,0r60,159r59,-159r21,0","w":185},"\u2229":{"d":"92,-187v48,0,81,27,81,74r0,113r-20,0v-3,-74,19,-168,-61,-168v-79,0,-57,95,-60,168r-19,0r0,-113v3,-46,31,-74,79,-74","w":185},"\u222a":{"d":"92,-19v80,0,58,-94,61,-168r20,0r0,113v-2,47,-33,74,-81,74v-48,0,-79,-28,-79,-74r0,-113r19,0v3,73,-20,168,60,168","w":185},"\u222b":{"d":"70,-198v0,104,25,236,-58,253v-7,0,-15,-2,-22,-4v1,-28,46,-2,47,-44v13,-54,8,-132,10,-203v2,-50,20,-95,76,-79v-3,9,-1,20,-18,16v-31,1,-35,27,-35,61","w":113},"\u2248":{"d":"57,-148v33,0,69,40,90,2r15,11v-11,16,-21,29,-44,29v-32,0,-68,-39,-89,-3r-15,-11v12,-18,26,-28,43,-28xm57,-94v33,0,69,40,90,2r15,11v-11,16,-21,29,-44,29v-32,0,-68,-39,-89,-3r-15,-11v12,-18,26,-28,43,-28","w":174},"\u2260":{"d":"16,-16r29,-43r-35,0r0,-19r48,0r32,-48r-80,0r0,-18r94,0r32,-47r20,0r-32,47r40,0r0,18r-53,0r-32,48r85,0r0,19r-98,0r-29,43r-21,0","w":181},"\u2264":{"d":"164,-36r-154,-60r0,-17r154,-60r0,21r-131,48r131,48r0,20xm10,-1r0,-18r154,0r0,18r-154,0","w":181},"\u2265":{"d":"10,-55r131,-49r-131,-48r0,-20r154,60r0,17r-154,60r0,-20xm10,0r0,-19r154,0r0,19r-154,0","w":181},"\u25ca":{"d":"99,18r-21,0r-65,-122r65,-122r21,0r64,122xm89,-200r-50,96r50,95r49,-95","w":178},"\ue000":{"d":"87,-253v41,0,67,26,68,69r0,117v-1,43,-26,69,-68,69v-42,0,-68,-27,-68,-69r0,-117v2,-42,27,-69,68,-69xm87,-20v68,0,41,-99,45,-162v2,-28,-17,-48,-45,-48v-68,0,-46,98,-46,161v0,28,17,50,46,49","w":180},"\ue001":{"d":"93,0r-23,0r0,-226r-34,24r0,-25v17,-10,26,-28,57,-24r0,251","w":154,"k":{"\ue071":14,"\u00ba":18,"\u00aa":14,"\ue07e":7,"\ue07d":11,"\ue070":14,"\ue326":18,"\ue31e":18}},"\ue002":{"d":"132,-189v1,-58,-86,-49,-89,-3r-23,-3v7,-34,30,-54,69,-57v62,-4,85,68,50,111r-94,119r109,0r0,22r-137,0r0,-23v37,-49,79,-93,111,-147v4,-7,4,-13,4,-19","w":180},"\ue003":{"d":"120,-132v22,10,35,29,38,59v8,81,-125,105,-141,26r23,-3v14,51,94,34,94,-22v0,-36,-24,-53,-63,-49r0,-20v35,3,58,-13,60,-44v4,-52,-80,-62,-89,-13r-23,-4v9,-29,31,-48,66,-51v72,-7,91,98,35,121","w":180},"\ue004":{"d":"144,-39r0,39r-23,0r0,-39r-111,0r0,-22r88,-190r25,0r-88,190r86,0r0,-75r23,0r0,75r21,0r0,22r-21,0","w":180},"\ue005":{"d":"156,-96v11,76,-49,121,-114,87v-13,-7,-20,-20,-24,-38r22,-4v5,22,20,33,45,33v39,0,49,-33,49,-73v0,-57,-66,-73,-88,-32r-22,0r0,-128r126,0r0,22r-105,0r0,80v40,-39,120,-12,111,53","w":180},"\ue006":{"d":"66,-136v45,-21,93,11,91,61v-2,48,-25,75,-71,77v-56,2,-83,-64,-58,-114r70,-139r25,0xm88,-18v30,-1,46,-24,46,-54v0,-30,-16,-51,-46,-51v-31,0,-47,20,-47,51v0,30,17,54,47,54","w":180},"\ue007":{"d":"64,0r-25,0r90,-228r-90,0r0,38r-22,0r0,-61r136,0r0,24","w":171},"\ue008":{"d":"123,-129v23,10,38,29,38,60v0,45,-30,68,-74,71v-76,6,-98,-109,-34,-131v-21,-9,-34,-27,-34,-55v0,-42,26,-64,68,-68v71,-6,92,98,36,123xm139,-70v0,-31,-22,-50,-52,-50v-30,0,-51,20,-51,50v0,31,21,51,51,51v31,0,52,-20,52,-51xm134,-184v0,-29,-18,-47,-47,-47v-28,0,-46,19,-46,47v0,28,18,45,46,45v29,0,47,-16,47,-45","w":180},"\ue009":{"d":"112,-116v-45,22,-95,-8,-93,-60v1,-48,25,-75,71,-76v58,-2,85,64,59,114r-71,138r-25,0xm88,-232v-30,1,-47,22,-47,53v0,31,16,52,47,52v30,0,46,-20,46,-52v1,-30,-17,-54,-46,-53","w":180},"\ue00a":{"d":"55,-79r-10,79r-18,0r12,-79r-35,0r0,-16r37,0r8,-61r-34,0r0,-16r36,0r11,-78r17,0r-11,78r46,0v5,-23,8,-54,11,-78r18,0r-11,78r36,0r0,16r-38,0r-9,61r37,0r0,16r-39,0r-10,79r-18,0r11,-79r-47,0xm104,-95r8,-61r-46,0r-8,61r46,0","w":180},"\ue00b":{"d":"95,-20v49,4,61,-74,15,-86v-8,-2,-8,-3,-15,-6r0,92xm81,-228v-45,-3,-58,72,-15,84v5,2,10,4,15,5r0,-89xm164,-66v-1,43,-28,64,-69,68r0,40r-14,0r0,-40v-29,-3,-53,-12,-71,-27r14,-18v14,12,34,22,57,24r0,-96v-34,-10,-66,-22,-66,-66v1,-43,27,-65,66,-69r0,-28r14,0r0,29v23,2,43,7,58,18r-12,20v-13,-8,-29,-15,-46,-17r0,93v39,9,70,21,69,69","w":180},"\ue00c":{"d":"99,-231v-42,0,-56,33,-55,78r82,0r0,17r-82,0r0,22r82,0r0,16r-82,0v-2,45,12,78,55,79v31,1,41,-19,53,-38r20,10v-13,28,-35,49,-73,49v-57,0,-80,-41,-79,-100r-15,0r0,-16r15,0r0,-22r-15,0r0,-17r15,0v-19,-99,117,-135,152,-52r-23,10v-9,-21,-23,-36,-50,-36","w":180},"\ue00d":{"d":"-2,27r6,-19v73,27,58,-81,72,-138r-32,0r0,-19r35,0v3,-60,25,-120,96,-99r-6,21v-51,-18,-64,34,-66,78r39,0r1,19r-43,0v-11,72,-4,188,-102,157","w":180},"\ue00e":{"d":"65,-107v-2,36,-7,61,-25,86r118,0r0,21r-146,0v-2,-29,16,-37,22,-58v5,-15,8,-31,8,-49r-30,0r0,-19r26,0v-4,-23,-14,-37,-16,-63v-5,-71,105,-82,133,-30r-19,13v-18,-35,-92,-36,-89,17v1,25,11,42,16,63r55,0r0,19r-53,0","w":171},"\ue00f":{"d":"146,-20v-13,12,-31,22,-55,22r0,39r-13,0r0,-40v-46,-6,-68,-39,-68,-90v0,-51,22,-84,68,-90r0,-38r13,0r0,37v25,0,41,10,54,22r-14,17v-9,-10,-23,-16,-40,-18r0,140v19,0,30,-8,40,-17xm78,-157v-46,4,-56,79,-33,116v8,12,19,18,33,21r0,-137","w":154},"\ue010":{"d":"29,-251r59,126r56,-126r24,0r-57,124r47,0r0,15r-55,0v-5,8,-4,20,-4,33r59,0r0,16r-59,0r0,63r-23,0r0,-63r-58,0r0,-16r58,0v0,-12,2,-27,-4,-33r-54,0r0,-15r46,0r-59,-124r24,0","w":180},"\ue0d8":{"d":"84,32v-62,-54,-86,-195,-25,-272v9,-11,15,-22,24,-32r12,8v-26,37,-49,83,-49,142v0,62,22,108,49,146","w":99},"\ue0d9":{"d":"21,-271v49,47,83,153,43,235v-12,24,-28,50,-44,68r-12,-8v26,-36,50,-86,49,-145v0,-62,-24,-105,-49,-143","w":99},"\ue0da":{"d":"19,-91r0,-22r99,0r0,22r-99,0","w":137},"\ue0db":{"d":"27,28r0,-290r56,0r0,16r-35,0r0,258r35,0r0,16r-56,0","w":89},"\ue0dc":{"d":"11,28r0,-16r34,0r0,-258r-34,0r0,-16r56,0r0,290r-56,0","w":89},"\ue0dd":{"d":"29,-118v56,16,-11,133,57,131r0,14v-32,4,-51,-7,-51,-37v0,-41,8,-94,-27,-100r0,-14v61,-9,-19,-150,78,-137r0,15v-64,-10,-3,111,-57,128","w":89},"\ue0de":{"d":"86,-110v-63,8,21,151,-79,137r0,-14v65,10,3,-111,57,-131v-31,-12,-24,-63,-25,-107v0,-16,-12,-24,-32,-21r0,-14v55,-10,54,34,52,85v-1,26,6,47,27,51r0,14","w":89},"\ue0df":{"d":"7,-96r0,-22r165,0r0,22r-165,0","w":178},"\ue0e0":{"d":"7,-96r0,-22r345,0r0,22r-345,0","w":358},"\ue0e1":{"d":"32,-121r19,0r2,184r-23,0xm54,-187r0,29r-26,0r0,-29r26,0","w":81},"\ue0e3":{"d":"118,-27r-43,-65r43,-65r22,0r-42,65r42,65r-22,0xm63,-27r-44,-65r44,-65r22,0r-43,65r43,65r-22,0","w":155},"\ue0e4":{"d":"19,-27r43,-65r-43,-65r22,0r45,65r-44,65r-23,0xm75,-27r43,-65r-43,-65r22,0r44,65r-44,65r-22,0","w":155},"\ue23f":{"d":"87,-253v41,0,67,26,68,69r0,117v-1,43,-26,69,-68,69v-42,0,-68,-27,-68,-69r0,-117v2,-42,27,-69,68,-69xm51,-37v23,33,81,15,81,-32r-1,-127xm122,-215v-24,-29,-81,-12,-81,33r1,125","w":174},"\ue24c":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm116,22v1,26,-7,57,25,52r0,19v-45,6,-51,-27,-47,-71r22,0xm4,-256v41,2,44,54,15,75r-12,-6v11,-16,15,-44,-12,-46v3,-9,4,-15,9,-23","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24d":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm120,22v1,26,-7,57,25,52r0,19v-45,6,-51,-26,-47,-71r22,0xm39,-234v-26,1,-24,32,-12,46r-12,6v-28,-20,-26,-71,15,-75","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24e":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm120,22v1,26,-7,57,25,52r0,19v-45,6,-51,-26,-47,-71r22,0xm-55,-256v40,2,44,53,15,74r-13,-6v13,-14,15,-44,-11,-46xm29,-182r-45,-69r28,-5r30,69","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue24f":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm117,22v1,26,-7,57,25,52r0,19v-45,6,-51,-26,-47,-71r22,0xm-18,-234v-26,1,-24,32,-12,46r-12,6v-28,-20,-26,-71,15,-75xm31,-183r-45,-69r28,-5r30,70","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue250":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm116,22v1,26,-7,57,25,52r0,19v-45,6,-51,-27,-47,-71r22,0xm-53,-256v39,4,44,54,14,75r-11,-5v11,-17,14,-44,-12,-47xm-14,-186r32,-70r28,5r-47,69","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue251":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm116,22v1,26,-7,57,25,52r0,19v-45,6,-51,-27,-47,-71r22,0xm-13,-234v-25,2,-24,32,-12,47r-12,5v-29,-20,-27,-71,15,-74xm-13,-187r32,-70r27,5r-46,69","w":215,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue254":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm123,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm-35,-189v11,-14,15,-44,-11,-46r9,-23v40,3,43,53,14,74","w":228},"\ue255":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm123,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm-3,-235v-26,3,-23,31,-11,46r-12,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12","w":228},"\ue256":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm123,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm-100,-190v12,-14,14,-45,-12,-46r9,-22v42,2,45,53,15,74xm-18,-184r-46,-69r28,-5r31,69","w":228},"\ue257":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm123,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm-69,-235v-27,2,-23,31,-11,46r-12,5v-29,-20,-27,-71,15,-74xm-19,-184r-46,-69r29,-5r30,69","w":228},"\ue258":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm123,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm-102,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm-63,-189r33,-69r27,5r-47,69","w":228},"\ue259":{"d":"175,-116r-123,0r0,116r-24,0r0,-251r24,0r0,114r123,0r0,-114r24,0r0,251r-24,0r0,-116xm123,22v1,26,-7,57,26,52r0,19v-45,6,-51,-26,-47,-71r21,0xm-64,-235v-26,2,-24,31,-11,46r-12,5v-29,-20,-27,-71,15,-74xm-64,-189r33,-69r27,5r-47,69","w":228},"\ue25c":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0xm-34,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-45,-12,-46","w":206},"\ue25d":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0xm1,-235v-26,2,-22,32,-11,46r-12,5v-28,-19,-26,-72,15,-74","w":206},"\ue25e":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0xm-93,-190v12,-14,14,-45,-12,-46v5,-7,5,-14,9,-22v42,2,45,53,15,74xm-11,-184r-46,-69r29,-5r29,69","w":206},"\ue25f":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0xm-61,-236v-26,2,-23,31,-12,46r-12,6v-26,-20,-28,-73,15,-74v5,7,5,14,9,22xm-11,-184r-46,-69r29,-5r29,69","w":206},"\ue260":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0xm-88,-258v40,2,43,52,15,74r-12,-5v11,-16,15,-44,-12,-46v4,-8,4,-16,9,-23xm-49,-189r33,-69r27,5r-47,69","w":206},"\ue261":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-39,-18,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0xm-47,-235v-26,2,-24,31,-12,46r-12,5v-27,-20,-27,-72,15,-74xm-47,-189r32,-69r27,5r-46,69","w":206},"\ue264":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm155,-80v-18,-45,-29,-97,-50,-139r-48,139r98,0xm116,22v1,26,-7,57,25,52r0,19v-45,6,-51,-27,-47,-71r22,0","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue265":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm149,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":227},"\ue266":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-21,-32,-82,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm114,22v1,26,-6,56,26,52r0,19v-45,6,-51,-27,-47,-71r21,0","w":206},"\ue2d0":{"d":"54,-252v26,0,45,15,46,42v0,52,8,111,-46,111v-54,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm54,-117v40,0,24,-54,27,-91v1,-16,-11,-26,-27,-26v-40,0,-24,54,-27,91v-1,16,11,26,27,26","w":108},"\ue2d1":{"d":"64,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150","w":100},"\ue2d4":{"d":"93,-123r0,22r-18,0r0,-22r-71,0r0,-16r57,-112r21,0r-58,110r51,0r0,-43r18,0r0,43r14,0r0,18r-14,0","w":109,"k":{"\u2044":-11}},"\ue2d6":{"d":"53,-99v-43,3,-54,-45,-35,-79r41,-73r21,0r-36,65v31,-7,57,9,57,40v0,31,-19,46,-48,47xm82,-144v0,-17,-11,-28,-28,-28v-17,0,-28,11,-28,28v0,17,10,28,28,28v17,0,28,-11,28,-28","w":107,"k":{"\u2044":-4}},"\ue2d7":{"d":"40,-101r-21,0r58,-132r-52,0r0,22r-19,0r0,-40r92,0r0,17","w":102},"\ue2d8":{"d":"55,-99v-48,5,-67,-61,-28,-79v-36,-17,-16,-80,28,-74v43,-5,62,56,27,74v39,17,20,85,-27,79xm55,-116v15,0,30,-12,30,-28v0,-15,-15,-27,-30,-26v-17,1,-31,8,-31,26v-1,16,15,28,31,28xm55,-186v14,0,27,-9,27,-24v0,-15,-13,-26,-27,-25v-15,1,-28,8,-28,25v0,17,12,24,28,24","w":108,"k":{"\u2044":-7}},"\ue2d9":{"d":"64,-166v-29,8,-58,-10,-57,-39v0,-31,20,-46,49,-47v35,-1,57,39,39,70r-47,82r-20,0xm54,-235v-17,0,-28,12,-28,29v0,17,12,27,28,27v16,0,28,-10,28,-27v0,-17,-11,-29,-28,-29","w":106,"k":{"\u2044":18}},"\ue2da":{"d":"64,-251v-41,39,-41,129,-1,168v-6,6,-11,10,-16,1v-37,-32,-50,-114,-12,-156v8,-9,15,-25,29,-13","w":63},"\ue2db":{"d":"13,-257v41,31,57,117,16,163v-6,6,-11,13,-17,19r-11,-7v17,-21,33,-51,33,-85v0,-33,-16,-64,-33,-84","w":63,"k":{"\u2044":-11}},"\ue2dc":{"d":"10,-81r6,-22r-4,0r0,-23r23,0v2,21,-6,32,-12,45r-13,0","w":48},"\ue2dd":{"d":"12,-103r0,-23r23,0r0,23r-23,0","w":46},"\ue2f4":{"d":"54,-151v26,0,45,15,46,42v1,53,8,111,-46,111v-53,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm54,-16v40,0,24,-55,27,-92v1,-16,-11,-26,-27,-26v-40,0,-24,55,-27,92v-1,16,11,26,27,26","w":108},"\ue2f5":{"d":"64,0r-19,0r0,-129r-22,13r0,-19v12,-7,19,-18,41,-15r0,150","w":100},"\ue2f8":{"d":"93,-23r0,23r-18,0r0,-23r-71,0r0,-15r57,-112r21,0r-58,110r51,0r0,-44r18,0r0,44r14,0r0,17r-14,0","w":109},"\ue2fa":{"d":"53,1v-43,0,-54,-45,-35,-78r41,-73r21,0r-36,65v31,-7,57,10,57,40v-1,30,-18,46,-48,46xm82,-44v0,-17,-12,-27,-28,-27v-16,0,-28,10,-28,27v0,17,10,29,28,29v17,0,28,-12,28,-29","w":107},"\ue2fb":{"d":"40,0r-21,0r58,-132r-52,0r0,22r-19,0r0,-40r92,0r0,16","w":102},"\ue2fc":{"d":"55,2v-47,5,-67,-61,-28,-79v-35,-17,-16,-80,28,-74v43,-5,62,56,27,74v39,16,19,84,-27,79xm55,-15v15,0,30,-12,30,-28v0,-15,-15,-26,-30,-26v-16,0,-31,10,-31,26v0,16,15,28,31,28xm55,-85v14,0,27,-9,27,-24v0,-15,-13,-25,-27,-25v-16,0,-28,8,-28,25v-1,17,14,24,28,24","w":108},"\ue2fd":{"d":"64,-65v-30,7,-57,-10,-57,-39v0,-31,20,-46,49,-47v36,-2,57,39,39,70r-47,82r-20,0xm54,-135v-16,0,-28,12,-28,29v0,17,11,28,28,28v17,0,28,-11,28,-28v0,-17,-12,-29,-28,-29","w":106},"\ue2fe":{"d":"63,18r-9,7v-43,-29,-59,-116,-19,-162v8,-9,15,-25,29,-13v-41,38,-41,128,-1,168","w":63},"\ue2ff":{"d":"13,-157v40,32,58,117,16,163v-6,6,-11,14,-17,20r-11,-8v41,-39,42,-129,0,-168","w":63},"\ue300":{"d":"10,19r6,-22r-4,0r0,-22r23,0v2,20,-5,31,-12,44r-13,0","w":48},"\ue301":{"d":"12,-2r0,-23r23,0r0,23r-23,0","w":46},"\uf6c0":{"d":"107,-295r-50,30r-8,-10r51,-43r16,0r49,42r-9,11","w":216},"\uf6c3":{"d":"105,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":211},"\uf6c9":{"d":"88,-276r51,-41r17,17r-58,36","w":215},"\uf6ca":{"d":"155,-319r8,11r-48,43r-16,0r-51,-43r8,-11r50,31","w":215},"\uf6cb":{"d":"125,-275r0,-26r26,0r0,26r-26,0xm61,-275r0,-26r26,0r0,26r-26,0","w":213},"\uf6cc":{"d":"113,-277r0,-26r26,0r0,26r-26,0xm24,-277r0,-26r26,0r0,26r-26,0xm55,-278r42,-52r20,14r-50,47","w":156},"\uf6cd":{"d":"24,-277r0,-26r26,0r0,26r-26,0xm113,-277r0,-26r26,0r0,26r-26,0xm95,-269r-49,-47r20,-14r41,52","w":156},"\uf6ce":{"d":"116,-264r-58,-36r17,-17r51,41","w":205},"\uf6cf":{"d":"110,-276r51,-41r17,17r-58,36xm61,-276r51,-41r17,17r-58,36","w":205},"\uf6d0":{"d":"59,-279r0,-21r95,0r0,21r-95,0","w":213},"\uf6d1":{"d":"156,-306v1,48,-82,59,-95,14v-2,-5,-3,-9,-3,-14r20,0v1,30,57,32,57,0r21,0","w":213},"\uf6d4":{"d":"69,-253v2,32,57,30,58,0r20,0v1,48,-81,58,-95,15v-2,-5,-3,-10,-3,-15r20,0","w":183},"\uf6d9":{"d":"255,-63v-1,24,0,46,27,43r0,20v-30,1,-49,-9,-49,-39r0,-140r22,0r0,116","w":294},"\uf6da":{"d":"43,-271r29,-5r30,69r-13,5","w":185},"\uf6db":{"d":"95,-202r-13,-5r32,-69r28,5","w":185},"\uf6dc":{"d":"33,-223v8,-15,17,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-5,-53,-29,-71,-2","w":180},"\ue0fb":{"d":"21,-47v0,-31,20,-44,43,-58v-10,-10,-24,-24,-24,-42v-1,-48,71,-53,101,-28r-14,18v-20,-22,-78,-15,-60,22v21,28,47,55,70,82v5,-9,9,-21,11,-33r23,3v-4,19,-9,34,-19,47r32,36r-29,0r-19,-21v-33,35,-115,30,-115,-26xm77,-89v-35,9,-47,71,4,70v17,-1,31,-8,41,-17","w":190},"\ue0fc":{"d":"44,-48r-19,0r-3,-140r24,0xm21,0r0,-26r27,0r0,26r-27,0","w":68},"\ue0fe":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue0ff":{"d":"129,-97v19,6,29,24,30,45v1,64,-76,51,-138,52r0,-188v60,0,136,-10,134,50v0,19,-10,34,-26,41xm135,-54v0,-38,-50,-32,-90,-32r0,65v40,0,90,7,90,-33xm131,-137v0,-36,-48,-30,-86,-30r0,60v38,0,87,7,86,-30","w":169},"\ue100":{"d":"37,-69v0,55,78,64,92,19r22,10v-12,24,-32,40,-66,41v-65,2,-71,-52,-71,-121v0,-77,112,-91,136,-29r-22,10v-8,-15,-21,-28,-43,-28v-50,-1,-48,47,-48,98","w":153},"\ue102":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0","w":153},"\ue103":{"d":"45,-167r0,63r87,0r0,20r-87,0r0,84r-24,0r0,-188r126,0r0,21r-102,0","w":147,"k":{"\ue0fe":11,"\ue11f":11,"\ue175":11,"\ue13c":11,"\ue13b":11,"\ue13a":11,"\ue122":11,"\ue121":11,"\ue120":11,"\ue11e":11,"\ue11d":11,"\ue11c":11,"\ue107":25}},"\ue104":{"d":"37,-120v-2,51,-3,102,48,101v34,-1,49,-24,47,-60r-43,0r0,-21r67,0v5,62,-15,101,-71,102v-65,0,-72,-52,-72,-122v0,-76,112,-92,137,-29r-22,10v-6,-16,-22,-28,-43,-28v-30,1,-47,18,-48,47","w":169},"\ue105":{"d":"135,0r0,-85r-90,0r0,85r-24,0r0,-188r24,0r0,83r90,0r0,-83r24,0r0,188r-24,0","w":180},"\ue106":{"d":"21,0r0,-188r23,0r0,188r-23,0","w":64},"\ue107":{"d":"21,-33v21,22,68,16,68,-27r0,-128r23,0v-6,77,27,189,-61,189v-19,0,-34,-6,-46,-18","w":131},"\ue108":{"d":"86,-96r-41,46r0,50r-24,0r0,-188r24,0r0,105r91,-105r29,0r-65,74r74,114r-28,0","w":177},"\ue109":{"d":"21,0r0,-188r24,0r0,167r102,0r0,21r-126,0","w":153,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4,"\ue131":4}},"\ue10a":{"d":"171,0r-1,-136r-53,109r-19,0r-54,-109r0,136r-22,0r0,-188r21,0r64,135r65,-135r22,0r0,188r-23,0","w":213},"\ue10b":{"d":"148,0r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,188r-22,0","w":191},"\ue10c":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50","w":167},"\ue10d":{"d":"21,-188v65,0,138,-9,138,57v0,55,-56,58,-114,55r0,76r-24,0r0,-188xm45,-97v42,1,90,6,90,-35v0,-41,-49,-35,-90,-35r0,70","w":162,"k":{"\ue0fe":14,"\ue11f":14,"\ue175":14,"\ue13c":14,"\ue13b":14,"\ue13a":14,"\ue122":14,"\ue121":14,"\ue120":14,"\ue11e":14,"\ue11d":14,"\ue11c":14}},"\ue10e":{"d":"13,-68v-5,-68,6,-121,71,-121v76,0,82,93,62,157r26,21r-13,15r-25,-20v-11,11,-28,17,-50,17v-46,1,-68,-27,-71,-69xm126,-48v12,-46,12,-119,-42,-119v-49,0,-48,47,-48,98v0,42,47,63,78,38r-27,-21r14,-15","w":169},"\ue10f":{"d":"117,-83r40,83r-26,0r-37,-80r-49,0r0,80r-23,0r0,-188v63,0,137,-12,137,53v0,27,-19,47,-42,52xm45,-100v42,0,91,6,91,-35v1,-40,-51,-31,-91,-32r0,67","w":169},"\ue110":{"d":"130,-153v-27,-23,-108,-20,-89,31v27,32,110,6,108,71v-2,63,-106,63,-145,31r13,-19v23,21,108,34,108,-12v0,-57,-111,-12,-111,-85v0,-59,88,-65,127,-36","w":158},"\ue111":{"d":"82,-167r0,167r-24,0r0,-167r-57,0r0,-21r138,0r0,21r-57,0","w":140,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue112":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168","w":174},"\ue113":{"d":"78,-35r50,-153r25,0r-66,188r-19,0r-66,-188r24,0r50,153r2,0","w":156,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue114":{"d":"117,-147v-17,46,-28,99,-43,147r-21,0r-49,-188r25,0r36,150r42,-150r19,0r44,151r34,-151r25,0r-50,188r-20,0","w":233,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue115":{"d":"124,0r-48,-80r-49,80r-26,0r62,-96r-58,-92r27,0r44,75r44,-75r26,0r-57,92r61,96r-26,0","w":151},"\ue116":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0","w":144,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue117":{"d":"8,0r0,-19r97,-148r-92,0r0,-21r121,0r0,18r-98,149r98,0r0,21r-126,0","w":142},"\ue118":{"d":"130,-153v-27,-23,-108,-20,-89,31v27,32,110,6,108,71v-2,63,-106,63,-145,31r13,-19v23,21,108,34,108,-12v0,-57,-111,-12,-111,-85v0,-59,88,-65,127,-36xm125,-260r11,11r-49,49r-16,0r-51,-50r11,-10r47,36","w":158},"\ue119":{"d":"12,-68v0,-77,14,-120,92,-120r130,0r0,21r-108,0r0,62r92,0r0,20r-92,0r0,64r108,0r0,21v-90,-6,-222,31,-222,-68xm37,-120v-3,58,4,112,64,99r0,-145v-37,-5,-62,12,-64,46","w":241},"\ue11a":{"d":"8,0r0,-19r97,-148r-92,0r0,-21r121,0r0,18r-98,149r98,0r0,21r-126,0xm120,-260r11,11r-48,49r-16,0r-52,-50r12,-10r46,36","w":142},"\ue11b":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0xm26,-217r0,-26r26,0r0,26r-26,0xm93,-217r0,-26r25,0r0,26r-25,0","w":144,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue11c":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm83,-201r-36,-57r24,-8r27,60","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11d":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm77,-206r27,-60r23,8r-36,57","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue11e":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm86,-237r-47,38r-11,-11r51,-50r16,0r48,49r-11,11","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue120":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm106,-217r0,-26r26,0r0,26r-26,0xm39,-217r0,-26r26,0r0,26r-26,0","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue121":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm120,-232v-2,20,-14,33,-35,34v-22,0,-34,-14,-34,-34v0,-20,14,-34,34,-34v20,0,33,14,35,34xm121,-63r-36,-93r-35,93r71,0xm107,-232v0,-12,-10,-21,-22,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,22,-9,22,-21","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue122":{"d":"62,-51r-35,51r-27,0r130,-188r144,0r0,22r-108,0r0,61r92,0r0,20r-92,0r0,64r108,0r0,21r-133,0r0,-51r-79,0xm141,-71r0,-96r-65,96r65,0","w":285},"\ue123":{"d":"37,-69v0,55,78,64,92,19r22,10v-10,24,-32,40,-64,41r-4,14v20,1,35,10,35,29v0,30,-41,32,-67,22r4,-11v16,6,44,10,46,-11v1,-19,-25,-14,-34,-22r7,-21v-56,-5,-60,-56,-60,-121v0,-77,112,-91,136,-29r-22,10v-8,-15,-21,-28,-43,-28v-50,-1,-48,47,-48,98","w":153},"\ue124":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm82,-201r-36,-57r24,-8r27,60","w":153},"\ue125":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm70,-206r27,-60r24,8r-36,57","w":153},"\ue126":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm84,-237r-47,38r-11,-11r51,-50r16,0r48,49r-10,11","w":153},"\ue127":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm104,-217r0,-26r26,0r0,26r-26,0xm37,-217r0,-26r26,0r0,26r-26,0","w":153},"\ue128":{"d":"21,0r0,-188r23,0r0,188r-23,0xm30,-201r-36,-57r24,-8r27,60","w":64},"\ue129":{"d":"21,0r0,-188r23,0r0,188r-23,0xm22,-206r27,-60r24,8r-36,57","w":64},"\ue12a":{"d":"21,0r0,-188r23,0r0,188r-23,0xm32,-237r-47,38r-11,-11r51,-50r16,0r48,49r-11,11","w":64},"\ue12b":{"d":"21,0r0,-188r23,0r0,188r-23,0xm52,-217r0,-26r26,0r0,26r-26,0xm-15,-217r0,-26r26,0r0,26r-26,0","w":64},"\ue12c":{"d":"162,-96v0,62,-19,96,-78,96r-63,0r0,-86r-19,0r0,-18r19,0r0,-84r66,0v55,0,75,32,75,92xm45,-21v53,3,93,-2,93,-54v0,-51,-3,-94,-53,-92r-40,0r0,63r41,0r0,18r-41,0r0,65","w":175},"\ue12e":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm84,-201r-36,-57r23,-8r27,60","w":167},"\ue12f":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm72,-206r27,-60r24,8r-36,57","w":167},"\ue130":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm83,-237r-47,38r-11,-11r51,-50r17,0r48,49r-11,11","w":167},"\ue132":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm104,-217r0,-26r26,0r0,26r-26,0xm37,-217r0,-26r26,0r0,26r-26,0","w":167},"\ue133":{"d":"23,-28v-23,-62,-18,-161,61,-161v21,0,37,7,48,17r15,-19r12,10r-16,22v16,21,8,57,11,91v6,65,-78,87,-120,53r-13,18r-13,-10xm49,-34v24,30,87,12,81,-35v-3,-23,3,-50,-3,-69xm118,-153v-23,-27,-86,-12,-82,33v2,24,-3,53,4,71","w":167},"\ue134":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm88,-201r-36,-57r24,-8r27,60","w":174},"\ue135":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm78,-206r27,-60r24,8r-36,57","w":174},"\ue136":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm87,-237r-47,38r-11,-11r51,-50r16,0r48,49r-10,11","w":174},"\ue137":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm108,-217r0,-26r26,0r0,26r-26,0xm41,-217r0,-26r26,0r0,26r-26,0","w":174},"\ue138":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0xm63,-206r27,-60r23,8r-36,57","w":144,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue139":{"d":"164,-96v-1,55,-58,59,-118,55r0,41r-25,0r0,-187r25,0r0,34v60,-3,119,-1,118,57xm46,-63v41,-1,92,9,92,-34v0,-43,-51,-33,-92,-34r0,68","w":169},"\ue13a":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm37,-215r0,-21r95,0r0,21r-95,0","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13b":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm57,-247v2,31,55,32,57,0r20,0v0,57,-98,55,-98,0r21,0","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13c":{"d":"163,64v-36,2,-41,-45,-19,-64r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188v-25,4,-29,47,-2,46v9,0,14,-3,21,-6r6,15v-7,3,-20,9,-31,9xm121,-63r-36,-93r-35,93r71,0","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue13d":{"d":"37,-69v0,55,78,64,92,19r22,10v-12,24,-32,40,-66,41v-65,2,-71,-52,-71,-121v0,-77,112,-91,136,-29r-22,10v-8,-15,-21,-28,-43,-28v-50,-1,-48,47,-48,98xm70,-206r27,-60r24,8r-36,57","w":153},"\ue13e":{"d":"37,-69v0,55,78,64,92,19r22,10v-12,24,-32,40,-66,41v-65,2,-71,-52,-71,-121v0,-77,112,-91,136,-29r-22,10v-8,-15,-21,-28,-43,-28v-50,-1,-48,47,-48,98xm83,-237r-47,38r-11,-11r51,-50r17,0r48,49r-11,11","w":153},"\ue13f":{"d":"37,-69v0,55,78,64,92,19r22,10v-12,24,-32,40,-66,41v-65,2,-71,-52,-71,-121v0,-77,112,-91,136,-29r-22,10v-8,-15,-21,-28,-43,-28v-50,-1,-48,47,-48,98xm71,-217r0,-26r25,0r0,26r-25,0","w":153},"\ue140":{"d":"37,-69v0,55,78,64,92,19r22,10v-12,24,-32,40,-66,41v-65,2,-71,-52,-71,-121v0,-77,112,-91,136,-29r-22,10v-8,-15,-21,-28,-43,-28v-50,-1,-48,47,-48,98xm131,-260r10,11r-48,49r-16,0r-51,-50r11,-10r47,36","w":153},"\ue141":{"d":"162,-96v0,62,-19,96,-78,96r-63,0r0,-188r66,0v55,0,75,32,75,92xm45,-21v53,3,93,-2,93,-54v0,-51,-3,-94,-53,-92r-40,0r0,146xm130,-260r11,11r-48,49r-16,0r-51,-50r11,-10r47,36","w":175},"\ue142":{"d":"162,-96v0,62,-19,96,-78,96r-63,0r0,-86r-19,0r0,-18r19,0r0,-84r66,0v55,0,75,32,75,92xm45,-21v53,3,93,-2,93,-54v0,-51,-3,-94,-53,-92r-40,0r0,63r41,0r0,18r-41,0r0,65","w":175},"\ue143":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm36,-215r0,-21r95,0r0,21r-95,0","w":153},"\ue144":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm133,-247v1,48,-81,58,-94,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r20,0","w":153},"\ue145":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm72,-217r0,-26r26,0r0,26r-26,0","w":153},"\ue146":{"d":"179,55v-22,15,-66,10,-64,-22v1,-14,6,-23,14,-33r-108,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0v5,20,-13,37,-13,50v0,21,26,20,38,11","w":153},"\ue147":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm130,-260r11,11r-48,49r-16,0r-51,-50r11,-10r47,36","w":153},"\ue148":{"d":"37,-120v-2,51,-3,102,48,101v34,-1,49,-24,47,-60r-43,0r0,-21r67,0v5,62,-15,101,-71,102v-65,0,-72,-52,-72,-122v0,-76,112,-92,137,-29r-22,10v-6,-16,-22,-28,-43,-28v-30,1,-47,18,-48,47xm84,-237r-47,38r-11,-11r51,-50r17,0r48,49r-11,11","w":169},"\ue149":{"d":"37,-120v-2,51,-3,102,48,101v34,-1,49,-24,47,-60r-43,0r0,-21r67,0v5,62,-15,101,-71,102v-65,0,-72,-52,-72,-122v0,-76,112,-92,137,-29r-22,10v-6,-16,-22,-28,-43,-28v-30,1,-47,18,-48,47xm133,-247v1,48,-81,58,-94,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r20,0","w":169},"\ue14a":{"d":"37,-120v-2,51,-3,102,48,101v34,-1,49,-24,47,-60r-43,0r0,-21r67,0v5,62,-15,101,-71,102v-65,0,-72,-52,-72,-122v0,-76,112,-92,137,-29r-22,10v-6,-16,-22,-28,-43,-28v-30,1,-47,18,-48,47xm70,-217r0,-26r26,0r0,26r-26,0","w":169},"\ue14b":{"d":"37,-120v-2,51,-3,102,48,101v34,-1,49,-24,47,-60r-43,0r0,-21r67,0v5,62,-15,101,-71,102v-65,0,-72,-52,-72,-122v0,-76,112,-92,137,-29r-22,10v-6,-16,-22,-28,-43,-28v-30,1,-47,18,-48,47xm81,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":169},"\ue14c":{"d":"135,0r0,-85r-90,0r0,85r-24,0r0,-188r24,0r0,83r90,0r0,-83r24,0r0,188r-24,0xm89,-237r-47,38r-11,-11r51,-50r17,0r48,49r-11,11","w":180},"\ue14d":{"d":"135,0r0,-85r-90,0r0,85r-24,0r0,-144r-20,0r0,-17r20,0r0,-27r24,0r0,27r90,0r0,-27r24,0r0,27r18,0r0,17r-18,0r0,144r-24,0xm135,-105r0,-39r-90,0r0,39r90,0","w":180},"\ue14f":{"d":"21,0r0,-188r23,0r0,188r-23,0xm-15,-215r0,-21r94,0r0,21r-94,0","w":64},"\ue150":{"d":"21,0r0,-188r23,0r0,188r-23,0xm4,-247v2,31,55,32,57,0r20,0v0,57,-98,55,-98,0r21,0","w":64},"\ue151":{"d":"74,55v-22,15,-66,10,-64,-22v1,-14,6,-23,14,-33r-3,0r0,-188r23,0r0,188v-19,11,-23,46,3,46v9,0,14,-3,21,-6","w":64},"\ue152":{"d":"21,0r0,-188r23,0r0,188r-23,0xm20,-217r0,-26r26,0r0,26r-26,0","w":64},"\ue153":{"d":"21,0r0,-188r23,0r0,188r-23,0xm82,-33v21,22,68,16,68,-27r0,-128r23,0v-6,77,27,189,-61,189v-19,0,-34,-6,-46,-18","w":64},"\ue154":{"d":"21,-33v21,22,68,16,68,-27r0,-128r23,0v-6,77,27,189,-61,189v-19,0,-34,-6,-46,-18xm100,-237r-46,38r-12,-11r52,-50r16,0r48,49r-11,11","w":131},"\ue155":{"d":"86,-96r-41,46r0,50r-24,0r0,-188r24,0r0,105r91,-105r29,0r-65,74r74,114r-28,0xm84,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":177},"\ue156":{"d":"21,0r0,-188r24,0r0,167r102,0r0,21r-126,0xm27,-206r27,-60r23,8r-36,57","w":153,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4,"\ue131":4}},"\ue157":{"d":"21,0r0,-188r24,0r0,167r102,0r0,21r-126,0xm82,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":153,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4,"\ue131":4}},"\ue158":{"d":"21,0r0,-188r24,0r0,167r102,0r0,21r-126,0xm108,-123r-14,0r12,-33r-10,0r0,-32r30,0v4,31,-8,48,-18,65","w":153,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4,"\ue131":4}},"\ue159":{"d":"21,0r0,-188r24,0r0,167r102,0r0,21r-126,0xm89,-90r0,-26r26,0r0,26r-26,0","w":153,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4,"\ue131":4}},"\ue15a":{"d":"21,0r0,-61r-22,13r-9,-15r31,-18r0,-107r24,0r0,93r37,-22r9,15r-46,27r0,54r102,0r0,21r-126,0","w":153,"k":{"\ue111":18,"\ue168":18,"\ue169":18,"\ue16a":18,"\ue113":18,"\ue114":18,"\ue171":18,"\ue17a":18,"\ue17b":18,"\ue17c":18,"\ue116":29,"\ue11b":29,"\ue138":29,"\ue172":29,"\ue17d":29,"\ue100":4,"\ue104":4,"\ue10c":4,"\ue10e":4,"\ue119":4,"\ue123":4,"\ue12e":4,"\ue12f":4,"\ue130":4,"\ue132":4,"\ue133":4,"\ue13d":4,"\ue13e":4,"\ue13f":4,"\ue140":4,"\ue148":4,"\ue149":4,"\ue14a":4,"\ue14b":4,"\ue15f":4,"\ue160":4,"\ue161":4,"\ue176":4,"\ue131":4}},"\ue15b":{"d":"148,0r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,188r-22,0xm85,-206r27,-60r24,8r-36,57","w":191},"\ue15c":{"d":"148,0r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,188r-22,0xm95,89r-15,0r13,-32r-10,0r0,-33r29,0v3,31,-7,48,-17,65","w":191},"\ue15d":{"d":"148,0r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,188r-22,0xm143,-260r11,11r-48,49r-16,0r-51,-50r11,-10r46,36","w":191},"\ue15e":{"d":"113,38v13,6,35,10,35,-13r0,-25r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,213v3,36,-36,45,-63,30","w":191},"\ue15f":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm36,-215r0,-21r94,0r0,21r-94,0","w":167},"\ue160":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm132,-247v1,48,-81,58,-94,14v-2,-5,-3,-9,-3,-14r20,0v1,30,56,33,57,0r20,0","w":167},"\ue161":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm55,-206r27,-60r23,8r-35,57xm97,-206r27,-60r23,8r-36,57","w":167},"\ue162":{"d":"117,-83r40,83r-26,0r-37,-80r-49,0r0,80r-23,0r0,-188v63,0,137,-12,137,53v0,27,-19,47,-42,52xm45,-100v42,0,91,6,91,-35v1,-40,-51,-31,-91,-32r0,67xm71,-206r27,-60r24,8r-36,57","w":169},"\ue163":{"d":"117,-83r40,83r-26,0r-37,-80r-49,0r0,80r-23,0r0,-188v63,0,137,-12,137,53v0,27,-19,47,-42,52xm45,-100v42,0,91,6,91,-35v1,-40,-51,-31,-91,-32r0,67xm85,89r-15,0r12,-32r-9,0r0,-33r29,0v3,31,-7,48,-17,65","w":169},"\ue164":{"d":"117,-83r40,83r-26,0r-37,-80r-49,0r0,80r-23,0r0,-188v63,0,137,-12,137,53v0,27,-19,47,-42,52xm45,-100v42,0,91,6,91,-35v1,-40,-51,-31,-91,-32r0,67xm131,-260r11,11r-48,49r-17,0r-51,-50r11,-10r47,36","w":169},"\ue168":{"d":"82,-167r0,167r-24,0r0,-167r-57,0r0,-21r138,0r0,21r-57,0xm67,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":140,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue169":{"d":"82,-167r0,167r-24,0r0,-167r-57,0r0,-21r138,0r0,21r-57,0xm116,-260r11,11r-48,49r-16,0r-51,-50r11,-10r46,36","w":140,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue16a":{"d":"82,-167r0,58r44,0r0,19r-44,0r0,90r-24,0r0,-90r-45,0r0,-19r45,0r0,-58r-57,0r0,-21r138,0r0,21r-57,0","w":140,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue16c":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm41,-215r0,-21r94,0r0,21r-94,0","w":174},"\ue16d":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm60,-247v2,31,56,33,58,0r20,0v1,48,-82,59,-95,14v-2,-5,-3,-9,-3,-14r20,0","w":174},"\ue16e":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm123,-232v0,20,-12,34,-34,34v-21,0,-34,-13,-34,-34v0,-21,14,-34,34,-34v20,0,34,14,34,34xm110,-232v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":174},"\ue16f":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm57,-206r27,-60r23,8r-35,57xm99,-206r27,-60r23,8r-36,57","w":174},"\ue170":{"d":"132,55v-21,15,-66,10,-64,-22v1,-14,5,-22,13,-32v-39,-4,-63,-26,-64,-68r0,-121r23,0v5,67,-23,166,48,168v70,1,40,-103,46,-168r24,0v-4,77,24,181,-59,189v-8,11,-12,20,-12,28v-1,21,27,20,39,11","w":174},"\ue171":{"d":"117,-147v-17,46,-28,99,-43,147r-21,0r-49,-188r25,0r36,150r42,-150r19,0r44,151r34,-151r25,0r-50,188r-20,0xm116,-237r-47,38r-11,-11r51,-50r17,0r48,49r-11,11","w":233,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue172":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0xm72,-237r-47,38r-11,-11r51,-50r16,0r49,49r-11,11","w":144,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue173":{"d":"8,0r0,-19r97,-148r-92,0r0,-21r121,0r0,18r-98,149r98,0r0,21r-126,0xm60,-206r27,-60r24,8r-36,57","w":142},"\ue174":{"d":"8,0r0,-19r97,-148r-92,0r0,-21r121,0r0,18r-98,149r98,0r0,21r-126,0xm65,-217r0,-26r26,0r0,26r-26,0","w":142},"\ue175":{"d":"62,-51r-35,51r-27,0r130,-188r144,0r0,22r-108,0r0,61r92,0r0,20r-92,0r0,64r108,0r0,21r-133,0r0,-51r-79,0xm141,-71r0,-96r-65,96r65,0xm166,-206r27,-60r24,8r-36,57","w":285},"\ue176":{"d":"25,-26v-27,-60,-20,-170,59,-163v23,2,38,7,50,19r16,-21r13,10r-18,24v13,22,6,56,9,89v6,64,-75,87,-118,55r-12,16r-13,-10xm120,-151v-22,-30,-88,-15,-84,31v2,26,-4,55,5,74xm50,-32v28,27,85,9,80,-37v-3,-22,2,-47,-2,-66xm72,-206r27,-60r24,8r-36,57","w":167},"\ue177":{"d":"24,-140r21,0r1,140r-23,0xm48,-188r0,26r-27,0r0,-26r27,0","w":68},"\ue183":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0","w":171,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue184":{"d":"129,-97v19,6,29,24,30,45v1,64,-76,51,-138,52r0,-188v60,0,136,-10,134,50v0,19,-10,34,-26,41xm135,-54v0,-38,-50,-32,-90,-32r0,65v40,0,90,7,90,-33xm131,-137v0,-36,-48,-30,-86,-30r0,60v38,0,87,7,86,-30","w":169},"\ue185":{"d":"45,-167r0,167r-24,0r0,-188r126,0r0,21r-102,0","w":147,"k":{"\ue18a":7,"\ue183":29,"\ue1a1":7,"\ue19f":7,"\ue19b":29,"\ue19a":7,"\ue191":7,"\ue18d":29,"\ue186":29}},"\ue186":{"d":"1,0r73,-188r21,0r73,188r-167,0xm136,-20r-52,-140r-51,140r103,0","w":169,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue187":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0","w":153},"\ue188":{"d":"8,0r0,-19r97,-148r-92,0r0,-21r121,0r0,18r-98,149r98,0r0,21r-126,0","w":142},"\ue189":{"d":"135,0r0,-85r-90,0r0,85r-24,0r0,-188r24,0r0,83r90,0r0,-83r24,0r0,188r-24,0","w":180},"\ue18a":{"d":"46,-106r74,0r0,20r-74,0r0,-20xm13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50","w":167},"\ue18b":{"d":"21,0r0,-188r23,0r0,188r-23,0","w":64},"\ue18c":{"d":"86,-96r-41,46r0,50r-24,0r0,-188r24,0r0,105r91,-105r29,0r-65,74r74,114r-28,0","w":177},"\ue18d":{"d":"86,-154v-22,43,-40,106,-60,154r-25,0r73,-188r21,0r73,188r-25,0","w":169,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue18e":{"d":"171,0r-1,-136r-53,109r-19,0r-54,-109r0,136r-22,0r0,-188r21,0r64,135r65,-135r22,0r0,188r-23,0","w":213},"\ue18f":{"d":"148,0r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,188r-22,0","w":191},"\ue190":{"d":"15,-167r0,-21r129,0r0,21r-129,0xm15,0r0,-21r129,0r0,21r-129,0xm31,-85r0,-20r98,0r0,20r-98,0","w":160},"\ue191":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50","w":167},"\ue192":{"d":"135,0r0,-167r-90,0r0,167r-24,0r0,-188r138,0r0,188r-24,0","w":180},"\ue193":{"d":"21,-188v65,0,138,-9,138,57v0,55,-56,58,-114,55r0,76r-24,0r0,-188xm45,-97v42,1,90,6,90,-35v0,-41,-49,-35,-90,-35r0,70","w":162,"k":{"\ue183":11,"\ue19b":11,"\ue18d":11,"\ue186":11}},"\ue194":{"d":"37,-167v15,19,34,50,49,71r-49,75r97,0r0,21r-126,0r0,-19r50,-78r-49,-73r0,-18r122,0r0,21r-94,0","w":141},"\ue195":{"d":"82,-167r0,167r-24,0r0,-167r-57,0r0,-21r138,0r0,21r-57,0","w":140,"k":{"\ue183":14,"\ue19b":14,"\ue18d":14,"\ue186":14}},"\ue196":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0","w":144,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue197":{"d":"116,-179v52,4,80,28,81,83v1,51,-33,78,-81,81r0,15r-23,0r0,-15v-49,-3,-82,-32,-81,-81v1,-52,30,-79,81,-83r0,-9r23,0r0,9xm93,-159v-56,-3,-74,67,-45,106v9,11,25,16,45,18r0,-124xm116,-35v55,3,76,-70,43,-106v-10,-11,-25,-17,-43,-18r0,124","w":208},"\ue198":{"d":"124,0r-48,-80r-49,80r-26,0r62,-96r-58,-92r27,0r44,75r44,-75r26,0r-57,92r61,96r-26,0","w":151},"\ue199":{"d":"189,-100v-1,40,-32,64,-74,65r0,35r-24,0r0,-35v-43,-2,-73,-25,-73,-68r0,-85r23,0v2,57,-17,131,50,131r0,-131r24,0r0,131v30,1,51,-17,51,-46r0,-85r23,0r0,88","w":207},"\ue19a":{"d":"81,-189v67,-1,76,55,71,126v-1,18,-8,32,-20,42r24,0r0,21r-60,0v0,-11,-3,-23,7,-26v29,-11,25,-54,25,-94v-1,-30,-17,-47,-46,-48v-50,-1,-50,47,-48,97v1,23,13,42,33,48r0,23r-60,0r0,-21r24,0v-25,-16,-21,-59,-21,-99v0,-43,27,-68,71,-69","w":164},"\ue19b":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm77,-206r27,-60r24,8r-36,57","w":171,"k":{"\ue195":11,"\ue196":7,"\ue1a0":7,"\ue1a3":7}},"\ue19c":{"d":"21,0r0,-188r126,0r0,21r-102,0r0,62r87,0r0,20r-87,0r0,64r102,0r0,21r-126,0xm69,-206r27,-60r24,8r-36,57","w":153},"\ue19d":{"d":"135,0r0,-85r-90,0r0,85r-24,0r0,-188r24,0r0,83r90,0r0,-83r24,0r0,188r-24,0xm78,-206r27,-60r24,8r-36,57","w":180},"\ue19e":{"d":"21,0r0,-188r23,0r0,188r-23,0xm23,-206r27,-60r24,8r-36,57","w":64},"\ue19f":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm73,-206r27,-60r23,8r-36,57","w":167},"\ue1a0":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0xm61,-206r27,-60r24,8r-36,57","w":144,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"\ue1a1":{"d":"81,-189v67,-1,76,55,71,126v-1,18,-8,32,-20,42r24,0r0,21r-60,0v0,-11,-3,-23,7,-26v29,-11,25,-54,25,-94v-1,-30,-17,-47,-46,-48v-50,-1,-50,47,-48,97v1,23,13,42,33,48r0,23r-60,0r0,-21r24,0v-25,-16,-21,-59,-21,-99v0,-43,27,-68,71,-69xm69,-206r27,-60r24,8r-36,57","w":164},"\ue1a2":{"d":"21,0r0,-188r23,0r0,188r-23,0xm53,-217r0,-26r26,0r0,26r-26,0xm-13,-217r0,-26r26,0r0,26r-26,0","w":64},"\ue1a3":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0xm26,-217r0,-26r26,0r0,26r-26,0xm93,-217r0,-26r26,0r0,26r-26,0","w":144,"k":{"\ue197":7,"\ue183":18,"\ue186":18,"\ue18d":18,"\ue19b":18,"\ue18a":7,"\ue191":7,"\ue19f":7}},"2":{"d":"132,-189v1,-58,-86,-49,-89,-3r-23,-3v7,-34,30,-54,69,-57v62,-4,85,68,50,111r-94,119r109,0r0,22r-137,0r0,-23v37,-49,79,-93,111,-147v4,-7,4,-13,4,-19","w":174},"3":{"d":"120,-132v22,10,35,29,38,59v8,81,-125,105,-141,26r23,-3v14,51,94,34,94,-22v0,-36,-24,-53,-63,-49r0,-20v35,3,58,-13,60,-44v4,-52,-80,-62,-89,-13r-23,-4v9,-29,31,-48,66,-51v72,-7,91,98,35,121","w":174},"5":{"d":"156,-96v11,76,-49,121,-114,87v-13,-7,-20,-20,-24,-38r22,-4v5,22,20,33,45,33v39,0,49,-33,49,-73v0,-57,-66,-73,-88,-32r-22,0r0,-128r126,0r0,22r-105,0r0,80v40,-39,120,-12,111,53","w":174},"?":{"d":"86,-230v-29,0,-44,23,-49,47r-24,-4v10,-37,31,-65,76,-65v41,0,67,24,67,64v0,60,-65,58,-57,126r-23,0v-9,-67,48,-73,56,-123v-2,-27,-17,-45,-46,-45xm74,0r0,-28r26,0r0,28r-26,0","w":169},"D":{"d":"202,-130v0,82,-21,130,-98,130r-76,0r0,-251r81,0v70,0,93,46,93,121xm52,-22v73,5,125,-4,125,-78v0,-70,-1,-132,-70,-128r-55,0r0,206","w":220,"k":{"J":14}},"o":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71","w":180,"k":{"v":7,"\u1ef3":7,"\u1e85":7,"\u1e83":7,"\u1e81":7,"\u0175":7,"y":7,"w":7}},"\u0153":{"d":"161,-83v-8,59,60,82,97,49r14,16v-32,32,-106,23,-123,-16v-11,22,-33,36,-64,36v-50,0,-71,-35,-71,-91v0,-56,22,-91,75,-91v30,0,50,16,62,35v11,-22,32,-35,60,-35v54,0,75,39,72,97r-122,0xm137,-89v1,-41,-15,-71,-49,-71v-38,0,-52,30,-52,71v0,41,12,71,50,71v39,0,50,-30,51,-71xm260,-102v5,-50,-52,-74,-84,-43v-9,10,-14,24,-15,43r99,0","w":298},"\u00bf":{"d":"76,76v-41,0,-68,-24,-68,-64v0,-58,64,-60,57,-126r24,0v10,68,-56,71,-56,123v0,27,16,45,46,44v29,-2,45,-22,49,-47r23,4v-7,39,-34,66,-75,66xm90,-177r0,29r-26,0r0,-29r26,0","w":158},"\u00f0":{"d":"145,-221v33,69,35,227,-60,223v-52,-2,-72,-36,-71,-89v1,-52,24,-82,74,-84v27,-1,42,15,53,30v0,-26,-4,-50,-14,-66r-24,17r-7,-9r23,-17v-12,-15,-26,-23,-52,-27r4,-19v29,2,52,15,66,31r27,-19r8,10xm138,-87v0,-39,-16,-64,-50,-64v-36,0,-51,26,-51,65v0,40,13,68,49,68v37,0,51,-30,52,-69","w":176},"\u03b4":{"d":"87,-18v61,4,64,-104,25,-130v-38,-26,-75,12,-75,62v0,41,13,66,50,68xm63,-170v-47,-19,-31,-91,31,-91v23,0,38,5,53,13r-10,20v-25,-22,-97,-13,-76,28v28,30,86,29,95,80v11,61,-6,122,-70,122v-91,0,-93,-155,-23,-172","w":175},"\u03b6":{"d":"158,-237v-49,46,-123,89,-118,179v14,39,75,36,101,61v15,26,-10,50,-21,66r-18,-10v8,-16,33,-41,1,-51v-42,-13,-94,-28,-89,-84v7,-76,61,-119,112,-160r-99,0r0,-20r131,0r0,19","w":138,"k":{"\u03ac":11,"\u1ff7":11,"\u1ff6":11,"\u1fb7":11,"\u1fb6":11,"\u1fa7":11,"\u1fa6":11,"\u1f87":11,"\u1f86":11,"\u1f67":11,"\u1f66":11,"\u1f07":11,"\u1f06":11,"\u03c9":11,"\u03c6":11,"\u03c3":11,"\u1ff4":11,"\u1ff3":11,"\u1ff2":11,"\u1fb4":11,"\u1fb3":11,"\u1fb2":11,"\u1fb1":11,"\u1fb0":11,"\u1fa5":11,"\u1fa4":11,"\u1fa3":11,"\u1fa2":11,"\u1fa1":11,"\u1fa0":11,"\u1f85":11,"\u1f84":11,"\u1f83":11,"\u1f82":11,"\u1f81":11,"\u1f80":11,"\u1f7d":11,"\u1f7c":11,"\u1f79":11,"\u1f78":11,"\u1f71":11,"\u1f70":11,"\u1f65":11,"\u1f64":11,"\u1f63":11,"\u1f62":11,"\u1f61":11,"\u1f60":11,"\u1f45":11,"\u1f44":11,"\u1f43":11,"\u1f42":11,"\u1f41":11,"\u1f40":11,"\u1f05":11,"\u1f04":11,"\u1f03":11,"\u1f02":11,"\u1f01":11,"\u1f00":11,"\u03ce":11,"\u03bf":11,"\u03bb":-14,"\u03b1":11,"\u03cc":11}},"\u03b8":{"d":"17,-132v0,-69,10,-130,76,-130v64,0,70,59,70,127v0,73,-6,137,-74,137v-69,0,-72,-64,-72,-134xm39,-127v-7,66,14,129,76,102v23,-19,27,-58,27,-102r-103,0xm142,-148v4,-58,-19,-110,-74,-87v-23,16,-30,46,-29,87r103,0","w":180},"\u03be":{"d":"130,-133v-85,-24,-128,80,-52,108v33,11,92,24,61,70v-5,8,-10,16,-16,24r-18,-10v9,-14,31,-40,0,-50v-43,-15,-94,-25,-92,-84v1,-34,19,-57,46,-68v-66,-23,-38,-118,36,-118v21,0,41,3,56,13r-11,20v-34,-21,-97,-14,-95,32v2,38,40,46,85,43r0,20","w":145},"\u03c1":{"d":"21,72v8,-100,-33,-252,72,-252v52,0,74,34,72,92v-2,54,-19,88,-72,90v-24,2,-38,-14,-49,-24r0,94r-23,0xm142,-88v0,-42,-15,-72,-49,-72v-37,0,-49,32,-49,71v-1,40,9,69,47,70v39,1,51,-30,51,-69","w":182,"k":{"\u03b8":-4}},"\u03c2":{"d":"105,53v11,-15,27,-39,-2,-48v-44,-15,-84,-29,-84,-92v0,-82,82,-119,138,-72r-14,18v-37,-36,-101,-10,-101,52v0,64,65,60,99,89v16,24,-6,47,-18,63","w":152},"\u03c3":{"d":"15,-88v-1,-55,23,-91,73,-91r84,0r0,21v-12,1,-28,-2,-38,1v21,10,26,36,25,70v0,55,-20,89,-72,89v-53,0,-71,-34,-72,-90xm137,-87v0,-40,-11,-70,-49,-70v-36,0,-50,27,-50,68v0,42,13,69,49,70v39,0,50,-28,50,-68","w":180},"\u03c6":{"d":"117,-18v56,3,67,-68,49,-117v-6,-16,-26,-25,-49,-24r0,141xm196,-89v0,62,-25,86,-79,91r0,70r-23,0r0,-70v-95,14,-105,-154,-30,-178r8,19v-45,12,-45,117,-4,133v8,3,17,6,26,6r0,-162v71,-5,102,22,102,91","w":211},"\u03c9":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116","w":268},"\u0402":{"d":"214,-82v0,-74,-85,-79,-115,-35r0,117r-24,0r0,-229r-74,0r0,-22r197,0r0,22r-99,0r1,85v14,-15,37,-23,63,-25v91,-7,99,150,24,170v-12,4,-26,6,-43,5r0,-20v46,2,70,-23,70,-68","w":250},"\u040b":{"d":"99,-144v39,-37,135,-39,135,39r0,105r-23,0v-5,-61,21,-151,-48,-147v-27,1,-47,11,-64,27r0,120r-24,0r0,-229r-74,0r0,-22r197,0r0,22r-99,0r0,85","w":254},"\u042f":{"d":"166,-229v-57,-1,-121,-8,-120,49v1,54,65,45,120,45r0,-94xm66,-120v-72,-20,-48,-131,31,-131r93,0r0,251r-24,0r0,-114v-49,-1,-94,-5,-108,42r-21,72r-25,0v15,-43,14,-103,54,-120","w":217},"\u0431":{"d":"139,-66v4,-45,-3,-86,-48,-86v-38,1,-50,30,-51,67v-1,41,11,67,50,67v30,0,46,-19,49,-48xm40,-145v11,-14,30,-29,54,-28v47,1,68,34,68,87v0,56,-23,85,-73,88v-99,6,-84,-158,-48,-214v19,-30,66,-37,104,-52r7,18v-53,19,-111,31,-112,101","w":178},"\u0444":{"d":"16,-89v0,-57,26,-88,78,-92r0,-80r23,0r0,80v54,3,78,34,78,93v0,56,-25,90,-78,91r0,69r-23,0r0,-69v-55,-2,-78,-33,-78,-92xm117,-18v67,7,72,-112,26,-136v-8,-4,-17,-5,-26,-5r0,141xm94,-159v-67,-8,-73,112,-25,136v8,4,16,5,25,5r0,-141","w":210},"\u044e":{"d":"137,2v-46,0,-69,-34,-69,-83r-25,0r0,81r-22,0r0,-178r22,0r0,79r25,0v2,-48,22,-80,70,-81v53,-1,70,37,69,92v-1,56,-19,90,-70,90xm184,-89v0,-46,-9,-71,-46,-71v-36,0,-47,29,-47,71v0,42,11,71,47,71v36,0,46,-31,46,-71","w":223},"\u044f":{"d":"46,-84v-51,-15,-31,-94,24,-94r84,0r0,178r-23,0r0,-77v-36,2,-75,-10,-85,27r-13,50r-23,0v11,-29,9,-71,36,-84xm131,-158v-41,1,-92,-9,-92,32v0,41,53,28,92,30r0,-62","w":174},"\u0452":{"d":"96,-158v-64,0,-45,92,-48,158r-22,0r0,-208r-22,0r0,-19r22,0r0,-34r22,0r0,34r88,0r0,19r-88,0v1,19,-2,42,1,59v11,-19,28,-29,55,-29v50,0,70,36,69,91v-1,56,-27,92,-87,90r0,-20v45,2,64,-25,64,-69v0,-43,-14,-72,-54,-72","w":194},"\u045b":{"d":"98,-155v-68,0,-45,91,-49,155r-22,0r0,-208r-22,0r0,-20r22,0r0,-33r22,0r0,33r82,0r0,20r-82,0v1,19,-2,42,1,59v25,-45,116,-35,116,33r0,116r-23,0v-6,-61,24,-155,-45,-155","w":185},"\ue0e2":{"d":"76,65v-41,0,-68,-24,-68,-64v0,-59,65,-59,57,-126r24,0v9,67,-56,71,-56,123v0,27,16,45,46,44v28,-2,44,-22,49,-46r23,4v-7,38,-35,65,-75,65xm90,-188r0,29r-26,0r0,-29r26,0","w":158},"\ue0fd":{"d":"71,-168v-22,0,-30,17,-34,34r-23,-4v0,-65,116,-68,115,-2v-1,44,-50,44,-43,95r-25,0v-8,-50,42,-55,42,-93v0,-20,-11,-30,-32,-30xm60,0r0,-26r26,0r0,26r-26,0","w":141},"\ue101":{"d":"162,-96v0,62,-19,96,-78,96r-63,0r0,-188r66,0v55,0,75,32,75,92xm45,-21v53,3,93,-2,93,-54v0,-51,-3,-94,-53,-92r-40,0r0,146","w":175},"\ue178":{"d":"66,-19v23,0,30,-18,34,-35r23,4v1,63,-116,72,-114,3v0,-45,49,-44,42,-96r25,0v8,51,-42,56,-42,94v0,20,11,30,32,30xm77,-188r0,26r-26,0r0,-26r26,0","w":132},"\ue2d2":{"d":"81,-213v-1,-30,-52,-25,-54,1r-19,-2v3,-46,96,-51,92,1v-3,44,-50,63,-68,95r67,0r0,17r-93,0r0,-16r66,-76v6,-6,9,-13,9,-20","w":107,"k":{"\u2044":-18}},"\ue2d3":{"d":"80,-179v40,18,17,85,-29,80v-24,-3,-40,-12,-45,-33r19,-3v6,29,58,22,57,-9v-1,-22,-17,-30,-41,-27r0,-16v43,10,52,-48,12,-48v-12,1,-24,8,-27,19r-18,-3v5,-19,22,-33,45,-33v46,0,61,55,27,73","w":108},"\ue2d5":{"d":"99,-159v14,63,-78,83,-94,27r18,-3v3,12,14,19,28,19v24,1,29,-17,30,-40v2,-33,-41,-38,-54,-16r-17,0r0,-79r86,0r0,17r-68,0r0,40v28,-20,76,-3,71,35","w":106},"\ue2f6":{"d":"8,-114v3,-46,97,-49,93,1v-4,44,-50,63,-69,96r67,0r0,17r-92,0r0,-16r65,-76v17,-16,8,-43,-18,-42v-13,1,-24,11,-27,23","w":107},"\ue2f7":{"d":"79,-78v40,18,19,84,-28,80v-24,-2,-41,-12,-45,-33r18,-3v7,30,57,22,57,-10v0,-22,-16,-29,-40,-27r0,-15v22,2,38,-5,39,-24v0,-29,-48,-31,-54,-5r-19,-3v6,-18,22,-31,45,-33v46,-5,61,56,27,73","w":108},"\ue2f9":{"d":"99,-58v14,62,-78,82,-94,27r19,-4v3,13,13,21,27,21v23,0,30,-17,30,-41v0,-32,-40,-39,-53,-16r-18,0r0,-78r86,0r0,16r-68,0r0,40v28,-20,76,-4,71,35","w":106},"\u04d9":{"d":"87,2v-52,0,-75,-38,-72,-97r122,0v8,-61,-58,-82,-97,-50r-14,-16v51,-43,142,-12,134,71v-5,55,-22,92,-73,92xm39,-77v-6,51,52,76,83,43v9,-10,14,-24,15,-43r-98,0","w":173},"\u1e80":{"d":"225,0r-22,0r-57,-207r-56,207r-22,0r-62,-251r26,0r48,207r56,-207r21,0r58,207r46,-207r26,0xm155,-264r-58,-36r17,-17r51,41","w":293,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,"\ue131":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"o":11,"\u00f0":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue11f":18,"\ue0ff":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue101":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11,"\ue16b":11}},"\u1e81":{"d":"185,-32v17,-46,28,-98,43,-146r25,0r-56,178r-23,0r-47,-145r-46,145r-22,0r-56,-178r24,0r44,144r46,-144r22,0xm123,-201r-36,-57r24,-8r27,60","w":255,"k":{"e":7}},"\u1e82":{"d":"225,0r-22,0r-57,-207r-56,207r-22,0r-62,-251r26,0r48,207r56,-207r21,0r58,207r46,-207r26,0xm134,-276r51,-41r17,17r-58,36","w":293,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,"\ue131":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"o":11,"\u00f0":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue11f":18,"\ue0ff":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue101":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11,"\ue16b":11}},"\u1e83":{"d":"185,-32v17,-46,28,-98,43,-146r25,0r-56,178r-23,0r-47,-145r-46,145r-22,0r-56,-178r24,0r44,144r46,-144r22,0xm119,-206r27,-60r24,8r-36,57","w":255,"k":{"e":7}},"\u1e84":{"d":"225,0r-22,0r-57,-207r-56,207r-22,0r-62,-251r26,0r48,207r56,-207r21,0r58,207r46,-207r26,0xm101,-275r0,-26r26,0r0,26r-26,0xm165,-275r0,-26r26,0r0,26r-26,0","w":293,"k":{"\u0129":7,"\u012d":7,"\u012b":7,"\u0159":7,"\u0149":7,"\u00ec":7,"\u00ef":7,"\u00ee":7,"r":7,"\ue100":11,"\ue104":11,"\ue10c":11,"\ue10e":11,"\ue119":11,"\ue123":11,"\ue12e":11,"\ue12f":11,"\ue130":11,"\ue132":11,"\ue133":11,"\ue13d":11,"\ue13e":11,"\ue13f":11,"\ue140":11,"\ue148":11,"\ue149":11,"\ue14a":11,"\ue14b":11,"\ue15f":11,"\ue160":11,"\ue161":11,"\ue176":11,"\ue131":11,",":18,".":18,"\u2026":18,"A":14,"\u00c4":14,"\u00c6":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c5":14,"\u0100":14,"\u0102":14,"\u0104":14,"\u01fc":14,"\u00c3":14,"a":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e6":14,"\u00e1":14,"\u00e5":14,"\u0101":14,"\u0103":14,"\u0105":14,"\u01fd":14,"\u00e3":14,"c":11,"d":11,"e":11,"g":11,"q":11,"\u00e7":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"\u00f4":11,"\u00f6":11,"\u00f8":11,"\u00f2":11,"\u00f3":11,"\u0107":11,"\u0109":11,"\u010b":11,"\u010d":11,"\u010f":11,"\u0111":11,"\u0113":11,"\u0115":11,"\u0117":11,"\u0119":11,"\u011b":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u01ff":11,"o":11,"\u00f0":11,"\u01a1":11,"\u00f5":11,"i":7,"m":7,"n":7,"p":7,"\u00ed":7,"\u012f":7,"\u0133":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"s":14,"\u0161":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0219":14,"\ue0fe":18,"\ue11c":18,"\ue11d":18,"\ue11e":18,"\ue120":18,"\ue121":18,"\ue122":18,"\ue13a":18,"\ue13b":18,"\ue13c":18,"\ue175":18,"\ue11f":18,"\ue0ff":11,"\ue102":11,"\ue103":11,"\ue108":11,"\ue109":11,"\ue10d":11,"\ue10f":11,"\ue124":11,"\ue125":11,"\ue126":11,"\ue127":11,"\ue12c":11,"\ue139":11,"\ue141":11,"\ue142":11,"\ue143":11,"\ue144":11,"\ue145":11,"\ue146":11,"\ue147":11,"\ue153":11,"\ue156":11,"\ue157":11,"\ue158":11,"\ue159":11,"\ue15a":11,"\ue162":11,"\ue163":11,"\ue164":11,"\ue101":11,"\ue110":18,"\ue118":18,"\ue165":18,"\ue166":18,"\ue167":18,"\ue179":18,"\ue112":11,"\ue16c":11,"\ue16d":11,"\ue16e":11,"\ue16f":11,"\ue170":11,"\ue16b":11}},"\u1e85":{"d":"185,-32v17,-46,28,-98,43,-146r25,0r-56,178r-23,0r-47,-145r-46,145r-22,0r-56,-178r24,0r44,144r46,-144r22,0xm82,-217r0,-26r26,0r0,26r-26,0xm148,-217r0,-26r26,0r0,26r-26,0","w":255,"k":{"e":7}},"\u1ef2":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm111,-264r-58,-36r17,-17r51,41","w":177,"k":{"\u0129":11,"\u012d":11,"\u012b":11,"\u0157":11,"\u0155":11,"\u0149":11,"\u00ec":11,"\u00ef":11,"\u00ee":11,"r":11,"v":14,"w":14,"y":14,"\u0175":14,"\u1e81":14,"\u1e83":14,"\u1e85":14,"\u1ef3":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d6":7,"\u0152":7,"\u00d8":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u01fe":7,"\u01a0":7,"\u00d5":7,",":29,".":29,"\u2026":29,"A":18,"\u00c4":18,"\u00c6":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c5":18,"\u0100":18,"\u0102":18,"\u0104":18,"\u01fc":18,"\u00c3":18,"a":25,"\u00e0":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e1":25,"\u00e5":25,"\u0101":25,"\u0103":25,"\u0105":25,"\u01fd":25,"\u00e3":25,"c":22,"d":22,"e":22,"g":22,"q":22,"\u00e7":22,"\u00e9":22,"\u00e8":22,"\u00ea":22,"\u00eb":22,"\u00f4":22,"\u00f6":22,"\u00f8":22,"\u00f2":22,"\u00f3":22,"\u0107":22,"\u0109":22,"\u010b":22,"\u010d":22,"\u010f":22,"\u0111":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"\u011b":22,"\u011d":22,"\u011f":22,"\u0121":22,"\u0123":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u01ff":22,"o":22,"\u00f0":22,"\u01a1":22,"\u00f5":22,"i":11,"m":11,"n":11,"p":11,"\u00ed":11,"\u012f":11,"\u0133":11,"\u0144":11,"\u0146":11,"\u0148":11,"\u014b":11,"\u0159":11,"s":18,"\u0161":18,"\u015b":18,"\u015d":18,"\u015f":18,"\u0219":18,"u":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"\u00fa":14,"\u016b":14,"\u016d":14,"\u016f":14,"\u0171":14,"\u0173":14,"\u01b0":14,"\u0169":14}},"\u1ef3":{"d":"76,39v-9,26,-24,34,-56,33r0,-20v37,6,37,-29,47,-53r-66,-177r25,0r52,148r51,-148r24,0xm82,-201r-35,-57r23,-8r27,60","w":154,"k":{"e":7}},"\ue17a":{"d":"117,-147v-17,46,-28,99,-43,147r-21,0r-49,-188r25,0r36,150r42,-150r19,0r44,151r34,-151r25,0r-50,188r-20,0xm106,-206r27,-60r24,8r-36,57","w":233,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue17b":{"d":"117,-147v-17,46,-28,99,-43,147r-21,0r-49,-188r25,0r36,150r42,-150r19,0r44,151r34,-151r25,0r-50,188r-20,0xm110,-201r-35,-57r23,-8r27,60","w":233,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue17c":{"d":"117,-147v-17,46,-28,99,-43,147r-21,0r-49,-188r25,0r36,150r42,-150r19,0r44,151r34,-151r25,0r-50,188r-20,0xm70,-217r0,-26r26,0r0,26r-26,0xm136,-217r0,-26r26,0r0,26r-26,0","w":233,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\ue17d":{"d":"84,-77r0,77r-23,0r0,-77r-60,-111v16,0,28,-4,31,12r40,79r47,-91r25,0xm68,-201r-36,-57r24,-8r27,60","w":144,"k":{"\ue0fe":14,"\ue11c":14,"\ue11d":14,"\ue11e":14,"\ue120":14,"\ue121":14,"\ue122":14,"\ue13a":14,"\ue13b":14,"\ue13c":14,"\ue175":14,"\ue11f":14}},"\u0259":{"d":"87,2v-52,0,-75,-38,-72,-97r122,0v8,-61,-58,-82,-97,-50r-14,-16v51,-43,142,-12,134,71v-5,55,-22,92,-73,92xm39,-77v-6,51,52,76,83,43v9,-10,14,-24,15,-43r-98,0","w":173},"\u02b9":{"d":"77,-241r-47,92r-16,-4r35,-95","w":83},"\u2103":{"d":"223,-21v30,1,49,-16,57,-39r23,10v-11,31,-40,52,-81,52v-85,2,-87,-75,-87,-163v0,-99,136,-123,167,-41r-22,10v-9,-20,-28,-37,-57,-37v-70,0,-66,69,-64,138v1,43,19,70,64,70xm66,-252v28,0,46,18,46,46v0,28,-18,46,-46,46v-28,0,-46,-18,-46,-46v0,-28,18,-46,46,-46xm66,-176v17,0,32,-13,31,-30v-1,-18,-13,-31,-31,-31v-17,0,-30,12,-30,31v-1,16,14,30,30,30","w":308},"\u2117":{"d":"100,-195v53,-1,109,-6,108,46v0,44,-41,49,-89,46r0,63r-19,0r0,-155xm119,-120v33,1,70,4,70,-29v0,-34,-37,-29,-70,-29r0,58xm268,-123v0,77,-47,126,-124,126v-78,0,-125,-50,-125,-126v0,-76,47,-126,125,-126v77,0,124,49,124,126xm249,-123v0,-65,-39,-109,-105,-109v-66,0,-106,44,-106,109v0,65,40,109,106,109v66,0,105,-44,105,-109","w":285},"\u2126":{"d":"47,-22v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-68,-63,-69v-67,-1,-67,66,-64,135v2,34,16,59,42,69r0,26r-71,0r0,-22r37,0","w":206},"\u212b":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm140,-288v0,21,-13,34,-34,34v-22,0,-34,-14,-34,-34v0,-20,14,-34,34,-34v20,0,34,12,34,34xm127,-288v0,-13,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-8,21,-21","w":213},"\u2109":{"d":"161,-228r0,92r112,0r0,21r-112,0r0,115r-25,0r0,-251r156,0r0,23r-131,0xm66,-252v28,0,46,18,46,46v0,28,-18,46,-46,46v-28,0,-46,-18,-46,-46v0,-28,18,-46,46,-46xm66,-176v17,0,32,-13,31,-30v-1,-18,-13,-31,-31,-31v-17,0,-30,12,-30,31v-1,16,14,30,30,30","w":294},"\u2105":{"d":"148,-62v0,-39,16,-64,53,-64v36,0,50,25,51,62v0,41,-16,67,-54,67v-35,0,-50,-24,-50,-65xm17,-189v-6,-58,59,-83,97,-49r-12,15v-23,-23,-72,-7,-65,34v-6,41,41,59,65,34r14,13v-37,35,-105,12,-99,-47xm232,-64v1,-26,-8,-44,-32,-44v-24,0,-32,20,-33,46v0,26,7,46,32,46v27,0,33,-20,33,-48xm68,8r-17,0r152,-266r18,0","w":268},"\u2023":{"d":"152,-100r-123,67r0,-129","w":163},"\u2190":{"d":"276,-125r0,19r-215,0r56,55r-14,14r-77,-79r77,-78r14,14r-56,55r215,0","w":297},"\u2191":{"d":"97,0r-19,0r0,-215r-54,56r-14,-14r78,-78r78,78r-13,14r-56,-56r0,215","w":174},"\u2192":{"d":"241,-125r-56,-55r14,-14r78,78r-78,79r-14,-14r56,-55r-215,0r0,-19r215,0","w":297},"\u2193":{"d":"97,-36r56,-57r13,14r-78,78r-78,-78r14,-14r55,57r0,-216r18,0r0,216","w":174},"\u2196":{"d":"76,-212r198,197r-13,13r-198,-197r0,78r-18,0r0,-110r110,0r0,19r-79,0","w":302},"\u2198":{"d":"242,-21r-198,-197r14,-13r197,197r0,-78r19,0r0,110r-111,0r0,-19r79,0","w":302},"\u21a9":{"d":"289,-194v0,53,-11,89,-61,88r-177,0r56,55r-14,14r-78,-79r78,-78r14,14r-56,55r179,0v39,2,39,-32,39,-71v0,-35,-27,-39,-63,-37r0,-18v50,-4,83,9,83,57","w":302},"\u21aa":{"d":"35,-196v0,39,1,71,39,71r180,0r-56,-55r13,-14r78,78r-78,79r-13,-14r56,-55r-177,0v-50,1,-61,-35,-61,-88v0,-48,32,-62,83,-57r0,18v-36,-2,-64,2,-64,37","w":299},"\u21b3":{"d":"63,-125r192,0r-56,-55r14,-14r78,78r-78,79r-14,-14r56,-55r-212,0r0,-143r20,0r0,124","w":302},"\u21b5":{"d":"264,-249r19,0r0,143r-212,0r56,55r-14,14r-77,-79r77,-78r14,14r-56,55r193,0r0,-124","w":302},"\u21de":{"d":"99,-133r41,0r0,19r-41,0r0,32r41,0r0,19r-41,0r0,63r-19,0r0,-63r-40,0r0,-19r40,0r0,-32r-40,0r0,-19r40,0r0,-81r-55,55r-13,-14r77,-78r78,78r-13,14r-55,-55r0,81","w":174},"\u21df":{"d":"99,-36r55,-55r13,13r-78,78r-77,-78r13,-13r55,55r0,-81r-40,0r0,-19r40,0r0,-32r-40,0r0,-20r40,0r0,-63r19,0r0,63r41,0r0,20r-41,0r0,32r41,0r0,19r-41,0r0,81","w":174},"\u21e0":{"d":"112,-125r0,19r-56,0r56,55r-13,14r-78,-79r78,-77r13,13r-56,55r56,0xm188,-125r32,0r0,19r-32,0r0,-19xm133,-125r32,0r0,19r-32,0r0,-19xm242,-125r29,0r0,19r-29,0r0,-19","w":296},"\u21e1":{"d":"96,-138r0,32r-19,0r0,-32r19,0xm96,-84r0,33r-19,0r0,-33r19,0xm96,-29r0,29r-19,0r0,-29r19,0xm96,-160r-19,0r0,-55r-55,56r-13,-13r78,-79r78,79r-13,13r-56,-56r0,55","w":172},"\u21e2":{"d":"159,-106r-32,0r0,-19r32,0r0,19xm104,-106r-32,0r0,-19r32,0r0,19xm50,-106r-29,0r0,-19r29,0r0,19xm236,-125r-57,-55r14,-14r78,78r-78,79r-14,-14r57,-55r-56,0r0,-19r56,0","w":296},"\u21e3":{"d":"151,-91r14,13r-78,78r-78,-78r13,-13r55,56r0,-56r19,0r0,56xm77,-167r0,-32r19,0r0,32r-19,0xm77,-113r0,-32r19,0r0,32r-19,0xm77,-221r0,-29r19,0r0,29r-19,0","w":172},"\u21e4":{"d":"27,-38r0,-155r20,0r0,155r-20,0xm282,-125r0,19r-182,0r56,55r-14,14r-78,-79r78,-78r14,14r-56,55r182,0","w":292},"\u21e5":{"d":"263,-38r0,-155r19,0r0,155r-19,0xm210,-125r-57,-55r14,-14r78,78r-78,79r-14,-14r57,-55r-182,0r0,-19r182,0","w":292},"\u21e7":{"d":"16,-116r131,-135r131,135r-65,0r0,116r-132,0r0,-116r-65,0xm147,-228r-94,98r44,0r0,114r100,0r0,-114r44,0","w":292},"\u21ea":{"d":"80,4r131,0r0,64r-131,0r0,-64xm96,19r0,34r100,0r0,-34r-100,0xm15,-116r131,-135r130,135r-65,0r0,86r-131,0r0,-86r-65,0xm146,-228r-95,98r45,0r0,85r100,0r0,-85r44,0","w":294},"\u2303":{"d":"39,-149r104,-104r104,104r-15,15r-89,-89r-89,89","w":286},"\u2318":{"d":"40,-204v0,28,27,32,58,29v3,-31,-1,-58,-29,-58v-16,0,-29,13,-29,29xm226,-233v-27,0,-32,27,-29,58v31,3,59,-1,59,-29v0,-16,-14,-29,-30,-29xm69,-17v27,0,32,-28,29,-59v-31,-2,-58,1,-58,29v0,16,13,31,29,30xm256,-47v0,-28,-28,-32,-59,-29v-3,31,2,58,29,59v16,1,30,-14,30,-30xm177,-96r0,-59r-59,0r0,59r59,0xm276,-204v0,38,-33,54,-79,49r0,59v45,-3,79,7,79,49v-1,31,-18,50,-50,50v-42,-1,-53,-33,-49,-79r-59,0v4,46,-8,79,-49,79v-31,0,-49,-19,-49,-50v0,-41,32,-53,78,-49r0,-59v-45,4,-78,-10,-78,-49v0,-31,20,-48,49,-49v43,-2,53,33,49,78r59,0v-3,-45,8,-78,49,-78v31,0,50,18,50,49","w":296},"\u2324":{"d":"44,-112r102,-108r103,108r-15,15r-88,-93r-87,93xm250,-251r0,22r-208,0r0,-22r208,0","w":286},"\u2325":{"d":"15,-240r99,0r124,219r169,0r0,21r-186,0r-123,-219r-83,0r0,-21xm189,-240r218,0r0,21r-218,0r0,-21","w":427},"\u2326":{"d":"270,0r-238,0r0,-250r238,0r121,125xm362,-125r-104,-105r-206,0r0,210r206,0xm181,-112r-56,58r-14,-14r57,-57r-57,-57r14,-14r56,57r58,-57r13,14r-57,57r57,57r-13,14","w":413},"\u232b":{"d":"33,-125r121,-125r237,0r0,250r-237,0xm165,-20r207,0r0,-210r-207,0r-104,105xm185,-54r-14,-14r57,-57r-57,-57r14,-14r58,57r57,-57r13,14r-57,57r57,57r-13,14r-57,-58","w":413},"\u235f":{"d":"271,-125v6,113,-143,168,-217,90v-21,-21,-38,-49,-37,-90v3,-77,51,-127,127,-127v77,0,122,51,127,127xm143,-19v64,0,106,-42,106,-106v0,-64,-43,-106,-106,-106v-63,0,-106,42,-106,106v0,64,42,106,106,106xm188,-108r9,60r-57,-27r-50,27r7,-59r-42,-42r58,-12r27,-53r29,53r59,12","w":289},"\u23cf":{"d":"276,-82r0,49r-252,0r0,-49r252,0xm276,-113r-252,0r126,-126","w":307},"\u25a0":{"d":"272,-14r-228,0r0,-228r228,0r0,228","w":315},"\u25a1":{"d":"48,-17r211,0r0,-214r-211,0r0,214xm30,0r0,-249r247,0r0,249r-247,0","w":302},"\u25b2":{"d":"281,-63r-253,0r127,-127","w":295},"\u25b6":{"d":"50,-252r126,126r-126,126r0,-252","w":214},"\u25bc":{"d":"155,-63r-127,-127r253,0","w":295},"\u25c0":{"d":"163,0r-127,-126r127,-126r0,252","w":214},"\u25cf":{"d":"154,-242v68,0,114,47,114,113v0,68,-47,115,-114,115v-69,0,-114,-46,-114,-115v0,-68,47,-113,114,-113","w":303},"\u2605":{"d":"218,-91r14,92r-86,-42r-77,42r11,-90r-65,-65r90,-17r41,-81r44,80r90,18","w":293},"\u2606":{"d":"219,-93r14,94r-86,-42r-79,42r12,-91r-66,-66r91,-18r41,-81r45,81r91,18xm262,-149r-77,-16r-38,-69r-36,70r-76,15r55,55r-10,77r67,-35r74,35r-13,-79","w":301},"\u2610":{"d":"48,-17r211,0r0,-214r-211,0r0,214xm30,0r0,-249r247,0r0,249r-247,0","w":302},"\u2611":{"d":"30,0r0,-249r247,0r0,249r-247,0xm48,-17r211,0r0,-214r-211,0r0,214xm127,-71v33,-51,74,-107,123,-141v6,6,-12,12,-17,21v-37,42,-70,97,-96,148v-12,2,-20,4,-25,7v-10,-31,-22,-73,-41,-95v5,-5,15,-9,25,-8v18,11,27,42,31,68","w":306},"\u2612":{"d":"221,-210r15,15r-69,69r70,70r-16,14r-69,-70r-70,71r-14,-15r69,-70r-69,-69r14,-15r70,70xm48,-17r211,0r0,-214r-211,0r0,214xm30,0r0,-249r247,0r0,249r-247,0","w":306},"\u2622":{"d":"122,-126v0,-16,13,-31,28,-30v36,1,37,58,0,58v-14,0,-28,-12,-28,-28xm205,-32v-36,19,-75,21,-109,0r35,-62v14,6,24,7,38,0xm131,-159v-12,5,-17,19,-19,33r-71,0v1,-49,21,-73,54,-95xm205,-221v31,18,55,49,55,95r-71,0v-1,-15,-8,-27,-20,-34xm270,-123v0,-74,-47,-123,-120,-123v-72,0,-119,48,-119,120v0,73,49,119,120,119v70,0,119,-48,119,-116xm283,-128v0,80,-51,134,-133,134v-79,0,-132,-52,-132,-132v0,-79,53,-132,132,-132v80,0,133,50,133,130","w":301},"\u2623":{"d":"109,-166v26,-19,62,-22,90,0v-3,6,-7,11,-13,15v-23,-15,-40,-14,-63,0v-6,-3,-10,-9,-14,-15xm181,-43v-3,-6,-6,-12,-7,-19v24,-13,34,-28,32,-54v4,-4,13,-3,19,-4v6,38,-17,64,-44,77xm126,-43v-27,-12,-50,-38,-43,-77v10,0,22,0,19,15v0,18,11,32,32,43v-1,7,-4,14,-8,19xm27,-50v-19,-49,5,-96,49,-105v-1,-56,21,-88,69,-96r2,5v-33,9,-49,28,-49,55v1,35,20,52,54,56r0,8v-12,2,-19,12,-14,23r-7,4v-34,-52,-121,-16,-100,48xm277,-49v25,-67,-70,-101,-99,-50v-13,-4,-3,-27,-21,-28r0,-8v32,-3,52,-23,53,-57v0,-26,-15,-44,-43,-53r2,-6v46,9,66,41,64,95v41,14,67,57,49,108xm271,-31v-17,36,-86,41,-117,12v-33,30,-101,22,-118,-13r4,-3v45,54,123,-2,93,-60v10,-8,23,11,34,-4r8,4v-29,60,49,109,92,62","w":308},"\u262e":{"d":"56,-35v-77,-76,-25,-230,92,-222v79,5,128,51,133,129v6,116,-146,171,-225,93xm243,-73v22,-35,15,-101,-12,-126v-18,-17,-41,-31,-72,-36r0,86xm138,-235v-74,4,-123,91,-83,162r83,-76r0,-86xm159,-122r0,104v32,-5,53,-18,72,-39xm138,-122r-71,65v20,18,38,35,71,40r0,-105","w":300},"\u262f":{"d":"189,-99v26,0,22,36,0,36v-10,0,-17,-9,-17,-17v-1,-11,8,-19,17,-19xm108,-193v-8,0,-18,8,-17,17v0,9,6,18,18,18v11,0,18,-9,18,-18v0,-9,-8,-18,-19,-17xm149,3v-79,0,-131,-53,-131,-131v0,-80,54,-130,131,-130v81,0,131,51,131,131v0,80,-51,130,-131,130xm272,-127v2,-94,-99,-155,-184,-108v40,-6,79,17,82,56v4,48,-45,58,-45,104v0,37,25,60,63,57v53,-4,82,-51,84,-109","w":298},"\u2672":{"d":"240,-161r-75,-8r21,-14r-16,-29r-45,67r-61,-35v21,-24,25,-66,62,-74r97,1v11,8,16,25,25,36r23,-13xm75,-7v-16,-37,-65,-82,-33,-127r-24,-18r76,0r31,66r-22,-12v-9,6,-29,29,-6,29r69,0r0,76v-32,-3,-80,11,-91,-14xm213,-134r62,-37v10,29,44,54,34,89r-50,85v-9,8,-28,3,-43,4r0,28r-40,-63r40,-61r0,25r39,0xm167,-217v-8,-20,-44,-46,-60,-20r-35,56r51,29xm50,-135v-26,22,-15,78,34,66v-13,-14,11,-28,18,-36r10,6r-22,-47r-57,0xm161,-64v-37,-2,-83,4,-114,-5v13,22,23,48,39,68v17,9,51,2,75,4r0,-67xm247,-210v-11,-13,-13,-35,-33,-39r-73,0v28,11,36,45,52,69r-13,8r57,5r24,-52xm261,-64v23,-3,51,-16,44,-42r-32,-57r-53,31xm298,-75v-18,20,-50,17,-87,17r0,-16r-29,46r29,47r0,-16v19,-2,42,5,50,-10","w":330},"\u2673":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm163,-43r-20,0r0,-82r-13,9r0,-21v8,-7,16,-13,33,-11r0,105","w":312},"\u2674":{"d":"119,-118v-2,-38,64,-44,62,-4v-1,28,-25,40,-37,59r35,0r0,18r-61,0r0,-16v14,-20,34,-35,44,-60v0,-6,-4,-11,-11,-11v-8,0,-12,7,-13,16xm287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5","w":312},"\u2675":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm171,-100v25,18,5,66,-32,55v-12,-4,-18,-14,-21,-26r19,-3v2,8,5,12,12,13v8,0,16,-7,14,-16v1,-14,-10,-13,-23,-13r0,-18v23,7,30,-21,10,-24v-7,1,-10,6,-12,13r-19,-2v2,-15,15,-28,31,-29v29,-3,41,36,21,50","w":312},"\u2676":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm172,-60r0,15r-19,0r0,-15r-42,0v1,-40,25,-59,35,-90r20,0r-34,72r21,0r0,-25r19,0r0,25r8,0r0,18r-8,0","w":312},"\u2677":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm142,-113v25,-10,46,7,42,36v2,28,-29,45,-52,29v-6,-4,-10,-11,-12,-22r19,-3v2,19,25,15,26,0v8,-20,-16,-35,-24,-16r-17,0r0,-59r55,0r0,18r-37,0r0,17","w":312},"\u2678":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm154,-107v19,-2,31,14,31,31v0,21,-11,34,-32,34v-58,0,-15,-79,1,-106r20,0xm153,-60v8,0,13,-7,13,-15v0,-9,-5,-14,-13,-15v-6,1,-13,6,-12,15v0,9,4,15,12,15","w":312},"\u2679":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5xm148,-41r-20,0r34,-86r-22,0r0,14r-18,0r0,-33r62,0v-3,44,-25,69,-36,105","w":312},"\u267a":{"d":"287,-64v23,33,-5,64,-44,64r-50,0r0,21r-6,0r-26,-34r28,-35r4,0r0,22v32,1,89,6,65,-33r-36,-61r25,-14xm54,-57v-10,15,-5,32,16,31r71,0r0,26v-51,-2,-123,13,-123,-37v0,-29,24,-53,35,-76v-5,-4,-21,-6,-14,-13r42,-8v4,15,16,30,13,45r-17,-10xm225,-144r-44,-8v-5,-8,11,-9,16,-14v-14,-19,-37,-79,-59,-41r-36,63r-23,-14v25,-33,40,-114,98,-85v23,11,29,43,43,64v7,-2,17,-16,20,-5","w":312},"\u267b":{"d":"263,-222r-30,52r-60,0r19,-12v-15,-23,-24,-53,-47,-68v27,3,70,-8,84,8r17,30xm57,-181v18,-28,33,-88,81,-62v8,4,12,9,16,14r-44,79xm297,-125v15,30,-9,59,-41,58r-45,-80r55,-31xm109,-104r-16,-10v-12,26,-30,47,-38,76v-10,-25,-38,-46,-35,-77r18,-31r-15,-7r58,0xm169,-29r31,-49r0,21v32,-1,67,5,88,-10v-24,27,-28,77,-88,67r0,21xm93,0v-29,0,-38,-37,-21,-57r89,0r0,57r-68,0","w":320},"\u267c":{"d":"150,-259v80,0,133,53,133,132v0,81,-54,133,-133,133v-78,0,-132,-53,-132,-133v0,-79,53,-132,132,-132xm213,-194v-8,-10,-7,-28,-26,-28r-49,0v18,10,24,34,35,51r-14,9r45,0r22,-39xm145,-207v-8,-14,-39,-22,-50,-3r-22,39r40,24xm221,-85v25,1,44,-22,31,-44r-23,-39r-41,23xm90,-149r-43,0r11,5v-5,12,-23,24,-12,40r25,40v2,-17,20,-40,28,-56r12,7xm245,-85v-14,10,-41,8,-66,8r0,-17r-23,37r23,38r0,-16v42,8,48,-28,66,-50xm84,-77v-29,47,28,43,66,42r0,-42r-66,0","w":300},"\u267d":{"d":"150,-260v79,0,133,52,133,133v0,80,-53,132,-133,132v-79,0,-132,-53,-132,-132v0,-80,54,-133,132,-133xm150,-1v75,0,126,-51,126,-126v0,-75,-51,-126,-126,-126v-75,0,-125,51,-125,126v0,75,50,126,125,126xm227,-201r-22,39r-45,0r14,-9v-11,-17,-17,-40,-35,-51v21,2,52,-6,63,6r12,22xm73,-171v14,-19,23,-65,61,-46v5,3,9,6,12,10r-33,60xm252,-129v12,21,-6,46,-30,44r-33,-60r40,-23xm112,-113r-12,-7v-8,16,-25,38,-28,56v-8,-19,-31,-34,-27,-57r14,-23r-11,-5r43,0xm157,-57r23,-37r0,17v24,0,50,3,66,-8v-18,20,-21,57,-66,50r0,16xm151,-35v-30,-2,-74,10,-73,-23v0,-6,2,-13,6,-19r67,0r0,42","w":300},"\u2693":{"d":"125,-252v35,0,42,54,11,62r0,5r47,0r0,18r-47,0r1,143v23,-4,38,-9,55,-25r-15,-12r51,-15r-7,55r-14,-15v-22,22,-47,35,-81,39v-34,-4,-60,-17,-81,-39r-14,15r-8,-55r51,15r-14,12v14,14,30,22,54,25r0,-143r-46,0r0,-18r46,0r0,-4v-30,-8,-26,-63,11,-63","w":251},"\u26a0":{"d":"141,-172v-1,-14,19,-23,29,-12v3,3,6,7,5,12r-11,101v0,3,-5,5,-7,6v-2,0,-8,-2,-7,-6xm172,-42v0,11,-9,17,-20,14v-16,-4,-13,-30,5,-29v8,0,15,6,15,15xm37,0v-18,1,-24,-16,-15,-30r119,-211v6,-16,27,-15,35,-1r120,212v7,13,2,30,-16,30r-243,0xm154,-226r-113,203v65,6,167,6,235,0v-34,-69,-75,-132,-111,-199v-3,-6,-7,-8,-11,-4","w":318},"\u2706":{"d":"96,4v-83,-24,-78,-239,0,-259r0,75v-25,9,-22,96,0,112r0,72xm130,-3v0,11,-18,6,-29,7r0,-72v11,1,28,-5,29,7r0,58xm101,-255v11,1,28,-4,29,7r0,59v1,15,-18,7,-29,9r0,-75","w":155},"\u2708":{"d":"312,-104v0,9,-7,16,-18,15r-90,0r-75,127r-35,0r42,-127r-69,0r-22,29r-27,0r14,-45r-15,-46r27,0r23,30r69,0r-40,-129r34,0r74,129r89,0v11,0,19,8,19,17","w":320},"\u2709":{"d":"127,-119r-82,-82r0,164xm256,-121r82,81r0,-164xm61,-23r261,0r-80,-81r-51,52r-50,-49xm58,-220r133,134r132,-134r-265,0xm362,-242r0,242r-339,0r0,-242r339,0","w":385},"\u2713":{"d":"23,-128v12,-9,36,-22,48,-5v14,21,27,53,31,85v42,-72,98,-147,165,-194r5,6v-66,59,-114,149,-157,232v-15,3,-27,6,-36,11v-14,-47,-26,-104,-56,-135","w":275},"\u2716":{"d":"258,-62r-62,63r-62,-63r-63,63r-62,-63r63,-62r-63,-62r62,-62r63,62r62,-62r62,62r-63,62","w":267},"\u271a":{"d":"95,-240r83,0r0,79r78,0r0,83r-76,0r0,78r-84,0r0,-78r-78,0r0,-83r77,0r0,-79","w":269},"\u272a":{"d":"143,-252v77,0,128,51,128,127v0,77,-51,128,-128,128v-77,0,-128,-51,-128,-128v0,-76,51,-127,128,-127xm174,-168r-34,-64r-33,64r-71,14r51,51r-9,71r62,-33r68,33r-12,-73r50,-49","w":286},"\u2794":{"d":"110,-23r85,-86r-186,0r0,-31r186,0r-85,-85r44,0r100,100r-101,101","w":262},"\ue356":{"d":"180,-128v16,0,25,6,34,15r0,-14r19,0r0,127r-20,0r0,-15v-7,9,-19,16,-34,16v-37,1,-47,-29,-47,-62v0,-36,10,-68,48,-67xm183,-110v-25,0,-31,22,-31,47v0,25,6,46,31,46v24,0,30,-22,30,-46v0,-25,-6,-47,-30,-47xm9,-185v-9,-54,47,-87,81,-52r0,-14r19,0r0,127r-19,0v-1,-5,2,-12,-1,-15v-28,36,-89,7,-80,-46xm60,-234v-25,0,-31,22,-31,47v0,25,5,46,31,46v40,0,43,-93,0,-93xm63,8r-17,0r153,-266r17,0","w":241},"\ue357":{"d":"122,-51v-3,-54,5,-94,57,-94v52,0,59,40,56,94v-2,33,-22,54,-56,53v-36,-1,-55,-19,-57,-53xm215,-52v1,-38,3,-75,-36,-75v-39,0,-40,36,-38,75v2,23,14,37,38,37v23,0,36,-15,36,-37xm75,-105r-20,0r0,-61r-47,-85r20,0r38,68r36,-68r21,0r-48,85r0,61xm39,7r-17,0r152,-266r18,0","w":244},"\ue378":{"d":"213,-103r-86,-86r0,187r-31,0r0,-187r-85,86r0,-44r101,-100r101,100r0,44","w":224},"\ue379":{"d":"213,-103r-101,101r-101,-100r0,-43r85,85r0,-187r31,0r0,187r86,-86r0,43","w":224},"\ue37a":{"d":"109,-24r-100,-101r99,-100r44,0r-85,85r187,0r0,31r-187,0r86,86","w":262},"\ue37b":{"d":"172,-44r0,-123r-134,135r-23,-23r135,-134r-124,0r32,-32r145,0r0,146","w":209},"\ue37c":{"d":"15,-75r0,-146r145,0r32,32r-124,0r135,134r-23,23r-134,-135r0,123","w":209},"\ue37d":{"d":"292,1r-126,-127r126,-126r0,253xm156,1r-127,-127r127,-126r0,253","w":323},"\ue37e":{"d":"44,-252r126,126r-126,126r0,-252xm180,-252r126,126r-126,126r0,-252","w":323},"\ue381":{"d":"209,0r-51,0r0,-253r51,0r0,253xm107,0r-50,0r0,-253r50,0r0,253","w":267},"\ue382":{"d":"149,-3r-81,-79r-44,0r0,-84r44,0r81,-80r0,243","w":182},"\ue383":{"d":"199,-213v51,29,52,148,-1,175v-9,-1,-14,-13,-6,-19v15,-9,25,-39,25,-67v0,-34,-15,-58,-28,-78v0,-6,4,-11,10,-11xm69,-82r-43,0r0,-84r43,0r81,-80r0,243","w":256},"\ue384":{"d":"238,-253v77,44,80,215,0,258v-11,0,-16,-12,-7,-19v58,-39,57,-178,0,-220v-7,-6,-4,-20,7,-19xm147,-3r-81,-79r-43,0r0,-84r43,0r81,-80r0,243xm192,-216v56,29,58,156,-1,183v-28,-11,13,-32,14,-50v16,-41,4,-95,-21,-114v-8,-6,-2,-20,8,-19","w":327},"\ue385":{"d":"65,-82r-43,0r0,-84r43,0r81,-80r0,243xm288,55v-26,-14,12,-35,20,-50v47,-58,42,-195,0,-254v-10,-14,-24,-24,-30,-41v-1,-13,18,-14,22,-3v39,41,66,97,66,174v0,81,-29,140,-78,174xm234,-247v-3,-19,20,-18,25,-4v64,60,63,222,-15,266v-30,-18,27,-42,28,-70v25,-67,5,-158,-38,-192xm202,-221v56,32,56,160,2,194v-12,3,-20,-12,-10,-19v40,-27,38,-128,0,-156v-8,-6,-2,-20,8,-19","w":385},"\ue386":{"d":"237,-222v63,21,55,148,8,185v-24,19,-53,40,-93,39v-80,-3,-133,-53,-133,-132v0,-44,20,-79,51,-93v8,0,15,5,15,14v-13,24,-39,37,-37,78v3,64,41,108,104,108v62,0,100,-44,103,-108v2,-39,-22,-53,-31,-79v-1,-8,7,-12,13,-12xm139,-260v-1,-7,7,-15,14,-14v7,0,13,7,13,14r0,116v0,7,-6,14,-13,14v-7,1,-15,-7,-14,-14r0,-116","w":300},"\ue387":{"d":"271,-205r-42,-42r9,-8r41,42xm217,-210v10,-1,19,9,19,18v0,9,-10,19,-19,19v-9,0,-19,-9,-18,-19v-1,-9,9,-19,18,-18xm197,-129r-41,-41r8,-9r42,41xm142,-135v11,-1,19,10,19,19v0,9,-8,19,-19,18v-9,1,-19,-9,-18,-18v-1,-10,8,-20,18,-19xm183,-84v24,3,45,19,55,37v-6,24,-24,45,-48,52v-81,-26,-138,-88,-171,-162v9,-23,27,-42,52,-48v18,10,34,30,38,54v-5,10,-18,16,-28,21v19,26,49,61,82,74v4,-11,10,-21,20,-28","w":288},"\ue388":{"d":"252,-114v12,-1,24,10,24,23v0,13,-12,24,-24,24v-12,0,-24,-11,-24,-24v0,-13,12,-24,24,-23xm186,-114v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23xm120,-114v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23xm273,0r-19,-19r73,-72r-71,-70r19,-19r89,89xm100,0r-91,-91r89,-89r19,19r-71,70r73,72","w":372},"\ue389":{"d":"153,-256v77,0,129,52,129,129v0,79,-53,130,-129,130v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129xm153,-18v65,0,108,-45,108,-109v0,-64,-44,-108,-108,-108v-64,0,-108,43,-108,108v0,66,44,109,108,109xm153,-218v14,0,27,11,27,25v0,32,-54,32,-54,0v0,-14,13,-25,27,-25xm175,-30r-44,0r0,-124r44,0r0,124","w":307},"\ue38a":{"d":"288,-216r-17,6r5,15r-17,6r5,15r-17,6r4,14r-16,6r4,16r-16,5r4,15r-16,6r4,15r-17,6r5,15r-17,6r4,15r-16,5r5,16r-16,5r-16,-55r-17,6r5,15r-32,11r4,15r-32,11r5,15r-34,12r-4,-15r-14,5r-10,-36r14,-5r-5,-15r32,-11r-4,-15r31,-11r-4,-16r32,-11r-4,-13r-17,6r-4,-15r-17,6r-4,-15r-14,5r-5,-17r245,-87r4,16r-15,6","w":313},"\ue38b":{"d":"33,-231r-15,-6r4,-16r245,87r-5,17r-14,-5r-4,15r-16,-6r-5,15r-17,-6r-4,13r32,11r-4,16r31,11r-4,15r32,11r-5,15r14,5r-10,36r-14,-5r-4,15r-34,-12r5,-15r-32,-11r4,-15r-32,-11r5,-15r-16,-6r-17,55r-15,-5r4,-16r-16,-5r4,-15r-17,-6r5,-15r-17,-6r4,-15r-16,-6r4,-15r-16,-5r4,-16r-16,-6r4,-14r-16,-6r4,-15r-17,-6r5,-15r-17,-6","w":313},"\ue38c":{"d":"288,-215r-17,6r5,15r-17,5r5,15r-17,6r4,15r-16,6r4,15r-16,6r4,15r-16,6r4,15r-17,5r5,16r-17,6r4,14r-16,6r5,15r-16,6r-16,-56r-17,6r5,15r-32,11r4,15r-32,12r5,15r-34,12r-4,-16r-14,5r-10,-36r14,-5r-5,-14r32,-11r-4,-16r31,-11r-4,-15r32,-11r-4,-13r-17,5r-4,-14r-17,5r-4,-14r-14,4r-5,-16r245,-87r4,16r-15,6xm86,-160r4,13r16,-6r5,15r16,-6r5,17r-16,6r4,15r-32,11r5,15r-32,11r4,15r-32,12r10,32r30,-11r-4,-14r32,-11r-5,-16r32,-11r-4,-15r33,-11r12,40r15,-6r-4,-15r16,-5r-4,-15r16,-6r-4,-15r17,-6r-5,-15r17,-6r-4,-15r16,-6r-5,-15r17,-5r-4,-15r16,-6r-4,-14","w":313},"\ue38d":{"d":"33,-230r-15,-6r4,-16r245,87r-5,16r-14,-4r-4,14r-16,-5r-5,14r-17,-5r-4,13r32,11r-4,15r31,11r-4,16r32,11r-5,14r14,5r-10,36r-14,-5r-4,16r-34,-12r5,-15r-32,-12r4,-15r-32,-11r5,-15r-16,-6r-17,56r-15,-6r4,-15r-16,-6r4,-14r-17,-6r5,-16r-17,-5r4,-15r-16,-6r4,-15r-16,-6r4,-15r-16,-6r4,-15r-16,-6r4,-15r-17,-5r5,-15r-17,-6xm51,-224r-4,14r16,6r-4,15r17,5r-5,15r16,6r-4,15r17,6r-5,15r17,6r-4,15r16,6r-4,15r16,5r-4,15r15,6r12,-40r33,11r-4,15r32,11r-5,16r32,11r-4,14r30,11r10,-32r-32,-12r4,-15r-31,-11r4,-15r-32,-11r5,-15r-17,-6r5,-17r17,6r4,-15r16,6r4,-13","w":313},"\ue38e":{"d":"237,-6v-21,8,-44,8,-65,0v-22,7,-44,8,-67,0v-20,8,-44,9,-66,0v-13,1,-17,8,-31,8r0,-25v15,2,19,-9,31,-8v22,9,45,10,66,1v22,8,46,9,66,0v11,-1,21,9,33,8v13,-1,22,-9,34,-9v12,-1,16,10,30,8r0,25v-14,0,-19,-7,-31,-8xm8,-59v22,-4,42,-9,63,-1r0,-57v-6,-16,-14,-29,-18,-47v0,-9,12,-8,18,-12r0,-35r17,0r0,-19r32,0r0,-25r36,0r0,25r33,0r0,19r17,0r0,35v8,4,21,5,16,18r-16,41r0,57v19,-9,42,-6,62,1r0,24v-21,-8,-42,-7,-65,0v-13,0,-20,-8,-32,-8v-21,9,-42,8,-66,0v-22,8,-43,9,-66,1v-14,-1,-18,7,-31,7r0,-24xm103,-215r0,17r-17,0r0,15r52,-21r52,21r0,-15r-17,0r0,-17r-70,0","w":277},"\ue38f":{"d":"194,-203v-5,51,19,134,-25,147r37,56r-21,0r-27,-39r-74,0r-26,39r-22,0r38,-56v-46,-11,-26,-96,-26,-147v0,-47,68,-33,113,-33v18,0,35,14,33,33xm118,-248v0,5,-4,8,-9,8v-4,0,-9,-3,-9,-8v0,-5,4,-10,9,-9v6,-1,9,4,9,9xm143,-248v0,5,-5,8,-9,8v-5,1,-10,-3,-10,-8v0,-5,4,-10,10,-9v5,-1,9,4,9,9xm161,-103v-16,0,-18,30,0,29v8,0,15,-5,15,-13v0,-8,-6,-16,-15,-16xm66,-186v-1,18,-2,37,16,37r78,0v19,2,16,-19,16,-37v0,-9,-6,-16,-16,-16r-78,0v-9,0,-16,7,-16,16xm105,-228v-9,1,-6,18,0,20v16,-2,42,9,38,-16v-5,-8,-26,-2,-38,-4xm80,-103v-16,0,-18,30,0,29v7,0,15,-5,15,-13v0,-8,-7,-16,-15,-16","w":226},"\ue390":{"d":"55,-1v-14,0,-15,-15,-14,-30r-16,0v-1,-62,-4,-122,10,-172v13,-49,130,-42,166,-15v25,42,17,117,19,187r-17,0v1,16,0,32,-14,30v-15,1,-15,-14,-14,-30r-105,0v1,16,0,30,-15,30xm188,-90v-15,0,-16,28,0,28v7,1,14,-7,14,-14v0,-7,-7,-15,-14,-14xm42,-76v0,7,7,15,14,14v6,0,14,-7,13,-14v1,-7,-7,-14,-13,-14v-7,-1,-14,7,-14,14xm77,-214v0,3,2,6,5,6r80,0v7,0,8,-13,0,-12r-80,0v-4,0,-5,2,-5,6xm201,-126v-2,-24,3,-63,-18,-71r-122,0v-21,7,-12,44,-19,64v1,5,2,10,8,10r145,0v3,0,5,-1,6,-3","w":242},"\ue391":{"d":"195,1v-16,0,-17,-17,-16,-34r-115,0v1,17,0,34,-15,34v-16,0,-17,-17,-16,-34r-18,0v2,-31,-9,-76,19,-81v12,-29,14,-69,66,-60v0,-9,-2,-20,8,-19v17,2,41,-8,35,19v21,0,40,-1,47,16r17,44v30,4,19,49,21,81r-18,0v1,17,0,34,-15,34xm190,-116v-7,-14,-5,-39,-23,-42v-32,1,-70,-3,-98,2r-16,40r137,0xm34,-83v0,8,6,15,15,15v8,0,14,-7,14,-15v0,-8,-6,-15,-14,-15v-9,0,-15,7,-15,15xm179,-83v0,7,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15v-8,0,-15,8,-15,15","w":252},"\ue392":{"d":"132,-191v19,2,48,-7,48,14r0,23r32,0r0,154r-127,0r0,-154r31,0v0,-18,-3,-38,16,-37xm33,-132v1,-17,19,-25,40,-22r0,154v-22,2,-40,-4,-40,-24r0,-108xm170,-154r0,-25r-43,0r0,25r43,0xm263,-24v1,21,-17,26,-40,24r0,-154v22,-2,40,3,40,22r0,108","w":284},"\ue393":{"d":"103,-258v12,18,5,57,5,84v0,8,-8,19,-18,18r0,141v1,9,-6,15,-14,15v-7,0,-14,-7,-13,-15r0,-141v-32,-4,-13,-64,-18,-97v0,-2,2,-6,5,-5v3,0,5,2,5,6r0,57r8,0r0,-58v-1,-4,2,-5,5,-5v3,0,5,2,5,5r0,58r9,0r0,-58v0,-3,1,-5,4,-5v10,12,1,43,4,63r9,0r0,-58v0,-3,1,-5,4,-5xm160,-258v13,0,21,9,21,24r0,219v1,8,-6,15,-13,15v-7,0,-14,-6,-14,-15r0,-88r-15,0r0,-131v-2,-15,10,-24,21,-24","w":213},"\ue394":{"d":"302,-31v1,18,-13,30,-28,31r-240,-2v-11,-4,-20,-14,-20,-29r288,0xm214,-39v-48,-5,-138,21,-138,-26r0,-113r170,0v33,0,50,21,50,52v0,31,-22,51,-55,52v3,20,-9,37,-27,35xm241,-96v22,2,35,-11,35,-30v-1,-20,-12,-33,-35,-31r0,61","w":316},"\ue395":{"d":"46,-14v2,-24,44,-11,68,-14r0,-78r-100,-122r227,0r-99,122r0,78v24,4,67,-11,68,14v0,7,-5,14,-14,14r-136,0v-9,0,-13,-8,-14,-14xm125,-153v-1,9,10,18,19,17v8,1,18,-9,17,-17v1,-9,-9,-19,-17,-18v-10,-1,-20,8,-19,18","w":259},"\ue396":{"d":"181,-248r0,248r-23,0r0,-248r23,0xm105,-230v0,12,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,20,9,20,21xm98,1v-5,0,-10,-5,-10,-10r0,-72r-6,0r0,72v0,5,-5,10,-9,10v-4,0,-11,-5,-10,-10r0,-72r-26,0r27,-95r-4,0r-16,55v0,5,-5,6,-8,7v-5,0,-10,-6,-9,-13v16,-34,7,-86,69,-78v40,5,31,53,47,81v0,11,-15,14,-18,3r-16,-55r-4,0r27,95r-25,0r0,72v0,5,-5,10,-9,10xm204,-114v2,-39,-12,-91,30,-91v32,0,66,-4,66,28r0,63v0,6,-3,9,-9,9v-19,-6,-5,-46,-9,-67r-4,0r0,161v0,7,-6,11,-12,11v-6,0,-11,-4,-11,-11r0,-97r-4,0r0,97v1,7,-7,11,-13,11v-5,0,-13,-4,-12,-11r0,-161r-3,0r0,58v0,6,-4,9,-9,9v-6,0,-10,-3,-10,-9xm272,-230v0,12,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v12,0,20,9,20,21","w":316},"\ue397":{"d":"39,-157v0,-22,13,-36,30,-41r0,-11v-26,2,-40,20,-45,43r-11,-3v4,-24,21,-42,40,-48v-12,-10,-3,-34,14,-32v14,-2,11,17,25,15r0,11r30,0r0,-7r56,-14r0,54r-56,-12r0,-6r-30,0r0,10v17,5,30,19,30,41r0,147v-1,5,-2,10,-9,10r-66,0v-5,0,-9,-4,-8,-10r0,-147","w":195},"\ue398":{"d":"18,-128v0,-79,53,-132,131,-132v78,0,132,53,132,132v0,79,-53,131,-132,131v-79,0,-131,-52,-131,-131xm67,-193v-60,77,9,199,117,165v11,-4,21,-10,30,-17xm234,-65v55,-75,-12,-200,-118,-163v-11,4,-21,9,-30,16xm211,-103v-18,0,-20,-16,-31,-23r31,0r0,23xm127,-126r23,23r-86,0r0,-23r63,0xm163,-175v-18,-1,-30,-20,-23,-39r14,4v-6,10,-2,27,11,27v18,-1,-6,24,15,24v25,-2,48,0,43,29r-8,0v11,-41,-61,-1,-52,-45xm203,-170v-22,0,-15,-7,-12,-19v1,-10,-9,-19,-19,-19r0,-8v20,-1,34,21,23,39v31,-3,43,16,40,47r-7,0v2,-22,-6,-40,-25,-40xm215,-126r8,0r0,23r-8,0r0,-23xm228,-126r7,0r0,23r-7,0r0,-23","w":303},"\ue399":{"d":"153,-200v16,0,24,15,21,35v33,-31,55,-72,131,-62v24,3,38,18,38,41v0,39,-37,44,-77,45r-127,127v-15,19,-47,13,-77,13v-25,0,-41,-18,-41,-42v0,-30,23,-44,59,-40v29,-3,33,-27,52,-40v2,-30,-10,-77,21,-77xm304,-165v21,-1,23,-41,0,-41v-22,0,-53,-6,-65,6r-131,132v-13,16,-66,-8,-66,25v0,32,61,26,83,15r128,-130v10,-11,32,-6,51,-7xm262,-10r0,-35r-47,47r-13,-14r47,-46r-35,0r19,-19r47,0r0,49xm152,-205v-12,0,-21,-10,-21,-22v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22","w":353},"\ue39a":{"d":"150,-201v16,1,24,16,21,36v27,-21,38,-59,81,-62v44,-3,88,-3,87,41v-1,39,-37,44,-77,45r-127,127v-15,19,-47,13,-77,13v-25,0,-41,-18,-41,-42v0,-30,23,-44,59,-40v29,-3,34,-28,53,-41v2,-30,-11,-77,21,-77xm300,-165v22,-1,21,-39,0,-41v-22,3,-53,-7,-66,6r-138,137v-22,4,-59,-7,-59,20v0,32,62,25,84,15r128,-130v10,-11,32,-6,51,-7xm216,-66r0,35r47,-47r14,14r-48,46r36,0r-19,19r-48,0r0,-49xm149,-205v-12,0,-21,-10,-21,-22v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22","w":353},"\ue39b":{"d":"20,-27r52,0r0,-50r49,0r0,-52r52,0r0,-52r51,0r0,-50r74,0r0,25r-50,0r0,53r-50,0r0,50r-51,0r0,52r-51,0r0,51r-76,0r0,-27xm238,-12r0,-35r-47,47r-14,-13r48,-47r-36,0r19,-18r48,0r0,48","w":314},"\ue39c":{"d":"20,-27r52,0r0,-50r49,0r0,-52r52,0r0,-52r51,0r0,-50r74,0r0,25r-50,0r0,53r-50,0r0,50r-51,0r0,52r-51,0r0,51r-76,0r0,-27xm196,-66r0,35r47,-47r14,14r-48,46r35,0r-18,19r-48,0r0,-49","w":312},"\ue39d":{"d":"108,-18v33,0,55,-20,63,-48r12,25v-13,24,-40,42,-75,44v-92,4,-114,-132,-36,-163r3,22v-17,10,-33,29,-32,56v2,39,26,64,65,64xm176,-154v0,18,-32,9,-50,11r1,13v24,2,58,-8,66,11r21,51v12,-11,32,8,15,16v-12,2,-32,20,-39,3r-20,-47v-35,-3,-81,14,-84,-29v-2,-30,-16,-91,27,-71v10,4,9,20,10,33v18,2,53,-7,53,9xm96,-204v-12,0,-21,-11,-21,-23v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,13,-10,23,-22,23","w":257},"\ue39e":{"d":"268,-250v-3,70,-45,109,-105,123r0,98r66,19r0,10r-170,0r0,-10r67,-19r0,-98v-62,-12,-103,-52,-106,-123r162,0r-26,36r12,22r-24,42r48,-42r-11,-21r37,-37r50,0","w":276},"\ue39f":{"d":"76,-39r-29,0r0,-144r-34,0r49,-73r46,73r-32,0r0,144xm188,-39r-29,0r0,-144r-34,0r48,-73r46,73r-31,0r0,144xm12,-27r207,0r0,27r-207,0r0,-27","w":237},"\ue3a0":{"d":"144,3v-77,0,-127,-54,-127,-132v0,-75,52,-128,126,-128v79,0,133,50,133,130v0,80,-53,130,-132,130xm148,-13v-34,-10,-55,-36,-66,-65v9,-34,33,-54,66,-62v0,10,-2,20,1,28v28,-14,55,-35,66,-65v-12,-29,-34,-54,-68,-61v2,8,-1,19,0,29v-63,5,-106,37,-106,104v0,65,40,101,103,104v120,7,168,-163,77,-227v-10,-8,-22,-14,-35,-18v41,16,68,46,68,97v0,70,-44,100,-106,109v-2,9,-2,19,0,27","w":295},"\ue3a1":{"d":"24,0r0,-251r254,0r0,251r-254,0xm140,-234v-5,11,1,31,-5,41v-7,-1,-7,-13,-16,-9v7,17,0,35,-4,49v-5,-1,-1,-15,-11,-10v-1,13,-6,26,-6,42v-6,-4,-9,0,-9,7v-6,58,17,90,81,82v26,-12,54,-35,43,-72r-5,4v3,-20,7,-51,-8,-61v-1,5,-1,12,-7,15v0,-22,-10,-38,-18,-52v-5,10,-8,12,-11,0v-8,-11,-13,-28,-24,-36xm146,-91v14,-4,11,-27,12,-45v7,8,11,27,12,39v6,-8,13,-18,10,1v13,21,-9,43,-24,53v2,4,-1,7,-5,7v-30,-2,-50,-42,-30,-69v2,10,18,51,15,19v-1,-7,-1,-14,0,-21v5,2,8,11,10,16xm102,-18r96,0r0,-10r-96,0r0,10","w":300},"\ue3a2":{"d":"204,-98v20,0,14,-33,15,-55r17,0r0,66r-16,0r0,-10v-10,19,-45,15,-45,-15r0,-41r18,0v3,19,-9,55,11,55xm146,-177r18,0r0,90r-18,0r0,-90xm103,-97v12,0,16,-8,16,-21v-13,1,-24,2,-25,13v0,5,3,8,9,8xm77,-132v2,-14,12,-21,30,-21v39,0,28,33,31,66v-7,-1,-21,5,-18,-8v-9,15,-45,13,-44,-9v0,-22,27,-20,43,-27v0,-12,-23,-14,-24,-1r-18,0xm158,-14v84,2,134,-92,94,-166r18,-16v54,88,-4,209,-110,205v-29,0,-54,-8,-72,-21r1,19r-25,3r-5,-63r63,-6r2,25r-24,3v15,9,35,17,58,17xm158,-233v-85,-2,-137,96,-92,167r-18,15v-12,-21,-22,-43,-22,-73v-4,-105,118,-165,204,-111r-1,-20r24,-2r5,62r-63,6r-2,-25r25,-2v-16,-9,-37,-17,-60,-17","w":306},"\ue3a3":{"d":"180,-230v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21xm144,0v-7,0,-11,-4,-11,-12r0,-159v-8,8,-9,23,-24,24v-16,-2,-46,7,-46,-9v0,-15,27,-7,42,-9v11,-13,17,-37,39,-38v30,-1,65,-3,63,26v-2,24,10,65,-9,73v-18,-6,-5,-45,-9,-67r-5,0r0,159v0,7,-5,12,-11,12v-7,0,-12,-5,-12,-12r0,-93r-5,0r0,93v0,8,-5,12,-12,12xm57,-73r0,-16r15,0r0,16r-15,0xm69,-96r-11,-11r11,-11r11,11xm58,-117r-11,-11r11,-11r11,11xm42,0r-19,-105r14,0r17,90r26,0r17,-90r15,0r-19,105r-51,0","w":244},"\ue3a4":{"d":"115,-138r-20,132r-57,0r-18,-132r95,0xm165,-133r54,6r-12,128r-19,-89r-49,91xm165,-138v-3,-52,-53,-61,-87,-81r114,15v10,18,22,37,27,59xm191,-234v0,10,-10,20,-21,20v-11,0,-20,-10,-20,-20v0,-11,9,-21,20,-21v12,0,21,9,21,21xm67,-191v8,7,22,4,31,-1v9,17,-13,19,-13,34v-12,-7,-26,3,-38,-8v8,-3,18,-16,20,-25","w":241},"\ue3a5":{"d":"27,-126v0,-80,55,-134,135,-134v79,0,134,54,134,134v0,81,-54,135,-134,135v-81,0,-135,-54,-135,-135xm292,-126v0,-78,-52,-130,-130,-130v-78,0,-130,52,-130,130v0,78,51,131,130,131v78,0,130,-52,130,-131xm73,-126v0,-53,36,-88,89,-88v52,0,88,36,88,88v0,53,-35,89,-88,89v-53,0,-89,-36,-89,-89xm244,-126v0,-50,-32,-82,-82,-82v-51,0,-83,33,-83,82v0,50,32,84,83,84v50,0,82,-33,82,-84xm204,-148v9,9,27,0,23,20v1,6,6,5,11,5v-4,45,-30,75,-76,75v-49,0,-76,-34,-77,-84v7,-3,14,3,19,5v-3,-5,-3,-7,-11,-7v-4,-9,9,-18,12,-8v1,-11,8,-17,16,-20v-4,-9,16,-8,-1,-14v-2,9,-8,11,-13,4v1,-6,12,-15,17,-12v0,1,0,2,-1,4v12,1,-1,-14,8,-14v15,2,-4,25,21,10v10,-7,5,-14,0,-17v20,-5,54,6,54,17v-4,-4,-12,10,-14,1v-2,-9,-13,-5,-17,2v4,17,-19,-2,-8,11v1,6,-15,8,-6,11v11,-6,19,-6,24,2v3,-4,8,-9,14,-5v1,6,-14,2,-3,9v-12,13,-36,-18,-43,7v-9,6,-1,23,12,17v13,6,-4,49,18,39v12,-6,9,-27,19,-37v-6,-4,-9,-10,-10,-20v7,0,10,22,18,8v0,-5,-8,-1,-6,-9xm37,-120v1,14,31,15,30,-2v7,52,39,90,95,90v56,0,87,-37,93,-90v1,16,29,17,32,2v-8,70,-50,121,-125,121v-74,0,-119,-49,-125,-121xm112,-127v-8,-3,-5,18,-5,18v16,5,12,42,29,40v-8,-21,14,-32,4,-48v-12,2,-15,-13,-28,-12r0,2xm109,-17v13,0,16,-22,0,-22v-14,0,-12,21,0,22xm162,-27v-5,0,-11,4,-10,10v-1,6,4,12,9,12v6,0,10,-5,10,-11v1,-6,-3,-11,-9,-11xm192,-242v17,0,17,24,0,23r-9,-3xm118,-216v-4,8,-6,-11,-14,-1v1,4,6,8,1,10r-12,-18v4,-6,22,-10,18,2v4,-1,5,6,7,7xm175,-246v8,3,0,15,0,23v-8,-1,-7,-10,-11,-15v-1,5,2,15,-6,13r3,-22v8,1,7,11,11,16xm194,-33v-6,1,1,10,1,15v-6,-3,-10,-15,-17,-10v4,6,2,21,10,19r-4,-14v5,3,8,13,16,10xm140,-231v-1,10,14,-4,13,6r-15,3r-5,-21r15,-3v2,9,-14,1,-9,11v4,0,11,-5,11,2xm227,-26v-2,-10,-12,8,-14,-2v3,-2,11,-4,6,-8v-4,2,-10,8,-11,1v3,-3,12,-5,7,-9r-13,8r12,18xm146,-27v-6,0,-17,-9,-18,-1r11,3v-5,4,-12,7,-16,13v6,0,17,8,18,0r-11,-2v5,-5,13,-6,16,-13xm85,-203v2,3,9,7,3,10r-14,-16v4,-2,10,-14,13,-7v-3,3,-10,7,-4,10v3,-2,6,-8,10,-4xm103,-27v-1,-8,12,-13,13,-3v1,8,-13,14,-13,3xm231,-195v-8,-5,7,-12,5,-24v6,2,2,9,1,14v5,-1,10,-6,13,-1v-8,2,-16,4,-19,11xm207,-213v5,-5,9,-22,16,-15r-10,13v3,3,12,5,7,10xm156,-17v0,-4,2,-6,6,-6v4,-1,5,4,5,7v0,4,-1,7,-5,7v-4,-1,-6,-3,-6,-8xm189,-225v6,5,11,1,12,-6v0,-4,-3,-6,-7,-6xm117,-238v8,-5,8,13,13,18v-8,5,-8,-13,-13,-18xm183,-173v-9,0,-1,-9,0,-11v1,1,8,11,0,10r0,1xm103,-162v0,-6,7,-6,8,-1v0,2,-2,4,-5,4v-2,0,-3,-1,-3,-3xm208,-154v-2,-1,-8,-6,-4,-11v4,0,6,8,4,11xm99,-224v1,5,8,3,9,-1v-1,-5,-6,-1,-9,1xm235,-135v6,1,2,8,-2,9v-3,-2,1,-8,2,-9xm111,-134v4,-4,-4,-6,-6,-7v-4,5,7,4,6,7xm213,-164v1,1,2,4,-1,4v-2,-2,0,-3,1,-4xm213,-120v-2,2,-1,6,2,4v1,-1,-1,-5,-2,-4","w":316},"\ue3a6":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19","w":330},"\ue3a7":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19xm61,14r205,0r0,21r-205,0r0,-21","w":330},"\ue3a8":{"d":"91,-222v67,0,134,68,198,11r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4r10,45v12,-10,28,-16,49,-16xm211,-161v-59,0,-112,-68,-163,-18r34,156r165,0r34,-157v-18,12,-40,19,-70,19xm61,14r205,0r0,21r-205,0r0,-21xm61,50r205,0r0,21r-205,0r0,-21","w":330},"\ue3a9":{"d":"118,-222v67,0,134,68,198,11r9,-38r24,3r-15,69r36,-20r8,14r-49,26r-26,113r45,23r-7,15r-41,-21r-7,27r-203,0r-6,-29r-42,22r-7,-14r45,-24r-23,-108r-54,-28r7,-14r42,22r-16,-74r24,-4r9,45v13,-9,28,-16,49,-16xm238,-161v-60,0,-111,-68,-163,-18r5,20r109,57r116,-60r4,-18v-19,12,-41,19,-71,19xm274,-23r3,-16r-87,-45r-84,44r3,17r165,0xm281,-55r19,-87r-93,49xm84,-139r18,82r70,-36","w":383},"\ue3aa":{"d":"42,-206v16,-14,48,-20,75,-13v0,-4,2,-8,5,-10r85,-63r67,35r-36,69v22,-2,38,-14,51,-23r9,-38r24,3r-56,246r-203,0r-54,-247r23,-4xm135,-186v-25,-17,-72,-16,-87,7r34,156r165,0r34,-157v-16,10,-32,16,-56,18v-3,13,-20,25,-30,12v-4,12,-18,21,-30,12v-7,11,-28,7,-27,-8v0,-4,1,-7,3,-10v-15,-1,-16,-22,-6,-30xm127,-218v8,13,23,-1,36,-10v15,7,-20,26,1,30v4,-7,7,-18,17,-10v-3,8,-11,17,2,18v4,-8,7,-17,16,-9v-4,7,-9,14,4,14v4,-7,7,-18,17,-10v-1,4,-9,11,0,10r5,0r35,-68r-52,-27xm162,-173v-3,9,-21,23,-9,30v10,-4,11,-18,18,-26xm180,-166v-4,7,-15,27,1,20r9,-17xm138,-170v6,10,12,-3,15,-7v-7,-6,-14,-1,-15,7xm207,-155v4,0,8,-8,0,-6v-2,0,-6,-3,-5,2v0,3,2,4,5,4","w":330},"\ue3ab":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm323,-97v14,0,25,11,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm236,-97v15,-1,27,11,26,26v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm149,-97v14,0,26,11,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ac":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm278,-97v14,0,25,11,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26xm191,-97v15,-1,27,11,26,26v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ad":{"d":"9,0v15,-81,54,-144,149,-144r215,0v-15,-33,-15,-78,-65,-78r-188,0r0,-24r194,0v33,2,57,16,66,43r66,203r-437,0xm381,-120r-223,0v-67,1,-99,42,-113,96r367,0xm235,-97v14,0,26,11,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,11,-26,25,-26","w":455},"\ue3ae":{"d":"343,-246v30,1,56,14,64,39r82,-43r8,14r-85,44r60,183r29,16r-8,14r-38,-21r-406,0r-40,22r-8,-14r39,-21v18,-72,57,-131,149,-131r-170,-92r8,-14r195,106r66,0r96,-50v-8,-17,-21,-29,-47,-28r-188,0r0,-24r194,0xm94,-24r317,0r-156,-84xm276,-120r-4,3r168,91r-30,-94r-134,0xm238,-117v-82,-17,-148,19,-163,85xm389,-179r-67,35r80,0","w":503},"\ue3af":{"d":"13,-22v13,-73,51,-133,139,-134r177,0v-13,-32,-15,-74,-61,-73r-151,0r0,-22v78,8,196,-29,219,40r62,189r-133,0r13,23r98,-16r4,15r-93,17r9,14r84,15r-4,17r-69,-13r7,13r-20,10r-16,-28r-76,-13r-71,12r-17,29r-20,-10r8,-14r-75,14r-4,-17r90,-16r7,-12r-97,-18r3,-15r103,17r14,-24r-130,0xm337,-133v-118,6,-272,-34,-291,89r319,0xm153,6r48,9r54,-10r-16,-27r-70,0xm250,23r16,3v-1,-8,-10,-3,-16,-3xm152,23v-4,0,-9,-2,-10,2","w":411},"\ue3b0":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211","w":323},"\ue3b1":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm37,14r252,0r0,21r-252,0r0,-21","w":323},"\ue3b2":{"d":"163,-37v-53,0,-89,-35,-89,-88v0,-53,36,-89,89,-89v53,0,88,36,88,89v0,52,-36,88,-88,88xm163,-194v-42,0,-68,28,-68,69v0,41,28,69,68,69v39,0,67,-28,67,-69v0,-41,-26,-69,-67,-69xm38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm37,14r252,0r0,21r-252,0r0,-21xm37,50r252,0r0,21r-252,0r0,-21","w":323},"\ue3b3":{"d":"301,-48r0,47r-252,0r0,-50r-34,18r-8,-14r42,-22r0,-110r-40,-21r8,-14r32,17r0,-55r252,0r0,53r33,-18r8,14r-41,21r0,116r42,22r-7,14xm174,-214v35,-1,60,20,74,42r33,-17r0,-43r-212,0r0,45r29,15v15,-23,41,-41,76,-42xm247,-76v-25,50,-124,49,-148,-1r-30,16r0,40r212,0r0,-37xm230,-163v-17,-39,-96,-41,-113,1r55,29xm118,-87v17,38,91,41,110,1r-56,-29xm256,-158v7,20,9,48,-1,68r26,14r0,-95xm92,-91v-9,-21,-9,-45,-1,-66r-22,-12r0,90xm236,-100v6,-15,7,-33,1,-49r-47,25xm110,-148v-5,15,-6,32,1,47r44,-23","w":350},"\ue3b4":{"d":"141,-252r132,252r-264,0xm43,-21r196,0r-98,-186","w":283},"\ue3b5":{"d":"139,-252r132,252r-263,0xm196,-99r-22,-41r-63,119r43,0xm176,-21r61,0r-30,-58xm163,-161r-24,-46r-98,186r49,0","w":278},"\ue3b6":{"d":"266,-48r25,48r-264,0r25,-48r-41,22r-7,-14r61,-33r33,-62r-95,-49r7,-14r95,49r54,-103r53,102r99,-51r7,14r-98,51r33,63r64,33r-7,14xm234,-64r-76,-39r-74,39r-23,43r196,0xm123,-139r35,18r36,-19r-35,-67xm176,-112r45,23r-19,-37xm116,-125r-18,36r43,-23","w":324},"\ue3b7":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm270,-213v-50,42,-165,46,-212,-2r0,194r212,0r0,-192xm62,-232v55,47,150,43,208,0r-208,0","w":323},"\ue3b8":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm107,-190r21,0r0,131r-21,0r0,-131xm153,-190r22,0r0,131r-22,0r0,-131xm202,-190r22,0r0,131r-22,0r0,-131","w":323},"\ue3b9":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm58,-21r212,0r0,-211r-212,0r0,211xm100,-120r0,-22r131,0r0,22r-131,0","w":323},"\ue3ba":{"d":"38,-252r251,0r0,251r-251,0r0,-251xm91,-232r-33,0r0,37xm58,-112r0,91r212,0r0,-211r-102,0xm143,-232r-26,0r-59,63r0,29","w":323},"\ue3bb":{"d":"408,-161v0,48,13,115,-33,120v-44,5,-70,-31,-97,-37r92,71r-13,12r-93,-73v-30,19,-88,36,-127,12r-79,61r-13,-12r76,-59v-7,-6,-16,-12,-22,-18v-16,17,-35,34,-66,35v-10,-1,-15,-4,-14,-18r0,-106r109,0r-83,-65r12,-13v35,25,65,56,103,78v22,-23,76,-22,103,-4r96,-74r11,13r-88,69v19,5,35,9,44,20v22,-15,39,-34,67,-44v5,10,14,21,15,32xm294,-93v25,13,56,41,87,29v15,-26,8,-70,5,-104v-34,22,-65,46,-92,75xm37,-70v51,-10,69,-55,101,-83r-101,0r0,83xm311,-138v-11,-7,-31,-11,-47,-17r-42,33r41,31v19,-13,31,-33,48,-47xm114,-98v6,9,15,14,23,20r56,-44r-33,-26v-16,15,-31,34,-46,50xm154,-69v30,15,71,-1,93,-12r-39,-30xm245,-163v-21,-11,-53,-11,-71,4r34,25","w":433},"\ue3bc":{"d":"185,-61r-10,-29r-56,0r-11,29r-27,0r56,-134r20,0r56,134r-28,0xm168,-111r-21,-54r-20,54r41,0xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3bd":{"d":"128,-162r0,36r63,0r0,21r-63,0r0,56r-25,0r0,-134r98,0r0,21r-73,0xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3be":{"d":"103,-184v51,0,110,-7,110,43v0,39,-40,45,-84,42r0,51r-26,0r0,-136xm129,-121v25,0,57,4,57,-20v0,-26,-32,-21,-57,-21r0,41xm147,3v-76,0,-125,-50,-125,-124v0,-74,51,-124,125,-124v73,0,123,49,123,124v0,75,-48,124,-123,124xm147,-224v-62,0,-102,42,-102,103v0,61,40,104,102,104v61,0,101,-43,101,-104v0,-61,-40,-103,-101,-103","w":295},"\ue3bf":{"d":"271,-183v22,31,23,95,0,125r53,36r-9,14r-54,-36v-21,25,-53,47,-96,47v-44,0,-77,-21,-98,-47r-53,36r-9,-14r53,-35v-23,-31,-23,-93,-1,-126r-52,-36r8,-14r54,37v21,-27,53,-49,98,-49v44,0,77,22,97,49r54,-37r8,14xm244,-184v-29,-50,-130,-52,-160,0r81,54xm86,-56v20,32,78,52,122,29v14,-7,26,-18,35,-30r-78,-53xm76,-170v-18,29,-15,72,0,100r74,-50xm252,-70v17,-26,18,-73,1,-100r-74,50","w":334},"\ue318":{"d":"58,-99v-34,0,-42,-25,-46,-58v-6,-52,49,-83,80,-48r0,-13r19,0r0,117r-19,0r0,-17v-6,10,-20,19,-34,19xm62,-203v-25,0,-31,19,-31,43v-1,24,7,43,31,43v23,0,30,-19,30,-43v-1,-23,-6,-43,-30,-43","w":124},"\ue31e":{"d":"33,-202v19,-30,80,-20,80,23r0,78r-19,0v-3,-41,15,-101,-30,-101v-44,0,-29,59,-31,101r-18,0r0,-117r18,0r0,16","w":128},"\ue324":{"d":"55,-126r34,-92r20,0r-46,117r-16,0r-46,-117r20,0","w":110},"\ue326":{"d":"11,-159v0,-37,17,-59,52,-60v34,-1,50,20,50,57v0,41,-16,63,-51,63v-35,0,-51,-22,-51,-60xm95,-162v0,-25,-11,-41,-32,-41v-24,1,-33,17,-33,44v0,27,9,43,32,43v24,0,33,-17,33,-46","w":124},"\ue328":{"d":"14,-54v4,-67,-21,-166,50,-165v36,1,51,21,51,60v0,51,-52,78,-83,46r0,59r-18,0xm96,-159v0,-27,-8,-44,-32,-44v-25,0,-31,19,-32,44v0,24,8,42,31,43v25,1,33,-17,33,-43","w":125},"\ue329":{"d":"98,-192v-33,-30,-86,10,-62,55v13,24,84,17,61,62v-3,5,-7,11,-12,16r-14,-8v36,-51,-69,-20,-59,-92v-5,-56,60,-77,98,-46","w":105},"\ue32c":{"d":"66,-116v43,0,27,-61,30,-102r18,0r0,75v1,27,-21,44,-49,44v-59,0,-50,-63,-49,-119r19,0v2,42,-13,102,31,102","w":130},"\ue024":{"d":"87,-181v58,0,72,49,68,115v-3,43,-27,69,-68,69v-58,0,-73,-49,-68,-115v3,-42,27,-69,68,-69xm87,-19v44,1,45,-44,45,-91v0,-29,-17,-48,-45,-48v-44,0,-48,42,-46,89v1,29,18,50,46,50","w":174},"\ue025":{"d":"24,-21r51,0r0,-133r-35,24r1,-25v17,-10,26,-28,57,-24r0,158r51,0r0,21r-125,0r0,-21","w":174,"k":{"\ue374":14,"\ue071":29,"\ue370":14,"\ue36c":22,"\ue36b":22,"\ue363":18,"\ue360":11,"\u00ba":25,"\u00aa":25,"\ue07e":29,"\ue07d":29,"\ue070":25,"\ue326":29,"\ue31e":22}},"\ue026":{"d":"129,-128v-1,-47,-79,-34,-85,1r-22,-7v10,-57,131,-68,131,5v0,56,-68,74,-101,108r105,0r0,21r-138,0r0,-21v34,-29,72,-55,103,-87v5,-6,7,-13,7,-20","w":174},"\ue027":{"d":"116,-67v23,7,33,27,36,55v8,78,-121,98,-136,25r21,-4v5,18,21,30,43,30v30,0,49,-20,49,-50v0,-33,-25,-49,-62,-45r0,-20v35,3,57,-10,59,-41v2,-49,-76,-55,-86,-12r-22,-3v7,-30,30,-45,64,-49v69,-8,89,95,34,114","w":174},"\ue028":{"d":"140,0r0,57r-22,0r0,-57r-105,0r0,-21r82,-158r24,0r-82,158r81,0r0,-70r22,0r0,70r21,0r0,21r-21,0","w":174},"\ue029":{"d":"154,-33v11,73,-52,112,-111,81v-12,-7,-20,-19,-24,-36r22,-4v5,18,22,31,44,31v37,0,47,-28,47,-68v0,-51,-63,-65,-84,-29r-23,0r0,-121r124,0r0,21r-102,0r0,74v39,-36,114,-11,107,51","w":174},"\ue02a":{"d":"154,-69v-1,45,-25,69,-69,71v-65,4,-78,-71,-51,-121r62,-116r25,0r-56,107v44,-21,91,11,89,59xm86,-18v44,2,58,-59,32,-85v-27,-27,-76,-8,-76,36v0,28,17,47,44,49","w":174},"\ue02b":{"d":"67,57r-25,0r87,-214r-86,0r0,36r-22,0r0,-58r133,0r0,23","w":174},"\ue02c":{"d":"122,-121v22,7,36,27,36,55v0,44,-30,69,-71,69v-41,0,-70,-25,-71,-69v0,-29,15,-46,36,-55v-19,-9,-32,-25,-32,-51v0,-40,26,-62,67,-65v68,-5,90,92,35,116xm87,-18v28,0,49,-19,49,-48v0,-28,-20,-46,-49,-46v-29,0,-47,19,-50,46v3,28,21,48,50,48xm87,-131v27,-1,44,-14,44,-42v0,-29,-18,-44,-44,-44v-27,0,-45,16,-45,44v0,27,17,42,45,42","w":174},"\ue02d":{"d":"109,-51v-44,19,-92,-9,-90,-57v1,-46,25,-71,70,-73v53,-1,80,59,56,108r-68,130r-25,0xm87,-160v-29,1,-44,19,-45,49v0,31,16,47,45,48v26,0,44,-20,44,-48v0,-28,-17,-50,-44,-49","w":174},"\ue02e":{"d":"13,-81r33,0r8,-52r-31,0r0,-14r33,0r9,-65r15,0r-9,65r42,0r9,-65r16,0r-10,65r33,0r0,14r-35,0r-8,52r33,0r0,14r-34,0r-10,67r-16,0r10,-67r-42,0r-9,67r-16,0r10,-67r-31,0r0,-14xm61,-81r42,0r8,-52r-42,0","w":174},"\ue02f":{"d":"156,-57v0,38,-27,54,-61,59r0,34r-14,0r0,-34v-25,-1,-48,-11,-63,-24r12,-16v13,10,31,19,51,21r0,-81v-30,-7,-59,-19,-59,-56v0,-37,25,-54,59,-58r0,-24r14,0r0,24v19,2,39,7,52,16r-11,17v-13,-8,-26,-13,-41,-14r0,77v33,8,61,19,61,59xm95,-18v41,3,54,-61,14,-72v-5,-2,-9,-3,-14,-4r0,76xm81,-194v-37,-1,-52,61,-13,71v4,2,9,3,13,4r0,-75","w":174},"\ue030":{"d":"99,-195v-38,0,-50,27,-50,65r74,0r0,14r-74,0r0,18r74,0r0,15r-74,0v-14,67,76,87,97,37r19,10v-13,23,-33,38,-67,38v-50,0,-72,-33,-71,-85r-13,0r0,-15r13,0r0,-18r-13,0r0,-14r13,0v-15,-86,105,-115,137,-46r-20,8v-8,-16,-22,-27,-45,-27","w":174},"\ue031":{"d":"8,17v68,22,58,-73,69,-130r-31,0r0,-18r34,0v4,-55,25,-114,92,-93r-5,20v-47,-16,-63,27,-63,73r37,0r0,18r-40,0v-14,66,-1,177,-100,148","w":174},"\ue032":{"d":"69,-91v-1,29,-7,53,-21,72r105,0r0,19r-131,0v-2,-25,14,-31,19,-50v4,-13,8,-27,8,-41r-28,0r0,-17r24,0v-4,-17,-15,-34,-15,-53v-3,-60,94,-69,119,-25r-15,12v-16,-29,-80,-32,-80,13v0,22,11,33,14,53r50,0r0,17r-49,0","w":174},"\ue033":{"d":"148,-32v-12,10,-28,19,-49,19r0,33r-13,0r0,-34v-37,-7,-60,-31,-60,-76v0,-45,21,-72,60,-77r0,-33r13,0r0,32v22,0,37,8,49,19r-13,14v-9,-9,-22,-13,-36,-14r0,117v15,-1,26,-8,36,-15xm86,-148v-39,3,-51,66,-29,97v7,10,17,15,29,18r0,-115","w":174},"\ue034":{"d":"87,-107r52,-106r22,0r-52,104r42,0r0,14r-49,0v-5,6,-4,16,-4,27r53,0r0,14r-53,0r0,54r-21,0r0,-54r-53,0r0,-14r53,0v0,-10,1,-21,-4,-27r-49,0r0,-14r43,0r-54,-104r22,0","w":174},"\ue048":{"d":"83,-181v58,0,72,49,68,115v-3,43,-27,69,-68,69v-58,0,-73,-49,-68,-115v3,-42,27,-69,68,-69xm83,-19v44,0,48,-44,46,-91v-1,-28,-18,-48,-46,-48v-44,0,-48,42,-46,89v1,29,18,50,46,50","w":164},"\ue049":{"d":"15,-21r50,0r0,-133r-34,24r0,-25v17,-10,26,-28,57,-24r0,158r52,0r0,21r-125,0r0,-21","w":154,"k":{"\ue071":18,"\ue36c":11,"\ue36b":11,"\u00ba":11,"\u00aa":11,"\ue07e":11,"\ue07d":14,"\ue070":14,"\ue326":22,"\ue31e":18}},"\ue04a":{"d":"121,-128v-1,-45,-80,-36,-85,1r-22,-7v9,-58,136,-67,131,5v-4,55,-68,74,-101,108r105,0r0,21r-138,0r0,-21v34,-29,72,-55,103,-87v5,-6,7,-13,7,-20","w":162},"\ue04b":{"d":"109,-67v23,7,33,27,36,55v8,78,-120,98,-136,25r22,-4v5,19,20,30,42,30v30,0,49,-20,49,-50v0,-33,-25,-49,-62,-45r0,-20v35,2,57,-9,59,-41v3,-49,-76,-55,-86,-12r-22,-3v8,-28,30,-45,64,-49v70,-8,89,94,34,114","w":160},"\ue04c":{"d":"137,0r0,57r-23,0r0,-57r-104,0r0,-21r81,-158r25,0r-82,158r80,0r0,-70r23,0r0,70r21,0r0,21r-21,0","w":164},"\ue04d":{"d":"147,-33v12,73,-52,112,-111,81v-12,-7,-20,-19,-24,-36r22,-4v5,18,22,31,44,31v37,0,47,-28,47,-68v0,-52,-63,-64,-85,-29r-22,0r0,-121r123,0r0,21r-101,0r0,74v38,-36,115,-10,107,51","w":162},"\ue04e":{"d":"148,-69v0,46,-26,69,-69,71v-64,4,-77,-72,-51,-121r62,-116r25,0r-56,107v43,-21,89,10,89,59xm125,-67v1,-29,-19,-49,-44,-49v-28,0,-44,19,-45,49v0,29,17,49,45,49v29,0,43,-19,44,-49","w":159},"\ue04f":{"d":"61,57r-26,0r87,-214r-86,0r0,36r-22,0r0,-58r133,0r0,23","w":158},"\ue050":{"d":"118,-121v22,7,36,27,36,55v0,44,-29,69,-70,69v-41,0,-72,-25,-72,-69v0,-28,15,-46,36,-55v-54,-22,-30,-124,36,-116v67,-6,88,93,34,116xm84,-18v27,0,48,-19,48,-48v0,-28,-20,-46,-48,-46v-30,0,-51,18,-51,46v0,29,22,48,51,48xm84,-131v27,-1,43,-14,43,-42v0,-28,-17,-44,-43,-44v-27,0,-45,15,-45,44v0,28,17,42,45,42","w":165},"\ue051":{"d":"104,-51v-45,18,-93,-8,-91,-57v1,-46,25,-72,70,-73v53,-1,83,60,57,108r-69,130r-25,0xm81,-160v-29,1,-44,19,-45,49v0,31,16,47,45,48v26,0,44,-20,44,-48v0,-28,-17,-50,-44,-49","w":160},"\ue052":{"d":"4,-81r33,0r7,-52r-30,0r0,-14r32,0r10,-65r15,0r-9,65r41,0r10,-65r15,0r-9,65r32,0r0,14r-34,0r-8,52r33,0r0,14r-35,0r-9,67r-16,0r9,-67r-41,0r-10,67r-15,0r9,-67r-30,0r0,-14xm52,-81r42,0r7,-52r-42,0","w":157},"\ue053":{"d":"143,-57v0,38,-27,54,-61,59r0,34r-14,0r0,-34v-25,-1,-48,-11,-63,-24r12,-16v13,10,31,19,51,21r0,-81v-30,-8,-59,-19,-59,-56v0,-37,25,-54,59,-58r0,-24r14,0r0,24v19,2,39,7,52,16v-3,6,-7,12,-11,17v-11,-8,-26,-11,-41,-14r0,77v32,8,62,18,61,59xm82,-17v41,2,53,-62,14,-73v-5,-2,-9,-3,-14,-4r0,77xm68,-194v-37,-1,-52,61,-13,71v4,2,9,4,13,5r0,-76","w":150},"\ue054":{"d":"90,-195v-37,0,-49,28,-49,65r73,0r0,14r-73,0r0,18r73,0r0,15r-73,0v-1,39,12,65,49,66v27,0,36,-12,48,-29r19,10v-13,23,-33,38,-67,38v-50,0,-73,-33,-72,-85r-13,0r0,-15r13,0r0,-18r-13,0r0,-14r13,0v-14,-86,105,-114,138,-46r-21,8v-8,-16,-22,-28,-45,-27","w":159},"\ue055":{"d":"0,17v73,21,55,-76,69,-130r-31,0r0,-18r34,0v3,-56,25,-113,92,-93r-5,20v-48,-16,-63,28,-64,73r38,0r0,18r-40,0v-15,65,-2,176,-100,148","w":158},"\ue056":{"d":"61,-91v-1,29,-7,53,-21,72r104,0r0,19r-131,0v-2,-25,14,-31,19,-50v4,-13,8,-27,8,-41r-27,0r0,-17r23,0v-22,-41,-18,-109,44,-106v31,1,47,10,61,28r-17,12v-15,-29,-81,-32,-79,13v2,21,10,35,15,53r49,0r0,17r-48,0","w":154},"\ue057":{"d":"136,-32v-12,10,-28,19,-49,19r0,33r-12,0r0,-34v-38,-6,-61,-31,-61,-76v0,-45,21,-72,61,-77r0,-33r12,0r0,32v22,0,37,8,49,19r-13,14v-9,-9,-22,-13,-36,-14r0,117v15,0,27,-8,36,-15xm75,-148v-39,2,-51,64,-30,97v7,10,18,15,30,18r0,-115","w":148},"\ue058":{"d":"79,-107v18,-30,35,-75,52,-106r22,0r-52,104r42,0r0,14r-49,0v-5,6,-4,16,-4,27r53,0r0,14r-53,0r0,54r-21,0r0,-54r-52,0r0,-14r52,0v0,0,1,-21,-3,-27r-49,0r0,-14r42,0r-54,-104r22,0","w":158},"\ue059":{"d":"188,-129v47,-3,42,48,41,94v-1,24,-16,36,-41,36v-47,2,-43,-48,-41,-94v1,-23,18,-35,41,-36xm61,-214v47,-3,42,48,41,93v0,25,-18,35,-41,37v-47,2,-43,-48,-41,-94v1,-24,17,-35,41,-36xm65,5r-17,0r137,-223r18,0xm188,-14v35,2,22,-46,24,-77v0,-14,-10,-22,-24,-22v-34,-1,-21,46,-23,77v-1,14,9,22,23,22xm61,-100v35,0,24,-46,24,-77v0,-14,-10,-22,-24,-22v-34,-1,-24,46,-24,77v0,14,9,22,24,22","w":249},"\ue05a":{"d":"147,-93v0,-47,83,-47,83,0v1,45,7,94,-41,94v-48,0,-43,-48,-42,-94xm288,-129v47,-2,42,48,41,94v-1,24,-16,35,-41,36v-48,3,-41,-49,-41,-94v1,-24,18,-34,41,-36xm61,-214v47,-2,43,47,42,93v-2,24,-18,36,-42,37v-47,2,-43,-48,-41,-94v1,-24,17,-35,41,-36xm65,5r-17,0r137,-223r18,0xm288,-14v34,1,24,-46,24,-77v0,-14,-10,-22,-24,-22v-34,-1,-24,46,-24,77v0,14,10,22,24,22xm189,-14v34,1,24,-46,24,-77v0,-14,-10,-22,-24,-22v-35,-2,-22,46,-24,77v0,14,10,22,24,22xm61,-100v36,0,21,-46,24,-77v0,-14,-10,-22,-24,-22v-34,-1,-24,46,-24,77v0,14,9,22,24,22","w":349},"\ue06c":{"d":"16,-204v21,-24,92,-25,92,22r0,81r-18,0r0,-15v-18,26,-81,22,-81,-19v0,-37,42,-36,81,-34v11,-40,-44,-42,-62,-23xm90,-153v-25,2,-63,-7,-63,18v10,33,74,22,63,-18","w":119},"\ue06d":{"d":"31,-203v27,-36,89,-9,80,42v10,54,-55,83,-80,43r0,17r-19,0r0,-170r19,0r0,68xm61,-116v25,0,31,-19,31,-43v0,-24,-7,-43,-31,-43v-24,-1,-30,20,-30,43v1,23,6,43,30,43","w":119},"\ue06f":{"d":"9,-159v-8,-50,50,-79,80,-47r0,-65r19,0r0,170r-19,0r0,-17v-25,39,-90,12,-80,-41xm59,-117v24,0,30,-19,30,-42v0,-23,-6,-44,-30,-43v-25,0,-31,18,-31,43v0,24,6,43,31,42","w":119},"\ue070":{"d":"28,-154v-5,37,43,49,63,27r12,13v-34,30,-99,12,-94,-45v3,-37,17,-61,52,-61v34,0,53,27,49,66r-82,0xm91,-169v3,-30,-34,-45,-53,-25v-6,6,-9,14,-10,25r63,0","w":118},"\ue073":{"d":"32,-203v21,-28,80,-20,80,25r0,77r-18,0v-4,-40,15,-101,-29,-101v-45,0,-31,59,-33,101r-18,0r0,-170r18,0r0,68","w":125},"\ue074":{"d":"17,-101r0,-117r19,0r0,117r-19,0xm17,-247r0,-18r19,0r0,18r-19,0","w":52},"\ue077":{"d":"53,-100v-23,2,-37,-7,-37,-28r0,-143r18,0r0,141v-1,10,7,14,19,13r0,17","w":57},"\ue078":{"d":"107,-201v18,-32,85,-21,85,22r0,78r-19,0v-3,-41,15,-101,-30,-101v-43,0,-27,60,-30,101r-19,0v-4,-40,15,-101,-30,-101v-43,0,-27,60,-30,101r-19,0r0,-117r19,0r0,14v15,-23,61,-20,73,3","w":207},"\ue079":{"d":"10,-159v0,-37,19,-60,53,-60v32,0,50,20,50,57v0,40,-15,63,-52,63v-36,0,-51,-23,-51,-60xm95,-161v0,-25,-11,-43,-32,-42v-29,0,-37,28,-33,59v2,18,14,29,32,29v26,0,33,-15,33,-46","w":124},"\ue07c":{"d":"34,-201v10,-17,35,-24,56,-14r-8,17v-22,-11,-48,1,-47,26r0,71r-19,0r0,-117r18,0r0,17","w":87},"\ue07d":{"d":"29,-185v10,30,78,1,78,51v0,44,-77,42,-102,17r12,-13v12,10,26,15,41,15v15,-1,30,-5,30,-20v-7,-33,-78,-5,-78,-50v0,-41,65,-42,91,-22r-9,13v-16,-11,-61,-19,-63,9","w":115},"\ue07e":{"d":"40,-132v-1,14,9,16,24,15r0,16v-24,2,-42,-5,-42,-27r0,-75r-16,0r0,-15r16,0r0,-30r18,0r0,30r21,0r0,15r-21,0r0,71","w":70},"\u2070":{"d":"54,-284v55,-2,47,58,46,110v-1,27,-19,41,-46,43v-53,1,-47,-58,-46,-111v2,-27,18,-41,46,-42xm54,-149v40,0,24,-54,27,-91v1,-16,-11,-27,-27,-27v-40,0,-24,55,-27,92v-1,16,11,26,27,26","w":108},"\u2074":{"d":"93,-156r0,23r-18,0r0,-23r-71,0r0,-15r57,-112r21,0r-58,110r51,0r0,-44r18,0r0,44r14,0r0,17r-14,0","w":109},"\u2075":{"d":"81,-182v6,-36,-38,-47,-54,-23r-17,0r0,-78r86,0r0,17r-68,0r0,40v31,-22,80,-3,71,44v8,56,-83,70,-94,17r18,-3v3,12,13,20,28,20v21,0,27,-15,30,-34","w":106},"\u2076":{"d":"53,-131v-42,2,-54,-45,-35,-79r41,-73r21,0r-36,65v30,-8,58,10,57,40v0,30,-19,46,-48,47xm82,-177v0,-17,-12,-27,-28,-27v-16,0,-28,10,-28,27v0,17,11,29,28,29v16,0,28,-12,28,-29","w":107},"\u2077":{"d":"40,-133r-21,0r58,-133r-52,0r0,23r-19,0r0,-40r92,0r0,16","w":102},"\u2078":{"d":"55,-131v-46,0,-68,-61,-28,-79v-35,-18,-16,-79,28,-74v43,-5,62,55,27,73v39,18,19,80,-27,80xm55,-149v16,0,30,-11,30,-27v0,-15,-15,-27,-30,-26v-17,1,-31,8,-31,26v-1,16,15,27,31,27xm55,-218v14,0,27,-9,27,-24v0,-15,-13,-25,-27,-25v-16,0,-28,8,-28,25v0,17,13,24,28,24","w":108},"\u2079":{"d":"64,-198v-30,7,-57,-10,-57,-39v0,-31,18,-46,49,-47v37,-2,56,39,39,69r-47,83r-20,0xm54,-268v-16,0,-28,12,-28,29v0,17,12,27,28,28v16,0,28,-11,28,-28v0,-17,-12,-29,-28,-29","w":106},"\u207a":{"d":"64,-188r0,41r-15,0r0,-41r-44,0r0,-15r44,0r0,-40r15,0r0,40r44,0r0,15r-44,0","w":113},"\u207b":{"d":"11,-183r0,-16r67,0r0,16r-67,0","w":89},"\u207c":{"d":"5,-167r0,-16r103,0r0,16r-103,0xm5,-206r0,-15r103,0r0,15r-103,0","w":113},"\u207d":{"d":"64,-283v-41,38,-41,128,-1,168v-5,6,-11,8,-16,1v-37,-32,-49,-114,-12,-156v8,-9,16,-26,29,-13","w":63},"\u207e":{"d":"13,-290v41,31,57,117,16,163v-6,6,-11,13,-17,19r-11,-7v41,-39,42,-129,0,-168","w":63},"\u207f":{"d":"33,-202v19,-30,80,-20,80,23r0,78r-19,0v-3,-41,15,-101,-30,-101v-44,0,-29,59,-31,101r-18,0r0,-117r18,0r0,16","w":128},"\u2080":{"d":"54,-119v53,-2,47,57,46,110v-1,27,-19,42,-46,43v-54,2,-47,-58,-46,-111v1,-27,19,-41,46,-42xm54,17v40,0,24,-55,27,-92v1,-16,-12,-27,-27,-27v-39,0,-24,55,-27,92v-1,16,11,27,27,27","w":108},"\u2081":{"d":"64,32r-19,0r0,-129r-22,14r0,-20v12,-7,20,-17,41,-14r0,149","w":100},"\u2082":{"d":"81,-80v-1,-30,-52,-25,-54,2r-19,-3v3,-47,97,-50,93,1v-4,43,-50,64,-69,95r67,0r0,17r-92,0r0,-16r65,-75v6,-7,9,-14,9,-21","w":107},"\u2083":{"d":"79,-46v45,25,14,94,-42,79v-16,-4,-27,-15,-31,-32r18,-2v7,29,57,21,57,-11v0,-22,-17,-28,-40,-26r0,-16v21,2,39,-4,39,-23v1,-30,-48,-33,-54,-6r-19,-3v6,-18,22,-31,45,-33v46,-4,61,55,27,73","w":108},"\u2084":{"d":"93,10r0,22r-18,0r0,-22r-71,0r0,-16r57,-111r21,0r-58,109r51,0r0,-43r18,0r0,43r14,0r0,18r-14,0","w":109},"\u2085":{"d":"99,-25v14,62,-78,80,-94,26r19,-3v9,34,61,21,57,-14v7,-36,-38,-47,-53,-23r-18,0r0,-78r86,0r0,17r-68,0r0,40v28,-20,76,-5,71,35","w":106},"\u2086":{"d":"53,34v-43,3,-54,-45,-35,-79r41,-72r21,0r-36,64v31,-7,57,10,57,40v0,31,-19,46,-48,47xm82,-11v0,-17,-11,-28,-28,-28v-17,0,-28,11,-28,28v0,17,11,29,28,29v16,0,28,-12,28,-29","w":107},"\u2087":{"d":"40,32r-21,0r58,-132r-52,0r0,23r-19,0r0,-40r92,0r0,16","w":102},"\u2088":{"d":"55,34v-48,6,-67,-61,-28,-79v-36,-17,-16,-80,28,-74v43,-5,62,56,27,74v39,16,20,85,-27,79xm55,17v15,0,30,-12,30,-28v0,-15,-15,-26,-30,-26v-16,0,-31,10,-31,26v0,16,15,28,31,28xm55,-53v14,0,27,-9,27,-24v0,-15,-14,-25,-27,-25v-15,0,-28,8,-28,25v0,17,12,24,28,24","w":108},"\u2089":{"d":"64,-33v-29,8,-58,-10,-57,-39v0,-31,20,-46,49,-47v35,-1,57,39,39,70r-47,82r-20,0xm54,-102v-17,-1,-28,12,-28,29v0,17,12,27,28,27v16,0,28,-10,28,-27v0,-17,-12,-29,-28,-29","w":106},"\u208a":{"d":"64,-22r0,40r-15,0r0,-40r-44,0r0,-15r44,0r0,-40r15,0r0,40r44,0r0,15r-44,0","w":113},"\u208b":{"d":"11,-17r0,-17r67,0r0,17r-67,0","w":89},"\u208c":{"d":"5,-2r0,-15r103,0r0,15r-103,0xm5,-41r0,-14r103,0r0,14r-103,0","w":113},"\u208d":{"d":"64,-129v-41,39,-41,129,-1,168v-6,6,-11,10,-16,1v-37,-32,-50,-114,-12,-156v8,-9,15,-25,29,-13","w":63},"\u208e":{"d":"13,-135v41,31,57,117,16,163v-6,6,-11,13,-17,19r-11,-7v17,-21,33,-51,33,-85v0,-33,-16,-64,-33,-84","w":63},"\u2153":{"d":"55,8r-18,0r153,-266r18,0xm70,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150xm228,-78v40,18,17,84,-29,80v-24,-2,-40,-12,-45,-33r19,-3v6,30,59,21,57,-10v-1,-22,-17,-30,-41,-27r0,-15v22,2,38,-5,39,-24v0,-29,-48,-31,-54,-5r-18,-3v5,-19,22,-33,45,-33v46,0,61,55,27,73","w":277},"\u2154":{"d":"77,8r-17,0r153,-266r17,0xm82,-213v-1,-30,-52,-25,-54,1r-19,-2v3,-46,98,-51,93,1v-4,43,-49,65,-69,95r67,0r0,17r-92,0r0,-16r65,-76v6,-6,9,-13,9,-20xm247,-78v40,18,19,84,-28,80v-24,-2,-40,-12,-45,-33r19,-3v6,30,56,22,56,-10v0,-22,-16,-29,-40,-27r0,-15v22,2,38,-5,39,-24v0,-29,-48,-31,-54,-5r-19,-3v6,-18,22,-31,45,-33v46,-5,61,56,27,73","w":277},"\u2155":{"d":"249,-58v14,62,-78,82,-94,27r19,-4v9,34,61,24,56,-13v8,-38,-38,-47,-53,-23r-17,0r0,-78r86,0r0,16r-68,0r0,40v28,-21,75,-3,71,35xm52,8r-17,0r153,-266r17,0xm70,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150","w":277},"\u2156":{"d":"270,-58v14,62,-79,82,-94,27r18,-4v3,12,13,21,27,21v23,0,30,-17,30,-41v0,-33,-41,-38,-53,-16r-18,0r0,-78r86,0r0,16r-68,0r0,40v28,-20,76,-4,72,35xm82,-213v-1,-30,-52,-25,-54,1r-19,-2v3,-46,98,-50,93,1v-4,43,-50,64,-69,95r67,0r0,17r-92,0r0,-16r65,-76v6,-6,9,-13,9,-20xm76,8r-17,0r152,-266r18,0","w":277},"\u2157":{"d":"269,-58v14,62,-78,82,-94,27r19,-4v3,13,13,21,27,21v23,0,30,-17,30,-41v0,-31,-41,-39,-53,-16r-18,0r0,-78r86,0r0,16r-68,0r0,40v28,-20,76,-4,71,35xm81,-179v39,18,18,85,-28,80v-24,-3,-42,-11,-45,-33r18,-3v6,29,58,22,57,-9v-1,-22,-17,-30,-41,-27r0,-16v43,10,52,-48,12,-48v-12,1,-24,8,-27,19r-18,-3v5,-19,22,-33,45,-33v46,0,61,55,27,73xm71,8r-17,0r152,-266r18,0","w":277},"\u2158":{"d":"274,-58v14,62,-79,82,-94,27r18,-4v3,12,13,21,27,21v23,0,30,-17,30,-41v0,-33,-41,-38,-53,-16r-18,0r0,-78r86,0r0,16r-68,0r0,40v28,-20,76,-4,72,35xm93,-123r0,22r-18,0r0,-22r-71,0r0,-16r57,-112r21,0r-58,110r51,0r0,-43r18,0r0,43r14,0r0,18r-14,0xm79,8r-17,0r153,-266r17,0","w":277},"\u2159":{"d":"199,1v-44,0,-54,-45,-35,-78r41,-73r21,0r-36,65v31,-8,57,11,57,40v0,29,-17,46,-48,46xm65,8r-17,0r152,-266r18,0xm73,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150xm228,-44v0,-16,-12,-27,-28,-27v-16,0,-28,10,-28,27v-1,18,10,29,28,29v17,0,28,-12,28,-29","w":277},"\u215a":{"d":"218,1v-43,0,-54,-45,-35,-78r41,-73r22,0r-36,65v30,-7,56,10,56,40v-1,30,-18,46,-48,46xm105,-159v13,63,-78,83,-94,27r18,-3v3,12,14,19,28,19v24,1,29,-16,29,-40v0,-34,-41,-38,-53,-16r-17,0r0,-79r86,0r0,17r-68,0r0,40v28,-20,75,-2,71,35xm85,8r-17,0r153,-266r17,0xm247,-44v0,-17,-12,-27,-28,-27v-16,0,-27,11,-27,27v0,18,9,29,27,29v17,0,28,-12,28,-29","w":277},"\u215b":{"d":"54,8r-17,0r153,-266r17,0xm69,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150xm229,-77v38,18,18,84,-28,79v-48,5,-67,-60,-28,-79v-36,-18,-15,-79,28,-74v44,-5,61,54,28,74xm201,-15v15,0,30,-12,30,-28v0,-15,-15,-26,-30,-26v-16,0,-31,10,-31,26v0,16,15,28,31,28xm201,-85v14,0,27,-8,27,-24v0,-16,-13,-25,-27,-25v-16,0,-28,8,-28,25v-1,17,14,24,28,24","w":277},"\u215c":{"d":"74,8r-17,0r152,-266r18,0xm82,-179v40,18,19,85,-28,80v-24,-2,-40,-12,-45,-33r19,-3v5,29,59,22,57,-9v-1,-22,-17,-30,-41,-27r0,-16v21,2,38,-5,38,-24v1,-30,-47,-31,-53,-5r-19,-3v6,-18,22,-31,45,-33v46,-4,61,55,27,73xm247,-77v38,18,18,84,-28,79v-48,5,-67,-60,-28,-79v-36,-18,-15,-79,28,-74v44,-5,61,54,28,74xm219,-15v15,0,30,-12,30,-28v0,-15,-15,-26,-30,-26v-16,0,-31,10,-31,26v0,16,15,28,31,28xm219,-85v14,0,27,-8,27,-24v0,-16,-13,-25,-27,-25v-16,0,-28,8,-28,25v-1,17,14,24,28,24","w":277},"\u215d":{"d":"75,8r-18,0r153,-266r18,0xm102,-159v14,63,-78,83,-94,27r18,-3v3,12,14,19,28,19v24,1,28,-17,30,-40v2,-32,-42,-39,-54,-16r-17,0r0,-79r86,0r0,17r-68,0r0,40v28,-20,75,-2,71,35xm248,-77v38,18,18,84,-28,79v-47,4,-67,-60,-28,-79v-36,-18,-15,-79,28,-74v43,-6,62,56,28,74xm220,-15v15,0,30,-12,30,-28v0,-15,-15,-26,-30,-26v-16,0,-31,10,-31,26v0,16,15,28,31,28xm220,-85v14,0,27,-8,27,-24v0,-16,-13,-25,-27,-25v-16,0,-28,8,-28,25v-1,17,14,24,28,24","w":277},"\u215e":{"d":"64,8r-18,0r153,-266r18,0xm45,-101r-21,0r57,-132r-51,0r0,22r-20,0r0,-40r93,0r0,17xm246,-77v38,18,18,84,-28,79v-48,5,-67,-60,-28,-79v-35,-17,-16,-80,28,-74v43,-4,61,54,28,74xm218,-15v15,0,30,-12,30,-28v0,-15,-15,-26,-30,-26v-16,0,-31,10,-31,26v0,16,15,28,31,28xm218,-85v14,0,27,-8,27,-24v0,-16,-13,-25,-27,-25v-16,0,-28,8,-28,25v-1,17,14,24,28,24","w":277},"\u215f":{"d":"57,8r-17,0r152,-266r18,0xm70,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150","w":143},"%":{"d":"210,-151v26,0,45,15,46,42v1,53,8,111,-46,111v-53,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm210,-16v40,0,24,-55,27,-92v1,-16,-11,-26,-27,-26v-40,0,-24,55,-27,92v-1,16,11,26,27,26xm66,-252v26,0,45,15,46,42v0,52,8,111,-46,111v-54,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm66,-117v40,0,24,-54,27,-91v1,-16,-11,-26,-27,-26v-40,0,-24,54,-27,91v-1,16,11,26,27,26xm76,8r-17,0r152,-266r18,0","w":276},"\u2030":{"d":"210,-151v26,0,45,15,46,42v1,53,8,111,-46,111v-53,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm210,-16v40,0,24,-55,27,-92v1,-16,-11,-26,-27,-26v-40,0,-24,55,-27,92v-1,16,11,26,27,26xm66,-252v26,0,45,15,46,42v0,52,8,111,-46,111v-54,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm66,-117v40,0,24,-54,27,-91v1,-16,-11,-26,-27,-26v-40,0,-24,54,-27,91v-1,16,11,26,27,26xm76,8r-17,0r152,-266r18,0xm320,-151v26,0,45,15,46,42v1,53,8,111,-46,111v-53,0,-47,-58,-46,-111v1,-27,20,-42,46,-42xm320,-16v40,0,24,-55,27,-92v1,-16,-11,-26,-27,-26v-40,0,-24,55,-27,92v-1,16,11,26,27,26","w":383},"\u00aa":{"d":"16,-204v21,-24,92,-25,92,22r0,81r-18,0r0,-15v-18,26,-81,22,-81,-19v0,-37,42,-36,81,-34v11,-40,-44,-42,-62,-23xm90,-153v-25,2,-63,-7,-63,18v10,33,74,22,63,-18","w":119},"\u00b2":{"d":"8,-247v3,-46,96,-51,92,1v-3,45,-50,63,-68,96r67,0r0,17r-93,0r0,-16r66,-76v17,-16,8,-43,-18,-42v-15,0,-24,10,-27,23","w":107},"\u00b3":{"d":"80,-212v40,18,18,86,-29,81v-24,-3,-40,-12,-45,-33r19,-3v6,29,57,22,57,-10v0,-22,-17,-29,-41,-26r0,-17v43,11,52,-47,12,-47v-12,1,-24,8,-27,19r-18,-3v5,-19,22,-33,45,-33v45,0,61,54,27,72","w":108},"\u00b9":{"d":"64,-133r-19,0r0,-129r-22,13r0,-19v12,-7,19,-18,41,-15r0,150","w":100},"\u00ba":{"d":"10,-159v0,-37,19,-60,53,-60v32,0,50,20,50,57v0,40,-15,63,-52,63v-36,0,-51,-23,-51,-60xm95,-161v0,-25,-11,-43,-32,-42v-29,0,-37,28,-33,59v2,18,14,29,32,29v26,0,33,-15,33,-46","w":124},"\u00bc":{"d":"75,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150xm62,8r-17,0r152,-266r18,0xm231,-23r0,23r-19,0r0,-23r-71,0r0,-15r57,-112r21,0r-57,110r50,0r0,-44r19,0r0,44r13,0r0,17r-13,0","w":277},"\u00bd":{"d":"70,-101r-19,0r0,-129r-22,14r0,-20v12,-7,19,-18,41,-15r0,150xm56,8r-17,0r153,-266r17,0xm157,-114v2,-47,97,-49,92,1v-4,44,-49,64,-69,96r67,0r0,17r-92,0r0,-16r65,-76v17,-16,8,-42,-17,-42v-13,1,-25,10,-28,23","w":277},"\u00be":{"d":"86,-179v40,18,17,85,-29,80v-24,-3,-40,-12,-45,-33r19,-3v5,29,59,22,57,-9v-1,-22,-17,-30,-41,-27r0,-16v22,2,38,-5,39,-24v0,-29,-48,-31,-54,-5r-18,-3v6,-43,94,-46,90,8v0,15,-7,26,-18,32xm83,8r-17,0r152,-266r18,0xm251,-23r0,23r-18,0r0,-23r-71,0r0,-15r57,-112r21,0r-57,110r50,0r0,-44r18,0r0,44r14,0r0,17r-14,0","w":277},"\ue40c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm368,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237xm229,-107r19,-92r3,0r20,92r-42,0xm280,-67r13,54r54,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0"},"\ue40d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm221,-107v8,-29,9,-66,21,-92r20,92r-41,0xm271,-67r13,54r54,0r-67,-236r-60,0r-66,236r54,0r13,-54r59,0xm352,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue40e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm219,-107v8,-29,9,-66,21,-92r20,92r-41,0xm269,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0xm498,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v27,-10,46,-29,46,-68xm400,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue40f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm236,-13v72,7,95,-109,29,-126v17,-9,32,-24,32,-49v0,-73,-82,-62,-153,-62r0,237r92,0xm196,-117v31,-2,56,2,56,32v0,31,-25,33,-56,32r0,-64xm196,-209v25,-1,49,-1,50,23v1,28,-22,30,-50,29r0,-52xm429,-255v-68,2,-98,52,-98,121v0,78,25,132,110,125v23,-2,43,-9,60,-19r0,-116r-69,0r0,30r19,3r0,55v-45,17,-66,-30,-64,-80v1,-41,12,-75,49,-76v14,0,32,5,43,9r13,-36v-17,-9,-36,-17,-63,-16"},"\ue410":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm252,-13v72,7,93,-108,29,-126v17,-9,32,-25,32,-49v2,-73,-82,-62,-154,-62r0,237r93,0xm212,-117v31,-2,56,2,56,32v0,31,-25,33,-56,32r0,-64xm212,-209v25,0,49,-2,49,23v0,29,-21,30,-49,29r0,-52xm422,-153v-12,-34,-26,-65,-40,-96r-55,0r69,145r0,91r52,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue411":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm243,-13v72,8,93,-109,29,-126v18,-9,33,-25,33,-49v0,-71,-82,-63,-154,-62r0,237r92,0xm203,-117v31,-2,58,2,57,32v0,30,-26,34,-57,32r0,-64xm203,-209v25,0,49,-2,49,23v0,29,-21,30,-49,29r0,-52xm498,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v27,-10,46,-29,46,-68xm400,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue412":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm338,-23v66,32,184,12,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,4,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-145,-20,-145,52v0,64,55,63,95,85v22,21,1,62,-36,50v-16,0,-31,-4,-44,-9xm147,-133v-3,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-55,0,-58,-159,4,-159v16,0,29,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121"},"\ue413":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm147,-133v-3,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-55,0,-58,-159,4,-159v16,0,29,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121xm328,-13r155,0r0,-42r-97,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39"},"\ue414":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm157,-133v-4,85,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-40,8,-74,43,-75v16,0,31,3,43,8r13,-35v-17,-10,-35,-16,-62,-16v-69,1,-91,54,-94,121xm427,-153v-12,-34,-26,-65,-40,-96r-55,0r69,145r0,91r52,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue415":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm152,-133v-3,85,37,142,125,120v12,-3,23,-8,33,-15r-13,-36v-19,6,-29,12,-49,12v-33,0,-40,-40,-40,-84v1,-40,9,-73,44,-75v15,0,30,4,42,8r13,-35v-17,-10,-35,-16,-62,-16v-67,0,-90,53,-93,121xm397,-107v8,-29,9,-66,21,-92r20,92r-41,0xm447,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0"},"\ue416":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm147,-133v0,69,17,124,85,124v32,0,54,-6,73,-19r-14,-36v-18,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-41,9,-74,44,-75v16,0,29,4,42,8r13,-35v-17,-10,-35,-16,-62,-16v-68,0,-93,53,-93,121xm451,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r54,0r0,-236r-50,0v-2,44,4,97,-2,137"},"\ue417":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm142,-133v-4,86,38,142,126,120v12,-3,23,-8,33,-15r-14,-36v-19,6,-29,12,-49,12v-33,0,-40,-40,-40,-84v1,-40,9,-73,44,-75v15,0,30,4,42,8r14,-35v-17,-10,-36,-16,-63,-16v-67,0,-90,53,-93,121xm448,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-52,0r0,237r52,0r0,-103r66,0r0,103"},"\ue418":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm412,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm147,-133v0,69,17,124,85,124v32,0,54,-6,73,-19r-14,-36v-19,6,-28,12,-48,12v-33,0,-40,-40,-40,-84v0,-40,8,-74,43,-75v16,0,30,3,43,8r13,-35v-17,-10,-36,-16,-63,-16v-68,0,-92,53,-92,121"},"\ue419":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm353,-14r139,0r0,-42r-86,0r0,-60r76,0r0,-42r-76,0r0,-50r86,0r0,-42r-139,0r0,236xm216,-13v76,1,102,-44,102,-120v0,-78,-30,-117,-103,-117r-64,0r0,237r65,0xm203,-209v52,-6,61,26,61,74v0,48,-6,88,-61,81r0,-155"},"\ue41a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm216,-13v76,1,102,-44,102,-120v0,-78,-30,-117,-103,-117r-64,0r0,237r65,0xm203,-209v52,-6,61,26,61,74v0,48,-6,88,-61,81r0,-155xm399,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue41b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm159,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237xm341,-23v66,33,184,10,153,-87v-12,-38,-62,-43,-94,-60v-20,-23,5,-50,41,-41v10,3,22,4,32,8v5,-9,7,-27,12,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,0,61,-37,50v-16,0,-32,-4,-44,-9v-4,10,-10,27,-13,38"},"\ue41c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm171,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237xm350,-13r140,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-140,0r0,237"},"\ue41d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm162,-13r139,0r0,-42r-86,0r0,-61r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237xm428,-255v-68,2,-97,53,-98,121v-2,79,26,130,109,125v23,-2,44,-9,61,-19r0,-116r-69,0r0,30r18,3r0,55v-45,17,-65,-29,-63,-80v2,-41,11,-75,48,-76v14,0,33,4,44,9r13,-36v-17,-9,-36,-17,-63,-16"},"\ue41e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm496,-182v2,-76,-76,-70,-151,-68r0,236r52,0r0,-95r21,0r35,95r53,0r-34,-82r-23,-18v29,-8,47,-30,47,-68xm174,-13r52,0r0,-102r76,0r0,-42r-76,0r0,-50r87,0r0,-42r-139,0r0,236xm397,-209v27,-2,47,3,47,29v0,27,-19,33,-47,31r0,-60"},"\ue41f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm200,-13r53,0r0,-103r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237xm385,-13r52,0r0,-236r-52,0r0,236"},"\ue420":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm473,-140v21,-6,32,-25,32,-49v1,-72,-82,-61,-154,-61r0,236r93,0v72,8,93,-108,29,-126xm404,-118v31,-2,57,3,57,32v1,31,-25,35,-57,33r0,-65xm404,-210v25,0,49,-2,49,24v0,26,-22,30,-49,28r0,-52xm234,-256v-69,0,-97,54,-98,122v-2,79,26,131,110,125v24,-2,44,-10,60,-20r0,-116r-69,0r0,31r19,3r0,55v-47,15,-65,-31,-64,-81v1,-40,12,-75,48,-75v15,0,34,3,45,8r13,-36v-18,-9,-37,-16,-64,-16"},"\ue421":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm502,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-82r-22,-18v29,-9,46,-29,46,-68xm404,-208v26,-2,47,3,46,28v0,27,-18,34,-46,32r0,-60xm234,-256v-69,0,-98,53,-98,122v0,77,26,131,111,125v24,-2,44,-10,60,-20r0,-116r-69,0r0,31r18,3r0,55v-46,15,-63,-31,-63,-81v0,-40,12,-75,49,-75v15,0,32,3,43,8r14,-36v-18,-10,-38,-16,-65,-16"},"\ue422":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm251,-256v-69,0,-98,53,-98,122v0,77,25,131,110,125v24,-2,45,-9,61,-20r0,-116r-69,0r0,31r18,3r0,55v-47,15,-64,-30,-63,-81v1,-40,12,-75,48,-75v15,-1,33,3,44,8r13,-36v-17,-10,-37,-16,-64,-16xm361,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue423":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm248,-14r53,0r0,-236r-53,0r0,93r-65,0r0,-93r-53,0r0,236r53,0r0,-102r65,0r0,102xm427,-9v52,0,86,-23,86,-73r0,-168r-53,0r0,163v-1,22,-10,35,-33,35v-22,0,-30,-13,-30,-35r0,-163r-52,0r0,168v1,50,30,73,82,73"},"\ue424":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm248,-14r53,0r0,-236r-53,0r0,93r-65,0r0,-93r-53,0r0,236r53,0r0,-102r65,0r0,102xm494,-181v0,-77,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-33,-83r-23,-17v27,-10,46,-29,46,-68xm396,-208v26,-2,46,3,46,28v0,28,-18,32,-46,31r0,-59"},"\ue425":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm260,-14r52,0r0,-236r-52,0r0,93r-66,0r0,-93r-53,0r0,236r53,0r0,-102r66,0r0,102xm410,-120r65,107r64,0r-83,-124r82,-112r-60,0v-24,32,-43,70,-70,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue426":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm207,-13r52,0r0,-236r-52,0r0,236xm419,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194"},"\ue427":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm221,-13r53,0r0,-236r-53,0r0,236xm341,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237"},"\ue428":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm314,-23v66,33,185,11,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-53,40,-41v11,1,23,4,33,8r11,-36v-49,-29,-146,-19,-146,52v0,63,56,64,96,85v22,21,1,62,-36,50v-16,-1,-33,-4,-45,-9xm210,-13r52,0r0,-236r-52,0r0,236"},"\ue429":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm210,-13r52,0r0,-236r-52,0r0,236xm329,-13r139,0r0,-42r-86,0r0,-61r76,0r0,-41r-76,0r0,-50r86,0r0,-43r-139,0r0,237"},"\ue42a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm191,-13r52,0r0,-236r-52,0r0,236xm433,-112v-25,-43,-45,-92,-68,-137r-60,0r0,236r50,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-51,0r0,137"},"\ue42b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm207,-13r52,0r0,-236r-52,0r0,236xm388,-13v76,1,102,-43,102,-120v0,-78,-29,-118,-102,-117r-65,0r0,237r65,0xm375,-209v51,-5,61,24,61,74v0,50,-6,88,-61,81r0,-155"},"\ue42c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm479,-132v-1,-70,-20,-122,-90,-122v-69,0,-90,51,-90,122v0,71,20,123,90,123r20,50r44,0v-8,-21,-16,-44,-36,-53v47,-14,62,-59,62,-120xm195,-13r52,0r0,-236r-52,0r0,236xm355,-132v0,-38,-1,-79,34,-79v35,0,33,42,33,79v0,38,1,81,-33,81v-35,0,-34,-43,-34,-81"},"\ue42d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm466,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm204,-13r53,0r0,-236r-53,0r0,236xm368,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue42e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm228,-90v6,41,-32,41,-62,32r-12,38v16,7,32,11,55,11v110,0,62,-145,72,-240r-53,0r0,159xm491,-180v2,-77,-76,-72,-151,-70r0,237r52,0r0,-92v59,3,98,-18,99,-75xm438,-179v1,28,-17,35,-46,33r0,-63v28,-2,46,4,46,30"},"\ue42f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm210,-90v7,43,-32,41,-62,32r-11,38v16,8,32,11,55,11v109,0,61,-145,71,-240r-53,0r0,159xm308,-132v0,71,20,122,90,123v71,0,90,-54,90,-123v0,-70,-20,-122,-90,-122v-70,0,-89,52,-90,122xm364,-132v0,-38,-1,-79,34,-79v35,0,34,42,34,79v0,38,1,80,-34,80v-36,0,-34,-43,-34,-80"},"\ue430":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm143,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107xm327,-13r65,0r28,-166r2,0r28,166r65,0r49,-236r-57,0r-24,178r-2,0r-31,-178r-58,0r-31,180r-2,0r-26,-180r-56,0"},"\ue431":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm183,-13r140,0r0,-42r-88,0r0,-195r-52,0r0,237xm448,-249r-41,188r-2,0r-40,-188r-55,0r64,236r63,0r64,-236r-53,0"},"\ue432":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm189,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237xm428,-207r53,0r0,-43r-156,0r0,43r50,0r0,194r53,0r0,-194"},"\ue433":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm175,-13r140,0r0,-42r-87,0r0,-195r-53,0r0,237xm430,-13v72,7,93,-108,29,-126v17,-9,32,-25,32,-49v1,-72,-82,-63,-154,-62r0,237r93,0xm390,-117v31,-2,56,3,56,32v0,30,-25,33,-56,32r0,-64xm390,-209v25,-1,48,-1,49,23v1,29,-21,30,-49,29r0,-52"},"\ue434":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm234,-132r-50,-117r-59,0r0,236r51,0v2,-48,-4,-106,2,-150r39,95r34,0v15,-31,23,-67,41,-95r0,150r50,0r0,-236r-58,0xm436,-13v76,0,102,-43,102,-120v0,-78,-29,-117,-102,-117r-65,0r0,237r65,0xm423,-209v51,-5,61,25,61,74v0,48,-6,88,-61,81r0,-155"},"\ue435":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm224,-132v-19,-37,-33,-79,-51,-117r-58,0r0,236r50,0v2,-48,-4,-106,2,-150r40,95r33,0r39,-95r3,0r0,150r49,0r0,-236r-58,0xm445,-93v15,24,25,54,39,80r57,0r-66,-122r62,-114r-57,0r-35,75r-35,-75r-57,0r61,114r-65,122r57,0"},"\ue436":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm246,-132r-50,-117r-59,0r0,236r51,0v2,-48,-4,-106,2,-150r39,95r33,0v15,-31,24,-67,42,-95r0,150r50,0r0,-236r-58,0xm478,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194"},"\ue437":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm269,-112r-67,-137r-59,0r0,236r49,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-50,0v-2,44,4,97,-2,137xm343,-132v0,71,20,122,90,123v71,0,90,-54,90,-123v0,-70,-20,-122,-90,-122v-70,0,-89,52,-90,122xm399,-132v0,-38,-1,-79,34,-79v36,0,34,43,34,79v0,36,2,80,-34,80v-36,0,-34,-43,-34,-80"},"\ue438":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm274,-112r-67,-137r-59,0r0,236r50,0v2,-47,-4,-104,2,-147r72,147r55,0r0,-236r-51,0v-2,44,4,97,-2,137xm382,-13r140,0r0,-42r-87,0r0,-195r-53,0r0,237"},"\ue439":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm281,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r54,0r0,-236r-50,0v-2,44,4,97,-2,137xm357,-13r154,0r0,-42r-96,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39"},"\ue43a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm439,-208r52,0r0,-42r-156,0r0,42r51,0r0,194r53,0r0,-194"},"\ue43b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm315,-180v0,-79,-75,-71,-150,-70r0,236r52,0r0,-92v60,3,98,-16,98,-74xm263,-179v0,28,-17,34,-46,32r0,-63v27,-2,46,4,46,31xm355,-13r139,0r0,-42r-87,0r0,-195r-52,0r0,237"},"\ue43c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm397,-120v24,34,44,72,67,107r63,0r-82,-124r82,-112r-60,0r-70,100r0,-100r-53,0r0,236r53,0r0,-107"},"\ue43d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm310,-180v2,-78,-75,-72,-151,-70r0,236r52,0r0,-92v60,4,97,-17,99,-74xm257,-179v0,29,-17,34,-46,32r0,-63v28,-2,46,4,46,31xm341,-23v65,33,184,12,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v22,21,1,62,-36,50v-16,-1,-33,-4,-45,-9"},"\ue43e":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm301,-180v0,-79,-75,-71,-151,-70r0,236r53,0r0,-92v59,3,98,-16,98,-74xm248,-179v0,29,-16,34,-45,32r0,-63v27,-1,45,3,45,31xm449,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-52,0r0,237r52,0r0,-103r66,0r0,103"},"\ue43f":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm326,-132v0,70,21,123,91,123v70,0,89,-52,89,-123v0,-69,-20,-122,-89,-122v-70,0,-91,52,-91,122xm304,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm382,-132v0,-38,-1,-79,35,-79v34,0,33,42,33,79v0,37,1,80,-33,80v-36,0,-35,-42,-35,-80xm206,-208v26,-2,47,3,46,28v0,27,-18,33,-46,31r0,-59"},"\ue440":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm297,-181v2,-76,-76,-69,-150,-68r0,236r52,0r0,-95r20,0r36,95r52,0r-34,-83r-22,-17v28,-9,46,-31,46,-68xm420,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm199,-208v26,-1,45,1,45,28v0,27,-17,33,-45,31r0,-59"},"\ue441":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm165,-23v66,33,184,12,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,3,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-146,-20,-146,52v0,63,56,63,96,85v21,21,1,62,-36,50v-16,0,-31,-4,-44,-9xm375,-13r52,0r0,-236r-52,0r0,236"},"\ue442":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm163,-23v66,33,184,10,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,-1,-32,-4,-44,-9v-2,12,-10,27,-13,38xm348,-13r139,0r0,-42r-87,0r0,-61r77,0r0,-41r-77,0r0,-50r87,0r0,-43r-139,0r0,237"},"\ue443":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm162,-23v66,33,184,10,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-53,40,-41v11,1,22,4,32,8r12,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,0,-31,-4,-44,-9v-4,10,-10,27,-13,38xm395,-120r65,107r64,0r-82,-124r81,-112r-59,0v-25,32,-44,70,-71,100r0,-100r-52,0r0,236r52,0v2,-34,-4,-77,2,-107"},"\ue444":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm150,-23v66,33,183,11,153,-87v-12,-38,-62,-42,-93,-60v-20,-22,3,-53,40,-41v11,1,23,4,33,8r11,-36v-48,-28,-146,-20,-146,52v0,63,56,64,96,85v20,22,1,61,-36,50v-17,-1,-32,-4,-45,-9xm430,-255v-67,3,-98,52,-98,121v0,78,25,132,110,125v23,-2,43,-9,60,-19r0,-116r-69,0r0,30r19,3r0,55v-45,17,-66,-30,-64,-80v1,-41,12,-75,49,-76v14,0,32,5,43,9r14,-36v-18,-8,-37,-17,-64,-16"},"\ue445":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm450,-67r13,54r54,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0xm153,-23v66,33,184,10,153,-87v-12,-38,-62,-43,-94,-60v-20,-23,4,-50,41,-41v10,3,22,4,32,8r12,-36v-49,-28,-146,-21,-146,52v0,63,55,64,96,85v20,23,1,61,-37,50v-16,0,-31,-4,-44,-9xm399,-107v8,-29,9,-66,21,-92r21,92r-42,0"},"\ue446":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm490,-181v2,-76,-76,-69,-151,-68r0,236r53,0r0,-95r20,0r35,95r53,0r-34,-83r-22,-17v28,-10,45,-31,46,-68xm255,-207r52,0r0,-43r-155,0r0,43r50,0r0,194r53,0r0,-194xm392,-208v26,-1,45,1,45,28v0,27,-17,33,-45,31r0,-59"},"\ue447":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm243,-207r52,0r0,-43r-156,0r0,43r51,0r0,194r53,0r0,-194xm439,-13r52,0r0,-237r-52,0r0,94r-66,0r0,-94r-53,0r0,237r53,0r0,-103r66,0r0,103"},"\ue448":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm218,-9v52,-1,84,-22,85,-73r0,-167r-52,0r0,162v-1,22,-10,36,-33,36v-23,-1,-30,-14,-30,-36r0,-162r-52,0r0,167v1,48,30,74,82,73xm395,-107v8,-29,9,-66,21,-92r20,92r-41,0xm445,-67r13,54r54,0r-67,-236r-61,0r-65,236r54,0r13,-54r59,0"},"\ue449":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm227,-9v52,-1,85,-22,86,-73r0,-167r-53,0r0,162v-1,22,-10,36,-33,36v-22,0,-29,-13,-29,-36r0,-162r-53,0r0,167v1,48,30,74,82,73xm349,-23v65,33,185,11,153,-87v-12,-38,-62,-42,-93,-60v-21,-21,3,-51,40,-41v11,3,23,4,33,8r11,-36v-49,-28,-146,-20,-146,52v0,63,55,64,96,85v20,22,1,61,-36,50v-16,-1,-33,-4,-45,-9"},"\ue44a":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm274,-249r-41,188r-2,0r-41,-188r-54,0r63,236r64,0r64,-236r-53,0xm348,-13r140,0r0,-42r-87,0r0,-61r76,0r0,-41r-76,0r0,-50r87,0r0,-43r-140,0r0,237"},"\ue44b":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm348,-13r140,0r0,-42r-87,0r0,-61r76,0r0,-41r-76,0r0,-50r87,0r0,-43r-140,0r0,237xm235,-153v-12,-34,-26,-65,-40,-96r-55,0r68,145r0,91r53,0r0,-92r70,-144r-55,0v-15,31,-23,68,-41,96"},"\ue44c":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm145,-13r155,0r0,-42r-97,0r92,-157r0,-38r-142,0r0,43r83,0r-91,155r0,39xm386,-107r19,-92r3,0r20,92r-42,0xm437,-67r12,54r55,0r-67,-236r-61,0r-66,236r55,0r12,-54r60,0"},"\ue478":{"d":"368,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm271,-107r-20,-92r-3,0r-19,92r42,0xm220,-67r-12,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue479":{"d":"262,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm212,-67r-13,54r-54,0r66,-236r60,0r67,236r-54,0r-13,-54r-59,0xm352,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47a":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm498,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm210,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm400,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm260,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0"},"\ue47b":{"d":"297,-188v0,25,-14,41,-32,49v66,16,43,126,-29,126r-92,0r0,-237v71,0,153,-11,153,62xm196,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm196,-157v28,2,51,-2,50,-29v-1,-24,-25,-24,-50,-23r0,52xm441,-9v-85,6,-107,-47,-110,-125v-4,-93,77,-150,161,-105r-13,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160r19,-4r0,-55r-19,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47c":{"d":"313,-188v0,24,-15,40,-32,49v25,7,39,27,39,57v0,42,-26,69,-68,69r-93,0r0,-237v72,0,156,-11,154,62xm212,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm212,-157v28,2,49,-1,49,-29v0,-25,-24,-23,-49,-23r0,52xm424,-153r39,-96r55,0r-70,144r0,92r-52,0r0,-91r-69,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue47d":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm234,-250v68,-10,96,87,39,110v62,18,44,127,-30,127r-92,0r0,-237r83,0xm498,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm203,-53v31,1,57,-2,57,-32v0,-29,-26,-34,-57,-32r0,64xm400,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm203,-157v28,2,51,-2,50,-29v-1,-24,-25,-24,-50,-23r0,52"},"\ue47e":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm456,-147v70,36,37,153,-50,138v-25,-4,-50,-4,-68,-14r14,-38v34,19,116,12,81,-41v-39,-21,-96,-20,-96,-85v0,-72,96,-80,145,-52r-11,36v-24,-8,-80,-22,-80,15v-1,32,45,31,65,41xm306,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-5,-94,73,-149,156,-104r-14,35v-11,-5,-26,-8,-42,-8v-63,0,-58,159,-4,159v20,0,30,-6,49,-12"},"\ue47f":{"d":"306,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-5,-94,73,-149,156,-104r-14,35v-11,-5,-26,-8,-42,-8v-63,0,-58,159,-4,159v20,0,30,-6,49,-12xm328,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r97,0r0,42r-155,0r0,-39xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue480":{"d":"316,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-94,72,-149,155,-104r-13,35v-12,-5,-27,-8,-43,-8v-35,1,-43,35,-43,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm429,-153r39,-96r55,0r-70,144r0,92r-52,0r0,-91r-69,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue481":{"d":"310,-28v-19,13,-41,19,-72,19v-69,-1,-83,-55,-86,-125v-5,-93,73,-149,155,-104r-13,35v-12,-4,-27,-8,-42,-8v-35,1,-43,36,-44,75v0,43,7,84,40,84v20,0,30,-6,49,-12xm438,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm388,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue482":{"d":"305,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-93,73,-149,155,-104r-13,35v-13,-4,-26,-8,-42,-8v-35,1,-44,35,-44,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm453,-112r0,-137r50,0r0,236r-54,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue483":{"d":"301,-28v-19,13,-41,19,-73,19v-69,-1,-83,-55,-86,-125v-4,-94,73,-149,156,-104r-14,35v-13,-4,-26,-8,-42,-8v-35,1,-43,36,-44,75v0,43,7,84,40,84v20,0,30,-6,49,-12xm448,-116r-66,0r0,103r-52,0r0,-237r52,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue484":{"d":"305,-28v-19,13,-41,19,-73,19v-69,0,-81,-56,-85,-125v-5,-94,72,-149,155,-104r-13,35v-13,-5,-27,-8,-43,-8v-35,1,-43,35,-43,75v0,43,7,84,40,84v20,0,30,-6,48,-12xm412,-51v23,0,32,-14,33,-36r0,-162r53,0r0,167v-1,51,-34,72,-86,73v-52,1,-82,-25,-82,-73r0,-167r53,0r0,162v0,23,7,36,29,36xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue485":{"d":"353,-250r139,0r0,42r-86,0r0,50r76,0r0,42r-76,0r0,60r86,0r0,42r-139,0r0,-236xm215,-250v73,0,103,38,103,116v0,76,-25,122,-102,121r-65,0r0,-237r64,0xm203,-54v54,7,62,-32,61,-81v-1,-48,-9,-80,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue486":{"d":"215,-250v73,0,103,38,103,116v0,76,-25,122,-102,121r-65,0r0,-237r64,0xm203,-54v54,7,62,-32,61,-81v-1,-48,-9,-80,-61,-74r0,155xm397,-120r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r69,-100r59,0r-81,112r82,124r-64,0v-23,-35,-41,-75,-67,-107xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue487":{"d":"159,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm458,-147v71,35,39,151,-49,138v-25,-4,-51,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,44,31,65,41xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue488":{"d":"171,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm350,-250r140,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue489":{"d":"162,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,61r86,0r0,42r-139,0r0,-237xm440,-9v-84,6,-110,-46,-110,-125v0,-93,77,-150,161,-105r-13,36v-11,-4,-29,-9,-43,-9v-37,1,-49,35,-49,76v0,51,16,96,63,80r0,-55r-18,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48a":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm496,-182v0,38,-18,59,-47,68r23,18r34,82r-53,0r-35,-95r-21,0r0,95r-52,0r0,-236v75,-1,153,-8,151,68xm174,-249r139,0r0,42r-87,0r0,50r76,0r0,42r-76,0r0,102r-52,0r0,-236xm397,-149v28,2,47,-4,47,-31v0,-26,-20,-31,-47,-29r0,60"},"\ue48b":{"d":"200,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,103r-53,0r0,-237xm385,-249r52,0r0,236r-52,0r0,-236xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48c":{"d":"473,-140v25,8,39,27,39,57v0,43,-25,69,-68,69r-93,0r0,-236v71,0,155,-11,154,61v0,24,-12,41,-32,49xm404,-53v32,2,58,-2,57,-33v0,-29,-26,-34,-57,-32r0,65xm404,-158v27,2,49,-2,49,-28v0,-26,-24,-25,-49,-24r0,52xm246,-9v-84,6,-110,-46,-110,-125v0,-95,79,-151,162,-106r-13,36v-11,-5,-30,-9,-44,-9v-68,-1,-65,157,-4,160v6,0,16,-2,19,-3r0,-55r-19,-3r0,-31r69,0r0,116v-16,10,-36,18,-60,20xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48d":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm502,-181v0,39,-18,59,-46,68r22,18r34,82r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-9,150,68xm247,-9v-85,6,-107,-48,-111,-125v-5,-95,80,-151,163,-106r-14,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160v6,0,15,-2,19,-3r0,-55r-19,-3r0,-31r69,0r0,116v-16,10,-36,18,-60,20xm404,-148v28,2,47,-5,46,-32v0,-25,-19,-30,-46,-28r0,60"},"\ue48e":{"d":"263,-9v-85,6,-107,-48,-110,-125v-4,-94,78,-152,162,-106r-13,36v-11,-5,-30,-9,-44,-9v-67,-1,-64,158,-4,160v6,0,15,-2,19,-3r0,-55r-18,-3r0,-31r69,0r0,116v-17,11,-37,18,-61,20xm361,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue48f":{"d":"249,-116r-66,0r0,102r-53,0r0,-236r53,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm427,-52v23,0,32,-14,33,-35r0,-163r53,0r0,168v-3,49,-34,73,-86,73v-51,0,-82,-23,-82,-73r0,-168r52,0r0,163v1,22,8,34,30,35xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue490":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm494,-181v0,39,-19,58,-46,68r23,17r33,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm249,-116r-66,0r0,102r-53,0r0,-236r53,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm396,-149v28,1,47,-3,46,-31v-1,-25,-19,-31,-46,-29r0,60"},"\ue491":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm534,-249v-93,-71,-308,-71,-411,-6v-59,37,-109,117,-60,192v76,118,345,139,471,50r-59,0v-23,-35,-41,-75,-67,-107r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r68,-100r56,0xm260,-116r-66,0r0,102r-52,0r0,-236r52,0r0,93r66,0r0,-93r52,0r0,236r-52,0r0,-102xm537,-15v56,-31,99,-112,53,-180v-13,-20,-30,-37,-53,-53r-81,111"},"\ue492":{"d":"207,-249r52,0r0,236r-52,0r0,-236xm419,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue493":{"d":"221,-249r53,0r0,236r-53,0r0,-236xm341,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue494":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm432,-147v70,36,38,153,-50,138v-25,-4,-50,-4,-68,-14r14,-38v30,13,103,22,87,-32v-30,-36,-103,-21,-103,-94v0,-71,96,-81,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41xm210,-249r52,0r0,236r-52,0r0,-236"},"\ue495":{"d":"210,-249r52,0r0,236r-52,0r0,-236xm329,-250r139,0r0,43r-86,0r0,50r76,0r0,41r-76,0r0,61r86,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue496":{"d":"191,-249r52,0r0,236r-52,0r0,-236xm432,-112v4,-42,0,-92,1,-137r51,0r0,236r-55,0r-72,-147r-2,0r0,147r-50,0r0,-236r60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue497":{"d":"207,-249r52,0r0,236r-52,0r0,-236xm388,-250v73,-1,102,39,102,116v0,77,-25,122,-102,121r-65,0r0,-237r65,0xm375,-54v55,7,61,-30,61,-81v0,-49,-9,-80,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue498":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm447,26v79,-26,154,-63,163,-157v-24,-221,-447,-218,-547,-69v-52,78,6,162,60,193v67,39,180,64,283,43r-17,-45v-69,-3,-89,-52,-90,-123v0,-71,21,-122,90,-122v70,0,89,52,90,122v0,61,-16,106,-62,120v13,9,25,21,30,38xm195,-249r52,0r0,236r-52,0r0,-236xm423,-132v0,-36,1,-79,-34,-79v-35,0,-34,42,-34,79v0,38,-1,81,34,81v35,0,34,-44,34,-81"},"\ue499":{"d":"204,-249r53,0r0,236r-53,0r0,-236xm466,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-53,0r0,-236v74,0,151,-10,151,68xm368,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49a":{"d":"281,-89v10,75,-65,97,-127,69r12,-38v29,9,62,11,62,-32r0,-159r53,0r0,160xm491,-180v-1,57,-39,78,-99,75r0,92r-52,0r0,-237v75,-1,153,-8,151,70xm438,-179v0,-26,-18,-32,-46,-30r0,63v29,2,47,-5,46,-33xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49b":{"d":"263,-89v12,76,-65,96,-126,69r11,-38v30,8,62,12,62,-32r0,-159r53,0r0,160xm488,-132v0,70,-19,123,-90,123v-70,0,-90,-54,-90,-123v0,-70,20,-122,90,-122v70,0,90,52,90,122xm432,-132v0,-38,1,-79,-34,-79v-35,0,-34,42,-34,79v0,37,-2,80,34,80v35,0,34,-42,34,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49c":{"d":"162,-120v-4,29,0,65,-1,96r-48,0r0,-213r48,0r1,91r62,-91r54,0r-74,102r75,111r-58,0xm283,-236r50,0r25,161r28,-161r53,0r29,160r22,-160r51,0r-44,212r-58,0r-27,-148r-26,148r-58,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49d":{"d":"183,-250r52,0r0,195r88,0r0,42r-140,0r0,-237xm448,-249r53,0r-64,236r-63,0r-64,-236r55,0r40,188r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49e":{"d":"189,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm428,-13r-53,0r0,-194r-50,0r0,-43r156,0r0,43r-53,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue49f":{"d":"175,-250r53,0r0,195r87,0r0,42r-140,0r0,-237xm420,-250v69,-10,96,88,39,110v62,18,45,127,-29,127r-93,0r0,-237r83,0xm390,-53v31,1,56,-1,56,-32v0,-30,-25,-34,-56,-32r0,64xm390,-157v28,2,50,-2,49,-29v-1,-24,-24,-24,-49,-23r0,52xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a0":{"d":"234,-132r50,-117r58,0r0,236r-50,0v-2,-48,4,-106,-2,-150r-39,95r-34,0v-15,-31,-23,-67,-41,-95r0,150r-51,0r0,-236r59,0xm436,-250v72,0,102,39,102,116v0,78,-26,121,-102,121r-65,0r0,-237r65,0xm423,-54v55,7,61,-32,61,-81v0,-49,-10,-79,-61,-74r0,155xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a1":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm534,-249v-93,-71,-308,-71,-411,-6v-59,37,-109,117,-60,192v76,118,345,139,471,50r-50,0r-39,-80r-38,80r-58,0r66,-122r-62,-114r57,0r36,75r34,-75r54,0xm223,-132v20,-36,33,-78,50,-117r59,0r0,236r-50,0r0,-150r-3,0r-39,95r-33,0v-15,-31,-24,-67,-42,-95r0,150r-50,0r0,-236r59,0xm539,-16v54,-32,97,-112,51,-179v-13,-20,-31,-38,-54,-53r-61,113"},"\ue4a2":{"d":"246,-132r50,-117r58,0r0,236r-50,0v-2,-48,4,-106,-2,-150r-40,95r-33,0v-15,-31,-23,-67,-41,-95r0,150r-51,0r0,-236r59,0xm478,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a3":{"d":"271,-112r0,-137r50,0r0,236r-55,0r-72,-147r-2,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm523,-132v0,69,-19,123,-90,123v-70,0,-90,-52,-90,-123v1,-70,20,-122,90,-122v70,0,90,52,90,122xm467,-132v0,-36,2,-79,-34,-79v-35,0,-34,42,-34,79v0,37,-2,80,34,80v36,0,34,-44,34,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a4":{"d":"276,-112r0,-137r51,0r0,236r-55,0r-72,-147r-2,0r0,147r-50,0r0,-236r59,0r67,137r2,0xm382,-250r53,0r0,195r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a5":{"d":"283,-112r0,-137r50,0r0,236r-54,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm357,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r96,0r0,42r-154,0r0,-39xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a6":{"d":"310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32xm439,-14r-53,0r0,-194r-51,0r0,-42r156,0r0,42r-52,0r0,194xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a7":{"d":"315,-180v0,58,-38,77,-98,74r0,92r-52,0r0,-236v75,-1,150,-9,150,70xm263,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-4,46,-32xm355,-250r52,0r0,195r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a8":{"d":"310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32xm398,-120v-4,32,0,72,-1,107r-53,0r0,-236r53,0r1,100r69,-100r60,0r-82,112r82,124r-63,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4a9":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm310,-180v-2,57,-39,78,-99,74r0,92r-52,0r0,-236v75,-1,153,-8,151,70xm459,-147v70,35,38,152,-50,138v-26,-4,-50,-5,-68,-14r13,-38v31,12,104,22,88,-32v-30,-36,-103,-21,-103,-94v0,-72,94,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,31,66,41xm257,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-2,46,-32"},"\ue4aa":{"d":"301,-180v0,58,-39,77,-98,74r0,92r-53,0r0,-236v75,-1,151,-10,151,70xm249,-179v0,-27,-18,-33,-46,-31r0,63v29,2,46,-4,46,-32xm449,-116r-66,0r0,103r-52,0r0,-237r52,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ab":{"d":"304,-181v0,39,-19,58,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,150,-10,150,68xm206,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm506,-132v0,71,-20,123,-89,123v-71,0,-91,-53,-91,-123v0,-70,21,-122,91,-122v69,0,89,53,89,122xm450,-132v0,-37,1,-79,-33,-79v-36,0,-35,41,-35,79v0,36,-2,80,35,80v34,0,33,-43,33,-80xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ac":{"d":"297,-181v-1,37,-18,59,-46,68r22,17r34,83r-52,0r-36,-95r-20,0r0,95r-52,0r0,-236v74,-1,152,-9,150,68xm199,-149v28,2,46,-4,46,-31v0,-25,-19,-31,-46,-29r0,60xm420,-51v23,0,32,-14,33,-36r0,-162r53,0r0,167v-1,51,-34,72,-86,73v-52,1,-82,-25,-82,-73r0,-167r53,0r0,162v0,23,7,36,29,36xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ad":{"d":"291,-147v70,35,37,152,-50,138v-25,-4,-51,-4,-67,-14r12,-38v31,12,103,22,87,-32v-28,-36,-102,-21,-102,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-80,-23,-80,15v0,32,45,31,65,41xm383,-249r52,0r0,236r-52,0r0,-236xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4ae":{"d":"281,-147v70,36,38,151,-50,138v-25,-4,-51,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41xm348,-250r139,0r0,43r-87,0r0,50r77,0r0,41r-77,0r0,61r87,0r0,42r-139,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4af":{"d":"280,-147v70,36,37,151,-50,138v-25,-4,-51,-5,-68,-14r13,-38v30,13,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,45,30,66,41xm393,-120r0,107r-52,0r0,-236r52,0v2,32,-4,72,2,100r69,-100r59,0r-81,112r82,124r-64,0v-23,-35,-41,-75,-67,-107xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b0":{"d":"268,-147v70,35,37,152,-50,138v-25,-4,-50,-5,-68,-14r13,-38v31,12,104,22,88,-32v-30,-36,-103,-21,-103,-94v0,-72,97,-80,146,-52r-11,36v-24,-8,-80,-22,-80,15v0,32,45,31,65,41xm442,-9v-85,6,-107,-47,-110,-125v-4,-94,79,-149,162,-105r-14,36v-11,-4,-29,-9,-43,-9v-68,-1,-65,157,-4,160r19,-4r0,-55r-19,-3r0,-30r69,0r0,116v-17,10,-37,17,-60,19xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b1":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm390,-67r-12,54r-55,0r66,-236r61,0r67,236r-54,0r-13,-54r-60,0xm271,-147v70,36,37,152,-51,138v-25,-4,-50,-4,-67,-14r13,-38v30,13,103,22,87,-32v-28,-36,-102,-20,-102,-94v0,-72,97,-80,146,-52r-12,36v-23,-9,-80,-22,-80,15v0,31,45,30,66,41xm441,-107v-9,-29,-11,-66,-23,-92r-19,92r42,0"},"\ue4b2":{"d":"255,-13r-53,0r0,-194r-50,0r0,-43r155,0r0,43r-52,0r0,194xm490,-181v-1,37,-18,58,-46,68r22,17r34,83r-53,0r-35,-95r-20,0r0,95r-53,0r0,-236v75,-1,154,-9,151,68xm392,-149v27,1,45,-3,45,-31v0,-26,-19,-31,-45,-29r0,60xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b3":{"d":"243,-13r-53,0r0,-194r-51,0r0,-43r156,0r0,43r-52,0r0,194xm439,-116r-66,0r0,103r-53,0r0,-237r53,0r0,94r66,0r0,-94r52,0r0,237r-52,0r0,-103xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b4":{"d":"218,-51v23,0,32,-14,33,-36r0,-162r52,0r0,167v-1,51,-33,72,-85,73v-52,1,-82,-25,-82,-73r0,-167r52,0r0,162v1,22,7,35,30,36xm436,-107v-9,-29,-10,-66,-22,-92r-19,92r41,0xm386,-67r-13,54r-54,0r65,-236r61,0r67,236r-54,0r-13,-54r-59,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b5":{"d":"622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm227,-51v24,0,33,-13,34,-36r0,-162r52,0r0,167v-1,51,-34,72,-86,73v-52,1,-81,-26,-81,-73r0,-167r52,0r0,162v0,23,7,36,29,36xm467,-147v70,36,38,152,-50,138v-26,-4,-50,-5,-68,-14r13,-38v30,12,103,22,87,-32v-28,-36,-102,-21,-102,-94v0,-72,94,-80,146,-52r-11,36v-24,-8,-81,-22,-81,15v0,31,45,30,66,41"},"\ue4b6":{"d":"274,-249r53,0r-64,236r-64,0r-63,-236r54,0r41,188r2,0xm348,-250r140,0r0,43r-87,0r0,50r76,0r0,41r-76,0r0,61r87,0r0,42r-140,0r0,-237xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b7":{"d":"348,-250r140,0r0,43r-87,0r0,50r76,0r0,41r-76,0r0,61r87,0r0,42r-140,0r0,-237xm237,-153r39,-96r55,0r-70,144r0,92r-53,0r0,-91r-68,-145r55,0v15,31,24,68,42,96xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue4b8":{"d":"145,-52r91,-155r-83,0r0,-43r142,0r0,37r-92,158r97,0r0,42r-155,0r0,-39xm428,-107r-20,-92r-3,0r-19,92r42,0xm377,-67r-12,54r-55,0r66,-236r61,0r67,236r-55,0r-12,-54r-60,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\ue360":{"d":"82,-265r64,164r-21,0r-14,-38r-75,0r-14,38r-21,0r64,-164r17,0xm73,-240r-31,85r63,0","w":147},"\ue361":{"d":"110,-185v44,11,32,84,-20,84r-72,0r0,-164v53,-1,118,-7,116,44v-1,17,-9,29,-24,36xm118,-148v0,-35,-45,-28,-80,-28r0,58v36,0,80,7,80,-30xm114,-221v0,-33,-43,-27,-76,-27r0,55v34,0,76,6,76,-28","w":146},"\ue362":{"d":"140,-185v9,79,-45,90,-122,84r0,-164v74,-5,131,3,122,80xm38,-118v47,4,82,-2,82,-48v0,-45,-1,-84,-46,-81r-36,0r0,129","w":151},"\ue363":{"d":"18,-101r0,-164r109,0r0,18r-89,0r0,55r76,0r0,17r-76,0r0,57r89,0r0,17r-109,0","w":133},"\ue364":{"d":"118,-101r0,-74r-80,0r0,74r-20,0r0,-164r20,0r0,73r80,0r0,-73r20,0r0,164r-20,0","w":156},"\ue365":{"d":"18,-101r0,-164r20,0r0,164r-20,0","w":56},"\ue366":{"d":"18,-101r0,-164r20,0r0,147r89,0r0,17r-109,0","w":133},"\ue367":{"d":"149,-101r0,-119r-47,95r-17,0r-47,-97r0,121r-20,0r0,-164r20,0r56,116r56,-116r19,0r0,164r-20,0","w":185},"\ue368":{"d":"130,-101r-92,-132r0,132r-20,0r0,-164r19,0r92,132r0,-132r18,0r0,164r-17,0","w":165},"\ue369":{"d":"11,-160v-4,-60,5,-106,62,-106v58,0,63,47,61,106v-1,35,-24,61,-61,60v-40,0,-60,-22,-62,-60xm114,-161v0,-44,4,-87,-41,-87v-45,0,-42,42,-42,87v0,28,14,44,42,44v27,1,41,-18,41,-44","w":144},"\ue36a":{"d":"139,-220v-1,25,-17,40,-39,45r38,74r-24,0r-34,-73r-42,0r0,73r-19,0r0,-164v54,0,121,-9,120,45xm38,-190v36,0,81,6,81,-30v0,-37,-46,-27,-81,-28r0,58","w":147},"\ue36b":{"d":"31,-219v13,44,98,14,98,74v0,55,-89,56,-122,27r10,-15v21,18,92,29,92,-12v0,-51,-97,-13,-97,-75v0,-51,74,-56,110,-32r-9,17v-24,-15,-80,-24,-82,16","w":137},"\ue36c":{"d":"70,-248r0,147r-20,0r0,-147r-50,0r0,-17r120,0r0,17r-50,0","w":119},"\ue36d":{"d":"82,-265r64,164r-21,0r-14,-38r-75,0r-14,38r-21,0r64,-164r17,0xm73,-240r-31,85r63,0","w":147},"\ue36e":{"d":"118,-101r0,-74r-80,0r0,74r-20,0r0,-164r20,0r0,73r80,0r0,-73r20,0r0,164r-20,0","w":156},"\ue36f":{"d":"130,-101r-92,-132r0,132r-20,0r0,-164r19,0r92,132r0,-132r18,0r0,164r-17,0","w":165},"\ue370":{"d":"11,-160v-4,-60,5,-106,62,-106v58,0,63,47,61,106v-1,35,-24,61,-61,60v-40,0,-60,-22,-62,-60xm114,-161v0,-44,4,-87,-41,-87v-45,0,-42,42,-42,87v0,28,14,44,42,44v27,1,41,-18,41,-44","w":144},"\ue371":{"d":"103,-262v52,12,41,100,-18,94r-47,0r0,67r-20,0r0,-164v29,1,61,-3,85,3xm38,-185v37,0,80,5,80,-31v1,-37,-43,-31,-80,-31r0,62","w":140},"\ue372":{"d":"8,-101r0,-15r43,-69r-43,-65r0,-15r105,0r0,17r-82,0r42,63r-43,67r86,0r0,17r-108,0","w":122},"\ue373":{"d":"71,-101r-18,0r0,-67r-53,-97r21,0r41,79r41,-79r20,0r-52,97r0,67","w":122},"\u0387":{"d":"22,-108r0,-32r29,0r0,32r-29,0","w":74},"\ue37f":{"d":"320,1r-125,-126r125,-127r0,253xm185,1r-126,-126r126,-127r0,253xm54,1r-26,0r0,-253r26,0r0,253","w":360},"\ue380":{"d":"327,1r-25,0r0,-252r25,0r0,252xm297,-125r-126,126r0,-252xm161,-125r-126,126r0,-252","w":360},"\u01a0":{"d":"17,-90v-4,-87,3,-164,88,-162v25,0,42,6,56,18v21,-2,25,-19,24,-44r21,0v2,31,-6,55,-29,62v22,30,16,78,16,126v0,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,5,-138,-63,-138v-69,0,-66,70,-64,139v2,41,22,70,64,70v41,0,61,-30,63,-71","w":210,"k":{"J":14}},"\u01a1":{"d":"17,-89v0,-76,71,-116,124,-73v24,0,27,-18,26,-44r22,0v2,34,-7,57,-35,63v21,58,9,150,-65,145v-52,-3,-72,-35,-72,-91xm140,-93v0,-40,-16,-67,-49,-67v-38,0,-50,31,-51,71v-1,42,12,71,50,71v38,0,50,-30,50,-75","w":188},"\u01af":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,17v22,0,25,-19,24,-44r21,0v2,39,-10,63,-45,65r0,126v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230","w":234},"\u01b0":{"d":"206,-206v2,39,-10,63,-45,65r0,141r-23,0r0,-24v-27,44,-116,30,-116,-35r0,-120r23,0v6,62,-24,162,46,160v68,-1,44,-95,48,-160r22,0r0,17v21,-1,25,-19,24,-44r21,0","w":201},"\u2602":{"d":"262,-131v-14,-18,-50,-18,-64,0v-10,-15,-30,-17,-49,-9v-7,53,24,143,-36,143v-22,0,-37,-14,-35,-40r17,0v-7,26,33,33,35,11v4,-35,0,-77,1,-114v-17,-8,-39,-2,-49,9v-14,-18,-50,-18,-64,0v5,-67,53,-111,117,-120r0,-11r11,0r0,12v64,8,112,51,116,119xm263,-131r-1,0r1,0","w":280},"\u20ab":{"d":"27,-115v0,-62,65,-95,97,-53r0,-37r-31,0r0,-16r31,0r0,-30r22,0r0,30r16,0r0,16r-16,0r0,159r-22,0r0,-19v-7,14,-25,21,-42,21v-41,0,-55,-30,-55,-71xm87,-63v28,0,37,-23,37,-53v0,-29,-9,-52,-37,-52v-29,0,-38,23,-38,53v0,29,9,52,38,52xm29,-23r124,0r0,20r-124,0r0,-20","w":174},"\ue3c0":{"d":"30,-143v-15,0,-17,-27,-15,-39v71,-41,160,-74,245,-98v24,-7,23,18,25,36v-75,45,-161,79,-255,101xm294,-122v4,0,6,6,7,10v-2,35,4,77,-3,106v-63,28,-190,27,-252,0v-7,-30,-3,-78,-2,-112v61,-32,183,-27,250,-4xm271,-271v-71,38,-159,76,-250,97r7,24v86,-18,178,-59,251,-96xm261,-273v-78,24,-163,55,-232,91v85,-21,163,-57,232,-91xm292,-112v-60,19,-179,15,-241,0r0,100v61,25,181,24,241,1r0,-101xm60,-116v59,13,163,13,223,0v-58,-21,-167,-22,-223,0","w":321},"\ue3c1":{"d":"31,-142v-19,-1,-24,-43,-5,-46v74,-37,160,-74,247,-92v8,7,19,35,6,42v-76,41,-159,74,-248,96xm45,-117v61,-32,195,-30,255,1v1,33,4,80,-2,110v-62,29,-190,28,-252,1v-5,-32,-2,-78,-1,-112xm28,-149v85,-19,179,-58,251,-96r-8,-25v-71,37,-158,76,-250,96xm261,-272v-79,24,-162,57,-232,91v87,-21,161,-58,232,-91xm292,-111v-60,19,-178,15,-240,0r0,100v61,26,179,23,240,1r0,-101xm283,-115v-54,-23,-169,-22,-223,0v60,13,163,12,223,0xm90,-8r0,-67r-12,9v-2,-20,7,-26,27,-25r0,83r-15,0xm141,-78v-6,0,-11,5,-11,12r-15,-2v0,-28,53,-32,51,-1v-2,23,-22,30,-31,46r31,0r0,15r-51,0v0,-32,30,-34,36,-60v-1,-5,-2,-11,-10,-10xm246,-8r0,-46r-16,34r-12,0r-16,-34r0,46r-16,0r0,-83r15,0r23,52r23,-52r15,0r0,83r-16,0","w":321},"\ue3c2":{"d":"57,-127r82,56r0,71r-58,0r8,-39r-68,-83r18,-84r18,0r0,79xm230,-206r18,0r19,84r-68,83r8,39r-58,0r0,-71r81,-56r0,-79xm142,-176r0,92r-74,-44r0,-89xm142,-258r76,38r-74,40r-75,-40xm221,-217r0,89r-75,44r0,-92","w":286},"\ue44d":{"d":"29,-184v100,-228,690,-174,593,105v-73,210,-595,190,-604,-53v0,-18,4,-35,11,-52xm269,-249r-41,188r-2,0r-40,-188r-55,0r64,236r63,0r64,-236r-53,0xm455,-112r-67,-137r-59,0r0,236r49,0r0,-147r3,0r72,147r55,0r0,-236r-51,0v-2,44,4,97,-2,137"},"\ue4b9":{"d":"269,-249r53,0r-64,236r-63,0r-64,-236r55,0r40,188r2,0xm457,-112r0,-137r51,0r0,236r-55,0r-72,-147r-3,0r0,147r-49,0r0,-236r59,0r67,137r2,0xm63,-63v85,133,399,132,507,21v44,-45,46,-131,0,-178v-88,-90,-326,-110,-447,-35v-59,37,-108,117,-60,192xm622,-79v-72,175,-442,183,-563,47v-38,-42,-54,-118,-18,-176v77,-127,360,-155,500,-63v56,37,116,105,81,192"},"\u1f30":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm27,-207v12,-14,14,-45,-12,-46r9,-23v41,3,45,53,15,74","w":77},"\u1f31":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm59,-253v-27,2,-23,31,-11,46r-12,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12","w":77},"\u1f32":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm-10,-208v12,-14,14,-45,-12,-46r9,-22v42,2,45,53,15,74xm72,-202r-46,-69r28,-5r31,69","w":77},"\u1f33":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm23,-254v-25,3,-24,28,-11,46r-12,6v-28,-21,-28,-72,15,-75xm73,-203r-46,-69r29,-5r30,69","w":77},"\u1f34":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm-9,-276v40,3,43,53,14,74r-11,-5v11,-17,14,-43,-12,-46v4,-8,4,-16,9,-23xm30,-207r33,-69r27,5r-47,69","w":77},"\u1f35":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm33,-253v-26,2,-22,32,-11,46r-12,5v-29,-20,-27,-71,15,-74xm33,-207r33,-69r27,5r-47,69","w":77},"\u1fd0":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm10,-247v2,31,56,33,58,0r19,0v2,49,-82,58,-94,14v-2,-5,-3,-9,-3,-14r20,0","w":77},"\u1fd1":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm-10,-211r0,-21r94,0r0,21r-94,0","w":77},"\u1fd2":{"d":"-17,-216r0,-26r26,0r0,26r-26,0xm71,-216r0,-26r25,0r0,26r-25,0xm5,-272r28,-5r31,70r-13,5xm48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141","w":77},"\u1fd3":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm69,-216r0,-26r25,0r0,26r-25,0xm-19,-216r0,-26r26,0r0,26r-26,0xm29,-202r-13,-5r32,-70r28,5","w":77},"\u00e3":{"d":"26,-158v30,-35,129,-34,129,34r0,124r-23,0r0,-18v-27,35,-121,24,-118,-32v3,-55,60,-53,118,-51v3,-39,-6,-58,-46,-58v-20,0,-35,5,-46,16xm80,-18v41,0,58,-20,52,-64v-40,1,-96,-10,-96,31v1,22,19,33,44,33xm33,-219v11,-30,48,-34,73,-14v15,6,25,-1,32,-13r14,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":173},"\u00f1":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm27,-219v11,-30,48,-34,73,-14v15,6,25,-1,32,-13r14,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":181},"\u00f5":{"d":"17,-89v1,-55,22,-91,76,-91v51,0,70,35,70,92v0,55,-23,89,-74,90v-51,1,-74,-36,-72,-91xm140,-89v0,-42,-14,-71,-49,-71v-38,0,-51,30,-51,71v0,41,12,71,50,71v38,0,50,-29,50,-71xm29,-219v11,-30,48,-34,73,-14v15,6,25,-1,32,-13r14,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":180},"\u0128":{"d":"36,0r0,-251r24,0r0,251r-24,0xm-13,-280v11,-30,48,-34,73,-14v15,5,24,-2,31,-13r15,8v-12,39,-54,25,-82,12v-11,1,-16,6,-23,14","w":93},"\u0129":{"d":"40,0r0,-178r24,0r0,178r-24,0xm-7,-219v8,-15,17,-28,36,-28v24,0,53,31,68,1r15,8v-12,38,-53,25,-82,13v-12,0,-17,6,-24,14","w":104},"\u015a":{"d":"161,-211v-39,-32,-145,-21,-114,47v35,40,137,9,137,95v0,88,-132,84,-180,41r15,-20v32,32,140,46,140,-21v0,-77,-141,-24,-141,-115v0,-77,108,-84,157,-47xm73,-276r52,-41r16,17r-57,36","w":193},"\u015b":{"d":"131,-144v-24,-24,-109,-20,-87,28v28,26,104,3,105,65v1,64,-106,65,-142,29r14,-17v28,30,118,32,102,-25v-23,-31,-103,-2,-105,-63v-3,-60,89,-65,126,-35xm68,-206r27,-60r23,8r-36,57","w":162},"\u015c":{"d":"161,-211v-39,-32,-145,-21,-114,47v35,40,137,9,137,95v0,88,-132,84,-180,41r15,-20v32,32,140,46,140,-21v0,-77,-141,-24,-141,-115v0,-77,108,-84,157,-47xm101,-295r-50,30r-8,-10r51,-43r16,0r48,42r-8,11","w":193},"\u015d":{"d":"131,-144v-24,-24,-109,-20,-87,28v28,26,104,3,105,65v1,64,-106,65,-142,29r14,-17v28,30,118,32,102,-25v-23,-31,-103,-2,-105,-63v-3,-60,89,-65,126,-35xm82,-237r-47,38r-11,-11r51,-50r16,0r48,49r-10,11","w":162},"\u015e":{"d":"161,-211v-39,-32,-145,-21,-114,47v35,40,139,9,137,95v-1,48,-35,69,-84,71r-4,13v20,1,35,11,35,29v0,30,-42,33,-67,22r4,-11v15,7,44,9,46,-11v1,-13,-16,-20,-29,-17v-9,-5,-1,-16,1,-25v-31,-2,-62,-14,-82,-30r15,-20v32,32,140,46,140,-21v0,-77,-141,-24,-141,-115v0,-77,108,-84,157,-47","w":193},"\u015f":{"d":"131,-144v-24,-24,-109,-20,-87,28v28,26,105,3,105,65v0,34,-29,54,-66,53r-4,13v20,1,35,10,35,29v0,30,-41,32,-67,22r4,-11v16,6,45,10,46,-11v1,-19,-25,-14,-34,-22r7,-20v-26,-2,-47,-11,-63,-24r14,-17v28,30,118,32,102,-25v-23,-31,-103,-2,-105,-63v-3,-60,89,-65,126,-35","w":162},"\u0169":{"d":"91,-19v68,-1,44,-95,48,-160r22,0r0,179r-23,0r0,-24v-27,45,-116,29,-116,-35r0,-120r23,0v5,63,-23,161,46,160xm36,-219v10,-31,47,-33,72,-14v15,6,25,-1,32,-13r14,8v-8,17,-16,26,-34,28v-25,-3,-54,-29,-71,-1","w":185},"\u0218":{"d":"161,-211v-39,-32,-145,-21,-114,47v35,40,137,9,137,95v0,88,-132,84,-180,41r15,-20v32,32,140,46,140,-21v0,-77,-141,-24,-141,-115v0,-77,108,-84,157,-47xm97,89r-15,0r13,-32r-10,0r0,-33r29,0v3,31,-7,48,-17,65","w":193},"\u0219":{"d":"131,-144v-24,-24,-109,-20,-87,28v28,26,104,3,105,65v1,64,-106,65,-142,29r14,-17v28,30,118,32,102,-25v-23,-31,-103,-2,-105,-63v-3,-60,89,-65,126,-35xm80,89r-14,0r12,-32r-10,0r0,-33r30,0r0,33","w":162},"\u0405":{"d":"161,-211v-39,-32,-145,-21,-114,47v35,40,137,9,137,95v0,88,-132,84,-180,41r15,-20v32,32,140,46,140,-21v0,-77,-141,-24,-141,-115v0,-77,108,-84,157,-47","w":193},"\u040c":{"d":"27,0r0,-250r24,0r0,111v44,0,84,4,97,-38r23,-73r24,0v-16,43,-19,101,-58,120v46,17,44,85,63,130r-26,0v-14,-37,-17,-86,-43,-111v-18,-12,-52,-6,-80,-7r0,118r-24,0xm85,-276r51,-41r17,17r-58,36","w":206},"\u0455":{"d":"131,-144v-24,-24,-109,-20,-87,28v28,26,104,3,105,65v1,64,-106,65,-142,29r14,-17v28,30,118,32,102,-25v-23,-31,-103,-2,-105,-63v-3,-60,89,-65,126,-35","w":162},"\u045c":{"d":"69,-206r27,-60r24,8r-36,57xm21,0r0,-179r23,0r0,80v32,0,63,4,73,-27r17,-53r22,0v-12,30,-13,74,-42,86v34,11,31,61,45,93r-23,0v-12,-31,-9,-81,-50,-81r-42,0r0,81r-23,0","w":168},"\u1f06":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm79,-255v38,2,42,43,13,62r-12,-4v15,-16,16,-37,-9,-39xm33,-269v9,-14,18,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-24,-4,-54,-31,-70,-2","w":181},"\u1f07":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm113,-236v-27,1,-21,26,-9,39r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-7,24,-9xm37,-270v8,-15,17,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-16,28,-35,28v-26,0,-54,-29,-71,-1","w":181},"\u1f0e":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-59,-230v9,-14,18,-27,36,-27v26,0,53,30,68,0r15,9v-9,31,-48,31,-71,14v-16,-6,-26,1,-34,12xm-13,-215v39,1,41,43,13,62r-12,-4v14,-16,17,-37,-9,-39","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f0f":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-58,-231v11,-28,48,-33,73,-14v16,6,24,-1,31,-13r15,9v-10,32,-47,30,-71,14v-16,-6,-26,1,-34,12xm19,-197v-26,1,-22,26,-10,39r-11,4v-15,-13,-30,-36,-12,-52v5,-5,14,-8,24,-10","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\u1f26":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm75,-255v38,3,42,44,12,62r-11,-4v15,-16,16,-36,-9,-39xm29,-269v8,-15,17,-28,36,-28v26,0,52,30,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-54,-30,-71,-2","w":181},"\u1f27":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm108,-236v-25,1,-21,28,-9,39r-11,4v-16,-12,-31,-36,-12,-52v6,-4,14,-8,24,-10xm32,-270v9,-14,18,-27,36,-27v26,0,53,30,68,0r15,9v-9,31,-48,31,-71,14v-16,-6,-26,1,-34,12","w":181},"\u1f2e":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-58,-216v39,3,42,43,13,63r-12,-5v15,-16,15,-36,-9,-39xm-104,-230v11,-30,48,-34,73,-14v16,6,24,-1,31,-13r15,8v-12,39,-54,25,-82,12v-12,1,-16,7,-23,15","w":227},"\u1f2f":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-29,-197v-26,2,-22,27,-9,39r-11,4v-16,-12,-31,-36,-12,-52v6,-4,14,-8,24,-10xm-105,-231v8,-14,18,-27,36,-27v26,0,52,31,68,0r15,9v-10,32,-47,30,-71,14v-16,-6,-26,1,-34,12","w":227},"\u1f36":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm27,-255v38,2,42,43,13,62r-12,-4v15,-16,16,-37,-9,-39xm-19,-269v9,-14,18,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-16,26,-34,28v-25,-3,-55,-31,-71,-2","w":77},"\u1f37":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm58,-236v-27,1,-21,26,-9,39r-12,4v-15,-13,-30,-37,-11,-53v6,-4,14,-7,24,-9xm-18,-270v10,-31,47,-33,72,-14v16,6,24,-1,32,-13r14,8v-8,17,-15,28,-34,28v-26,0,-54,-29,-71,-1","w":77},"\u1f3e":{"d":"28,0r0,-251r25,0r0,251r-25,0xm-53,-215v39,1,41,43,13,62r-12,-4v14,-16,17,-37,-9,-39xm-99,-230v9,-14,18,-27,36,-27v26,0,53,30,68,0r15,9v-9,31,-48,31,-71,14v-16,-6,-26,1,-34,12","w":81},"\u1f3f":{"d":"28,0r0,-251r25,0r0,251r-25,0xm-26,-197v-25,2,-21,28,-9,40r-11,4v-15,-13,-31,-37,-12,-53v6,-4,14,-8,24,-10xm-102,-230v10,-30,48,-31,73,-15v14,9,23,-1,31,-12r15,8v-10,32,-47,32,-71,14v-16,-6,-26,1,-34,12","w":81},"\u1f56":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm82,-255v38,3,42,44,12,62r-11,-4v15,-16,15,-37,-10,-39xm36,-269v8,-15,17,-28,36,-28v26,0,52,30,68,1r14,8v-8,17,-16,26,-34,28v-25,-4,-54,-30,-71,-2","w":189},"\u1f57":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm112,-236v-25,1,-21,27,-9,39r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-7,24,-9xm36,-270v11,-30,48,-33,73,-14v16,6,23,-2,31,-13r15,8v-9,33,-46,32,-71,15v-16,-6,-26,1,-34,12","w":189},"\u1f5f":{"d":"100,0r-23,0r0,-103r-76,-148r26,0r61,126r62,-126r25,0r-75,148r0,103xm-127,-231v8,-15,17,-28,36,-28v25,0,53,31,68,1r14,8v-8,17,-16,26,-34,28v-26,-3,-53,-30,-71,-2xm-51,-197v-27,1,-21,26,-9,39r-12,4v-15,-13,-30,-37,-12,-53v5,-5,15,-7,25,-9","w":177,"k":{"\u1fd6":22,"\u1fd3":22,"\u1fd2":22,"\u1fd1":22,"\u1fd0":22,"\u1f31":22,"\u1f30":22,"\u03c1":25,"\u03b8":14,"\u03b6":18,"\u03b4":11,"\ue19a":18,"\ue199":14,"\ue198":14,"\ue194":18,"\ue184":22,"\u1f76":22,"\u0390":22,"\u03ca":22,"\u03c7":18,"\u03c4":22,"\u03c0":22,"\u03b3":18,"\u03c8":22,"\u03b2":14,"\u0398":14,",":18,".":18,"\u2026":18,"\u2206":22,"\u039b":22,"\u0391":22,"\u1fbc":22,"\u1fb8":22,"\u1fb9":22,"\ue264":22,"\ue183":29,"\ue186":29,"\ue18d":29,"\ue19b":29,"\u03ac":22,"\u03cc":22,"\u03b1":22,"\u03bf":22,"\u03ce":22,"\u1f00":22,"\u1f01":22,"\u1f02":22,"\u1f03":22,"\u1f04":22,"\u1f05":22,"\u1f40":22,"\u1f41":22,"\u1f42":22,"\u1f43":22,"\u1f44":22,"\u1f45":22,"\u1f60":22,"\u1f61":22,"\u1f62":22,"\u1f63":22,"\u1f64":22,"\u1f65":22,"\u1f70":22,"\u1f71":22,"\u1f78":22,"\u1f79":22,"\u1f7c":22,"\u1f7d":22,"\u1f80":22,"\u1f81":22,"\u1f82":22,"\u1f83":22,"\u1f84":22,"\u1f85":22,"\u1fa0":22,"\u1fa1":22,"\u1fa2":22,"\u1fa3":22,"\u1fa4":22,"\u1fa5":22,"\u1fb0":22,"\u1fb1":22,"\u1fb2":22,"\u1fb3":22,"\u1fb4":22,"\u1ff2":22,"\u1ff3":22,"\u1ff4":22,"\u03c3":22,"\u03c6":22,"\u03c9":22,"\u1f06":22,"\u1f07":22,"\u1f66":22,"\u1f67":22,"\u1f86":22,"\u1f87":22,"\u1fa6":22,"\u1fa7":22,"\u1fb6":22,"\u1fb7":22,"\u1ff6":22,"\u1ff7":22,"\u03ad":22,"\u03b5":22,"\u1f10":22,"\u1f11":22,"\u1f12":22,"\u1f13":22,"\u1f14":22,"\u1f15":22,"\u1f72":22,"\u1f73":22,"\u03ae":18,"\u03b7":18,"\u03ba":18,"\u03bc":18,"\u1f26":18,"\u1f27":18,"\u1f96":18,"\u1f97":18,"\u1fc6":18,"\u1fc7":18,"\u1f20":18,"\u1f21":18,"\u1f22":18,"\u1f23":18,"\u1f24":18,"\u1f25":18,"\u1f74":18,"\u1f75":18,"\u1f90":18,"\u1f91":18,"\u1f92":18,"\u1f93":18,"\u1f94":18,"\u1f95":18,"\u1fc2":18,"\u1fc3":18,"\u1fc4":18,"\u03af":22,"\u03b9":22,"\u1f77":22,"\u1f32":22,"\u1f33":22,"\u1f34":22,"\u1f35":22,"\u1f36":22,"\u1f37":22,"\u1fd7":22,"\ue18a":29,"\ue191":29,"\ue19f":29}},"\u1f66":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm117,-255v38,2,42,43,13,62r-12,-4v15,-16,16,-37,-9,-39xm71,-269v9,-14,18,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-16,26,-34,28v-25,-3,-55,-31,-71,-2","w":268},"\u1f67":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm151,-236v-26,1,-21,25,-10,39r-11,4v-15,-13,-30,-37,-12,-53v5,-5,15,-7,25,-9xm75,-270v10,-31,47,-33,72,-14v16,6,24,-1,32,-13r14,8v-8,16,-15,28,-34,28v-26,0,-54,-29,-71,-1","w":268},"\u1f6e":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-55,-215v38,3,41,43,12,62r-11,-4v14,-16,15,-37,-10,-39xm-102,-229v10,-30,48,-31,73,-15v14,9,24,-1,32,-12r14,8v-8,16,-16,26,-34,28v-25,-3,-54,-30,-71,-2","w":206},"\u1f6f":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-28,-197v-25,3,-22,27,-9,40r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-8,24,-10xm-104,-230v9,-14,18,-28,36,-28v27,0,51,31,68,1r15,8v-10,32,-47,32,-71,14v-16,-6,-26,1,-34,12","w":206},"\u1f86":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm84,-255v38,3,41,43,12,62r-11,-4v14,-16,15,-37,-10,-39xm37,-269v9,-14,18,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-16,26,-34,28v-25,-3,-55,-31,-71,-2xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1f87":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm113,-236v-27,1,-21,26,-9,39r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-7,24,-9xm37,-270v8,-15,17,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-16,28,-35,28v-26,0,-54,-29,-71,-1xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1f8e":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-61,-230v8,-14,18,-27,36,-27v26,0,52,30,68,0r15,9v-8,16,-16,27,-35,27v-26,0,-54,-29,-71,-1xm-15,-215v39,2,41,44,12,62r-11,-4v15,-16,16,-36,-9,-39","w":294},"\u1f8f":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm256,-48v0,19,7,30,29,28r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,131xm-64,-231v11,-28,48,-33,73,-14v16,6,24,-1,31,-13r15,9v-10,32,-47,30,-71,14v-16,-6,-26,1,-34,12xm13,-197v-26,1,-22,26,-10,39r-11,4v-15,-13,-30,-36,-12,-52v5,-5,14,-8,24,-10","w":294},"\u1f96":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm76,-255v38,3,41,43,12,62r-11,-4v14,-16,15,-37,-10,-39xm30,-269v8,-15,17,-28,36,-28v26,0,52,30,68,1r14,8v-8,16,-16,26,-34,28v-25,-4,-54,-30,-71,-2xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1f97":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm113,-236v-26,1,-22,26,-10,39r-11,4v-16,-12,-30,-36,-12,-52v5,-5,14,-8,24,-10xm36,-270v11,-30,49,-31,73,-14v16,6,24,-1,31,-13r15,9v-9,31,-48,31,-71,14v-16,-6,-26,1,-34,12xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1f9e":{"d":"268,-65v-1,26,0,48,29,45r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,114xm175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-57,-216v39,3,42,43,13,63r-11,-5v15,-17,14,-36,-10,-39xm-103,-230v11,-30,48,-34,73,-14v16,6,24,-1,31,-13r15,8v-12,39,-54,25,-82,12v-12,1,-16,7,-23,15","w":306},"\u1f9f":{"d":"268,-65v-1,26,0,48,29,45r0,20v-31,2,-51,-8,-51,-39r0,-140r22,0r0,114xm175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-30,-197v-26,1,-22,26,-10,39r-11,4v-15,-13,-30,-36,-12,-52v5,-5,14,-8,24,-10xm-107,-231v11,-28,48,-33,73,-14v16,6,24,-1,31,-13r15,9v-10,32,-47,30,-71,14v-16,-6,-26,1,-34,12","w":306},"\u1fa6":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm124,-255v38,3,42,44,12,62r-11,-4v15,-16,16,-36,-9,-39xm78,-269v8,-15,17,-28,36,-28v26,0,52,30,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-54,-30,-71,-2xm171,94v-45,6,-52,-27,-48,-72r22,0v1,26,-7,57,26,52r0,20","w":265},"\u1fa7":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm151,-236v-26,1,-21,25,-10,39r-11,4v-15,-13,-30,-37,-12,-53v5,-5,15,-7,25,-9xm75,-270v10,-31,47,-33,72,-14v16,6,24,-1,32,-13r14,8v-8,16,-15,28,-34,28v-26,0,-54,-29,-71,-1xm171,94v-45,6,-52,-27,-48,-72r22,0v1,26,-7,57,26,52r0,20","w":265},"\u1fae":{"d":"256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-60,-215v38,2,42,43,13,62r-12,-4v15,-16,16,-37,-9,-39xm-106,-229v10,-30,48,-31,73,-15v14,9,23,-1,31,-12r15,8v-8,16,-17,26,-35,28v-24,-4,-54,-31,-70,-2","w":294},"\u1faf":{"d":"256,-48v0,19,8,30,29,28r0,20v-31,2,-52,-9,-52,-39r0,-140r23,0r0,131xm39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-28,-197v-25,3,-22,27,-9,40r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-8,24,-10xm-104,-230v9,-14,18,-28,36,-28v27,0,51,31,68,1r15,8v-10,32,-47,32,-71,14v-16,-6,-26,1,-34,12","w":294},"\u1fb6":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm36,-223v9,-14,18,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-53,-30,-70,-2","w":181},"\u1fb7":{"d":"84,2v-49,0,-65,-39,-66,-88v0,-52,16,-93,67,-94v24,0,40,9,50,27v3,-6,0,-17,1,-25r23,0r0,178r-23,0v-1,-8,2,-20,-1,-26v-12,16,-27,28,-51,28xm89,-159v-39,0,-47,33,-47,70v0,36,9,69,47,69v37,-1,47,-32,47,-69v0,-36,-9,-70,-47,-70xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm34,-223v8,-15,17,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-53,-30,-70,-2","w":181},"\u1fc6":{"d":"31,-223v9,-14,18,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-53,-30,-70,-2xm44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27","w":182},"\u1fc7":{"d":"27,-223v9,-14,18,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-53,-30,-70,-2xm44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm128,94v-45,6,-50,-28,-47,-72r22,0v1,25,-7,56,25,52r0,20","w":182},"\u1fd6":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm-21,-223v8,-15,17,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-5,-53,-29,-71,-2","w":77},"\u1fd7":{"d":"48,-37v0,15,3,17,17,17r0,20v-27,1,-39,-5,-39,-33r0,-145r22,0r0,141xm47,-195r0,-25r25,0r0,25r-25,0xm-10,-195r0,-25r25,0r0,25r-25,0xm-28,-245v8,-15,17,-28,36,-28v24,0,53,31,68,1r15,8v-12,39,-54,25,-82,12v-11,1,-16,6,-23,14","w":77},"\u1fe6":{"d":"32,-223v9,-14,18,-28,36,-28v25,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-53,-30,-70,-2xm95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160","w":189},"\u1fe7":{"d":"95,-19v67,0,43,-96,47,-160r23,0v-2,82,18,186,-70,181v-43,-2,-70,-22,-70,-65r0,-116r23,0v4,65,-21,161,47,160xm109,-194r0,-26r26,0r0,26r-26,0xm52,-194r0,-26r25,0r0,26r-25,0xm34,-244v11,-30,49,-34,73,-14v16,5,23,-2,31,-13r15,8v-10,32,-47,32,-71,14v-16,-6,-26,1,-34,12","w":189},"\u1ff6":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm75,-223v8,-15,17,-28,36,-28v25,0,53,31,68,1r14,8v-8,16,-16,26,-34,28v-25,-4,-53,-29,-71,-2","w":268},"\u1ff7":{"d":"188,-19v58,0,58,-135,3,-139r3,-22v45,5,61,41,60,91v-1,51,-15,90,-66,91v-27,0,-44,-11,-54,-32v-10,20,-26,31,-52,32v-75,6,-78,-104,-52,-154v8,-16,25,-26,46,-28r3,22v-54,5,-58,139,3,139v51,0,39,-65,40,-116r23,0v1,52,-10,116,43,116xm172,94v-45,6,-50,-28,-47,-72r22,0v1,25,-7,56,25,52r0,20xm76,-223v9,-14,18,-28,36,-28v26,0,53,31,68,1r15,8v-8,16,-17,26,-35,28v-25,-4,-53,-30,-70,-2","w":268},"\ue11f":{"d":"144,0r-16,-43r-85,0r-16,43r-25,0r73,-188r21,0r73,188r-25,0xm121,-63r-36,-93r-35,93r71,0xm26,-219v10,-31,47,-33,72,-14v15,6,25,-1,32,-13r14,8v-8,17,-16,26,-34,28v-25,-3,-54,-29,-71,-1","w":171,"k":{"\ue111":7,"\ue168":7,"\ue169":7,"\ue16a":7,"\ue113":7,"\ue114":7,"\ue171":7,"\ue17a":7,"\ue17b":7,"\ue17c":7,"\ue116":7,"\ue11b":7,"\ue138":7,"\ue172":7,"\ue17d":7}},"\ue12d":{"d":"148,0r-103,-149r0,149r-23,0r0,-188r22,0r103,150r0,-150r23,0r0,188r-22,0xm37,-219v11,-30,48,-34,73,-14v15,6,25,-1,31,-13r15,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":191},"\ue131":{"d":"13,-68v-4,-69,6,-121,71,-121v64,0,74,52,70,121v-2,43,-25,70,-70,69v-46,0,-69,-25,-71,-69xm130,-69v0,-49,3,-98,-46,-98v-50,0,-50,48,-48,99v1,30,19,48,48,49v31,1,46,-20,46,-50xm24,-219v11,-30,48,-34,73,-14v15,6,25,-1,32,-13r14,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":167},"\ue14e":{"d":"21,0r0,-188r23,0r0,188r-23,0xm-28,-219v8,-15,17,-28,36,-28v24,0,54,32,68,1r15,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":64},"\ue165":{"d":"130,-153v-27,-23,-108,-20,-89,31v27,32,110,6,108,71v-2,63,-106,63,-145,31r13,-19v23,21,108,34,108,-12v0,-57,-111,-12,-111,-85v0,-59,88,-65,127,-36xm60,-206r27,-60r24,8r-36,57","w":158},"\ue166":{"d":"130,-153v-27,-23,-108,-20,-89,31v27,32,110,6,108,71v-2,63,-106,63,-145,31r13,-19v23,21,108,34,108,-12v0,-57,-111,-12,-111,-85v0,-59,88,-65,127,-36xm81,-237r-47,38r-11,-11r51,-50r16,0r48,49r-11,11","w":158},"\ue167":{"d":"130,-153v-27,-23,-108,-20,-89,31v27,32,111,6,108,71v-1,35,-31,52,-69,52r-4,14v20,1,35,10,35,29v0,30,-41,32,-67,22r4,-11v16,7,44,9,46,-11v1,-19,-25,-14,-34,-22r7,-21v-23,-1,-44,-8,-63,-21r13,-19v23,21,108,34,108,-12v0,-57,-111,-12,-111,-85v0,-59,88,-65,127,-36","w":158},"\ue16b":{"d":"88,-20v70,1,40,-103,46,-168r24,0r0,122v-1,43,-26,67,-70,67v-45,0,-71,-24,-71,-68r0,-121r23,0v5,67,-23,166,48,168xm27,-219v11,-30,48,-34,73,-14v15,6,25,-1,32,-13r14,8v-10,32,-46,32,-71,15v-16,-6,-26,1,-34,12","w":174},"\ue179":{"d":"130,-153v-27,-23,-108,-20,-89,31v27,32,110,6,108,71v-2,63,-106,63,-145,31r13,-19v23,21,108,34,108,-12v0,-57,-111,-12,-111,-85v0,-59,88,-65,127,-36xm79,89r-15,0r13,-32r-10,0r0,-33r29,0v3,31,-7,48,-17,65","w":158},"\ue252":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-64,-230v8,-14,18,-27,36,-27v26,0,52,30,68,0r15,9v-9,31,-48,31,-71,14v-16,-6,-26,1,-34,12xm142,94v-45,6,-52,-28,-48,-72r22,0v1,26,-6,56,26,52r0,20xm-18,-215v39,2,41,43,13,62r-12,-4v14,-16,17,-37,-9,-39","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue253":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm-62,-231v8,-14,18,-27,36,-27v26,0,52,31,68,0r15,9v-8,16,-16,27,-35,27v-26,0,-54,-29,-71,-1xm142,94v-45,6,-52,-28,-48,-72r22,0v1,26,-6,56,26,52r0,20xm14,-197v-26,1,-22,27,-9,39r-11,4v-16,-12,-31,-36,-12,-52v6,-4,14,-8,24,-10","w":213,"k":{"\u03a4":14,"\ue196":7,"\ue1a0":7,"\ue1a3":7,"\u03ab":7,"\u03a5":7,"\u1fe8":7,"\u1fe9":7}},"\ue25a":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-63,-216v38,3,41,43,13,63r-12,-5v15,-16,15,-36,-9,-39xm-109,-230v8,-15,17,-28,36,-28v25,0,53,31,68,1r15,8v-12,39,-54,25,-82,12v-12,1,-16,7,-23,15xm149,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":227},"\ue25b":{"d":"175,0r0,-116r-123,0r0,116r-24,0r0,-251r24,0r0,113r123,0r0,-113r24,0r0,251r-24,0xm-34,-197v-26,1,-22,26,-10,39r-11,4v-15,-13,-30,-36,-12,-52v5,-5,15,-8,25,-10xm-111,-231v11,-28,48,-33,73,-14v16,6,24,-1,32,-13r14,9v-10,32,-47,30,-71,14v-16,-6,-26,1,-34,12xm149,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":227},"\ue262":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-60,-215v38,2,42,43,13,62r-12,-4v15,-16,16,-37,-9,-39xm-106,-229v10,-30,48,-31,73,-15v14,9,23,-1,31,-12r15,8v-8,16,-17,26,-35,28v-24,-4,-54,-31,-70,-2xm142,94v-45,6,-52,-28,-48,-72r22,0v1,26,-6,56,26,52r0,20","w":206},"\ue263":{"d":"39,-161v-2,60,-3,121,42,135r0,26r-71,0r0,-22r37,0v-38,-19,-32,-83,-32,-140v0,-56,31,-89,88,-90v81,-1,87,70,87,156v0,34,-10,61,-32,74r37,0r0,22r-71,0r0,-26v46,-12,45,-75,42,-135v-2,-40,-21,-69,-63,-69v-42,0,-63,27,-64,69xm-28,-197v-25,3,-22,27,-9,40r-11,4v-16,-12,-31,-37,-12,-53v6,-4,14,-8,24,-10xm-104,-230v9,-14,18,-28,36,-28v27,0,51,31,68,1r15,8v-10,32,-47,32,-71,14v-16,-6,-26,1,-34,12xm142,94v-45,6,-52,-28,-48,-72r22,0v1,26,-6,56,26,52r0,20","w":206},"\u1f20":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm77,-276v40,3,43,53,14,74r-11,-5v11,-16,14,-44,-12,-46","w":181},"\u1f21":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm113,-253v-26,1,-24,32,-12,46r-12,5v-28,-20,-26,-71,15,-74","w":181},"\u1f22":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm46,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm127,-202r-45,-69r28,-5r30,69","w":181},"\u1f23":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm81,-253v-26,3,-25,28,-12,46r-11,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12xm130,-202r-45,-69r28,-5r30,69","w":181},"\u1f24":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm54,-276v40,3,43,53,14,74r-11,-5v11,-17,14,-43,-12,-46v4,-8,4,-16,9,-23xm93,-207r33,-69r27,5r-47,69","w":181},"\u1f25":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm93,-253v-27,2,-23,31,-11,46r-13,5v-27,-21,-27,-72,16,-74xm93,-207r33,-69r27,5r-47,69","w":181},"\u1f74":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm47,-271r29,-5r29,69r-12,5","w":181},"\u1f75":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm85,-202r-13,-5r32,-69r27,5","w":181},"\u1f90":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm77,-276v40,3,43,53,14,74r-11,-5v11,-16,14,-44,-12,-46","w":181},"\u1f91":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm113,-253v-26,1,-24,32,-12,46r-12,5v-28,-20,-26,-71,15,-74","w":181},"\u1f92":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm46,-208v12,-14,14,-45,-12,-46r9,-22v41,1,44,54,15,74xm127,-202r-45,-69r28,-5r30,69","w":181},"\u1f93":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm81,-253v-26,3,-25,28,-12,46r-11,5v-17,-14,-31,-44,-11,-62v6,-6,14,-9,25,-12xm130,-202r-45,-69r28,-5r30,69","w":181},"\u1f94":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm64,-276v40,3,43,53,14,74r-11,-5v11,-17,14,-43,-12,-46v4,-8,4,-16,9,-23xm103,-207r33,-69r27,5r-47,69","w":181},"\u1f95":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20xm103,-253v-26,2,-23,31,-11,46r-12,5v-29,-20,-27,-71,15,-74xm103,-207r33,-69r27,5r-47,69","w":181},"\u1fc2":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm43,-271r29,-5r30,69r-13,5xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u1fc3":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm130,94v-45,6,-50,-28,-47,-72r22,0v1,25,-7,56,25,52r0,20","w":181},"\u1fc4":{"d":"44,-152v26,-44,116,-36,116,33r0,119r-22,0v-7,-62,25,-159,-46,-158v-68,1,-44,94,-48,158r-23,0r0,-179r23,0r0,27xm81,-202r-13,-5r32,-69r27,5xm131,94v-45,6,-50,-28,-47,-72r21,0v0,26,-6,56,26,52r0,20","w":181},"\u00c3":{"d":"183,0r-21,-59r-112,0r-21,59r-25,0r91,-251r22,0r92,251r-26,0xm107,-219v-19,41,-32,99,-50,139r98,0xm48,-280v11,-30,49,-34,73,-14v15,6,24,-2,32,-13r14,8v-12,39,-54,25,-82,12v-11,1,-16,6,-23,14","w":213,"k":{"'":7}},"\u00d1":{"d":"189,0r-136,-209r-1,209r-24,0r0,-251r24,0r137,210r0,-210r24,0r0,251r-24,0xm63,-280v10,-31,48,-34,72,-14v15,6,24,-2,32,-13r14,8v-8,17,-16,26,-34,28v-26,-3,-53,-30,-71,-2","w":240},"\u00d5":{"d":"17,-90v-4,-87,3,-162,88,-162v86,0,92,74,88,162v-2,56,-31,92,-88,92v-59,0,-85,-37,-88,-92xm168,-91v2,-68,6,-138,-63,-138v-69,0,-66,70,-64,139v2,42,21,70,64,70v41,0,63,-28,63,-71xm44,-280v8,-15,17,-28,36,-28v25,0,52,32,68,1r15,8v-12,39,-54,25,-82,12v-11,1,-16,6,-23,14","w":209,"k":{"J":14}},"\u0168":{"d":"111,-21v39,0,62,-28,62,-69r0,-161r25,0r0,164v-1,57,-32,89,-88,89v-56,0,-87,-34,-87,-91r0,-162r24,0v7,91,-31,230,64,230xm51,-280v11,-30,49,-34,73,-14v15,6,24,-2,32,-13r14,8v-12,39,-54,25,-82,12v-11,1,-16,6,-23,14","w":220},"\u0409":{"d":"321,-71v0,82,-90,72,-171,71r0,-229r-75,0v-4,94,23,214,-65,234r-6,-21v71,-21,40,-147,47,-235r124,0r0,112v73,-3,146,-3,146,68xm280,-34v32,-26,12,-84,-37,-84r-68,0r0,96v38,-2,83,7,105,-12","w":328,"k":{"\u0427":18,"\u0422":14,"\u044a":3,"\u0442":3}},"\u041b":{"d":"2,-16v71,-21,40,-147,47,-235r151,0r0,251r-24,0r0,-229r-103,0v-5,93,24,214,-64,234","w":229},"\u043b":{"d":"2,-14v53,-14,34,-100,38,-164r119,0r0,178r-23,0r0,-158r-74,0v0,71,8,150,-54,163","w":184},"\u0459":{"d":"5,-14v52,-15,35,-99,38,-165r100,0r0,73v57,-2,115,-4,115,52v0,65,-75,54,-138,54r0,-158r-55,0v0,0,9,149,-53,163xm143,-21v40,-1,93,9,92,-33v0,-38,-52,-31,-92,-31r0,64","w":264},"\ue29a":{"d":"255,-63v-1,24,0,46,27,43r0,20v-30,1,-49,-9,-49,-39r0,-140r22,0r0,116","w":294},"\ue071":{"d":"28,-154v-5,37,43,49,63,27r12,13v-34,30,-99,12,-94,-45v3,-37,17,-61,52,-61v34,0,53,27,49,66r-82,0xm91,-169v3,-30,-34,-45,-53,-25v-6,6,-9,14,-10,25r63,0xm62,-229r-29,-47r20,-7r21,49","w":118},"\ue26a":{"d":"26,-251r25,0r0,114v42,4,70,-5,76,-42v6,-40,14,-79,66,-73r0,21v-63,-7,-23,90,-80,105v56,8,16,106,83,108r0,20v-78,11,-46,-85,-94,-114v-12,-7,-33,-4,-51,-4r0,116r-25,0r0,-251xm80,-276r51,-41r17,17r-58,36","w":202},"\ue26b":{"d":"137,-116v-74,-12,-57,68,-87,106v-8,11,-25,13,-45,12r0,-20v63,4,24,-91,82,-108v-43,-11,-27,-78,-57,-103v-5,-3,-14,-2,-22,-2r0,-21v67,-9,54,64,79,103v9,12,29,13,50,12r0,-114r25,0r0,114v73,14,57,-67,85,-103v9,-11,25,-13,44,-12r0,21v-63,-7,-23,90,-80,105v45,10,30,81,62,105v6,3,13,3,21,3r0,20v-70,10,-55,-66,-82,-105v-9,-12,-28,-14,-50,-13r0,116r-25,0r0,-116","w":300},"\ue26c":{"d":"26,-251r25,0r0,114v42,4,70,-5,76,-42v6,-40,14,-79,66,-73r0,21v-63,-7,-23,90,-80,105v56,8,16,106,83,108r0,20v-78,11,-46,-85,-94,-114v-12,-7,-33,-4,-51,-4r0,116r-25,0r0,-251","w":202},"\ue26d":{"d":"21,-179v-1,-80,87,-74,169,-72r0,251r-24,0r0,-113v-47,-3,-88,-1,-94,46v-5,41,-17,74,-68,69r0,-21v58,6,30,-75,69,-97v-31,-6,-52,-28,-52,-63xm166,-229v-57,0,-120,-9,-120,50v0,56,67,43,120,44r0,-94","w":217},"\ue26e":{"d":"115,0r0,-80v-74,-14,-26,88,-106,83r0,-18v45,2,23,-66,63,-75v-36,-8,-15,-69,-59,-71r0,-19v69,-9,26,85,102,81r0,-79r23,0r0,79v70,11,26,-83,102,-81r0,19v-44,-2,-22,60,-60,71v40,7,17,74,64,75r0,18v-54,8,-47,-45,-68,-74v-6,-9,-21,-10,-38,-9r0,80r-23,0","w":253},"\ue26f":{"d":"21,-178r22,0r0,79v56,11,50,-43,73,-71v6,-8,20,-11,36,-10r0,19v-43,-2,-22,61,-60,71v39,7,17,74,64,75r0,18v-54,8,-47,-45,-68,-74v-7,-10,-26,-9,-45,-9r0,80r-22,0r0,-178","w":163},"\ue270":{"d":"59,-80v-27,-2,-41,-19,-42,-45v-1,-64,74,-53,137,-53r0,178r-23,0r0,-77v-33,-1,-61,-3,-68,28v-6,28,-16,56,-56,52r0,-19v41,3,25,-50,52,-64xm131,-158v-40,1,-92,-9,-92,32v0,40,53,28,92,30r0,-62","w":174},"\ue271":{"d":"21,-178r22,0r0,79v56,11,50,-43,73,-71v6,-8,20,-11,36,-10r0,19v-43,-2,-22,61,-60,71v39,7,17,74,64,75r0,18v-54,8,-47,-45,-68,-74v-7,-10,-26,-9,-45,-9r0,80r-22,0r0,-178xm69,-206r27,-60r24,8r-36,57","w":163},"\ue374":{"d":"81,-274r-41,-24r14,-13r36,28xm18,-101r0,-164r109,0r0,18r-89,0r0,55r76,0r0,17r-76,0r0,57r89,0r0,17r-109,0","w":133},"\u0439":{"d":"141,-241v0,57,-99,56,-97,0r20,0v2,13,14,25,29,25v16,0,26,-12,28,-25r20,0xm21,0r0,-179r23,0r0,143r104,-143r19,0r0,179r-23,0r0,-139r-101,139r-22,0","w":187},"\u0419":{"d":"168,-301v0,57,-98,55,-98,0r20,0v2,29,56,32,58,0r20,0xm187,0r-1,-207r-136,207r-24,0r0,-251r24,0r1,212r139,-212r21,0r0,251r-24,0","w":236},"\u040e":{"d":"184,-251r-79,207v-12,31,-27,51,-72,47r0,-22v32,4,42,-12,50,-37r-75,-194r26,0r62,165r2,0r60,-166r26,0xm147,-303v0,57,-98,55,-98,0r20,0v2,29,56,32,58,0r20,0","w":187,"k":{"\u044f":18,"\u0431":14,"\u0447":18,"\u0414":29,"\u0445":14,"\u0430":22,"\u0424":7,"\u0410":25,",":25,".":25,"\u2026":25,"\u041e":4,"\u0421":4,"\u0404":4,"\u0435":22,"\u043e":22,"\u0441":22,"\u0451":22,"\u0454":22,"\u0444":22,"\u043a":25,"\u043f":25,"\u0440":25,"\u0456":25,"\u0457":25,"\u0432":25,"\u0433":25,"\u0438":25,"\u043c":25,"\u043d":25,"\u0446":25,"\u0448":25,"\u0449":25,"\u044c":25,"\u0453":25,"\u045a":25,"\u045f":25,"\u0491":25,"\u044e":25,"\u045c":25,"\u0439":25,"\u0443":14,"\u045e":14,"\u0434":32,"\u043b":32,"\u0459":32,"\u0437":14,"\u044d":14,"\u04d9":14,"\u044a":7,"\u0442":7}},"\u00a0":{"w":80,"k":{"\u0427":11}}}});
function init_cufon() {

  // Skip if Opera < 9.5  
  if (Browser.Engine.name == 'presto' && Browser.Engine.version < 950) return;
  
  [
    '.motto',
    '.section-header'
  ].each(function(selector) {
    document.getElements(selector).each(function(el) {
      Cufon.replace(el, { fontFamily: 'PF DinText Pro ExtraThin' });
    });
  });
  
  [
    'h3',
    '.title',
    '.page-header .link mark',
    '.worldmap-caption',
    '#contacts .contact-form .caption'
  ].each(function(selector) {
    document.getElements(selector).each(function(el) {
      Cufon.replace(el, { fontFamily: 'PF DinText Pro Thin' });
    });
  });

  [
    'address mark',
    '.title strong',
    'article.post .lj-comments mark',
    'article.post .content .item-header'
  ].each(function(selector) {
    document.getElements(selector).each(function(el) {
      Cufon.replace(el, { fontFamily: 'PF DinText Pro Light' });
    });
  });

}

window.addEvent('domready', init_cufon);
