/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this;}
if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])
selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem&&elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="string")
if(value===undefined)
return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}
return this.each(function(i){for(name in options)
jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)
value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!=="object"&&text!=null)
return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)
ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.map(function(){var elem=this;while(elem.firstChild)
elem=elem.firstChild;return elem;}).append(this);}
return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else
return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)
return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)
return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type))
this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)
this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value===undefined?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,+i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)
jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)
elem.parentNode.removeChild(elem);}
function now(){return+new Date;}
jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
target={};if(length==i){target=this;--i;}
for(;i<length;i++)
if((options=arguments[i])!=null)
for(var name in options){var src=target[name],copy=options[name];if(target===copy)
continue;if(deep&&copy&&typeof copy==="object"&&!copy.nodeType)
target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)
target[name]=copy;}
return target;};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object)
if(callback.apply(object[name],args)===false)
break;}else
for(;i<length;)
if(callback.apply(object[i++],args)===false)
break;}else{if(length===undefined){for(name in object)
if(callback.call(object[name],name,object[name])===false)
break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}
return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))
value=value.call(elem,i);return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))
elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)
elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return elem&&jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options)
elem.style[name]=old[name];},css:function(elem,name,force,extra){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border")
return;jQuery.each(which,function(){if(!extra)
val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")
val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else
val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
if(name.match(/float/i))
name=styleFloat;if(!force&&style&&style[name])
ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))
name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle)
ret=computedStyle.getPropertyValue(name);if(name=="opacity"&&ret=="")
ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)
if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)
tbody[j].parentNode.removeChild(tbody[j]);}
if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)
throw"type property can't be changed";elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))
return elem.getAttributeNode(name).nodeValue;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+
(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}
return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}
name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)
elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
ret[0]=array;else
while(i)
ret[--i]=array[i];}
return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)
if(array[i]===elem)
return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}
return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)
if(!inv!=!callback(elems[i],i))
ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)
ret[ret.length]=value;}
return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")
ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)
this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)
this.parentNode.removeChild(this);}},empty:function(){jQuery(this).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)
id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])
jQuery.cache[id]={};if(data!==undefined)
jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])
break;if(!name)
jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)
elem.removeAttribute(expando);}
delete jQuery.cache[id];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)
data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)
matched.push(cur);cur=cur[dir];}
return matched;};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])
if(cur.nodeType==1&&++num==result)
break;return cur;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener)
elem.addEventListener(type,handle,false);else if(elem.attachEvent)
elem.attachEvent("on"+type,handle);}}
handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)
return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)=="."))
for(var type in events)
this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}
jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener)
elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)
elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}
ret=null;delete events[type];}}});}
for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target)
event.target=event.srcElement||document;if(event.target.nodeType==3)
event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)
event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))
event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)
event.metaKey=event.ctrlKey;if(!event.which&&event.button)
event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else
this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length)
jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)
return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}
jQuery.ready();})();}
jQuery.event.add(window,"load",jQuery.ready);}
jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,"+"change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string")
return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params);type="POST";}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")
self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}
return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string")
s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))
s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))
s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}
if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)
s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}
if(head)
head.removeChild(script);};}
if(s.dataType=="script"&&s.cache==null)
s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}
if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}
if(s.global&&!jQuery.active++)
jQuery.event.trigger("ajaxStart");var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)
script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();if(s.username)
xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)
xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)
xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}
if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}
status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(e){status="parsererror";}}
if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}
if(s.ifModified&&modRes)
jQuery.lastModified[s.url]=modRes;if(!jsonp)
success();}else
jQuery.handleError(s,xhr,status);complete();if(isTimeout)
xhr.abort();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr&&!requestDone)
onreadystatechange("timeout");},s.timeout);}
try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}
if(!s.async)
onreadystatechange();function success(){if(s.success)
s.success(data,status);if(s.global)
jQuery.event.trigger("ajaxSuccess",[xhr,s]);}
function complete(){if(s.complete)
s.complete(xhr,status);if(s.global)
jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}
return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)
jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")
throw"parsererror";if(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)
return opt.complete.call(this);if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}
if(opt.overflow!=null)
this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))
e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1])
end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)
this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)
if(timers[i].elem==this){if(gotoEnd)
timers[i](true);timers.splice(i,1);}});if(!gotoEnd)
this.dequeue();return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)
jQuery(this).dequeue();if(jQuery.isFunction(opt.old))
opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)
options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)
this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))
return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)
if(!timers[i]())
timers.splice(i--,1);if(!timers.length){clearInterval(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)
if(this.options.curAnim[i]!==true)
done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")
this.elem.style.display="block";}
if(this.options.hide)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}
return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
return results;},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))
offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return null;return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();;(function(a){a.fn.ajaxSubmit=function(l){if(typeof l=="function"){l={success:l}}l=a.extend({url:this.attr("action")||window.location.toString(),type:this.attr("method")||"GET"},l||{});var o={};this.trigger("form-pre-serialize",[this,l,o]);if(o.veto){return this}var g=this.formToArray(l.semantic);if(l.data){l.extraData=l.data;for(var d in l.data){g.push({name:d,value:l.data[d]})}}if(l.beforeSubmit&&l.beforeSubmit(g,this,l)===false){return this}this.trigger("form-submit-validate",[g,this,l,o]);if(o.veto){return this}var c=a.param(g);if(l.type.toUpperCase()=="GET"){l.url+=(l.url.indexOf("?")>=0?"&":"?")+c;l.data=null}else{l.data=c}var m=this,f=[];if(l.resetForm){f.push(function(){m.resetForm()})}if(l.clearForm){f.push(function(){m.clearForm()})}if(!l.dataType&&l.target){var i=l.success||function(){};f.push(function(j){a(l.target).html(j).each(i,arguments)})}else{if(l.success){f.push(l.success)}}l.success=function(q,n){for(var p=0,j=f.length;p<j;p++){f[p](q,n,m)}};var b=a("input:file",this).fieldValue();var k=false;for(var e=0;e<b.length;e++){if(b[e]){k=true}}if(l.iframe||k){if(a.browser.safari&&l.closeKeepAlive){a.get(l.closeKeepAlive,h)}else{h()}}else{a.ajax(l)}this.trigger("form-submit-notify",[this,l]);return this;function h(){var q=m[0];var n=a.extend({},a.ajaxSettings,l);var p="jqFormIO"+(new Date().getTime());var u=a('<iframe id="'+p+'" name="'+p+'" />');var w=u[0];var x=a.browser.opera&&window.opera.version()<9;if(a.browser.msie||x){w.src='javascript:false;document.write("");'}u.css({position:"absolute",top:"-1000px",left:"-1000px"});var y={responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){}};var v=n.global;if(v&&!a.active++){a.event.trigger("ajaxStart")}if(v){a.event.trigger("ajaxSend",[y,n])}var j=0;var r=0;setTimeout(function(){var B=m.attr("target"),z=m.attr("action");m.attr({target:p,encoding:"multipart/form-data",enctype:"multipart/form-data",method:"POST",action:n.url});if(n.timeout){setTimeout(function(){r=true;s()},n.timeout)}var A=[];try{if(l.extraData){for(var C in l.extraData){A.push(a('<input type="hidden" name="'+C+'" value="'+l.extraData[C]+'" />').appendTo(q)[0])}}u.appendTo("body");w.attachEvent?w.attachEvent("onload",s):w.addEventListener("load",s,false);q.submit()}finally{m.attr("action",z);B?m.attr("target",B):m.removeAttr("target");a(A).remove()}},10);function s(){if(j++){return}w.detachEvent?w.detachEvent("onload",s):w.removeEventListener("load",s,false);var A=true;try{if(r){throw"timeout"}var B,D;D=w.contentWindow?w.contentWindow.document:w.contentDocument?w.contentDocument:w.document;y.responseText=D.body?D.body.innerHTML:null;y.responseXML=D.XMLDocument?D.XMLDocument:D;y.getResponseHeader=function(F){var E={"content-type":n.dataType};return E[F]};if(n.dataType=="json"||n.dataType=="script"){var z=D.getElementsByTagName("textarea")[0];y.responseText=z?z.value:y.responseText}else{if(n.dataType=="xml"&&!y.responseXML&&y.responseText!=null){y.responseXML=t(y.responseText)}}B=a.httpData(y,n.dataType)}catch(C){A=false;a.handleError(n,y,"error",C)}if(A){n.success(B,"success");if(v){a.event.trigger("ajaxSuccess",[y,n])}}if(v){a.event.trigger("ajaxComplete",[y,n])}if(v&&!--a.active){a.event.trigger("ajaxStop")}if(n.complete){n.complete(y,A?"success":"error")}setTimeout(function(){u.remove();y.responseXML=null},100)}function t(z,A){if(window.ActiveXObject){A=new ActiveXObject("Microsoft.XMLDOM");A.async="false";A.loadXML(z)}else{A=(new DOMParser()).parseFromString(z,"text/xml")}return(A&&A.documentElement&&A.documentElement.tagName!="parsererror")?A:null}}};a.fn.ajaxForm=function(b){return this.ajaxFormUnbind().bind("submit.form-plugin",function(){a(this).ajaxSubmit(b);return false}).each(function(){a(":submit,input:image",this).bind("click.form-plugin",function(d){var c=this.form;c.clk=this;if(this.type=="image"){if(d.offsetX!=undefined){c.clk_x=d.offsetX;c.clk_y=d.offsetY}else{if(typeof a.fn.offset=="function"){var f=a(this).offset();c.clk_x=d.pageX-f.left;c.clk_y=d.pageY-f.top}else{c.clk_x=d.pageX-this.offsetLeft;c.clk_y=d.pageY-this.offsetTop}}}setTimeout(function(){c.clk=c.clk_x=c.clk_y=null},10)})})};a.fn.ajaxFormUnbind=function(){this.unbind("submit.form-plugin");return this.each(function(){a(":submit,input:image",this).unbind("click.form-plugin")})};a.fn.formToArray=function(p){var o=[];if(this.length==0){return o}var c=this[0];var g=p?c.getElementsByTagName("*"):c.elements;if(!g){return o}for(var h=0,l=g.length;h<l;h++){var d=g[h];var e=d.name;if(!e){continue}if(p&&c.clk&&d.type=="image"){if(!d.disabled&&c.clk==d){o.push({name:e+".x",value:c.clk_x},{name:e+".y",value:c.clk_y})}continue}var q=a.fieldValue(d,true);if(q&&q.constructor==Array){for(var f=0,b=q.length;f<b;f++){o.push({name:e,value:q[f]})}}else{if(q!==null&&typeof q!="undefined"){o.push({name:e,value:q})}}}if(!p&&c.clk){var k=c.getElementsByTagName("input");for(var h=0,l=k.length;h<l;h++){var m=k[h];var e=m.name;if(e&&!m.disabled&&m.type=="image"&&c.clk==m){o.push({name:e+".x",value:c.clk_x},{name:e+".y",value:c.clk_y})}}}return o};a.fn.formSerialize=function(b){return a.param(this.formToArray(b))};a.fn.fieldSerialize=function(c){var b=[];this.each(function(){var g=this.name;if(!g){return}var e=a.fieldValue(this,c);if(e&&e.constructor==Array){for(var f=0,d=e.length;f<d;f++){b.push({name:g,value:e[f]})}}else{if(e!==null&&typeof e!="undefined"){b.push({name:this.name,value:e})}}});return a.param(b)};a.fn.fieldValue=function(g){for(var f=[],d=0,b=this.length;d<b;d++){var e=this[d];var c=a.fieldValue(e,g);if(c===null||typeof c=="undefined"||(c.constructor==Array&&!c.length)){continue}c.constructor==Array?a.merge(f,c):f.push(c)}return f};a.fieldValue=function(b,h){var d=b.name,o=b.type,p=b.tagName.toLowerCase();if(typeof h=="undefined"){h=true}if(h&&(!d||b.disabled||o=="reset"||o=="button"||(o=="checkbox"||o=="radio")&&!b.checked||(o=="submit"||o=="image")&&b.form&&b.form.clk!=b||p=="select"&&b.selectedIndex==-1)){return null}if(p=="select"){var j=b.selectedIndex;if(j<0){return null}var l=[],c=b.options;var f=(o=="select-one");var k=(f?j+1:c.length);for(var e=(f?j:0);e<k;e++){var g=c[e];if(g.selected){var m=a.browser.msie&&!(g.attributes.value.specified)?g.text:g.value;if(f){return m}l.push(m)}}return l}return b.value};a.fn.clearForm=function(){return this.each(function(){a("input,select,textarea",this).clearFields()})};a.fn.clearFields=a.fn.clearInputs=function(){return this.each(function(){var c=this.type,b=this.tagName.toLowerCase();if(c=="text"||c=="password"||b=="textarea"){this.value=""}else{if(c=="checkbox"||c=="radio"){this.checked=false}else{if(b=="select"){this.selectedIndex=-1}}}})};a.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};a.fn.enable=function(c){if(c==undefined){c=true}return this.each(function(){this.disabled=!c})};a.fn.select=function(b){if(b==undefined){b=true}return this.each(function(){var c=this.type;if(c=="checkbox"||c=="radio"){this.checked=b}else{if(this.tagName.toLowerCase()=="option"){var d=a(this).parent("select");if(b&&d[0]&&d[0].type=="select-one"){d.find("option").select(false)}this.selected=b}}})}})(jQuery);;var root='http://works.themespub.com/simplified2/wp-content/themes/simplified2/';(function($){$.fn.lightBox=function(settings){settings=jQuery.extend({overlayBgColor:'#000',overlayOpacity:0.8,fixedNavigation:false,imageLoading:root+'images/lightbox-ico-loading.gif',imageBtnPrev:root+'images/lightbox-btn-prev.gif',imageBtnNext:root+'images/lightbox-btn-next.gif',imageBtnClose:root+'images/lightbox-btn-close.gif',imageBlank:root+'images/lightbox-blank.gif',containerBorderSize:10,containerResizeSpeed:400,txtImage:'Image',txtOf:'of',keyToClose:'c',keyToPrev:'p',keyToNext:'n',imageArray:[],activeImage:0},settings);var jQueryMatchedObj=this;function _initialize(){_start(this,jQueryMatchedObj);return false;}
function _start(objClicked,jQueryMatchedObj){$('embed, object, select').css({'visibility':'hidden'});_set_interface();settings.imageArray.length=0;settings.activeImage=0;if(jQueryMatchedObj.length==1){settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));}else{for(var i=0;i<jQueryMatchedObj.length;i++){settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));}}
while(settings.imageArray[settings.activeImage][0]!=objClicked.getAttribute('href')){settings.activeImage++;}
_set_image_to_view();}
function _set_interface(){$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="'+settings.imageLoading+'"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="'+settings.imageBtnClose+'"></a></div></div></div></div>');var arrPageSizes=___getPageSize();$('#jquery-overlay').css({backgroundColor:settings.overlayBgColor,opacity:settings.overlayOpacity,width:arrPageSizes[0],height:arrPageSizes[1]}).fadeIn();var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]}).show();$('#jquery-overlay,#jquery-lightbox').click(function(){_finish();});$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function(){_finish();return false;});$(window).resize(function(){var arrPageSizes=___getPageSize();$('#jquery-overlay').css({width:arrPageSizes[0],height:arrPageSizes[1]});var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]});});}
function _set_image_to_view(){$('#lightbox-loading').show();if(settings.fixedNavigation){$('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();}else{$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();}
var objImagePreloader=new Image();objImagePreloader.onload=function(){$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);objImagePreloader.onload=function(){};};objImagePreloader.src=settings.imageArray[settings.activeImage][0];};function _resize_container_image_box(intImageWidth,intImageHeight){var intCurrentWidth=$('#lightbox-container-image-box').width();var intCurrentHeight=$('#lightbox-container-image-box').height();var intWidth=(intImageWidth+(settings.containerBorderSize*2));var intHeight=(intImageHeight+(settings.containerBorderSize*2));var intDiffW=intCurrentWidth-intWidth;var intDiffH=intCurrentHeight-intHeight;$('#lightbox-container-image-box').animate({width:intWidth,height:intHeight},settings.containerResizeSpeed,function(){_show_image();});if((intDiffW==0)&&(intDiffH==0)){if($.browser.msie){___pause(250);}else{___pause(100);}}
$('#lightbox-container-image-data-box').css({width:intImageWidth});$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({height:intImageHeight+(settings.containerBorderSize*2)});};function _show_image(){$('#lightbox-loading').hide();$('#lightbox-image').fadeIn(function(){_show_image_data();_set_navigation();});_preload_neighbor_images();};function _show_image_data(){$('#lightbox-container-image-data-box').slideDown('fast');$('#lightbox-image-details-caption').hide();if(settings.imageArray[settings.activeImage][1]){$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();}
if(settings.imageArray.length>1){$('#lightbox-image-details-currentNumber').html(settings.txtImage+' '+(settings.activeImage+1)+' '+settings.txtOf+' '+settings.imageArray.length).show();}}
function _set_navigation(){$('#lightbox-nav').show();$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({'background':'transparent url('+settings.imageBlank+') no-repeat'});if(settings.activeImage!=0){if(settings.fixedNavigation){$('#lightbox-nav-btnPrev').css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'}).unbind().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}else{$('#lightbox-nav-btnPrev').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}}
if(settings.activeImage!=(settings.imageArray.length-1)){if(settings.fixedNavigation){$('#lightbox-nav-btnNext').css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'}).unbind().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}else{$('#lightbox-nav-btnNext').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}}
_enable_keyboard_navigation();}
function _enable_keyboard_navigation(){$(document).keydown(function(objEvent){_keyboard_action(objEvent);});}
function _disable_keyboard_navigation(){$(document).unbind();}
function _keyboard_action(objEvent){if(objEvent==null){keycode=event.keyCode;escapeKey=27;}else{keycode=objEvent.keyCode;escapeKey=objEvent.DOM_VK_ESCAPE;}
key=String.fromCharCode(keycode).toLowerCase();if((key==settings.keyToClose)||(key=='x')||(keycode==escapeKey)){_finish();}
if((key==settings.keyToPrev)||(keycode==37)){if(settings.activeImage!=0){settings.activeImage=settings.activeImage-1;_set_image_to_view();_disable_keyboard_navigation();}}
if((key==settings.keyToNext)||(keycode==39)){if(settings.activeImage!=(settings.imageArray.length-1)){settings.activeImage=settings.activeImage+1;_set_image_to_view();_disable_keyboard_navigation();}}}
function _preload_neighbor_images(){if((settings.imageArray.length-1)>settings.activeImage){objNext=new Image();objNext.src=settings.imageArray[settings.activeImage+1][0];}
if(settings.activeImage>0){objPrev=new Image();objPrev.src=settings.imageArray[settings.activeImage-1][0];}}
function _finish(){$('#jquery-lightbox').remove();$('#jquery-overlay').fadeOut(function(){$('#jquery-overlay').remove();});$('embed, object, select').css({'visibility':'visible'});}
function ___getPageSize(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth;}else{windowWidth=self.innerWidth;}
windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=xScroll;}else{pageWidth=windowWidth;}
arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight);return arrayPageSize;};function ___getPageScroll(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft;}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft;}
arrayPageScroll=new Array(xScroll,yScroll);return arrayPageScroll;};function ___pause(ms){var date=new Date();curDate=null;do{var curDate=new Date();}
while(curDate-date<ms);};return this.unbind('click').click(_initialize);};})(jQuery);;(function(b){b.fn.superfish=function(k){var g=b.fn.superfish,j=g.c,f=b(['<span class="',j.arrowClass,'"> <strong>&#187;</strong></span>'].join("")),i=function(){var c=b(this),l=d(c);clearTimeout(l.sfTimer);c.showSuperfishUl().siblings().hideSuperfishUl()},e=function(){var c=b(this),m=d(c),l=g.op;clearTimeout(m.sfTimer);m.sfTimer=setTimeout(function(){l.retainPath=(b.inArray(c[0],l.$path)>-1);c.hideSuperfishUl();if(l.$path.length&&c.parents(["li.",l.hoverClass].join("")).length<1){i.call(l.$path)}},l.delay)},d=function(c){var l=c.parents(["ul.",j.menuClass,":first"].join(""))[0];g.op=g.o[l.serial];return l},h=function(c){c.addClass(j.anchorClass).append(f.clone())};return this.each(function(){var c=this.serial=g.o.length;var m=b.extend({},g.defaults,k);m.$path=b("li."+m.pathClass,this).slice(0,m.pathLevels).each(function(){b(this).addClass([m.hoverClass,j.bcClass].join(" ")).filter("li:has(ul)").removeClass(m.pathClass)});g.o[c]=g.op=m;b("li:has(ul)",this)[(b.fn.hoverIntent&&!m.disableHI)?"hoverIntent":"hover"](i,e).each(function(){if(m.autoArrows){h(b(">a:first-child",this))}}).not("."+j.bcClass).hideSuperfishUl();var l=b("a",this);l.each(function(n){var o=l.eq(n).parents("li");l.eq(n).focus(function(){i.call(o)}).blur(function(){e.call(o)})});m.onInit.call(this)}).each(function(){menuClasses=[j.menuClass];if(g.op.dropShadows&&!(b.browser.msie&&b.browser.version<7)){menuClasses.push(j.shadowClass)}b(this).addClass(menuClasses.join(" "))})};var a=b.fn.superfish;a.o=[];a.op={};a.IE7fix=function(){var c=a.op;if(b.browser.msie&&b.browser.version>6&&c.dropShadows&&c.animation.opacity!=undefined){this.toggleClass(a.c.shadowClass+"-off")}};a.c={bcClass:"sf-breadcrumb",menuClass:"sf-js-enabled",anchorClass:"sf-with-ul",arrowClass:"sf-sub-indicator",shadowClass:"sf-shadow"};a.defaults={hoverClass:"sfHover",pathClass:"overideThisToUse",pathLevels:1,delay:800,animation:{opacity:"show"},speed:"normal",autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};b.fn.extend({hideSuperfishUl:function(){var e=a.op,d=(e.retainPath===true)?e.$path:"";e.retainPath=false;var c=b(["li.",e.hoverClass].join(""),this).add(this).not(d).removeClass(e.hoverClass).find(">ul").hide().css("visibility","hidden");e.onHide.call(c);return this},showSuperfishUl:function(){var e=a.op,d=a.c.shadowClass+"-off",c=this.addClass(e.hoverClass).find(">ul:hidden").css("visibility","visible");a.IE7fix.call(c);e.onBeforeShow.call(c);c.animate(e.animation,e.speed,function(){a.IE7fix.call(c);e.onShow.call(c)});return this}})})(jQuery);;$(function(){$("a.lightbox").lightBox()});$(document).ready(function(){$("#contact").ajaxForm(function(a){if(a==1){$("#success").fadeIn("slow");$("#bademail").fadeOut("slow");$("#badserver").fadeOut("slow");$("#contact").resetForm()}else{if(a==2){$("#badserver").fadeIn("slow")}else{if(a==3){$("#bademail").fadeIn("slow")}}}})});$(document).ready(function(){$("ul.sf-menu").superfish({delay:200,animation:{opacity:"show",height:"show"},speed:"fast",autoArrows:true,dropShadows:true})});$(document).ready(function(){$(".boxgrid.slidedown").hover(function(){$(".cover",this).stop().animate({top:"-260px"},{queue:false,duration:300})},function(){$(".cover",this).stop().animate({top:"0px"},{queue:false,duration:300})});$(".boxgrid.slideright").hover(function(){$(".cover",this).stop().animate({left:"325px"},{queue:false,duration:300})},function(){$(".cover",this).stop().animate({left:"0px"},{queue:false,duration:300})});$(".boxgrid.thecombo").hover(function(){$(".cover",this).stop().animate({top:"260px",left:"325px"},{queue:false,duration:300})},function(){$(".cover",this).stop().animate({top:"0px",left:"0px"},{queue:false,duration:300})});$(".boxgrid.peek").hover(function(){$(".cover",this).stop().animate({top:"90px"},{queue:false,duration:160})},function(){$(".cover",this).stop().animate({top:"0px"},{queue:false,duration:160})});$(".boxgrid.captionfull").hover(function(){$(".cover",this).stop().animate({top:"180px"},{queue:false,duration:160})},function(){$(".cover",this).stop().animate({top:"250px"},{queue:false,duration:160})});$(".boxgrid.caption").hover(function(){$(".cover",this).stop().animate({top:"180px"},{queue:false,duration:160})},function(){$(".cover",this).stop().animate({top:"250px"},{queue:false,duration:160})})});;
/*
* Copyright (c) 2009 Simo Kinnunen.
* Licensed under the MIT license.
*
* @version ${Version}
*/
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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,enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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)}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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 g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc /
 * Type Solutions Inc. 1990-91 All Rights Reserved
 * 
 * Trademark:
 * Century Gothic is a trademark of The Monotype Corporation plc.
 * 
 * Description:
 * A design based on Monotype 20th Century, which was drawn by Sol Hess between
 * 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has
 * an enlarged 'x' height and has been modified to ensure satisfactory output from
 * modern digital systems. The design is influenced by the geometric style sans
 * serif faces which were popular during the 1920's and 30's. Useful for headlines
 * and general display work and for small quantities of text, particularly in
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":256,"face":{"font-family":"Century Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-61 -382 415 110","underline-thickness":"20.918","underline-position":"-24.2578","unicode-range":"U+0020-U+F108"},"glyphs":{" ":{"w":99},"!":{"d":"66,-265r0,200r-26,0r0,-200r26,0xm31,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":106},"\"":{"d":"99,-184r-18,0r-4,-81r26,0xm31,-184r-19,0r-4,-81r26,0","w":111},"#":{"d":"217,-106r0,19r-44,0r-13,87r-19,0r12,-87r-58,0r-13,87r-20,0r14,-87r-44,0r0,-19r47,0r9,-59r-45,0r0,-19r47,0r13,-82r18,0r-11,82r58,0r12,-82r20,0r-13,82r40,0r0,19r-42,0r-9,59r41,0xm165,-165r-58,0r-9,59r58,0","w":259},"$":{"d":"29,-197v0,-37,27,-58,64,-62r0,-18r23,0r0,19v26,6,39,15,53,36r-19,15v-9,-14,-20,-22,-34,-25r0,87v48,28,72,32,72,82v0,41,-28,65,-72,69r0,55r-23,0r0,-55v-41,-3,-63,-19,-80,-46r18,-14v16,22,37,34,62,36r0,-109v-40,-20,-64,-24,-64,-70xm93,-234v-31,0,-49,33,-31,58v6,9,17,16,31,22r0,-80xm116,-19v36,-2,62,-41,37,-71v-7,-9,-19,-17,-37,-27r0,98","w":199},"%":{"d":"68,-265v49,9,106,12,154,-5r21,0r-189,288r-23,0r171,-262v-22,6,-52,7,-83,7v29,39,-4,94,-51,94v-33,0,-62,-28,-60,-61v1,-35,25,-60,60,-61xm108,-204v0,-20,-19,-39,-39,-39v-20,0,-39,19,-39,39v0,20,18,38,39,38v21,0,39,-18,39,-38xm149,-53v0,-33,28,-61,61,-61v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61xm249,-53v1,-20,-18,-39,-39,-39v-21,0,-38,18,-38,39v0,20,18,38,38,38v21,0,39,-18,39,-38","w":278},"&":{"d":"175,-202v-2,32,-19,42,-45,65r66,68v19,-16,19,-16,31,-27r18,19v-11,10,-22,19,-31,26r49,51r-36,0r-33,-35v-37,27,-49,42,-96,42v-37,0,-67,-25,-67,-60v0,-45,26,-56,63,-88v-20,-27,-34,-32,-34,-61v0,-64,118,-61,115,0xm117,-224v-21,0,-38,16,-28,35v6,10,15,21,25,33v18,-14,30,-26,35,-46v0,-14,-15,-22,-32,-22xm57,-55v1,29,39,47,70,32v14,-6,30,-17,49,-30r-65,-69v-31,26,-47,34,-54,67","w":272},"'":{"d":"45,-184r-18,0r-4,-81r26,0","w":71},"(":{"d":"111,-270v-46,84,-50,251,-9,345r-27,0v-39,-94,-36,-257,8,-345r28,0","w":132},")":{"d":"57,-270v41,93,37,257,-7,345r-28,0v45,-87,51,-252,8,-345r27,0","w":132},"*":{"d":"65,-265r23,0r-5,52r43,-31r11,20r-48,22r48,21r-11,20r-43,-30r5,52r-23,0r5,-52r-43,30r-12,-20r50,-21r-50,-22r12,-20r43,31","w":152},"+":{"d":"97,-141r0,-77r24,0r0,77r77,0r0,24r-77,0r0,76r-24,0r0,-76r-77,0r0,-24r77,0","w":218},",":{"d":"52,-47r24,11r-36,66r-18,-7","w":99},"-":{"d":"11,-108r97,0r0,22r-97,0r0,-22","w":119},"\u00ad":{"d":"11,-108r97,0r0,22r-97,0r0,-22","w":119},".":{"d":"33,-17v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22","w":99},"\/":{"d":"147,-265r-107,300r-27,0r107,-300r27,0","w":157},"0":{"d":"98,7v-66,0,-87,-58,-87,-136v0,-79,19,-136,87,-136v68,0,90,59,90,136v0,77,-23,136,-90,136xm99,-240v-51,6,-63,48,-63,111v0,64,11,112,63,112v52,0,65,-55,65,-112v0,-59,-14,-107,-65,-111","w":199},"1":{"d":"67,-259r50,0r0,259r-25,0r0,-233r-41,0","w":199},"2":{"d":"102,-240v-37,0,-58,25,-60,62r-25,0v0,-50,38,-86,86,-87v60,-2,101,64,69,118v-21,36,-74,87,-105,122r119,0r0,25r-175,0r99,-107v29,-34,45,-39,48,-80v2,-29,-26,-54,-56,-53","w":199},"3":{"d":"97,-240v-29,1,-39,16,-49,41r-27,0v8,-38,34,-64,76,-66v69,-4,103,88,41,120v26,9,48,37,48,68v0,71,-91,109,-144,64v-15,-13,-24,-31,-29,-56r25,0v8,32,25,49,60,50v35,1,62,-24,62,-56v0,-41,-29,-55,-76,-56r0,-24v32,-1,60,-12,60,-43v1,-24,-21,-43,-47,-42","w":199},"4":{"d":"153,-265r6,0r0,180r31,0r0,25r-31,0r0,60r-26,0r0,-60r-124,0xm133,-85r0,-108r-76,108r76,0","w":199},"5":{"d":"157,-85v0,-59,-64,-73,-116,-45r24,-129r112,0r0,25r-92,0r-13,71v61,-20,112,20,112,79v0,102,-158,126,-169,21r26,0v5,28,23,44,54,45v35,1,62,-31,62,-67","w":199},"6":{"d":"103,7v-57,0,-96,-57,-72,-113v24,-55,70,-108,101,-159r21,14r-70,106v53,-20,102,21,101,72v-1,47,-34,80,-81,80xm158,-73v0,-29,-25,-54,-54,-54v-30,0,-55,25,-55,54v0,29,26,54,55,54v28,0,54,-26,54,-54","w":199},"7":{"d":"26,-259r164,0r-138,266r-22,-11r120,-230r-124,0r0,-25","w":199},"8":{"d":"175,-197v0,29,-16,43,-37,55v28,15,48,31,49,68v0,48,-37,81,-88,81v-51,0,-87,-35,-87,-79v0,-36,21,-55,50,-70v-22,-11,-38,-29,-38,-56v0,-39,34,-67,77,-67v42,0,74,28,74,68xm149,-198v0,-23,-20,-42,-49,-42v-26,0,-49,18,-49,43v-1,23,26,46,50,45v26,-2,48,-19,48,-46xm161,-74v0,-29,-29,-55,-60,-55v-34,0,-64,27,-63,58v1,33,27,53,62,53v35,1,61,-24,61,-56","w":199},"9":{"d":"98,-265v82,-2,89,94,49,155r-78,117r-21,-14r70,-106v-53,20,-101,-21,-100,-72v0,-49,34,-79,80,-80xm43,-185v0,28,26,54,54,54v29,0,55,-25,55,-54v0,-29,-26,-55,-55,-55v-29,0,-54,26,-54,55","w":199},":":{"d":"33,-174v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm33,-17v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22","w":99},";":{"d":"33,-174v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm52,-47r24,11r-36,66r-18,-7","w":99},"\u037e":{"d":"33,-174v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm52,-47r24,11r-36,66r-18,-7","w":99},"<":{"d":"200,-61r0,26r-182,-83r0,-23r182,-82r0,25r-148,69","w":218},"=":{"d":"198,-180r0,24r-178,0r0,-24r178,0xm198,-103r0,24r-178,0r0,-24r178,0","w":218},">":{"d":"18,-61r148,-68r-148,-69r0,-25r182,82r0,23r-182,83r0,-26","w":218},"?":{"d":"107,-240v-31,0,-52,19,-52,52r-25,0v-1,-47,31,-77,77,-77v62,0,97,63,52,102v-19,16,-88,25,-87,56v0,16,18,26,36,26v26,0,35,-13,38,-37r26,0v-2,38,-25,62,-64,62v-34,0,-62,-20,-62,-51v0,-65,106,-45,109,-97v1,-22,-23,-36,-48,-36xm85,-17v0,-12,10,-22,22,-22v11,0,21,10,21,22v0,12,-9,22,-21,22v-12,0,-23,-9,-22,-22","w":212},"@":{"d":"38,-133v-6,114,153,162,216,80r18,0v-29,37,-54,58,-108,58v-82,0,-140,-55,-140,-137v0,-81,56,-137,138,-139v65,-2,126,52,126,113v0,59,-39,99,-90,104v-13,1,-22,-4,-21,-19v-31,38,-101,8,-97,-46v3,-42,30,-85,75,-83v24,1,35,9,46,26r5,-24r19,0r-22,122v0,5,3,10,9,9v34,-6,62,-42,62,-85v0,-58,-53,-102,-113,-101v-74,1,-119,50,-123,122xm157,-183v-56,-3,-75,107,-10,108v50,1,68,-107,10,-108","w":312},"A":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"B":{"d":"187,-74v0,44,-37,75,-84,74r-71,0r0,-259v69,-3,134,0,134,64v0,26,-14,44,-33,54v32,11,54,28,54,67xm139,-195v1,-39,-40,-40,-82,-38r0,83v47,2,80,-5,82,-45xm160,-74v0,-47,-45,-52,-103,-50r0,99v55,2,103,-1,103,-49","w":206},"C":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138","w":292},"D":{"d":"249,-126v0,81,-45,128,-135,126r-83,0r0,-259r54,0v111,-3,164,38,164,133xm223,-126v0,-89,-61,-113,-167,-107r0,209v104,5,167,-13,167,-102","w":267},"E":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"F":{"d":"31,-259r130,0r0,26r-104,0r0,81r104,0r0,25r-104,0r0,127r-26,0r0,-259","w":174},"G":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136","w":313},"H":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"I":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"J":{"d":"29,-41v36,34,87,33,87,-44r0,-174r26,0r0,175v15,96,-75,110,-127,63","w":173},"K":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"L":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259","w":166},"M":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"N":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0","w":266},"O":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110","w":312},"P":{"d":"193,-190v-4,67,-55,73,-136,70r0,120r-26,0r0,-259r52,0v74,-3,102,12,110,69xm166,-190v0,-49,-56,-44,-109,-43r0,87v52,2,109,7,109,-44","w":213},"Q":{"d":"293,-129v-1,46,-18,76,-45,101r39,48r-32,0r-26,-33v-90,57,-212,-14,-208,-115v3,-80,55,-135,135,-137v75,-2,138,62,137,136xm47,-128v-3,81,92,138,165,94r-57,-73r31,0r46,59v70,-63,23,-196,-75,-192v-64,3,-108,47,-110,112","w":313},"R":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45","w":218},"S":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70","w":179},"T":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"U":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266","w":235},"V":{"d":"12,-259r28,0r86,200r87,-200r28,0r-113,259r-5,0","w":252},"W":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0","w":345},"X":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"Y":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124","w":213},"Z":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0","w":172},"[":{"d":"51,-265r59,0r0,25r-34,0r0,286r34,0r0,24r-59,0r0,-335","w":126},"\\":{"d":"39,-265r167,300r-27,0r-167,-300r27,0","w":217},"]":{"d":"75,70r-59,0r0,-25r35,0r0,-286r-35,0r0,-24r59,0r0,335","w":126},"^":{"d":"111,-259r20,0r90,195r-23,0r-78,-168r-76,168r-23,0","w":241},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"57,-281r39,54r-25,0r-51,-54r37,0","w":136},"a":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77","w":245},"b":{"d":"129,5v-36,-1,-59,-18,-76,-40r0,35r-24,0r0,-265r24,0r0,107v17,-23,41,-37,77,-38v54,-2,98,48,98,101v0,53,-45,101,-99,100xm52,-97v0,42,34,79,75,78v45,-1,76,-32,76,-77v0,-44,-31,-78,-75,-78v-44,0,-76,30,-76,77","w":245},"c":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99","w":232},"d":{"d":"118,-196v36,1,59,17,76,40r0,-109r24,0r0,265r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm196,-95v0,-42,-35,-78,-76,-77v-45,1,-76,32,-76,77v0,44,32,77,76,77v44,0,76,-31,76,-77","w":246},"e":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0","w":233},"f":{"d":"39,-191v-1,-42,-2,-81,39,-79v8,0,17,2,28,5r0,24v-23,-10,-47,-11,-42,24r0,26r40,0r0,21r-40,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0","w":113},"g":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74","w":242},"h":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-265r25,0r0,108v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173","w":219},"i":{"d":"16,-250v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm24,-191r25,0r0,191r-25,0r0,-191","w":72},"j":{"d":"16,-250v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm-11,47v21,10,35,5,35,-25r0,-213r25,0r0,220v4,42,-26,55,-60,40r0,-22","w":73},"k":{"d":"27,-265r25,0r0,151r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-265","w":180},"l":{"d":"24,-265r24,0r0,265r-24,0r0,-265","w":72},"m":{"d":"113,-172v-73,0,-61,94,-61,172r-25,0r0,-191r25,0r0,33v15,-22,34,-38,65,-38v35,1,51,18,61,46v13,-26,36,-45,70,-46v85,-1,62,111,65,196r-25,0v-7,-66,25,-173,-45,-172v-74,1,-60,94,-61,172r-24,0v-6,-66,23,-172,-45,-172","w":337},"n":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173","w":219},"o":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77","w":235},"p":{"d":"129,5v-35,-2,-59,-16,-77,-38r0,103r-24,0r0,-261r24,0r0,35v17,-23,40,-39,76,-40v54,-1,99,47,99,100v0,53,-45,102,-98,101xm202,-95v0,-45,-31,-76,-76,-77v-41,-1,-76,35,-76,77v0,46,33,77,77,77v43,0,75,-34,75,-77","w":245},"q":{"d":"117,-196v37,1,60,17,77,40r0,-35r24,0r0,261r-24,0r0,-103v-18,23,-42,36,-77,38v-53,1,-98,-47,-98,-101v0,-53,45,-101,98,-100xm195,-95v1,-42,-35,-78,-76,-77v-45,1,-76,33,-76,77v0,42,32,77,76,77v44,0,75,-31,76,-77","w":245},"r":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169","w":108},"s":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96","w":139},"t":{"d":"49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71","w":121},"u":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196","w":218},"v":{"d":"9,-191r27,0r63,139r64,-139r26,0r-87,191r-5,0","w":199},"w":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0","w":299},"x":{"d":"6,-191r29,0r51,71r50,-71r30,0r-65,91r73,100r-30,0r-58,-80r-58,80r-29,0r72,-100","w":172},"y":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84","w":193},"z":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21","w":152},"{":{"d":"50,-7v0,-44,-2,-64,-37,-68r0,-29v40,-4,37,-33,37,-81v0,-56,12,-76,65,-74r0,28v-29,0,-37,5,-36,36v0,63,1,86,-36,105v29,14,36,33,36,80v0,48,-7,62,36,62r0,27v-59,2,-65,-24,-65,-86","w":126},"|":{"d":"108,-265r25,0r0,335r-25,0r0,-335","w":241},"}":{"d":"77,-172v-1,45,1,64,36,68r0,29v-39,0,-37,40,-36,80v1,55,-12,77,-66,74r0,-27v29,0,37,-5,36,-36v0,-63,1,-87,37,-106v-31,-16,-36,-31,-37,-79v0,-52,6,-60,-36,-62r0,-28v59,-2,67,25,66,87","w":126},"~":{"d":"154,-128v21,-1,21,-7,44,-19r0,28v-20,10,-25,15,-44,17v-22,3,-66,-28,-88,-28v-21,0,-26,7,-46,19r0,-29v20,-10,25,-14,44,-16v22,-2,65,29,90,28","w":218},"\u00c4":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm77,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm149,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":266},"\u00c5":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm95,-312v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm152,-312v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":266},"\u00c7":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm161,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":292},"\u00c9":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm119,-333r38,0r-52,54r-24,0","w":193},"\u00d1":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm69,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":266},"\u00d6":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm100,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm172,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":312},"\u00dc":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm62,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm134,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":235},"\u00e1":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm134,-281r38,0r-52,54r-24,0","w":245},"\u00e0":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm112,-281r39,54r-25,0r-51,-54r37,0","w":245},"\u00e2":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm112,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":245},"\u00e4":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm67,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm139,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":245},"\u00e3":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm59,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":245},"\u00e5":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm85,-260v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm142,-260v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":245},"\u00e7":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm131,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":232},"\u00e9":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm129,-281r38,0r-52,54r-24,0","w":233},"\u00e8":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm106,-281r39,54r-25,0r-51,-54r37,0","w":233},"\u00ea":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm106,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":233},"\u00eb":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm61,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm133,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":233},"\u00ed":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm48,-281r38,0r-52,54r-24,0","w":72},"\u00ec":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm25,-281r39,54r-25,0r-51,-54r37,0","w":72},"\u00ee":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm25,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":72},"\u00ef":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-20,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm52,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":72},"\u00f1":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm46,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":219},"\u00f3":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm129,-281r38,0r-52,54r-24,0","w":235},"\u00f2":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm107,-281r39,54r-25,0r-51,-54r37,0","w":235},"\u00f4":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm107,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":235},"\u00f6":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm62,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm134,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":235},"\u00f5":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm54,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":235},"\u00fa":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm121,-281r38,0r-52,54r-24,0","w":218},"\u00f9":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm98,-281r39,54r-25,0r-51,-54r37,0","w":218},"\u00fb":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm98,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":218},"\u00fc":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm53,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm125,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":218},"\u2020":{"d":"86,-265r26,0r-4,80r63,-3r0,26r-63,-5r5,222r-27,0r5,-222r-63,5r0,-26r63,3","w":199},"\u00b0":{"d":"72,-265v33,0,61,28,61,60v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-60,61,-60xm72,-163v21,0,40,-20,40,-41v0,-22,-18,-42,-39,-42v-22,0,-41,18,-41,41v0,22,18,42,40,42","w":143},"\u00a2":{"d":"55,-14v-79,-56,-19,-220,91,-176r23,-46r21,11r-23,45v8,5,15,11,20,17r-15,18v-5,-5,-10,-9,-16,-13r-70,134v32,13,52,4,80,-16r16,18v-24,22,-67,36,-107,20r-26,52r-21,-11xm134,-169v-74,-28,-121,80,-68,132","w":199},"\u00a3":{"d":"10,-27v0,-30,35,-52,64,-33v4,-25,1,-45,-6,-66r-51,0r0,-22r45,0v-35,-70,10,-137,81,-110v18,12,29,30,31,60r-24,0v0,-25,-12,-44,-36,-44v-52,-1,-41,59,-26,94r57,0r0,22r-51,0v7,24,10,56,3,80v10,7,30,25,49,26v11,0,17,-13,18,-40r25,0v-1,33,-10,67,-40,67v-24,0,-46,-16,-61,-29v-13,39,-77,39,-78,-5xm34,-30v4,21,28,14,34,-6v-14,-11,-32,-12,-34,6","w":199},"\u00a7":{"d":"69,-161v-53,-25,-34,-114,34,-109v39,3,62,23,66,60r-25,0v1,-44,-81,-47,-81,-4v0,63,113,55,113,123v0,27,-25,47,-51,52v20,13,38,31,39,59v2,75,-129,68,-136,4r26,0v7,38,84,38,84,-4v0,-61,-115,-61,-115,-128v0,-30,21,-46,46,-53xm105,-54v31,-1,59,-31,37,-58v-5,-5,-25,-21,-53,-35v-32,1,-53,36,-31,61v8,9,24,20,47,32","w":221},"\u2022":{"d":"55,-131v0,-28,26,-54,54,-54v28,0,54,26,54,54v0,28,-26,54,-54,54v-28,0,-54,-26,-54,-54","w":218},"\u00b6":{"d":"17,-194v0,-43,24,-72,72,-72r91,0r0,13r-15,0r0,294r-21,0r0,-294r-38,0r0,294r-21,0r0,-165v-46,0,-68,-26,-68,-70","w":203},"\u00df":{"d":"103,-246v-38,4,-50,21,-50,73r0,173r-25,0r0,-175v-2,-65,20,-91,74,-95v40,-3,71,26,70,64v-1,36,-24,54,-58,59v43,5,64,33,67,75v3,57,-59,96,-110,68r0,-23v39,23,85,0,85,-45v0,-40,-28,-61,-69,-61r0,-28v33,3,60,-16,60,-44v0,-23,-20,-43,-44,-41","w":199},"\u00ae":{"d":"135,-271v80,0,138,59,138,137v0,81,-58,139,-138,139v-79,0,-139,-58,-139,-138v0,-80,58,-138,139,-138xm135,-14v68,0,118,-50,118,-119v0,-68,-49,-120,-118,-120v-69,0,-119,52,-119,120v0,68,50,119,119,119xm178,-55v-8,-30,7,-73,-36,-66r-40,0r0,66r-25,0r0,-159v56,1,125,-11,123,45v-1,18,-6,25,-20,35v29,8,9,56,26,79r-28,0xm175,-168v0,-32,-43,-21,-73,-23r0,47v31,-1,73,8,73,-24","w":268},"\u00a9":{"d":"135,-271v80,0,138,58,138,138v0,80,-58,138,-138,138v-80,0,-139,-58,-139,-138v0,-80,58,-138,139,-138xm135,-14v68,0,118,-49,118,-119v0,-70,-50,-119,-119,-119v-68,0,-118,51,-118,119v0,69,50,119,119,119xm62,-132v0,-68,69,-108,120,-70v13,9,19,24,20,40r-24,0v-4,-20,-18,-32,-41,-32v-33,1,-49,25,-49,62v0,68,88,82,90,17r24,0v-4,36,-29,63,-67,63v-46,0,-73,-32,-73,-80","w":268},"\u2122":{"d":"346,-266r0,152r-27,0r0,-125r-56,125r-18,0r-54,-125r0,125r-26,0r0,-152r42,0r47,105r50,-105r42,0xm135,-266r0,24r-53,0r0,128r-27,0r0,-128r-53,0r0,-24r133,0","w":360},"\u00b4":{"d":"79,-281r38,0r-52,54r-24,0","w":135},"\u00a8":{"d":"10,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm82,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":132},"\u2260":{"d":"130,-180r58,0r0,24r-67,0r-20,53r87,0r0,24r-97,0r-33,86r-24,0r33,-86r-57,0r0,-24r66,0r21,-53r-87,0r0,-24r96,0r32,-85r25,0","w":197},"\u00c6":{"d":"0,0r167,-259r160,0r0,27r-122,0r0,79r122,0r0,26r-122,0r0,102r122,0r0,25r-148,0r0,-85r-94,0r-55,85r-30,0xm102,-109r77,0r0,-120","w":357},"\u00d8":{"d":"61,-31v-85,-79,-26,-234,95,-234v30,0,57,9,82,26r26,-31r18,16r-26,31v22,22,34,53,36,94v4,104,-123,175,-212,113r-29,34r-19,-15xm221,-219v-72,-52,-174,0,-174,91v0,30,10,56,31,77xm97,-36v74,45,172,-7,169,-93v0,-29,-10,-54,-28,-74","w":312},"\u221e":{"d":"27,-126v0,-54,67,-62,94,-17v23,-25,27,-41,58,-41v30,0,51,23,51,57v0,36,-20,59,-51,59v-31,0,-36,-17,-58,-41v-27,45,-94,37,-94,-17xm210,-125v0,-30,-27,-50,-50,-32v-6,4,-15,14,-27,31v16,21,20,38,46,38v19,0,31,-16,31,-37xm46,-126v5,38,44,32,63,0v-14,-28,-60,-41,-63,0"},"\u00b1":{"d":"87,-160r0,-77r24,0r0,77r77,0r0,24r-77,0r0,76r-24,0r0,-76r-77,0r0,-24r77,0xm188,-28r0,24r-178,0r0,-24r178,0","w":197},"\u2264":{"d":"190,-85r0,26r-182,-82r0,-23r182,-83r0,26r-148,68xm190,-41r0,24r-182,0r0,-24r182,0","w":197},"\u2265":{"d":"8,-85r148,-68r-148,-68r0,-26r182,83r0,23r-182,82r0,-26xm190,-41r0,24r-182,0r0,-24r182,0","w":197},"\u00a5":{"d":"159,-259r29,0r-73,130r63,0r0,20r-66,0r0,27r66,0r0,21r-66,0r0,61r-25,0r0,-61r-65,0r0,-21r65,0r0,-27r-65,0r0,-20r62,0r-73,-130r29,0r59,106","w":199},"\u00b5":{"d":"157,-21v-19,33,-86,32,-106,1r0,90r-25,0r0,-261r25,0v3,71,-20,170,53,169v72,-1,50,-99,53,-169r25,0r0,191r-25,0r0,-21","w":207},"\u2202":{"d":"151,-162v-1,-44,-2,-78,-36,-78v-17,0,-30,14,-40,40r-24,-11v13,-28,31,-51,63,-51v45,0,56,47,57,99v0,87,-32,162,-107,167v-34,2,-55,-26,-54,-61v3,-72,58,-105,141,-105xm41,-53v0,35,37,41,63,20v27,-22,41,-58,46,-107v-70,1,-109,28,-109,87","w":177},"\u2211":{"d":"24,-270r218,0r0,29r-174,0r107,140r-114,148r183,0r0,28r-223,0r0,-33r109,-142r-106,-139r0,-31"},"\u220f":{"d":"28,-270r240,0r0,345r-34,0r0,-314r-172,0r0,314r-34,0r0,-345","w":296},"\uf006":{"d":"0,-187r198,0r0,28r-29,0r0,159r-33,0r0,-159r-75,0r0,159r-33,0r0,-159r-28,0r0,-28","w":197},"\u222b":{"d":"0,17v1,-25,28,-14,37,-6v5,0,6,-5,6,-10r-8,-168v5,-51,-12,-153,41,-160v12,-1,22,8,22,18v1,11,-6,19,-16,19v-7,0,-27,-22,-27,1v4,99,12,120,5,242v-3,52,-3,81,-39,86v-12,2,-21,-10,-21,-22","w":98},"\u00aa":{"d":"10,-202v-6,-51,60,-85,87,-43r0,-17r20,0r0,120r-20,0r0,-17v-27,41,-94,8,-87,-43xm98,-202v0,-23,-14,-44,-34,-44v-44,0,-44,88,0,88v20,0,34,-21,34,-44","w":132},"\u00ba":{"d":"10,-202v0,-34,25,-63,56,-63v32,0,57,30,57,63v0,33,-24,62,-57,62v-33,0,-56,-28,-56,-62xm102,-202v0,-24,-15,-43,-36,-44v-45,0,-47,88,0,88v21,-1,36,-20,36,-44","w":132},"\u2126":{"d":"64,-137v0,52,23,89,60,105r0,32r-102,0r0,-30r65,2v-37,-24,-61,-55,-61,-113v0,-74,43,-121,116,-123v69,-2,115,54,114,123v-1,56,-25,89,-61,113r64,-1r0,29r-101,0r0,-31v79,-24,88,-206,-17,-205v-51,1,-77,43,-77,99","w":276},"\u00e6":{"d":"21,-96v0,-96,129,-134,175,-60r0,-35r23,0r0,34v28,-47,109,-51,148,-10v18,20,28,44,28,74r-172,0v3,43,30,75,75,75v37,0,56,-17,70,-45r21,11v-20,62,-136,78,-170,18r0,34r-23,0r0,-35v-19,25,-40,39,-76,40v-53,1,-99,-47,-99,-101xm368,-114v-5,-60,-95,-77,-129,-31v-7,8,-12,19,-15,31r144,0xm197,-95v-1,-46,-30,-77,-76,-77v-43,0,-74,32,-75,76v-1,42,35,78,76,78v42,0,75,-35,75,-77","w":416},"\u00f8":{"d":"49,-22v-65,-57,-19,-174,68,-174v24,0,44,7,62,21r21,-24r16,13r-22,26v55,62,5,165,-76,165v-19,0,-37,-4,-53,-14r-20,24r-16,-13xm163,-156v-57,-46,-145,16,-114,91v4,10,9,18,16,25xm81,-28v70,41,144,-47,96,-113","w":235},"\u00bf":{"d":"85,-173v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21xm106,50v31,0,52,-19,52,-52r25,0v1,47,-31,77,-77,77v-41,0,-72,-24,-74,-61v-3,-63,99,-51,109,-97v0,-16,-17,-28,-36,-27v-26,0,-36,13,-38,38r-26,0v2,-38,25,-62,64,-62v35,0,62,20,62,51v3,64,-106,45,-109,97v-1,22,23,36,48,36","w":212},"\u00a1":{"d":"31,-173v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21xm41,75r0,-201r25,0r0,201r-25,0","w":106},"\u00ac":{"d":"198,-180r0,101r-24,0r0,-77r-154,0r0,-24r178,0","w":218},"\u221a":{"d":"184,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"109,-155r41,0r-3,21r-41,0v-15,67,-8,165,-51,201v-15,13,-32,11,-49,-1r3,-22v37,23,50,-15,56,-56r17,-122r-25,0r3,-21r25,0v10,-43,4,-114,49,-115v10,0,21,3,32,11r-4,24v-25,-25,-39,-9,-45,28","w":199},"\u2248":{"d":"143,-160v21,0,22,-7,45,-20r0,29v-20,10,-25,15,-44,17v-22,2,-66,-29,-88,-29v-20,0,-27,7,-47,19r0,-28v20,-10,25,-16,45,-17v22,-2,66,29,89,29xm143,-95v21,0,22,-7,45,-19r0,28v-20,10,-25,15,-44,17v-21,2,-66,-28,-88,-28v-21,0,-27,6,-47,18r0,-28v20,-10,25,-16,45,-17v23,-2,65,29,89,29","w":197},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"69,-191r-39,96r39,95r-26,0r-39,-95r39,-96r26,0xm149,-191r-39,96r39,95r-26,0r-39,-95r39,-96r26,0","w":152},"\u00bb":{"d":"84,0r39,-96r-39,-95r26,0r39,95r-39,96r-26,0xm4,0r39,-96r-39,-95r26,0r39,95r-39,96r-26,0","w":152},"\u2026":{"d":"158,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm38,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm278,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm122,-333r39,54r-25,0r-51,-54r37,0","w":266},"\u00c3":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm69,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":266},"\u00d5":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm92,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":312},"\u0152":{"d":"158,-265v47,0,88,27,110,57r0,-51r147,0r0,26r-121,0r0,80r121,0r0,26r-121,0r0,102r121,0r0,25r-147,0r0,-50v-29,34,-54,55,-111,57v-74,2,-138,-61,-137,-135v1,-80,59,-137,138,-137xm267,-130v-1,-65,-48,-107,-110,-110v-56,-2,-109,53,-109,110v0,60,50,111,111,111v59,0,109,-52,108,-111","w":429},"\u0153":{"d":"291,-196v55,-1,103,45,98,103r-171,0v-5,86,121,97,144,30r21,10v-20,35,-43,58,-92,58v-44,0,-66,-18,-86,-48v-20,28,-44,47,-86,48v-55,1,-99,-48,-99,-102v0,-54,45,-99,99,-99v41,0,67,19,86,50v19,-31,44,-49,86,-50xm193,-94v1,-42,-34,-79,-75,-78v-44,1,-74,33,-74,77v0,44,32,77,76,77v43,0,72,-32,73,-76xm362,-114v-7,-52,-77,-77,-119,-41v-11,9,-18,23,-23,41r142,0","w":409},"\u2013":{"d":"-2,-112r184,0r0,23r-184,0r0,-23","w":180},"\u2014":{"d":"-2,-112r364,0r0,23r-364,0r0,-23","w":360},"\u201c":{"d":"51,-265r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96xm129,-265r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96","w":180},"\u201d":{"d":"127,-169r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96xm49,-169r-14,-7v7,-17,11,-21,12,-41r-15,0r0,-48r32,0v0,41,1,70,-15,96","w":174},"\u2018":{"d":"65,-265r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96","w":126},"\u2019":{"d":"61,-169r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96","w":126},"\u00f7":{"d":"81,-212r35,0r0,35r-35,0r0,-35xm10,-141r178,0r0,24r-178,0r0,-24xm81,-82r35,0r0,36r-35,0r0,-36","w":197},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm42,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm114,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":193},"\u0178":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm50,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm122,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":213},"\u2044":{"d":"-61,7r162,-272r20,0r-163,272r-19,0","w":59},"\u2215":{"d":"-61,7r162,-272r20,0r-163,272r-19,0","w":59},"\u00a4":{"d":"156,-38v-27,25,-86,27,-112,0r-21,20r-16,-16r21,-20v-25,-28,-25,-81,0,-109r-21,-20r16,-16r21,21v27,-24,84,-27,111,-1r21,-20r15,16r-20,20v27,25,26,83,1,109r20,20r-15,16xm100,-174v-35,0,-66,31,-66,66v0,35,31,66,66,66v35,0,66,-31,66,-66v0,-35,-31,-66,-66,-66","w":199},"\u2039":{"d":"78,-191r-39,96r39,95r-26,0r-39,-95r39,-96r26,0","w":90},"\u203a":{"d":"12,0r40,-96r-40,-95r26,0r39,95r-39,96r-26,0","w":90},"\uf001":{"d":"40,-191v-12,-68,49,-99,95,-66v11,8,15,21,16,35r-25,0v-3,-16,-13,-24,-29,-24v-30,0,-33,21,-32,55r39,0r0,21r-39,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0xm126,-191r25,0r0,191r-25,0r0,-191","w":175},"\ufb01":{"d":"40,-191v-12,-68,49,-99,95,-66v11,8,15,21,16,35r-25,0v-3,-16,-13,-24,-29,-24v-30,0,-33,21,-32,55r39,0r0,21r-39,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0xm126,-191r25,0r0,191r-25,0r0,-191","w":175},"\uf002":{"d":"127,-196v12,-51,-42,-67,-58,-31v-1,5,-2,17,-2,36r39,0r0,22r-39,0r0,169r-26,0r0,-169r-25,0r0,-22r25,0v-2,-51,12,-79,56,-79v41,0,55,23,55,75r0,195r-25,0r0,-196","w":174},"\ufb02":{"d":"127,-196v12,-51,-42,-67,-58,-31v-1,5,-2,17,-2,36r39,0r0,22r-39,0r0,169r-26,0r0,-169r-25,0r0,-22r25,0v-2,-51,12,-79,56,-79v41,0,55,23,55,75r0,195r-25,0r0,-196","w":174},"\u2021":{"d":"86,-265r26,0r-4,62r63,-4r0,26r-63,-5v4,54,4,107,0,161r63,-4r0,26r-63,-5r4,63r-26,0r5,-63r-63,5r0,-26r63,4v-5,-54,-5,-107,0,-161r-63,5r0,-26r63,4","w":199},"\u2219":{"d":"28,-129v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,27,-44,28,-44,0","w":99},"\u201a":{"d":"62,48r-14,-7v7,-17,11,-21,12,-41r-15,0r0,-48r32,0v0,41,1,70,-15,96","w":127},"\u201e":{"d":"130,48r-14,-8v7,-16,11,-20,12,-40r-15,0r0,-48r32,0v0,41,1,70,-15,96xm52,48r-14,-8v7,-16,11,-20,12,-40r-15,0r0,-48r32,0v0,41,1,70,-15,96","w":180},"\u2030":{"d":"69,-265v49,9,106,12,154,-5r20,0r-188,288r-23,0r171,-262v-22,6,-52,7,-84,7v28,38,-3,94,-50,94v-33,0,-62,-28,-60,-61v1,-35,25,-60,60,-61xm108,-204v0,-21,-19,-39,-39,-39v-20,0,-38,18,-38,39v0,20,18,38,38,38v21,0,39,-17,39,-38xm150,-53v0,-33,28,-61,61,-61v33,0,60,28,60,61v0,33,-28,61,-60,61v-33,0,-61,-28,-61,-61xm249,-53v0,-21,-17,-39,-38,-39v-21,0,-39,18,-39,39v0,21,18,38,39,38v20,0,38,-18,38,-38xm290,-53v0,-33,28,-61,61,-61v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61xm389,-53v0,-21,-17,-39,-38,-39v-21,0,-39,19,-39,39v0,20,18,38,39,38v20,0,38,-18,38,-38","w":422},"\u00c2":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm122,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":266},"\u00ca":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm96,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":193},"\u00c1":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm145,-333r38,0r-52,54r-24,0","w":266},"\u00cb":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm51,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm123,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":193},"\u00c8":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm96,-333r39,54r-25,0r-51,-54r37,0","w":193},"\u00cd":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm52,-333r38,0r-52,54r-24,0","w":81},"\u00ce":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm29,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":81},"\u00cf":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-16,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm56,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":81},"\u00cc":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm30,-333r39,54r-25,0r-51,-54r37,0","w":81},"\u00d3":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm168,-333r38,0r-52,54r-24,0","w":312},"\u00d4":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm145,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":312},"\uf000":{"w":284},"\u00d2":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm145,-333r39,54r-25,0r-51,-54r37,0","w":312},"\u00da":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm129,-333r38,0r-52,54r-24,0","w":235},"\u00db":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm107,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":235},"\u00d9":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm107,-333r39,54r-25,0r-51,-54r37,0","w":235},"\u0131":{"d":"24,-191r25,0r0,191r-25,0r0,-191","w":72},"\u02c6":{"d":"79,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":180},"\u02dc":{"d":"15,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":158},"\u02c9":{"d":"27,-260r121,0r0,21r-121,0r0,-21","w":174},"\u02d8":{"d":"43,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":163},"\u02d9":{"d":"20,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":79},"\u02da":{"d":"22,-260v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm79,-260v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":119},"\u00b8":{"d":"73,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":116},"\u02dd":{"d":"83,-281r38,0r-52,54r-24,0xm139,-281r38,0r-52,54r-24,0","w":198},"\u02db":{"d":"88,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":108},"\u02c7":{"d":"102,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":180},"\u0141":{"d":"77,-151r47,-38r0,30r-47,39r0,95r99,0r0,25r-125,0r0,-98r-35,29r0,-30r35,-30r0,-130r26,0r0,108","w":186},"\u0142":{"d":"66,-171r35,-22r0,24r-35,23r0,146r-24,0r0,-130r-33,21r0,-25r33,-21r0,-110r24,0r0,94","w":107},"\u0160":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm101,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":179},"\u0161":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm81,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":139},"\u017d":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0xm98,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":172},"\u017e":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21xm88,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":152},"\u00a6":{"d":"108,-121r0,-144r25,0r0,135xm108,70r0,-168r25,-10r0,178r-25,0","w":241},"\u00d0":{"d":"266,-126v0,81,-46,126,-136,126r-93,0r0,-117r-31,0r0,-24r31,0r0,-118r65,0v110,-3,164,38,164,133xm240,-126v0,-93,-69,-114,-178,-107r0,92r68,0r0,24r-68,0r0,93v106,5,178,-8,178,-102","w":284},"\u00f0":{"d":"18,-96v0,-69,73,-125,141,-89v-11,-15,-24,-28,-38,-41r-38,16r-9,-19r31,-13v-11,-9,-21,-17,-29,-23r34,0v6,4,12,9,18,14r29,-12r9,18r-20,9v40,38,72,77,72,136v0,62,-41,103,-101,105v-54,2,-99,-47,-99,-101xm192,-96v0,-46,-28,-77,-72,-77v-41,0,-77,32,-77,76v0,42,34,79,75,78v43,-2,75,-31,74,-77","w":235},"\u00dd":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm118,-333r38,0r-52,54r-24,0","w":213},"\u00fd":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm108,-281r38,0r-52,54r-24,0","w":193},"\u00de":{"d":"193,-129v0,66,-55,72,-136,69r0,60r-26,0r0,-259r26,0r0,61v78,-3,136,2,136,69xm166,-129v0,-50,-56,-45,-109,-44r0,88v53,1,109,6,109,-44","w":213},"\u00fe":{"d":"129,5v-35,-2,-59,-16,-77,-38r0,103r-24,0r0,-335r24,0r0,109v17,-23,40,-39,76,-40v54,-1,99,47,99,100v0,53,-45,102,-98,101xm202,-95v0,-45,-31,-76,-76,-77v-41,-1,-76,35,-76,77v0,46,33,77,77,77v43,0,75,-34,75,-77","w":245},"\u2212":{"d":"20,-141r178,0r0,24r-178,0r0,-24","w":218},"\u00d7":{"d":"125,-129r59,58r-17,16r-58,-58r-58,58r-16,-16r58,-58r-58,-59r16,-16r58,59r58,-59r17,16","w":218},"\u00b9":{"d":"39,-262r33,0r0,133r-19,0r0,-116r-26,0","w":119},"\u00b2":{"d":"92,-224v-5,-35,-66,-30,-65,7r-18,0v0,-28,24,-48,53,-48v34,0,61,31,43,61v-10,17,-41,42,-58,58r66,0r0,17r-112,0r63,-57v17,-17,24,-19,28,-38","w":119},"\u00b3":{"d":"60,-248v-15,1,-22,8,-28,21r-19,0v3,-48,90,-50,93,-2v0,10,-5,18,-16,25v44,17,21,78,-29,78v-32,0,-48,-15,-53,-42r19,0v3,34,68,32,68,-1v0,-21,-19,-23,-44,-25r0,-17v38,7,46,-37,9,-37","w":123},"\u00bd":{"d":"31,-262r33,0r0,133r-19,0r0,-116r-26,0xm49,7r162,-272r20,0r-163,272r-19,0xm256,-94v-5,-35,-66,-30,-65,7r-18,0v0,-28,24,-48,53,-48v34,0,61,31,43,61v-10,17,-41,42,-58,58r66,0r0,17r-112,0r63,-57v17,-17,24,-19,28,-38","w":299},"\u00bc":{"d":"33,-262r33,0r0,133r-19,0r0,-116r-26,0xm68,7r162,-272r20,0r-163,272r-19,0xm273,-139r0,93r18,0r0,17r-18,0r0,30r-20,0r0,-30r-76,0xm253,-46r0,-43r-37,43r37,0","w":299},"\u00be":{"d":"64,-248v-15,1,-22,8,-28,21r-19,0v3,-48,90,-50,93,-2v0,10,-5,18,-16,25v44,17,21,78,-29,78v-32,0,-48,-15,-53,-42r19,0v3,34,68,32,68,-1v0,-21,-19,-23,-44,-25r0,-17v38,7,46,-37,9,-37xm76,7r162,-272r20,0r-163,272r-19,0xm272,-139r0,93r18,0r0,17r-18,0r0,30r-20,0r0,-30r-76,0xm252,-46r0,-43r-37,43r37,0","w":299},"\u20a3":{"d":"57,-73r50,0r0,24r-50,0r0,49r-26,0r0,-49r-31,0r0,-24r31,0r0,-186r130,0r0,26r-104,0r0,81r104,0r0,25r-104,0r0,54","w":174},"\u011e":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm118,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":313},"\u011f":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm83,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":242},"\u0130":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm21,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":81},"\u015e":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm94,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":179},"\u015f":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm78,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":139},"\u0106":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm173,-333r38,0r-52,54r-24,0","w":292},"\u0107":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm134,-281r38,0r-52,54r-24,0","w":232},"\u010c":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm171,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":292},"\u010d":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm137,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":232},"\u0111":{"d":"118,-196v36,1,59,17,76,40r0,-58r-54,0r0,-20r54,0r0,-31r24,0r0,31r28,0r0,20r-28,0r0,214r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm196,-95v0,-42,-35,-78,-76,-77v-45,1,-76,32,-76,77v0,44,32,77,76,77v44,0,76,-31,76,-77","w":246},"\u00af":{"d":"-2,-304r184,0r0,19r-184,0r0,-19","w":180},"\u00b7":{"d":"85,-133v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21","w":119},"\uf003":{"d":"99,-269r0,93r18,0r0,17r-18,0r0,30r-20,0r0,-30r-76,0xm79,-176r0,-43r-37,43r37,0","w":123},"\u0102":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm96,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":266},"\u0103":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm78,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":245},"\u0104":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm265,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":266},"\u0105":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm230,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":245},"\u010e":{"d":"249,-126v0,81,-45,128,-135,126r-83,0r0,-259r54,0v111,-3,164,38,164,133xm223,-126v0,-89,-61,-113,-167,-107r0,209v104,5,167,-13,167,-102xm129,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":267},"\u010f":{"d":"19,-96v-3,-88,125,-140,175,-60r0,-109r24,0r0,265r-24,0r0,-33v-21,25,-47,38,-77,38v-55,1,-96,-48,-98,-101xm196,-95v0,-44,-35,-77,-76,-77v-43,0,-75,36,-76,77v-1,41,36,77,76,77v41,0,76,-33,76,-77xm246,-183r-12,-7v6,-12,10,-23,11,-34r-13,0r0,-41r27,0v1,35,0,58,-13,82","w":246},"\u0110":{"d":"266,-126v0,81,-46,126,-136,126r-93,0r0,-117r-31,0r0,-24r31,0r0,-118r65,0v110,-3,164,38,164,133xm240,-126v0,-93,-69,-114,-178,-107r0,92r68,0r0,24r-68,0r0,93v106,5,178,-8,178,-102","w":284},"\u0118":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm177,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":193},"\u0119":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm155,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":233},"\u011a":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm119,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":193},"\u011b":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm129,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":233},"\u0132":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm110,-41v47,40,88,27,88,-44r0,-174r25,0r0,175v14,93,-72,114,-126,63","w":254},"\u0133":{"d":"16,-250v-1,-11,10,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm88,-250v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm24,-191r25,0r0,191r-25,0r0,-191xm61,47v20,11,36,3,36,-25r0,-213r24,0r0,220v2,45,-27,54,-60,40r0,-22","w":145},"\u0139":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm96,-333r38,0r-52,54r-24,0","w":166},"\u013a":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm52,-333r38,0r-52,54r-24,0","w":72},"\u013d":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm98,-162r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96","w":166},"\u013e":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm76,-183r-12,-7v6,-12,10,-23,11,-34r-14,0r0,-41r27,0v0,34,1,59,-12,82","w":74},"\u013f":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm87,-133v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21","w":166},"\u0140":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm62,-133v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21","w":94},"\u0143":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm151,-333r38,0r-52,54r-24,0","w":266},"\u0144":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm117,-281r38,0r-52,54r-24,0","w":219},"\u0147":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm146,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":266},"\u0148":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm133,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":219},"\u0149":{"d":"120,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm5,-169r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96","w":220},"\u0150":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm149,-333r38,0r-52,54r-24,0xm205,-333r38,0r-52,54r-24,0","w":312},"\u0151":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm113,-281r38,0r-52,54r-24,0xm169,-281r38,0r-52,54r-24,0","w":235},"\u0154":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45xm127,-333r38,0r-52,54r-24,0","w":218},"\u0155":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169xm74,-281r38,0r-52,54r-24,0","w":108},"\u0158":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45xm115,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":218},"\u0159":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169xm70,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":108},"\u015a":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm97,-333r38,0r-52,54r-24,0","w":179},"\u015b":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm70,-281r38,0r-52,54r-24,0","w":139},"\u0162":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0xm83,75r-12,-5v4,-8,7,-16,7,-22r-15,0r0,-27r28,0v1,22,-2,43,-8,54","w":153},"\u0163":{"d":"49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71xm67,75r-11,-5v4,-8,6,-16,6,-22r-15,0r0,-27r28,0v1,22,-2,43,-8,54","w":121},"\u0164":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0xm91,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":153},"\u0165":{"d":"104,-204r-10,-5v6,-10,10,-19,10,-27r-12,0r0,-29r24,0v0,28,1,45,-12,61xm49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71","w":121},"\u016e":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm74,-312v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm131,-312v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":235},"\u016f":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm65,-260v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm122,-260v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":218},"\u0170":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm113,-333r38,0r-52,54r-24,0xm169,-333r38,0r-52,54r-24,0","w":235},"\u0171":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm105,-281r38,0r-52,54r-24,0xm161,-281r38,0r-52,54r-24,0","w":218},"\u0179":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0xm92,-333r38,0r-52,54r-24,0","w":172},"\u017a":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21xm93,-281r38,0r-52,54r-24,0","w":152},"\u017b":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0xm60,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":172},"\u017c":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21xm51,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":152},"\uf100":{"d":"31,-258r156,0r0,31r-122,0r0,227r-34,0r0,-258","w":195},"\uf101":{"d":"20,-129v-1,-78,39,-136,116,-135v74,0,114,56,113,136v0,78,-36,135,-113,135v-81,-1,-115,-54,-116,-136xm213,-131v0,-58,-24,-105,-77,-105v-57,1,-81,42,-80,106v1,64,19,109,78,109v58,0,79,-44,79,-110xm86,-146r97,0r0,30r-97,0r0,-30","w":268},"\uf102":{"d":"20,-127v0,-69,40,-101,114,-103r0,-34r34,0r0,34v75,3,113,37,113,103v0,66,-38,100,-113,103r0,55r-34,0r0,-55v-76,-3,-114,-37,-114,-103xm134,-203v-51,0,-77,26,-77,76v0,48,26,73,77,76r0,-152xm168,-203r0,152v51,-1,76,-26,76,-76v0,-50,-25,-75,-76,-76","w":301},"\uf103":{"d":"18,-89v0,-58,30,-101,85,-101v29,0,49,12,63,35r8,-32r34,0v-17,62,-16,129,3,187r-36,0v-4,-13,-6,-25,-8,-34v-40,75,-149,32,-149,-55xm163,-93v0,-41,-14,-73,-54,-73v-38,0,-54,31,-54,74v0,40,17,73,54,73v39,0,54,-29,54,-74","w":226},"\uf104":{"d":"18,-85v1,-55,39,-87,97,-81v-28,-23,-46,-30,-46,-64v0,-44,65,-51,106,-38r0,23v-36,-9,-85,0,-64,34v38,40,94,64,94,127v0,52,-38,89,-94,89v-54,0,-94,-38,-93,-90xm168,-83v-1,-36,-18,-65,-55,-65v-38,0,-58,25,-58,64v0,38,19,66,57,65v34,0,57,-26,56,-64","w":223},"\uf105":{"d":"55,-82v-1,51,57,69,111,58r0,26v-80,14,-148,-18,-148,-94v0,-74,64,-111,145,-95r0,25v-56,-5,-104,4,-107,55r106,0r0,25r-107,0","w":184},"\uf106":{"d":"18,-93v0,-66,44,-96,116,-95r105,1r0,27r-60,0v52,52,20,165,-67,165v-58,0,-94,-38,-94,-98xm168,-94v0,-40,-16,-75,-56,-74v-39,0,-58,26,-58,78v0,39,18,71,57,71v41,-1,57,-31,57,-75","w":245},"\uf107":{"d":"7,-187r158,0r0,28r-62,0r0,159r-34,0r0,-159r-62,0r0,-28","w":172},"\uf108":{"d":"18,-94v0,-66,42,-93,105,-95r0,-45r33,0r0,45v61,0,103,32,103,93v0,69,-40,95,-104,99r0,65r-33,0r0,-66v-61,0,-104,-31,-104,-96xm122,-165v-46,0,-66,26,-67,71v0,48,22,73,67,73r0,-144xm156,-165r0,144v45,0,67,-25,67,-73v0,-47,-22,-70,-67,-71","w":277},"\u2017":{"d":"-2,26r184,0r0,18r-184,0r0,-18xm-2,57r184,0r0,18r-184,0r0,-18","w":180},"\u2032":{"d":"41,-184r-18,0r7,-81r26,0","w":71},"\u2033":{"d":"95,-184r-18,0r7,-81r26,0xm27,-184r-19,0r8,-81r26,0","w":111},"\u203c":{"d":"66,-265r0,200r-26,0r0,-200r26,0xm150,-265r0,200r-25,0r0,-200r25,0xm31,-17v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm116,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":191},"\u207f":{"d":"68,-205v-43,0,-33,57,-34,104r-21,0r0,-120r21,0r0,17v30,-39,81,-16,81,41r0,62r-20,0v-4,-39,15,-104,-27,-104","w":128},"\u20a7":{"d":"31,-259v81,-1,161,-7,162,68r13,0r0,-71r25,0r0,71v62,5,108,-22,143,21r-16,16v-13,-13,-25,-19,-38,-19v-14,0,-30,11,-29,26v6,46,83,40,83,96v0,59,-85,73,-114,29r15,-18v21,32,72,28,76,-10v-6,-47,-87,-39,-83,-96v0,-9,2,-16,6,-24r-43,0r0,170r-25,0r0,-170r-16,0v-14,51,-63,50,-133,50r0,120r-26,0r0,-259xm166,-190v0,-49,-56,-44,-109,-43r0,87v68,2,109,6,109,-44","w":390},"\u2105":{"d":"8,-201v-5,-62,87,-89,113,-34r-16,9v-20,-37,-77,-18,-77,24v0,42,57,62,77,23r16,10v-12,19,-30,29,-53,29v-36,0,-58,-30,-60,-61xm66,7r162,-272r20,0r-163,272r-19,0xm192,-60v0,-32,25,-63,57,-63v31,0,56,31,56,63v0,33,-24,63,-56,63v-33,0,-57,-30,-57,-63xm249,-16v46,0,46,-87,0,-87v-21,-1,-36,22,-36,44v0,23,16,43,36,43","w":313},"\u2113":{"d":"113,-11v-27,25,-80,20,-75,-27r0,-40r-14,18r-17,-14r31,-41v4,-58,-17,-147,41,-147v24,0,41,18,39,41v-3,43,-23,64,-50,104r0,73v0,39,20,22,45,4r0,29xm80,-241v-22,3,-9,54,-12,83v16,-28,23,-34,26,-62v1,-11,-5,-22,-14,-21","w":129},"\u2190":{"d":"86,-154r14,0v-9,20,-21,38,-34,54r280,0r0,18r-280,0v12,12,23,30,34,54r-13,0v-26,-30,-51,-50,-73,-60r0,-7v21,-8,44,-28,72,-59","w":360},"\u2191":{"d":"27,-185v31,-28,50,-51,58,-72r9,0v10,22,29,47,59,73r0,13v-24,-11,-42,-22,-54,-34r0,280r-18,0r0,-280v-16,13,-34,25,-54,34r0,-14","w":180},"\u2192":{"d":"273,-154v28,31,52,51,73,59r0,7v-22,10,-47,30,-73,60r-13,0v11,-24,22,-42,34,-54r-280,0r0,-18r280,0v-13,-16,-25,-34,-34,-54r13,0","w":360},"\u2193":{"d":"27,3r0,-14v20,9,38,22,54,35r0,-281r18,0r0,281v12,-12,30,-24,54,-35r0,14v-30,26,-49,50,-59,72r-9,0v-8,-21,-27,-44,-58,-72","w":180},"\u2194":{"d":"346,-95r0,8v-21,9,-45,29,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-26,-30,-50,-50,-71,-59r0,-8v21,-9,45,-29,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0v26,30,50,50,71,59","w":360},"\u2195":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71","w":180},"\u21a8":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"106,-239v-93,0,-57,143,-64,239r-19,0v4,-111,-26,-262,83,-262v108,0,80,145,83,262r-19,0v-7,-96,29,-239,-64,-239","w":211},"\u2261":{"d":"198,-212r0,24r-178,0r0,-24r178,0xm20,-141r178,0r0,24r-178,0r0,-24xm198,-71r0,24r-178,0r0,-24r178,0","w":218},"\u25a1":{"d":"26,-166r166,0r0,166r-166,0r0,-166xm39,-153r0,140r139,0r0,-140r-139,0","w":217},"\u25aa":{"d":"104,-160r0,82r-81,0r0,-82r81,0","w":127},"\u25ab":{"d":"104,-160r0,82r-81,0r0,-82r81,0xm91,-146r-55,0r0,54r55,0r0,-54","w":127},"\u25cf":{"d":"31,-102v0,-42,36,-77,78,-77v41,0,77,36,77,77v0,41,-36,78,-77,78v-41,0,-78,-37,-78,-78","w":217},"\u25e6":{"d":"20,-119v0,-23,21,-45,44,-44v23,0,44,19,44,44v0,23,-21,44,-44,44v-23,0,-44,-21,-44,-44xm95,-119v0,-16,-15,-31,-31,-31v-16,0,-31,14,-31,31v0,17,15,31,31,31v16,0,32,-14,31,-31","w":127},"\uf004":{"d":"57,21r22,10r-32,60r-16,-7","w":119},"\u0100":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm73,-312r121,0r0,21r-121,0r0,-21","w":266},"\u0101":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm63,-260r121,0r0,21r-121,0r0,-21","w":245},"\u0108":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm142,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":292},"\u0109":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm105,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":232},"\u010a":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm134,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":292},"\u010b":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm100,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":232},"\u0112":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm45,-312r121,0r0,21r-121,0r0,-21","w":193},"\u0113":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm57,-260r121,0r0,21r-121,0r0,-21","w":233},"\u0114":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm58,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":193},"\u0115":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm78,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":233},"\u0116":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm86,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":193},"\u0117":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm97,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":233},"\u011c":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm147,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":313},"\u011d":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm106,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":242},"\u0120":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm140,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":313},"\u0121":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm102,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":242},"\u0122":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm172,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":313},"\u0123":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm119,-319r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96","w":242},"\u0124":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259xm112,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":245},"\u0125":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-265r25,0r0,108v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm98,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":219},"\u0126":{"d":"57,-218r132,0r0,-41r26,0r0,41r23,0r0,24r-23,0r0,194r-26,0r0,-125r-132,0r0,125r-26,0r0,-194r-23,0r0,-24r23,0r0,-41r26,0r0,41xm57,-194r0,44r132,0r0,-44r-132,0","w":245},"\u0127":{"d":"119,-173v-78,1,-67,90,-67,173r-25,0r0,-218r-26,0r0,-20r26,0r0,-27r25,0r0,27r66,0r0,20r-66,0r0,61v47,-69,159,-42,142,59r0,98r-24,0v-6,-70,23,-174,-51,-173","w":219},"\u0128":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-23,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":81},"\u0129":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-28,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":72},"\u012a":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-20,-312r121,0r0,21r-121,0r0,-21","w":81},"\u012b":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-24,-260r121,0r0,21r-121,0r0,-21","w":72},"\u012c":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm2,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":81},"\u012d":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-3,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":72},"\u012e":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm68,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":81},"\u012f":{"d":"16,-250v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm24,-191r25,0r0,191r-25,0r0,-191xm63,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":72},"\u0134":{"d":"29,-41v36,34,87,33,87,-44r0,-174r26,0r0,175v15,96,-75,110,-127,63xm99,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":173},"\u0135":{"d":"25,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0xm-11,47v19,10,35,4,35,-25r0,-213r25,0r0,220v2,45,-27,54,-60,40r0,-22","w":73},"\u0136":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259xm131,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":212},"\u0137":{"d":"27,-265r25,0r0,151r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-265xm118,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":180},"\u0138":{"d":"27,-191r25,0r0,77r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-191","w":180},"\u013b":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm116,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":166},"\u013c":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm63,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":72},"\u0145":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm160,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":266},"\u0146":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm137,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":219},"\u014a":{"d":"259,-128v0,101,-102,183,-166,101r18,-16v12,16,28,25,47,25v49,0,74,-58,74,-112v0,-59,-39,-112,-94,-111v-35,0,-64,22,-81,44r0,197r-26,0r0,-259r26,0r0,32v23,-25,52,-38,85,-38v71,-1,117,64,117,137","w":279},"\u014b":{"d":"52,-157v46,-69,142,-44,142,59r0,127v1,45,-27,54,-60,40r0,-22v20,11,40,3,36,-25v-8,-74,28,-195,-51,-195v-78,0,-67,90,-67,173r-25,0r0,-191r25,0r0,34","w":219},"\u014c":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm96,-312r121,0r0,21r-121,0r0,-21","w":312},"\u014d":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm58,-260r121,0r0,21r-121,0r0,-21","w":235},"\u014e":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm118,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":312},"\u014f":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm79,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":235},"\u0156":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45xm133,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":218},"\u0157":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169xm78,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":108},"\u015c":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm78,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":179},"\u015d":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm59,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":139},"\u0166":{"d":"90,-137r49,0r0,25r-49,0r0,112r-26,0r0,-112r-50,0r0,-25r50,0r0,-96r-58,0r0,-26r142,0r0,26r-58,0r0,96","w":153},"\u0167":{"d":"74,-107r43,0r0,21r-43,0r0,86r-25,0r0,-86r-38,0r0,-21r38,0r0,-63r-34,0r0,-21r34,0r0,-71r25,0r0,71r39,0r0,21r-39,0r0,63","w":121},"\u0168":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm55,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":235},"\u0169":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm45,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":218},"\u016a":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm57,-312r121,0r0,21r-121,0r0,-21","w":235},"\u016b":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm49,-260r121,0r0,21r-121,0r0,-21","w":218},"\u016c":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm79,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":235},"\u016d":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm71,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":218},"\u0172":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm153,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":235},"\u0173":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm139,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":218},"\u0174":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm161,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":345},"\u0175":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm138,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":299},"\u0176":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm95,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":213},"\u0177":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm85,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":193},"\u017f":{"d":"24,-211v-7,-55,23,-66,67,-54r0,24v-22,-12,-43,-7,-43,24r0,217r-24,0r0,-211","w":72},"\u01fa":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm96,-283v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm153,-283v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19xm140,-382r38,0r-52,54r-24,0","w":266},"\u01fb":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm85,-253v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm142,-253v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19xm131,-351r38,0r-52,54r-24,0","w":245},"\u01fc":{"d":"0,0r167,-259r160,0r0,27r-122,0r0,79r122,0r0,26r-122,0r0,102r122,0r0,25r-148,0r0,-85r-94,0r-55,85r-30,0xm102,-109r77,0r0,-120xm228,-333r38,0r-52,54r-24,0","w":357},"\u01fd":{"d":"21,-96v0,-96,129,-134,175,-60r0,-35r23,0r0,34v28,-47,109,-51,148,-10v18,20,28,44,28,74r-172,0v3,43,30,75,75,75v37,0,56,-17,70,-45r21,11v-20,62,-136,78,-170,18r0,34r-23,0r0,-35v-19,25,-40,39,-76,40v-53,1,-99,-47,-99,-101xm368,-114v-5,-60,-95,-77,-129,-31v-7,8,-12,19,-15,31r144,0xm197,-95v-1,-46,-30,-77,-76,-77v-43,0,-74,32,-75,76v-1,42,35,78,76,78v42,0,75,-35,75,-77xm220,-281r38,0r-52,54r-24,0","w":416},"\u01fe":{"d":"61,-31v-85,-79,-26,-234,95,-234v30,0,57,9,82,26r26,-31r18,16r-26,31v22,22,34,53,36,94v4,104,-123,175,-212,113r-29,34r-19,-15xm221,-219v-72,-52,-174,0,-174,91v0,30,10,56,31,77xm97,-36v74,45,172,-7,169,-93v0,-29,-10,-54,-28,-74xm168,-333r38,0r-52,54r-24,0","w":312},"\u01ff":{"d":"49,-22v-65,-57,-19,-174,68,-174v24,0,44,7,62,21r21,-24r16,13r-22,26v55,62,5,165,-76,165v-19,0,-37,-4,-53,-14r-20,24r-16,-13xm163,-156v-57,-46,-145,16,-114,91v4,10,9,18,16,25xm81,-28v70,41,144,-47,96,-113xm128,-281r38,0r-52,54r-24,0","w":235},"\u0384":{"d":"83,-281r-5,60r-20,0r-5,-60r30,0","w":136},"\u0385":{"d":"83,-281r-5,60r-20,0r-5,-60r30,0xm127,-243v0,8,-8,16,-16,16v-8,0,-15,-8,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15xm40,-243v0,8,-7,16,-15,16v-8,0,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15","w":136},"\u0386":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm74,-265r-5,60r-20,0r-5,-60r30,0","w":266},"\u0387":{"d":"54,-196v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":99},"\u0388":{"d":"48,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm13,-265r-5,60r-20,0r-5,-60r30,0","w":208},"\u0389":{"d":"47,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259xm13,-265r-5,60r-20,0r-5,-60r30,0","w":261},"\u038a":{"d":"44,-259r26,0r0,259r-26,0r0,-259xm13,-265r-5,60r-20,0r-5,-60r30,0","w":97},"\u038c":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm13,-265r-5,60r-20,0r-5,-60r30,0","w":312},"\u038e":{"d":"30,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm13,-265r-5,60r-20,0r-5,-60r30,0","w":232},"\u038f":{"d":"278,-145v-2,66,-31,86,-84,121r76,0r0,24r-99,0r0,-34v53,-38,77,-49,81,-110v3,-58,-43,-96,-101,-96v-58,0,-104,38,-101,96v3,61,27,72,80,110r0,34r-99,0r0,-24r76,0v-53,-36,-81,-54,-84,-121v-3,-72,56,-120,128,-120v72,0,130,49,127,120xm13,-265r-5,60r-20,0r-5,-60r30,0","w":301},"\u0390":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm51,-281r-5,60r-20,0r-5,-60r30,0xm95,-243v0,8,-8,16,-16,16v-8,0,-15,-8,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15xm8,-243v0,8,-7,16,-15,16v-8,0,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15","w":72},"\u0391":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"\u0392":{"d":"187,-74v0,44,-37,75,-84,74r-71,0r0,-259v69,-3,134,0,134,64v0,26,-14,44,-33,54v32,11,54,28,54,67xm139,-195v1,-39,-40,-40,-82,-38r0,83v47,2,80,-5,82,-45xm160,-74v0,-47,-45,-52,-103,-50r0,99v55,2,103,-1,103,-49","w":206},"\u0393":{"d":"161,-233r-104,0r0,233r-26,0r0,-259r130,0r0,26","w":166},"\u0394":{"d":"258,0r-249,0r122,-259r6,0xm218,-25r-84,-179r-85,179r169,0","w":266},"\u0395":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"\u0396":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0","w":172},"\u0397":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"\u0398":{"d":"292,-129v0,74,-61,136,-135,136v-75,0,-137,-61,-137,-135v0,-74,62,-137,135,-137v76,0,137,60,137,136xm266,-129v0,-63,-53,-111,-110,-111v-58,-1,-109,51,-109,112v0,60,48,109,109,109v61,0,110,-49,110,-110xm221,-118r-129,0r0,-25r129,0r0,25","w":312},"\u0399":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"\u039a":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"\u039b":{"d":"241,0r-28,0r-86,-200r-87,200r-28,0r113,-259r5,0","w":252},"\u039c":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"\u039d":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0","w":266},"\u039e":{"d":"171,-233r-151,0r0,-26r151,0r0,26xm171,-127r-151,0r0,-25r151,0r0,25xm171,0r-151,0r0,-25r151,0r0,25","w":191},"\u039f":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110","w":312},"\u03a0":{"d":"215,0r-26,0r0,-234r-132,0r0,234r-26,0r0,-259r184,0r0,259","w":245},"\u03a1":{"d":"193,-190v-4,67,-55,73,-136,70r0,120r-26,0r0,-259r52,0v74,-3,102,12,110,69xm166,-190v0,-49,-56,-44,-109,-43r0,87v52,2,109,7,109,-44","w":213},"\u03a3":{"d":"163,0r-151,0r72,-129r-71,-130r147,0r0,25r-105,0r58,105r-59,104r109,0r0,25","w":180},"\u03a4":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"\u03a5":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124","w":213},"\u03a6":{"d":"292,-131v0,65,-57,103,-124,106r0,25r-26,0r0,-25v-69,-3,-123,-39,-124,-106v0,-65,56,-103,124,-105r0,-23r26,0r0,23v69,3,124,39,124,105xm168,-50v53,-3,98,-25,97,-81v-1,-53,-42,-78,-97,-82r0,163xm142,-213v-53,4,-99,26,-98,82v1,53,43,78,98,81r0,-163","w":309},"\u03a7":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"\u03a8":{"d":"155,-88v56,-7,79,-26,79,-92r0,-79r26,0r0,90v3,74,-39,101,-105,106r0,63r-26,0r0,-63v-67,-6,-104,-31,-104,-108r0,-88r26,0v4,60,-15,134,29,157v13,7,29,12,49,14r0,-171r26,0r0,171","w":284},"\u03a9":{"d":"278,-145v-2,66,-31,86,-84,121r76,0r0,24r-99,0r0,-34v53,-38,77,-49,81,-110v3,-58,-43,-96,-101,-96v-58,0,-104,38,-101,96v3,61,27,72,80,110r0,34r-99,0r0,-24r76,0v-53,-36,-81,-54,-84,-121v-3,-72,56,-120,128,-120v72,0,130,49,127,120","w":301},"\u03aa":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-16,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm56,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":81},"\u03ab":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm50,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm122,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":213},"\u03ac":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm138,-281r-5,60r-20,0r-5,-60r30,0","w":245},"\u03ad":{"d":"44,-54v-1,44,65,45,86,16r15,18v-35,42,-127,31,-127,-34v0,-24,12,-41,35,-51v-50,-18,-24,-92,29,-92v19,0,38,8,55,22r-14,17v-24,-22,-73,-22,-73,16v0,23,20,34,46,31r0,21v-30,-4,-51,11,-52,36xm91,-281r-5,60r-20,0r-5,-60r30,0","w":152},"\u03ae":{"d":"52,-157v46,-67,142,-45,142,59r0,168r-24,0r0,-161v1,-49,-6,-82,-51,-82v-77,0,-68,89,-67,173r-25,0r0,-191r25,0r0,34xm125,-281r-5,60r-20,0r-5,-60r30,0","w":219},"\u03af":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm51,-281r-5,60r-20,0r-5,-60r30,0","w":72},"\u03b0":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201xm122,-281r-5,60r-20,0r-5,-60r30,0xm166,-243v0,8,-8,16,-16,16v-8,0,-15,-8,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15xm79,-243v0,8,-7,16,-15,16v-8,0,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15","w":214},"\u03b1":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77","w":245},"\u03b2":{"d":"197,-81v4,76,-105,120,-145,52r0,99r-25,0r0,-265v-2,-49,28,-72,71,-75v68,-5,86,95,25,112v42,3,72,34,74,77xm171,-80v-1,-47,-37,-65,-95,-62r0,-20v40,-1,60,-17,60,-48v1,-21,-15,-37,-36,-37v-72,0,-44,101,-48,166v-2,35,26,62,59,63v33,1,62,-29,60,-62","w":214},"\u03b3":{"d":"189,-191r-77,170r0,91r-25,0r0,-92r-78,-169r27,0r63,139r64,-139r26,0","w":199},"\u03b4":{"d":"103,5v-47,0,-85,-38,-85,-85v0,-39,20,-65,60,-79v-55,-32,-23,-111,42,-111v15,0,29,2,42,5r-6,22v-33,-10,-85,-4,-82,32v3,32,17,37,54,49v90,30,70,167,-25,167xm163,-80v1,-32,-28,-62,-60,-62v-32,0,-61,30,-60,62v0,33,26,62,60,62v34,0,60,-29,60,-62","w":205},"\u03b5":{"d":"44,-54v-1,44,65,45,86,16r15,18v-35,42,-127,31,-127,-34v0,-24,12,-41,35,-51v-50,-18,-24,-92,29,-92v19,0,38,8,55,22r-14,17v-24,-22,-73,-22,-73,16v0,23,20,34,46,31r0,21v-30,-4,-51,11,-52,36","w":152},"\u03b6":{"d":"154,-5v35,47,-26,97,-86,76r7,-22v35,13,87,-13,54,-41v-6,-4,-18,-9,-36,-12v-48,-9,-72,-37,-72,-85v0,-76,51,-106,108,-154r-88,0r0,-22r119,0r0,22v-60,56,-114,77,-114,152v0,43,17,57,58,66v27,6,44,11,50,20","w":167},"\u03b7":{"d":"52,-157v46,-67,142,-45,142,59r0,168r-24,0r0,-161v1,-49,-6,-82,-51,-82v-77,0,-68,89,-67,173r-25,0r0,-191r25,0r0,34","w":219},"\u03b8":{"d":"217,-132v0,75,-29,136,-99,137v-70,0,-100,-62,-100,-137v0,-75,32,-137,100,-138v69,0,100,63,99,138xm192,-143v-2,-56,-23,-105,-74,-105v-51,0,-72,50,-74,105r148,0xm44,-122v2,57,22,104,74,104v52,0,72,-47,74,-104r-148,0","w":235},"\u03b9":{"d":"24,-191r25,0r0,191r-25,0r0,-191","w":72},"\u03ba":{"d":"183,0r-35,0r-96,-86r0,86r-25,0r0,-191r25,0r0,77r88,-77r37,0r-105,91","w":180},"\u03bb":{"d":"189,0r-27,0r-63,-147r-66,147r-26,0r78,-177r-38,-88r26,0","w":193},"\u03bc":{"d":"101,-18v76,-1,69,-89,67,-173r24,0r0,191r-24,0r0,-34v-27,40,-86,55,-118,18r0,86r-25,0r0,-261r25,0v5,70,-23,174,51,173","w":219},"\u03bd":{"d":"9,-191r27,0r63,139r64,-139r26,0r-87,191r-5,0","w":199},"\u03be":{"d":"150,-8v42,44,-19,102,-82,79r7,-22v34,12,85,-11,56,-40v-5,-4,-20,-11,-42,-13v-87,-7,-87,-136,-14,-152v-71,-27,-38,-114,37,-114v18,0,34,3,49,7r-6,23v-34,-13,-98,-11,-95,33v2,35,45,48,88,44r0,21v-54,-4,-98,7,-102,57v-5,61,73,58,104,77","w":167},"\u03bf":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77","w":235},"\u03c0":{"d":"233,-170r-39,0r0,170r-25,0r0,-170r-97,0r0,170r-24,0r0,-170r-39,0r0,-21r224,0r0,21","w":241},"\u03c1":{"d":"223,-95v0,91,-127,139,-175,59r0,106r-24,0r0,-160v-2,-59,42,-106,99,-106v55,0,100,46,100,101xm198,-95v0,-41,-34,-77,-75,-77v-41,0,-74,36,-74,77v0,41,33,77,74,77v42,0,75,-34,75,-77","w":241},"\u03c2":{"d":"18,-94v0,-99,137,-140,181,-58r-20,13v-38,-61,-136,-33,-136,43v0,71,88,65,128,87v44,46,-17,102,-81,80r6,-22v35,13,88,-13,55,-41v-6,-4,-20,-9,-41,-12v-61,-10,-92,-39,-92,-90","w":208},"\u03c3":{"d":"18,-95v0,-64,62,-119,132,-96r101,0r0,21r-65,0v65,59,21,175,-68,175v-55,0,-100,-45,-100,-100xm192,-95v0,-41,-33,-77,-74,-77v-41,0,-75,35,-75,77v0,41,34,77,75,77v43,0,74,-36,74,-77","w":258},"\u03c4":{"d":"136,-170r-51,0r0,170r-25,0r0,-170r-51,0r0,-21r127,0r0,21","w":144},"\u03c5":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201","w":214},"\u03c6":{"d":"257,-95v0,61,-46,97,-107,100r0,65r-25,0r0,-66v-86,5,-137,-92,-87,-159v13,-17,32,-28,55,-36r8,23v-38,14,-58,38,-58,73v0,45,27,70,82,75r0,-176v78,-4,132,31,132,101xm150,-172r0,152v81,1,105,-84,60,-130v-14,-15,-35,-21,-60,-22","w":275},"\u03c7":{"d":"166,-191r-66,123r74,138r-28,0r-60,-112r-61,112r-26,0r73,-137r-66,-124r27,0r53,98r53,-98r27,0","w":172},"\u03c8":{"d":"145,-19v52,-6,72,-27,72,-88r0,-84r24,0r0,94v2,70,-39,98,-96,102r0,65r-25,0r0,-65v-63,-6,-96,-31,-96,-104r0,-92r24,0v2,79,-19,172,72,171r0,-171r25,0r0,172","w":264},"\u03c9":{"d":"209,5v-27,0,-50,-17,-55,-40v-5,23,-27,39,-54,40v-85,4,-106,-118,-52,-168v21,-19,44,-31,75,-33r2,24v-48,2,-82,37,-82,86v0,40,19,68,55,68v40,0,46,-45,44,-91r25,0v-2,46,4,90,44,91v36,0,54,-29,54,-68v0,-49,-34,-84,-81,-86r2,-24v58,2,104,48,104,109v0,56,-30,91,-81,92","w":308},"\u03ca":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-20,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm52,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":72},"\u03cb":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201xm51,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm123,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":214},"\u03cc":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm133,-281r-5,60r-20,0r-5,-60r30,0","w":235},"\u03cd":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201xm122,-281r-5,60r-20,0r-5,-60r30,0","w":214},"\u03ce":{"d":"209,5v-27,0,-50,-17,-55,-40v-5,23,-27,39,-54,40v-85,4,-106,-118,-52,-168v21,-19,44,-31,75,-33r2,24v-48,2,-82,37,-82,86v0,40,19,68,55,68v40,0,46,-45,44,-91r25,0v-2,46,4,90,44,91v36,0,54,-29,54,-68v0,-49,-34,-84,-81,-86r2,-24v58,2,104,48,104,109v0,56,-30,91,-81,92xm169,-281r-5,60r-20,0r-5,-60r30,0","w":308},"\u0401":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm51,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm123,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":193},"\u0402":{"d":"195,-69v0,-60,-46,-57,-105,-56r0,125r-27,0r0,-233r-57,0r0,-26r141,0r0,26r-57,0r0,83v80,-4,131,7,131,81v0,66,-61,96,-103,58r16,-18v28,27,61,0,61,-40","w":241},"\u0403":{"d":"57,0r-26,0r0,-259r130,0r0,26r-104,0r0,233xm124,-333r38,0r-52,54r-24,0","w":166},"\u0404":{"d":"21,-131v1,77,57,138,139,138v48,0,86,-18,113,-52r-20,-15v-39,48,-114,56,-165,18v-22,-16,-34,-42,-39,-76r122,0r0,-25r-121,0v3,-97,151,-132,203,-52r20,-16v-22,-31,-63,-54,-113,-54v-76,-2,-140,59,-139,134","w":292},"\u0405":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70","w":179},"\u0406":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"\u0407":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-16,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm56,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":81},"\u0408":{"d":"29,-41v36,34,87,33,87,-44r0,-174r26,0r0,175v15,96,-75,110,-127,63","w":173},"\u0409":{"d":"363,-73v-1,68,-58,76,-133,73r-96,-204r-97,204r-28,0r122,-259r6,0r54,111v84,0,174,-8,172,75xm336,-73v2,-63,-73,-47,-136,-49r46,97v53,1,89,-1,90,-48","w":383},"\u040a":{"d":"355,-77v2,86,-78,78,-166,77r0,-125r-132,0r0,125r-26,0r0,-259r26,0r0,109r132,0r0,-109r26,0r0,109v80,-3,138,1,140,73xm328,-76v-1,-56,-51,-49,-113,-49r0,100v61,0,114,8,113,-51","w":375},"\u040b":{"d":"195,0v-3,-58,17,-133,-50,-125r-55,0r0,125r-26,0r0,-233r-58,0r0,-26r142,0r0,26r-58,0r0,83v79,-3,141,-2,131,85r0,65r-26,0","w":244},"\u040c":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259xm135,-333r38,0r-52,54r-24,0","w":212},"\u040e":{"d":"33,-42v26,33,59,34,73,-8r-94,-208r29,0r78,176r72,-177r28,0r-98,233v-20,47,-81,39,-107,0xm78,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":232},"\u040f":{"d":"105,0r-74,0r0,-259r26,0r0,235r119,0r0,-235r26,0r0,259r-73,0r0,39r-24,0r0,-39","w":233},"\u0410":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"\u0411":{"d":"186,-74v2,43,-37,74,-84,74r-71,0r0,-259r130,0r0,26r-104,0r0,83v77,-3,126,12,129,76xm159,-74v0,-48,-46,-52,-102,-50r0,99v54,3,102,-2,102,-49","w":206},"\u0412":{"d":"187,-74v0,44,-37,75,-84,74r-71,0r0,-259v69,-3,134,0,134,64v0,26,-14,44,-33,54v32,11,54,28,54,67xm139,-195v1,-39,-40,-40,-82,-38r0,83v47,2,80,-5,82,-45xm160,-74v0,-47,-45,-52,-103,-50r0,99v55,2,103,-1,103,-49","w":206},"\u0413":{"d":"57,0r-26,0r0,-259r130,0r0,26r-104,0r0,233","w":166},"\u0414":{"d":"31,39r-26,0r0,-63r21,0r102,-235r9,0r107,235r20,0r0,63r-25,0r0,-39r-208,0r0,39xm56,-24r157,0r-81,-181","w":269},"\u0415":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"\u0416":{"d":"181,-120r0,120r-26,0r0,-120r-8,-7r-106,127r-34,0r123,-143r-113,-116r35,0r103,110r0,-110r26,0r0,110r104,-110r35,0r-114,116r123,143r-34,0r-106,-127","w":336},"\u0417":{"d":"150,-194v0,-51,-67,-62,-96,-24r-17,-15v37,-53,140,-38,140,34v0,28,-12,47,-38,59v34,11,51,34,51,69v0,66,-78,97,-134,66v-14,-8,-27,-21,-39,-40r20,-12v20,28,31,41,67,41v34,0,61,-21,59,-56v-2,-43,-31,-55,-80,-53r0,-22v41,2,68,-13,67,-47","w":209},"\u0418":{"d":"235,0r-27,0r0,-198r-171,198r-5,0r0,-259r25,0r0,202r172,-202r6,0r0,259","w":266},"\u0419":{"d":"235,0r-27,0r0,-198r-171,198r-5,0r0,-259r25,0r0,202r172,-202r6,0r0,259xm95,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":266},"\u041a":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"\u041b":{"d":"241,0r-28,0r-86,-200r-87,200r-28,0r113,-259r5,0","w":252},"\u041c":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"\u041d":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"\u041e":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110","w":312},"\u041f":{"d":"31,-259r184,0r0,259r-26,0r0,-234r-132,0r0,234r-26,0r0,-259","w":245},"\u0420":{"d":"193,-190v-4,67,-55,73,-136,70r0,120r-26,0r0,-259r52,0v74,-3,102,12,110,69xm166,-190v0,-49,-56,-44,-109,-43r0,87v52,2,109,7,109,-44","w":213},"\u0421":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138","w":292},"\u0422":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"\u0423":{"d":"33,-42v26,33,59,34,73,-8r-94,-208r29,0r78,176r72,-177r28,0r-98,233v-20,47,-81,39,-107,0","w":232},"\u0424":{"d":"20,-148v0,-59,49,-83,124,-78r0,-33r26,0r0,33v74,-4,123,17,123,78v0,58,-50,80,-123,74r0,74r-26,0r0,-74v-71,5,-124,-11,-124,-74xm266,-149v0,-46,-44,-55,-96,-52r0,102v51,4,96,-3,96,-50xm47,-149v-1,47,44,54,97,50r0,-102v-51,-3,-97,6,-97,52","w":313},"\u0425":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"\u0426":{"d":"223,0r-192,0r0,-259r26,0r0,235r120,0r0,-235r26,0r0,235r44,0r0,63r-24,0r0,-39","w":254},"\u0427":{"d":"31,-259v-4,71,-1,126,83,112r23,0r0,-112r26,0r0,259r-26,0r0,-122v-82,3,-135,-5,-131,-85r0,-52r25,0","w":194},"\u0428":{"d":"57,-24r111,0r0,-235r26,0r0,235r112,0r0,-235r26,0r0,259r-301,0r0,-259r26,0r0,235","w":362},"\u0429":{"d":"332,-24r44,0r0,63r-24,0r0,-39r-321,0r0,-259r26,0r0,235r111,0r0,-235r26,0r0,235r112,0r0,-235r26,0r0,235","w":383},"\u042a":{"d":"226,-75v1,82,-80,76,-167,75r0,-234r-53,0r0,-25r79,0r0,111v82,-1,140,0,141,73xm199,-73v-1,-56,-51,-50,-114,-49r0,97v62,-1,115,8,114,-48","w":246},"\u042b":{"d":"198,-75v2,82,-80,76,-167,75r0,-259r26,0r0,111v82,-2,139,1,141,73xm171,-73v-1,-56,-51,-50,-114,-49r0,97v62,-1,115,8,114,-48xm228,-259r26,0r0,259r-26,0r0,-259","w":285},"\u042c":{"d":"198,-75v2,82,-80,76,-167,75r0,-259r26,0r0,111v82,-2,139,1,141,73xm171,-73v-1,-56,-51,-50,-114,-49r0,97v62,-1,115,8,114,-48","w":218},"\u042d":{"d":"272,-131v-1,77,-57,138,-139,138v-48,0,-86,-18,-113,-52r20,-15v39,48,114,56,165,18v22,-16,34,-42,39,-76r-122,0r0,-25r121,0v-3,-97,-151,-132,-203,-52r-20,-16v22,-31,63,-54,113,-54v76,-2,140,59,139,134","w":292},"\u042e":{"d":"238,7v-73,-1,-131,-54,-136,-126r-45,0r0,119r-26,0r0,-259r26,0r0,116r45,0v9,-71,63,-120,134,-122v76,-2,138,61,138,136v0,75,-62,137,-136,136xm237,-19v60,0,110,-48,110,-110v0,-61,-51,-111,-110,-111v-58,0,-108,51,-108,112v0,59,51,109,108,109","w":394},"\u042f":{"d":"16,-190v0,50,35,70,90,70r-93,120r32,0r93,-120r14,0r0,120r26,0r0,-259v-84,-2,-162,-5,-162,69xm43,-190v0,-49,56,-44,109,-43r0,88v-53,1,-109,5,-109,-45","w":210},"\u0430":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77","w":245},"\u0431":{"d":"18,-131v0,-126,66,-137,192,-138r0,23v-33,8,-114,1,-137,21v-21,18,-34,52,-34,92v11,-39,40,-62,84,-63v55,-1,100,47,100,101v0,53,-46,102,-100,100v-68,-3,-105,-55,-105,-136xm123,-18v41,0,75,-36,75,-77v0,-40,-36,-77,-75,-77v-39,0,-75,36,-75,77v0,41,34,77,75,77","w":240},"\u0432":{"d":"27,-191v56,-2,116,-3,114,48v0,19,-9,32,-26,39v25,9,38,26,38,51v0,55,-66,56,-126,53r0,-191xm115,-139v0,-32,-25,-33,-63,-31r0,60v36,1,63,2,63,-29xm125,-53v0,-35,-36,-37,-73,-35r0,67v38,1,73,4,73,-32","w":168},"\u0433":{"d":"52,-170r0,170r-25,0r0,-191r97,0r0,21r-72,0","w":129},"\u0434":{"d":"29,-21r74,-170r13,0r73,170r23,0r0,45r-24,0r0,-24r-158,0r0,25r-24,0r0,-46r23,0xm109,-153r-56,132r109,0","w":217},"\u0435":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0","w":233},"\u0436":{"d":"126,-191r24,0r0,84r92,-84r30,0r-90,85r97,106r-32,0r-82,-92r-15,11r0,81r-24,0r0,-81r-14,-11r-83,92r-31,0r96,-106r-89,-85r30,0r91,84r0,-84","w":276},"\u0437":{"d":"111,-54v-1,-27,-22,-39,-52,-36r0,-21v26,2,46,-7,46,-31v0,-38,-49,-38,-73,-16r-14,-17v35,-36,110,-26,111,29v0,20,-9,34,-27,41v59,21,37,110,-29,110v-26,0,-47,-8,-63,-25r15,-18v21,29,86,28,86,-16","w":152},"\u0438":{"d":"52,-191r0,141r142,-141r0,191r-24,0r0,-140r-140,140r-3,0r0,-191r25,0","w":221},"\u0439":{"d":"52,-191r0,141r142,-141r0,191r-24,0r0,-140r-140,140r-3,0r0,-191r25,0xm72,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":221},"\u043a":{"d":"27,-191r25,0r0,80r89,-80r34,0r-97,87r105,104r-35,0r-88,-88r-8,6r0,82r-25,0r0,-191","w":180},"\u043b":{"d":"189,0r-26,0r-64,-139r-63,139r-27,0r88,-191r4,0","w":199},"\u043c":{"d":"235,-191r7,0r65,191r-26,0r-47,-141r-74,141r-4,0r-74,-141r-47,141r-26,0r66,-191r6,0r77,149","w":316},"\u043d":{"d":"163,-92r-111,0r0,92r-25,0r0,-191r25,0r0,76r111,0r0,-76r25,0r0,191r-25,0r0,-92","w":215},"\u043e":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77","w":235},"\u043f":{"d":"27,-191r161,0r0,191r-25,0r0,-168r-111,0r0,168r-25,0r0,-191","w":215},"\u0440":{"d":"129,5v-35,-2,-59,-16,-77,-38r0,103r-24,0r0,-261r24,0r0,35v17,-23,40,-39,76,-40v54,-1,99,47,99,100v0,53,-45,102,-98,101xm202,-95v0,-45,-31,-76,-76,-77v-41,-1,-76,35,-76,77v0,46,33,77,77,77v43,0,75,-34,75,-77","w":245},"\u0441":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99","w":232},"\u0442":{"d":"6,-191r126,0r0,21r-51,0r0,170r-25,0r0,-170r-50,0r0,-21","w":137},"\u0443":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84","w":193},"\u0444":{"d":"18,-94v-9,-88,116,-138,165,-68r0,-103r24,0r0,103v48,-70,174,-19,164,68v9,87,-118,138,-164,65r0,99r-24,0r0,-99v-46,72,-174,21,-165,-65xm272,-173v-41,2,-66,33,-66,82v0,41,28,73,65,73v44,1,76,-36,76,-78v0,-42,-35,-78,-75,-77xm117,-173v-41,-1,-74,36,-74,78v0,42,33,80,76,77v42,-3,65,-28,65,-78v0,-45,-27,-76,-67,-77","w":389},"\u0445":{"d":"6,-191r29,0r51,71r50,-71r30,0r-65,91r73,100r-30,0r-58,-80r-58,80r-29,0r72,-100","w":172},"\u0446":{"d":"206,0r-179,0r0,-191r25,0r0,168r111,0r0,-168r25,0r0,168r41,0r0,53r-23,0r0,-30","w":235},"\u0447":{"d":"36,-191v1,45,-7,90,41,84r36,0r0,-84r24,0r0,191r-24,0r0,-86v-56,4,-104,-2,-101,-57r0,-48r24,0","w":164},"\u0448":{"d":"313,0r-286,0r0,-191r25,0r0,168r106,0r0,-168r25,0r0,168r105,0r0,-168r25,0r0,191","w":340},"\u0449":{"d":"331,0r-304,0r0,-191r25,0r0,168r106,0r0,-168r25,0r0,168r105,0r0,-168r25,0r0,168r42,0r0,53r-24,0r0,-30","w":360},"\u044a":{"d":"175,-57v1,59,-66,61,-130,57r0,-169r-35,0r0,-22r59,0r0,76v60,-4,105,5,106,58xm148,-57v-2,-37,-36,-40,-79,-38r0,74v40,2,81,-2,79,-36","w":186},"\u044b":{"d":"158,-57v1,59,-67,60,-131,57r0,-191r25,0r0,76v60,-4,105,6,106,58xm131,-56v0,-38,-36,-38,-78,-37r0,72v39,2,78,-2,78,-35xm192,-191r24,0r0,191r-24,0r0,-191","w":241},"\u044c":{"d":"158,-57v1,59,-67,60,-131,57r0,-191r25,0r0,76v60,-4,105,6,106,58xm131,-56v0,-38,-36,-38,-78,-37r0,72v39,2,78,-2,78,-35","w":169},"\u044d":{"d":"213,-94v0,-97,-146,-139,-195,-58r20,13v37,-58,143,-33,150,29r-85,0r0,22r85,0v-3,70,-110,95,-150,37r-20,13v16,27,51,42,90,43v58,3,105,-45,105,-99","w":231},"\u044e":{"d":"183,5v-53,0,-95,-41,-99,-92r-32,0r0,87r-24,0r0,-191r24,0r0,80r32,0v7,-47,47,-85,99,-85v55,0,100,47,100,101v0,53,-46,100,-100,100xm183,-18v41,0,75,-36,75,-77v0,-41,-36,-77,-75,-77v-39,0,-76,37,-75,77v0,41,33,77,75,77","w":300},"\u044f":{"d":"19,-138v0,-57,57,-55,114,-53r0,191r-25,0r0,-86r-17,0r-55,86r-27,0r58,-88v-26,-3,-48,-22,-48,-50xm43,-137v1,32,27,31,65,30r0,-63v-37,0,-67,-3,-65,33","w":160},"\u0451":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm61,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm133,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":233},"\u0452":{"d":"125,-173v-79,0,-67,90,-67,173r-25,0r0,-220r-27,0r0,-21r27,0r0,-24r25,0r0,24r84,0r0,21r-84,0r0,63v47,-69,141,-43,142,59r1,127v2,45,-28,54,-61,40r0,-22v30,14,40,-7,36,-47v-6,-70,23,-174,-51,-173","w":225},"\u0453":{"d":"52,-170r0,170r-25,0r0,-191r97,0r0,21r-72,0xm91,-281r38,0r-52,54r-24,0","w":129},"\u0454":{"d":"18,-94v0,-97,146,-139,195,-58r-20,13v-37,-58,-143,-33,-150,29r85,0r0,22r-85,0v3,70,110,95,150,37r20,13v-16,27,-51,42,-90,43v-58,3,-105,-45,-105,-99","w":231},"\u0455":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96","w":139},"\u0456":{"d":"16,-250v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm24,-191r25,0r0,191r-25,0r0,-191","w":72},"\u0457":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-20,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm52,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":72},"\u0458":{"d":"16,-250v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm-11,47v21,10,35,5,35,-25r0,-213r25,0r0,220v4,42,-26,55,-60,40r0,-22","w":73},"\u0459":{"d":"274,-57v0,50,-51,63,-111,57r-65,-146r-64,146r-25,0r88,-191r4,0r36,76v69,-2,137,-4,137,58xm247,-56v0,-45,-54,-37,-101,-37r33,72v37,2,68,-6,68,-35","w":285},"\u045a":{"d":"293,-57v2,59,-66,61,-130,57r0,-92r-111,0r0,92r-25,0r0,-191r25,0r0,76r111,0r0,-76r25,0r0,76v60,-4,103,7,105,58xm266,-55v0,-38,-36,-38,-78,-37r0,71v38,2,78,-1,78,-34","w":304},"\u045b":{"d":"125,-173v-78,1,-67,90,-67,173r-24,0r0,-220r-28,0r0,-21r28,0r0,-24r24,0r0,24r84,0r0,21r-84,0r0,63v47,-69,159,-42,142,59r0,98r-24,0v-6,-69,24,-175,-51,-173","w":225},"\u045c":{"d":"27,-191r25,0r0,80r89,-80r34,0r-97,87r105,104r-35,0r-88,-88r-8,6r0,82r-25,0r0,-191xm114,-281r38,0r-52,54r-24,0","w":180},"\u045e":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm58,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":193},"\u045f":{"d":"95,0r-67,0r0,-191r24,0r0,168r111,0r0,-168r25,0r0,191r-70,0r0,30r-23,0r0,-30","w":215},"\u0490":{"d":"57,0r-26,0r0,-259r84,0r0,-37r25,0r0,63r-83,0r0,233","w":145},"\u0491":{"d":"52,-170r0,170r-25,0r0,-191r68,0r0,-24r24,0r0,45r-67,0","w":128},"\u1e80":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm162,-333r39,54r-25,0r-51,-54r37,0","w":345},"\u1e81":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm139,-281r39,54r-25,0r-51,-54r37,0","w":299},"\u1e82":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm184,-333r38,0r-52,54r-24,0","w":345},"\u1e83":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm161,-281r38,0r-52,54r-24,0","w":299},"\u1e84":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm117,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm189,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":345},"\u1e85":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm93,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm165,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":299},"\u1ef2":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm96,-333r39,54r-25,0r-51,-54r37,0","w":213},"\u1ef3":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm85,-281r39,54r-25,0r-51,-54r37,0","w":193},"\u2015":{"d":"-2,-112r274,0r0,23r-274,0r0,-23","w":270},"\u201b":{"d":"65,-169v-16,-27,-15,-54,-15,-96r32,0r0,48r-16,0v1,13,6,27,13,41","w":126},"\u203e":{"d":"-7,-329r214,0r0,13r-214,0r0,-13","w":199},"\u20a4":{"d":"114,-242v-40,0,-48,36,-32,72r63,0r0,23r-56,0r5,20r51,0r0,22r-46,0v3,18,3,46,-2,59v22,18,38,26,48,26v11,0,18,-13,19,-40r25,0v0,32,-11,66,-40,67v-18,0,-39,-10,-61,-29v-10,19,-24,29,-42,29v-20,0,-36,-12,-36,-34v0,-31,35,-52,64,-33v3,-17,3,-30,-1,-45r-56,0r0,-22r51,0r-6,-20r-45,0r0,-23r39,0v-33,-70,51,-125,100,-77v12,11,17,28,18,49r-24,0v-1,-29,-13,-44,-36,-44xm34,-30v4,21,29,14,34,-6v-13,-11,-32,-12,-34,6","w":199},"\u2116":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm325,-172v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-61,61,-61xm325,-73v21,0,39,-18,39,-38v1,-20,-18,-39,-39,-39v-21,0,-39,19,-39,39v0,20,18,38,39,38xm264,-18r122,0r0,18r-122,0r0,-18","w":395},"\u212e":{"d":"16,-93v0,-86,99,-132,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-55,2,-93,-44,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0","w":216},"\u215b":{"d":"50,7r162,-272r20,0r-163,272r-19,0xm40,-262r32,0r0,133r-19,0r0,-116r-26,0xm240,-136v38,0,62,46,25,63v47,18,23,76,-26,76v-49,0,-72,-58,-25,-76v-38,-18,-13,-63,26,-63xm214,-101v0,26,50,28,50,0v0,-13,-12,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u215c":{"d":"84,-230v-5,-25,-47,-24,-54,3r-19,0v4,-51,91,-49,93,-2v0,10,-5,18,-16,25v47,19,19,78,-29,78v-30,0,-48,-14,-53,-42r19,0v3,35,68,32,68,-1v0,-18,-18,-25,-44,-25r0,-17v16,0,35,-5,35,-19xm59,7r162,-272r19,0r-162,272r-19,0xm240,-136v38,0,62,46,25,63v47,18,23,81,-26,76v-49,5,-72,-58,-25,-76v-39,-18,-12,-63,26,-63xm214,-101v0,26,51,28,50,0v0,-13,-11,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u215d":{"d":"59,7r162,-272r19,0r-162,272r-19,0xm92,-173v-2,-30,-38,-30,-69,-21r15,-68r70,0r0,17r-55,0r-7,31v34,-8,64,11,66,41v3,54,-98,65,-105,10r20,0v5,32,68,23,65,-10xm240,-136v38,-4,62,46,25,63v47,18,23,76,-26,76v-49,0,-72,-58,-25,-76v-39,-18,-12,-67,26,-63xm214,-101v0,26,51,28,50,0v0,-13,-11,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u215e":{"d":"46,7r162,-272r19,0r-162,272r-19,0xm14,-262r102,0r-83,136r-16,-7r68,-112r-71,0r0,-17xm240,-136v38,-4,62,46,25,63v47,18,23,76,-26,76v-49,0,-72,-58,-25,-76v-38,-18,-12,-67,26,-63xm214,-101v0,26,50,28,50,0v0,-13,-12,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u2302":{"d":"27,0r0,-111r81,-92r81,92r0,111r-162,0xm41,-14r134,0r0,-91r-67,-76r-67,76r0,91","w":216},"\u2310":{"d":"20,-180r178,0r0,24r-154,0r0,77r-24,0r0,-101","w":218},"\u2320":{"d":"130,-287v-12,2,-9,10,-9,31r0,347r-26,0r0,-319v-1,-40,18,-74,52,-77v26,-2,32,33,8,35v-14,1,-15,-15,-25,-17","w":216},"\u2321":{"d":"86,72v12,-2,9,-10,9,-31r0,-346r26,0r0,318v1,41,-18,75,-52,78v-25,2,-33,-33,-9,-36v13,-1,17,15,26,17","w":216},"\u2500":{"d":"260,-94r-263,0r0,-31r263,0r0,31"},"\u2502":{"d":"113,109r0,-437r31,0r0,437r-31,0"},"\u250c":{"d":"260,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0"},"\u2510":{"d":"113,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203"},"\u2514":{"d":"113,-94r0,-234r31,0r0,203r116,0r0,31r-147,0"},"\u2518":{"d":"144,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234"},"\u251c":{"d":"113,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0"},"\u2524":{"d":"113,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0"},"\u252c":{"d":"113,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203"},"\u2534":{"d":"260,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31"},"\u253c":{"d":"113,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203"},"\u2550":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31"},"\u2551":{"d":"146,109r0,-437r31,0r0,437r-31,0xm80,109r0,-437r30,0r0,437r-30,0"},"\u2552":{"d":"113,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0"},"\u2553":{"d":"80,109r0,-234r180,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-30,0"},"\u2554":{"d":"110,109r-30,0r0,-267r180,0r0,31r-150,0r0,236xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0"},"\u2555":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169"},"\u2556":{"d":"79,109r0,-203r-82,0r0,-31r180,0r0,234r-31,0r0,-203r-36,0r0,203r-31,0"},"\u2557":{"d":"146,109r0,-236r-149,0r0,-31r180,0r0,267r-31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169"},"\u2558":{"d":"113,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0"},"\u2559":{"d":"260,-94r-180,0r0,-234r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31"},"\u255a":{"d":"110,-328r0,237r150,0r0,31r-180,0r0,-268r30,0xm177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170"},"\u255b":{"d":"144,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268"},"\u255c":{"d":"177,-94r-180,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,234"},"\u255d":{"d":"146,-328r31,0r0,268r-180,0r0,-31r149,0r0,-237xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0"},"\u255e":{"d":"113,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0"},"\u255f":{"d":"146,109r0,-437r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0xm80,109r0,-437r30,0r0,437r-30,0"},"\u2560":{"d":"80,109r0,-437r30,0r0,437r-30,0xm146,-127r0,-201r31,0r0,170r83,0r0,31r-114,0xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0"},"\u2561":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169"},"\u2562":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,437r-31,0xm146,109r0,-437r31,0r0,437r-31,0"},"\u2563":{"d":"146,109r0,-437r31,0r0,437r-31,0xm110,-328r0,201r-113,0r0,-31r82,0r0,-170r31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169"},"\u2564":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm113,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169"},"\u2565":{"d":"79,109r0,-203r-82,0r0,-31r263,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-31,0"},"\u2566":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0"},"\u2567":{"d":"260,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31"},"\u2568":{"d":"260,-94r-263,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31"},"\u2569":{"d":"110,-127r-113,0r0,-31r82,0r0,-170r31,0r0,201xm260,-127r-114,0r0,-201r31,0r0,170r83,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31"},"\u256a":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0r0,-169"},"\u256b":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0r0,-203r-36,0r0,203r-31,0"},"\u256c":{"d":"177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0"},"\u2580":{"d":"260,-109r-263,0r0,-219r263,0r0,219"},"\u2584":{"d":"260,109r-263,0r0,-218r263,0r0,218"},"\u2588":{"d":"-3,109r0,-437r263,0r0,437r-263,0"},"\u258c":{"d":"-3,109r0,-437r131,0r0,437r-131,0"},"\u2590":{"d":"128,109r0,-437r132,0r0,437r-132,0"},"\u2591":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm63,-284r22,0r0,22r-22,0r0,-22xm150,-284r22,0r0,22r-22,0r0,-22xm238,-284r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm238,-196r22,0r0,22r-22,0r0,-22xm150,-196r22,0r0,22r-22,0r0,-22xm63,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-109r22,0r0,22r-22,0r0,-22xm150,-109r22,0r0,22r-22,0r0,-22xm63,-109r22,0r0,22r-22,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm63,-21r22,0r0,22r-22,0r0,-22xm150,-21r22,0r0,22r-22,0r0,-22xm238,-21r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm63,67r22,0r0,22r-22,0r0,-22xm150,67r22,0r0,22r-22,0r0,-22xm238,67r22,0r0,22r-22,0r0,-22"},"\u2592":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm63,-328r21,0r0,22r-21,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm150,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm238,-328r22,0r0,22r-22,0r0,-22xm-3,-284r22,0r0,22r-22,0r0,-22xm41,-284r22,0r0,22r-22,0r0,-22xm84,-284r22,0r0,22r-22,0r0,-22xm128,-284r22,0r0,22r-22,0r0,-22xm172,-284r22,0r0,22r-22,0r0,-22xm216,-284r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm63,-240r21,0r0,22r-21,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm150,-240r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm238,-240r22,0r0,22r-22,0r0,-22xm-3,-196r22,0r0,22r-22,0r0,-22xm41,-196r22,0r0,22r-22,0r0,-22xm84,-196r22,0r0,22r-22,0r0,-22xm128,-196r22,0r0,22r-22,0r0,-22xm172,-196r22,0r0,22r-22,0r0,-22xm216,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm63,-152r21,0r0,22r-21,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm150,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-152r22,0r0,22r-22,0r0,-22xm-3,-109r22,0r0,22r-22,0r0,-22xm84,-109r22,0r0,22r-22,0r0,-22xm128,-109r22,0r0,22r-22,0r0,-22xm172,-109r22,0r0,22r-22,0r0,-22xm216,-109r22,0r0,22r-22,0r0,-22xm41,-109r22,0r0,22r-22,0r0,-22xm238,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm150,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm63,-65r21,0r0,22r-21,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm-3,-21r22,0r0,22r-22,0r0,-22xm41,-21r22,0r0,22r-22,0r0,-22xm84,-21r22,0r0,22r-22,0r0,-22xm128,-21r22,0r0,22r-22,0r0,-22xm172,-21r22,0r0,22r-22,0r0,-22xm216,-21r22,0r0,22r-22,0r0,-22xm238,23r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm150,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm63,23r21,0r0,22r-21,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm-3,67r22,0r0,22r-22,0r0,-22xm41,67r22,0r0,22r-22,0r0,-22xm84,67r22,0r0,22r-22,0r0,-22xm128,67r22,0r0,22r-22,0r0,-22xm172,67r22,0r0,22r-22,0r0,-22xm216,67r22,0r0,22r-22,0r0,-22"},"\u2593":{"d":"263,-262r0,66r-22,0r0,22r22,0r0,65r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,21r-263,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-66r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r21,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,44r-22,0r0,22r22,0xm22,-284r0,22r22,0r0,-22r-22,0xm66,-284r0,22r22,0r0,-22r-22,0xm110,-284r0,22r21,0r0,-22r-21,0xm153,-284r0,22r22,0r0,-22r-22,0xm197,-284r0,22r22,0r0,-22r-22,0xm241,-240r-22,0r0,22r22,0r0,-22xm197,-240r-22,0r0,22r22,0r0,-22xm153,-240r-22,0r0,22r22,0r0,-22xm110,-240r-22,0r0,22r22,0r0,-22xm66,-240r-22,0r0,22r22,0r0,-22xm22,-196r0,22r22,0r0,-22r-22,0xm66,-196r0,22r22,0r0,-22r-22,0xm110,-196r0,22r21,0r0,-22r-21,0xm153,-196r0,22r22,0r0,-22r-22,0xm197,-196r0,22r22,0r0,-22r-22,0xm66,-152r-22,0r0,22r22,0r0,-22xm88,-152r0,22r22,0r0,-22r-22,0xm131,-152r0,22r22,0r0,-22r-22,0xm175,-152r0,22r22,0r0,-22r-22,0xm219,-152r0,22r22,0r0,-22r-22,0xm22,-109r0,22r22,0r0,-22r-22,0xm110,-109r0,22r21,0r0,-22r-21,0xm88,-87r0,-22r-22,0r0,22r22,0xm153,-109r0,22r22,0r0,-22r-22,0xm197,-109r0,22r22,0r0,-22r-22,0xm241,-43r0,-22r-22,0r0,22r22,0xm197,-43r0,-22r-22,0r0,22r22,0xm153,-43r0,-22r-22,0r0,22r22,0xm110,-43r0,-22r-22,0r0,22r22,0xm66,-43r0,-22r-22,0r0,22r22,0xm22,-21r0,22r22,0r0,-22r-22,0xm66,-21r0,22r22,0r0,-22r-22,0xm110,-21r0,22r21,0r0,-22r-21,0xm153,-21r0,22r22,0r0,-22r-22,0xm197,-21r0,22r22,0r0,-22r-22,0xm241,45r0,-22r-22,0r0,22r22,0xm197,45r0,-22r-22,0r0,22r22,0xm153,45r0,-22r-22,0r0,22r22,0xm110,45r0,-22r-22,0r0,22r22,0xm66,45r0,-22r-22,0r0,22r22,0xm22,67r0,22r22,0r0,-22r-22,0xm66,67r0,22r22,0r0,-22r-22,0xm110,67r0,22r21,0r0,-22r-21,0xm153,67r0,22r22,0r0,-22r-22,0xm197,67r0,22r22,0r0,-22r-22,0","w":262},"\u25a0":{"d":"26,-166r166,0r0,166r-166,0r0,-166","w":217},"\u25ac":{"d":"0,-124r360,0r0,68r-360,0r0,-68","w":360},"\u25b2":{"d":"53,0r125,-249r125,249r-250,0","w":356},"\u25ba":{"d":"51,-249r255,127r-255,127r0,-254","w":356},"\u25bc":{"d":"303,-244r-125,249r-125,-249r250,0","w":356},"\u25c4":{"d":"306,-249r0,254r-255,-127","w":356},"\u25cb":{"d":"108,-179v41,0,77,35,77,77v0,42,-36,78,-77,78v-41,0,-77,-36,-77,-78v0,-42,36,-77,77,-77xm108,-37v34,0,64,-31,64,-65v0,-34,-30,-64,-64,-64v-34,0,-64,31,-64,64v0,33,30,65,64,65","w":216},"\u25d8":{"d":"22,0r0,-172r172,0r0,172r-172,0xm108,-51v19,0,35,-16,35,-35v0,-19,-16,-36,-35,-36v-19,0,-36,17,-36,36v0,19,17,35,36,35","w":216},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm108,-24v41,0,78,-36,78,-77v0,-41,-37,-78,-78,-78v-41,0,-77,36,-77,78v0,42,36,77,77,77xm108,-166v34,0,64,30,64,65v0,34,-30,64,-64,64v-34,0,-64,-30,-64,-64v0,-34,30,-65,64,-65","w":216},"\u263a":{"d":"184,-203v60,0,112,52,112,112v0,60,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm184,5v50,0,96,-46,96,-96v0,-50,-45,-96,-96,-96v-51,0,-96,45,-96,96v0,51,46,96,96,96xm141,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm227,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm132,-55r11,-6v16,33,66,34,81,0r12,6v-22,46,-82,45,-104,0","w":367},"\u263b":{"d":"189,-203v60,0,112,51,112,112v0,61,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm146,-100v8,0,15,-6,15,-14v0,-8,-7,-14,-15,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14xm232,-100v8,0,15,-7,15,-14v0,-7,-7,-14,-15,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm138,-55v21,46,81,45,103,0r-11,-6v-16,33,-66,34,-81,0","w":378},"\u263c":{"d":"159,-285r13,0r0,59v22,1,42,9,61,25r51,-50r9,9r-50,51v16,21,25,42,25,63r59,0r0,12r-59,0v-2,22,-10,42,-25,61r50,51r-10,9r-50,-49v-20,15,-40,22,-61,24r0,59r-13,0r0,-59v-24,-3,-44,-11,-61,-24r-52,49r-9,-9r50,-51v-15,-18,-23,-39,-25,-62r-59,0r0,-12r59,0v2,-23,10,-43,25,-61r-50,-51r9,-10r51,50v21,-15,42,-24,62,-25r0,-59xm165,-33v48,0,90,-42,90,-90v0,-48,-42,-90,-90,-90v-48,0,-90,42,-90,90v0,48,42,90,90,90","w":330},"\u2640":{"d":"183,-168v0,45,-36,81,-79,83r0,65r73,0r0,9r-73,0r0,70r-10,0r0,-70r-73,0r0,-9r73,0r0,-65v-42,-2,-78,-37,-78,-83v0,-45,38,-84,83,-84v45,0,84,39,84,84xm99,-93v40,0,75,-35,75,-75v0,-40,-35,-75,-75,-75v-40,0,-75,35,-75,75v0,40,35,75,75,75","w":198},"\u2642":{"d":"96,-191v49,-16,53,-20,99,-50r5,2v4,42,13,78,28,108r-4,3v-17,-22,-30,-46,-39,-73r-52,111v24,9,51,42,51,76v0,44,-38,74,-81,74v-46,0,-85,-37,-85,-81v0,-52,53,-94,107,-72r51,-112v-25,11,-52,16,-80,18r0,-4xm162,-21v0,-38,-33,-70,-69,-70v-36,-1,-68,32,-68,67v-1,38,32,70,69,70v37,0,68,-31,68,-67","w":240},"\u2660":{"d":"95,-82v-15,46,-81,43,-84,-5v0,-18,11,-36,33,-54v31,-25,48,-50,52,-75v5,54,79,73,85,128v2,21,-18,41,-38,40v-18,0,-33,-12,-45,-34v-1,51,22,72,67,75r1,7r-140,0r2,-7v44,0,69,-29,67,-75","w":191},"\u2663":{"d":"179,-48v-28,-2,-44,-17,-58,-42v2,55,22,76,71,84r2,6r-149,0r1,-6v50,-7,70,-31,71,-84v-10,24,-30,41,-58,42v-25,1,-48,-22,-48,-49v0,-37,36,-64,71,-40v-27,-33,-4,-79,36,-79v41,-1,66,48,37,79v36,-23,71,2,72,39v1,27,-21,51,-48,50","w":238},"\u2665":{"d":"107,-172v4,-56,97,-57,95,0v-1,36,-14,47,-37,78v-32,43,-53,75,-58,98v-12,-52,-61,-94,-90,-146v-18,-34,3,-74,39,-74v24,0,41,15,51,44","w":212},"\u2666":{"d":"91,-216v23,38,50,74,81,110v-16,15,-70,86,-81,110v-12,-22,-38,-59,-80,-110v38,-45,64,-81,80,-110","w":182},"\u266a":{"d":"5,25v0,-65,101,-89,163,-54r-5,-241r10,0v25,14,96,77,100,105v0,4,-6,12,-10,12v-23,-15,-61,-60,-88,-74r4,242v0,80,-174,94,-174,10","w":277},"\u266b":{"d":"53,33v0,-43,53,-65,93,-42r0,-201r164,-51r0,228v2,48,-21,67,-63,69v-31,1,-49,-18,-50,-46v0,-43,52,-65,93,-42r0,-149r-123,38r0,172v1,45,-22,69,-65,70v-28,0,-49,-18,-49,-46","w":360},"\uf005":{"d":"85,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":116},"\u20ac":{"d":"195,4v-83,12,-144,-32,-161,-95r-26,0r6,-24r16,0v-1,-14,-1,-17,0,-30r-22,0r7,-25r20,0v18,-61,81,-107,162,-92r-7,24v-61,-10,-109,23,-127,68r113,0r-7,25r-112,0v-1,10,-2,19,0,30r104,0r-6,24r-93,0v16,48,69,83,133,70r0,25","w":199}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc /
 * Type Solutions Inc. 1990-91 All Rights Reserved
 * 
 * Trademark:
 * Century Gothic is a trademark of The Monotype Corporation plc.
 * 
 * Description:
 * A design based on Monotype 20th Century, which was drawn by Sol Hess between
 * 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has
 * an enlarged 'x' height and has been modified to ensure satisfactory output from
 * modern digital systems. The design is influenced by the geometric style sans
 * serif faces which were popular during the 1920's and 30's. Useful for headlines
 * and general display work and for small quantities of text, particularly in
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Century Gothic","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-41 -404 454 110","underline-thickness":"32.3438","underline-position":"-16.875","unicode-range":"U+0020-U+F108"},"glyphs":{" ":{"w":100},"!":{"d":"26,-265r49,0r0,189r-49,0r0,-189xm20,-25v0,-15,15,-30,30,-30v16,0,31,14,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30","w":100},"\"":{"d":"115,-176r-28,0r-9,-89r47,0xm43,-176r-28,0r-10,-89r47,0","w":129},"#":{"d":"195,-119r0,35r-40,0r-13,84r-35,0r12,-84r-34,0r-12,84r-35,0r12,-84r-39,0r0,-35r45,0r5,-33r-39,0r0,-35r44,0r11,-78r35,0r-11,78r33,0r12,-78r35,0r-11,78r35,0r0,35r-40,0r-5,33r35,0xm129,-152r-34,0r-4,33r33,0"},"$":{"d":"54,-144v-54,-33,-26,-124,39,-121r0,-18r33,0r0,20v27,7,37,15,57,34r-34,33v-15,-16,-31,-24,-46,-24v-22,-1,-42,25,-23,40v41,33,117,36,113,107v-2,44,-25,72,-67,79r0,47r-33,0r0,-46v-38,-5,-59,-21,-81,-44r34,-35v21,23,42,35,62,35v27,1,49,-34,30,-57v-15,-18,-75,-39,-84,-50","w":201},"%":{"d":"67,-265v55,9,125,21,171,-5r35,0r-205,288r-35,0r175,-247v-27,5,-52,6,-81,4v16,43,-17,83,-58,83v-34,0,-63,-28,-62,-61v0,-36,27,-59,60,-62xm99,-203v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,14,29,30,29v16,0,30,-14,30,-29xm179,-55v0,-33,29,-62,61,-62v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-61,-29,-61,-62xm270,-55v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30","w":309},"&":{"d":"164,-192v0,36,-16,39,-42,68v21,25,35,40,41,46v4,-3,14,-11,29,-24r29,34r-27,24r42,44r-60,0r-17,-18v-54,39,-142,34,-142,-38v0,-38,19,-54,46,-76v-44,-47,-26,-113,38,-116v35,-2,63,26,63,56xm102,-203v-22,3,-19,27,-4,44v13,-11,20,-20,20,-29v0,-8,-7,-16,-16,-15xm63,-58v7,28,39,23,64,6v-9,-9,-22,-23,-38,-44v-17,14,-26,27,-26,38","w":244},"'":{"d":"53,-176r-27,0r-10,-89r47,0","w":79},"(":{"d":"67,75v-66,-87,-68,-260,0,-345r61,0v-39,44,-62,94,-62,171v0,81,21,123,62,174r-61,0","w":136},")":{"d":"70,-270v66,87,68,260,0,345r-61,0v39,-45,62,-92,62,-171v0,-81,-21,-123,-62,-174r61,0","w":136},"*":{"d":"58,-265r45,0r-14,53r40,-38r20,39r-53,14r53,15r-23,38r-38,-38r13,53r-43,0r14,-53r-39,38r-24,-38r54,-15r-54,-15r24,-39r39,39","w":158},"+":{"d":"86,-151r0,-66r44,0r0,66r66,0r0,44r-66,0r0,66r-44,0r0,-66r-66,0r0,-44r66,0"},",":{"d":"47,-49r35,18r-44,74r-24,-12","w":100},"-":{"d":"31,-118r89,0r0,45r-89,0r0,-45","w":151},"\u00ad":{"d":"31,-118r89,0r0,45r-89,0r0,-45","w":151},".":{"d":"23,-23v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28","w":100},"\/":{"d":"8,46r116,-312r34,0r-116,312r-34,0","w":165},"0":{"d":"10,-127v0,-83,22,-138,90,-138v72,0,92,56,92,136v0,80,-19,136,-91,136v-71,0,-91,-53,-91,-134xm101,-39v55,5,48,-125,30,-160v-7,-14,-18,-19,-30,-19v-40,0,-42,42,-42,92v0,52,7,84,42,87","w":201},"1":{"d":"59,-259r74,0r0,259r-49,0r0,-212r-53,0","w":201},"2":{"d":"100,-219v-23,0,-37,20,-37,44r-48,0v1,-53,36,-90,89,-90v66,-1,99,67,68,126v-14,26,-51,67,-77,93r92,0r0,46r-179,0r0,-24v41,-51,116,-90,128,-161v3,-19,-17,-35,-36,-34","w":201},"3":{"d":"126,-193v2,-35,-53,-29,-58,-2r-47,0v4,-41,38,-70,80,-70v40,0,75,30,75,68v0,27,-16,45,-37,55v93,27,43,153,-41,149v-51,-2,-85,-35,-87,-85r48,0v4,23,16,40,42,39v21,0,41,-17,40,-38v-2,-27,-27,-43,-60,-42r0,-42v26,-2,43,-10,45,-32","w":201},"4":{"d":"119,-265r49,0r0,166r23,0r0,46r-23,0r0,53r-48,0r0,-53r-113,0r0,-46xm120,-99r0,-86r-59,86r59,0","w":201},"5":{"d":"137,-81v0,-39,-48,-55,-68,-25r-40,-9r31,-144r121,0r0,46r-84,0r-11,47v54,-14,99,30,99,83v0,72,-89,118,-145,71v-16,-13,-27,-30,-32,-52r52,0v13,39,77,28,77,-17","w":201},"6":{"d":"99,7v-68,0,-107,-85,-61,-142r66,-130r42,21r-45,88v45,-2,79,38,79,82v0,43,-38,81,-81,81xm132,-75v0,-19,-14,-35,-34,-35v-18,0,-32,16,-32,35v0,18,15,35,32,35v18,0,35,-16,34,-35","w":201},"7":{"d":"22,-259r169,0r0,26r-116,240r-42,-21r97,-198r-108,0r0,-47","w":201},"8":{"d":"101,-265v70,-6,101,85,53,125v22,14,37,36,37,67v0,50,-35,80,-90,80v-92,0,-116,-109,-54,-147v-47,-39,-18,-133,54,-125xm129,-189v0,-17,-12,-29,-30,-29v-16,0,-27,12,-27,29v0,15,13,29,28,29v17,0,29,-12,29,-29xm142,-76v0,-22,-19,-38,-41,-38v-22,0,-42,16,-42,37v0,21,20,37,42,37v24,0,40,-14,41,-36","w":201},"9":{"d":"102,-265v70,0,96,75,62,141r-67,131r-42,-21r46,-88v-44,1,-79,-38,-79,-82v0,-44,37,-81,80,-81xm70,-184v0,19,13,35,33,35v19,0,33,-17,33,-35v1,-18,-15,-35,-33,-35v-18,0,-33,17,-33,35","w":201},":":{"d":"23,-169v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28xm23,-23v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28","w":100},";":{"d":"23,-169v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28xm48,-49r33,18r-43,74r-24,-12","w":100},"\u037e":{"d":"23,-169v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28xm48,-49r33,18r-43,74r-24,-12","w":100},"<":{"d":"196,-64r0,44r-176,-90r0,-39r176,-89r0,44r-125,65"},"=":{"d":"20,-189r176,0r0,44r-176,0r0,-44xm20,-114r176,0r0,44r-176,0r0,-44"},">":{"d":"20,-194r0,-44r176,89r0,39r-176,90r0,-44r126,-65"},"?":{"d":"101,-226v-20,1,-38,13,-37,34r-46,0v-1,-47,37,-78,85,-78v48,0,78,28,80,72v2,59,-67,59,-63,123r-47,0v-9,-53,37,-83,58,-110v14,-19,-5,-42,-30,-41xm67,-25v0,-16,14,-30,30,-30v18,0,31,14,31,30v1,15,-15,30,-30,30v-16,0,-31,-14,-31,-30","w":201},"@":{"d":"27,-134v-6,99,127,148,189,81r33,0v-28,36,-53,58,-109,58v-81,0,-139,-58,-139,-138v0,-80,57,-136,139,-138v65,-2,125,52,125,113v0,59,-40,98,-90,104v-13,2,-22,-5,-22,-18v-34,39,-101,5,-96,-48v-8,-62,80,-116,118,-61r4,-19r35,0r-20,115v0,3,3,6,7,6v24,-6,40,-37,40,-69v-2,-60,-42,-97,-102,-97v-67,0,-108,45,-112,111xm101,-124v0,18,11,32,29,32v38,0,50,-72,7,-73v-20,-1,-37,20,-36,41","w":266},"A":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"B":{"d":"191,-75v0,49,-33,76,-89,75r-72,0r0,-259v75,-2,142,1,142,67v0,24,-10,38,-26,50v28,12,45,32,45,67xm125,-185v1,-23,-20,-29,-46,-27r0,55v26,1,46,-5,46,-28xm143,-77v0,-30,-27,-38,-64,-36r0,66v35,0,64,-1,64,-30","w":208},"C":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137","w":280},"D":{"d":"235,-126v0,87,-42,132,-146,126r-59,0r0,-259r58,0v102,-4,147,44,147,133xm185,-127v0,-61,-36,-89,-106,-84r0,163v71,6,106,-16,106,-79","w":252},"E":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"F":{"d":"30,-259r129,0r0,48r-80,0r0,47r80,0r0,48r-80,0r0,116r-49,0r0,-259","w":172},"G":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138","w":302},"H":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"I":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"J":{"d":"78,-42v16,0,16,-13,16,-36r0,-181r49,0r0,172v16,104,-91,118,-136,56r35,-33v12,13,18,22,36,22","w":172},"K":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"L":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259","w":158},"M":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"N":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259","w":266},"O":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88","w":302},"P":{"d":"183,-184v-3,56,-35,77,-104,74r0,110r-50,0r0,-259v82,-3,158,-1,154,75xm135,-184v0,-26,-26,-26,-56,-26r0,52v30,1,56,2,56,-26","w":201},"Q":{"d":"152,-265v110,-5,178,146,99,227r45,58r-58,0r-23,-29v-91,50,-202,-24,-198,-120v3,-79,56,-133,135,-136xm66,-128v0,59,61,105,119,80r-46,-60r58,0r24,30v40,-57,-4,-139,-69,-139v-49,0,-86,40,-86,89","w":302},"R":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26","w":208},"S":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80","w":187},"T":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"U":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111","w":230},"V":{"d":"10,-259r50,0r66,184r65,-184r51,0r-93,259r-48,0","w":252},"W":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0","w":323},"X":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"Y":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112","w":223},"Z":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49","w":180},"[":{"d":"30,-265r77,0r0,45r-29,0r0,245r29,0r0,45r-77,0r0,-335","w":115},"\\":{"d":"190,46r-34,0r-116,-312r34,0","w":230},"]":{"d":"85,70r-77,0r0,-45r29,0r0,-245r-29,0r0,-45r77,0r0,335","w":115},"^":{"d":"87,-259r41,0r69,195r-43,0r-46,-132r-46,132r-43,0"},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"67,-295r42,69r-34,0r-65,-69r57,0","w":151},"a":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"b":{"d":"222,-95v7,79,-97,133,-150,75r0,20r-48,0r0,-265r48,0r0,95v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"c":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100","w":230},"d":{"d":"15,-95v0,-83,98,-134,151,-75r0,-95r47,0r0,265r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"e":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0","w":230},"f":{"d":"99,-227v-16,-4,-31,-7,-32,12r-1,24r31,0r0,41r-31,0r0,150r-48,0r0,-150r-17,0r0,-41r17,0v-9,-73,26,-89,81,-72r0,36","w":100},"g":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55","w":237},"h":{"d":"114,-152v-60,0,-38,90,-42,152r-48,0r0,-265r48,0r0,93v38,-42,122,-26,122,46r0,126r-47,0v-6,-56,20,-152,-33,-152"},"i":{"d":"12,-239v-1,-16,15,-31,31,-31v16,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-30,-15,-31,-31xm19,-191r48,0r0,191r-48,0r0,-191","w":86},"j":{"d":"16,-239v-1,-16,15,-31,31,-31v17,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-31,-14,-31,-31xm-15,30v20,10,38,6,38,-20r0,-201r48,0r0,197v5,59,-35,82,-86,62r0,-38","w":93},"k":{"d":"25,-265r48,0r0,153r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-265","w":208},"l":{"d":"19,-265r48,0r0,265r-48,0r0,-265","w":86},"m":{"d":"113,-153v-58,0,-37,92,-41,153r-48,0r0,-191r48,0r0,22v24,-35,100,-36,116,7v14,-19,34,-33,64,-34v88,-3,61,112,65,196r-48,0v-7,-54,21,-153,-33,-153v-59,0,-37,93,-41,153r-48,0v-6,-56,20,-153,-34,-153","w":338},"n":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152"},"o":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56","w":230},"p":{"d":"222,-95v7,79,-97,133,-150,75r0,90r-48,0r0,-261r48,0r0,21v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"q":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,261r-47,0r0,-90v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"r":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24","w":115},"s":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58","w":158},"t":{"d":"30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71","w":107},"u":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115"},"v":{"d":"4,-191r49,0r48,113r48,-113r49,0r-82,191r-31,0","w":201},"w":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0","w":287},"x":{"d":"7,-191r56,0r37,52r38,-52r55,0r-65,90r73,101r-55,0r-46,-63r-45,63r-55,0r73,-101","w":201},"y":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84","w":208},"z":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40","w":165},"{":{"d":"41,1v0,-46,0,-66,-39,-70r0,-42v35,-2,39,-22,39,-62v0,-70,17,-87,82,-86r0,43v-27,1,-37,-1,-36,25v0,44,-1,86,-33,102v31,22,31,35,32,96v0,30,8,28,37,30r0,42v-62,2,-82,-13,-82,-78","w":122},"|":{"d":"94,-265r28,0r0,335r-28,0r0,-335"},"}":{"d":"82,-180v0,46,-1,66,38,69r0,42v-34,4,-41,22,-39,63v3,70,-17,86,-81,85r0,-42v27,-1,35,0,36,-25v0,-43,0,-88,33,-102v-32,-21,-32,-35,-33,-96v0,-29,-6,-30,-36,-30r0,-43v61,-1,82,15,82,79","w":122},"~":{"d":"59,-119v-19,1,-25,9,-41,20r0,-56v68,-47,120,53,181,-5r0,57v-48,32,-93,-7,-140,-16"},"\u00c4":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm69,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm147,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":266},"\u00c5":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm94,-318v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm147,-318v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":266},"\u00c7":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm125,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":280},"\u00c9":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm108,-347r57,0r-65,69r-34,0","w":187},"\u00d1":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm207,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":266},"\u00d6":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm87,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm165,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":302},"\u00dc":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm51,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u00e1":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm127,-295r57,0r-65,69r-34,0","w":237},"\u00e0":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm110,-295r42,69r-34,0r-65,-69r57,0","w":237},"\u00e2":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm47,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":237},"\u00e4":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm55,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm133,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":237},"\u00e3":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm192,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":237},"\u00e5":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm80,-266v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm133,-266v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":237},"\u00e7":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm100,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":230},"\u00e9":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm124,-295r57,0r-65,69r-34,0","w":230},"\u00e8":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm107,-295r42,69r-34,0r-65,-69r57,0","w":230},"\u00ea":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm43,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u00eb":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm51,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u00ed":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm52,-295r57,0r-65,69r-34,0","w":86},"\u00ec":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm35,-295r42,69r-34,0r-65,-69r57,0","w":86},"\u00ee":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-29,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":86},"\u00ef":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-21,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm57,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":86},"\u00f1":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm182,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17"},"\u00f3":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm124,-295r57,0r-65,69r-34,0","w":230},"\u00f2":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm107,-295r42,69r-34,0r-65,-69r57,0","w":230},"\u00f4":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm43,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u00f6":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm51,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u00f5":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm189,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":230},"\u00fa":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm117,-295r57,0r-65,69r-34,0"},"\u00f9":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm100,-295r42,69r-34,0r-65,-69r57,0"},"\u00fb":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm36,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0"},"\u00fc":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm44,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm122,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25"},"\u2020":{"d":"78,-265r47,0r-9,96r80,-8r0,47r-80,-9r9,209r-47,0r8,-209r-79,9r0,-47r79,8","w":201},"\u00b0":{"d":"72,-265v33,0,61,28,61,60v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-60,61,-60xm72,-164v21,0,40,-19,40,-40v0,-22,-18,-41,-39,-41v-21,-1,-41,19,-41,40v0,21,19,41,40,41","w":143},"\u00a2":{"d":"48,-15v-65,-61,-29,-200,79,-180r17,-38r28,12r-17,37v13,8,23,17,30,28r-39,24v-3,-4,-7,-8,-10,-11r-44,102v23,7,42,1,57,-14r31,30v-22,25,-64,38,-106,25r-20,43r-27,-12xm109,-153v-42,0,-57,52,-40,90","w":201},"\u00a3":{"d":"37,-158v-36,-66,36,-132,105,-98v22,11,36,33,36,63r-50,0v-3,-38,-51,-33,-50,1v0,8,7,25,10,34r60,0r0,44r-47,0v5,28,1,39,-10,69v22,4,52,11,56,-14r45,0v-2,37,-29,66,-67,66v-32,0,-72,-14,-100,-1r-16,-42v10,-4,19,-7,28,-8v13,-21,18,-39,15,-70r-43,0r0,-44r28,0","w":201},"\u00a7":{"d":"54,-161v-47,-32,-18,-109,46,-109v39,0,71,32,73,68r-46,0v-2,-25,-43,-34,-48,-10v17,48,104,51,103,117v0,28,-17,45,-38,54v18,16,28,29,30,57v3,57,-84,76,-121,42v-12,-11,-20,-28,-23,-50r45,0v3,26,48,32,51,5v-23,-47,-107,-50,-107,-119v-1,-26,16,-48,35,-55xm116,-60v35,-13,21,-41,-6,-60r-29,-20v-18,6,-29,29,-13,44v8,8,35,27,48,36","w":201},"\u2022":{"d":"54,-131v0,-28,26,-54,54,-54v28,0,54,26,54,54v0,28,-26,54,-54,54v-28,0,-54,-26,-54,-54"},"\u00b6":{"d":"29,-194v0,-81,79,-74,157,-72r0,20r-15,0r0,313r-24,0r0,-313r-26,0r0,313r-24,0r0,-192v-43,0,-68,-26,-68,-69"},"\u00df":{"d":"153,-79v-1,-29,-21,-44,-51,-45r0,-43v44,7,52,-58,10,-59v-32,6,-40,25,-40,69r0,157r-48,0r0,-157v-2,-74,27,-109,90,-113v41,-2,76,28,75,66v-1,35,-21,52,-54,58v39,7,65,31,66,74v1,56,-53,91,-108,71r0,-45v27,17,61,-3,60,-33"},"\u00ae":{"d":"133,-267v78,0,135,56,135,134v0,78,-57,134,-135,134v-77,0,-134,-57,-134,-134v0,-77,57,-134,134,-134xm133,-27v60,0,105,-43,107,-105v2,-58,-49,-107,-106,-107v-58,0,-110,50,-108,106v2,61,46,106,107,106xm164,-59v-12,-24,8,-64,-28,-57r-26,0r0,57r-32,0r0,-147v52,2,120,-13,116,43v-1,19,-4,24,-17,33v25,5,6,62,24,71r-37,0xm163,-161v0,-24,-31,-15,-53,-17r0,35v23,-1,53,7,53,-18","w":266},"\u00a9":{"d":"133,-267v78,0,135,56,135,134v0,78,-57,134,-135,134v-77,0,-134,-57,-134,-134v0,-77,57,-134,134,-134xm133,-27v61,0,106,-43,107,-106v2,-58,-49,-108,-107,-106v-62,2,-107,45,-107,106v0,62,46,106,107,106xm93,-136v-8,51,67,79,79,28r31,0v-3,29,-31,54,-64,53v-44,0,-76,-35,-76,-80v0,-82,125,-111,140,-26r-31,0v-16,-50,-83,-24,-79,25","w":266},"\u2122":{"d":"335,-259r0,148r-31,0r0,-121r-48,121r-16,0r-47,-121r0,121r-31,0r0,-148r47,0r39,95r40,-95r47,0xm142,-259r0,26r-46,0r0,122r-32,0r0,-122r-46,0r0,-26r124,0","w":360},"\u00b4":{"d":"84,-295r57,0r-65,69r-34,0","w":151},"\u00a8":{"d":"26,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm104,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":180},"\u2260":{"d":"141,-189r46,0r0,44r-65,0r-13,31r78,0r0,44r-97,0r-33,77r-33,0r32,-77r-45,0r0,-44r64,0r13,-31r-77,0r0,-44r96,0r33,-76r34,0","w":197},"\u00c6":{"d":"136,-259r169,0r0,49r-91,0r0,47r91,0r0,47r-91,0r0,68r91,0r0,48r-140,0r0,-53r-79,0r-25,53r-51,0xm165,-102r0,-113r-55,113r55,0","w":323},"\u00d8":{"d":"17,-129v0,-108,124,-174,213,-111r28,-33r22,18r-29,35v79,82,13,227,-99,227v-28,0,-52,-7,-74,-22r-31,35r-22,-19r30,-35v-21,-21,-38,-55,-38,-95xm198,-203v-56,-38,-131,7,-131,75v0,23,7,42,20,57xm109,-53v77,48,167,-52,110,-129","w":302},"\u221e":{"d":"69,-178v21,0,39,14,50,30v16,-23,27,-39,57,-40v34,-1,54,26,54,61v0,35,-20,61,-54,61v-31,-1,-42,-17,-57,-40v-11,17,-28,31,-50,31v-26,0,-43,-23,-43,-52v0,-29,17,-51,43,-51xm204,-128v0,-28,-24,-44,-45,-28v-6,5,-14,15,-23,29v17,24,16,33,41,35v18,1,27,-18,27,-36xm51,-128v0,20,18,34,33,21v6,-4,12,-11,20,-21v-12,-17,-22,-24,-33,-24v-13,0,-20,10,-20,24","w":256},"\u00b1":{"d":"77,-190r0,-66r44,0r0,66r66,0r0,44r-66,0r0,66r-44,0r0,-66r-66,0r0,-44r66,0xm11,-44r176,0r0,44r-176,0r0,-44","w":197},"\u2264":{"d":"187,-100r0,44r-176,-89r0,-39r176,-90r0,44r-126,65xm11,-36r176,0r0,44r-176,0r0,-44","w":197},"\u2265":{"d":"11,-100r125,-65r-125,-65r0,-44r176,90r0,39r-176,89r0,-44xm187,-36r0,44r-176,0r0,-44r176,0","w":197},"\u00a5":{"d":"8,-259r52,0r41,92r41,-92r51,0r-54,122r46,0r0,29r-59,0r0,22r59,0r0,30r-59,0r0,56r-50,0r0,-56r-60,0r0,-30r60,0r0,-22r-60,0r0,-29r47,0","w":201},"\u00b5":{"d":"143,-22v-12,35,-67,34,-79,1r0,91r-49,0r0,-261r49,0v5,60,-21,155,40,155v60,0,33,-97,39,-155r49,0r0,191r-49,0r0,-22","w":207},"\u2202":{"d":"107,-230v-23,0,-28,12,-40,33r-24,-15v10,-30,30,-50,65,-50v48,0,64,43,64,96v0,81,-29,168,-109,170v-34,0,-56,-25,-55,-62v4,-71,59,-109,137,-108v0,-36,-9,-64,-38,-64xm48,-59v0,42,47,35,68,3v13,-19,22,-43,27,-77v-55,-3,-95,26,-95,74","w":177},"\u2211":{"d":"24,-265r218,0r0,29r-174,0r107,136r-114,142r183,0r0,28r-223,0r0,-33r109,-136r-106,-135r0,-31","w":256},"\u220f":{"d":"28,-265r240,0r0,335r-34,0r0,-304r-172,0r0,304r-34,0r0,-335","w":296},"\uf006":{"d":"0,-187r198,0r0,36r-30,0r0,151r-51,0r0,-151r-36,0r0,151r-52,0r0,-151r-29,0r0,-36","w":197},"\u222b":{"d":"0,17v1,-25,28,-14,37,-6v5,0,6,-5,6,-10r-8,-168v5,-51,-12,-153,41,-160v12,-1,22,8,22,18v1,11,-6,19,-16,19v-7,0,-27,-22,-27,1v4,99,12,120,5,242v-3,52,-3,81,-39,86v-12,2,-21,-10,-21,-22","w":98},"\u00aa":{"d":"8,-202v-5,-45,42,-83,73,-50r0,-10r35,0r0,120r-35,0r0,-10v-31,31,-78,-6,-73,-50xm63,-171v26,-1,25,-62,0,-63v-25,0,-27,62,0,63","w":129},"\u00ba":{"d":"8,-202v0,-33,25,-63,56,-63v33,-1,58,29,58,63v0,34,-25,62,-58,62v-31,0,-56,-29,-56,-62xm65,-171v28,0,28,-62,0,-62v-29,0,-29,62,0,62","w":129},"\u2126":{"d":"68,-139v1,48,20,81,55,96r0,43r-113,0r0,-40v25,0,47,3,71,4v-40,-19,-67,-49,-67,-107v0,-73,50,-121,123,-121v82,0,128,45,128,121v0,55,-26,89,-67,106r71,-4r0,41r-113,0r0,-43v36,-15,53,-47,54,-95v2,-52,-26,-88,-72,-88v-44,0,-71,38,-70,87","w":276},"\u00e6":{"d":"221,-81v3,46,75,58,101,25r40,19v-21,41,-103,57,-144,23r0,14r-44,0r0,-24v-49,63,-167,13,-158,-71v-8,-81,108,-138,158,-71r0,-25r44,0r0,14v68,-48,168,2,157,96r-154,0xm327,-119v-8,-46,-95,-48,-104,0r104,0xm175,-97v0,-31,-23,-56,-55,-56v-31,0,-55,25,-55,58v0,31,23,56,55,56v34,0,55,-25,55,-58","w":388},"\u00f8":{"d":"43,-30v-57,-62,-6,-166,75,-166v21,0,40,6,58,18r22,-25r22,20r-23,25v52,64,5,163,-79,163v-20,0,-37,-6,-53,-16r-23,26r-22,-19xm146,-144v-48,-27,-102,28,-72,79xm96,-45v47,22,92,-29,69,-77","w":237},"\u00bf":{"d":"133,-170v0,16,-14,30,-30,30v-17,0,-31,-14,-31,-30v-1,-16,15,-30,31,-30v15,0,30,15,30,30xm65,4v4,41,74,31,72,-7r46,0v1,46,-37,78,-85,78v-49,0,-79,-29,-81,-72v-3,-60,68,-58,63,-123r48,0v7,56,-35,84,-59,110v-3,4,-4,9,-4,14","w":201},"\u00a1":{"d":"20,-170v0,-15,15,-30,30,-30v16,0,31,14,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30xm75,70r-49,0r0,-189r49,0r0,189","w":100},"\u00ac":{"d":"20,-189r176,0r0,119r-44,0r0,-75r-132,0r0,-44"},"\u221a":{"d":"184,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"189,-255r-5,42v-24,-19,-42,-13,-43,23r-4,26r39,0r-6,41r-39,0v-10,55,-11,124,-29,171v-12,32,-61,34,-89,11r6,-42v22,19,40,18,45,-16r19,-124r-40,0r6,-41r40,0v4,-57,13,-122,78,-103v6,2,13,6,22,12","w":201},"\u2248":{"d":"189,-145v-64,45,-128,-51,-181,3r0,-56v68,-48,120,54,181,-4r0,57xm189,-60v-64,45,-128,-52,-181,3r0,-56v68,-48,119,54,181,-4r0,57","w":197},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"37,-191r44,0r-32,96r32,95r-44,0r-33,-95xm116,-191r45,0r-32,96r32,95r-45,0r-32,-95","w":165},"\u00bb":{"d":"129,0r-45,0r33,-96r-33,-95r45,0r32,95xm49,0r-45,0r33,-96r-33,-95r45,0r32,95","w":165},"\u2026":{"d":"152,-23v0,-16,12,-27,28,-27v15,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28xm32,-23v0,-16,12,-27,28,-27v15,0,28,12,28,27v0,15,-12,28,-28,28v-16,0,-28,-12,-28,-28xm272,-23v0,-16,12,-27,28,-27v15,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm124,-347r42,69r-34,0r-65,-69r57,0","w":266},"\u00c3":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm207,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":266},"\u00d5":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm225,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":302},"\u0152":{"d":"17,-129v-6,-112,132,-175,212,-107r0,-23r137,0r0,49r-87,0r0,47r87,0r0,47r-87,0r0,68r87,0r0,48r-137,0r0,-24v-22,18,-44,31,-81,31v-79,0,-127,-56,-131,-136xm229,-128v-1,-51,-32,-89,-82,-90v-44,-1,-82,42,-81,89v1,52,33,86,84,88v46,1,80,-40,79,-87","w":381},"\u0153":{"d":"117,-196v38,2,60,13,78,37v39,-58,145,-41,168,15v7,16,12,37,12,63r-155,0v3,44,69,59,100,27r41,18v-30,50,-131,56,-166,4v-18,22,-41,36,-78,37v-56,1,-103,-46,-103,-101v0,-53,48,-102,103,-100xm327,-119v-9,-48,-96,-46,-106,0r106,0xm171,-96v0,-30,-24,-57,-54,-57v-33,1,-55,25,-55,58v0,33,20,57,54,57v33,1,55,-26,55,-58","w":388},"\u2013":{"d":"-2,-82r0,-43r184,0r0,43r-184,0","w":180},"\u2014":{"d":"-2,-82r0,-43r364,0r0,43r-364,0","w":360},"\u201c":{"d":"73,-166r-44,0v-2,-45,3,-74,25,-99r17,13v-8,12,-12,19,-16,35r18,0r0,51xm145,-166r-45,0v-2,-45,4,-74,25,-99r18,13v-8,12,-12,19,-16,35r18,0r0,51","w":172},"\u201d":{"d":"100,-265r44,0v2,45,-4,73,-25,99r-17,-14v9,-12,12,-18,15,-35r-17,0r0,-50xm28,-265r44,0v2,45,-3,74,-25,99r-17,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":172},"\u2018":{"d":"74,-166r-45,0v-2,-45,4,-74,25,-99r18,13v-8,12,-12,19,-16,35r18,0r0,51","w":100},"\u2019":{"d":"27,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":100},"\u00f7":{"d":"70,-233r57,0r0,56r-57,0r0,-56xm11,-151r176,0r0,44r-176,0r0,-44xm70,-82r57,0r0,57r-57,0r0,-57","w":197},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm40,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm118,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":208},"\u0178":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm49,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm127,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":223},"\u2044":{"d":"-41,7r110,-272r30,0r-110,272r-30,0","w":57},"\u2215":{"d":"-41,7r110,-272r30,0r-110,272r-30,0","w":57},"\u00a4":{"d":"160,-72v-26,24,-78,23,-104,0r-18,19r-21,-22r18,-18v-22,-25,-21,-78,0,-102r-18,-18r21,-22r19,18v27,-21,77,-22,103,0r18,-18r21,22r-18,17v22,25,22,78,0,103r19,18r-21,22xm109,-200v-30,0,-56,27,-56,57v0,28,26,55,55,55v30,0,55,-25,55,-56v0,-30,-25,-56,-54,-56"},"\u2039":{"d":"37,-191r45,0r-33,96r33,95r-45,0r-32,-95","w":86},"\u203a":{"d":"50,0r-45,0r32,-96r-32,-95r45,0r32,95","w":86},"\uf001":{"d":"115,-213v-4,-22,-41,-22,-46,-1v-2,4,-2,12,-2,23r28,0r0,40r-28,0r0,151r-49,0r0,-151r-17,0r0,-40r17,0v-12,-81,93,-101,135,-53v6,8,10,18,12,31r-50,0xm117,-191r48,0r0,191r-48,0r0,-191","w":187},"\ufb01":{"d":"115,-213v-4,-22,-41,-22,-46,-1v-2,4,-2,12,-2,23r28,0r0,40r-28,0r0,151r-49,0r0,-151r-17,0r0,-40r17,0v-12,-81,93,-101,135,-53v6,8,10,18,12,31r-50,0xm117,-191r48,0r0,191r-48,0r0,-191","w":187},"\uf002":{"d":"117,-188v9,-43,-34,-55,-47,-26v-2,5,-3,12,-3,23r28,0r0,40r-28,0r0,151r-48,0r0,-151r-18,0r0,-40r18,0v-1,-53,23,-79,73,-79v51,0,75,23,74,79r0,191r-49,0r0,-188","w":187},"\ufb02":{"d":"117,-188v9,-43,-34,-55,-47,-26v-2,5,-3,12,-3,23r28,0r0,40r-28,0r0,151r-48,0r0,-151r-18,0r0,-40r18,0v-1,-53,23,-79,73,-79v51,0,75,23,74,79r0,191r-49,0r0,-188","w":187},"\u2021":{"d":"77,-265r47,0r-9,82r80,-8r0,47r-80,-9r9,57r-9,56r80,-10r0,49r-80,-10r9,81r-47,0r9,-81r-79,10r0,-49r79,10r-9,-56r9,-57r-79,9r0,-47r79,8","w":201},"\u2219":{"d":"23,-129v0,-16,11,-28,27,-28v16,0,28,12,28,28v0,16,-12,27,-28,27v-15,0,-27,-12,-27,-27","w":100},"\u201a":{"d":"27,-50r45,0v2,45,-4,73,-25,98r-18,-13v8,-12,12,-19,16,-35r-18,0r0,-50","w":100},"\u201e":{"d":"100,-50r44,0v2,45,-4,73,-25,98r-17,-13v8,-12,12,-18,15,-35r-17,0r0,-50xm28,-50r44,0v2,45,-3,74,-25,98r-17,-13v8,-12,12,-19,16,-35r-18,0r0,-50","w":172},"\u2030":{"d":"67,-265v55,9,125,21,170,-5r36,0r-205,288r-35,0r175,-247v-27,5,-52,6,-81,4v16,43,-17,83,-58,83v-34,0,-63,-28,-62,-61v0,-36,27,-59,60,-62xm99,-203v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,14,29,30,29v16,0,30,-14,30,-29xm330,-55v0,-33,29,-62,62,-62v32,0,62,30,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62xm422,-55v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30xm179,-55v0,-33,29,-62,61,-62v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-61,-29,-61,-62xm270,-55v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30","w":460},"\u00c2":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm61,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":266},"\u00ca":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm28,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":187},"\u00c1":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm141,-347r57,0r-65,69r-34,0","w":266},"\u00cb":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm36,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm114,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":187},"\u00c8":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm91,-347r42,69r-34,0r-65,-69r57,0","w":187},"\u00cd":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm59,-347r57,0r-65,69r-34,0","w":100},"\u00ce":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-22,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":100},"\u00cf":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-14,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm64,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":100},"\u00cc":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm42,-347r42,69r-34,0r-65,-69r57,0","w":100},"\u00d3":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm160,-347r57,0r-65,69r-34,0","w":302},"\u00d4":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm79,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":302},"\uf000":{"w":284},"\u00d2":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm143,-347r42,69r-34,0r-65,-69r57,0","w":302},"\u00da":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm124,-347r57,0r-65,69r-34,0","w":230},"\u00db":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm43,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u00d9":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm107,-347r42,69r-34,0r-65,-69r57,0","w":230},"\u0131":{"d":"19,-191r48,0r0,191r-48,0r0,-191","w":86},"\u02c6":{"d":"25,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":194},"\u02dc":{"d":"160,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":172},"\u02c9":{"d":"25,-226r0,-39r101,0r0,39r-101,0","w":151},"\u02d8":{"d":"54,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":172},"\u02d9":{"d":"25,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":100},"\u02da":{"d":"26,-266v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm79,-266v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":129},"\u00b8":{"d":"46,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":122},"\u02dd":{"d":"100,-295r57,0r-65,69r-34,0xm178,-295r57,0r-64,69r-35,0","w":252},"\u02db":{"d":"28,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":122},"\u02c7":{"d":"25,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":194},"\u0141":{"d":"86,-175r39,-46r0,45r-39,46r0,83r72,0r0,47r-121,0r0,-72r-30,34r0,-45r30,-34r0,-142r49,0r0,84","w":172},"\u0142":{"d":"82,-181r19,-21r0,43r-19,22r0,137r-48,0r0,-84r-20,21r0,-43r20,-21r0,-138r48,0r0,84","w":115},"\u0160":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm21,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":187},"\u0161":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm7,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":158},"\u017d":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49xm18,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":180},"\u017e":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40xm11,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":165},"\u00a6":{"d":"94,-131r0,-134r28,0r0,125xm94,70r0,-160r28,-10r0,170r-28,0"},"\u00d0":{"d":"248,-126v0,87,-42,132,-146,126r-64,0r0,-115r-29,0r0,-29r29,0r0,-115r63,0v102,-4,147,44,147,133xm198,-127v0,-63,-38,-90,-110,-84r0,67r53,0r0,29r-53,0r0,67v72,5,110,-14,110,-79","w":267},"\u00f0":{"d":"15,-96v0,-58,57,-116,117,-95v-3,-8,-9,-17,-18,-28r-46,14r-9,-28r33,-10v-11,-10,-19,-18,-24,-22v23,0,50,-4,60,10r35,-10r9,28r-18,5v33,32,61,75,63,130v1,59,-44,107,-102,107v-55,0,-100,-47,-100,-101xm168,-95v0,-32,-23,-56,-53,-56v-30,-1,-52,24,-52,55v0,32,21,56,52,56v31,1,53,-24,53,-55","w":230},"\u00dd":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm120,-347r57,0r-65,69r-34,0","w":223},"\u00fd":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm113,-295r57,0r-65,69r-34,0","w":208},"\u00de":{"d":"183,-129v0,57,-35,77,-104,74r0,55r-50,0r0,-259r50,0r0,55v71,-2,104,17,104,75xm135,-129v0,-27,-26,-28,-56,-27r0,53v30,1,56,2,56,-26","w":201},"\u00fe":{"d":"222,-95v7,79,-97,133,-150,75r0,90r-48,0r0,-335r48,0r0,95v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"\u2212":{"d":"20,-151r176,0r0,44r-176,0r0,-44"},"\u00d7":{"d":"108,-103r-56,55r-26,-26r56,-55r-56,-56r26,-26r56,56r55,-56r26,26r-55,56r55,55r-26,26"},"\u00b9":{"d":"35,-262r47,0r0,133r-33,0r0,-105r-34,0","w":120},"\u00b2":{"d":"60,-237v-12,0,-20,9,-20,21r-33,0v-4,-60,105,-65,105,-9v0,32,-28,49,-49,69r50,0r0,27r-110,0r0,-15v24,-25,65,-44,76,-79v-1,-9,-8,-14,-19,-14","w":120},"\u00b3":{"d":"47,-212v25,5,37,-26,14,-26v-8,0,-14,5,-18,13r-32,0v1,-52,92,-52,96,-5v0,11,-6,20,-17,26v50,22,17,78,-32,78v-29,0,-53,-18,-53,-46r33,0v0,25,44,24,44,3v0,-12,-12,-17,-35,-18r0,-25","w":120},"\u00bd":{"d":"36,-262r47,0r0,133r-33,0r0,-105r-34,0xm75,7r110,-272r30,0r-110,272r-30,0xm240,-108v-12,0,-20,9,-20,21r-33,0v-4,-60,105,-65,105,-9v0,32,-28,49,-49,69r50,0r0,27r-110,0r0,-15v24,-25,65,-44,76,-79v-1,-9,-8,-14,-19,-14","w":302},"\u00bc":{"d":"36,-262r47,0r0,133r-33,0r0,-105r-34,0xm82,7r110,-272r30,0r-110,272r-30,0xm250,-136r32,0r0,85r14,0r0,25r-14,0r0,26r-29,0r0,-26r-70,0r0,-26xm253,-51r0,-47r-39,47r39,0","w":302},"\u00be":{"d":"48,-212v25,5,37,-26,14,-26v-8,0,-14,5,-18,13r-32,0v1,-52,92,-52,96,-5v0,11,-6,20,-17,26v50,22,17,78,-32,78v-29,0,-53,-18,-53,-46r33,0v0,25,44,24,44,3v0,-12,-12,-17,-35,-18r0,-25xm86,7r110,-272r30,0r-110,272r-30,0xm250,-136r32,0r0,85r14,0r0,25r-14,0r0,26r-29,0r0,-26r-70,0r0,-26xm253,-51r0,-47r-39,47r39,0","w":302},"\u20a3":{"d":"79,-73r40,0r0,29r-40,0r0,44r-49,0r0,-44r-30,0r0,-29r30,0r0,-186r129,0r0,48r-80,0r0,47r80,0r0,48r-80,0r0,43","w":172},"\u011e":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm119,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":302},"\u011f":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm93,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":237},"\u0130":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm25,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":100},"\u015e":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm79,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":187},"\u015f":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm64,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":158},"\u0106":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm157,-347r57,0r-65,69r-34,0","w":280},"\u0107":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm130,-295r57,0r-65,69r-34,0","w":230},"\u010c":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm81,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":280},"\u010d":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm49,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":230},"\u0111":{"d":"15,-95v0,-83,98,-134,151,-75r0,-46r-75,0r0,-29r75,0r0,-20r47,0r0,20r24,0r0,29r-24,0r0,216r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"\u00af":{"d":"-2,-296r184,0r0,18r-184,0r0,-18","w":180},"\u00b7":{"d":"122,-107v-31,0,-32,-51,0,-51v13,0,26,12,26,25v0,13,-13,26,-26,26","w":119},"\uf003":{"d":"70,-265r32,0r0,85r14,0r0,25r-14,0r0,26r-29,0r0,-26r-70,0r0,-26xm73,-180r0,-47r-39,47r39,0","w":120},"\u0102":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm102,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":266},"\u0103":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm83,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":237},"\u0104":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm199,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":266},"\u0105":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm159,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":237},"\u010e":{"d":"235,-126v0,87,-42,132,-146,126r-59,0r0,-259r58,0v102,-4,147,44,147,133xm185,-127v0,-61,-36,-89,-106,-84r0,163v71,6,106,-16,106,-79xm28,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":252},"\u010f":{"d":"15,-95v0,-83,98,-134,151,-75r0,-95r47,0r0,265r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm226,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":259},"\u0110":{"d":"248,-126v0,87,-42,132,-146,126r-64,0r0,-115r-29,0r0,-29r29,0r0,-115r63,0v102,-4,147,44,147,133xm198,-127v0,-63,-38,-90,-110,-84r0,67r53,0r0,29r-53,0r0,67v72,5,110,-14,110,-79","w":267},"\u0118":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm90,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":187},"\u0119":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm81,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":230},"\u011a":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm34,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":187},"\u011b":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm43,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":230},"\u0132":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm179,-42v17,0,16,-15,16,-36r0,-181r49,0r0,172v16,102,-91,119,-137,56r36,-33v13,15,25,22,36,22","w":273},"\u0133":{"d":"134,-270v17,0,31,15,31,31v0,16,-14,31,-31,31v-16,0,-31,-14,-31,-31v0,-17,15,-31,31,-31xm43,-270v17,0,31,14,31,31v0,17,-15,31,-31,31v-16,0,-31,-15,-31,-31v0,-15,15,-32,31,-31xm19,-191r49,0r0,191r-49,0r0,-191xm72,30v19,10,38,7,38,-20r0,-201r48,0r0,197v4,63,-35,80,-86,62r0,-38","w":180},"\u0139":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm80,-347r57,0r-65,69r-34,0","w":158},"\u013a":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm45,-347r57,0r-65,69r-34,0","w":86},"\u013d":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm102,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":158},"\u013e":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm84,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":113},"\u013f":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm118,-107v-31,0,-32,-51,0,-51v13,0,26,12,26,25v0,13,-13,26,-26,26","w":158},"\u0140":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm104,-107v-31,0,-32,-51,0,-51v13,0,26,12,26,25v0,13,-13,26,-26,26","w":124},"\u0143":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm149,-347r57,0r-65,69r-34,0","w":266},"\u0144":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm114,-295r57,0r-65,69r-34,0"},"\u0147":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm54,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":266},"\u0148":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm52,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0"},"\u0149":{"d":"129,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm-9,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":231},"\u0150":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm140,-347r57,0r-65,69r-34,0xm218,-347r57,0r-64,69r-35,0","w":302},"\u0151":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm108,-295r57,0r-65,69r-34,0xm186,-295r57,0r-64,69r-35,0","w":230},"\u0154":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26xm119,-347r57,0r-65,69r-34,0","w":208},"\u0155":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24xm71,-295r57,0r-65,69r-34,0","w":115},"\u0158":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26xm32,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":208},"\u0159":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24xm-15,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":115},"\u015a":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm89,-347r57,0r-65,69r-34,0","w":187},"\u015b":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm84,-295r57,0r-65,69r-34,0","w":158},"\u0162":{"d":"4,-259r143,0r0,49r-46,0r0,210r-50,0r0,-210r-47,0r0,-49xm60,21r31,0v0,30,0,42,-17,54r-9,-9v6,-4,8,-10,10,-16r-15,0r0,-29","w":151},"\u0163":{"d":"30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71xm38,21r32,0v-1,30,-1,41,-18,54r-9,-9v6,-4,9,-10,11,-16r-16,0r0,-29","w":107},"\u0164":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49xm4,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":151},"\u0165":{"d":"105,-265r35,0v1,29,-5,49,-20,68r-14,-11v8,-9,12,-18,13,-27r-14,0r0,-30xm30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71","w":129},"\u016e":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm79,-318v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm132,-318v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":230},"\u016f":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm62,-266v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm115,-266v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15"},"\u0170":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm100,-347r57,0r-65,69r-34,0xm178,-347r57,0r-64,69r-35,0","w":230},"\u0171":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm82,-295r57,0r-65,69r-34,0xm160,-295r57,0r-64,69r-35,0"},"\u0179":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49xm102,-347r57,0r-65,69r-34,0","w":180},"\u017a":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40xm84,-295r57,0r-65,69r-34,0","w":165},"\u017b":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49xm60,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":180},"\u017c":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40xm60,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":165},"\uf100":{"d":"29,-258r159,0r0,40r-106,0r0,218r-53,0r0,-258","w":193},"\uf101":{"d":"17,-129v0,-81,44,-135,129,-135v79,0,124,51,124,133v0,86,-45,137,-123,138v-85,1,-130,-51,-130,-136xm216,-128v0,-64,-21,-99,-70,-99v-55,0,-74,36,-74,100v0,60,20,96,72,96v52,0,72,-39,72,-97xm98,-152r92,0r0,41r-92,0r0,-41","w":287},"\uf102":{"d":"17,-127v0,-74,46,-104,123,-108r0,-29r53,0r0,29v82,4,123,40,123,107v0,73,-50,107,-123,108r0,51r-53,0r0,-51v-76,-3,-123,-35,-123,-107xm140,-198v-69,-4,-92,93,-41,129v10,8,24,11,41,12r0,-141xm193,-57v63,5,88,-80,50,-120v-12,-12,-29,-19,-50,-20r0,140","w":333},"\uf103":{"d":"15,-89v0,-52,32,-102,84,-101v28,0,50,14,67,41v1,-10,4,-23,8,-36r50,0v-17,56,-15,129,3,185r-50,0v-4,-14,-8,-27,-10,-40v-36,79,-152,47,-152,-49xm163,-96v0,-33,-16,-61,-48,-61v-35,0,-48,29,-48,66v0,37,16,62,47,62v33,0,49,-31,49,-67","w":237},"\uf104":{"d":"15,-85v0,-52,39,-87,95,-83v-63,-39,-50,-109,33,-105v11,0,26,2,46,6r0,33v-25,-6,-68,-9,-69,12v25,51,102,64,102,137v0,55,-43,90,-101,90v-63,0,-105,-34,-106,-90xm170,-88v0,-32,-19,-55,-51,-55v-34,0,-52,19,-52,59v-1,34,18,56,51,56v35,0,52,-25,52,-60","w":236},"\uf105":{"d":"15,-92v0,-78,80,-112,162,-93r0,35v-45,-12,-104,-4,-108,39r107,0r0,33r-107,0v3,46,62,55,112,44r0,35v-83,15,-166,-11,-166,-93","w":195},"\uf106":{"d":"113,-190v46,3,96,3,146,3r0,36r-58,0v50,62,0,156,-83,156v-61,0,-103,-42,-103,-100v0,-54,46,-98,98,-95xm170,-97v0,-37,-18,-63,-53,-63v-35,1,-50,27,-50,67v0,39,15,66,52,65v35,-1,52,-28,51,-69","w":265},"\uf107":{"d":"6,-187r183,0r0,36r-66,0r0,151r-51,0r0,-151r-66,0r0,-36","w":195},"\uf108":{"d":"15,-93v0,-67,40,-91,105,-97r0,-44r51,0r0,45v66,2,106,35,106,96v0,59,-38,93,-105,95r0,66r-52,0r0,-65v-65,-3,-105,-33,-105,-96xm120,-157v-53,-6,-67,79,-38,112v10,10,22,16,38,16r0,-128xm171,-157r0,128v52,5,67,-75,40,-111v-9,-11,-22,-17,-40,-17","w":291},"\u2017":{"d":"-2,20r184,0r0,18r-184,0r0,-18xm-2,51r184,0r0,18r-184,0r0,-18","w":180},"\u2032":{"d":"50,-176r-27,0r3,-89r47,0","w":79},"\u2033":{"d":"112,-176r-28,0r3,-89r47,0xm40,-176r-28,0r3,-89r47,0","w":129},"\u203c":{"d":"25,-265r49,0r0,189r-49,0r0,-189xm129,-265r49,0r0,189r-49,0r0,-189xm19,-25v0,-17,14,-30,30,-30v17,0,31,13,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30xm123,-25v0,-15,15,-30,30,-30v17,0,31,13,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30","w":202},"\u207f":{"d":"64,-192v-26,4,-11,60,-15,91r-35,0r0,-120r35,0r0,10v25,-27,62,-7,62,32r0,78r-35,0v-3,-31,9,-85,-12,-91","w":123},"\u20a7":{"d":"29,-259v79,-3,149,-1,155,68r16,0r0,-71r48,0r0,71v64,4,120,-21,151,26r-30,30v-12,-12,-22,-18,-32,-18v-25,2,-21,22,0,28v31,17,65,29,66,70v1,68,-105,79,-136,27r30,-32v8,16,55,36,61,7v3,-11,-25,-23,-38,-30v-34,-18,-50,-35,-45,-67r-27,0r0,150r-48,0r0,-150r-24,0v-13,27,-45,42,-97,43r0,107r-50,0r0,-259xm135,-184v1,-28,-26,-27,-56,-27r0,58v35,-1,55,-3,56,-31","w":416},"\u2105":{"d":"7,-202v0,-61,88,-88,115,-34r-30,16v-15,-25,-52,-10,-49,19v-4,30,36,41,49,16r29,19v-30,49,-114,24,-114,-36xm89,7r111,-272r30,0r-110,272r-31,0xm196,-60v0,-33,25,-63,56,-63v32,0,58,30,58,63v0,33,-25,63,-58,63v-32,0,-56,-30,-56,-63xm253,-29v28,0,28,-62,0,-62v-28,1,-29,63,0,62","w":317},"\u2113":{"d":"79,-99v-6,72,35,79,78,43r0,43v-55,37,-122,14,-126,-61v-6,3,-13,6,-20,9r-7,-45r26,-13v-2,-86,10,-131,75,-139v35,-4,61,28,58,61v-4,56,-35,68,-84,102xm104,-222v-25,0,-23,37,-25,71v23,-19,42,-25,42,-52v0,-11,-6,-19,-17,-19","w":173},"\u2190":{"d":"86,-154r14,0v-9,20,-21,38,-34,54r280,0r0,18r-280,0v12,12,23,30,34,54r-13,0v-26,-30,-51,-50,-73,-60r0,-7v21,-8,44,-28,72,-59","w":360},"\u2191":{"d":"27,-185v31,-28,50,-51,58,-72r9,0v10,22,29,47,59,73r0,13v-24,-11,-42,-22,-54,-34r0,280r-18,0r0,-280v-16,13,-34,25,-54,34r0,-14","w":180},"\u2192":{"d":"273,-154v28,31,52,51,73,59r0,7v-22,10,-47,30,-73,60r-13,0v11,-24,22,-42,34,-54r-280,0r0,-18r280,0v-13,-16,-25,-34,-34,-54r13,0","w":360},"\u2193":{"d":"27,3r0,-14v20,9,38,22,54,35r0,-281r18,0r0,281v12,-12,30,-24,54,-35r0,14v-30,26,-49,50,-59,72r-9,0v-8,-21,-27,-44,-58,-72","w":180},"\u2194":{"d":"346,-95r0,8v-21,9,-45,29,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-26,-30,-50,-50,-71,-59r0,-8v21,-9,45,-29,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0v26,30,50,50,71,59","w":360},"\u2195":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71","w":180},"\u21a8":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"106,-239v-93,0,-57,143,-64,239r-19,0v4,-111,-26,-262,83,-262v108,0,80,145,83,262r-19,0v-7,-96,29,-239,-64,-239","w":211},"\u2261":{"d":"20,-226r176,0r0,44r-176,0r0,-44xm20,-151r176,0r0,44r-176,0r0,-44xm20,-76r176,0r0,44r-176,0r0,-44"},"\u25a1":{"d":"26,-166r166,0r0,166r-166,0r0,-166xm39,-153r0,140r139,0r0,-140r-139,0","w":217},"\u25aa":{"d":"104,-160r0,82r-81,0r0,-82r81,0","w":127},"\u25ab":{"d":"104,-160r0,82r-81,0r0,-82r81,0xm91,-146r-55,0r0,54r55,0r0,-54","w":127},"\u25cf":{"d":"31,-102v0,-42,36,-77,78,-77v41,0,77,36,77,77v0,41,-36,78,-77,78v-41,0,-78,-37,-78,-78","w":217},"\u25e6":{"d":"20,-119v0,-23,21,-45,44,-44v23,0,44,19,44,44v0,23,-21,44,-44,44v-23,0,-44,-21,-44,-44xm95,-119v0,-16,-15,-31,-31,-31v-16,0,-31,14,-31,31v0,17,15,31,31,31v16,0,32,-14,31,-31","w":127},"\uf004":{"d":"44,13r31,16r-39,67r-22,-11","w":100},"\u0100":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm83,-278r0,-39r101,0r0,39r-101,0","w":266},"\u0101":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm64,-226r0,-39r101,0r0,39r-101,0","w":237},"\u0108":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm76,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":280},"\u0109":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm41,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u010a":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm125,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":280},"\u010b":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm94,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":230},"\u0112":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm50,-278r0,-39r101,0r0,39r-101,0","w":187},"\u0113":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm65,-226r0,-39r101,0r0,39r-101,0","w":230},"\u0114":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm68,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":187},"\u0115":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm83,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u0116":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm75,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":187},"\u0117":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm90,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":230},"\u011c":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm80,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":302},"\u011d":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm42,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":237},"\u0120":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm127,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":302},"\u0121":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm89,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":237},"\u0122":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm138,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":302},"\u0123":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm142,-219r-45,0v-2,-45,4,-74,25,-99r18,13v-8,12,-12,19,-16,35r18,0r0,51","w":237},"\u0124":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259xm50,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":244},"\u0125":{"d":"114,-152v-60,0,-38,90,-42,152r-48,0r0,-265r48,0r0,93v38,-42,122,-26,122,46r0,126r-47,0v-6,-56,20,-152,-33,-152xm37,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0"},"\u0126":{"d":"79,-227r87,0r0,-32r49,0r0,32r24,0r0,29r-24,0r0,198r-49,0r0,-113r-87,0r0,113r-50,0r0,-198r-23,0r0,-29r23,0r0,-32r50,0r0,32xm79,-198r0,37r87,0r0,-37r-87,0","w":244},"\u0127":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-215r-24,0r0,-28r24,0r0,-22r48,0r0,22r56,0r0,28r-56,0r0,43v43,-45,122,-24,122,46r0,126r-48,0v-7,-54,22,-152,-32,-152"},"\u0128":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm124,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":100},"\u0129":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm117,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":86},"\u012a":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm0,-278r0,-39r101,0r0,39r-101,0","w":100},"\u012b":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-7,-226r0,-39r101,0r0,39r-101,0","w":86},"\u012c":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm18,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":100},"\u012d":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm11,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":86},"\u012e":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm18,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":100},"\u012f":{"d":"12,-239v-1,-16,15,-31,31,-31v16,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-30,-15,-31,-31xm19,-191r48,0r0,191r-48,0r0,-191xm10,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":86},"\u0134":{"d":"78,-42v16,0,16,-13,16,-36r0,-181r49,0r0,172v16,104,-91,118,-136,56r35,-33v12,13,18,22,36,22xm27,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":172},"\u0135":{"d":"-25,-226r53,-50r38,0r53,50r-53,0r-19,-23r-19,23r-53,0xm-15,30v19,10,38,6,38,-20r0,-201r48,0r0,197v4,63,-35,80,-86,62r0,-38","w":93},"\u0136":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259xm147,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":223},"\u0137":{"d":"25,-265r48,0r0,153r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-265xm142,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":208},"\u0138":{"d":"25,-191r48,0r0,79r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-191","w":208},"\u013b":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm117,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":158},"\u013c":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm79,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":86},"\u0145":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm169,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":266},"\u0146":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm146,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30"},"\u014a":{"d":"218,-126v0,-52,-24,-91,-69,-92v-25,0,-48,16,-70,47r0,171r-50,0r0,-259r50,0r0,28v71,-81,189,-6,189,102v0,85,-53,164,-136,127v-11,-5,-21,-15,-31,-29r35,-33v11,15,22,23,34,23v34,-2,48,-45,48,-85","w":285},"\u014b":{"d":"72,-172v45,-45,126,-24,122,46v-5,87,31,238,-86,194r0,-38v19,10,41,7,38,-20v-7,-57,23,-162,-32,-162v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19"},"\u014c":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm101,-278r0,-39r101,0r0,39r-101,0","w":302},"\u014d":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm65,-226r0,-39r101,0r0,39r-101,0","w":230},"\u014e":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm119,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":302},"\u014f":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm83,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u0156":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26xm142,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":208},"\u0157":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24xm96,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":115},"\u015c":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm16,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":187},"\u015d":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm5,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":158},"\u0166":{"d":"101,-139r38,0r0,28r-38,0r0,111r-50,0r0,-111r-39,0r0,-28r39,0r0,-71r-47,0r0,-49r143,0r0,49r-46,0r0,71","w":151},"\u0167":{"d":"78,-108r33,0r0,28r-33,0r0,80r-48,0r0,-80r-29,0r0,-28r29,0r0,-42r-25,0r0,-41r25,0r0,-71r48,0r0,71r28,0r0,41r-28,0r0,42","w":107},"\u0168":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm189,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":230},"\u0169":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm182,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17"},"\u016a":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm65,-278r0,-39r101,0r0,39r-101,0","w":230},"\u016b":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm58,-226r0,-39r101,0r0,39r-101,0"},"\u016c":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm83,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u016d":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm76,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0"},"\u0172":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm87,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":230},"\u0173":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm81,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31"},"\u0174":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm90,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":323},"\u0175":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm72,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":287},"\u0176":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm39,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":223},"\u0177":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm32,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":208},"\u017f":{"d":"19,-201v-9,-64,31,-79,80,-62r0,36v-18,-5,-32,-7,-32,19r0,208r-48,0r0,-201","w":86},"\u01fa":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm94,-288v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm147,-288v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15xm141,-404r57,0r-65,69r-34,0","w":266},"\u01fb":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm80,-258v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm133,-258v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15xm127,-381r57,0r-65,69r-34,0","w":237},"\u01fc":{"d":"136,-259r169,0r0,49r-91,0r0,47r91,0r0,47r-91,0r0,68r91,0r0,48r-140,0r0,-53r-79,0r-25,53r-51,0xm165,-102r0,-113r-55,113r55,0xm203,-347r57,0r-65,69r-34,0","w":323},"\u01fd":{"d":"221,-81v3,46,75,58,101,25r40,19v-21,41,-103,57,-144,23r0,14r-44,0r0,-24v-49,63,-167,13,-158,-71v-8,-81,108,-138,158,-71r0,-25r44,0r0,14v68,-48,168,2,157,96r-154,0xm327,-119v-8,-46,-95,-48,-104,0r104,0xm175,-97v0,-31,-23,-56,-55,-56v-31,0,-55,25,-55,58v0,31,23,56,55,56v34,0,55,-25,55,-58xm204,-295r57,0r-65,69r-34,0","w":388},"\u01fe":{"d":"17,-129v0,-108,124,-174,213,-111r28,-33r22,18r-29,35v79,82,13,227,-99,227v-28,0,-52,-7,-74,-22r-31,35r-22,-19r30,-35v-21,-21,-38,-55,-38,-95xm198,-203v-56,-38,-131,7,-131,75v0,23,7,42,20,57xm109,-53v77,48,167,-52,110,-129xm160,-347r57,0r-65,69r-34,0","w":302},"\u01ff":{"d":"43,-30v-57,-62,-6,-166,75,-166v21,0,40,6,58,18r22,-25r22,20r-23,25v52,64,5,163,-79,163v-20,0,-37,-6,-53,-16r-23,26r-22,-19xm146,-144v-48,-27,-102,28,-72,79xm96,-45v47,22,92,-29,69,-77xm128,-295r57,0r-65,69r-34,0","w":237},"\u0384":{"d":"100,-288r-7,67r-35,0r-7,-67r49,0","w":151},"\u0385":{"d":"100,-288r-7,67r-35,0r-7,-67r49,0xm23,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22xm128,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22","w":151},"\u0386":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm67,-265r-7,67r-35,0r-7,-67r49,0","w":266},"\u0387":{"d":"50,-196v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28v0,-15,12,-27,27,-27","w":100},"\u0388":{"d":"59,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm32,-265r-7,67r-35,0r-7,-67r49,0","w":215},"\u0389":{"d":"58,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259xm32,-265r-7,67r-35,0r-7,-67r49,0","w":273},"\u038a":{"d":"55,-259r49,0r0,259r-49,0r0,-259xm32,-265r-7,67r-35,0r-7,-67r49,0","w":129},"\u038c":{"d":"30,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm249,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm32,-265r-7,67r-35,0r-7,-67r49,0","w":315},"\u038e":{"d":"41,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm32,-265r-7,67r-35,0r-7,-67r49,0","w":253},"\u038f":{"d":"167,-265v75,0,132,46,131,118v0,40,-19,72,-60,98r65,0r0,49r-119,0r0,-59v43,-22,65,-51,65,-88v1,-44,-35,-70,-82,-70v-47,0,-82,26,-82,70v0,37,22,66,65,88r0,59r-119,0r0,-49r65,0v-41,-26,-61,-58,-61,-98v0,-72,57,-118,132,-118xm32,-265r-7,67r-35,0r-7,-67r49,0","w":320},"\u0390":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm68,-288r-7,67r-35,0r-7,-67r49,0xm-9,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22xm96,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22","w":86},"\u0391":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"\u0392":{"d":"191,-75v0,49,-33,76,-89,75r-72,0r0,-259v75,-2,142,1,142,67v0,24,-10,38,-26,50v28,12,45,32,45,67xm125,-185v1,-23,-20,-29,-46,-27r0,55v26,1,46,-5,46,-28xm143,-77v0,-30,-27,-38,-64,-36r0,66v35,0,64,-1,64,-30","w":208},"\u0393":{"d":"29,-259r129,0r0,49r-80,0r0,210r-49,0r0,-259","w":166},"\u0394":{"d":"254,0r-241,0r0,-41r98,-218r44,0r99,218r0,41xm196,-48r-63,-142r-63,142r126,0","w":266},"\u0395":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"\u0396":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49","w":180},"\u0397":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"\u0398":{"d":"152,-265v73,0,133,63,133,137v0,74,-60,135,-133,135v-74,0,-135,-62,-135,-136v0,-74,63,-136,135,-136xm151,-217v-49,0,-85,40,-85,89v0,49,39,87,86,87v47,0,84,-41,84,-88v0,-47,-38,-88,-85,-88xm105,-154r93,0r0,47r-93,0r0,-47","w":302},"\u0399":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"\u039a":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"\u039b":{"d":"197,0r-72,-190r-72,190r-53,0r100,-259r50,0r99,259r-52,0","w":249},"\u039c":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"\u039d":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259","w":266},"\u039e":{"d":"171,-210r-152,0r0,-49r152,0r0,49xm171,-116r-152,0r0,-48r152,0r0,48xm171,0r-152,0r0,-48r152,0r0,48","w":190},"\u039f":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88","w":302},"\u03a0":{"d":"29,-259r187,0r0,259r-50,0r0,-213r-87,0r0,213r-50,0r0,-259","w":244},"\u03a1":{"d":"183,-184v-3,56,-35,77,-104,74r0,110r-50,0r0,-259v82,-3,158,-1,154,75xm135,-184v0,-26,-26,-26,-56,-26r0,52v30,1,56,2,56,-26","w":201},"\u03a3":{"d":"5,0r68,-129r-67,-130r158,0r0,49r-80,0r42,81r-43,81r83,0r0,48r-161,0","w":180},"\u03a4":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"\u03a5":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112","w":223},"\u03a6":{"d":"296,-131v1,67,-48,104,-116,105r0,26r-50,0r0,-26v-67,-6,-115,-38,-116,-105v-1,-63,54,-102,116,-105r0,-23r50,0r0,23v64,4,115,41,116,105xm180,-191r0,120v44,-4,66,-24,66,-60v0,-36,-22,-56,-66,-60xm130,-191v-44,4,-66,24,-66,60v0,35,22,56,66,60r0,-120","w":309},"\u03a7":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"\u03a8":{"d":"172,-110v68,-1,48,-83,51,-149r50,0r0,90v0,61,-34,96,-101,104r0,65r-49,0r0,-65v-67,-8,-100,-43,-100,-106r0,-88r49,0v4,63,-19,147,51,148r0,-148r49,0r0,149","w":295},"\u03a9":{"d":"154,-265v75,0,132,46,131,118v0,40,-19,72,-60,98r65,0r0,49r-119,0r0,-59v43,-22,65,-51,65,-88v1,-44,-35,-70,-82,-70v-47,0,-82,26,-82,70v0,37,22,66,65,88r0,59r-119,0r0,-49r65,0v-41,-26,-61,-58,-61,-98v0,-72,57,-118,132,-118","w":307},"\u03aa":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-14,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm64,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":100},"\u03ab":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm49,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm127,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":223},"\u03ac":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm143,-288r-7,67r-35,0r-7,-67r49,0","w":237},"\u03ad":{"d":"69,-59v3,30,43,25,64,5r22,37v-39,38,-142,28,-140,-37v0,-23,12,-39,36,-48v-53,-26,-21,-94,38,-94v20,0,38,7,55,20r-19,33v-21,-16,-48,-17,-52,8v-2,16,15,21,34,20r0,34v-21,-2,-40,3,-38,22xm103,-288r-7,67r-35,0r-7,-67r49,0","w":157},"\u03ae":{"d":"114,-152v-61,0,-37,92,-42,152r-48,0r0,-191r48,0r0,19v45,-44,122,-25,122,46r0,196r-48,0r0,-154v1,-39,1,-68,-32,-68xm133,-288r-7,67r-35,0r-7,-67r49,0"},"\u03af":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm68,-288r-7,67r-35,0r-7,-67r49,0","w":86},"\u03b0":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97xm133,-288r-7,67r-35,0r-7,-67r49,0xm56,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22xm161,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22"},"\u03b1":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"\u03b2":{"d":"208,-85v0,74,-86,118,-137,70r0,85r-48,0r0,-258v-1,-49,30,-82,79,-82v66,0,104,77,47,113v39,12,59,35,59,72xm115,-39v25,0,45,-16,45,-40v0,-31,-23,-47,-67,-47r0,-40v24,-4,36,-15,36,-34v0,-15,-10,-26,-25,-26v-50,0,-30,91,-33,141v-2,28,17,46,44,46","w":222},"\u03b3":{"d":"125,-20r0,90r-48,0r0,-90r-73,-171r49,0r48,113r48,-113r49,0","w":201},"\u03b4":{"d":"108,5v-49,0,-94,-39,-93,-86v0,-36,18,-62,55,-77v-55,-38,-15,-112,54,-112v15,0,34,3,55,8r-13,43v-36,-16,-99,-1,-64,33v7,4,18,10,34,16v43,17,65,46,65,86v1,50,-43,89,-93,89xm153,-84v0,-25,-21,-46,-45,-46v-24,0,-45,21,-45,46v0,25,21,46,45,46v24,0,45,-21,45,-46","w":215},"\u03b5":{"d":"69,-59v3,30,43,25,64,5r22,37v-39,38,-142,28,-140,-37v0,-23,12,-39,36,-48v-53,-26,-21,-94,38,-94v20,0,38,7,55,20r-19,33v-21,-16,-48,-17,-52,8v-2,16,15,21,34,20r0,34v-21,-2,-40,3,-38,22","w":157},"\u03b6":{"d":"160,-23v36,61,-25,122,-100,92r10,-42v15,7,57,10,54,-10v-3,-24,-56,-20,-67,-32v-26,-13,-44,-40,-44,-79v0,-64,40,-84,88,-126r-72,0r0,-45r138,0r0,40v-53,42,-97,65,-106,130v-7,56,82,44,99,72","w":171},"\u03b7":{"d":"114,-152v-61,0,-37,92,-42,152r-48,0r0,-191r48,0r0,19v45,-44,122,-25,122,46r0,196r-48,0r0,-154v1,-39,1,-68,-32,-68"},"\u03b8":{"d":"221,-133v0,80,-30,138,-104,138v-72,0,-102,-59,-102,-137v0,-76,32,-138,103,-138v73,0,103,58,103,137xm64,-155r107,0v-4,-47,-22,-70,-54,-70v-31,0,-48,23,-53,70xm171,-110r-107,0v5,47,22,70,53,70v31,0,49,-23,54,-70","w":235},"\u03b9":{"d":"19,-191r48,0r0,191r-48,0r0,-191","w":86},"\u03ba":{"d":"25,-191r48,0r0,79r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-191","w":208},"\u03bb":{"d":"206,0r-49,0r-55,-120r-50,120r-49,0r73,-177r-41,-88r49,0","w":208},"\u03bc":{"d":"103,-39v61,0,37,-92,42,-152r48,0r0,191r-48,0r0,-20v-21,22,-52,32,-74,12r0,78r-48,0r0,-261r48,0v7,55,-22,152,32,152"},"\u03bd":{"d":"4,-191r49,0r48,113r48,-113r49,0r-82,191r-31,0","w":201},"\u03be":{"d":"160,-22v35,61,-27,120,-100,91r10,-42v21,12,70,4,49,-21v-4,-2,-16,-7,-33,-10v-87,-14,-96,-114,-29,-149v-21,-13,-30,-31,-30,-54v-2,-65,79,-73,138,-55r-13,43v-27,-7,-79,-14,-78,19v2,30,42,31,77,30r0,44v-44,-1,-90,-2,-90,40v0,47,84,37,99,64","w":171},"\u03bf":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56","w":230},"\u03c0":{"d":"232,-146r-31,0r0,146r-48,0r0,-146r-65,0r0,146r-48,0r0,-146r-29,0r0,-45r221,0r0,45","w":242},"\u03c1":{"d":"220,-96v0,82,-97,136,-152,74r0,92r-49,0r0,-165v-1,-54,44,-101,99,-101v54,0,102,45,102,100xm119,-151v-29,0,-52,24,-52,55v0,32,21,56,52,56v30,0,52,-25,52,-56v0,-32,-21,-56,-52,-55","w":234},"\u03c2":{"d":"37,-36v-53,-61,-6,-160,83,-160v37,0,71,19,86,43r-40,22v-31,-36,-103,-25,-103,29v0,73,122,40,122,116v0,55,-58,72,-112,55r11,-42v15,5,55,13,54,-10v0,-7,-8,-14,-26,-18v-35,-8,-61,-18,-75,-35","w":210},"\u03c3":{"d":"15,-95v0,-64,63,-118,131,-96r102,0r0,45r-48,0v45,60,-11,151,-86,151v-55,0,-99,-46,-99,-100xm167,-96v0,-32,-21,-55,-52,-55v-30,0,-52,24,-52,55v0,32,21,56,52,56v30,0,52,-26,52,-56","w":258},"\u03c4":{"d":"139,-146r-40,0r0,146r-48,0r0,-146r-40,0r0,-45r128,0r0,45","w":149},"\u03c5":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97"},"\u03c6":{"d":"119,-195v84,-8,153,23,153,99v0,57,-36,90,-106,100r0,66r-47,0r0,-66v-93,-3,-131,-88,-85,-156v12,-18,30,-32,53,-43r13,47v-57,26,-46,106,19,107r0,-154xm166,-151r0,110v38,-5,58,-23,58,-54v0,-34,-20,-54,-58,-56","w":286},"\u03c7":{"d":"193,-191r-67,123r75,138r-53,0r-48,-93r-47,93r-53,0r75,-137r-68,-124r53,0r41,79r40,-79r52,0","w":201},"\u03c8":{"d":"161,-42v65,-2,41,-86,46,-149r48,0r0,95v0,59,-31,93,-94,100r0,66r-48,0r0,-66v-63,-7,-94,-41,-94,-102r0,-93r48,0v4,60,-19,148,46,148r0,-148r48,0r0,149","w":274},"\u03c9":{"d":"294,-88v0,81,-98,126,-140,65v-43,61,-140,15,-140,-65v0,-66,47,-107,112,-109r3,46v-45,6,-67,26,-67,63v0,33,13,50,38,50v28,0,33,-36,31,-72r47,0v-2,36,3,72,31,72v25,0,37,-17,37,-50v0,-44,-25,-57,-67,-63r4,-46v65,2,111,44,111,109","w":308},"\u03ca":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-21,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm57,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":86},"\u03cb":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97xm44,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm122,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25"},"\u03cc":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm140,-288r-7,67r-35,0r-7,-67r49,0","w":230},"\u03cd":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97xm133,-288r-7,67r-35,0r-7,-67r49,0"},"\u03ce":{"d":"294,-88v0,81,-98,126,-140,65v-43,61,-140,15,-140,-65v0,-66,47,-107,112,-109r3,46v-45,6,-67,26,-67,63v0,33,13,50,38,50v28,0,33,-36,31,-72r47,0v-2,36,3,72,31,72v25,0,37,-17,37,-50v0,-44,-25,-57,-67,-63r4,-46v65,2,111,44,111,109xm179,-288r-7,67r-35,0r-7,-67r49,0","w":308},"\u0401":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm36,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm114,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":187},"\u0402":{"d":"185,-73v0,-43,-39,-41,-85,-40r0,113r-50,0r0,-210r-46,0r0,-49r142,0r0,49r-46,0r0,49v82,-3,135,10,135,86v0,65,-45,98,-109,73r15,-41v26,10,45,1,44,-30","w":248},"\u0403":{"d":"29,-259r129,0r0,49r-80,0r0,210r-49,0r0,-259xm121,-347r57,0r-65,69r-34,0","w":166},"\u0404":{"d":"69,-105v16,72,117,86,164,27r33,35v-33,33,-58,48,-112,50v-80,2,-137,-59,-137,-137v0,-99,104,-164,199,-122v20,9,37,22,51,39r-34,33v-45,-63,-156,-38,-164,30r99,0r0,45r-99,0","w":280},"\u0405":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80","w":187},"\u0406":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"\u0407":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-14,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm64,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":100},"\u0408":{"d":"78,-42v16,0,16,-13,16,-36r0,-181r49,0r0,172v16,104,-91,118,-136,56r35,-33v12,13,18,22,36,22","w":172},"\u0409":{"d":"344,-78v0,74,-66,83,-147,78r-72,-190r-72,190r-53,0r100,-259r50,0r41,98v86,-6,153,5,153,83xm232,-47v37,0,63,1,63,-33v0,-37,-47,-39,-90,-37","w":357},"\u040a":{"d":"328,-79v0,53,-32,79,-89,79r-73,0r0,-114r-87,0r0,114r-50,0r0,-259r50,0r0,98r87,0r0,-98r50,0r0,98v68,-4,112,25,112,82xm216,-47v36,0,63,0,63,-32v0,-29,-27,-38,-63,-35r0,67","w":341},"\u040b":{"d":"180,-66v3,-50,-31,-47,-80,-47r0,113r-50,0r0,-210r-46,0r0,-49r142,0r0,49r-46,0r0,49v84,-4,130,15,130,94r0,67r-50,0r0,-66","w":246},"\u040c":{"d":"29,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259xm132,-347r57,0r-65,69r-34,0","w":223},"\u040e":{"d":"102,-59r-92,-200r56,0r60,145r50,-145r51,0r-69,185v-20,80,-100,108,-154,42r33,-32v20,26,48,30,65,5xm87,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u040f":{"d":"29,0r0,-259r50,0r0,215r87,0r0,-215r50,0r0,259r-71,0r0,39r-46,0r0,-39r-70,0","w":244},"\u0410":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"\u0411":{"d":"191,-79v3,83,-78,82,-162,79r0,-259r136,0r0,48r-86,0r0,50v69,-4,109,21,112,82xm79,-47v37,0,64,-1,64,-32v0,-28,-25,-40,-64,-38r0,70","w":204},"\u0412":{"d":"191,-75v0,49,-33,76,-89,75r-72,0r0,-259v75,-2,142,1,142,67v0,24,-10,38,-26,50v28,12,45,32,45,67xm125,-185v1,-23,-20,-29,-46,-27r0,55v26,1,46,-5,46,-28xm143,-77v0,-30,-27,-38,-64,-36r0,66v35,0,64,-1,64,-30","w":208},"\u0413":{"d":"29,-259r129,0r0,49r-80,0r0,210r-49,0r0,-259","w":166},"\u0414":{"d":"114,-259r49,0r83,213r29,0r0,85r-47,0r0,-39r-178,0r0,39r-48,0r0,-85r29,0xm139,-190r-57,144r113,0","w":277},"\u0415":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"\u0416":{"d":"143,-115r-7,-7r-72,122r-59,0r96,-150r-87,-109r59,0r70,93r0,-93r50,0r0,93r70,-93r60,0r-87,109r95,150r-58,0r-73,-122r-7,7r0,115r-50,0r0,-115","w":336},"\u0417":{"d":"175,-73v0,64,-71,98,-129,71v-13,-6,-27,-19,-42,-38r38,-27v20,37,82,38,84,-9v0,-33,-24,-39,-64,-37r0,-44v52,14,69,-61,20,-63v-11,0,-22,5,-34,16r-29,-32v42,-51,144,-35,142,39v-1,29,-8,39,-32,55v30,13,46,36,46,69","w":192},"\u0418":{"d":"218,-259r0,259r-49,0r0,-162r-97,162r-43,0r0,-259r50,0r0,168r97,-168r42,0","w":247},"\u0419":{"d":"218,-259r0,259r-49,0r0,-162r-97,162r-43,0r0,-259r50,0r0,168r97,-168r42,0xm93,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":247},"\u041a":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"\u041b":{"d":"197,0r-72,-190r-72,190r-53,0r100,-259r50,0r99,259r-52,0","w":249},"\u041c":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"\u041d":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"\u041e":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88","w":302},"\u041f":{"d":"29,-259r187,0r0,259r-50,0r0,-213r-87,0r0,213r-50,0r0,-259","w":244},"\u0420":{"d":"183,-184v-3,56,-35,77,-104,74r0,110r-50,0r0,-259v82,-3,158,-1,154,75xm135,-184v0,-26,-26,-26,-56,-26r0,52v30,1,56,2,56,-26","w":201},"\u0421":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137","w":280},"\u0422":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"\u0423":{"d":"102,-59r-92,-200r56,0r60,145r50,-145r51,0r-69,185v-20,80,-100,108,-154,42r33,-32v20,26,48,30,65,5","w":230},"\u0424":{"d":"8,-147v0,-58,34,-80,101,-78r0,-34r50,0r0,34v66,-3,106,22,104,77v-2,60,-37,80,-104,78r0,70r-50,0r0,-70v-62,1,-101,-20,-101,-77xm55,-147v0,31,23,34,54,33r0,-66v-32,-1,-54,3,-54,33xm216,-147v0,-30,-24,-34,-57,-33r0,66v34,2,57,-3,57,-33","w":271},"\u0425":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"\u0426":{"d":"29,0r0,-259r50,0r0,215r87,0r0,-215r50,0r0,215r52,0r0,83r-46,0r0,-39r-193,0","w":270},"\u0427":{"d":"63,-259v2,51,-13,107,50,98r30,0r0,-98r49,0r0,259r-49,0r0,-113v-83,3,-132,-14,-130,-94r0,-52r50,0","w":221},"\u0428":{"d":"148,-44r0,-215r50,0r0,215r70,0r0,-215r50,0r0,259r-289,0r0,-259r50,0r0,215r69,0","w":347},"\u0429":{"d":"264,-44r0,-215r50,0r0,215r53,0r0,83r-46,0r0,-39r-296,0r0,-259r50,0r0,215r69,0r0,-215r50,0r0,215r70,0","w":368},"\u042a":{"d":"222,-79v0,50,-32,79,-90,79r-72,0r0,-212r-58,0r0,-47r107,0r0,98v68,-4,113,22,113,82xm109,-47v35,0,64,0,64,-33v0,-27,-26,-39,-64,-37r0,70","w":235},"\u042b":{"d":"227,-259r49,0r0,259r-49,0r0,-259xm191,-79v0,53,-32,79,-89,79r-73,0r0,-259r50,0r0,98v68,-4,112,21,112,82xm79,-47v37,0,63,1,63,-33v0,-27,-25,-39,-63,-37r0,70","w":304},"\u042c":{"d":"191,-79v0,53,-32,79,-89,79r-73,0r0,-259r50,0r0,98v68,-4,112,21,112,82xm79,-47v37,0,63,1,63,-33v0,-27,-25,-39,-63,-37r0,70","w":204},"\u042d":{"d":"212,-105v-16,72,-117,86,-164,27r-33,35v33,33,58,48,112,50v80,2,137,-59,137,-137v0,-99,-104,-164,-199,-122v-20,9,-37,22,-51,39r34,33v45,-63,156,-38,164,30r-99,0r0,45r99,0","w":280},"\u042e":{"d":"245,7v-67,0,-131,-52,-133,-120r-34,0r0,113r-49,0r0,-259r49,0r0,98r34,0v24,-65,62,-101,133,-104v71,-3,134,63,134,137v0,74,-62,136,-134,135xm245,-41v46,0,84,-41,84,-88v0,-46,-38,-89,-85,-88v-46,1,-84,40,-84,89v0,50,39,87,85,87","w":395},"\u042f":{"d":"22,-180v0,-81,72,-82,160,-79r0,259r-49,0r0,-104r-13,0r-52,104r-53,0r58,-112v-34,-10,-51,-32,-51,-68xm74,-181v-1,30,28,29,59,29r0,-58v-33,-1,-59,-1,-59,29","w":211},"\u0430":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"\u0431":{"d":"118,5v-130,0,-140,-243,-24,-264v20,-4,86,-7,113,-10r0,45v-71,7,-151,-9,-150,78v32,-90,163,-44,163,48v0,57,-44,103,-102,103xm119,-40v31,0,52,-24,52,-56v0,-32,-22,-55,-52,-55v-29,-1,-52,25,-52,55v0,33,21,56,52,56","w":234},"\u0432":{"d":"176,-53v1,68,-85,51,-152,53r0,-191v62,1,143,-11,142,48v0,19,-9,33,-28,41v25,9,38,25,38,49xm115,-135v1,-22,-19,-25,-43,-23r0,42v21,1,43,-1,43,-19xm122,-56v1,-23,-23,-27,-50,-25r0,44v23,1,49,0,50,-19","w":192},"\u0433":{"d":"24,-191r112,0r0,45r-64,0r0,146r-48,0r0,-191","w":143},"\u0434":{"d":"49,0r0,33r-43,0r0,-74r29,0r66,-150r31,0r67,150r29,0r0,74r-46,0r0,-33r-133,0xm148,-41r-31,-80r-33,80r64,0","w":234},"\u0435":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0","w":230},"\u0436":{"d":"121,0v-2,-22,6,-54,-5,-68r-57,68r-64,0r87,-98r-86,-93r59,0r66,71r0,-71r48,0r0,71r66,-71r59,0r-86,93r87,98r-64,0r-57,-68v-11,13,-2,46,-5,68r-48,0","w":290},"\u0437":{"d":"94,-59v0,-17,-17,-24,-38,-22r0,-34v36,9,45,-38,12,-40v-8,0,-18,4,-30,12r-19,-33v38,-35,121,-24,120,33v0,17,-9,31,-27,41v67,25,31,107,-39,107v-26,0,-48,-7,-65,-22r27,-33v19,17,59,18,59,-9","w":162},"\u0438":{"d":"50,0r-26,0r0,-191r47,0r0,112r98,-112r23,0r0,191r-47,0r0,-110"},"\u0439":{"d":"50,0r-26,0r0,-191r47,0r0,112r98,-112r23,0r0,191r-47,0r0,-110xm77,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0"},"\u043a":{"d":"24,-191r48,0r0,71r66,-71r59,0r-85,93r86,98r-64,0r-57,-68v-11,13,-2,46,-5,68r-48,0r0,-191","w":193},"\u043b":{"d":"195,0r-49,0r-48,-121r-48,121r-49,0r82,-191r31,0","w":196},"\u043c":{"d":"141,-71r59,-120r32,0r47,191r-46,0r-26,-112r-57,112r-20,0r-55,-112r-26,112r-47,0r48,-191r32,0","w":281},"\u043d":{"d":"72,-122r72,0r0,-69r48,0r0,191r-48,0r0,-79r-72,0r0,79r-48,0r0,-191r48,0r0,69"},"\u043e":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56","w":230},"\u043f":{"d":"72,0r-48,0r0,-191r168,0r0,191r-48,0r0,-145r-72,0r0,145"},"\u0440":{"d":"222,-95v7,79,-97,133,-150,75r0,90r-48,0r0,-261r48,0r0,21v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"\u0441":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100","w":230},"\u0442":{"d":"7,-191r178,0r0,45r-63,0r0,146r-48,0r0,-146r-67,0r0,-45","w":192},"\u0443":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84","w":208},"\u0444":{"d":"349,-95v0,76,-84,132,-144,79r0,86r-47,0r0,-86v-60,54,-144,-2,-144,-79v0,-79,87,-132,144,-78r0,-92r47,0r0,92v56,-53,144,-5,144,78xm252,-39v28,0,49,-26,49,-57v0,-31,-20,-56,-50,-56v-28,0,-47,25,-47,58v0,31,19,55,48,55xm111,-38v29,-1,49,-24,48,-56v0,-34,-16,-55,-47,-57v-30,-2,-50,26,-50,56v0,30,20,58,49,57","w":362},"\u0445":{"d":"7,-191r56,0r37,52r38,-52r55,0r-65,90r73,101r-55,0r-46,-63r-45,63r-55,0r73,-101","w":201},"\u0446":{"d":"24,0r0,-191r48,0r0,145r72,0r0,-145r48,0r0,145r48,0r0,80r-45,0r0,-34r-171,0","w":242},"\u0447":{"d":"128,-76v-64,2,-122,-2,-120,-64r0,-51r49,0v1,35,-10,76,33,72r38,0r0,-72r48,0r0,191r-48,0r0,-76","w":200},"\u0448":{"d":"300,0r-276,0r0,-191r48,0r0,145r66,0r0,-145r48,0r0,145r66,0r0,-145r48,0r0,191","w":324},"\u0449":{"d":"300,-46r49,0r0,80r-46,0r0,-34r-279,0r0,-191r48,0r0,145r66,0r0,-145r48,0r0,145r66,0r0,-145r48,0r0,145","w":351},"\u044a":{"d":"197,-61v3,71,-75,62,-147,61r0,-149r-46,0r0,-42r94,0r0,69v60,-4,97,9,99,61xm98,-37v26,1,47,0,48,-22v2,-24,-23,-25,-48,-24r0,46","w":209},"\u044b":{"d":"171,-61v3,72,-76,61,-147,61r0,-191r48,0r0,69v60,-4,98,8,99,61xm72,-37v25,1,48,1,48,-22v0,-24,-23,-25,-48,-24r0,46xm204,-191r48,0r0,191r-48,0r0,-191","w":276},"\u044c":{"d":"171,-61v3,72,-76,61,-147,61r0,-191r48,0r0,69v60,-4,98,8,99,61xm72,-37v25,1,48,1,48,-22v0,-24,-23,-25,-48,-24r0,46","w":183},"\u044d":{"d":"210,-95v0,98,-140,135,-195,60r38,-26v26,34,93,31,106,-15r-64,0r0,-41r64,0v-18,-41,-74,-46,-106,-14r-40,-22v55,-79,197,-42,197,58","w":224},"\u044e":{"d":"195,5v-48,0,-89,-37,-97,-77r-26,0r0,72r-48,0r0,-191r48,0r0,76r26,0v9,-45,48,-80,97,-81v54,-1,101,45,101,100v0,55,-45,101,-101,101xm196,-40v31,0,52,-24,52,-56v0,-31,-22,-55,-52,-55v-30,0,-52,24,-52,55v0,33,21,56,52,56","w":311},"\u044f":{"d":"21,-130v1,-65,68,-64,142,-61r0,191r-48,0r0,-69r-9,0r-46,69r-56,0r53,-78v-19,-6,-37,-27,-36,-52xm115,-105r0,-46v-23,-2,-44,2,-44,23v0,19,20,25,44,23","w":187},"\u0451":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm51,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u0452":{"d":"114,-152v-61,0,-37,91,-42,152r-48,0r0,-215r-27,0r0,-31r27,0r0,-19r48,0r0,19r61,0r0,31r-61,0r0,43v43,-45,126,-24,122,46v-5,88,30,235,-86,194r0,-38v22,11,43,4,39,-26v-7,-56,22,-156,-33,-156"},"\u0453":{"d":"24,-191r112,0r0,45r-64,0r0,146r-48,0r0,-191xm87,-296r57,0r-65,69r-34,0","w":143},"\u0454":{"d":"15,-95v0,98,140,135,195,60r-38,-26v-26,34,-93,31,-106,-15r64,0r0,-41r-64,0v18,-41,74,-46,106,-14r40,-22v-55,-79,-197,-42,-197,58","w":224},"\u0455":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58","w":158},"\u0456":{"d":"12,-239v-1,-16,15,-31,31,-31v16,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-30,-15,-31,-31xm19,-191r48,0r0,191r-48,0r0,-191","w":86},"\u0457":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-21,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm57,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":86},"\u0458":{"d":"16,-239v-1,-16,15,-31,31,-31v17,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-31,-14,-31,-31xm-15,30v20,10,38,6,38,-20r0,-201r48,0r0,197v5,59,-35,82,-86,62r0,-38","w":93},"\u0459":{"d":"268,-61v1,63,-57,63,-122,61r-48,-121r-48,121r-49,0r82,-191r31,0r28,69v66,-3,125,-1,126,61xm178,-37v24,1,38,-3,40,-22v2,-28,-32,-24,-59,-24","w":280},"\u045a":{"d":"291,-61v3,72,-76,61,-147,61r0,-79r-72,0r0,79r-48,0r0,-191r48,0r0,69r72,0r0,-69r48,0r0,69v62,-3,97,8,99,61xm192,-37v26,1,47,0,48,-22v2,-24,-23,-25,-48,-24r0,46","w":303},"\u045b":{"d":"113,-152v-60,0,-36,92,-41,152r-48,0r0,-215r-27,0r0,-31r27,0r0,-19r48,0r0,19r61,0r0,31r-61,0r0,43v43,-45,122,-24,122,46r0,126r-47,0v-7,-56,22,-152,-34,-152"},"\u045c":{"d":"24,-191r48,0r0,71r66,-71r59,0r-85,93r86,98r-64,0r-57,-68v-11,13,-2,46,-5,68r-48,0r0,-191xm125,-295r57,0r-65,69r-34,0","w":193},"\u045e":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm75,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":208},"\u045f":{"d":"24,0r0,-191r48,0r0,145r72,0r0,-145r48,0r0,191r-62,0r0,34r-45,0r0,-34r-61,0"},"\u0490":{"d":"29,-259r88,0r0,-37r47,0r0,86r-86,0r0,210r-49,0r0,-259","w":172},"\u0491":{"d":"24,-191r77,0r0,-28r45,0r0,73r-74,0r0,146r-48,0r0,-191","w":154},"\u1e80":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm154,-347r42,69r-34,0r-65,-69r57,0","w":323},"\u1e81":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm135,-295r42,69r-34,0r-65,-69r57,0","w":287},"\u1e82":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm171,-347r57,0r-65,69r-34,0","w":323},"\u1e83":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm152,-295r57,0r-65,69r-34,0","w":287},"\u1e84":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm98,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm176,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":323},"\u1e85":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm80,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm158,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":287},"\u1ef2":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm103,-347r42,69r-34,0r-65,-69r57,0","w":223},"\u1ef3":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm96,-295r42,69r-34,0r-65,-69r57,0","w":208},"\u2015":{"d":"-2,-82r0,-43r274,0r0,43r-274,0","w":270},"\u201b":{"d":"74,-265r-45,0v-2,45,4,73,25,99r18,-14v-9,-12,-12,-18,-16,-35r18,0r0,-50","w":100},"\u203e":{"d":"-7,-329r216,0r0,13r-216,0r0,-13","w":201},"\u20a4":{"d":"128,-193v-3,-38,-51,-33,-50,1v0,5,2,12,6,23r64,0r0,31r-53,0v1,4,2,9,4,17r49,0r0,31r-45,0v-1,13,-5,28,-12,45v23,3,50,14,56,-14r45,0v-1,35,-32,68,-68,66v-31,-2,-72,-14,-99,-1r-16,-42v10,-4,19,-7,28,-8v10,-17,15,-32,16,-46r-44,0r0,-31r41,0v-1,-3,-4,-9,-7,-17r-34,0r0,-31r23,0v-28,-76,68,-125,124,-77v15,13,22,30,22,53r-50,0","w":201},"\u2116":{"d":"29,-259r47,0r111,171r0,-171r50,0r0,259r-48,0r-110,-170r0,170r-50,0r0,-259xm324,-177v33,0,62,28,62,61v0,33,-29,62,-62,62v-33,0,-61,-29,-61,-62v0,-33,28,-61,61,-61xm324,-86v15,0,30,-15,30,-30v0,-15,-14,-29,-30,-29v-16,0,-30,14,-30,29v0,16,14,30,30,30xm263,-31r123,0r0,31r-123,0r0,-31","w":399},"\u212e":{"d":"16,-93v0,-86,99,-132,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-55,2,-93,-44,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0"},"\u215b":{"d":"77,7r110,-272r30,0r-110,272r-30,0xm36,-262r47,0r0,133r-33,0r0,-105r-34,0xm240,-136v38,0,66,39,34,64v41,23,17,81,-33,75v-50,6,-77,-51,-35,-75v-31,-24,-5,-64,34,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-5,-12,-16,-12v-8,1,-15,4,-15,12v0,8,6,14,15,14xm218,-40v0,10,10,16,22,16v15,0,22,-6,22,-16v0,-11,-10,-17,-21,-17v-10,0,-23,6,-23,17","w":302},"\u215c":{"d":"49,-212v30,4,35,-26,13,-26v-8,0,-14,5,-18,13r-32,0v1,-51,92,-52,96,-5v0,11,-5,20,-16,26v47,20,17,78,-32,78v-29,0,-53,-18,-53,-46r32,0v0,26,43,24,44,3v0,-12,-11,-18,-34,-18r0,-25xm81,7r110,-272r30,0r-110,272r-30,0xm241,-136v39,-3,63,40,33,64v41,23,17,81,-33,75v-52,6,-75,-51,-35,-75v-30,-25,-4,-69,35,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-5,-12,-16,-12v-8,1,-15,4,-15,12v-1,8,7,14,15,14xm218,-40v0,10,10,16,22,16v15,0,23,-6,23,-16v-1,-22,-44,-22,-45,0","w":302},"\u215d":{"d":"81,7r110,-272r30,0r-110,272r-30,0xm81,-171v0,-18,-24,-24,-37,-11r-27,-5r19,-75r75,0r0,27r-50,0r-5,19v32,-3,58,15,58,44v2,55,-99,62,-109,9r34,0v8,15,43,13,42,-8xm240,-136v38,0,66,39,34,64v41,23,17,81,-33,75v-50,6,-77,-51,-35,-75v-31,-24,-5,-64,34,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-6,-12,-17,-12v-8,1,-14,4,-14,12v0,8,6,14,15,14xm218,-40v0,10,10,16,22,16v15,0,22,-6,22,-16v0,-11,-10,-17,-21,-17v-10,0,-23,6,-23,17","w":302},"\u215e":{"d":"70,7r110,-272r30,0r-110,272r-30,0xm13,-262r104,0r0,14r-70,122r-26,-14r55,-95r-63,0r0,-27xm240,-136v38,0,66,39,34,64v41,23,17,81,-33,75v-53,6,-75,-51,-35,-75v-31,-24,-5,-64,34,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-6,-12,-17,-12v-8,1,-14,4,-14,12v0,8,6,14,15,14xm218,-40v0,10,10,16,22,16v15,0,22,-6,22,-16v0,-11,-10,-17,-21,-17v-10,0,-23,6,-23,17","w":302},"\u2302":{"d":"27,0r0,-111r81,-92r81,92r0,111r-162,0xm41,-14r134,0r0,-91r-67,-76r-67,76r0,91"},"\u2310":{"d":"196,-189r0,44r-132,0r0,75r-44,0r0,-119r176,0"},"\u2320":{"d":"130,-287v-12,2,-9,10,-9,31r0,347r-26,0r0,-319v-1,-40,18,-74,52,-77v26,-2,32,33,8,35v-14,1,-15,-15,-25,-17"},"\u2321":{"d":"86,72v12,-2,9,-10,9,-31r0,-346r26,0r0,318v1,41,-18,75,-52,78v-25,2,-33,-33,-9,-36v13,-1,17,15,26,17"},"\u2500":{"d":"260,-94r-263,0r0,-31r263,0r0,31","w":256},"\u2502":{"d":"79,109r0,-437r31,0r0,437r-31,0","w":223},"\u250c":{"d":"260,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0","w":256},"\u2510":{"d":"113,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203","w":256},"\u2514":{"d":"113,-94r0,-234r31,0r0,203r116,0r0,31r-147,0","w":256},"\u2518":{"d":"144,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234","w":256},"\u251c":{"d":"113,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0","w":256},"\u2524":{"d":"113,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0","w":256},"\u252c":{"d":"113,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203","w":256},"\u2534":{"d":"260,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31","w":256},"\u253c":{"d":"113,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203","w":256},"\u2550":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u2551":{"d":"146,109r0,-437r31,0r0,437r-31,0xm80,109r0,-437r30,0r0,437r-30,0","w":256},"\u2552":{"d":"113,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":256},"\u2553":{"d":"80,109r0,-234r180,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-30,0","w":256},"\u2554":{"d":"110,109r-30,0r0,-267r180,0r0,31r-150,0r0,236xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0","w":256},"\u2555":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169","w":256},"\u2556":{"d":"79,109r0,-203r-82,0r0,-31r180,0r0,234r-31,0r0,-203r-36,0r0,203r-31,0","w":256},"\u2557":{"d":"146,109r0,-236r-149,0r0,-31r180,0r0,267r-31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169","w":256},"\u2558":{"d":"113,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0","w":256},"\u2559":{"d":"260,-94r-180,0r0,-234r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":256},"\u255a":{"d":"110,-328r0,237r150,0r0,31r-180,0r0,-268r30,0xm177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170","w":256},"\u255b":{"d":"144,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268","w":256},"\u255c":{"d":"177,-94r-180,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,234","w":256},"\u255d":{"d":"146,-328r31,0r0,268r-180,0r0,-31r149,0r0,-237xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0","w":256},"\u255e":{"d":"113,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":256},"\u255f":{"d":"146,109r0,-437r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0xm80,109r0,-437r30,0r0,437r-30,0","w":256},"\u2560":{"d":"80,109r0,-437r30,0r0,437r-30,0xm146,-127r0,-201r31,0r0,170r83,0r0,31r-114,0xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":256},"\u2561":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169","w":256},"\u2562":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,437r-31,0xm146,109r0,-437r31,0r0,437r-31,0","w":256},"\u2563":{"d":"146,109r0,-437r31,0r0,437r-31,0xm110,-328r0,201r-113,0r0,-31r82,0r0,-170r31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169","w":256},"\u2564":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm113,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169","w":256},"\u2565":{"d":"79,109r0,-203r-82,0r0,-31r263,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-31,0","w":256},"\u2566":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":256},"\u2567":{"d":"260,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u2568":{"d":"260,-94r-263,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":256},"\u2569":{"d":"110,-127r-113,0r0,-31r82,0r0,-170r31,0r0,201xm260,-127r-114,0r0,-201r31,0r0,170r83,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u256a":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0r0,-169","w":256},"\u256b":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0r0,-203r-36,0r0,203r-31,0","w":256},"\u256c":{"d":"177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0","w":256},"\u2580":{"d":"260,-109r-263,0r0,-219r263,0r0,219","w":256},"\u2584":{"d":"260,109r-263,0r0,-218r263,0r0,218","w":256},"\u2588":{"d":"-3,109r0,-437r263,0r0,437r-263,0","w":256},"\u258c":{"d":"-3,109r0,-437r131,0r0,437r-131,0","w":256},"\u2590":{"d":"128,109r0,-437r132,0r0,437r-132,0","w":256},"\u2591":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm63,-284r22,0r0,22r-22,0r0,-22xm150,-284r22,0r0,22r-22,0r0,-22xm238,-284r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm238,-196r22,0r0,22r-22,0r0,-22xm150,-196r22,0r0,22r-22,0r0,-22xm63,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-109r22,0r0,22r-22,0r0,-22xm150,-109r22,0r0,22r-22,0r0,-22xm63,-109r22,0r0,22r-22,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm63,-21r22,0r0,22r-22,0r0,-22xm150,-21r22,0r0,22r-22,0r0,-22xm238,-21r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm63,67r22,0r0,22r-22,0r0,-22xm150,67r22,0r0,22r-22,0r0,-22xm238,67r22,0r0,22r-22,0r0,-22","w":256},"\u2592":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm63,-328r21,0r0,22r-21,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm150,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm238,-328r22,0r0,22r-22,0r0,-22xm-3,-284r22,0r0,22r-22,0r0,-22xm41,-284r22,0r0,22r-22,0r0,-22xm84,-284r22,0r0,22r-22,0r0,-22xm128,-284r22,0r0,22r-22,0r0,-22xm172,-284r22,0r0,22r-22,0r0,-22xm216,-284r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm63,-240r21,0r0,22r-21,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm150,-240r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm238,-240r22,0r0,22r-22,0r0,-22xm-3,-196r22,0r0,22r-22,0r0,-22xm41,-196r22,0r0,22r-22,0r0,-22xm84,-196r22,0r0,22r-22,0r0,-22xm128,-196r22,0r0,22r-22,0r0,-22xm172,-196r22,0r0,22r-22,0r0,-22xm216,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm63,-152r21,0r0,22r-21,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm150,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-152r22,0r0,22r-22,0r0,-22xm-3,-109r22,0r0,22r-22,0r0,-22xm84,-109r22,0r0,22r-22,0r0,-22xm128,-109r22,0r0,22r-22,0r0,-22xm172,-109r22,0r0,22r-22,0r0,-22xm216,-109r22,0r0,22r-22,0r0,-22xm41,-109r22,0r0,22r-22,0r0,-22xm238,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm150,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm63,-65r21,0r0,22r-21,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm-3,-21r22,0r0,22r-22,0r0,-22xm41,-21r22,0r0,22r-22,0r0,-22xm84,-21r22,0r0,22r-22,0r0,-22xm128,-21r22,0r0,22r-22,0r0,-22xm172,-21r22,0r0,22r-22,0r0,-22xm216,-21r22,0r0,22r-22,0r0,-22xm238,23r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm150,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm63,23r21,0r0,22r-21,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm-3,67r22,0r0,22r-22,0r0,-22xm41,67r22,0r0,22r-22,0r0,-22xm84,67r22,0r0,22r-22,0r0,-22xm128,67r22,0r0,22r-22,0r0,-22xm172,67r22,0r0,22r-22,0r0,-22xm216,67r22,0r0,22r-22,0r0,-22","w":256},"\u2593":{"d":"263,-262r0,66r-22,0r0,22r22,0r0,65r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,21r-263,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-66r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r21,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,44r-22,0r0,22r22,0xm22,-284r0,22r22,0r0,-22r-22,0xm66,-284r0,22r22,0r0,-22r-22,0xm110,-284r0,22r21,0r0,-22r-21,0xm153,-284r0,22r22,0r0,-22r-22,0xm197,-284r0,22r22,0r0,-22r-22,0xm241,-240r-22,0r0,22r22,0r0,-22xm197,-240r-22,0r0,22r22,0r0,-22xm153,-240r-22,0r0,22r22,0r0,-22xm110,-240r-22,0r0,22r22,0r0,-22xm66,-240r-22,0r0,22r22,0r0,-22xm22,-196r0,22r22,0r0,-22r-22,0xm66,-196r0,22r22,0r0,-22r-22,0xm110,-196r0,22r21,0r0,-22r-21,0xm153,-196r0,22r22,0r0,-22r-22,0xm197,-196r0,22r22,0r0,-22r-22,0xm66,-152r-22,0r0,22r22,0r0,-22xm88,-152r0,22r22,0r0,-22r-22,0xm131,-152r0,22r22,0r0,-22r-22,0xm175,-152r0,22r22,0r0,-22r-22,0xm219,-152r0,22r22,0r0,-22r-22,0xm22,-109r0,22r22,0r0,-22r-22,0xm110,-109r0,22r21,0r0,-22r-21,0xm88,-87r0,-22r-22,0r0,22r22,0xm153,-109r0,22r22,0r0,-22r-22,0xm197,-109r0,22r22,0r0,-22r-22,0xm241,-43r0,-22r-22,0r0,22r22,0xm197,-43r0,-22r-22,0r0,22r22,0xm153,-43r0,-22r-22,0r0,22r22,0xm110,-43r0,-22r-22,0r0,22r22,0xm66,-43r0,-22r-22,0r0,22r22,0xm22,-21r0,22r22,0r0,-22r-22,0xm66,-21r0,22r22,0r0,-22r-22,0xm110,-21r0,22r21,0r0,-22r-21,0xm153,-21r0,22r22,0r0,-22r-22,0xm197,-21r0,22r22,0r0,-22r-22,0xm241,45r0,-22r-22,0r0,22r22,0xm197,45r0,-22r-22,0r0,22r22,0xm153,45r0,-22r-22,0r0,22r22,0xm110,45r0,-22r-22,0r0,22r22,0xm66,45r0,-22r-22,0r0,22r22,0xm22,67r0,22r22,0r0,-22r-22,0xm66,67r0,22r22,0r0,-22r-22,0xm110,67r0,22r21,0r0,-22r-21,0xm153,67r0,22r22,0r0,-22r-22,0xm197,67r0,22r22,0r0,-22r-22,0","w":262},"\u25a0":{"d":"26,-166r166,0r0,166r-166,0r0,-166","w":217},"\u25ac":{"d":"0,-124r360,0r0,68r-360,0r0,-68","w":360},"\u25b2":{"d":"53,0r125,-249r125,249r-250,0","w":356},"\u25ba":{"d":"51,-249r255,127r-255,127r0,-254","w":356},"\u25bc":{"d":"303,-244r-125,249r-125,-249r250,0","w":356},"\u25c4":{"d":"306,-249r0,254r-255,-127","w":356},"\u25cb":{"d":"108,-179v41,0,77,35,77,77v0,42,-36,78,-77,78v-41,0,-77,-36,-77,-78v0,-42,36,-77,77,-77xm108,-37v34,0,64,-31,64,-65v0,-34,-30,-64,-64,-64v-34,0,-64,31,-64,64v0,33,30,65,64,65"},"\u25d8":{"d":"22,0r0,-172r172,0r0,172r-172,0xm108,-51v19,0,35,-16,35,-35v0,-19,-16,-36,-35,-36v-19,0,-36,17,-36,36v0,19,17,35,36,35"},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm108,-24v41,0,78,-36,78,-77v0,-41,-37,-78,-78,-78v-41,0,-77,36,-77,78v0,42,36,77,77,77xm108,-166v34,0,64,30,64,65v0,34,-30,64,-64,64v-34,0,-64,-30,-64,-64v0,-34,30,-65,64,-65"},"\u263a":{"d":"184,-203v60,0,112,52,112,112v0,60,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm184,5v50,0,96,-46,96,-96v0,-50,-45,-96,-96,-96v-51,0,-96,45,-96,96v0,51,46,96,96,96xm141,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm227,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm132,-55r11,-6v16,33,66,34,81,0r12,6v-22,46,-82,45,-104,0","w":367},"\u263b":{"d":"189,-203v60,0,112,51,112,112v0,61,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm146,-100v8,0,15,-6,15,-14v0,-8,-7,-14,-15,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14xm232,-100v8,0,15,-7,15,-14v0,-7,-7,-14,-15,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm138,-55v21,46,81,45,103,0r-11,-6v-16,33,-66,34,-81,0","w":378},"\u263c":{"d":"159,-285r13,0r0,59v22,1,42,9,61,25r51,-50r9,9r-50,51v16,21,25,42,25,63r59,0r0,12r-59,0v-2,22,-10,42,-25,61r50,51r-10,9r-50,-49v-20,15,-40,22,-61,24r0,59r-13,0r0,-59v-24,-3,-44,-11,-61,-24r-52,49r-9,-9r50,-51v-15,-18,-23,-39,-25,-62r-59,0r0,-12r59,0v2,-23,10,-43,25,-61r-50,-51r9,-10r51,50v21,-15,42,-24,62,-25r0,-59xm165,-33v48,0,90,-42,90,-90v0,-48,-42,-90,-90,-90v-48,0,-90,42,-90,90v0,48,42,90,90,90","w":330},"\u2640":{"d":"183,-168v0,45,-36,81,-79,83r0,65r73,0r0,9r-73,0r0,70r-10,0r0,-70r-73,0r0,-9r73,0r0,-65v-42,-2,-78,-37,-78,-83v0,-45,38,-84,83,-84v45,0,84,39,84,84xm99,-93v40,0,75,-35,75,-75v0,-40,-35,-75,-75,-75v-40,0,-75,35,-75,75v0,40,35,75,75,75","w":198},"\u2642":{"d":"96,-191v49,-16,53,-20,99,-50r5,2v4,42,13,78,28,108r-4,3v-17,-22,-30,-46,-39,-73r-52,111v24,9,51,42,51,76v0,44,-38,74,-81,74v-46,0,-85,-37,-85,-81v0,-52,53,-94,107,-72r51,-112v-25,11,-52,16,-80,18r0,-4xm162,-21v0,-38,-33,-70,-69,-70v-36,-1,-68,32,-68,67v-1,38,32,70,69,70v37,0,68,-31,68,-67","w":240},"\u2660":{"d":"95,-82v-15,46,-81,43,-84,-5v0,-18,11,-36,33,-54v31,-25,48,-50,52,-75v5,54,79,73,85,128v2,21,-18,41,-38,40v-18,0,-33,-12,-45,-34v-1,51,22,72,67,75r1,7r-140,0r2,-7v44,0,69,-29,67,-75","w":191},"\u2663":{"d":"179,-48v-28,-2,-44,-17,-58,-42v2,55,22,76,71,84r2,6r-149,0r1,-6v50,-7,70,-31,71,-84v-10,24,-30,41,-58,42v-25,1,-48,-22,-48,-49v0,-37,36,-64,71,-40v-27,-33,-4,-79,36,-79v41,-1,66,48,37,79v36,-23,71,2,72,39v1,27,-21,51,-48,50","w":238},"\u2665":{"d":"107,-172v4,-56,97,-57,95,0v-1,36,-14,47,-37,78v-32,43,-53,75,-58,98v-12,-52,-61,-94,-90,-146v-18,-34,3,-74,39,-74v24,0,41,15,51,44","w":212},"\u2666":{"d":"91,-216v23,38,50,74,81,110v-16,15,-70,86,-81,110v-12,-22,-38,-59,-80,-110v38,-45,64,-81,80,-110","w":182},"\u266a":{"d":"5,25v0,-65,101,-89,163,-54r-5,-241r10,0v25,14,96,77,100,105v0,4,-6,12,-10,12v-23,-15,-61,-60,-88,-74r4,242v0,80,-174,94,-174,10","w":277},"\u266b":{"d":"53,33v0,-43,53,-65,93,-42r0,-201r164,-51r0,228v2,48,-21,67,-63,69v-31,1,-49,-18,-50,-46v0,-43,52,-65,93,-42r0,-149r-123,38r0,172v1,45,-22,69,-65,70v-28,0,-49,-18,-49,-46","w":360},"\uf005":{"d":"98,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":119},"\u20ac":{"d":"27,-169v18,-64,87,-111,168,-91r-11,47v-47,-17,-89,12,-105,44r95,0r-7,29r-96,0v-1,10,-1,12,0,22r91,0r-7,29r-76,0v15,38,68,60,116,41r0,50v-80,20,-153,-26,-168,-91r-25,0r7,-29r13,0r0,-22r-20,0r7,-29r18,0","w":201}}});;function microAjax(url,cF){this.bF=function(caller,object){return function(){return caller.apply(object,new Array(object));}}
this.sC=function(object){if(this.r.readyState==4){this.cF(this.r.responseText);}}
this.gR=function(){if(window.ActiveXObject)
return new ActiveXObject('Microsoft.XMLHTTP');else if(window.XMLHttpRequest)
return new XMLHttpRequest();else
return false;}
if(arguments[2])this.pb=arguments[2];else this.pb="";this.cF=cF;this.url=url;this.r=this.gR();if(this.r){this.r.onreadystatechange=this.bF(this.sC,this);if(this.pb!=""){this.r.open("POST",url,true);this.r.setRequestHeader('Content-type','application/x-www-form-urlencoded');this.r.setRequestHeader('Connection','close');}else{this.r.open("GET",url,true);}
this.r.send(this.pb);}}
