/*
 * 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 l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * 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 R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.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(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.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(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.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(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.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 H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.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(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.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(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<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>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();

/*
 * jQuery Styled Select Boxes
 * version: 1.1 (2009/03/24)
 * @requires jQuery v1.2.6 or later
 *
 * Examples and documentation at: http://code.google.com/p/lnet/wiki/jQueryStyledSelectOverview
 *
 * Copyright (c) 2008 Lasar Liepins, liepins.org, liepins@gmail.com
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 */
jQuery.fn.styledSelect=function(settings){settings=jQuery.extend({selectClass:'styledSelect',openSelectClass:'open',optionClass:'option',selectedOptionClass:'selected',closedOptionClass:'closed',firstOptionClass:'first',lastOptionClass:'last',zIndexApply:false,zIndexStart:250,deactiveOnBackgroundClick:true},settings);var currentZIndex=settings.zIndexStart;this.each(function(){var s=jQuery(this);var cs=jQuery('<div></div>').attr('class',settings.selectClass);if(settings.zIndexApply){cs.css('z-index',currentZIndex-2);};var csl=jQuery('<ul></li>');if(settings.zIndexApply){csl.css('z-index',currentZIndex-1);};cs.append(csl);s.hide(0).after(cs);cs=s.next();jQuery('option',s).each(function(){if(jQuery(this).attr('value')==undefined){jQuery(this).attr('value',jQuery(this).text());}});var closedSelect=function(){jQuery('ul',cs).html('');addOption(s.val(),jQuery(':selected',s).text(),clickSelect);cs.removeClass(settings.openSelectClass);jQuery('ul li',cs).removeClass(settings.selectedOptionClass).removeClass(settings.optionClass).addClass(settings.closedOptionClass);if(settings.deactiveOnBackgroundClick){$(document).unbind('mousedown',closedSelect);cs.unbind('mousedown');}};var clickSelect=function(){jQuery('ul',cs).empty();jQuery('option',s).each(function(i){addOption(jQuery(this).val(),jQuery(this).text(),clickOption);});cs.addClass(settings.openSelectClass);jQuery('ul li:first-child',cs).addClass(settings.firstOptionClass);jQuery('ul li:last-child',cs).addClass(settings.lastOptionClass);if(settings.deactiveOnBackgroundClick){$(document).bind('mousedown',closedSelect);cs.bind('mousedown',function(){return false;});}};var clickOption=function(){var val=jQuery(this).attr('OnClick');s.val(val);closedSelect();};var addOption=function(optVal,optName,callBack){var cso=jQuery('<li></li>').attr('OnClick','PresmerovatMutaci("' + optVal + '");').text(optName).click(callBack).addClass(settings.optionClass);if(settings.zIndexApply){cso.css('z-index',currentZIndex);};if(s.val()==optVal){cso.addClass(settings.selectedOptionClass);};jQuery('ul',cs).append(cso);};closedSelect();s.change(closedSelect);currentZIndex-=3;});return this;};

if($.browser.msie && parseInt($.browser.version) === 6)
{
/**
* DD_belatedPNG: Adds IE6 support: PNG images for CSS background-image and HTML <IMG/>.
* Author: Drew Diller
* Email: drew.diller@gmail.com
* URL: http://www.dillerdesign.com/experiment/DD_belatedPNG/
* Version: 0.0.8a
* Licensed under the MIT License: http://dillerdesign.com/experiment/DD_belatedPNG/#license
**/
var DD_belatedPNG={ns:"DD_belatedPNG",imgSize:{},delay:10,nodesFixed:0,createVmlNameSpace:function(){if(document.namespaces&&!document.namespaces[this.ns]){document.namespaces.add(this.ns,"urn:schemas-microsoft-com:vml")}},createVmlStyleSheet:function(){var b,a;b=document.createElement("style");b.setAttribute("media","screen");document.documentElement.firstChild.insertBefore(b,document.documentElement.firstChild.firstChild);if(b.styleSheet){b=b.styleSheet;b.addRule(this.ns+"\\:*","{behavior:url(#default#VML)}");b.addRule(this.ns+"\\:shape","position:absolute;");b.addRule("img."+this.ns+"_sizeFinder","behavior:none; border:none; position:absolute; z-index:-1; top:-10000px; visibility:hidden;");this.screenStyleSheet=b;a=document.createElement("style");a.setAttribute("media","print");document.documentElement.firstChild.insertBefore(a,document.documentElement.firstChild.firstChild);a=a.styleSheet;a.addRule(this.ns+"\\:*","{display: none !important;}");a.addRule("img."+this.ns+"_sizeFinder","{display: none !important;}")}},readPropertyChange:function(){var b,c,a;b=event.srcElement;if(!b.vmlInitiated){return}if(event.propertyName.search("background")!=-1||event.propertyName.search("border")!=-1){DD_belatedPNG.applyVML(b)}if(event.propertyName=="style.display"){c=(b.currentStyle.display=="none")?"none":"block";for(a in b.vml){if(b.vml.hasOwnProperty(a)){b.vml[a].shape.style.display=c}}}if(event.propertyName.search("filter")!=-1){DD_belatedPNG.vmlOpacity(b)}},vmlOpacity:function(b){if(b.currentStyle.filter.search("lpha")!=-1){var a=b.currentStyle.filter;a=parseInt(a.substring(a.lastIndexOf("=")+1,a.lastIndexOf(")")),10)/100;b.vml.color.shape.style.filter=b.currentStyle.filter;b.vml.image.fill.opacity=a}},handlePseudoHover:function(a){setTimeout(function(){DD_belatedPNG.applyVML(a)},1)},fix:function(a){if(this.screenStyleSheet){var c,b;c=a.split(",");for(b=0;b<c.length;b++){this.screenStyleSheet.addRule(c[b],"behavior:expression(DD_belatedPNG.fixPng(this))")}}},applyVML:function(a){a.runtimeStyle.cssText="";this.vmlFill(a);this.vmlOffsets(a);this.vmlOpacity(a);if(a.isImg){this.copyImageBorders(a)}},attachHandlers:function(i){var d,c,g,e,b,f;d=this;c={resize:"vmlOffsets",move:"vmlOffsets"};if(i.nodeName=="A"){e={mouseleave:"handlePseudoHover",mouseenter:"handlePseudoHover",focus:"handlePseudoHover",blur:"handlePseudoHover"};for(b in e){if(e.hasOwnProperty(b)){c[b]=e[b]}}}for(f in c){if(c.hasOwnProperty(f)){g=function(){d[c[f]](i)};i.attachEvent("on"+f,g)}}i.attachEvent("onpropertychange",this.readPropertyChange)},giveLayout:function(a){a.style.zoom=1;if(a.currentStyle.position=="static"){a.style.position="relative"}},copyImageBorders:function(b){var c,a;c={borderStyle:true,borderWidth:true,borderColor:true};for(a in c){if(c.hasOwnProperty(a)){b.vml.color.shape.style[a]=b.currentStyle[a]}}},vmlFill:function(e){if(!e.currentStyle){return}else{var d,f,g,b,a,c;d=e.currentStyle}for(b in e.vml){if(e.vml.hasOwnProperty(b)){e.vml[b].shape.style.zIndex=d.zIndex}}e.runtimeStyle.backgroundColor="";e.runtimeStyle.backgroundImage="";f=true;if(d.backgroundImage!="none"||e.isImg){if(!e.isImg){e.vmlBg=d.backgroundImage;e.vmlBg=e.vmlBg.substr(5,e.vmlBg.lastIndexOf('")')-5)}else{e.vmlBg=e.src}g=this;if(!g.imgSize[e.vmlBg]){a=document.createElement("img");g.imgSize[e.vmlBg]=a;a.className=g.ns+"_sizeFinder";a.runtimeStyle.cssText="behavior:none; position:absolute; left:-10000px; top:-10000px; border:none; margin:0; padding:0;";c=function(){this.width=this.offsetWidth;this.height=this.offsetHeight;g.vmlOffsets(e)};a.attachEvent("onload",c);a.src=e.vmlBg;a.removeAttribute("width");a.removeAttribute("height");document.body.insertBefore(a,document.body.firstChild)}e.vml.image.fill.src=e.vmlBg;f=false}e.vml.image.fill.on=!f;e.vml.image.fill.color="none";e.vml.color.shape.style.backgroundColor=d.backgroundColor;e.runtimeStyle.backgroundImage="none";e.runtimeStyle.backgroundColor="transparent"},vmlOffsets:function(d){var h,n,a,e,g,m,f,l,j,i,k;h=d.currentStyle;n={W:d.clientWidth+1,H:d.clientHeight+1,w:this.imgSize[d.vmlBg].width,h:this.imgSize[d.vmlBg].height,L:d.offsetLeft,T:d.offsetTop,bLW:d.clientLeft,bTW:d.clientTop};a=(n.L+n.bLW==1)?1:0;e=function(b,p,q,c,s,u){b.coordsize=c+","+s;b.coordorigin=u+","+u;b.path="m0,0l"+c+",0l"+c+","+s+"l0,"+s+" xe";b.style.width=c+"px";b.style.height=s+"px";b.style.left=p+"px";b.style.top=q+"px"};e(d.vml.color.shape,(n.L+(d.isImg?0:n.bLW)),(n.T+(d.isImg?0:n.bTW)),(n.W-1),(n.H-1),0);e(d.vml.image.shape,(n.L+n.bLW),(n.T+n.bTW),(n.W),(n.H),1);g={X:0,Y:0};if(d.isImg){g.X=parseInt(h.paddingLeft,10)+1;g.Y=parseInt(h.paddingTop,10)+1}else{for(j in g){if(g.hasOwnProperty(j)){this.figurePercentage(g,n,j,h["backgroundPosition"+j])}}}d.vml.image.fill.position=(g.X/n.W)+","+(g.Y/n.H);m=h.backgroundRepeat;f={T:1,R:n.W+a,B:n.H,L:1+a};l={X:{b1:"L",b2:"R",d:"W"},Y:{b1:"T",b2:"B",d:"H"}};if(m!="repeat"||d.isImg){i={T:(g.Y),R:(g.X+n.w),B:(g.Y+n.h),L:(g.X)};if(m.search("repeat-")!=-1){k=m.split("repeat-")[1].toUpperCase();i[l[k].b1]=1;i[l[k].b2]=n[l[k].d]}if(i.B>n.H){i.B=n.H}d.vml.image.shape.style.clip="rect("+i.T+"px "+(i.R+a)+"px "+i.B+"px "+(i.L+a)+"px)"}else{d.vml.image.shape.style.clip="rect("+f.T+"px "+f.R+"px "+f.B+"px "+f.L+"px)"}},figurePercentage:function(d,c,f,a){var b,e;e=true;b=(f=="X");switch(a){case"left":case"top":d[f]=0;break;case"center":d[f]=0.5;break;case"right":case"bottom":d[f]=1;break;default:if(a.search("%")!=-1){d[f]=parseInt(a,10)/100}else{e=false}}d[f]=Math.ceil(e?((c[b?"W":"H"]*d[f])-(c[b?"w":"h"]*d[f])):parseInt(a,10));if(d[f]%2===0){d[f]++}return d[f]},fixPng:function(c){c.style.behavior="none";var g,b,f,a,d;if(c.nodeName=="BODY"||c.nodeName=="TD"||c.nodeName=="TR"){return}c.isImg=false;if(c.nodeName=="IMG"){if(c.src.toLowerCase().search(/\.png$/)!=-1){c.isImg=true;c.style.visibility="hidden"}else{return}}else{if(c.currentStyle.backgroundImage.toLowerCase().search(".png")==-1){return}}g=DD_belatedPNG;c.vml={color:{},image:{}};b={shape:{},fill:{}};for(a in c.vml){if(c.vml.hasOwnProperty(a)){for(d in b){if(b.hasOwnProperty(d)){f=g.ns+":"+d;c.vml[a][d]=document.createElement(f)}}c.vml[a].shape.stroked=false;c.vml[a].shape.appendChild(c.vml[a].fill);c.parentNode.insertBefore(c.vml[a].shape,c)}}c.vml.image.shape.fillcolor="none";c.vml.image.fill.type="tile";c.vml.color.fill.on=false;g.attachHandlers(c);g.giveLayout(c);g.giveLayout(c.offsetParent);c.vmlInitiated=true;g.applyVML(c)}};try{document.execCommand("BackgroundImageCache",false,true)}catch(r){}DD_belatedPNG.createVmlNameSpace();DD_belatedPNG.createVmlStyleSheet();
}

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.03
 */

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={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(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}})());

/* add vector fonts */
Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-239.047 -362 396 117","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+FFFC"},"glyphs":{" ":{"w":100,"k":{"\u03ab":7,"\u03a5":7,"\u03a4":7,"\u039b":20,"\u0394":20,"\u0391":20,"\u0386":20,"Y":7,"T":7,"A":20}},"\u067e":{"d":"85,-10r-13,26r-29,-15r14,-26xm79,37r-13,26r-29,-15r14,-26xm45,7r-13,25r-29,-15r14,-26xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u0686":{"d":"69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33xm124,-10r-13,26r-29,-15r14,-26xm118,37r-13,26r-29,-15r14,-26xm84,7r-13,25r-29,-15r14,-26","w":190},"\u0698":{"d":"147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54xm137,-245r-14,25r-28,-15r13,-25xm171,-214r-13,25r-29,-15r13,-25xm131,-198r-13,25r-29,-14r13,-26","w":175},"\u06a9":{"d":"-12,-82v46,5,110,-12,80,-51v-3,-3,-17,-16,-23,-6v-9,-8,-29,-20,-32,-30v-2,-68,64,-73,112,-95r0,30v-27,12,-70,21,-90,37v28,31,67,53,92,89v13,18,26,30,58,26r0,30v-57,8,-68,-41,-97,-67v-1,52,-41,71,-100,67r0,-30","w":185},"\u06af":{"d":"-12,-82v46,5,110,-12,80,-51v-3,-3,-17,-16,-23,-6v-9,-8,-29,-20,-32,-30v-2,-68,64,-73,112,-95r0,30v-27,12,-70,21,-90,37v28,31,67,53,92,89v13,18,26,30,58,26r0,30v-57,8,-68,-41,-97,-67v-1,52,-41,71,-100,67r0,-30xm125,-315r0,29v-40,15,-86,35,-116,55v-3,-25,6,-24,23,-36v24,-17,63,-36,93,-48","w":185},"\u06cc":{"d":"67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54xm87,-16r-14,25r-28,-15r13,-25xm47,-1r-14,26r-28,-15r13,-25","w":87},"\u0621":{"d":"98,-104v-19,-25,-72,-2,-42,18v6,3,14,7,25,11v16,-8,33,-14,50,-19r-9,28v-37,8,-57,19,-80,40v-11,-5,3,-22,9,-28v-10,-7,-29,-12,-30,-25v6,-36,53,-92,86,-48","w":148},"\u0622":{"d":"83,-52v-85,15,-46,-100,-69,-166v-3,-6,-6,-10,-11,-14r22,-34v19,37,3,125,22,177v5,12,21,6,36,7r0,30xm-4,-284v1,-30,46,6,67,-9r2,2v-13,26,-52,1,-69,7","w":82},"\u0623":{"d":"17,-297v5,7,23,17,35,9v-5,17,-34,16,-49,24v0,-5,5,-10,17,-14v-6,-3,-10,-7,-12,-13v2,-10,31,-41,37,-17v0,5,-3,8,-4,11v-6,-6,-21,-7,-24,0xm83,-52v-85,15,-46,-100,-69,-166v-3,-6,-6,-10,-11,-14r22,-34v19,37,3,125,22,177v5,12,21,6,36,7r0,30","w":82},"\u0624":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18xm79,-180v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,4,-3,7,-4,10v-7,-6,-20,-5,-23,1","w":155},"\u0625":{"d":"83,-52v-85,15,-46,-100,-69,-166v-3,-6,-6,-10,-11,-14r22,-34v19,37,3,125,22,177v5,12,21,6,36,7r0,30xm19,1v4,7,22,16,35,9v-7,16,-35,15,-50,24v0,-5,6,-10,18,-14v-6,-3,-11,-7,-12,-13v-1,-8,20,-28,28,-26v10,-1,9,13,4,19v-6,-7,-19,-6,-23,1","w":82},"\u0626":{"d":"67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54xm34,-221v4,7,23,18,35,9v-6,16,-34,16,-49,24v0,-5,5,-10,17,-14v-6,-3,-11,-6,-12,-12v1,-10,30,-42,37,-18r-5,11v-6,-7,-20,-7,-23,0","w":87},"\u0627":{"d":"83,-52v-85,15,-46,-100,-69,-166v-3,-6,-6,-10,-11,-14r22,-34v19,37,3,125,22,177v5,12,21,6,36,7r0,30","w":82},"\u0628":{"d":"67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54xm70,-9r-14,26r-28,-15r13,-26","w":87},"\u0629":{"d":"91,-262r-14,26r-29,-15r14,-26xm50,-246r-13,26r-29,-15r13,-26xm67,-169v-5,-17,1,-31,11,-41r21,110v5,24,14,17,36,18r0,30v-46,8,-51,-27,-59,-63v-6,28,-61,25,-78,11v5,-29,40,-52,69,-65xm31,-122v15,4,34,6,43,-8r-4,-19v-19,7,-30,12,-39,27","w":135},"\u062a":{"d":"87,-225r-14,25r-28,-15r13,-25xm47,-209r-14,25r-28,-15r13,-25xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u062b":{"d":"52,-256r-13,25r-28,-15r13,-26xm87,-225r-14,25r-28,-15r13,-25xm47,-209r-14,25r-28,-15r13,-25xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u062c":{"d":"69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33xm101,-13r-13,25r-29,-15r14,-25","w":190},"\u062d":{"d":"69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33","w":190},"\u062e":{"d":"107,-215r-14,25r-28,-14r13,-26xm69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33","w":190},"\u062f":{"d":"68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u0630":{"d":"75,-258r-14,25r-28,-15r13,-25xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u0631":{"d":"147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0632":{"d":"150,-215r-14,25r-28,-14r13,-26xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0633":{"d":"177,-144v18,20,13,55,14,92v-21,1,-37,-1,-48,-11v-19,16,-63,15,-83,0v-14,15,-43,11,-72,11r0,-30v34,1,77,6,62,-40r7,-11v10,30,13,51,51,51v27,0,31,-18,24,-40r8,-11v5,23,6,50,31,50v21,-5,7,-31,-5,-42","w":191},"\u0634":{"d":"141,-242r-14,25r-28,-15r13,-26xm175,-211r-13,25r-29,-15r13,-25xm135,-195r-13,25r-29,-15r13,-25xm177,-144v18,20,13,55,14,92v-21,1,-37,-1,-48,-11v-19,16,-63,15,-83,0v-14,15,-43,11,-72,11r0,-30v34,1,77,6,62,-40r7,-11v10,30,13,51,51,51v27,0,31,-18,24,-40r8,-11v5,23,6,50,31,50v21,-5,7,-31,-5,-42","w":191},"\u0635":{"d":"257,-146v48,-2,51,45,48,94r-212,0v-14,0,-22,-4,-33,-11v-13,15,-44,10,-72,11r0,-30v34,1,77,6,62,-40r7,-11v7,26,19,51,44,51v69,0,92,-62,156,-64xm239,-82v20,-1,35,0,37,-14v-24,-41,-91,0,-118,14r81,0","w":304},"\u0636":{"d":"193,-198r-14,26r-28,-15r13,-26xm257,-146v48,-2,51,45,48,94r-212,0v-14,0,-22,-4,-33,-11v-13,15,-44,10,-72,11r0,-30v34,1,77,6,62,-40r7,-11v7,26,19,51,44,51v69,0,92,-62,156,-64xm239,-82v20,-1,35,0,37,-14v-24,-41,-91,0,-118,14r81,0","w":304},"\u0637":{"d":"163,-146v48,-3,48,45,46,94r-221,0r0,-30v33,1,55,-1,76,-16v16,-45,0,-102,-12,-143r-11,-5v2,-14,5,-29,11,-40v4,13,17,16,33,18v-2,22,-1,21,-6,35r-8,-2v11,38,20,81,8,123v35,-20,50,-32,84,-34xm182,-96v-22,-40,-96,-3,-118,14v35,-2,111,8,118,-14","w":209},"\u0638":{"d":"162,-215r-14,25r-28,-14r13,-26xm163,-146v48,-3,48,45,46,94r-221,0r0,-30v33,1,55,-1,76,-16v16,-45,0,-102,-12,-143r-11,-5v2,-14,5,-29,11,-40v4,13,17,16,33,18v-2,22,-1,21,-6,35r-8,-2v11,38,20,81,8,123v35,-20,50,-32,84,-34xm182,-96v-22,-40,-96,-3,-118,14v35,-2,111,8,118,-14","w":209},"\u0639":{"d":"92,-92v8,11,30,11,50,10r0,30v-32,2,-60,-3,-70,-23v-19,18,-46,25,-84,23r0,-30v30,1,53,-3,71,-15v-5,-11,-21,-24,-31,-10v-6,2,-3,-6,-4,-10v1,-27,13,-33,43,-33v25,0,48,8,49,26v-2,15,-11,21,-24,32","w":141},"\u063a":{"d":"82,-215r-13,25r-29,-14r13,-26xm92,-92v8,11,30,11,50,10r0,30v-32,2,-60,-3,-70,-23v-19,18,-46,25,-84,23r0,-30v30,1,53,-3,71,-15v-5,-11,-21,-24,-31,-10v-6,2,-3,-6,-4,-10v1,-27,13,-33,43,-33v25,0,48,8,49,26v-2,15,-11,21,-24,32","w":141},"\u0641":{"d":"79,-238r-15,25r-25,-17r15,-24xm60,-178v42,4,35,76,35,126r-107,0r0,-30v32,-2,68,2,95,-4v-37,-6,-56,-8,-59,-38v-2,-23,16,-56,36,-54xm54,-147v-18,0,-14,28,2,31v3,1,11,2,23,3v-6,-16,-10,-34,-25,-34","w":94},"\u0642":{"d":"87,-247r-15,23r-22,-14r15,-24xm47,-237r-14,24r-22,-14r15,-24xm60,-178v42,4,35,76,35,126r-107,0r0,-30v32,-2,68,2,95,-4v-37,-6,-56,-8,-59,-38v-2,-23,16,-56,36,-54xm54,-147v-18,0,-14,28,2,31v3,1,11,2,23,3v-6,-16,-10,-34,-25,-34","w":94},"\u0643":{"d":"142,-52r-154,0r0,-30r133,0v-19,-29,-38,-42,-70,-62v-11,12,-33,-17,-38,-25v-2,-68,64,-73,112,-95r0,30v-27,12,-70,21,-90,37v18,22,55,42,72,66v17,24,40,36,35,79","w":141},"\u0644":{"d":"38,-277v0,15,19,17,29,22v-1,12,1,42,-13,31v7,58,22,107,21,172r-87,0r0,-30r69,0r-21,-149v-17,-6,-5,-35,-1,-48","w":74},"\u0645":{"d":"113,-148v18,28,33,52,29,96v-33,3,-57,-7,-75,-22v-14,23,-41,23,-79,22r0,-30v73,12,76,-54,125,-66xm120,-84v4,-13,-9,-29,-16,-39v-12,3,-16,9,-23,20v7,9,26,17,39,19","w":141},"\u0646":{"d":"74,-214r-14,25r-28,-14r13,-26xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u0647":{"d":"60,-200v27,28,74,78,79,119v1,11,-12,36,-21,36v-14,-1,-46,-19,-57,-26v-27,16,-35,20,-73,19r0,-30v19,-1,31,0,48,-5v-31,-13,1,-58,20,-68v-25,-14,-3,-23,4,-45xm61,-99v17,-6,23,-35,1,-38v-9,0,-23,9,-22,19v0,5,7,11,21,19xm114,-74v15,-7,-13,-32,-20,-42v-1,12,-6,22,-14,28v10,4,24,12,34,14","w":162},"\u06be":{"d":"101,-125v-3,28,-9,29,-36,43r77,0r0,30r-64,0v15,7,29,23,29,42v0,16,-6,32,-21,32v-36,0,-67,-33,-59,-74r-39,0r0,-30r44,0v13,-28,26,-66,55,-73v9,1,15,19,14,30xm44,-86v17,-5,37,-13,40,-26v-1,-27,-15,-16,-25,0v-3,5,-9,14,-15,26xm80,-6v5,0,11,-2,11,-7v1,-18,-35,-38,-54,-40v1,28,16,47,43,47","w":141},"\u0648":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18","w":155},"\u0649":{"d":"112,-26v0,-49,46,-59,100,-56r0,30v-30,2,-73,-4,-85,8v0,4,5,5,16,5v17,3,44,-2,47,14v-3,54,-39,62,-100,65v-65,3,-105,-41,-72,-96v3,-6,10,-17,21,-35r7,4v-8,14,-23,37,-23,54v2,34,39,44,81,44v24,0,64,-3,68,-17v-5,-17,-60,5,-60,-20","w":211},"\u064a":{"d":"112,-26v0,-49,46,-59,100,-56r0,30v-30,2,-73,-4,-85,8v0,4,5,5,16,5v17,3,44,-2,47,14v-3,54,-39,62,-100,65v-65,3,-105,-41,-72,-96v3,-6,10,-17,21,-35r7,4v-8,14,-23,37,-23,54v2,34,39,44,81,44v24,0,64,-3,68,-17v-5,-17,-60,5,-60,-20xm139,61r-16,15r-20,-12r16,-17xm103,61r-16,15r-21,-12r17,-17","w":211},"\u0671":{"d":"62,-303v-2,24,-31,28,-60,25v-6,0,-5,8,-5,15v-12,-11,-12,-33,9,-30v14,-19,27,-28,41,-28v10,0,15,6,15,18xm16,-293v19,4,41,-8,24,-17v-6,0,-14,6,-24,17xm83,-52v-85,15,-46,-100,-69,-166v-3,-6,-6,-10,-11,-14r22,-34v19,37,3,125,22,177v5,12,21,6,36,7r0,30","w":82},"\u0677":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18xm150,-195v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5xm96,-221v15,3,14,23,7,37v7,3,9,14,6,23r-15,-9v-15,15,-22,28,-46,25v11,-5,32,-21,39,-30v-22,-8,-10,-46,9,-46xm96,-189v5,-10,-8,-24,-12,-14v0,6,8,11,12,14","w":155},"\u0679":{"d":"35,-215v16,-11,24,-15,40,-17v23,-2,23,22,22,45r-106,0r0,-14v49,9,43,-40,31,-76v-10,-2,-1,-16,0,-21v2,5,8,8,16,8v-1,2,1,19,-7,16v6,24,8,36,4,59xm64,-201v25,2,25,-15,3,-15v-10,0,-32,9,-40,15r37,0xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u067a":{"d":"54,-256r-13,26r-29,-15r13,-26xm62,-212r-13,26r-29,-15r14,-26xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u067b":{"d":"61,-10r-13,26r-29,-15r13,-26xm69,34r-13,26r-29,-15r14,-26xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u067f":{"d":"74,-256r-14,26r-28,-15r13,-26xm82,-212r-14,26r-28,-15r13,-26xm42,-196r-14,26r-28,-15r13,-26xm20,-214r-28,-16r12,-25r29,16xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u0680":{"d":"81,-9r-14,25r-28,-15r13,-26xm89,34r-14,26r-28,-15r13,-25xm49,50r-14,26r-28,-15r13,-25xm27,32r-28,-16r12,-25r29,16xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u0683":{"d":"131,-10r-13,26r-29,-15r13,-26xm91,7r-13,25r-29,-15r13,-26xm69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33","w":190},"\u0684":{"d":"106,-10r-13,26r-28,-15r13,-26xm114,34r-13,26r-28,-15r13,-26xm69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33","w":190},"\u0687":{"d":"130,-9r-14,25r-28,-15r13,-26xm138,34r-13,26r-29,-15r13,-25xm98,50r-13,26r-29,-15r13,-25xm76,32r-28,-16r12,-25r30,16xm69,-154v40,0,79,57,111,72r11,0r0,30r-203,0r0,-30r143,0v-31,-23,-55,-47,-105,-39v6,-19,21,-33,43,-33","w":190},"\u0688":{"d":"52,-238v16,-10,24,-14,40,-16v23,-2,23,22,22,45r-105,0r0,-15v48,9,43,-40,31,-76v-11,-1,-2,-16,-1,-21v2,5,8,9,16,9v0,2,1,19,-7,15v6,24,10,38,4,59xm81,-224v27,2,25,-15,3,-15v-9,-1,-30,9,-39,15r36,0xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u068c":{"d":"99,-256r-13,26r-29,-15r14,-26xm59,-240r-13,26r-29,-15r14,-26xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u068d":{"d":"110,-10r-13,26r-29,-15r13,-26xm70,7r-14,25r-29,-15r14,-26xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u068e":{"d":"70,-291r-14,26r-28,-15r13,-26xm105,-259r-14,25r-29,-15r14,-25xm64,-244r-13,26r-29,-15r13,-25xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u0691":{"d":"105,-215v16,-11,24,-15,40,-17v23,-2,23,22,22,45r-105,0r0,-14v48,10,43,-42,30,-76v-10,-2,-1,-16,0,-21v2,5,8,8,16,8v-1,2,1,19,-7,16v6,24,10,37,4,59xm134,-201v26,2,26,-15,3,-15v-9,0,-32,8,-39,15r36,0xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u06a4":{"d":"49,-280r-14,25r-28,-15r13,-25xm83,-249r-13,25r-29,-15r13,-25xm43,-233r-13,25r-29,-14r13,-26xm60,-178v42,4,35,76,35,126r-107,0r0,-30v32,-2,68,2,95,-4v-37,-6,-56,-8,-59,-38v-2,-23,16,-56,36,-54xm54,-147v-18,0,-14,28,2,31v3,1,11,2,23,3v-6,-16,-10,-34,-25,-34","w":94},"\u06a6":{"d":"74,-287r-14,25r-28,-15r13,-25xm82,-243r-14,25r-28,-15r13,-25xm42,-227r-14,25r-28,-15r13,-25xm20,-246r-28,-15r12,-26r29,16xm60,-178v42,4,35,76,35,126r-107,0r0,-30v32,-2,68,2,95,-4v-37,-6,-56,-8,-59,-38v-2,-23,16,-56,36,-54xm54,-147v-18,0,-14,28,2,31v3,1,11,2,23,3v-6,-16,-10,-34,-25,-34","w":94},"\u06ad":{"d":"58,-300r-10,16r-23,-6r9,-17xm88,-292r-10,17r-22,-6r9,-17xm50,-276r-10,17r-23,-7r10,-17xm142,-52r-154,0r0,-30r133,0v-19,-29,-38,-42,-70,-62v-11,12,-33,-17,-38,-25v-2,-68,64,-73,112,-95r0,30v-27,12,-70,21,-90,37v18,22,55,42,72,66v17,24,40,36,35,79","w":141},"\u06b1":{"d":"80,-313r-10,18r-25,-7r10,-19xm43,-297r-9,18r-26,-7r10,-19xm-12,-82v46,5,110,-12,80,-51v-3,-3,-17,-16,-23,-6v-9,-8,-29,-20,-32,-30v-2,-68,64,-73,112,-95r0,30v-27,12,-70,21,-90,37v28,31,67,53,92,89v13,18,26,30,58,26r0,30v-57,8,-68,-41,-97,-67v-1,52,-41,71,-100,67r0,-30xm125,-315r0,29v-40,15,-86,35,-116,55v-3,-25,6,-24,23,-36v24,-17,63,-36,93,-48","w":185},"\u06b3":{"d":"61,-10r-13,26r-29,-15r13,-26xm69,34r-13,26r-29,-15r14,-26xm-12,-82v46,5,110,-12,80,-51v-3,-3,-17,-16,-23,-6v-9,-8,-29,-20,-32,-30v-2,-68,64,-73,112,-95r0,30v-27,12,-70,21,-90,37v28,31,67,53,92,89v13,18,26,30,58,26r0,30v-57,8,-68,-41,-97,-67v-1,52,-41,71,-100,67r0,-30xm125,-315r0,29v-40,15,-86,35,-116,55v-3,-25,6,-24,23,-36v24,-17,63,-36,93,-48","w":185},"\u06ba":{"d":"173,-150v18,22,16,57,16,98v-1,60,-38,74,-103,78v-74,5,-88,-60,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,91,-18,91,-53v0,-24,-8,-43,-19,-57","w":189},"\u06bb":{"d":"95,-201v16,-11,23,-15,39,-17v23,-2,24,21,23,45r-106,0r0,-14v48,9,43,-40,31,-76v-9,-1,-2,-16,-1,-21v2,5,9,8,17,8v-1,2,1,19,-7,16v6,24,8,36,4,59xm124,-187v25,1,25,-15,2,-15v-9,0,-32,8,-39,15r37,0xm173,-150v18,22,16,57,16,98v-1,60,-38,74,-103,78v-74,5,-88,-60,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,91,-18,91,-53v0,-24,-8,-43,-19,-57","w":189},"\u06c0":{"d":"67,-169v-5,-17,1,-31,11,-41r21,110v5,24,14,17,36,18r0,30v-46,8,-51,-27,-59,-63v-6,28,-61,25,-78,11v5,-29,40,-52,69,-65xm31,-122v15,4,34,6,43,-8r-4,-19v-19,7,-30,12,-39,27xm41,-244v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":135},"\u06c1":{"d":"60,-40v1,-27,24,-45,55,-42r0,30v-38,-6,-47,23,-53,46v-14,-6,-21,-51,-17,-74v-12,24,-27,30,-57,28r0,-30v40,3,54,-10,70,-49r9,3v-10,30,-15,60,-7,88xm60,34v0,7,28,10,24,24v0,8,-8,16,-16,16v-32,-7,-23,-58,4,-72r4,7v-11,10,-16,18,-16,25","w":115},"\u06c5":{"d":"95,-87v0,-23,13,-53,33,-52v23,-4,29,40,28,77v-2,56,-60,114,-124,80v-8,-4,-8,-3,-23,-8v5,-14,31,5,43,2v30,-1,55,-17,71,-37v-17,7,-50,-15,-63,-7v3,-39,71,19,84,-19v-33,0,-49,-12,-49,-36xm144,-81v-4,-19,-11,-29,-20,-29v-8,0,-13,3,-13,11v0,12,11,18,33,18","w":155},"\u06c6":{"d":"157,-211r-24,41r-10,0r-24,-41r15,0r14,25r14,-25r15,0xm128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18","w":155},"\u06c7":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18xm135,-239v15,3,14,23,7,37v7,3,9,14,6,23r-15,-9v-15,15,-22,28,-46,25v11,-5,32,-21,39,-30v-22,-8,-10,-46,9,-46xm135,-207v5,-10,-8,-24,-12,-14v0,6,8,11,12,14","w":155},"\u06c8":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18xm120,-266v5,56,18,73,1,104v-3,-20,-1,-43,-10,-89v2,-4,6,-9,9,-15","w":155},"\u06c9":{"d":"157,-170r-15,0r-14,-25r-14,25r-15,0r24,-41r10,0xm128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18","w":155},"\u06cb":{"d":"123,-241r-14,26r-28,-15r13,-26xm157,-209r-13,25r-29,-15r13,-25xm117,-194r-13,26r-29,-15r13,-25xm128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18","w":155},"\u06d0":{"d":"61,-10r-13,26r-29,-15r13,-26xm69,34r-13,26r-29,-15r14,-26xm67,-164v26,24,20,62,21,112r-100,0r0,-30r87,0v-1,-31,-4,-35,-21,-54","w":87},"\u06d2":{"d":"42,75v-52,10,-21,-49,-15,-67v52,-64,148,-98,265,-90r0,30v-104,-4,-180,13,-245,64v-14,12,-20,22,-20,27v0,3,5,5,16,5r249,0v-11,14,-30,20,-44,31r-206,0","w":292},"\u06d3":{"d":"42,75v-52,10,-21,-49,-15,-67v52,-64,148,-98,265,-90r0,30v-104,-4,-180,13,-245,64v-14,12,-20,22,-20,27v0,3,5,5,16,5r249,0v-11,14,-30,20,-44,31r-206,0xm206,-142v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":292},"\u00a0":{"w":100},"!":{"d":"41,-64r-10,-137r0,-57r39,0v1,69,-5,130,-9,194r-20,0xm32,0r0,-36r37,0r0,36r-37,0","w":100},"\"":{"d":"25,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-8,92r-20,0xm83,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-9,92r-19,0","w":127},"#":{"d":"18,4r15,-74r-29,0r0,-27r35,0r13,-63r-48,0r0,-27r53,0r15,-75r27,0r-16,75r56,0r15,-75r27,0r-16,75r31,0r0,27r-36,0r-13,63r49,0r0,27r-54,0r-16,74r-26,0r15,-74r-55,0r-16,74r-26,0xm65,-97r55,0r13,-63r-55,0"},"$":{"d":"183,-73v2,43,-32,78,-75,78r0,32r-18,0r0,-32v-49,-4,-73,-29,-77,-77r32,-6v3,33,19,53,45,57r0,-101v-35,-7,-74,-27,-72,-72v1,-41,27,-69,72,-72r0,-15r18,0r0,15v40,4,64,26,69,63r-33,5v-3,-24,-15,-37,-36,-42r0,92v48,10,72,26,75,75xm90,-240v-32,2,-52,44,-31,70v6,7,17,14,31,18r0,-88xm108,-21v34,-1,56,-49,34,-78v-6,-7,-17,-13,-34,-19r0,97"},"%":{"d":"75,-126v-37,0,-55,-29,-54,-70v0,-34,18,-66,54,-66v35,0,56,29,56,68v0,39,-22,67,-56,68xm104,-195v0,-27,-7,-45,-28,-45v-22,0,-27,18,-27,47v0,28,6,45,27,45v22,0,28,-18,28,-47xm76,9r141,-271r26,0r-141,271r-26,0xm242,9v-36,0,-54,-29,-54,-69v0,-37,18,-67,54,-67v34,1,56,29,56,68v0,39,-21,68,-56,68xm270,-60v0,-27,-6,-45,-27,-45v-22,0,-28,19,-28,48v0,26,7,45,28,45v22,0,27,-19,27,-48","w":320},"&":{"d":"112,-262v34,0,60,24,60,55v0,24,-17,46,-49,63r46,59v5,-10,10,-22,13,-36r32,7v-6,22,-12,40,-22,55v12,16,25,29,40,40r-21,25v-13,-8,-26,-20,-40,-36v-18,20,-40,33,-74,34v-45,2,-83,-33,-82,-75v1,-40,29,-60,62,-77v-18,-21,-27,-30,-29,-57v-2,-32,30,-57,64,-57xm110,-236v-30,0,-39,38,-17,55r14,16v21,-13,29,-18,32,-41v1,-17,-13,-30,-29,-30xm50,-73v-2,35,40,65,77,41v10,-6,18,-14,24,-23r-58,-72v-26,16,-41,26,-43,54","w":240},"'":{"d":"24,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-9,92r-19,0","w":68},"(":{"d":"107,-262v-66,97,-72,231,0,338r-23,0v-31,-40,-62,-101,-62,-169v1,-74,27,-121,62,-169r23,0","w":119},")":{"d":"107,-93v1,68,-32,129,-63,169r-22,0v71,-107,66,-242,0,-338r22,0v35,49,62,96,63,169","w":119},"*":{"d":"11,-210r8,-25v19,7,33,12,41,17v-2,-21,-4,-36,-4,-44r26,0v0,12,-2,27,-4,44v12,-6,25,-12,41,-17r8,25v-15,5,-29,7,-43,9v7,6,17,18,30,34r-21,15v-7,-9,-15,-22,-24,-38v-9,17,-16,29,-23,38r-21,-15v14,-17,23,-29,29,-34v-15,-3,-29,-5,-43,-9","w":140},"+":{"d":"90,-42r0,-70r-70,0r0,-30r70,0r0,-70r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0","w":210},",":{"d":"32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"-":{"d":"11,-77r0,-32r98,0r0,32r-98,0","w":119},"\u00ad":{"d":"11,-77r0,-32r98,0r0,32r-98,0","w":119},".":{"d":"33,0r0,-36r36,0r0,36r-36,0","w":100},"\/":{"d":"0,4r75,-266r25,0r-75,266r-25,0","w":100},"0":{"d":"99,4v-67,0,-84,-54,-84,-131v0,-75,16,-132,84,-132v67,0,84,56,84,132v0,74,-16,131,-84,131xm99,-233v-46,6,-52,44,-52,106v0,65,8,98,52,105v44,-6,51,-40,51,-105v0,-65,-6,-99,-51,-106"},"1":{"d":"39,-194v32,-13,61,-39,75,-65r20,0r0,259r-32,0r0,-202v-14,14,-43,31,-63,39r0,-31","k":{"1":27}},"2":{"d":"181,-187v0,78,-96,103,-126,157r126,0r0,30r-170,0v6,-90,131,-106,137,-188v2,-26,-21,-46,-48,-45v-31,0,-51,20,-51,52r-32,-3v3,-47,35,-75,84,-75v46,0,80,30,80,72"},"3":{"d":"136,-140v88,26,42,150,-39,145v-45,-3,-78,-32,-82,-73r32,-4v6,31,18,50,50,50v30,1,54,-23,53,-53v0,-37,-34,-60,-72,-47r3,-28v28,4,58,-12,58,-42v0,-23,-19,-41,-42,-41v-28,0,-43,20,-47,47r-32,-6v7,-38,36,-64,78,-67v71,-6,103,95,40,119"},"4":{"d":"116,0r0,-62r-111,0r0,-29r117,-167r26,0r0,167r35,0r0,29r-35,0r0,62r-32,0xm116,-91r0,-116r-80,116r80,0"},"5":{"d":"186,-87v0,102,-163,129,-171,19r33,-2v3,29,21,48,50,48v31,0,54,-28,54,-63v0,-60,-78,-75,-102,-33r-29,-4r25,-132r128,0r0,30r-103,0r-14,69v54,-41,129,2,129,68"},"6":{"d":"14,-121v0,-103,66,-171,142,-121v14,9,20,27,23,47r-31,3v-4,-35,-42,-53,-70,-32v-23,18,-33,45,-33,91v13,-20,34,-34,63,-34v43,-1,77,38,76,83v-2,50,-31,88,-81,88v-63,0,-89,-47,-89,-125xm101,-139v-29,0,-52,24,-51,56v1,33,19,61,52,61v29,0,49,-26,49,-60v0,-33,-19,-57,-50,-57"},"7":{"d":"53,0v4,-86,46,-174,90,-224r-126,0r0,-30r167,0r0,24v-47,54,-92,133,-98,230r-33,0"},"8":{"d":"15,-75v1,-36,19,-57,49,-65v-71,-23,-35,-126,35,-119v70,-9,105,99,37,119v29,9,47,30,48,66v1,46,-38,78,-85,78v-48,0,-85,-33,-84,-79xm99,-233v-23,0,-42,18,-42,40v0,24,18,41,43,41v23,0,41,-18,41,-40v0,-23,-19,-41,-42,-41xm99,-126v-29,0,-53,23,-52,52v2,30,22,52,53,52v29,1,52,-22,52,-51v0,-30,-23,-53,-53,-53"},"9":{"d":"184,-134v0,81,-20,135,-92,138v-42,2,-68,-26,-72,-64r30,-2v5,25,16,40,43,40v49,0,58,-49,60,-99v-11,18,-35,34,-62,34v-43,0,-76,-38,-76,-85v0,-49,34,-90,81,-87v64,4,88,47,88,125xm99,-115v31,-1,50,-24,50,-58v0,-33,-19,-60,-49,-60v-30,1,-53,29,-53,62v0,31,22,56,52,56"},":":{"d":"33,-151r0,-36r36,0r0,36r-36,0xm33,0r0,-36r36,0r0,36r-36,0","w":100},";":{"d":"32,-151r0,-36r36,0r0,36r-36,0xm32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"\u037e":{"d":"32,-151r0,-36r36,0r0,36r-36,0xm32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"<":{"d":"20,-113r0,-29r170,-72r0,31r-135,56r135,56r0,31","w":210},"=":{"d":"190,-152r-170,0r0,-29r170,0r0,29xm190,-73r-170,0r0,-30r170,0r0,30","w":210},">":{"d":"190,-113r-170,73r0,-31r135,-56r-135,-56r0,-31r170,72r0,29","w":210},"?":{"d":"182,-192v0,61,-74,60,-69,129r-30,0v-10,-71,61,-75,67,-127v3,-24,-25,-47,-50,-46v-31,2,-47,20,-52,52r-32,-4v6,-45,33,-74,83,-74v46,0,83,28,83,70xm81,0r0,-36r36,0r0,36r-36,0"},"@":{"d":"238,1v-22,0,-33,-7,-34,-30v-13,16,-30,30,-54,30v-108,0,-62,-192,28,-192v25,0,42,14,53,33r6,-27r31,0r-30,145v0,7,5,11,12,11v38,-8,68,-51,68,-97v0,-70,-56,-111,-126,-111v-89,0,-145,64,-146,152v-1,91,61,134,151,135v57,0,101,-22,124,-53r31,0v-26,46,-78,80,-155,79v-107,-1,-177,-53,-177,-158v0,-107,64,-180,174,-180v88,0,146,52,150,137v3,58,-51,127,-106,126xm180,-164v-61,-1,-88,129,-23,139v41,-6,61,-45,64,-89v1,-28,-16,-50,-41,-50","w":365},"A":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240,"k":{"\u2019":27,"y":7,"w":7,"v":7,"Y":27,"W":13,"V":27,"T":27," ":20}},"B":{"d":"221,-75v1,89,-104,75,-195,75r0,-258v82,0,182,-14,182,66v0,27,-15,46,-36,55v29,8,48,29,49,62xm175,-188v0,-52,-64,-37,-115,-39r0,78v50,-2,115,12,115,-39xm186,-75v0,-55,-70,-43,-126,-44r0,89v56,-2,126,12,126,-45","w":240},"C":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259},"D":{"d":"241,-130v0,82,-35,130,-120,130r-93,0r0,-258r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-21,-99,-90,-96r-54,0r0,197r55,0v68,2,89,-37,89,-101","w":259},"E":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"F":{"d":"30,0r0,-258r173,0r0,31r-139,0r0,80r121,0r0,30r-121,0r0,117r-34,0","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"H":{"d":"29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0","w":259},"I":{"d":"34,0r0,-258r34,0r0,258r-34,0","w":100},"J":{"d":"152,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":180},"K":{"d":"26,0r0,-258r34,0r0,128r128,-128r47,0r-108,105r112,153r-45,0r-91,-130r-43,41r0,89r-34,0","w":240},"L":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0","k":{"\u2019":20,"y":13,"Y":27,"W":27,"V":27,"T":27," ":13}},"M":{"d":"27,0r0,-258r51,0r73,221r76,-221r46,0r0,258r-33,0r0,-216r-75,216r-31,0r-74,-219r0,219r-33,0","w":299},"N":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"O":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"P":{"d":"224,-183v0,78,-78,83,-162,78r0,105r-34,0r0,-258v90,1,196,-17,196,75xm189,-182v0,-59,-69,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240,"k":{"A":27,".":46,",":46," ":7}},"Q":{"d":"262,-129v0,45,-14,77,-39,101v16,11,31,19,44,24r-10,24v-19,-7,-38,-18,-56,-32v-89,47,-191,-16,-186,-117v4,-77,45,-133,124,-133v77,0,123,53,123,133xm51,-129v0,75,53,122,122,97v-11,-7,-21,-11,-33,-14r8,-25v20,6,36,13,49,24v55,-50,34,-192,-58,-186v-55,3,-88,41,-88,104","w":280},"R":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43","w":259,"k":{"Y":7,"W":7,"V":7,"T":7}},"S":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57","w":240},"T":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0","w":219,"k":{"y":20,"w":20,"u":13,"s":40,"r":13,"o":40,"i":13,"e":40,"c":40,"a":40,"O":7,"A":27,";":40,":":40,".":40,"-":20,",":40," ":7}},"U":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"V":{"d":"101,0r-99,-258r36,0r81,230r83,-230r35,0r-101,258r-35,0","w":240,"k":{"y":13,"u":13,"r":13,"o":20,"i":7,"e":20,"a":27,"A":27,";":13,":":13,".":33,"-":20,",":33}},"W":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0","w":339,"k":{"y":3,"u":7,"r":7,"o":7,"e":7,"a":13,"A":13,";":7,":":7,".":20,"-":7,",":20}},"X":{"d":"2,0r99,-134r-88,-124r41,0r67,98r73,-98r37,0r-91,122r98,136r-42,0r-76,-109r-77,109r-41,0","w":240},"Y":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0","w":240,"k":{"v":20,"u":20,"q":33,"p":27,"o":33,"i":13,"e":33,"a":27,"A":27,";":23,":":20,".":46,"-":33,",":46," ":7}},"Z":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0","w":219},"[":{"d":"24,72r0,-330r70,0r0,26r-38,0r0,277r38,0r0,27r-70,0","w":100},"\\":{"d":"75,4r-75,-266r25,0r75,266r-25,0","w":100},"]":{"d":"77,72r-70,0r0,-27r38,0r0,-277r-38,0r0,-26r70,0r0,330","w":100},"^":{"d":"42,-121r-33,0r63,-141r25,0r62,141r-31,0r-44,-105","w":168},"_":{"d":"-5,72r0,-23r209,0r0,23r-209,0"},"`":{"d":"82,-210r-26,0r-40,-49r42,0","w":119},"a":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"b":{"d":"185,-96v10,81,-84,134,-132,73r0,23r-29,0r0,-258r31,0r0,92v47,-57,140,-8,130,70xm104,-165v-33,0,-51,31,-51,70v0,44,15,73,49,73v33,0,51,-31,51,-72v0,-41,-16,-71,-49,-71"},"c":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180},"d":{"d":"91,-191v24,0,41,12,52,26r0,-93r31,0r0,258r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v32,0,49,-29,49,-69v0,-44,-16,-74,-51,-74"},"e":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"f":{"d":"108,-231v-33,-9,-51,6,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-7,-60,24,-85,81,-72","w":100,"k":{"\u2019":-7,"f":7}},"g":{"d":"176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69"},"h":{"d":"105,-164v-69,0,-47,96,-50,164r-31,0r0,-258r31,0r0,93v38,-46,121,-31,121,47r0,118r-32,0v-8,-60,25,-164,-39,-164"},"i":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0","w":79},"j":{"d":"24,-221r0,-37r31,0r0,37r-31,0xm55,10v4,55,-26,74,-72,62r6,-26v28,7,35,-3,35,-37r0,-196r31,0r0,197","w":79},"k":{"d":"24,0r0,-258r32,0r0,147r74,-76r41,0r-71,70r79,117r-39,0r-62,-95r-22,21r0,74r-32,0","w":180},"l":{"d":"23,0r0,-258r32,0r0,258r-32,0","w":79},"m":{"d":"102,-163v-67,0,-42,97,-47,163r-31,0r0,-187r28,0r0,27v15,-38,98,-44,109,2v28,-52,116,-43,116,30r0,128r-32,0r0,-118v1,-31,-8,-44,-33,-45v-67,-2,-41,99,-46,163r-31,0r0,-121v-1,-26,-7,-42,-33,-42","w":299},"n":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163"},"o":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"p":{"d":"186,-95v8,78,-84,130,-131,76r0,91r-31,0r0,-259r29,0r0,25v12,-17,27,-29,54,-29v54,1,74,43,79,96xm104,-166v-32,0,-52,34,-52,74v0,41,17,70,50,70v34,0,51,-31,51,-73v0,-41,-16,-71,-49,-71"},"q":{"d":"13,-95v-11,-82,88,-129,133,-67r0,-25r28,0r0,259r-31,0r0,-92v-45,55,-141,3,-130,-75xm94,-166v-32,0,-49,31,-49,72v0,41,18,72,52,72v31,0,49,-30,49,-69v0,-42,-18,-75,-52,-75"},"r":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23","w":119,"k":{"\u2019":-13,".":20,",":20}},"s":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42","w":180},"t":{"d":"61,-53v-2,25,10,28,32,25r4,28v-45,6,-67,0,-67,-55r0,-107r-24,0r0,-25r24,0r0,-46r31,-19r0,65r32,0r0,25r-32,0r0,109","w":100},"u":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"v":{"d":"76,0r-71,-187r33,0r52,150r53,-150r33,0r-71,187r-29,0","w":180,"k":{".":27,",":27}},"w":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0","w":259,"k":{".":20,",":20}},"x":{"d":"3,0r68,-97r-63,-90r39,0r42,65v15,-24,30,-42,46,-65r37,0r-64,88r69,99r-38,0r-49,-74r-49,74r-38,0","w":180},"y":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26","w":180,"k":{".":27,",":27}},"z":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0","w":180},"{":{"d":"46,-9v0,-44,-1,-66,-36,-70r0,-29v34,-3,37,-25,36,-67v-2,-63,6,-89,66,-87r0,28v-30,-1,-37,4,-36,36v0,67,1,84,-37,105v29,13,36,33,37,79v1,48,-6,61,36,62r0,28v-59,3,-67,-25,-66,-85","w":120},"|":{"d":"33,76r0,-338r28,0r0,338r-28,0","w":93},"}":{"d":"74,-178v0,44,1,66,36,70r0,29v-34,3,-37,26,-36,68v1,63,-6,89,-66,87r0,-28v30,1,37,-4,36,-36v0,-64,1,-86,37,-105v-29,-15,-37,-32,-37,-79v0,-48,7,-62,-36,-62r0,-28v58,-3,67,25,66,84","w":120},"~":{"d":"61,-122v-23,0,-30,10,-46,24r0,-36v34,-42,92,-8,135,3v19,0,35,-14,45,-25r0,38v-14,12,-26,19,-49,20v-28,1,-59,-24,-85,-24","w":210},"\u00c4":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm67,-273r0,-36r33,0r0,36r-33,0xm132,-273r0,-36r33,0r0,36r-33,0","w":240},"\u00c5":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm116,-248v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm116,-300v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19","w":240},"\u00c7":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm137,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":259},"\u00c9":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm99,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u00d1":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0xm112,-290v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":259},"\u00d6":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm91,-273r0,-36r33,0r0,36r-33,0xm156,-273r0,-36r33,0r0,36r-33,0","w":280},"\u00dc":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm80,-273r0,-36r33,0r0,36r-33,0xm145,-273r0,-36r33,0r0,36r-33,0","w":259},"\u00e1":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm81,-210r23,-49r42,0r-39,49r-26,0"},"\u00e0":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm126,-210r-26,0r-40,-49r42,0"},"\u00e2":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0"},"\u00e4":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00e3":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm77,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16"},"\u00e5":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-202v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm99,-254v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19"},"\u00e7":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm100,35v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":180},"\u00e9":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm82,-210r23,-49r42,0r-39,49r-26,0"},"\u00e8":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm121,-210r-26,0r-40,-49r42,0"},"\u00ea":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0"},"\u00eb":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00ed":{"d":"35,0r0,-187r31,0r0,187r-31,0xm33,-210r23,-49r42,0r-39,49r-26,0","w":100},"\u00ec":{"d":"35,0r0,-187r31,0r0,187r-31,0xm73,-210r-26,0r-40,-49r42,0","w":100},"\u00ee":{"d":"35,0r0,-187r31,0r0,187r-31,0xm53,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":100},"\u00ef":{"d":"35,0r0,-187r31,0r0,187r-31,0xm2,-223r0,-36r33,0r0,36r-33,0xm67,-223r0,-36r33,0r0,36r-33,0","w":100},"\u00f1":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm83,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16"},"\u00f3":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm82,-210r23,-49r42,0r-39,49r-26,0"},"\u00f2":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm121,-210r-26,0r-40,-49r42,0"},"\u00f4":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0"},"\u00f6":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00f5":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm77,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16"},"\u00fa":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm80,-210r23,-49r42,0r-39,49r-26,0"},"\u00f9":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm128,-210r-26,0r-40,-49r42,0"},"\u00fb":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0"},"\u00fc":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u2020":{"d":"83,61r0,-213r-70,0r0,-28r70,0r0,-72r32,0r0,72r70,0r0,28r-70,0r0,213r-32,0"},"\u00b0":{"d":"71,-165v-25,-1,-49,-21,-49,-48v0,-26,23,-49,49,-49v28,0,49,22,49,49v0,25,-24,49,-49,48xm71,-243v-15,0,-29,14,-29,30v0,16,13,29,29,29v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30","w":143},"\u00a2":{"d":"19,-92v0,-64,35,-105,100,-98r20,-68r19,6r-19,68v23,10,34,25,39,52r-30,5v-3,-13,-9,-23,-17,-30r-39,135v33,6,55,-16,58,-46r32,3v-8,45,-46,79,-97,67r-21,70r-20,-6r21,-70v-27,-13,-46,-45,-46,-88xm112,-165v-68,-14,-77,98,-39,134"},"\u00a3":{"d":"190,-7v-55,33,-123,-30,-173,12r-12,-30v26,-14,49,-50,37,-91r-34,0r0,-26r27,0v-27,-60,6,-120,71,-120v44,0,73,28,78,67r-32,4v0,-56,-94,-59,-92,-2v0,13,3,30,10,51r55,0r0,26r-50,0v10,34,-9,61,-28,82v49,-15,93,26,133,-2"},"\u00a7":{"d":"172,18v2,57,-85,74,-123,41v-13,-11,-21,-27,-24,-47r32,-4v-1,48,80,56,83,10v-9,-52,-126,-61,-126,-131v0,-25,18,-44,40,-50v-44,-30,-17,-103,41,-99v44,3,69,21,74,61r-33,3v3,-47,-70,-49,-74,-10v9,53,122,58,122,126v0,28,-15,40,-40,51v15,12,28,26,28,49xm69,-151v-21,10,-34,32,-18,55v11,15,60,39,77,53v21,-8,35,-33,17,-54v-10,-12,-62,-42,-76,-54"},"\u2022":{"d":"64,-82v-23,0,-45,-21,-45,-44v0,-24,21,-45,45,-45v23,0,44,22,44,45v0,23,-21,44,-44,44","w":126},"\u00b6":{"d":"0,-184v0,-49,32,-74,83,-74r112,0r0,31r-26,0r0,299r-30,0r0,-299r-39,0r0,299r-29,0r0,-184v-41,-2,-71,-30,-71,-72","w":193},"\u00df":{"d":"101,-236v-33,2,-43,19,-42,62r0,174r-32,0r0,-176v-2,-57,24,-84,75,-86v35,-1,65,20,65,50v1,28,-23,49,-27,72v10,34,69,40,69,85v0,48,-62,77,-103,48v-11,-8,-19,-19,-25,-31r27,-13v9,36,68,39,68,-1v0,-40,-68,-44,-68,-83v0,-28,29,-46,28,-73v0,-16,-15,-30,-35,-28","w":219},"\u00ae":{"d":"1,-129v0,-77,57,-133,132,-133v76,0,133,57,133,133v0,75,-56,132,-133,132v-76,0,-132,-56,-132,-132xm244,-129v0,-63,-47,-111,-111,-111v-64,0,-111,48,-111,111v0,62,47,110,111,110v64,-1,111,-48,111,-110xm124,-199v70,-14,79,75,20,79v24,11,36,41,51,64r-28,0v-20,-27,-22,-68,-69,-61r0,61r-23,0r0,-143r49,0xm161,-158v0,-26,-34,-21,-63,-21r0,43v28,0,63,4,63,-22","w":265},"\u00a9":{"d":"1,-129v0,-77,57,-133,132,-133v76,0,133,57,133,133v0,75,-56,132,-133,132v-76,0,-132,-56,-132,-132xm244,-129v0,-63,-47,-111,-111,-111v-64,0,-111,48,-111,111v0,62,47,110,111,110v64,-1,111,-48,111,-110xm88,-128v-9,62,78,70,88,20r21,6v-7,28,-30,49,-64,49v-43,0,-69,-30,-69,-76v0,-78,110,-104,131,-33r-21,5v-17,-46,-95,-28,-86,29","w":265},"\u2122":{"d":"86,-114r0,-122r-46,0r0,-22r117,0r0,22r-47,0r0,122r-24,0xm173,-114r0,-144r35,0r36,115r35,-115r34,0r0,144r-21,0r0,-121r-37,121r-22,0r-38,-122r0,122r-22,0","w":360},"\u00b4":{"d":"39,-210r23,-49r42,0r-39,49r-26,0","w":119},"\u00a8":{"d":"11,-223r0,-36r33,0r0,36r-33,0xm76,-223r0,-36r33,0r0,36r-33,0","w":119},"\u2260":{"d":"87,-73r-34,78r-24,0r34,-78r-49,0r0,-30r62,0r22,-49r-84,0r0,-29r97,0r34,-78r24,0r-35,78r50,0r0,29r-63,0r-21,49r84,0r0,30r-97,0","w":197},"\u00c6":{"d":"0,0r124,-258r212,0r0,31r-130,0r0,79r120,0r0,30r-120,0r0,88r134,0r0,30r-168,0r0,-74r-100,0r-35,74r-37,0xm87,-105r85,0r0,-122r-26,0","w":360},"\u00d8":{"d":"140,-262v38,2,55,10,80,28r29,-33r18,15r-31,34v59,81,18,222,-95,222v-37,0,-55,-8,-79,-27r-30,33r-17,-14r31,-35v-63,-78,-19,-230,94,-223xm199,-210v-57,-52,-156,-9,-147,81v3,29,4,43,16,65xm82,-46v58,50,146,5,146,-82v0,-24,-5,-45,-15,-64","w":280},"\u221e":{"d":"27,-126v0,-53,67,-62,94,-17v21,-24,29,-41,59,-41v27,0,50,22,50,57v0,37,-17,59,-50,59v-31,0,-39,-17,-59,-41v-27,45,-94,37,-94,-17xm211,-125v0,-29,-25,-49,-49,-34v-7,5,-16,16,-29,33v16,22,21,36,46,38v19,2,32,-16,32,-37xm47,-126v4,38,43,33,62,0v-14,-17,-20,-25,-39,-27v-14,-2,-24,12,-23,27","w":256},"\u00b1":{"d":"84,-46r0,-71r-70,0r0,-29r70,0r0,-70r30,0r0,70r70,0r0,29r-70,0r0,71r-30,0xm184,0r-170,0r0,-30r170,0r0,30","w":197},"\u2264":{"d":"14,-134r0,-29r170,-73r0,32r-135,55r135,57r0,31xm184,-19r-170,0r0,-29r170,0r0,29","w":197},"\u2265":{"d":"184,-134r-170,73r0,-31r135,-57r-135,-55r0,-32r170,73r0,29xm184,-19r-170,0r0,-29r170,0r0,29","w":197},"\u00a5":{"d":"84,0r0,-57r-73,0r0,-25r73,0r0,-25r-73,0r0,-26r60,0r-72,-125r36,0r64,118v17,-37,43,-81,63,-118r37,0r-71,125r60,0r0,26r-73,0r0,25r73,0r0,25r-73,0r0,57r-31,0"},"\u00b5":{"d":"102,-24v66,1,41,-97,46,-163r31,0r0,187r-28,0r0,-22v-15,32,-75,36,-92,3r0,91r-31,0r0,-259r31,0v5,65,-19,162,43,163","w":207},"\u2202":{"d":"115,-240v-22,3,-31,18,-40,40r-24,-11v13,-28,32,-51,63,-51v48,0,57,48,57,99v0,85,-31,163,-107,167v-34,2,-55,-26,-54,-61v3,-72,57,-105,141,-105v-1,-42,-3,-72,-36,-78xm41,-53v-3,31,33,42,58,24v30,-21,46,-61,51,-111v-70,1,-104,28,-109,87","w":177},"\u2211":{"d":"24,-262r218,0r0,29r-174,0r107,136r-114,144r183,0r0,29r-223,0r0,-33r109,-139r-106,-135r0,-31","w":256},"\u220f":{"d":"28,-262r240,0r0,338r-34,0r0,-308r-172,0r0,308r-34,0r0,-338","w":296},"\u222b":{"d":"43,1r-8,-168v5,-55,-8,-128,25,-155v14,-12,38,-4,38,13v1,26,-24,19,-36,9v-6,0,-7,5,-7,11v4,101,12,121,5,246v-3,48,-5,77,-39,82v-23,4,-30,-39,-5,-39v10,-1,28,24,27,1","w":98},"\u00aa":{"d":"67,-262v75,0,40,80,59,128r-26,0v-2,-5,-4,-10,-4,-16v-34,44,-119,1,-77,-46v13,-15,54,-12,75,-19v1,-21,-10,-26,-28,-27v-17,-1,-27,8,-29,22r-24,-6v3,-23,24,-36,54,-36xm34,-170v4,32,56,16,58,-6v1,-2,2,-8,2,-18v-12,6,-63,2,-60,24","w":133},"\u00ba":{"d":"8,-195v0,-39,21,-67,58,-67v36,0,57,28,57,66v0,38,-22,66,-57,66v-36,0,-58,-26,-58,-65xm97,-197v0,-24,-10,-42,-31,-42v-22,0,-32,17,-32,43v0,26,11,43,32,43v21,0,31,-18,31,-44","w":131},"\u2126":{"d":"64,-137v0,51,24,89,60,105r0,32r-102,0r0,-30r65,2v-39,-23,-61,-57,-61,-113v0,-73,42,-122,116,-123v68,-1,116,52,114,123v-1,56,-24,89,-61,113r64,-1r0,29r-101,0r0,-31v38,-20,61,-52,61,-106v0,-51,-23,-100,-78,-99v-53,1,-77,46,-77,99","w":276},"\u00e6":{"d":"305,-57v-9,66,-121,82,-152,26v-21,20,-41,35,-77,35v-37,1,-63,-20,-64,-53v0,-61,77,-55,127,-69v1,-33,-8,-48,-41,-47v-30,1,-46,8,-50,36r-31,-4v2,-63,113,-77,146,-33v15,-16,31,-24,60,-25v59,0,86,48,82,106r-135,0v-11,72,91,83,102,24xm273,-111v2,-49,-55,-70,-87,-40v-9,9,-15,23,-16,40r103,0xm46,-50v5,49,85,28,91,-6v1,-6,2,-19,2,-38v-15,12,-97,5,-93,44","w":320},"\u00f8":{"d":"23,-91v-6,-84,76,-123,139,-85r17,-22r17,12r-19,24v44,57,17,166,-67,166v-19,0,-36,-5,-50,-14r-18,24r-17,-13r19,-24v-15,-17,-19,-39,-21,-68xm144,-152v-42,-33,-89,2,-89,59v0,18,3,32,9,44xm78,-33v56,40,111,-35,79,-102","w":219},"\u00bf":{"d":"129,-187r0,36r-36,0r0,-36r36,0xm28,5v0,-61,74,-59,68,-128r31,0v10,71,-61,73,-67,126v-3,24,24,48,50,46v32,-1,47,-20,52,-52r32,4v-6,45,-33,74,-83,74v-46,0,-83,-28,-83,-70","w":219},"\u00a1":{"d":"79,-187r0,36r-37,0r0,-36r37,0xm70,-123r10,137r0,57r-39,0v-1,-69,5,-130,9,-194r20,0","w":119},"\u00ac":{"d":"190,-75r-30,0r0,-77r-140,0r0,-29r170,0r0,106","w":210},"\u221a":{"d":"185,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"8,71r6,-27v29,7,44,7,49,-23r32,-183r-36,0r4,-25r36,0v7,-39,9,-76,54,-75v9,0,22,2,38,6r-6,27v-40,-14,-52,7,-54,42r36,0r-4,25r-36,0r-34,192v-4,46,-40,53,-85,41"},"\u2248":{"d":"55,-154v-23,0,-30,10,-46,24r0,-36v34,-41,91,-8,134,3v19,0,36,-13,46,-24r0,37v-14,12,-26,18,-49,20v-29,2,-58,-24,-85,-24xm55,-90v-23,1,-30,10,-46,24r0,-36v35,-42,90,-7,134,2v19,0,36,-13,46,-24r0,38v-14,12,-26,19,-49,20v-28,1,-58,-25,-85,-24","w":197},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"60,-93r45,80r-25,0r-56,-80r56,-80r26,0xm128,-93r46,80r-27,0r-55,-80r55,-80r27,0"},"\u00bb":{"d":"139,-93r-46,-80r26,0r56,80r-56,80r-26,0xm71,-93r-46,-80r26,0r55,80r-55,80r-26,0"},"\u2026":{"d":"42,0r0,-36r36,0r0,36r-36,0xm162,0r0,-36r36,0r0,36r-36,0xm282,0r0,-36r36,0r0,36r-36,0","w":360},"\u00c0":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm145,-274r-26,0r-40,-49r42,0","w":240},"\u00c3":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm98,-290v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":240},"\u00d5":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm119,-290v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":280},"\u0152":{"d":"23,-129v0,-73,31,-134,104,-133v31,0,54,13,70,39r0,-35r146,0r0,31r-114,0r0,78r105,0r0,31r-105,0r0,88r120,0r0,30r-152,0r0,-37v-16,28,-39,41,-70,41v-70,1,-104,-59,-104,-133xm195,-131v0,-59,-21,-103,-68,-103v-52,0,-69,46,-69,107v0,60,22,104,69,104v49,0,68,-45,68,-108","w":360},"\u0153":{"d":"324,-56v-7,67,-123,79,-152,25v-16,21,-38,34,-70,35v-54,0,-88,-39,-88,-95v0,-59,31,-100,89,-100v32,-1,57,16,69,36v22,-40,99,-49,131,-9v15,19,23,44,23,79r-137,0v0,36,21,63,55,63v27,0,41,-16,48,-39xm101,-165v-36,0,-54,33,-54,71v0,43,19,72,54,72v35,0,55,-31,55,-72v0,-42,-20,-71,-55,-71xm293,-111v2,-48,-56,-71,-87,-39v-10,10,-15,22,-16,39r103,0","w":339},"\u2013":{"d":"-1,-81r0,-25r201,0r0,25r-201,0"},"\u2014":{"d":"0,-81r0,-25r360,0r0,25r-360,0","w":360},"\u201c":{"d":"49,-214r0,36r-34,0v-1,-40,-2,-74,29,-84r7,12v-13,7,-19,16,-19,36r17,0xm103,-214r0,36r-34,0v-1,-41,0,-74,29,-84r8,12v-13,7,-19,16,-20,36r17,0","w":119},"\u201d":{"d":"15,-224r0,-36r34,0v1,40,2,74,-29,84r-8,-12v13,-6,20,-17,20,-36r-17,0xm70,-224r0,-36r34,0v1,41,0,74,-29,84r-8,-12v13,-6,19,-17,19,-36r-16,0","w":119},"\u2018":{"d":"56,-214r0,36r-34,0v-1,-41,0,-74,30,-84r7,12v-13,7,-19,16,-19,36r16,0","w":79,"k":{"\u2018":7}},"\u2019":{"d":"22,-224r0,-36r34,0v1,41,0,74,-29,84r-8,-12v13,-6,19,-17,19,-36r-16,0","w":79,"k":{"\u2019":7,"s":7," ":13}},"\u00f7":{"d":"81,-162r0,-36r36,0r0,36r-36,0xm184,-112r-170,0r0,-30r170,0r0,30xm81,-56r0,-36r36,0r0,36r-36,0","w":197},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm43,-223r0,-36r33,0r0,36r-33,0xm108,-223r0,-36r33,0r0,36r-33,0","w":180},"\u0178":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm70,-273r0,-36r33,0r0,36r-33,0xm135,-273r0,-36r33,0r0,36r-33,0","w":240},"\u2044":{"d":"-80,10r194,-272r27,0r-193,272r-28,0","w":60},"\u2215":{"d":"-80,10r194,-272r27,0r-193,272r-28,0","w":60},"\u20ac":{"d":"20,-164v6,-76,101,-122,175,-84r-7,33v-50,-42,-129,-5,-132,51r120,0r-5,23r-118,0r0,23r113,0r-4,24r-105,0v2,62,85,89,131,52r0,36v-78,31,-156,-11,-166,-88r-27,0r5,-24r18,0r0,-23r-23,0r5,-23r20,0"},"\u2039":{"d":"51,-93r47,80r-26,0r-56,-80r56,-80r26,0","w":119},"\u203a":{"d":"63,-93r-47,-80r26,0r54,79r-54,81r-26,0","w":119},"\uf001":{"d":"109,-231v-33,-7,-51,4,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-8,-59,27,-87,82,-71xm124,-221r0,-37r32,0r0,37r-32,0xm124,0r0,-187r32,0r0,187r-32,0","w":180},"\ufb01":{"d":"109,-231v-33,-7,-51,4,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-8,-59,27,-87,82,-71xm124,-221r0,-37r32,0r0,37r-32,0xm124,0r0,-187r32,0r0,187r-32,0","w":180},"\uf002":{"d":"109,-231v-33,-7,-51,4,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-8,-59,27,-87,82,-71xm124,0r0,-258r31,0r0,258r-31,0","w":180},"\ufb02":{"d":"109,-231v-33,-7,-51,4,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-8,-59,27,-87,82,-71xm124,0r0,-258r31,0r0,258r-31,0","w":180},"\u2021":{"d":"83,61r0,-65r-70,0r0,-29r70,0r0,-127r-70,0r0,-28r70,0r0,-66r32,0r0,66r71,0r0,28r-71,0r0,127r71,0r0,29r-71,0r0,65r-32,0"},"\u00b7":{"d":"33,-109r0,-36r36,0r0,36r-36,0","w":100},"\u2219":{"d":"33,-109r0,-36r36,0r0,36r-36,0","w":100},"\u201a":{"d":"22,0r0,-37r34,0v1,41,0,74,-29,85r-8,-13v13,-6,19,-16,19,-35r-16,0","w":79},"\u201e":{"d":"15,0r0,-37r34,0v1,41,1,75,-29,85r-8,-13v13,-5,20,-16,20,-35r-17,0xm70,0r0,-37r34,0v1,41,0,74,-29,85r-8,-13v13,-6,19,-16,19,-35r-16,0","w":119,"k":{"\u042a":12,"\u0427":12,"\u0422":28,"\u040b":28,"\u0402":28}},"\u2030":{"d":"56,9r106,-271r23,0r-106,271r-23,0xm57,-124v-35,0,-50,-28,-50,-69v0,-41,15,-67,50,-67v35,0,50,26,50,66v0,42,-12,70,-50,70xm57,-238v-22,0,-24,18,-24,46v-1,30,4,43,25,46v21,-2,23,-19,23,-46v0,-27,-2,-46,-24,-46xm185,9v-36,0,-52,-26,-51,-68v0,-40,15,-67,50,-67v35,0,52,26,51,66v0,41,-12,69,-50,69xm185,-104v-22,0,-24,19,-25,46v0,29,5,43,25,46v21,-2,24,-19,24,-46v0,-27,-3,-46,-24,-46xm303,9v-35,0,-50,-27,-50,-68v0,-41,15,-67,50,-67v35,0,50,26,50,66v0,41,-12,69,-50,69xm303,-104v-21,0,-23,19,-24,46v0,29,5,43,25,46v21,-2,23,-19,23,-46v0,-27,-2,-46,-24,-46","w":360},"\u00c2":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm116,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":240},"\u00ca":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm124,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":240},"\u00c1":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm95,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u00cb":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm75,-273r0,-36r33,0r0,36r-33,0xm140,-273r0,-36r33,0r0,36r-33,0","w":240},"\u00c8":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm150,-274r-26,0r-40,-49r42,0","w":240},"\u00cd":{"d":"34,0r0,-258r34,0r0,258r-34,0xm25,-274r23,-49r42,0r-39,49r-26,0","w":100},"\u00ce":{"d":"34,0r0,-258r34,0r0,258r-34,0xm50,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":100},"\u00cf":{"d":"34,0r0,-258r34,0r0,258r-34,0xm1,-273r0,-36r33,0r0,36r-33,0xm66,-273r0,-36r33,0r0,36r-33,0","w":100},"\u00cc":{"d":"34,0r0,-258r34,0r0,258r-34,0xm76,-274r-26,0r-40,-49r42,0","w":100},"\u00d3":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm119,-274r23,-49r42,0r-39,49r-26,0","w":280},"\u00d4":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm140,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":280},"\u00d2":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm161,-274r-26,0r-40,-49r42,0","w":280},"\u00da":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm108,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u00db":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm129,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":259},"\u00d9":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm150,-274r-26,0r-40,-49r42,0","w":259},"\u0131":{"d":"35,0r0,-187r31,0r0,187r-31,0","w":100},"\u02c6":{"d":"60,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":119},"\u02dc":{"d":"38,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":119},"\u02c9":{"d":"5,-216r0,-26r110,0r0,26r-110,0","w":119},"\u02d8":{"d":"30,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":119},"\u02d9":{"d":"40,-210r0,-39r39,0r0,39r-39,0","w":119},"\u02da":{"d":"60,-202v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm60,-254v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19","w":119},"\u00b8":{"d":"66,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":119},"\u02dd":{"d":"10,-210r21,-49r42,0r-37,49r-26,0xm71,-210r23,-49r40,0r-36,49r-27,0","w":119},"\u02db":{"d":"109,64v-27,18,-79,14,-77,-28v0,-10,2,-23,7,-40r22,0v-13,23,-8,55,19,55v9,0,18,-3,29,-8r0,21","w":119},"\u02c7":{"d":"63,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":119},"\u0141":{"d":"25,-99r-25,21r0,-29r25,-22r0,-129r35,0r0,100r58,-49r0,29r-58,50r0,98r128,0r0,30r-163,0r0,-99"},"\u0142":{"d":"23,-101r-22,19r0,-27r22,-20r0,-129r32,0r0,103r24,-21r0,28r-24,20r0,128r-32,0r0,-101","w":79},"\u0160":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57xm115,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":240},"\u0161":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42xm89,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":180},"\u017d":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0xm112,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":219},"\u017e":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0xm95,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":180},"\u00a6":{"d":"61,-262r0,139r-28,0r0,-139r28,0xm61,-63r0,139r-28,0r0,-139r28,0","w":93},"\u00d0":{"d":"241,-130v0,81,-34,130,-120,130r-93,0r0,-117r-29,0r0,-23r29,0r0,-118r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-22,-98,-90,-96r-54,0r0,87r71,0r0,23r-71,0r0,87r55,0v68,2,89,-36,89,-101","w":259},"\u00f0":{"d":"130,-176v-10,-18,-13,-23,-25,-38r-49,23r-7,-19r42,-19v-11,-11,-24,-20,-37,-29r38,0v8,6,16,12,22,18r38,-18r8,18r-30,15v38,43,56,87,56,133v1,56,-34,96,-87,96v-51,0,-86,-36,-86,-95v0,-69,57,-119,117,-85xm99,-21v34,0,54,-32,54,-72v0,-39,-20,-69,-55,-69v-36,0,-53,30,-53,72v0,41,20,69,54,69"},"\u00dd":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm98,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u00fd":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm74,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u00de":{"d":"224,-131v0,78,-77,84,-162,79r0,52r-34,0r0,-258r34,0r0,53v83,-2,162,-6,162,74xm189,-130v0,-58,-70,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240},"\u00fe":{"d":"186,-95v7,78,-81,130,-131,76r0,91r-31,0r0,-330r31,0r0,91v17,-16,25,-24,52,-24v54,0,74,43,79,96xm104,-166v-32,0,-52,34,-52,74v0,41,17,70,50,70v34,0,51,-31,51,-73v0,-41,-16,-71,-49,-71"},"\u2212":{"d":"190,-112r-170,0r0,-30r170,0r0,30","w":210},"\u00d7":{"d":"28,-72r56,-55r-56,-55r22,-22r55,55r55,-55r21,22r-55,55r56,55r-22,21r-55,-55r-55,55","w":210},"\u00b9":{"d":"19,-228v15,-5,36,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22","w":119},"\u00b2":{"d":"113,-225v1,37,-45,52,-67,75r68,0r0,21r-110,0v5,-41,73,-56,82,-92v-1,-12,-10,-20,-25,-19v-17,0,-22,6,-26,20r-27,-3v2,-49,104,-52,105,-2","w":119},"\u00b3":{"d":"114,-166v1,50,-105,56,-108,3r25,-3v6,28,55,26,55,-4v0,-17,-19,-22,-37,-18r3,-20v30,6,39,-35,7,-33v-15,0,-19,6,-25,18r-25,-4v5,-44,98,-47,98,-1v0,15,-10,25,-24,28v18,5,30,15,31,34","w":119},"\u00bd":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm19,-228v15,-5,36,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22xm293,-91v1,37,-45,52,-67,75r68,0r0,21r-110,0v5,-40,72,-57,82,-91v0,-13,-11,-20,-25,-20v-17,0,-22,6,-26,20r-27,-2v2,-49,104,-54,105,-3","w":300},"\u00bc":{"d":"44,10r194,-272r27,0r-193,272r-28,0xm19,-228v15,-5,36,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22xm251,5r0,-27r-67,0r0,-21r71,-84r22,0r0,86r18,0r0,19r-18,0r0,27r-26,0xm251,-41r0,-46r-40,46r40,0","w":300},"\u00be":{"d":"44,10r194,-272r27,0r-193,272r-28,0xm114,-166v1,50,-105,56,-108,3r25,-3v6,28,55,26,55,-4v0,-17,-20,-21,-37,-18r3,-20v30,6,39,-35,7,-33v-15,0,-19,6,-25,18r-25,-4v5,-44,98,-47,98,-1v0,15,-10,25,-24,28v18,5,30,15,31,34xm251,5r0,-27r-67,0r0,-21r71,-84r22,0r0,86r18,0r0,19r-18,0r0,27r-26,0xm251,-41r0,-46r-40,46r40,0","w":300},"\u20a3":{"d":"30,-43r-30,0r0,-26r30,0r0,-189r152,0r0,31r-118,0r0,80r99,0r0,30r-99,0r0,48r55,0r0,26r-55,0r0,43r-34,0r0,-43"},"\u011e":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103xm122,-319v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":280},"\u011f":{"d":"176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69xm70,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0"},"\u0130":{"d":"34,0r0,-258r34,0r0,258r-34,0xm31,-274r0,-39r39,0r0,39r-39,0","w":100},"\u015e":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57xm126,37v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":240},"\u015f":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42xm94,35v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":180},"\u0106":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm117,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u0107":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm75,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u010c":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm139,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":259},"\u010d":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm99,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":180},"\u0111":{"d":"91,-191v24,0,41,12,52,26r0,-49r-61,0r0,-23r61,0r0,-21r31,0r0,21r26,0r0,23r-26,0r0,214r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v32,0,49,-29,49,-69v0,-44,-16,-74,-51,-74"},"\u00af":{"d":"-5,-275r0,-23r209,0r0,23r-209,0","w":198},"\u0102":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm89,-319v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":240},"\u0103":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0"},"\u0104":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm272,62v-27,18,-79,14,-77,-28v0,-10,2,-23,7,-40r22,0v-13,23,-8,55,19,55v9,0,18,-3,29,-8r0,21","w":240},"\u0105":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm223,60v-27,18,-79,14,-77,-28v0,-10,2,-23,7,-40r22,0v-13,23,-8,55,19,55v9,0,18,-3,29,-8r0,21"},"\u010e":{"d":"241,-130v0,82,-35,130,-120,130r-93,0r0,-258r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-21,-99,-90,-96r-54,0r0,197r55,0v68,2,89,-37,89,-101xm105,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":259},"\u010f":{"d":"189,-225r0,-33r33,0v1,37,2,70,-27,79r-7,-12v12,-7,17,-14,17,-34r-16,0xm91,-191v24,0,41,12,52,26r0,-93r31,0r0,258r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v33,0,50,-29,50,-69v0,-44,-17,-74,-52,-74","w":221},"\u0110":{"d":"241,-130v0,81,-34,130,-120,130r-93,0r0,-117r-29,0r0,-23r29,0r0,-118r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-22,-98,-90,-96r-54,0r0,87r71,0r0,23r-71,0r0,87r55,0v68,2,89,-36,89,-101","w":259},"\u0118":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm220,64v-27,18,-79,14,-77,-28v0,-10,2,-23,7,-40r22,0v-13,23,-8,55,19,55v9,0,18,-3,29,-8r0,21","w":240},"\u0119":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm165,64v-27,18,-79,14,-77,-28v0,-10,2,-23,7,-40r22,0v-13,23,-8,55,19,55v9,0,18,-3,29,-8r0,21"},"\u011a":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm117,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":240},"\u011b":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm102,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0"},"\u0139":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0xm53,-274r23,-49r42,0r-39,49r-26,0"},"\u013a":{"d":"23,0r0,-258r32,0r0,258r-32,0xm12,-271r23,-49r42,0r-39,49r-26,0","w":79},"\u013d":{"d":"125,-222r0,-36r36,0v1,40,2,77,-29,87r-9,-13v15,-6,19,-17,20,-38r-18,0xm26,0r0,-258r34,0r0,228r127,0r0,30r-161,0"},"\u013e":{"d":"72,-225r0,-33r33,0v1,37,1,69,-27,79r-8,-12v12,-7,19,-14,18,-34r-16,0xm24,0r0,-258r32,0r0,258r-32,0","w":104},"\u013f":{"d":"127,-112r0,-36r36,0r0,36r-36,0xm26,0r0,-258r34,0r0,228r127,0r0,30r-161,0"},"\u0140":{"d":"83,-112r0,-36r36,0r0,36r-36,0xm23,0r0,-258r32,0r0,258r-32,0","w":120},"\u0143":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0xm100,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u0144":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm79,-210r23,-49r42,0r-39,49r-26,0"},"\u0147":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0xm129,-293r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":259},"\u0148":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm103,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0"},"\u0150":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm83,-274r21,-49r42,0r-37,49r-26,0xm144,-274r23,-49r40,0r-36,49r-27,0","w":280},"\u0151":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm50,-210r21,-49r42,0r-37,49r-26,0xm111,-210r23,-49r40,0r-36,49r-27,0"},"\u0154":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43xm88,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u0155":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23xm43,-210r23,-49r42,0r-39,49r-26,0","w":119},"\u0158":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43xm114,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":259},"\u0159":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23xm67,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":119},"\u015a":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57xm86,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u015b":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42xm69,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u0162":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0xm92,57r0,-36r36,0v1,39,3,69,-29,81r-9,-14v12,-6,20,-13,20,-31r-18,0","w":219},"\u0163":{"d":"61,-53v-2,25,10,28,32,25r4,28v-45,6,-67,0,-67,-55r0,-107r-24,0r0,-25r24,0r0,-46r31,-19r0,65r32,0r0,25r-32,0r0,109xm48,54r0,-33r33,0v2,35,0,63,-27,73r-7,-13v11,-5,17,-13,18,-27r-17,0","w":100},"\u0164":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0xm111,-292r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":219},"\u0165":{"d":"102,-225r0,-33r32,0v1,36,2,70,-26,79r-8,-12v12,-7,18,-15,18,-34r-16,0xm61,-53v-3,26,10,28,32,25r4,28v-46,6,-68,-1,-68,-55r0,-107r-23,0r0,-25r23,0r0,-46r32,-19r0,65r32,0r0,25r-32,0r0,109","w":135},"\u016e":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm129,-258v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm129,-310v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19","w":259},"\u016f":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm99,-202v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm99,-254v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19"},"\u0170":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm82,-274r21,-49r42,0r-37,49r-26,0xm143,-274r23,-49r40,0r-36,49r-27,0","w":259},"\u0171":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm42,-210r21,-49r42,0r-37,49r-26,0xm103,-210r23,-49r40,0r-36,49r-27,0"},"\u0179":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0xm83,-274r23,-49r42,0r-39,49r-26,0","w":219},"\u017a":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0xm69,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u017b":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0xm93,-274r0,-39r39,0r0,39r-39,0","w":219},"\u017c":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0xm70,-210r0,-39r39,0r0,39r-39,0","w":180},"\u0393":{"d":"29,-258r161,0r0,31r-127,0r0,227r-34,0r0,-258","w":198,"k":{"\u03ca":-15,"\u03b9":15,"\u039b":33,"\u0394":33,"\u0391":33,"\u0390":-29,".":40,",":40}},"\u0398":{"d":"140,4v-76,0,-122,-56,-123,-130v-1,-80,48,-136,123,-136v73,-1,123,58,123,134v0,77,-50,133,-123,132xm140,-233v-57,0,-88,41,-88,108v0,55,33,100,88,100v56,0,88,-44,88,-104v0,-61,-33,-104,-88,-104xm89,-114r0,-30r102,0r0,30r-102,0","w":280,"k":{"\u03ab":12,"\u03a5":12,"\u039b":7,"\u0394":7,"\u0391":7}},"\u03a6":{"d":"15,-130v1,-66,45,-100,112,-104r0,-31r34,0r0,31v65,2,110,40,111,102v1,64,-48,103,-111,104r0,37r-34,0r0,-37v-63,0,-113,-41,-112,-102xm127,-204v-72,-9,-101,88,-55,128v14,13,33,19,55,19r0,-147xm161,-57v68,5,99,-80,57,-127v-13,-14,-32,-20,-57,-20r0,147","w":287,"k":{"\u03ab":12,"\u03a5":12,"\u0391":10}},"\u03b1":{"d":"91,-191v34,0,46,15,62,36v1,-4,4,-15,9,-32r33,0v-8,26,-16,58,-23,94v8,45,16,76,23,93r-32,0v-5,-12,-8,-23,-11,-34v-10,26,-30,38,-61,38v-51,1,-78,-43,-78,-98v0,-57,27,-97,78,-97xm146,-95v0,-39,-15,-70,-49,-70v-34,0,-50,31,-50,71v0,38,13,72,48,72v34,0,52,-33,51,-73","w":208},"\u03b4":{"d":"13,-91v0,-54,32,-90,78,-93v-11,-8,-31,-25,-60,-51r0,-23r140,0r0,26r-98,0v32,40,115,60,115,141v0,57,-35,95,-89,95v-55,0,-86,-42,-86,-95xm100,-160v-34,-1,-55,35,-55,70v0,36,21,68,56,68v34,-1,54,-27,54,-69v0,-40,-19,-68,-55,-69","k":{"\u03c0":5,"\u03c7":10,"\u03bb":7,"\u03c4":5}},"\u03b5":{"d":"48,-97v-50,-26,-21,-94,37,-94v24,0,44,8,61,25r-23,19v-23,-23,-70,-25,-70,9v0,23,22,31,50,29r0,26v-31,-2,-53,8,-53,32v0,39,59,36,80,6r22,19v-34,45,-136,41,-135,-25v0,-21,10,-37,31,-46","w":160},"\u03c3":{"d":"12,-93v0,-70,49,-111,117,-94r85,0r0,26r-51,0v16,15,24,37,24,68v2,60,-34,97,-88,97v-55,-1,-87,-38,-87,-97xm155,-93v0,-40,-16,-73,-56,-72v-36,1,-56,30,-55,72v0,42,19,71,55,71v37,0,57,-29,56,-71","w":222},"\u03c4":{"d":"89,-161r0,161r-32,0r0,-161r-49,0r0,-26r126,0r0,26r-45,0","w":142,"k":{"\u03ce":5,"\u03c9":5,"\u03c2":5,"\u03bf":5,"\u03b6":5,"\u03ac":5,"\u03c6":5,"\u03c3":5,"\u03b4":5,"\u03b1":5}},"\u03c6":{"d":"102,4v-74,4,-119,-111,-67,-169v15,-17,33,-25,53,-25r-6,27v-39,9,-48,79,-22,112v10,14,23,24,42,28r0,-116v-1,-34,9,-51,41,-52v54,-1,78,40,78,90v0,56,-35,95,-87,105r0,68r-32,0r0,-68xm152,-165v-17,3,-18,11,-18,35r0,105v57,-1,78,-127,18,-140","w":233,"k":{"\u03c0":5,"\u03c7":10,"\u03bb":7,"\u03c4":5}},"\u2017":{"d":"-5,72r0,-23r209,0r0,23r-209,0xm-5,117r0,-23r209,0r0,23r-209,0","w":198},"\u203c":{"d":"41,-64r-10,-137r0,-57r39,0v1,69,-5,130,-9,194r-20,0xm32,0r0,-36r37,0r0,36r-37,0xm120,-64r-10,-137r0,-57r39,0v1,69,-5,130,-9,194r-20,0xm111,0r0,-36r37,0r0,36r-37,0","w":180},"\u207f":{"d":"69,-189v-43,0,-27,59,-30,98r-25,0r0,-117r23,0r0,12v25,-26,80,-19,80,33r0,72r-25,0v-5,-35,16,-98,-23,-98","w":131},"\u20a7":{"d":"170,-162v-13,51,-56,61,-127,57r0,105r-34,0r0,-258v80,-3,162,-6,163,71r16,0r0,-55r32,1r0,54v69,1,151,-24,159,53r-33,0v4,-39,-70,-39,-73,-8v9,39,95,22,106,62v24,45,-21,87,-69,85v-32,-1,-46,-9,-62,-28v1,15,3,28,-16,26v-27,-2,-44,-9,-44,-40r0,-125r-18,0xm137,-181v1,-47,-44,-49,-94,-47r0,93v51,1,94,1,94,-46xm269,-59v-2,46,80,49,85,7v-16,-48,-141,-19,-107,-109r-27,-1r0,121v-1,12,12,17,25,13v-6,-11,-7,-16,-8,-31r32,0","w":393},"\u2190":{"d":"14,-95v29,-13,47,-32,72,-59r14,0v-16,28,-15,30,-34,54r280,0r0,18r-280,0v12,13,23,30,34,54r-13,0v-26,-29,-42,-44,-73,-60r0,-7","w":360},"\u2191":{"d":"94,-235v16,30,31,46,59,72r0,14v-24,-11,-41,-23,-54,-35r0,259r-18,0r0,-259v-24,19,-25,20,-54,35r0,-14v27,-26,45,-42,58,-72r9,0","w":180},"\u2192":{"d":"346,-88v-31,16,-47,31,-73,60r-13,0v11,-24,22,-41,34,-54r-280,0r0,-18r280,0v-18,-24,-19,-26,-34,-54r13,0v26,27,43,45,73,59r0,7","w":360},"\u2193":{"d":"85,75v-13,-30,-31,-46,-58,-72r0,-14v29,15,30,16,54,35r0,-259r18,0r0,259v13,-12,30,-24,54,-35r0,14v-28,26,-43,41,-59,72r-9,0","w":180},"\u2194":{"d":"275,-154v25,29,40,44,71,59r0,8v-30,14,-46,31,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-25,-28,-41,-45,-71,-59r0,-8v30,-15,46,-30,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0","w":360},"\u2195":{"d":"27,-186v28,-25,45,-41,59,-71r8,0v15,30,30,46,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-29,25,-44,40,-59,71r-8,0v-14,-30,-31,-46,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14","w":180},"\u21a8":{"d":"27,-186v28,-25,45,-41,59,-71r8,0v15,30,30,46,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-29,25,-44,40,-59,71r-8,0v-14,-30,-31,-46,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"129,-239v-103,-5,-73,135,-77,239r-24,0v6,-113,-31,-262,102,-262v80,0,101,54,101,153r0,109r-23,0r0,-110v4,-84,-11,-126,-79,-129","w":258},"\u2261":{"d":"190,-191r-170,0r0,-29r170,0r0,29xm190,-112r-170,0r0,-30r170,0r0,30xm190,-34r-170,0r0,-30r170,0r0,30","w":210},"\u2302":{"d":"28,0r0,-111r81,-92r81,92r0,111r-162,0xm42,-14r134,0r0,-91r-67,-76r-67,76r0,91","w":217},"\u2310":{"d":"20,-75r0,-106r170,0r0,29r-140,0r0,77r-30,0","w":210},"\u2320":{"d":"156,-270v-15,2,-23,-30,-33,-10r-2,371r-25,0r0,-319v-1,-42,18,-73,51,-77v26,-3,34,32,9,35","w":217},"\u2321":{"d":"61,55v16,-2,23,30,34,10r1,-370r25,0r0,318v2,43,-18,74,-51,78v-25,3,-33,-33,-9,-36","w":217},"\u2500":{"d":"259,-94r-263,0r0,-31r263,0r0,31","w":255},"\u2502":{"d":"80,109r0,-437r31,0r0,437r-31,0","w":225},"\u250c":{"d":"259,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0","w":255},"\u2510":{"d":"112,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203","w":255},"\u2514":{"d":"112,-94r0,-234r31,0r0,203r116,0r0,31r-147,0","w":255},"\u2518":{"d":"143,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234","w":255},"\u251c":{"d":"112,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0","w":255},"\u2524":{"d":"112,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0","w":255},"\u252c":{"d":"112,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203","w":255},"\u2534":{"d":"259,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31","w":255},"\u253c":{"d":"112,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203","w":255},"\u2550":{"d":"259,-127r-263,0r0,-31r263,0r0,31xm259,-60r-263,0r0,-31r263,0r0,31","w":255},"\u2551":{"d":"146,109r0,-437r30,0r0,437r-30,0xm79,109r0,-437r31,0r0,437r-31,0","w":255},"\u2552":{"d":"112,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":255},"\u2553":{"d":"79,109r0,-234r180,0r0,31r-83,0r0,203r-30,0r0,-200r-36,0r0,200r-31,0","w":255},"\u2554":{"d":"110,109r-31,0r0,-267r180,0r0,31r-149,0r0,236xm176,-60r0,169r-30,0r0,-200r113,0r0,31r-83,0","w":255},"\u2555":{"d":"112,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169","w":255},"\u2556":{"d":"79,109r0,-203r-83,0r0,-31r180,0r0,234r-31,0r0,-203r-36,0r0,203r-30,0","w":255},"\u2557":{"d":"145,109r0,-236r-149,0r0,-31r180,0r0,267r-31,0xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169","w":255},"\u2558":{"d":"112,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0","w":255},"\u2559":{"d":"259,-94r-180,0r0,-234r31,0r0,203r36,0r0,-203r30,0r0,203r83,0r0,31","w":255},"\u255a":{"d":"110,-328r0,237r149,0r0,31r-180,0r0,-268r31,0xm176,-158r83,0r0,31r-113,0r0,-201r30,0r0,170","w":255},"\u255b":{"d":"143,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268","w":255},"\u255c":{"d":"176,-94r-180,0r0,-31r83,0r0,-203r30,0r0,203r36,0r0,-203r31,0r0,234","w":255},"\u255d":{"d":"145,-328r31,0r0,268r-180,0r0,-31r149,0r0,-237xm79,-158r0,-170r30,0r0,201r-113,0r0,-31r83,0","w":255},"\u255e":{"d":"112,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":255},"\u255f":{"d":"146,109r0,-437r30,0r0,203r83,0r0,31r-83,0r0,203r-30,0xm79,109r0,-437r31,0r0,437r-31,0","w":255},"\u2560":{"d":"79,109r0,-437r31,0r0,437r-31,0xm146,-127r0,-201r30,0r0,170r83,0r0,31r-113,0xm146,109r0,-200r113,0r0,31r-83,0r0,169r-30,0","w":255},"\u2561":{"d":"112,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169","w":255},"\u2562":{"d":"79,109r0,-203r-83,0r0,-31r83,0r0,-203r30,0r0,437r-30,0xm145,109r0,-437r31,0r0,437r-31,0","w":255},"\u2563":{"d":"145,109r0,-437r31,0r0,437r-31,0xm109,-328r0,201r-113,0r0,-31r83,0r0,-170r30,0xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169","w":255},"\u2564":{"d":"259,-127r-263,0r0,-31r263,0r0,31xm112,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169","w":255},"\u2565":{"d":"79,109r0,-203r-83,0r0,-31r263,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-30,0","w":255},"\u2566":{"d":"259,-127r-263,0r0,-31r263,0r0,31xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169xm145,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":255},"\u2567":{"d":"259,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm259,-60r-263,0r0,-31r263,0r0,31","w":255},"\u2568":{"d":"259,-94r-263,0r0,-31r83,0r0,-203r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":255},"\u2569":{"d":"109,-127r-113,0r0,-31r83,0r0,-170r30,0r0,201xm259,-127r-114,0r0,-201r31,0r0,170r83,0r0,31xm259,-60r-263,0r0,-31r263,0r0,31","w":255},"\u256a":{"d":"112,-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":255},"\u256b":{"d":"79,109r0,-203r-83,0r0,-31r83,0r0,-203r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0r0,-203r-36,0r0,203r-30,0","w":255},"\u256c":{"d":"176,-158r83,0r0,31r-113,0r0,-201r30,0r0,170xm79,-158r0,-170r30,0r0,201r-113,0r0,-31r83,0xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169xm176,-60r0,169r-30,0r0,-200r113,0r0,31r-83,0","w":255},"\u2580":{"d":"259,-109r-263,0r0,-219r263,0r0,219","w":255},"\u2584":{"d":"259,109r-263,0r0,-218r263,0r0,218","w":255},"\u2588":{"d":"-4,109r0,-437r263,0r0,437r-263,0","w":255},"\u258c":{"d":"-4,109r0,-437r131,0r0,437r-131,0","w":255},"\u2590":{"d":"128,109r0,-437r131,0r0,437r-131,0","w":255},"\u2591":{"d":"18,-328r22,0r0,22r-22,0r0,-22xm105,-328r22,0r0,22r-22,0r0,-22xm193,-328r22,0r0,22r-22,0r0,-22xm62,-284r22,0r0,22r-22,0r0,-22xm149,-284r22,0r0,22r-22,0r0,-22xm237,-284r22,0r0,22r-22,0r0,-22xm193,-240r22,0r0,22r-22,0r0,-22xm105,-240r22,0r0,22r-22,0r0,-22xm18,-240r22,0r0,22r-22,0r0,-22xm237,-196r22,0r0,22r-22,0r0,-22xm149,-196r22,0r0,22r-22,0r0,-22xm62,-196r22,0r0,22r-22,0r0,-22xm18,-152r22,0r0,22r-22,0r0,-22xm105,-152r22,0r0,22r-22,0r0,-22xm193,-152r22,0r0,22r-22,0r0,-22xm237,-109r22,0r0,22r-22,0r0,-22xm149,-109r22,0r0,22r-22,0r0,-22xm62,-109r22,0r0,22r-22,0r0,-22xm18,-65r22,0r0,22r-22,0r0,-22xm105,-65r22,0r0,22r-22,0r0,-22xm193,-65r22,0r0,22r-22,0r0,-22xm62,-21r22,0r0,22r-22,0r0,-22xm149,-21r22,0r0,22r-22,0r0,-22xm237,-21r22,0r0,22r-22,0r0,-22xm193,23r22,0r0,22r-22,0r0,-22xm105,23r22,0r0,22r-22,0r0,-22xm18,23r22,0r0,22r-22,0r0,-22xm62,67r22,0r0,22r-22,0r0,-22xm149,67r22,0r0,22r-22,0r0,-22xm237,67r22,0r0,22r-22,0r0,-22","w":255},"\u2592":{"d":"18,-328r22,0r0,22r-22,0r0,-22xm62,-328r22,0r0,22r-22,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm149,-328r22,0r0,22r-22,0r0,-22xm193,-328r22,0r0,22r-22,0r0,-22xm237,-328r22,0r0,22r-22,0r0,-22xm-4,-284r22,0r0,22r-22,0r0,-22xm40,-284r22,0r0,22r-22,0r0,-22xm84,-284r22,0r0,22r-22,0r0,-22xm128,-284r21,0r0,22r-21,0r0,-22xm171,-284r22,0r0,22r-22,0r0,-22xm215,-284r22,0r0,22r-22,0r0,-22xm215,-284r22,0r0,22r-22,0r0,-22xm215,-284r22,0r0,22r-22,0r0,-22xm18,-240r22,0r0,22r-22,0r0,-22xm62,-240r22,0r0,22r-22,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm149,-240r22,0r0,22r-22,0r0,-22xm193,-240r22,0r0,22r-22,0r0,-22xm237,-240r22,0r0,22r-22,0r0,-22xm-4,-196r22,0r0,22r-22,0r0,-22xm40,-196r22,0r0,22r-22,0r0,-22xm84,-196r22,0r0,22r-22,0r0,-22xm128,-196r21,0r0,22r-21,0r0,-22xm171,-196r22,0r0,22r-22,0r0,-22xm215,-196r22,0r0,22r-22,0r0,-22r22,0r0,22r-22,0r0,-22xm215,-196r22,0r0,22r-22,0r0,-22xm18,-152r22,0r0,22r-22,0r0,-22xm62,-152r22,0r0,22r-22,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm149,-152r22,0r0,22r-22,0r0,-22xm193,-152r22,0r0,22r-22,0r0,-22xm237,-152r22,0r0,22r-22,0r0,-22xm-4,-109r22,0r0,22r-22,0r0,-22xm84,-109r22,0r0,22r-22,0r0,-22xm128,-109r21,0r0,22r-21,0r0,-22xm171,-109r22,0r0,22r-22,0r0,-22xm215,-109r22,0r0,22r-22,0r0,-22xm40,-109r22,0r0,22r-22,0r0,-22xm237,-65r22,0r0,22r-22,0r0,-22xm193,-65r22,0r0,22r-22,0r0,-22xm149,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm62,-65r22,0r0,22r-22,0r0,-22xm18,-65r22,0r0,22r-22,0r0,-22xm-4,-21r22,0r0,22r-22,0r0,-22xm40,-21r22,0r0,22r-22,0r0,-22xm84,-21r22,0r0,22r-22,0r0,-22xm128,-21r21,0r0,22r-21,0r0,-22xm171,-21r22,0r0,22r-22,0r0,-22xm215,-21r22,0r0,22r-22,0r0,-22xm237,23r22,0r0,22r-22,0r0,-22xm193,23r22,0r0,22r-22,0r0,-22xm149,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm62,23r22,0r0,22r-22,0r0,-22xm18,23r22,0r0,22r-22,0r0,-22xm-4,67r22,0r0,22r-22,0r0,-22xm40,67r22,0r0,22r-22,0r0,-22xm84,67r22,0r0,22r-22,0r0,-22xm128,67r21,0r0,22r-21,0r0,-22xm171,67r22,0r0,22r-22,0r0,-22xm215,67r22,0r0,22r-22,0r0,-22","w":255},"\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,-22r21,0r0,22r22,0r0,-22r22,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,22r21,0r0,-22r-21,0xm109,-284r0,22r22,0r0,-22r-22,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,-22xm109,-240r-22,0r0,22r22,0r0,-22xm66,-240r-22,0r0,22r22,0r0,-22xm22,-196r0,22r22,0r0,-22r-22,0xm66,-196r0,22r21,0r0,-22r-21,0xm109,-196r0,22r22,0r0,-22r-22,0xm153,-196r0,22r22,0r0,-22r-22,0xm197,-196r0,22r22,0r0,-22r-22,0xm66,-152r-22,0r0,22r22,0r0,-22xm87,-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,0xm109,-109r0,22r22,0r0,-22r-22,0xm87,-87r0,-22r-21,0r0,22r21,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,0xm109,-43r0,-22r-22,0r0,22r22,0xm66,-43r0,-22r-22,0r0,22r22,0xm22,-21r0,22r22,0r0,-22r-22,0xm66,-21r0,22r21,0r0,-22r-21,0xm109,-21r0,22r22,0r0,-22r-22,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,0xm109,45r0,-22r-22,0r0,22r22,0xm66,45r0,-22r-22,0r0,22r22,0xm22,67r0,22r22,0r0,-22r-22,0xm66,67r0,22r21,0r0,-22r-21,0xm109,67r0,22r22,0r0,-22r-22,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":"31,-102v2,-43,34,-77,78,-77v44,0,76,33,77,77v1,41,-36,78,-77,78v-41,0,-80,-37,-78,-78xm173,-102v-1,-36,-28,-64,-64,-64v-36,0,-64,26,-64,64v0,35,29,65,64,65v35,0,64,-31,64,-65","w":217},"\u25d8":{"d":"22,0r0,-172r173,0r0,172r-173,0xm144,-86v0,-19,-16,-36,-35,-36v-19,0,-37,16,-36,36v0,19,17,35,36,35v19,0,35,-16,35,-35","w":217},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm186,-101v-1,-44,-33,-78,-77,-78v-45,0,-76,34,-78,78v-1,41,37,77,78,77v41,0,79,-35,77,-77xm45,-101v0,-38,28,-65,64,-65v36,0,63,28,64,65v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":217},"\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,5v51,0,96,-45,96,-96v0,-51,-45,-96,-96,-96v-51,0,-96,45,-96,96v0,51,45,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,-14xm236,-55v-15,42,-88,44,-104,0r11,-6v16,33,66,34,81,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,-55v14,43,87,44,103,0r-11,-6v-16,33,-66,34,-81,0","w":378},"\u263c":{"d":"97,-201v21,-13,34,-22,62,-25r0,-59r13,0r0,59v28,2,42,11,61,25r51,-50r9,9r-50,51v16,19,23,36,25,63r59,0r0,12r-59,0v-2,22,-10,42,-25,61r50,51r-10,9r-49,-50v-21,15,-32,22,-62,25r0,59r-13,0r0,-59v-28,-4,-43,-10,-61,-24r-52,49r-9,-9r50,-51v-14,-18,-22,-35,-25,-62r-59,0r0,-12r59,0v2,-28,10,-43,25,-61r-50,-51r9,-10xm165,-33v48,0,90,-42,90,-90v0,-48,-42,-90,-90,-90v-48,0,-90,42,-90,90v0,48,42,90,90,90","w":329},"\u2640":{"d":"227,-173v2,48,-40,92,-87,92r0,71r81,0r0,10r-81,0r0,77r-10,0r0,-77r-81,0r0,-10r81,0r0,-71v-47,-3,-87,-42,-87,-92v0,-53,39,-92,92,-92v53,0,91,39,92,92xm217,-173v-1,-47,-35,-82,-82,-82v-47,0,-82,35,-83,82v-1,44,38,83,83,83v45,0,83,-38,82,-83","w":270},"\u2642":{"d":"20,-46v-1,-59,58,-109,121,-87r63,-136r-94,47r-4,-10r108,-53r6,3r29,117r-10,3r-25,-102r-63,135v30,15,53,44,53,83v0,52,-40,92,-93,92v-52,0,-90,-39,-91,-92xm194,-46v-2,-47,-35,-82,-83,-82v-48,1,-80,35,-82,82v-1,45,38,83,82,83v44,1,84,-38,83,-83","w":270},"\u2660":{"d":"95,-82v-11,42,-85,46,-85,-5v0,-61,81,-68,86,-129v5,57,80,72,85,128v1,21,-18,41,-39,40v-23,-1,-33,-17,-44,-34v0,49,20,72,66,75r1,7r-139,0r1,-7v46,1,69,-27,68,-75","w":191},"\u2663":{"d":"178,-48v-30,-3,-45,-17,-58,-42v2,56,20,74,72,84r1,6r-149,0r1,-6v52,-7,68,-32,71,-84v-13,52,-106,57,-106,-7v0,-38,36,-63,71,-40v-27,-30,-4,-79,37,-79v40,0,65,47,37,79v31,-22,71,0,71,39v1,27,-21,52,-48,50","w":236},"\u2665":{"d":"157,-216v38,-1,57,42,38,77v-23,43,-76,92,-88,143v-11,-65,-88,-105,-96,-174v-3,-25,20,-47,45,-46v27,1,44,19,51,44v7,-25,24,-43,50,-44","w":213},"\u2666":{"d":"92,4v-26,-44,-42,-61,-81,-110v20,-23,63,-77,81,-110v18,33,60,86,81,110v-17,18,-66,81,-81,110","w":183},"\u266a":{"d":"7,-33v-1,-37,44,-54,78,-35r0,-172v69,-5,91,20,88,87r-17,0v3,-35,-20,-48,-53,-47r0,147v12,65,-94,84,-96,20","w":180},"\u266b":{"d":"15,-17v-1,-38,45,-54,79,-35r0,-171r140,-44r0,195v12,66,-94,79,-97,19v-1,-37,46,-54,79,-36r0,-127r-105,32r0,147v3,41,-20,57,-55,59v-26,1,-41,-15,-41,-39","w":270},"\u0132":{"d":"34,0r0,-258r34,0r0,258r-34,0xm246,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":264},"\u0133":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0xm108,-221r0,-37r31,0r0,37r-31,0xm139,10v4,55,-26,74,-72,62r6,-26v28,7,35,-3,35,-37r0,-196r31,0r0,197","w":159},"\u0149":{"d":"147,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm22,-224r0,-36r34,0v1,41,0,74,-29,84r-8,-12v13,-6,19,-17,19,-36r-16,0","w":217},"\u2032":{"d":"22,-166v1,-34,5,-64,12,-92r36,0v-6,34,-16,64,-28,92r-20,0","w":67},"\u2033":{"d":"22,-166v1,-34,5,-64,12,-92r36,0v-6,34,-16,64,-28,92r-20,0xm72,-166v1,-34,5,-64,12,-92r36,0v-6,34,-16,64,-28,92r-20,0","w":127},"\u2105":{"d":"40,-194v-10,54,64,68,69,18r22,2v-4,28,-26,47,-55,48v-38,1,-59,-27,-59,-68v0,-72,97,-95,111,-27r-21,4v-4,-16,-13,-27,-30,-27v-26,0,-38,20,-37,50xm72,9r141,-271r25,0r-140,271r-26,0xm241,3v-38,0,-62,-27,-62,-68v0,-41,23,-68,62,-68v38,0,61,27,61,66v0,42,-22,69,-61,70xm241,-115v-26,0,-40,20,-39,50v0,30,14,50,39,50v25,0,38,-21,38,-51v0,-29,-13,-49,-38,-49","w":318},"\u2113":{"d":"108,-11v-28,25,-78,20,-74,-27r0,-40r-14,18r-17,-14r31,-41v4,-57,-18,-147,41,-147v24,0,41,18,39,42v-4,43,-24,63,-51,103r0,73v0,39,26,19,45,4r0,29xm76,-241v-21,0,-10,53,-13,83v15,-30,26,-34,26,-62v0,-10,-3,-21,-13,-21","w":116},"\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,-102v2,-43,34,-77,78,-77v44,0,76,33,77,77v1,41,-36,78,-77,78v-41,0,-80,-37,-78,-78","w":217},"\u25e6":{"d":"20,-119v0,-23,21,-44,44,-44v23,0,44,21,44,44v0,23,-21,44,-44,44v-23,0,-44,-21,-44,-44xm95,-119v0,-16,-14,-31,-31,-31v-17,0,-31,15,-31,31v-1,17,15,31,31,31v16,0,31,-14,31,-31","w":127},"\u0100":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm63,-278r0,-26r110,0r0,26r-110,0","w":240},"\u0101":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm48,-216r0,-26r110,0r0,26r-110,0"},"\u0108":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm136,-303r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":259},"\u0109":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm104,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":180},"\u010a":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm116,-280r0,-39r39,0r0,39r-39,0","w":259},"\u010b":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm82,-210r0,-39r39,0r0,39r-39,0","w":180},"\u0112":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm73,-280r0,-26r110,0r0,26r-110,0","w":240},"\u0113":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm44,-216r0,-26r110,0r0,26r-110,0"},"\u0114":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm94,-321v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":240},"\u0115":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0"},"\u0116":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm108,-274r0,-39r39,0r0,39r-39,0","w":240},"\u0117":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm84,-210r0,-39r39,0r0,39r-39,0"},"\u011c":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103xm152,-302r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":280},"\u011d":{"d":"176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69xm95,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0"},"\u0120":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103xm132,-272r0,-39r39,0r0,39r-39,0","w":280},"\u0121":{"d":"176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69xm80,-210r0,-39r39,0r0,39r-39,0"},"\u0122":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103xm160,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":280},"\u0123":{"d":"111,-236r0,30r-37,0v-1,-36,3,-62,30,-71r9,15v-11,5,-17,13,-19,26r17,0xm176,-25v2,70,-23,99,-84,101v-44,2,-74,-20,-74,-61r31,5v0,43,87,36,92,0v1,-8,3,-23,3,-44v-49,57,-132,5,-132,-70v0,-54,28,-98,81,-97v22,0,40,9,54,27r0,-23r29,0r0,162xm95,-165v-34,0,-51,30,-51,68v0,43,17,71,51,71v34,0,52,-29,52,-70v0,-36,-18,-69,-52,-69"},"\u0124":{"d":"29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0xm136,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":259},"\u0125":{"d":"105,-164v-69,0,-47,96,-50,164r-31,0r0,-258r31,0r0,93v38,-46,121,-31,121,47r0,118r-32,0v-8,-60,25,-164,-39,-164xm113,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0"},"\u0126":{"d":"29,-193r-24,0r0,-26r24,0r0,-39r34,0r0,39r134,0r0,-39r34,0r0,39r23,0r0,26r-23,0r0,193r-34,0r0,-121r-134,0r0,121r-34,0r0,-193xm63,-193r0,41r134,0r0,-41r-134,0","w":259},"\u0127":{"d":"105,-164v-69,-2,-46,97,-50,164r-31,0r0,-211r-23,0r0,-23r23,0r0,-24r31,0r0,24r65,0r0,23r-65,0r0,46v37,-44,121,-35,121,47r0,118r-32,0v-7,-59,24,-162,-39,-164"},"\u0128":{"d":"34,0r0,-258r34,0r0,258r-34,0xm26,-295v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":100},"\u0129":{"d":"35,0r0,-187r31,0r0,187r-31,0xm29,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":100},"\u012a":{"d":"34,0r0,-258r34,0r0,258r-34,0xm-5,-275r0,-26r110,0r0,26r-110,0","w":100},"\u012b":{"d":"35,0r0,-187r31,0r0,187r-31,0xm-4,-216r0,-26r110,0r0,26r-110,0","w":100},"\u012c":{"d":"34,0r0,-258r34,0r0,258r-34,0xm22,-316v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":100},"\u012d":{"d":"35,0r0,-187r31,0r0,187r-31,0xm21,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":100},"\u012e":{"d":"106,64v-32,20,-77,14,-77,-28v0,-9,2,-21,6,-36r0,-258r34,0r0,258r-13,0v-10,23,-5,51,20,51v9,0,19,-3,30,-8r0,21","w":100},"\u012f":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm95,64v-32,20,-81,13,-77,-28v7,-60,5,-152,6,-223r32,0r0,187r-11,0v-10,23,-5,51,20,51v9,0,19,-3,30,-8r0,21","w":79},"\u0134":{"d":"152,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176xm139,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":180},"\u0135":{"d":"40,-240r-19,30r-36,0r37,-49r34,0r40,49r-36,0xm55,10v5,54,-25,75,-72,62r6,-26v28,7,35,-4,35,-37r0,-196r31,0r0,197","w":79},"\u0136":{"d":"26,0r0,-258r34,0r0,128r128,-128r47,0r-108,105r112,153r-45,0r-91,-130r-43,41r0,89r-34,0xm176,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":240},"\u0137":{"d":"24,0r0,-258r32,0r0,147r74,-76r41,0r-71,70r79,117r-39,0r-62,-95r-22,21r0,74r-32,0xm146,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":180},"\u0138":{"d":"24,0r0,-187r31,0r0,76r75,-76r41,0r-71,70r78,117r-39,0r-61,-95r-23,21r0,74r-31,0","w":180},"\u013b":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0xm155,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31"},"\u013c":{"d":"23,0r0,-258r32,0r0,258r-32,0xm76,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":79},"\u0145":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0xm180,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":259},"\u0146":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm139,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31"},"\u014a":{"d":"136,-233v-53,0,-73,29,-73,92r0,141r-34,0r0,-258r34,0r0,32v23,-26,43,-36,82,-36v73,0,93,51,96,129v4,95,-47,165,-128,125r16,-27v58,31,78,-35,78,-97v0,-68,-24,-101,-71,-101","w":260},"\u014b":{"d":"53,-160v33,-54,135,-37,123,45v-11,77,33,216,-72,187r6,-26v28,7,34,-4,34,-37r0,-123v0,-32,-8,-49,-39,-49v-69,0,-45,97,-49,163r-32,0r0,-187r29,0r0,27"},"\u014c":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm88,-281r0,-26r110,0r0,26r-110,0","w":280},"\u014d":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm46,-216r0,-26r110,0r0,26r-110,0"},"\u014e":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm113,-321v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":280},"\u014f":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm71,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0"},"\u0156":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43xm180,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":259},"\u0157":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23xm102,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":119},"\u015c":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57xm118,-303r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":240},"\u015d":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42xm93,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":180},"\u0166":{"d":"93,-111r-58,0r0,-23r58,0r0,-93r-85,0r0,-31r205,0r0,31r-86,0r0,93r58,0r0,23r-58,0r0,111r-34,0r0,-111","w":219},"\u0167":{"d":"93,0v-45,7,-74,-4,-68,-55r0,-35r-23,0r0,-24r23,0r0,-48r-23,0r0,-25r23,0r0,-46r32,-19r0,65r32,0r0,25r-32,0r0,48r30,0r0,24r-30,0v2,30,-12,74,32,62","w":100},"\u0168":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm112,-294v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":259},"\u0169":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm79,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16"},"\u016a":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm79,-279r0,-26r110,0r0,26r-110,0","w":259},"\u016b":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm46,-216r0,-26r110,0r0,26r-110,0"},"\u016c":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm100,-320v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":259},"\u016d":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm71,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0"},"\u0172":{"d":"127,-26v107,0,60,-141,70,-232r34,0v-7,110,37,259,-93,262v-15,39,19,60,51,39r0,21v-32,20,-77,12,-77,-28v0,-8,2,-19,5,-32v-67,-7,-88,-38,-89,-113r0,-149r34,0v8,91,-33,232,65,232","w":259},"\u0173":{"d":"93,-23v71,1,46,-97,50,-164r31,0r0,187v-14,-2,-10,19,-12,25v0,29,32,32,55,18r0,21v-32,20,-77,13,-77,-28v1,-16,8,-40,6,-63v-34,54,-123,37,-123,-44r0,-116r32,0v8,60,-26,163,38,164"},"\u0174":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0xm169,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":339},"\u0175":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0xm132,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":259},"\u0176":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm124,-304r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":240},"\u0177":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm98,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0","w":180},"\u017f":{"d":"101,-231v-25,-5,-45,-2,-45,27r0,204r-32,0r0,-207v-4,-50,35,-62,81,-52","w":79},"\u01fa":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm116,-248v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm116,-300v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19xm99,-313r23,-49r42,0r-39,49r-26,0","w":240},"\u01fb":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-202v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm99,-254v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,20,-9,19,-19v1,-10,-10,-19,-19,-19xm87,-289r23,-49r42,0r-39,49r-26,0"},"\u01fc":{"d":"0,0r124,-258r212,0r0,31r-130,0r0,79r120,0r0,30r-120,0r0,88r134,0r0,30r-168,0r0,-74r-100,0r-35,74r-37,0xm87,-105r85,0r0,-122r-26,0xm155,-274r23,-49r42,0r-39,49r-26,0","w":360},"\u01fd":{"d":"305,-57v-9,66,-121,82,-152,26v-21,20,-41,35,-77,35v-37,1,-63,-20,-64,-53v0,-61,77,-55,127,-69v1,-33,-8,-48,-41,-47v-30,1,-46,8,-50,36r-31,-4v2,-63,113,-77,146,-33v15,-16,31,-24,60,-25v59,0,86,48,82,106r-135,0v-11,72,91,83,102,24xm273,-111v2,-49,-55,-70,-87,-40v-9,9,-15,23,-16,40r103,0xm46,-50v5,49,85,28,91,-6v1,-6,2,-19,2,-38v-15,12,-97,5,-93,44xm144,-210r23,-49r42,0r-39,49r-26,0","w":320},"\u01fe":{"d":"140,-262v38,2,55,10,80,28r29,-33r18,15r-31,34v59,81,18,222,-95,222v-37,0,-55,-8,-79,-27r-30,33r-17,-14r31,-35v-63,-78,-19,-230,94,-223xm199,-210v-57,-52,-156,-9,-147,81v3,29,4,43,16,65xm82,-46v58,50,146,5,146,-82v0,-24,-5,-45,-15,-64xm120,-274r23,-49r42,0r-39,49r-26,0","w":280},"\u01ff":{"d":"23,-91v-6,-84,76,-123,139,-85r17,-22r17,12r-19,24v44,57,17,166,-67,166v-19,0,-36,-5,-50,-14r-18,24r-17,-13r19,-24v-15,-17,-19,-39,-21,-68xm144,-152v-42,-33,-89,2,-89,59v0,18,3,32,9,44xm78,-33v56,40,111,-35,79,-102xm93,-210r23,-49r42,0r-39,49r-26,0","w":219},"\u0387":{"d":"33,-151r0,-36r36,0r0,36r-36,0","w":100},"\u1e80":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0xm196,-274r-26,0r-40,-49r42,0","w":339},"\u1e81":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0xm145,-210r-26,0r-40,-49r42,0","w":259},"\u1e82":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0xm153,-274r23,-49r42,0r-39,49r-26,0","w":339},"\u1e83":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0xm102,-210r23,-49r42,0r-39,49r-26,0","w":259},"\u1e84":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0xm120,-273r0,-36r33,0r0,36r-33,0xm185,-273r0,-36r33,0r0,36r-33,0","w":339},"\u1e85":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0xm83,-223r0,-36r33,0r0,36r-33,0xm148,-223r0,-36r33,0r0,36r-33,0","w":259},"\u1ef2":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm141,-274r-26,0r-40,-49r42,0","w":240},"\u1ef3":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm114,-210r-26,0r-40,-49r42,0","w":180},"\u201b":{"d":"53,-176v-29,-11,-30,-43,-29,-84r34,0r0,36r-16,0v0,18,6,31,19,36","w":79},"\u203e":{"d":"-5,-216r0,-26r131,0r0,26r-131,0","w":119},"\u20a4":{"d":"152,-191v1,-55,-93,-59,-92,-3v0,7,2,18,5,34r60,0r0,26r-55,0v3,12,5,21,6,26r49,0r0,26r-50,0v-4,17,-13,33,-28,48v49,-15,93,26,133,-2r10,29v-58,34,-120,-31,-173,12r-12,-30v23,-13,35,-33,39,-57r-36,0r0,-26r36,0v0,-4,-3,-12,-7,-26r-29,0r0,-26r22,0v-28,-80,65,-130,127,-85v14,11,24,28,27,50"},"\u212e":{"d":"16,-93v0,-84,98,-133,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-56,2,-93,-43,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0","w":216},"\u215b":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm19,-228v14,-5,38,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22xm240,9v-49,0,-74,-61,-25,-74v-42,-16,-21,-67,24,-62v46,-6,69,49,24,62v20,5,29,16,29,33v1,27,-24,41,-52,41xm262,-90v0,-23,-44,-24,-43,-1v0,12,10,18,21,18v11,0,21,-7,22,-17xm239,-55v-15,-1,-25,8,-25,22v0,15,9,22,26,22v15,1,26,-9,26,-22v0,-15,-12,-22,-27,-22","w":300},"\u215c":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm114,-167v0,26,-25,41,-54,41v-31,0,-49,-12,-54,-37r26,-3v5,28,52,25,54,-3v1,-16,-18,-23,-37,-19r4,-20v32,4,38,-34,6,-33v-12,0,-21,6,-25,18r-25,-4v9,-23,20,-32,48,-34v55,-4,68,48,26,61v20,5,31,16,31,33xm240,9v-50,5,-74,-61,-24,-74v-42,-17,-21,-67,23,-62v46,-6,70,48,24,62v20,5,30,16,30,33v0,27,-25,38,-53,41xm262,-90v0,-23,-44,-24,-43,-1v0,12,10,18,21,18v11,0,21,-7,22,-17xm240,-55v-16,-1,-25,9,-26,22v0,15,9,22,26,22v14,1,26,-8,26,-22v0,-14,-12,-22,-26,-22","w":300},"\u215d":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm113,-173v0,55,-99,65,-107,10r25,-3v5,29,57,22,56,-7v-1,-25,-34,-34,-51,-14r-25,-4r14,-67r83,0r0,22r-66,0r-6,27v31,-22,77,-1,77,36xm240,9v-50,5,-74,-61,-24,-74v-42,-17,-21,-67,23,-62v46,-6,70,48,24,62v20,5,30,16,30,33v0,27,-25,38,-53,41xm262,-90v0,-23,-44,-24,-43,-1v0,12,10,18,21,18v11,0,21,-7,22,-17xm240,-55v-16,-1,-25,9,-26,22v0,15,9,22,26,22v14,1,26,-8,26,-22v0,-14,-12,-22,-26,-22","w":300},"\u215e":{"d":"36,10r193,-272r28,0r-194,272r-27,0xm35,-129v3,-38,18,-73,46,-107r-68,0r0,-22r97,0r0,14v-29,33,-45,72,-49,115r-26,0xm240,9v-49,5,-74,-61,-25,-74v-42,-16,-21,-67,24,-62v46,-6,69,49,24,62v20,5,29,16,29,33v1,28,-25,38,-52,41xm262,-90v0,-23,-44,-24,-43,-1v0,12,10,18,21,18v11,0,21,-7,22,-17xm239,-55v-15,-1,-25,8,-25,22v0,15,9,22,26,22v15,1,26,-9,26,-22v0,-15,-12,-22,-27,-22","w":300},"\uf004":{"d":"42,56r0,-31r37,0v1,36,-2,63,-30,72r-9,-15v11,-5,17,-13,19,-26r-17,0","w":119},"\uf005":{"d":"95,40v0,31,-40,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31","w":119},"\u0384":{"d":"39,-210r23,-49r42,0r-39,49r-26,0","w":119},"\u0385":{"d":"61,-265r33,0r-35,49r-21,0xm94,-250r30,0r0,34r-30,0r0,-34xm-4,-250r31,0r0,34r-31,0r0,-34","w":119},"\u0386":{"d":"0,0r99,-258r37,0r105,258r-39,0r-30,-78r-108,0r-28,78r-36,0xm74,-106r88,0r-46,-125v-9,45,-28,84,-42,125xm9,-208r24,-50r41,0r-38,50r-27,0","w":240,"k":{"\u03c7":7,"\u03bd":7,"\u03b3":7,"\u03ab":27,"\u03a5":27,"\u03a4":27,"\u039f":8,"\u03a6":10,"\u0398":8}},"\u0388":{"d":"70,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm-16,-208r24,-50r41,0r-38,50r-27,0","w":282},"\u0389":{"d":"63,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0xm-15,-208r23,-50r41,0r-38,50r-26,0","w":301},"\u038a":{"d":"63,0r0,-258r34,0r0,258r-34,0xm-15,-208r23,-50r41,0r-38,50r-26,0","w":138},"\u038c":{"d":"139,4v-76,-1,-123,-56,-124,-130v-2,-80,49,-136,124,-136v73,-1,123,58,123,134v0,76,-50,132,-123,132xm139,-233v-57,0,-88,41,-88,108v0,55,33,101,88,100v56,-1,88,-45,88,-104v0,-61,-33,-104,-88,-104xm-16,-208r24,-50r41,0r-38,50r-27,0","w":278,"k":{"\u03a5":12}},"\u038e":{"d":"166,0r0,-109r-99,-149r41,0r77,122r78,-122r40,0r-103,149r0,109r-34,0xm-16,-208r24,-50r41,0r-38,50r-27,0","w":307,"k":{"\u03cc":33,"\u03ca":-17,"\u03bf":33,"\u03bc":27,"\u03ba":27,"\u03b9":13,"\u03b7":27,"\u03af":13,"\u03ae":27,"\u03a9":17,"\u039f":20,"\u039b":27,"\u0394":27,"\u0391":27,"\u0390":-30,"\u03c6":33,"\u03c3":33,"\u03b1":33,"\u03a6":20,"\u0398":20}},"\u038f":{"d":"137,-233v-49,-1,-80,47,-80,97v0,52,21,88,62,108r0,28r-100,0r0,-30r56,0v-89,-63,-63,-232,62,-232v125,0,150,170,61,232r56,0r0,30r-100,0r0,-28v87,-27,83,-204,-17,-205xm-16,-208r24,-50r41,0r-38,50r-27,0","w":270,"k":{"\u03ab":8,"\u03a5":8}},"\u0390":{"d":"24,0r0,-187r32,0r0,187r-32,0xm41,-265r33,0r-36,49r-20,0xm73,-250r31,0r0,34r-31,0r0,-34xm-24,-250r31,0r0,34r-31,0r0,-34","w":79},"\u0391":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240,"k":{"\u03c7":7,"\u03bd":7,"\u03b3":7,"\u03ab":27,"\u03a5":27,"\u03a4":27,"\u039f":8,"\u03a6":10,"\u0398":8,"\u2019":27," ":20}},"\u0392":{"d":"221,-75v1,89,-104,75,-195,75r0,-258v82,0,182,-14,182,66v0,27,-15,46,-36,55v29,8,48,29,49,62xm175,-188v0,-52,-64,-37,-115,-39r0,78v50,-2,115,12,115,-39xm186,-75v0,-55,-70,-43,-126,-44r0,89v56,-2,126,12,126,-45","w":240},"\u0394":{"d":"0,0r99,-258r36,0r106,258r-241,0xm47,-30r143,0r-74,-201v-17,71,-47,135,-69,201","w":240,"k":{"\u03ab":27,"\u03a5":27,"\u03a4":21,"\u039f":8,"\u0398":8," ":20}},"\u0395":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u0396":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0","w":219},"\u0397":{"d":"29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0","w":259},"\u0399":{"d":"34,0r0,-258r34,0r0,258r-34,0","w":100},"\u039a":{"d":"26,0r0,-258r34,0r0,128r128,-128r47,0r-108,105r112,153r-45,0r-91,-130r-43,41r0,89r-34,0","w":240,"k":{"\u03ce":4,"\u03cc":4,"\u03c9":4,"\u03bf":4,"\u03be":4,"\u03b8":4,"\u03b6":4,"\u03ac":4,"\u039f":11,"\u03c6":4,"\u03c3":4,"\u03b4":4,"\u03b1":4,"\u03a6":20,"\u0398":11}},"\u039b":{"d":"138,-258r100,258r-37,0r-81,-229r-83,229r-35,0r101,-258r35,0","w":240,"k":{"\u03ab":27,"\u03a5":27,"\u03a4":27,"\u039f":8,"\u0398":8," ":20}},"\u039c":{"d":"27,0r0,-258r51,0r73,221r76,-221r46,0r0,258r-33,0r0,-216r-75,216r-31,0r-74,-219r0,219r-33,0","w":299},"\u039d":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"\u039e":{"d":"24,-258r186,0r0,31r-186,0r0,-31xm40,-144r154,0r0,30r-154,0r0,-30xm19,-30r196,0r0,30r-196,0r0,-30","w":233},"\u039f":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280,"k":{"\u03ab":12,"\u03a5":12,"\u039b":7,"\u0394":8,"\u0391":7}},"\u03a0":{"d":"29,0r0,-258r202,0r0,258r-34,0r0,-227r-134,0r0,227r-34,0","w":259},"\u03a1":{"d":"224,-183v0,78,-78,83,-162,78r0,105r-34,0r0,-258v90,1,196,-17,196,75xm189,-182v0,-59,-69,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240,"k":{"\u039b":27,"\u0394":27,"\u0391":27,".":46,",":46," ":7}},"\u03a3":{"d":"201,-258r0,31r-138,0r88,93r-88,104r145,0r0,30r-182,0r0,-36r84,-98r-84,-89r0,-35r175,0","w":222,"k":{"\u03c0":17,"\u03c4":17}},"\u03a4":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0","w":219,"k":{"\u03cd":31,"\u03cc":40,"\u03cb":31,"\u03ca":-33,"\u03c8":26,"\u03c7":20,"\u03c5":31,"\u03bf":40,"\u03bd":20,"\u03bc":26,"\u03b9":13,"\u03b7":26,"\u03b3":31,"\u03b0":31,"\u03ad":40,"\u03ac":40,"\u03a9":7,"\u039f":7,"\u039b":27,"\u0394":27,"\u0391":27,"\u0390":-33,"\u03c6":40,"\u03c3":40,"\u03b5":40,"\u03b1":40,"\u03a6":7,"\u0398":7,";":40,":":40,".":40,",":40," ":7}},"\u03a5":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0","w":240,"k":{"\u03cc":33,"\u03ca":-21,"\u03bf":33,"\u03bc":27,"\u03ba":27,"\u03b9":13,"\u03b7":27,"\u03b3":17,"\u03af":13,"\u03ae":27,"\u03a9":17,"\u039f":20,"\u039b":27,"\u0394":27,"\u0391":27,"\u0390":-33,"\u03c6":33,"\u03c3":33,"\u03b1":33,"\u03a6":20,"\u0398":20,";":20,":":20,".":46,"-":33,",":46," ":7}},"\u03a7":{"d":"2,0r99,-134r-88,-124r41,0r67,98r73,-98r37,0r-91,122r98,136r-42,0r-76,-109r-77,109r-41,0","w":240},"\u03a8":{"d":"133,-80v-72,-1,-111,-35,-111,-102r0,-76r34,0v1,47,-7,109,19,129v13,10,32,18,58,20r0,-149r34,0r0,149v52,-5,77,-24,77,-83r0,-66r34,0r0,73v0,69,-37,104,-111,105r0,80r-34,0r0,-80","w":300,"k":{"\u03ce":14,"\u03cc":14,"\u03c9":14,"\u03bf":14,"\u03b8":7,"\u03ac":14,"\u03c6":14,"\u03c3":14,"\u03b4":14,"\u03b1":14}},"\u03a9":{"d":"135,-233v-49,-1,-80,47,-80,97v0,52,21,88,62,108r0,28r-100,0r0,-30r56,0v-90,-63,-62,-232,62,-232v125,0,150,170,61,232r56,0r0,30r-100,0r0,-28v88,-27,85,-204,-17,-205","w":269,"k":{"\u03ab":8,"\u03a5":8}},"\u03aa":{"d":"34,0r0,-258r34,0r0,258r-34,0xm1,-273r0,-36r33,0r0,36r-33,0xm66,-273r0,-36r33,0r0,36r-33,0","w":100},"\u03ab":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm70,-273r0,-36r33,0r0,36r-33,0xm135,-273r0,-36r33,0r0,36r-33,0","w":240,"k":{"\u03cc":33,"\u03ca":-17,"\u03bf":33,"\u03bc":27,"\u03ba":27,"\u03b9":13,"\u03b7":27,"\u03af":13,"\u03ae":27,"\u03a9":17,"\u039f":20,"\u039b":27,"\u0394":27,"\u0391":27,"\u0390":-30,"\u03c6":33,"\u03c3":33,"\u03b1":33,"\u03a6":20,"\u0398":20," ":7}},"\u03ac":{"d":"91,-191v34,0,46,15,62,36v1,-4,4,-15,9,-32r33,0v-8,26,-16,58,-23,94v8,45,16,76,23,93r-32,0v-5,-12,-8,-23,-11,-34v-10,26,-30,38,-61,38v-51,1,-78,-43,-78,-98v0,-57,27,-97,78,-97xm146,-95v0,-39,-15,-70,-49,-70v-34,0,-50,31,-50,71v0,38,13,72,48,72v34,0,52,-33,51,-73xm82,-210r23,-49r42,0r-39,49r-26,0","w":208},"\u03ad":{"d":"48,-97v-50,-26,-21,-94,37,-94v24,0,44,8,61,25r-23,19v-23,-23,-70,-25,-70,9v0,23,22,31,50,29r0,26v-31,-2,-53,8,-53,32v0,39,59,36,80,6r22,19v-34,45,-136,41,-135,-25v0,-21,10,-37,31,-46xm64,-210r23,-49r42,0r-39,49r-26,0","w":160},"\u03ae":{"d":"105,-163v-69,0,-45,97,-49,163r-32,0r0,-187r29,0r0,27v33,-54,123,-38,123,45r0,187r-32,0r0,-186v0,-32,-8,-49,-39,-49xm82,-210r23,-49r42,0r-39,49r-26,0"},"\u03af":{"d":"24,0r0,-187r32,0r0,187r-32,0xm17,-210r23,-49r42,0r-39,49r-26,0","w":79},"\u03b0":{"d":"98,4v-49,0,-74,-27,-74,-80r0,-111r32,0v5,63,-21,165,42,165v66,0,39,-100,44,-165r31,0r0,110v2,53,-27,81,-75,81xm100,-265r33,0r-35,49r-21,0xm133,-250r30,0r0,34r-30,0r0,-34xm35,-250r31,0r0,34r-31,0r0,-34","w":196},"\u03b2":{"d":"191,-73v-1,41,-30,77,-77,77v-25,0,-44,-9,-58,-28r0,96r-31,0r0,-249v-2,-57,28,-80,79,-85v79,-8,96,113,23,120v38,3,64,30,64,69xm158,-71v0,-40,-27,-61,-74,-58r0,-23v72,13,81,-83,18,-84v-60,-2,-44,74,-46,135v-2,52,12,79,54,82v30,2,48,-23,48,-52","w":207},"\u03b3":{"d":"4,-187r34,0r52,147r53,-147r33,0r-70,187r0,72r-32,0r0,-72","w":180},"\u03b6":{"d":"13,-74v0,-66,56,-128,101,-158r-73,0r0,-26r115,0r0,22v-52,29,-108,96,-112,163v-5,72,114,21,108,91v-2,36,-28,59,-68,58r8,-29v20,-2,30,-11,30,-25v0,-20,-16,-22,-43,-22v-48,0,-66,-29,-66,-74","w":158,"k":{"\u03c0":15,"\u03ce":24,"\u03cc":24,"\u03c9":24,"\u03bf":24,"\u03bd":15,"\u03ba":7,"\u03b9":7,"\u03b8":17,"\u03b7":7,"\u03b3":15,"\u03ae":7,"\u03ac":24,"\u03c6":24,"\u03c4":15,"\u03c3":24,"\u03b4":13,"\u03b1":24}},"\u03b7":{"d":"105,-163v-69,0,-45,97,-49,163r-32,0r0,-187r29,0r0,27v33,-54,123,-38,123,45r0,187r-32,0r0,-186v0,-32,-8,-49,-39,-49"},"\u03b8":{"d":"16,-129v0,-89,28,-133,84,-133v56,0,84,44,84,133v0,89,-28,133,-84,133v-56,0,-84,-44,-84,-133xm152,-142v-3,-58,-9,-94,-52,-94v-33,0,-50,31,-51,94r103,0xm152,-116r-103,0v1,63,18,94,51,94v33,0,51,-31,52,-94","k":{"\u03bb":7}},"\u03b9":{"d":"24,0r0,-187r32,0r0,187r-32,0","w":79},"\u03ba":{"d":"24,-187r31,0r0,74r76,-74r42,0r-84,78r91,109r-41,0r-72,-88r-12,11r0,77r-31,0r0,-187","w":180,"k":{"\u03ce":4,"\u03cc":4,"\u03c9":4,"\u03c2":4,"\u03bf":4,"\u03be":4,"\u03b8":4,"\u03b6":4,"\u03ac":4,"\u03c6":4,"\u03c3":4,"\u03b4":4,"\u03b1":4}},"\u03bb":{"d":"90,-140r-52,140r-34,0r69,-183r-27,-75r33,0r96,258r-33,0","w":180,"k":{"\u03ce":5,"\u03cd":9,"\u03cc":5,"\u03c9":5,"\u03c5":9,"\u03c2":8,"\u03bf":5,"\u03be":5,"\u03ac":5,"\u03c6":7,"\u03c3":5,"\u03b4":5,"\u03b1":5}},"\u03bc":{"d":"102,-24v66,1,41,-97,46,-163r31,0r0,187r-28,0r0,-22v-15,32,-75,36,-92,3r0,91r-31,0r0,-259r31,0v5,65,-19,162,43,163","w":207},"\u03bd":{"d":"76,0r-71,-187r33,0r52,150r53,-150r33,0r-71,187r-29,0","w":180},"\u03be":{"d":"26,-205v0,-47,52,-62,110,-57r0,26v-38,-1,-79,-1,-81,33v-2,28,42,32,79,30r0,26v-59,-5,-109,53,-76,102v19,28,99,8,97,65v-1,33,-33,57,-71,56r8,-30v19,-1,32,-9,32,-24v0,-12,-10,-20,-30,-22v-52,-6,-78,-30,-78,-74v0,-39,27,-68,57,-80v-28,-2,-47,-24,-47,-51","w":161,"k":{"\u03cc":10,"\u03c2":10,"\u03bf":10,"\u03be":10,"\u03b6":10,"\u03ac":10,"\u03c6":10,"\u03c3":10,"\u03b4":10,"\u03b1":10}},"\u03bf":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71","k":{"\u03c0":5,"\u03c7":10,"\u03bb":7,"\u03c4":5}},"\u03c1":{"d":"192,-94v0,79,-84,129,-137,76r0,90r-32,0v6,-108,-32,-263,82,-263v53,0,87,42,87,97xm160,-92v0,-45,-18,-73,-54,-73v-36,0,-52,30,-51,74v0,41,15,69,51,69v36,0,54,-29,54,-70","w":204,"k":{"\u03c0":5,"\u03bb":7,"\u03c4":5}},"\u03c2":{"d":"34,-33v-57,-81,29,-190,136,-152r-8,26v-58,-21,-116,12,-116,68v0,77,116,42,116,112v0,42,-49,64,-95,52r7,-29v31,11,70,-12,47,-37v-24,-12,-72,-19,-87,-40","w":173},"\u03c5":{"d":"98,4v-49,0,-74,-27,-74,-80r0,-111r32,0v5,63,-21,165,42,165v66,0,39,-100,44,-165r31,0r0,110v2,53,-27,81,-75,81","w":196},"\u03c7":{"d":"8,-187r35,0r51,104r53,-104r35,0r-68,128r72,131r-36,0r-56,-108r-56,108r-35,0r72,-130","w":188,"k":{"\u03ce":10,"\u03cc":10,"\u03c9":10,"\u03c2":10,"\u03bf":10,"\u03b6":10,"\u03ac":10,"\u03c6":10,"\u03c3":10,"\u03b4":10,"\u03b1":10}},"\u03c8":{"d":"112,4v-63,-3,-91,-29,-91,-100r0,-91r32,0v5,70,-24,164,59,165r0,-165r32,0r0,165v79,4,57,-91,60,-165r31,0r0,91v3,71,-26,96,-91,100r0,68r-32,0r0,-68","w":256},"\u03c9":{"d":"84,4v-84,0,-83,-128,-41,-191r31,0v-17,39,-27,71,-27,98v0,33,12,68,40,68v48,0,37,-67,38,-119r31,0v1,51,-9,119,38,119v27,0,41,-34,40,-68v0,-27,-9,-59,-26,-98r30,0v43,65,43,191,-41,191v-26,0,-45,-14,-56,-42v-11,28,-31,42,-57,42","w":281,"k":{"\u03c0":5,"\u03c7":10,"\u03bb":7,"\u03c4":5}},"\u03ca":{"d":"24,0r0,-187r32,0r0,187r-32,0xm-8,-223r0,-36r33,0r0,36r-33,0xm57,-223r0,-36r33,0r0,36r-33,0","w":79},"\u03cb":{"d":"98,4v-49,0,-74,-27,-74,-80r0,-111r32,0v5,63,-21,165,42,165v66,0,39,-100,44,-165r31,0r0,110v2,53,-27,81,-75,81xm53,-223r0,-36r33,0r0,36r-33,0xm118,-223r0,-36r33,0r0,36r-33,0","w":196},"\u03cc":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm82,-210r23,-49r42,0r-39,49r-26,0","k":{"\u03c0":5,"\u03c7":10,"\u03bb":7,"\u03c4":5}},"\u03cd":{"d":"98,4v-49,0,-74,-27,-74,-80r0,-111r32,0v5,63,-21,165,42,165v66,0,39,-100,44,-165r31,0r0,110v2,53,-27,81,-75,81xm78,-210r23,-49r42,0r-39,49r-26,0","w":196},"\u03ce":{"d":"84,4v-84,0,-83,-128,-41,-191r31,0v-17,39,-27,71,-27,98v0,33,12,68,40,68v48,0,37,-67,38,-119r31,0v1,51,-9,119,38,119v27,0,41,-34,40,-68v0,-27,-9,-59,-26,-98r30,0v43,65,43,191,-41,191v-26,0,-45,-14,-56,-42v-11,28,-31,42,-57,42xm123,-210r23,-49r42,0r-39,49r-26,0","w":281,"k":{"\u03c0":5,"\u03c7":10,"\u03bb":7,"\u03c4":5}},"\u0401":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm73,-273r0,-36r33,0r0,36r-33,0xm138,-273r0,-36r33,0r0,36r-33,0","w":240},"\u0402":{"d":"262,-78v-2,-66,-76,-69,-133,-42r0,120r-34,0r0,-227r-86,0r0,-31r205,0r0,31r-85,0r0,80v76,-39,167,-13,168,68v1,59,-55,100,-122,78r6,-29v39,18,83,-5,81,-48","w":311},"\u0403":{"d":"28,-258r167,0r0,31r-133,0r0,227r-34,0r0,-258xm83,-274r23,-49r42,0r-39,49r-26,0","w":194,"k":{"\u2014":8,"\u00bb":24,"\u00ab":24,".":44,",":44}},"\u0404":{"d":"20,-132v0,-134,188,-181,222,-55r-33,9v-9,-60,-92,-69,-129,-32v-14,15,-23,36,-24,62r95,0r0,30r-96,0v1,53,31,94,81,94v41,0,67,-22,77,-66r33,9v-15,57,-51,85,-108,85v-80,0,-118,-59,-118,-136","w":258},"\u0405":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57","w":240},"\u0406":{"d":"34,0r0,-258r34,0r0,258r-34,0","w":100},"\u0407":{"d":"34,0r0,-258r34,0r0,258r-34,0xm1,-273r0,-36r33,0r0,36r-33,0xm66,-273r0,-36r33,0r0,36r-33,0","w":100},"\u0408":{"d":"152,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":180},"\u0409":{"d":"8,-30v31,9,38,-6,38,-46r0,-182r161,0r0,110v82,-3,164,-4,160,73v-2,52,-33,75,-93,75r-101,0r0,-227r-93,0r0,132v5,70,-14,112,-78,95xm331,-74v-1,-55,-66,-43,-124,-44r0,89v55,-2,125,13,124,-45","w":380,"k":{"\u2019":28}},"\u040a":{"d":"350,-75v-2,53,-34,75,-95,75r-99,0r0,-118r-93,0r0,118r-34,0r0,-258r34,0r0,110r93,0r0,-110r34,0r0,110v82,-2,163,-5,160,73xm314,-74v0,-56,-67,-42,-124,-44r0,89v56,-2,124,14,124,-45","w":363,"k":{"\u2019":24}},"\u040b":{"d":"257,0v-1,-63,12,-139,-53,-136v-19,0,-44,5,-75,16r0,120r-34,0r0,-227r-86,0r0,-31r206,0r0,31r-86,0r0,79v84,-34,168,-19,162,80r0,68r-34,0","w":307},"\u040c":{"d":"62,-145v82,2,38,-131,144,-113r0,30v-70,-12,-47,88,-100,96v45,17,73,92,102,132r-42,0v-22,-33,-49,-85,-73,-110v-8,-7,-18,-11,-31,-11r0,121r-34,0r0,-258r34,0r0,113xm92,-274r23,-49r42,0r-39,49r-26,0","w":209},"\u040e":{"d":"2,-258r34,0r84,158r74,-158r34,0v-41,80,-79,179,-127,250v-16,15,-40,14,-65,5r0,-29v37,18,61,1,70,-36xm93,-319v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":228},"\u040f":{"d":"145,0r0,72r-31,0r0,-72r-86,0r0,-258r34,0r0,228r135,0r0,-228r34,0r0,258r-86,0","w":258},"\u0410":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240,"k":{"\u044d":-8,"\u0444":-4,"\u0443":4,"\u0442":8,"\u0430":-4,"\u042d":8,"\u0427":28,"\u0424":12,"\u0423":16,"\u0422":28,"\u0421":8,"\u041f":4,"\u041e":8,"\u041b":-8,"\u0417":4,"\u0414":-12,"\u2019":20}},"\u0411":{"d":"224,-75v0,52,-30,75,-94,75r-101,0r0,-258r168,0r0,31r-134,0r0,79v82,-3,161,-4,161,73xm187,-74v0,-57,-66,-42,-124,-44r0,89v55,-1,124,12,124,-45","w":236,"k":{"\u0443":8,"\u043b":4,"\u042f":4,"\u042d":4,"\u042a":12,"\u0427":16,"\u0425":8,"\u0424":4,"\u0423":8,"\u0422":16,"\u0421":4,"\u041e":4,"\u0417":4,"\u0410":8}},"\u0412":{"d":"221,-75v1,89,-104,75,-195,75r0,-258v82,0,182,-14,182,66v0,27,-15,46,-36,55v29,8,48,29,49,62xm175,-188v0,-52,-64,-37,-115,-39r0,78v50,-2,115,12,115,-39xm186,-75v0,-55,-70,-43,-126,-44r0,89v56,-2,126,12,126,-45","w":240,"k":{"\u044f":4,"\u0447":12,"\u0445":4,"\u0443":4,"\u0442":12,"\u043c":4,"\u0434":4,"\u042f":12,"\u042a":20,"\u0427":16,"\u0425":16,"\u0424":12,"\u0423":12,"\u0422":24,"\u0421":12,"\u041e":12,"\u041b":4,"\u0417":12,"\u0416":8,"\u0414":8,"\u0410":12}},"\u0413":{"d":"28,-258r167,0r0,31r-133,0r0,227r-34,0r0,-258","w":194,"k":{"\u044f":24,"\u044e":20,"\u044c":20,"\u044b":20,"\u0443":24,"\u0440":20,"\u043e":24,"\u043d":20,"\u043c":20,"\u043b":20,"\u0438":20,"\u0435":24,"\u0434":24,"\u0432":20,"\u0430":20,"\u042f":12,"\u0421":16,"\u041e":20,"\u041c":8,"\u041b":20,"\u0417":8,"\u0414":24,"\u0410":24,"\u2014":8,"\u00bb":24,"\u00ab":24,".":44,",":44}},"\u0414":{"d":"51,-258r157,0r0,228r23,0r0,90r-30,0r0,-60r-171,0r0,60r-30,0r0,-90r20,0v25,-29,33,-135,31,-228xm84,-227v1,60,-8,155,-29,197r119,0r0,-197r-90,0","w":243,"k":{"\u0443":-8,"\u043e":-4,"\u0437":-12,"\u0427":12,"\u0424":8,"\u0423":-4}},"\u0415":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240,"k":{"\u0441":4,"\u0417":8}},"\u0416":{"d":"4,-258v107,-17,60,116,145,113r0,-113r35,0r0,113v82,6,34,-127,145,-113r0,30v-70,-11,-48,83,-100,96v45,17,73,92,102,132r-42,0v-22,-33,-47,-84,-72,-109v-8,-8,-19,-12,-33,-12r0,121r-35,0r0,-121v-35,2,-43,21,-62,51r-43,70r-43,0v29,-41,57,-115,103,-132v-51,-8,-29,-106,-100,-96r0,-30","w":332,"k":{"\u0443":4,"\u043e":4,"\u0435":4,"\u0430":-4,"\u042a":-8,"\u0423":-8,"\u0422":-4,"\u0421":4,"\u041e":8,"\u0417":4}},"\u0417":{"d":"157,-136v87,31,39,140,-48,140v-49,0,-80,-26,-95,-77r32,-8v5,25,30,56,63,56v32,0,58,-19,58,-47v0,-36,-36,-50,-78,-47r0,-29v41,2,65,-10,68,-42v2,-25,-22,-42,-49,-42v-35,0,-56,29,-57,59r-33,-7v8,-55,39,-82,91,-82v75,0,114,92,48,126","w":217,"k":{"\u042f":4,"\u0427":8,"\u0424":4,"\u0423":4,"\u0422":8,"\u0421":4,"\u041e":4,"\u041b":4}},"\u0418":{"d":"28,-258r31,0r0,204r137,-204r35,0r0,258r-31,0r0,-204r-138,204r-34,0r0,-258","w":258},"\u0419":{"d":"28,-258r31,0r0,204r137,-204r35,0r0,258r-31,0r0,-204r-138,204r-34,0r0,-258xm96,-319v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":258},"\u041a":{"d":"62,-145v82,2,38,-131,144,-113r0,30v-70,-12,-47,88,-100,96v45,17,73,92,102,132r-42,0v-22,-33,-49,-85,-73,-110v-8,-7,-18,-11,-31,-11r0,121r-34,0r0,-258r34,0r0,113","w":209,"k":{"\u0424":12,"\u0423":-4,"\u0421":4,"\u041e":4,"\u0417":4}},"\u041b":{"d":"9,-30v31,9,38,-6,38,-46r0,-182r161,0r0,258r-34,0r0,-227r-93,0r0,132v5,70,-14,112,-78,95","w":236,"k":{"\u0443":-4,"\u0431":-4,"\u0424":4}},"\u041c":{"d":"27,0r0,-258r51,0r73,221r76,-221r46,0r0,258r-33,0r0,-216r-75,216r-31,0r-74,-219r0,219r-33,0","w":299,"k":{"\u044d":-4,"\u0447":4,"\u0443":-4,"\u0441":-4,"\u043e":-4,"\u0435":-4,"\u0430":-4,"\u0427":4,"\u0424":4}},"\u041d":{"d":"29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0","w":259},"\u041e":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280,"k":{"\u0445":4,"\u043b":4,"\u0434":8,"\u042f":8,"\u0427":8,"\u0425":16,"\u0423":8,"\u041b":4,"\u0416":8,"\u0414":8,"\u0410":8}},"\u041f":{"d":"28,-258r203,0r0,258r-34,0r0,-227r-135,0r0,227r-34,0r0,-258","w":258},"\u0420":{"d":"224,-183v0,78,-78,83,-162,78r0,105r-34,0r0,-258v90,1,196,-17,196,75xm189,-182v0,-59,-69,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240,"k":{"\u044f":12,"\u044d":8,"\u043e":16,"\u0435":16,"\u0434":28,"\u0430":12,"\u042f":8,"\u0425":16,"\u0424":4,"\u0423":8,"\u0422":16,"\u0421":4,"\u041e":8,"\u041c":4,"\u041b":20,"\u0417":8,"\u0416":4,"\u0414":24,"\u0410":24,"\u00bb":20,";":8,":":8,".":68,",":68}},"\u0421":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259,"k":{"\u0447":4,"\u0436":-8,"\u0430":-4,"\u042d":4,"\u042a":12,"\u0427":12,"\u0425":20,"\u0423":12,"\u0422":12,"\u041e":8,"\u041c":4,"\u041b":12,"\u0417":4,"\u0414":8,"\u0410":8}},"\u0422":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0","w":219,"k":{"\u044f":20,"\u044e":16,"\u044c":16,"\u044b":16,"\u0449":16,"\u0445":16,"\u0443":20,"\u0441":20,"\u0440":20,"\u043f":16,"\u043e":28,"\u043c":16,"\u043b":16,"\u043a":16,"\u0438":16,"\u0435":20,"\u0432":16,"\u0430":16,"\u042f":8,"\u0424":12,"\u041e":16,"\u041b":8,"\u0417":4,"\u0416":-4,"\u0414":12,"\u0410":12,"\u2014":8,"\u00bb":16,"\u00ab":16,".":40,",":40}},"\u0423":{"d":"2,-258r34,0r84,158r74,-158r34,0v-41,80,-79,179,-127,250v-16,15,-40,14,-65,5r0,-29v37,18,61,1,70,-36","w":228,"k":{"\u044f":24,"\u044e":16,"\u0449":16,"\u0448":16,"\u0446":16,"\u0445":16,"\u0441":24,"\u0440":16,"\u043f":16,"\u043e":24,"\u043d":16,"\u043c":16,"\u043b":24,"\u043a":16,"\u0439":12,"\u0438":16,"\u0437":20,"\u0436":12,"\u0435":24,"\u0434":28,"\u0433":16,"\u0432":20,"\u0431":8,"\u042f":8,"\u042d":8,"\u0424":12,"\u041e":12,"\u041b":12,"\u0417":8,"\u0414":16,"\u0410":24,"\u2014":4,"\u00bb":16,"\u00ab":16,";":8,":":8,".":48,",":48}},"\u0424":{"d":"14,-130v0,-59,49,-95,107,-97r0,-33r32,0r0,33v60,2,106,39,106,97v-1,58,-44,95,-106,97r0,33r-32,0r0,-33v-57,-2,-107,-38,-107,-97xm153,-63v63,6,93,-75,52,-115v-12,-12,-30,-19,-52,-20r0,135xm121,-197v-63,-7,-94,75,-52,115v13,12,30,18,52,19r0,-134","w":273,"k":{"\u043b":12,"\u042f":12,"\u0427":8,"\u0423":16,"\u0422":20,"\u041b":12,"\u0414":12,"\u0410":8}},"\u0425":{"d":"2,0r99,-134r-88,-124r41,0r67,98r73,-98r37,0r-91,122r98,136r-42,0r-76,-109r-77,109r-41,0","w":240,"k":{"\u0443":8,"\u043e":4,"\u042d":12,"\u0424":12,"\u0421":12,"\u041e":12,"\u0417":8}},"\u0426":{"d":"28,-258r34,0r0,228r134,0r0,-228r35,0r0,228r23,0r0,102r-30,0r0,-72r-196,0r0,-258","w":266,"k":{"\u0430":-8,"\u041e":8}},"\u0427":{"d":"49,-258v0,64,-10,142,53,142v24,0,50,-5,76,-16r0,-126r34,0r0,258r-34,0r0,-104v-80,34,-171,20,-163,-78r0,-76r34,0","w":239},"\u0428":{"d":"28,-258r34,0r0,228r86,0r0,-228r34,0r0,228r86,0r0,-228r34,0r0,258r-274,0r0,-258","w":329},"\u0429":{"d":"28,-258r34,0r0,228r86,0r0,-228r34,0r0,228r86,0r0,-228r34,0r0,228r23,0r0,102r-30,0r0,-72r-267,0r0,-258","w":337,"k":{"\u0443":-8,"\u0430":-4}},"\u042a":{"d":"273,-75v0,87,-105,76,-195,75r0,-227r-78,0r0,-31r112,0r0,110v82,-4,161,0,161,73xm236,-74v0,-55,-66,-43,-124,-44r0,89v55,-2,124,12,124,-45","w":284,"k":{"\u042f":12,"\u2019":24}},"\u042b":{"d":"224,-75v-3,49,-33,75,-96,75r-98,0r0,-258r34,0r0,110v82,-4,163,0,160,73xm187,-74v0,-55,-65,-43,-123,-44r0,89v54,-2,123,12,123,-45xm255,-258r34,0r0,258r-34,0r0,-258","w":318},"\u042c":{"d":"223,-75v-2,50,-33,75,-96,75r-98,0r0,-258r34,0r0,110v82,-3,162,-3,160,73xm187,-75v-2,-54,-66,-42,-124,-43r0,89v56,-1,126,10,124,-46","w":236,"k":{"\u042f":16,"\u042d":4,"\u0427":28,"\u0425":16,"\u0422":36,"\u0421":8,"\u041e":8,"\u041c":8,"\u041b":12,"\u0417":4,"\u0416":12,"\u0414":8,"\u0410":8,"\u2019":28}},"\u042d":{"d":"239,-132v0,-134,-188,-181,-222,-55r33,9v9,-60,92,-69,129,-32v14,15,23,36,24,62r-95,0r0,30r96,0v-1,53,-31,94,-81,94v-41,0,-67,-22,-77,-66r-33,9v15,57,51,85,108,85v80,0,118,-59,118,-136","w":258,"k":{"\u044f":4,"\u043c":4,"\u043b":12,"\u0436":-4,"\u0434":12,"\u042f":8,"\u0425":12,"\u041b":12,"\u0417":4,"\u0416":4,"\u0414":12}},"\u042e":{"d":"228,4v-68,0,-110,-51,-115,-116r-50,0r0,112r-34,0r0,-258r34,0r0,116r49,0v3,-67,51,-120,117,-120v71,-1,116,57,116,132v0,78,-44,134,-117,134xm229,-233v-54,0,-82,46,-82,105v0,60,28,103,81,103v55,0,82,-44,82,-105v0,-59,-27,-103,-81,-103","w":363,"k":{"\u043c":4,"\u043b":16,"\u0434":16,"\u0427":12,"\u0425":16,"\u0422":20,"\u0421":4,"\u041e":4,"\u041b":16,"\u0416":8,"\u0414":16,"\u0410":12}},"\u042f":{"d":"26,-187v1,42,29,66,72,70v-46,24,-63,76,-93,117r42,0v30,-37,46,-92,92,-113v15,-2,41,-1,59,-1r0,114r34,0r0,-258v-90,3,-209,-22,-206,71xm61,-187v0,-56,81,-40,137,-42r0,85v-57,-2,-136,14,-137,-43","w":259},"\u0430":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29","k":{"\u0447":8,"\u0443":4,"\u0442":8,"\u0437":4}},"\u0431":{"d":"118,-258v29,-2,36,4,42,-6r28,1v-4,38,-19,37,-64,37v-65,0,-78,19,-81,75v38,-68,157,-30,149,58v-6,58,-27,97,-86,97v-76,0,-90,-49,-90,-137v0,-90,23,-122,102,-125xm106,-21v35,0,54,-34,53,-73v0,-36,-17,-67,-53,-66v-38,0,-54,32,-54,72v0,40,19,67,54,67","w":206,"k":{"\u044f":8,"\u044d":4,"\u044a":12,"\u0447":12,"\u0445":12,"\u0444":4,"\u0443":8,"\u0441":4,"\u043c":8,"\u043b":16,"\u0437":8,"\u0436":4,"\u0435":4,"\u0434":16,"\u0430":8}},"\u0432":{"d":"147,-97v33,7,38,65,11,84v-27,19,-88,11,-134,13r0,-187v64,1,144,-13,145,50v0,19,-10,32,-22,40xm137,-134v1,-35,-46,-24,-81,-26r0,52v36,-1,80,7,81,-26xm145,-54v-1,-36,-50,-27,-89,-28r0,56v37,-2,90,10,89,-28","w":191,"k":{"\u044f":4,"\u044a":12,"\u0447":16,"\u0444":4,"\u0443":8,"\u0442":8,"\u0441":4,"\u043e":4,"\u043c":4,"\u043b":8,"\u0437":4,"\u0436":4,"\u0435":4,"\u0434":4,"\u0431":4,"\u0430":4}},"\u0433":{"d":"24,-187r107,0r0,27r-75,0r0,160r-32,0r0,-187","w":131,"k":{"\u044f":4,"\u0441":8,"\u043e":8,"\u043b":8,"\u0437":4,"\u0435":8,"\u0434":16,"\u0430":8,".":44,",":44}},"\u0434":{"d":"49,-187r130,0r0,161r20,0r0,79r-26,0r0,-53r-147,0r0,53r-26,0r0,-79r17,0v22,-30,33,-84,32,-161xm75,-160v-2,61,-12,105,-28,134r100,0r0,-134r-72,0","w":210,"k":{"\u044d":-4,"\u044a":8}},"\u0435":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0","k":{"\u0447":12,"\u0445":8,"\u0443":4,"\u0442":12,"\u043b":12,"\u0437":8,"\u0436":4,"\u0434":8,"\u0431":4}},"\u0436":{"d":"137,-106v54,1,25,-96,98,-81r0,27v-47,-10,-28,57,-68,64v33,10,55,66,75,96r-35,0v-23,-28,-29,-79,-70,-86r0,86r-33,0r0,-86v-41,6,-47,59,-70,86r-35,0v21,-30,42,-86,75,-96v-28,-8,-26,-37,-45,-62v-6,-4,-13,-3,-23,-2r0,-27v70,-15,44,78,98,81r0,-81r33,0r0,81","w":240,"k":{"\u044a":-8,"\u0447":4,"\u0443":-4,"\u0431":-4}},"\u0437":{"d":"121,-53v0,-27,-23,-36,-56,-31r0,-25v54,13,63,-55,17,-56v-18,0,-30,11,-37,32r-30,-5v7,-72,132,-69,131,2v0,15,-7,28,-22,37v51,24,27,103,-41,103v-43,0,-67,-19,-74,-57r29,-6v3,42,83,54,83,6","w":165,"k":{"\u044a":8,"\u0447":12,"\u0444":4,"\u0443":4,"\u0441":4,"\u043e":4,"\u043b":4,"\u0437":4,"\u0435":4,"\u0434":8,"\u0431":4}},"\u0438":{"d":"24,-187r31,0r0,143r88,-143r34,0r0,187r-31,0r0,-142r-88,142r-34,0r0,-187","w":201},"\u0439":{"d":"24,-187r31,0r0,143r88,-143r34,0r0,187r-31,0r0,-142r-88,142r-34,0r0,-187xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":201},"\u043a":{"d":"55,-106v54,0,25,-95,98,-81r0,27v-47,-10,-29,56,-67,64v32,10,54,66,74,96r-34,0v-23,-28,-29,-80,-71,-86r0,86r-31,0r0,-187r31,0r0,81","w":157,"k":{"\u044d":-4,"\u0443":-4,"\u0442":-4,"\u0441":-4,"\u043e":-4,"\u043b":-4,"\u0437":-4,"\u0435":-4,"\u0431":-8,"\u0430":-8}},"\u043b":{"d":"4,-27v31,0,35,1,35,-37r0,-123r147,0r0,187r-31,0r0,-160r-84,0v-8,70,33,182,-67,160r0,-27","w":210,"k":{"\u0447":8,"\u043e":-4}},"\u043c":{"d":"25,-187r49,0r49,150r54,-150r46,0r0,187r-32,0r0,-150r-55,150r-28,0r-52,-158r0,158r-31,0r0,-187","w":247,"k":{"\u0443":-4,"\u0437":4,"\u0431":4}},"\u043d":{"d":"24,-187r32,0r0,78r87,0r0,-78r32,0r0,187r-32,0r0,-83r-87,0r0,83r-32,0r0,-187","w":198},"\u043e":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71","k":{"\u0447":8,"\u0445":4,"\u0443":4,"\u0442":8,"\u043b":8,"\u0437":4,"\u0436":4,"\u0434":8}},"\u043f":{"d":"24,-187r147,0r0,187r-31,0r0,-160r-84,0r0,160r-32,0r0,-187","w":194},"\u0440":{"d":"186,-95v8,78,-84,130,-131,76r0,91r-31,0r0,-259r29,0r0,25v12,-17,27,-29,54,-29v54,1,74,43,79,96xm104,-166v-32,0,-52,34,-52,74v0,41,17,70,50,70v34,0,51,-31,51,-73v0,-41,-16,-71,-49,-71","k":{"\u044f":4,"\u0447":8,"\u0445":4,"\u0443":4,"\u0442":8,"\u043b":12,"\u0437":4,"\u0434":8}},"\u0441":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180,"k":{"\u044d":-4,"\u0447":4,"\u043e":-4,"\u0436":-4}},"\u0442":{"d":"7,-187r151,0r0,27r-60,0r0,160r-31,0r0,-160r-60,0r0,-27","w":164,"k":{"\u0443":-4,"\u0441":4,"\u043e":4,"\u043b":8,"\u0436":-12,"\u0435":4,"\u0434":12,"\u0430":4,".":40,",":40}},"\u0443":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26","w":180,"k":{"\u044f":4,"\u044d":4,"\u0444":4,"\u0441":4,"\u0440":4,"\u043e":4,"\u043c":4,"\u043b":8,"\u0436":-4,"\u0435":4,"\u0434":12,"\u0431":-4,"\u0430":4,"\u00bb":-4,".":36,",":36}},"\u0444":{"d":"86,-191v20,1,36,9,46,22r0,-89r32,0r0,89v12,-13,26,-22,47,-22v47,0,72,46,72,97v0,72,-69,130,-119,78r0,88r-32,0r0,-88v-49,50,-119,-3,-119,-79v0,-50,26,-96,73,-96xm206,-165v-34,0,-42,31,-42,72v-1,45,7,72,40,72v33,0,48,-33,47,-74v0,-39,-12,-70,-45,-70xm89,-165v-31,0,-44,33,-44,69v0,42,13,74,47,74v33,0,40,-32,41,-69v0,-43,-9,-74,-44,-74","w":296,"k":{"\u044f":4,"\u0447":8,"\u0443":4,"\u0442":8,"\u043b":8,"\u0434":8,"\u0431":4}},"\u0445":{"d":"3,0r68,-97r-63,-90r39,0r42,65v15,-24,30,-42,46,-65r37,0r-64,88r69,99r-38,0r-49,-74r-49,74r-38,0","w":180,"k":{"\u0447":8,"\u0444":4,"\u0442":4,"\u0441":4,"\u043e":4,"\u0437":4,"\u0435":4,"\u0431":4,"\u0430":4}},"\u0446":{"d":"24,-187r32,0r0,161r87,0r0,-161r32,0r0,161r20,0r0,79r-26,0r0,-53r-145,0r0,-187","w":206,"k":{"\u0441":4,"\u043e":4,"\u0437":4,"\u0435":4}},"\u0447":{"d":"132,-75v-59,22,-124,3,-120,-63r0,-49r32,0v-1,49,-5,96,42,94v12,0,27,-3,46,-9r0,-85r32,0r0,187r-32,0r0,-75","w":187},"\u0448":{"d":"25,-187r31,0r0,161r72,0r0,-161r32,0r0,161r72,0r0,-161r32,0r0,187r-239,0r0,-187","w":288},"\u0449":{"d":"25,-187r31,0r0,161r72,0r0,-161r32,0r0,161r72,0r0,-161r32,0r0,161r21,0r0,79r-26,0r0,-53r-234,0r0,-187","w":296,"k":{"\u0443":-4,"\u043e":4,"\u0435":4}},"\u044a":{"d":"212,-56v0,65,-85,56,-153,56r0,-160r-52,0r0,-27r84,0r0,73v62,-4,121,4,121,58xm179,-56v0,-38,-48,-30,-88,-31r0,61v39,-1,88,7,88,-30","w":225},"\u044b":{"d":"201,-187r32,0r0,187r-32,0r0,-187xm178,-57v1,65,-84,58,-154,57r0,-187r32,0r0,73v61,-3,122,2,122,57xm145,-56v0,-37,-49,-32,-89,-32r0,62v39,-1,89,6,89,-30","w":258},"\u044c":{"d":"176,-57v2,66,-84,58,-153,57r0,-187r32,0r0,73v61,-3,121,2,121,57xm144,-56v1,-36,-48,-32,-89,-32r0,62v39,-1,89,6,89,-30","w":187,"k":{"\u0447":24,"\u0442":28}},"\u044d":{"d":"170,-93v16,-102,-139,-137,-159,-38r31,4v4,-41,56,-49,79,-22v9,10,14,23,16,40r-66,0r0,26r66,0v6,68,-92,86,-98,15r-31,4v5,40,35,68,79,68v54,0,86,-41,83,-97","w":183,"k":{"\u044f":4,"\u0445":4,"\u0442":8,"\u043e":-4,"\u043b":8,"\u0437":4,"\u0435":-4,"\u0434":8}},"\u044e":{"d":"174,4v-50,0,-77,-37,-80,-87r-38,0r0,83r-32,0r0,-187r32,0r0,78r38,0v5,-49,30,-82,79,-82v58,0,81,36,82,97v1,58,-27,98,-81,98xm223,-92v0,-42,-11,-72,-48,-72v-33,0,-49,30,-49,68v0,44,13,74,48,74v35,0,50,-28,49,-70","w":270,"k":{"\u0447":8,"\u0445":4,"\u0442":8,"\u043c":4,"\u043b":8,"\u0436":4,"\u0434":8}},"\u044f":{"d":"17,-132v-1,-66,85,-55,154,-55r0,187r-32,0r0,-73v-62,-10,-68,42,-94,73r-40,0v19,-23,38,-67,66,-76v-32,-3,-54,-25,-54,-56xm50,-131v0,38,49,31,89,32r0,-61v-38,1,-89,-9,-89,29","w":194},"\u0451":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u0452":{"d":"104,-164v-31,0,-49,20,-49,62r0,102r-31,0r0,-214r-24,0r0,-21r24,0r0,-23r31,0r0,23r60,0r0,21r-60,0r0,49v14,-16,30,-25,57,-26v92,-5,58,119,64,201v4,57,-27,74,-72,62r6,-26v27,6,34,-2,34,-37r0,-127v1,-29,-13,-46,-40,-46"},"\u0453":{"d":"24,-187r107,0r0,27r-75,0r0,160r-32,0r0,-187xm60,-210r23,-49r42,0r-39,49r-26,0","w":131},"\u0454":{"d":"14,-93v-16,-102,139,-137,159,-38r-31,4v-4,-41,-56,-49,-79,-22v-9,10,-14,23,-16,40r66,0r0,26r-66,0v-6,68,92,86,98,15r31,4v-5,40,-35,68,-79,68v-54,0,-86,-41,-83,-97","w":183},"\u0455":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42","w":180},"\u0456":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0","w":79},"\u0457":{"d":"35,0r0,-187r31,0r0,187r-31,0xm2,-223r0,-36r33,0r0,36r-33,0xm67,-223r0,-36r33,0r0,36r-33,0","w":100},"\u0458":{"d":"24,-221r0,-37r31,0r0,37r-31,0xm55,10v4,55,-26,74,-72,62r6,-26v28,7,35,-3,35,-37r0,-196r31,0r0,197","w":79},"\u0459":{"d":"3,-26v33,6,38,-2,38,-38r0,-123r151,0r0,73v61,-3,121,3,122,57v1,64,-84,59,-154,57r0,-160r-87,0v-7,71,31,182,-70,160r0,-26xm281,-56v0,-37,-49,-32,-89,-32r0,62v39,-1,89,7,89,-30","w":326},"\u045a":{"d":"280,-54v0,63,-85,55,-153,54r0,-83r-72,0r0,83r-32,0r0,-187r32,0r0,78r72,0r0,-78r31,0r0,78v60,-3,122,2,122,55xm247,-53v1,-36,-50,-29,-89,-30r0,58v38,-1,88,7,89,-28","w":292},"\u045b":{"d":"104,-164v-31,0,-49,20,-49,62r0,102r-31,0r0,-214r-24,0r0,-21r24,0r0,-23r31,0r0,23r60,0r0,21r-60,0r0,49v14,-16,30,-25,57,-26v89,-6,59,111,64,191r-32,0v-7,-61,25,-164,-40,-164"},"\u045c":{"d":"55,-106v54,0,25,-95,98,-81r0,27v-47,-10,-29,56,-67,64v32,10,54,66,74,96r-34,0v-23,-28,-29,-80,-71,-86r0,86r-31,0r0,-187r31,0r0,81xm60,-210r23,-49r42,0r-39,49r-26,0","w":157},"\u045e":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm62,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":180,"k":{".":36,",":36}},"\u045f":{"d":"112,0r0,53r-26,0r0,-53r-62,0r0,-187r32,0r0,161r87,0r0,-161r32,0r0,187r-63,0","w":198},"\u0490":{"d":"135,-258r0,-71r30,0r0,102r-103,0r0,227r-34,0r0,-258r107,0","w":175,"k":{"\u2014":8,"\u00bb":28,"\u00ab":28,";":8,":":8,".":44,",":44}},"\u0491":{"d":"111,-187r0,-71r26,0r0,98r-81,0r0,160r-32,0r0,-187r87,0","w":148},"\u2015":{"d":"11,-81r0,-25r338,0r0,25r-338,0","w":360},"\u2116":{"d":"28,-258r34,0r126,200r0,-200r33,0r0,258r-34,0r-127,-199r0,199r-32,0r0,-258xm307,-65v-38,-2,-62,-26,-62,-73v0,-41,24,-68,63,-68v40,0,63,30,63,70v0,42,-25,73,-64,71xm308,-182v-22,0,-33,20,-33,45v0,27,11,48,33,48v21,0,32,-20,32,-47v0,-27,-12,-46,-32,-46xm248,-47r120,0r0,26r-120,0r0,-26","w":386},"\u03c0":{"d":"89,-161r0,161r-32,0r0,-161r-49,0r0,-26r233,0r0,26r-43,0r0,161r-32,0r0,-161r-77,0","w":248,"k":{"\u03ce":5,"\u03c9":5,"\u03c2":5,"\u03bf":5,"\u03b6":5,"\u03ac":5,"\u03c6":5,"\u03c3":5,"\u03b1":5}},"\u05b0":{"d":"45,24v0,-8,6,-16,15,-15v9,0,15,6,15,15v0,9,-6,14,-15,14v-9,0,-14,-5,-15,-14xm45,61v-1,-8,7,-16,15,-15v9,0,15,6,15,15v0,9,-5,15,-15,15v-10,0,-14,-6,-15,-15","w":119},"\u05b1":{"d":"5,24v0,-8,6,-16,15,-15v9,0,15,6,15,15v0,9,-6,14,-15,14v-9,0,-14,-5,-15,-14xm45,24v-1,-8,7,-15,15,-15v10,0,15,6,15,15v0,9,-6,14,-15,14v-9,0,-14,-5,-15,-14xm85,24v0,-8,7,-15,15,-15v9,0,15,7,15,15v-1,9,-7,13,-15,14v-8,1,-15,-6,-15,-14xm25,61v0,-8,7,-15,15,-15v8,0,15,6,14,15v0,8,-7,15,-14,15v-10,0,-14,-6,-15,-15xm85,61v0,-8,7,-16,15,-15v19,0,19,30,0,30v-8,-1,-15,-5,-15,-15","w":119},"\u05b2":{"d":"82,24v0,-9,6,-15,15,-15v9,-1,14,7,14,15v0,7,-6,14,-14,14v-8,0,-16,-6,-15,-14xm9,29r0,-18r59,0r0,18r-59,0xm97,76v-15,2,-20,-22,-8,-28v10,-5,23,1,22,13v0,8,-6,15,-14,15","w":119},"\u05b3":{"d":"82,24v0,-9,6,-15,15,-15v9,-1,14,7,14,15v0,7,-6,14,-14,14v-8,0,-16,-6,-15,-14xm28,55r0,-26r-19,0r0,-18r59,0r0,18r-19,0r0,26r-21,0xm97,76v-15,2,-20,-22,-8,-28v10,-5,23,1,22,13v0,8,-6,15,-14,15","w":119},"\u05b4":{"d":"45,50v0,-8,7,-15,15,-15v10,0,15,6,15,15v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":119},"\u05b5":{"d":"22,50v-1,-8,8,-15,15,-15v8,0,15,7,15,15v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15xm83,65v-21,0,-17,-30,0,-30v8,0,15,7,15,15v0,9,-6,15,-15,15","w":119},"\u05b6":{"d":"22,24v-1,-8,7,-16,15,-15v8,0,15,7,15,15v0,19,-30,18,-30,0xm68,24v0,-9,6,-15,15,-15v9,-1,15,7,15,15v0,19,-31,18,-30,0xm45,61v-1,-8,7,-16,15,-15v9,0,15,6,15,15v0,9,-5,15,-15,15v-10,0,-14,-6,-15,-15","w":119},"\u05b7":{"d":"25,55r0,-18r70,0r0,18r-70,0","w":119},"\u05b8":{"d":"50,76r0,-30r-25,0r0,-18r70,0r0,18r-25,0r0,30r-20,0","w":119},"\u05b9":{"d":"45,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":119},"\u05ba":{"d":"45,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":119},"\u05bb":{"d":"3,24v0,-9,5,-15,15,-15v9,0,14,6,14,15v0,9,-5,14,-14,14v-9,0,-15,-5,-15,-14xm45,43v-1,-8,7,-16,15,-15v9,0,15,6,15,15v0,9,-6,14,-15,14v-9,0,-14,-5,-15,-14xm88,61v-1,-8,6,-16,14,-15v9,0,15,6,15,15v0,9,-5,15,-15,15v-9,0,-14,-5,-14,-15","w":119},"\u05bc":{"d":"45,-102v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":119},"\u05bd":{"d":"51,9r18,0r0,67r-18,0r0,-67","w":119},"\u05be":{"d":"22,-158r0,-29r94,0r0,29r-94,0","w":137},"\u05bf":{"d":"25,-220r0,-18r70,0r0,18r-70,0","w":119},"\u05c0":{"d":"37,4r0,-229r25,0r0,229r-25,0","w":98},"\u05c1":{"d":"137,-223v0,-8,6,-14,15,-14v9,0,14,5,14,14v0,9,-5,15,-14,15v-8,1,-16,-7,-15,-15","w":119},"\u05c2":{"d":"-44,-223v0,-9,5,-14,14,-14v9,0,15,6,15,14v0,9,-6,15,-15,15v-8,1,-14,-7,-14,-15","w":119},"\u05c3":{"d":"33,-151r0,-36r36,0r0,36r-36,0xm33,0r0,-36r36,0r0,36r-36,0","w":100},"\u05d0":{"d":"193,0r-41,0r-72,-101v-26,14,-20,67,-27,101r-35,0v7,-49,6,-109,45,-125r-44,-62r41,0r60,84v25,-13,21,-51,27,-84r34,0v-4,49,-7,91,-44,108","w":202},"\u05d1":{"d":"12,-185v77,-14,152,3,146,84r0,73r29,0r0,28r-178,0r0,-28r115,0v1,-73,8,-141,-74,-131v-8,0,-20,0,-36,2","w":195},"\u05d2":{"d":"26,-185v50,-13,93,7,88,64v-5,49,6,86,17,121r-33,0r-13,-46v-21,-2,-38,27,-46,46r-35,0v15,-33,34,-70,76,-70v1,-48,9,-105,-51,-88","w":143},"\u05d3":{"d":"175,-158r-32,0r0,158r-33,0r0,-158r-102,0r0,-29r167,0r0,29","w":182},"\u05d4":{"d":"158,-92v7,-76,-63,-71,-129,-63r-3,-28v82,-14,165,-9,165,82r0,101r-33,0r0,-92xm62,-105r0,105r-34,0r0,-105r34,0","w":216},"\u05d5":{"d":"62,-187r0,187r-35,0r0,-187r35,0","w":88},"\u05d6":{"d":"45,0v5,-61,-24,-127,19,-158r-47,0r0,-29r113,0r0,24v-35,0,-60,23,-58,57r7,106r-34,0","w":137},"\u05d7":{"d":"27,-182v80,-15,163,-13,163,78r0,104r-34,0v-4,-72,24,-159,-62,-159v-10,0,-21,0,-33,2r0,157r-34,0r0,-182","w":215},"\u05d8":{"d":"107,5v-92,2,-84,-98,-82,-192r33,0v3,66,-18,165,49,165v51,0,51,-45,51,-98v0,-48,-35,-50,-54,-22r-11,-17v13,-21,28,-31,48,-31v43,0,50,40,50,89v0,67,-21,104,-84,106","w":212},"\u05d9":{"d":"62,-187r0,97r-35,0r0,-97r35,0","w":88},"\u05da":{"d":"124,-92v6,-70,-51,-72,-114,-64r-3,-29v81,-12,151,-1,151,84r0,173r-34,0r0,-164","w":183},"\u05db":{"d":"150,-93v0,72,-61,110,-136,91r5,-31v49,18,95,-7,95,-60v0,-52,-45,-78,-95,-61r-5,-30v73,-23,136,21,136,91","w":165},"\u05dc":{"d":"44,-187r103,0v1,49,3,94,-26,116v-15,20,-15,40,-14,71r-34,0v-7,-58,20,-81,39,-113v3,-11,2,-30,2,-45r-103,0r0,-100r33,0r0,71","w":166},"\u05dd":{"d":"27,-182v80,-15,163,-13,163,78r0,104r-163,0r0,-182xm156,-101v6,-58,-41,-62,-95,-56r0,129r95,0r0,-73","w":215},"\u05de":{"d":"157,-28v-4,-52,15,-128,-33,-132v-58,8,-54,102,-71,160r-33,0r23,-109r-29,-78r33,0r14,42v9,-22,35,-44,63,-44v83,0,65,104,67,189r-96,0r0,-28r62,0","w":216},"\u05df":{"d":"62,-187r0,259r-35,0r0,-259r35,0","w":88},"\u05e0":{"d":"13,-185v50,-13,88,6,88,64r0,121r-90,0r0,-28r56,0v-6,-55,26,-149,-51,-130","w":126},"\u05e1":{"d":"103,5v-54,1,-87,-41,-87,-97v0,-57,34,-100,87,-100v56,0,88,40,88,100v0,57,-31,96,-88,97xm103,-164v-37,-1,-50,34,-50,72v-1,39,15,68,50,69v37,0,52,-33,52,-70v0,-39,-16,-71,-52,-71","w":206},"\u05e2":{"d":"86,-33v58,-15,42,-88,47,-154r34,0v-5,61,5,131,-36,162v-29,23,-67,33,-122,42r-5,-29v21,-3,39,-7,52,-11r-33,-164r36,0","w":190},"\u05e3":{"d":"145,-101v6,-56,-42,-66,-93,-57v1,34,-10,84,36,69r4,24v-35,14,-73,-3,-73,-44r0,-70v71,-20,159,-16,159,75r0,176r-33,0r0,-173","w":203},"\u05e4":{"d":"94,-81v-34,14,-73,-3,-73,-44r0,-55v75,-27,160,0,160,84v0,83,-92,121,-161,86r8,-27v46,26,118,3,118,-58v0,-49,-40,-78,-92,-64v-2,31,-2,67,36,54","w":196},"\u05e5":{"d":"61,72r0,-142r-57,-117r36,0r45,93v31,-13,27,-55,32,-93r35,0v-5,56,-6,104,-58,120r0,139r-33,0","w":166},"\u05e6":{"d":"92,-104v27,-13,24,-47,26,-83r35,0v-1,54,-7,87,-48,105r40,62r0,20r-134,0r0,-28r94,0r-103,-159r38,0","w":172},"\u05e7":{"d":"26,-187r153,0v2,49,-1,91,-26,116v-18,19,-15,40,-15,71r-33,0v-8,-57,20,-80,38,-113v5,-10,1,-31,2,-45r-119,0r0,-29xm29,72r0,-177r32,0r0,177r-32,0","w":197},"\u05e8":{"d":"124,-92v7,-69,-51,-72,-114,-64r-3,-29v82,-13,151,1,151,84r0,101r-34,0r0,-92","w":183},"\u05e9":{"d":"119,5v-96,0,-101,-94,-101,-192r34,0v0,30,1,81,4,95v27,-1,46,-12,49,-44r4,-51r33,0v-7,45,4,99,-39,113v-10,3,-24,8,-41,9v8,54,102,53,119,5v11,-32,13,-87,18,-127r33,0v-7,95,-7,192,-113,192","w":249},"\u05ea":{"d":"87,-160v-8,62,29,167,-47,161v-11,0,-22,-1,-33,-5r6,-26v19,8,41,6,41,-21r0,-108v-10,0,-22,1,-37,3r-3,-28v89,-8,202,-21,192,83r0,101r-34,0r0,-92v5,-61,-25,-69,-85,-68","w":231},"\u05f0":{"d":"150,-187r0,187r-34,0r0,-187r34,0xm62,-187r0,187r-35,0r0,-187r35,0","w":177},"\u05f1":{"d":"150,-187r0,187r-34,0r0,-187r34,0xm62,-187r0,97r-35,0r0,-97r35,0","w":177},"\u05f2":{"d":"150,-187r0,97r-34,0r0,-97r34,0xm62,-187r0,97r-35,0r0,-97r35,0","w":177},"\u05f3":{"d":"16,-119r17,-68r36,0r-32,68r-21,0","w":84},"\u05f4":{"d":"81,-119r17,-68r36,0r-32,68r-21,0xm16,-119r17,-68r36,0r-32,68r-21,0","w":150},"\u20aa":{"d":"27,-187v67,5,170,-23,170,48r0,79r-30,0v-5,-37,18,-101,-26,-101r-84,0r0,161r-30,0r0,-187xm266,-47v1,70,-104,41,-169,47r0,-126r30,0r0,101v39,-6,110,19,110,-25r0,-137r29,0r0,140","w":293},"\ue801":{"d":"-15,-223v0,-7,7,-14,15,-14v9,-1,15,6,15,14v0,9,-6,15,-15,15v-8,1,-16,-7,-15,-15xm62,-187r0,187r-35,0r0,-187r35,0","w":88},"\ue802":{"d":"124,-92v6,-70,-51,-72,-114,-64r-3,-29v81,-12,151,-1,151,84r0,173r-34,0r0,-164xm46,-64v0,-8,6,-16,15,-15v9,0,15,6,15,15v0,9,-6,14,-15,14v-9,0,-14,-5,-15,-14xm46,-27v-1,-8,7,-16,15,-15v9,0,15,6,15,15v0,9,-5,15,-15,15v-10,0,-14,-6,-15,-15","w":183},"\ue803":{"d":"124,-92v6,-70,-51,-72,-114,-64r-3,-29v81,-12,151,-1,151,84r0,173r-34,0r0,-164xm51,-12r0,-30r-25,0r0,-18r70,0r0,18r-25,0r0,30r-20,0","w":183},"\ue804":{"d":"44,-187r103,0v1,49,3,94,-26,116v-15,20,-15,40,-14,71r-34,0v-7,-58,20,-81,39,-113v3,-11,2,-30,2,-45r-103,0r0,-100r33,0r0,71xm-30,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":166},"\ue805":{"d":"44,-187r103,0v1,49,3,94,-26,116v-15,20,-15,40,-14,71r-34,0v-7,-58,20,-81,39,-113v3,-11,2,-30,2,-45r-103,0r0,-100r33,0r0,71xm-30,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15xm40,-112v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":166},"\ufb20":{"d":"169,-187v-4,97,-2,190,-92,187r-69,0r0,-28r48,0r-31,-159r36,0r28,159v44,-6,46,-96,46,-159r34,0","w":192},"\ufb2a":{"d":"119,5v-96,0,-101,-94,-101,-192r34,0v0,30,1,81,4,95v27,-1,46,-12,49,-44r4,-51r33,0v-7,45,4,99,-39,113v-10,3,-24,8,-41,9v8,54,102,53,119,5v11,-32,13,-87,18,-127r33,0v-7,95,-7,192,-113,192xm202,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":249},"\ufb2b":{"d":"119,5v-96,0,-101,-94,-101,-192r34,0v0,30,1,81,4,95v27,-1,46,-12,49,-44r4,-51r33,0v-7,45,4,99,-39,113v-10,3,-24,8,-41,9v8,54,102,53,119,5v11,-32,13,-87,18,-127r33,0v-7,95,-7,192,-113,192xm19,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":249},"\ufb2c":{"d":"119,5v-96,0,-101,-94,-101,-192r34,0v0,30,1,81,4,95v27,-1,46,-12,49,-44r4,-51r33,0v-7,45,4,99,-39,113v-10,3,-24,8,-41,9v8,54,102,53,119,5v11,-32,13,-87,18,-127r33,0v-7,95,-7,192,-113,192xm141,-82v-1,-8,6,-15,14,-15v8,0,15,7,15,15v0,8,-8,15,-15,15v-8,-1,-14,-6,-14,-15xm202,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":249},"\ufb2d":{"d":"119,5v-96,0,-101,-94,-101,-192r34,0v0,30,1,81,4,95v27,-1,46,-12,49,-44r4,-51r33,0v-7,45,4,99,-39,113v-10,3,-24,8,-41,9v8,54,102,53,119,5v11,-32,13,-87,18,-127r33,0v-7,95,-7,192,-113,192xm141,-82v-1,-8,6,-15,14,-15v8,0,15,7,15,15v0,8,-8,15,-15,15v-8,-1,-14,-6,-14,-15xm19,-223v-1,-8,7,-15,15,-14v10,0,15,5,15,14v0,9,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":249},"\ufb2e":{"d":"193,0r-41,0r-72,-101v-26,14,-20,67,-27,101r-35,0v7,-49,6,-109,45,-125r-44,-62r41,0r60,84v25,-13,21,-51,27,-84r34,0v-4,49,-7,91,-44,108xm66,55r0,-18r70,0r0,18r-70,0","w":202},"\ufb2f":{"d":"193,0r-41,0r-72,-101v-26,14,-20,67,-27,101r-35,0v7,-49,6,-109,45,-125r-44,-62r41,0r60,84v25,-13,21,-51,27,-84r34,0v-4,49,-7,91,-44,108xm91,76r0,-30r-25,0r0,-18r70,0r0,18r-25,0r0,30r-20,0","w":202},"\ufb30":{"d":"193,0r-41,0r-72,-101v-26,14,-20,67,-27,101r-35,0v7,-49,6,-109,45,-125r-44,-62r41,0r60,84v25,-13,21,-52,27,-84r34,0v-4,49,-8,92,-44,108xm107,-28v1,15,-21,20,-27,8v-5,-10,1,-23,12,-23v10,0,14,6,15,15","w":202},"\ufb31":{"d":"12,-185v77,-14,152,3,146,84r0,73r29,0r0,28r-178,0r0,-28r115,0v1,-73,8,-141,-74,-131v-8,0,-20,0,-36,2xm46,-98v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":195},"\ufb32":{"d":"26,-185v50,-13,93,7,88,64v-5,49,6,86,17,121r-33,0r-13,-46v-21,-2,-38,27,-46,46r-35,0v15,-33,34,-70,76,-70v1,-48,9,-105,-51,-88xm38,-114v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":143},"\ufb33":{"d":"175,-158r-32,0r0,158r-33,0r0,-158r-102,0r0,-29r167,0r0,29xm59,-102v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":182},"\ufb34":{"d":"158,-92v7,-76,-63,-71,-129,-63r-3,-28v82,-14,165,-9,165,82r0,101r-33,0r0,-92xm62,-105r0,105r-34,0r0,-105r34,0xm92,-90v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":216},"\ufb35":{"d":"76,-187r0,187r-34,0r0,-187r34,0xm0,-102v1,-9,6,-13,15,-14v10,-1,13,6,15,14v0,10,-6,14,-15,15v-8,0,-15,-7,-15,-15","w":103},"\ufb36":{"d":"60,0v6,-60,-23,-127,19,-158r-47,0r0,-29r113,0r0,24v-35,0,-59,22,-57,57r6,106r-34,0xm0,-112v0,-20,30,-18,30,0v0,10,-6,15,-15,15v-9,0,-15,-6,-15,-15","w":148},"\ufb38":{"d":"107,5v-92,2,-84,-98,-82,-192r33,0v3,66,-18,165,49,165v51,0,51,-45,51,-98v0,-48,-35,-50,-54,-22r-11,-17v13,-21,28,-31,48,-31v43,0,50,40,50,89v0,67,-21,104,-84,106xm94,-102v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":212},"\ufb39":{"d":"76,-187r0,97r-34,0r0,-97r34,0xm0,-128v0,-9,6,-15,15,-15v8,0,15,7,15,15v0,7,-7,14,-15,14v-8,0,-15,-6,-15,-14","w":103},"\ufb3a":{"d":"124,-92v6,-70,-51,-72,-114,-64r-3,-29v81,-12,151,-1,151,84r0,173r-34,0r0,-164xm48,-89v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":183},"\ufb3b":{"d":"150,-93v0,72,-61,110,-136,91r5,-31v49,18,95,-7,95,-60v0,-52,-45,-78,-95,-61r-5,-30v73,-23,136,21,136,91xm43,-93v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":165},"\ufb3c":{"d":"44,-187r103,0v1,49,3,94,-26,116v-15,20,-15,40,-14,71r-34,0v-7,-58,20,-81,39,-113v3,-11,2,-30,2,-45r-103,0r0,-100r33,0r0,71xm50,-112v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":166},"\ufb3e":{"d":"157,-28v-4,-52,15,-128,-33,-132v-58,8,-54,102,-71,160r-33,0r23,-109r-29,-78r33,0r14,42v9,-22,35,-44,63,-44v83,0,65,104,67,189r-96,0r0,-28r62,0xm101,-90v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":216},"\ufb40":{"d":"13,-185v50,-13,88,6,88,64r0,121r-90,0r0,-28r56,0v-6,-55,26,-149,-51,-130xm17,-93v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":126},"\ufb41":{"d":"103,5v-54,1,-87,-41,-87,-97v0,-57,34,-100,87,-100v56,0,88,40,88,100v0,57,-31,96,-88,97xm103,-164v-37,-1,-50,34,-50,72v-1,39,15,68,50,69v37,0,52,-33,52,-70v0,-39,-16,-71,-52,-71xm89,-93v-1,-8,7,-16,15,-15v19,0,18,31,0,30v-10,0,-14,-6,-15,-15","w":206},"\ufb43":{"d":"145,-101v4,-54,-43,-67,-93,-57v2,29,-12,83,29,69r4,24v-33,14,-66,-2,-66,-44r0,-70v71,-21,159,-13,159,75r0,176r-33,0r0,-173xm112,-70v-19,0,-18,-30,0,-29v9,1,15,5,15,14v0,9,-6,15,-15,15","w":203},"\ufb44":{"d":"84,-80v-30,13,-63,-8,-63,-43r0,-57v75,-27,160,0,160,84v0,83,-92,121,-161,86r8,-27v46,26,118,3,118,-58v0,-49,-40,-78,-92,-64v1,27,-7,60,26,56xm98,-95v0,-7,7,-16,15,-15v9,0,15,6,15,15v1,8,-7,14,-15,14v-8,0,-15,-7,-15,-14","w":196},"\ufb46":{"d":"92,-104v27,-13,24,-47,26,-83r35,0v-1,54,-7,87,-48,105r40,62r0,20r-134,0r0,-28r94,0r-103,-159r38,0xm18,-82v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":172},"\ufb47":{"d":"26,-187r153,0v2,49,-1,91,-26,116v-18,19,-15,40,-15,71r-33,0v-8,-57,20,-80,38,-113v5,-10,1,-31,2,-45r-119,0r0,-29xm29,72r0,-177r32,0r0,177r-32,0xm80,-102v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":197},"\ufb48":{"d":"124,-92v7,-69,-51,-72,-114,-64r-3,-29v82,-13,151,1,151,84r0,101r-34,0r0,-92xm48,-89v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":183},"\ufb49":{"d":"119,5v-96,0,-101,-94,-101,-192r34,0v0,30,1,81,4,95v27,-1,46,-12,49,-44r4,-51r33,0v-7,45,4,99,-39,113v-10,3,-24,8,-41,9v8,54,102,53,119,5v11,-32,13,-87,18,-127r33,0v-7,95,-7,192,-113,192xm141,-82v-1,-8,6,-15,14,-15v8,0,15,7,15,15v0,8,-8,15,-15,15v-8,-1,-14,-6,-14,-15","w":249},"\ufb4a":{"d":"87,-160v-8,62,29,167,-47,161v-11,0,-22,-1,-33,-5r6,-26v19,8,41,6,41,-21r0,-108v-10,0,-22,1,-37,3r-3,-28v89,-8,202,-21,192,83r0,101r-34,0r0,-92v5,-61,-25,-69,-85,-68xm114,-86v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":231},"\ufb4b":{"d":"62,-187r0,187r-35,0r0,-187r35,0xm29,-223v0,-19,30,-18,30,0v0,9,-6,15,-15,15v-9,0,-15,-5,-15,-15","w":88},"\ufb4c":{"d":"12,-185v77,-14,152,3,146,84r0,73r29,0r0,28r-178,0r0,-28r115,0v1,-73,8,-141,-74,-131v-8,0,-20,0,-36,2xm49,-220r0,-18r70,0r0,18r-70,0","w":195},"\ufb4d":{"d":"150,-93v0,72,-61,110,-136,91r5,-31v49,18,95,-7,95,-60v0,-52,-45,-78,-95,-61r-5,-30v73,-23,136,21,136,91xm43,-220r0,-18r70,0r0,18r-70,0","w":165},"\ufb4e":{"d":"94,-81v-34,14,-73,-3,-73,-44r0,-55v75,-27,160,0,160,84v0,83,-92,121,-161,86r8,-27v46,26,118,3,118,-58v0,-49,-40,-78,-92,-64v-2,31,-2,67,36,54xm58,-220r0,-18r70,0r0,18r-70,0","w":196},"\ufb4f":{"d":"198,0r-42,0r-71,-101v-26,14,-21,66,-27,101r-35,0v7,-49,5,-109,44,-125r-23,-33r-33,0r0,-100r33,0r0,71r21,0r60,84v24,-13,21,-50,26,-84r35,0v-4,49,-9,91,-44,108","w":207},"\u200c":{"d":"6,-227r0,275r-12,0r0,-275r12,0","w":0},"\u200d":{"d":"6,48r-12,0r0,-244r-24,24r-8,-9r30,-29r-30,-30r8,-8r30,30r30,-30r8,8r-30,30r30,29r-8,9r-24,-24r0,244","w":0},"\u200e":{"d":"76,-211r-39,38r-8,-9r24,-22r-47,0r0,252r-12,0r0,-265r59,0r-24,-23r8,-8","w":0},"\u200f":{"d":"6,48r-12,0r0,-252r-47,0r24,22r-9,9r-38,-38r38,-37r9,8r-24,23r59,0r0,265","w":0},"\u060c":{"d":"49,-111v0,15,45,13,38,38v0,12,-13,24,-25,24v-38,-3,-40,-65,-16,-90v5,-6,12,-14,22,-21r6,10v-12,10,-25,24,-25,39","w":114},"\u066c":{"d":"49,-111v0,15,45,13,38,38v0,12,-13,24,-25,24v-38,-3,-40,-65,-16,-90v5,-6,12,-14,22,-21r6,10v-12,10,-25,24,-25,39","w":114},"\u061b":{"d":"47,-171v0,15,45,13,38,38v1,12,-12,25,-25,24v-38,-3,-40,-65,-16,-90v5,-6,12,-13,22,-20r6,9v-12,10,-25,24,-25,39xm60,-90v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21","w":114},"\u061f":{"d":"12,-201v-6,-63,101,-76,105,-12v2,30,-41,40,-45,10v-2,-14,18,-20,20,-28v-5,-24,-52,-14,-47,9v8,38,38,64,27,114v-10,2,-13,-2,-10,-14v-9,-32,-55,-42,-50,-79xm64,-93v11,0,21,10,21,22v0,32,-43,25,-43,0v0,-12,10,-22,22,-22","w":128},"\u0640":{"d":"75,-52r-87,0r0,-30r87,0r0,30","w":74},"\u064b":{"d":"72,-281v-11,27,-20,17,-60,36v13,-26,17,-15,60,-36xm72,-254v1,12,-4,11,-8,16v-16,7,-17,6,-52,20v13,-26,17,-14,60,-36","w":72},"\u064c":{"d":"50,-260v-2,-17,29,-39,35,-15v-1,9,-2,17,-7,24v7,3,5,16,4,24r-15,-12v-10,12,-25,21,-46,21v9,-14,15,-23,3,-33v-5,1,-8,6,-12,12v-3,-29,27,-36,28,-8r-3,15v7,-2,30,-9,18,-17v-3,-3,-5,-7,-5,-11xm70,-258v6,-5,3,-17,-5,-17v-9,4,-2,14,5,17","w":85},"\u064d":{"d":"72,-16v-4,25,-41,25,-60,36v13,-26,17,-14,60,-36xm72,10v-11,27,-20,17,-60,37v12,-27,17,-15,60,-37","w":72},"\u064e":{"d":"72,-279v-11,27,-20,17,-60,37v12,-27,17,-16,60,-37","w":72},"\u064f":{"d":"61,-294v15,3,14,23,7,37v7,3,9,14,6,23r-15,-9v-15,15,-22,28,-46,25v11,-5,32,-21,39,-30v-22,-8,-10,-46,9,-46xm61,-262v5,-10,-8,-24,-12,-14v0,6,8,11,12,14","w":75},"\u0650":{"d":"72,-29v-11,27,-20,17,-60,37v12,-27,17,-15,60,-37","w":72},"\u0651":{"d":"57,-250v7,1,13,-14,13,-23v4,-2,5,1,5,6v6,22,-9,48,-29,34v-5,18,-36,21,-34,-4v3,-6,1,-18,9,-20v-6,17,10,28,17,10v2,-2,3,-16,9,-19v2,10,2,15,10,16","w":76},"\u0652":{"d":"12,-238v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm19,-246v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":59},"\u0660":{"d":"83,-163v15,14,21,19,41,32v-6,22,-9,27,-13,52v-22,-12,-24,-13,-44,-30v5,-24,8,-32,16,-54","w":189},"\u06f0":{"d":"83,-163v15,14,21,19,41,32v-6,22,-9,27,-13,52v-22,-12,-24,-13,-44,-30v5,-24,8,-32,16,-54","w":189},"\u0661":{"d":"70,-258v43,47,58,121,40,206v-12,2,-5,-8,-5,-24v-2,-64,-21,-108,-52,-144","w":189},"\u06f1":{"d":"70,-258v43,47,58,121,40,206v-12,2,-5,-8,-5,-24v-2,-64,-21,-108,-52,-144","w":189},"\u0662":{"d":"100,-221v25,0,30,-13,34,-39v11,-1,4,18,7,30v1,30,-20,50,-50,42v20,34,20,79,19,136r-6,0v-20,-92,-27,-114,-72,-173r12,-35v14,21,30,39,56,39","w":189},"\u06f2":{"d":"100,-221v25,0,30,-13,34,-39v11,-1,4,18,7,30v1,30,-20,50,-50,42v20,34,20,79,19,136r-6,0v-20,-92,-27,-114,-72,-173r12,-35v14,21,30,39,56,39","w":189},"\u0663":{"d":"120,-260v3,18,5,28,21,29v12,0,20,-10,22,-29v10,-2,5,9,6,18v8,42,-43,59,-62,32v-8,13,-18,19,-37,20v21,37,25,84,14,138r-7,0v0,-83,-18,-108,-54,-163r13,-41v10,17,22,31,45,31v21,0,31,-15,34,-35r5,0","w":189},"\u06f3":{"d":"120,-260v3,18,5,28,21,29v12,0,20,-10,22,-29v10,-2,5,9,6,18v8,42,-43,59,-62,32v-8,13,-18,19,-37,20v21,37,25,84,14,138r-7,0v0,-83,-18,-108,-54,-163r13,-41v10,17,22,31,45,31v21,0,31,-15,34,-35r5,0","w":189},"\u0664":{"d":"83,-107v2,13,38,19,60,20r-11,35v-39,1,-94,-10,-70,-49v8,-14,25,-30,38,-42v-14,-6,-46,-14,-47,-28v6,-38,45,-63,72,-86r-6,34v-21,8,-36,12,-41,24v6,21,77,16,39,49v-11,10,-32,29,-34,43","w":189},"\u0665":{"d":"94,-224v26,-2,65,38,64,62v-1,44,-32,73,-77,73v-27,0,-48,-9,-48,-32v0,-39,24,-99,61,-103xm51,-148v-2,39,86,33,93,5v-3,-24,-43,-43,-68,-47v-15,-2,-25,27,-25,42","w":189},"\u0666":{"d":"123,-244v-9,56,-9,117,24,148r-6,40v-42,-25,-44,-81,-34,-145v-37,6,-87,16,-76,-36v1,-11,-3,-20,7,-19v10,31,54,18,85,12","w":189},"\u0667":{"d":"29,-255v38,41,55,92,75,151v10,-63,28,-113,61,-152r-1,51v-39,37,-51,89,-66,153v-15,-68,-34,-110,-75,-147","w":189},"\u06f7":{"d":"29,-255v38,41,55,92,75,151v10,-63,28,-113,61,-152r-1,51v-39,37,-51,89,-66,153v-15,-68,-34,-110,-75,-147","w":189},"\u0668":{"d":"95,-258v14,68,33,110,75,148r-7,55v-35,-34,-60,-95,-74,-151v-14,70,-25,107,-62,152r0,-50v38,-37,54,-84,65,-154r3,0","w":189},"\u06f8":{"d":"95,-258v14,68,33,110,75,148r-7,55v-35,-34,-60,-95,-74,-151v-14,70,-25,107,-62,152r0,-50v38,-37,54,-84,65,-154r3,0","w":189},"\u0669":{"d":"96,-261v57,6,10,139,53,172r-11,37v-29,-21,-26,-50,-28,-109v-28,12,-72,8,-72,-24v0,-34,22,-79,58,-76xm55,-205v0,20,37,17,54,13v8,-44,-49,-42,-54,-13","w":189},"\u06f9":{"d":"96,-261v57,6,10,139,53,172r-11,37v-29,-21,-26,-50,-28,-109v-28,12,-72,8,-72,-24v0,-34,22,-79,58,-76xm55,-205v0,20,37,17,54,13v8,-44,-49,-42,-54,-13","w":189},"\u066a":{"d":"54,-280v13,0,23,10,23,22v0,12,-10,24,-23,24v-12,0,-23,-11,-23,-24v0,-13,11,-22,23,-22xm167,-280r-124,247r-20,0r123,-247r21,0xm135,-76v12,-2,23,11,23,23v0,13,-10,23,-23,23v-12,0,-23,-11,-23,-23v0,-11,10,-25,23,-23","w":189},"\u066b":{"d":"58,-96v51,13,10,78,-17,88r-7,-10v12,-10,21,-15,23,-29v-27,-3,-29,-49,1,-49","w":114},"\u066d":{"d":"104,-208v16,-7,43,-20,49,2v-3,20,-36,8,-49,2v-4,14,37,17,34,33v0,7,-5,13,-12,12v-6,0,-15,-12,-27,-36v-1,1,-3,1,-4,1v5,18,17,43,-3,49v-21,-4,-6,-36,-2,-49r-5,-1v-7,12,-13,34,-28,36v-7,0,-11,-5,-11,-12v8,-17,8,-13,36,-28v-1,-2,-2,-3,-2,-5v-13,5,-22,8,-35,9v-7,0,-14,-3,-14,-11v4,-23,36,-7,49,-2v4,-15,-34,-15,-34,-34v0,-6,5,-12,11,-12v13,0,22,29,28,37r5,-2v-3,-9,-20,-47,2,-49v21,4,6,36,2,49r5,2v12,-24,11,-31,27,-37v6,0,12,5,12,12v1,13,-29,23,-36,28xm92,-199v4,0,7,-3,7,-7v0,-4,-3,-7,-7,-7v-4,0,-7,3,-7,7v0,4,3,7,7,7","w":189},"\u06d5":{"d":"35,-155v36,19,52,24,59,52v0,40,-16,55,-54,56v-50,1,-24,-54,-13,-77r-3,-1xm27,-93v-2,31,46,17,52,3v1,-8,-27,-21,-37,-27v-9,11,-14,13,-15,24","w":101},"\u06f4":{"d":"77,-53v0,-72,-18,-120,-49,-163r13,-42v20,31,17,38,41,53v-4,-52,45,-71,71,-34v-11,2,-39,-9,-51,7v-7,6,-12,15,-15,29v29,9,59,7,73,-17r4,1v-2,40,-46,68,-83,44v17,38,12,72,2,122r-6,0","w":189},"\u06f5":{"d":"27,-93v6,-48,30,-69,63,-110r-14,-13r11,-39v37,37,68,75,72,132v2,33,-30,77,-62,54v-21,22,-74,13,-70,-24xm52,-117v-2,31,38,28,52,12v9,13,43,15,44,-6v-5,-32,-30,-60,-54,-87v-17,19,-40,49,-42,81","w":189},"\u06f6":{"d":"59,-211v13,33,71,20,98,4r-8,34v-44,17,-75,64,-81,120r-8,0v1,-43,10,-77,27,-106v-26,0,-48,-3,-51,-22v9,-34,42,-93,85,-70v5,5,18,15,22,26v-27,-11,-76,-11,-84,14","w":189},"\ue83a":{"d":"230,-52r-242,0r0,-30r242,0r0,30","w":229},"\u202a":{"d":"6,-204r0,252r-12,0r0,-265r82,0r0,13r-70,0","w":0},"\u202b":{"d":"-76,-204r0,-13r82,0r0,265r-12,0r0,-252r-70,0","w":0},"\u202d":{"d":"41,-173r-35,0r0,221r-12,0r0,-221r-35,0r0,-75r82,0r0,12r-70,0r0,51r70,0r0,12","w":0},"\u202e":{"d":"-41,-185r70,0r0,-51r-70,0r0,-12r82,0r0,75r-35,0r0,221r-12,0r0,-221r-35,0r0,-12","w":0},"\u202c":{"d":"41,-173r-35,0r0,221r-12,0r0,-221r-35,0r0,-75r82,0r0,75","w":0},"\u206e":{"d":"6,48r-12,0r0,-227r-35,-32r41,-37r41,37r-35,32r0,227xm24,-211r-24,-21r-24,21r24,22","w":0},"\u206f":{"d":"-41,-185r35,0r0,-51r-35,0r0,-12r47,0r0,63r35,0r0,12r-35,0r0,221r-12,0r0,-221r-35,0r0,-12","w":0},"\u206a":{"d":"-41,-185r35,0r0,-51r-35,0r0,-12r82,0r0,12r-35,0r0,51r35,0r0,12r-35,0r0,221r-12,0r0,-221r-35,0r0,-12","w":0},"\u206b":{"d":"-29,-185r58,0r0,-51r-58,0r0,51xm-41,-173r0,-75r82,0r0,75r-35,0r0,221r-12,0r0,-221r-35,0","w":0},"\u206c":{"d":"6,48r-12,0r0,-232r-35,-64r82,0r-35,64r0,232","w":0},"\u206d":{"d":"6,-173r0,221r-12,0r0,-221r-35,0r41,-75r41,75r-35,0","w":0},"\uf00a":{"d":"6,-322r0,170r-12,0r0,-170r12,0xm6,-95r0,170r-12,0r0,-170r12,0","w":0},"\uf00b":{"d":"-41,75r0,-13r35,0r0,-371r-35,0r0,-13r82,0r0,13r-35,0r0,371r35,0r0,13r-82,0","w":0},"\uf00c":{"d":"39,-289r-33,25r0,339r-12,0r0,-397","w":0},"\uf00d":{"d":"6,-322r0,397r-12,0r0,-339r-33,-25","w":0},"\uf00e":{"d":"6,-322r0,384r35,0r0,13r-47,0r0,-397r12,0","w":0},"\u00a4":{"d":"37,-169r-24,-24r20,-21r25,25v24,-17,59,-17,83,0r24,-25r21,21r-25,24v17,25,17,58,0,83r25,24r-21,21r-24,-25v-24,17,-59,18,-83,0r-25,25r-20,-21r24,-24v-16,-25,-16,-58,0,-83xm99,-173v-25,0,-45,20,-45,45v0,25,20,46,45,46v25,0,46,-21,46,-46v0,-24,-21,-45,-46,-45"},"\ufffc":{"d":"360,-202r-18,0r0,-39r-39,0r0,-18r57,0r0,57xm259,-241r-57,0r0,-18r57,0r0,18xm360,-101r-18,0r0,-57r18,0r0,57xm313,-192v-4,49,18,129,-37,127v-10,0,-18,-3,-24,-8r13,-14v12,12,28,2,28,-20r0,-85r20,0xm158,-241r-57,0r0,-18r57,0r0,18xm360,0r-57,0r0,-18r39,0r0,-39r18,0r0,57xm229,-133v37,17,23,71,-27,66r-42,0r0,-125v38,-1,85,-4,85,33v0,11,-6,20,-16,26xm57,-241r-39,0r0,39r-18,0r0,-57r57,0r0,18xm259,0r-57,0r0,-18r57,0r0,18xm94,-194v37,0,56,25,56,65v0,39,-19,64,-56,64v-38,0,-55,-25,-55,-64v0,-40,17,-64,55,-65xm18,-101r-18,0r0,-57r18,0r0,57xm158,0r-57,0r0,-18r57,0r0,18xm57,0r-57,0r0,-57r18,0r0,39r39,0r0,18xm224,-157v2,-17,-23,-18,-44,-17r0,34v20,1,47,0,44,-17xm230,-104v2,-19,-27,-20,-50,-19r0,39v23,1,53,1,50,-20xm130,-129v0,-32,-12,-47,-36,-47v-23,0,-34,15,-34,47v0,31,11,47,34,47v24,0,36,-16,36,-47","w":360},"\ufd3e":{"d":"98,-275v-48,96,-54,250,0,343r-7,7v-75,-66,-92,-232,-28,-322v6,-10,15,-22,27,-36","w":114},"\ufd3f":{"d":"17,-275v48,96,54,250,0,343r7,7v75,-66,92,-232,28,-322v-6,-10,-15,-22,-27,-36","w":114},"\u01a0":{"d":"141,-233v-60,0,-88,44,-88,108v0,55,33,100,87,100v56,0,89,-45,89,-104v0,-60,-30,-104,-88,-104xm141,-262v57,0,100,35,114,80v18,-11,28,-16,28,-42r-17,0r0,-37r34,0v3,51,-4,77,-41,92v21,93,-29,173,-118,173v-77,-1,-122,-55,-124,-130v-1,-79,47,-136,124,-136","w":308},"\u01a1":{"d":"99,-165v-38,0,-55,32,-55,72v0,40,19,71,55,71v37,0,55,-30,55,-72v0,-40,-19,-71,-55,-71xm99,-191v48,-1,80,32,86,75v15,-10,23,-16,23,-39r-17,0r0,-36r34,0v2,48,-5,75,-38,90v2,65,-28,104,-88,105v-56,1,-87,-39,-87,-97v0,-59,32,-97,87,-98","w":236},"\u01af":{"d":"127,-26v109,0,59,-141,70,-232r34,0r0,87v27,-5,46,-13,44,-50r-16,0r0,-37r34,0v6,61,-13,100,-62,100v5,95,-8,165,-101,162v-75,-2,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":307},"\u01b0":{"d":"93,-23v71,2,46,-97,50,-164r31,0r0,86v24,-7,40,-14,39,-49r-17,0r0,-37r34,0v5,58,-11,97,-56,99r0,88r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,59,-25,164,38,164","w":240},"\uf006":{"d":"-52,-323r40,0v-20,10,-29,32,-63,28","w":0},"\uf007":{"d":"-118,-323r39,0v-20,10,-29,32,-63,28","w":0},"\uf009":{"d":"-91,-321r42,0r-40,49r-26,0","w":0},"\u0309":{"d":"-83,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":0},"\uf010":{"d":"-44,-306v-5,-9,-29,-6,-42,-4r-2,-12v21,-3,78,-1,71,15v0,7,-10,12,-30,14v1,8,-11,3,-16,4r0,-10v9,0,18,-1,19,-7","w":0},"\uf013":{"d":"-132,-321v27,-5,77,-2,76,26v0,11,-10,17,-32,20r0,9r-20,0r0,-19v13,-1,21,-4,23,-10v-5,-13,-26,-11,-45,-10","w":0},"\uf011":{"d":"-119,-306v-4,-10,-28,-5,-41,-4r-2,-12v21,-3,78,-1,71,15v0,7,-10,12,-30,14v1,8,-11,3,-16,4r0,-10v9,0,18,-1,18,-7","w":0},"\uf01c":{"d":"10,-323v0,56,-52,39,-80,23v-9,0,-14,6,-14,17r-23,0v0,-23,14,-40,35,-40v14,-3,56,35,60,0r22,0","w":0},"\uf015":{"d":"-182,-292v4,-45,55,-25,88,-18v7,0,12,-5,13,-13r17,0v-3,46,-55,26,-87,18v-9,0,-14,4,-14,13r-17,0","w":0},"\u0303":{"d":"-42,-313v0,56,-52,41,-81,24v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v16,-4,55,35,59,-1r23,0","w":0},"\uf02c":{"d":"-45,57r0,-36r36,0r0,36r-36,0","w":0},"\u20ab":{"d":"28,-143v-7,-57,58,-90,91,-50r0,-34r-16,0r0,-16r16,0r0,-15r22,0r0,15r18,0r0,16r-18,0r0,149r-20,0r0,-16v-32,43,-100,8,-93,-49xm85,-193v-25,0,-34,23,-34,50v-1,26,11,50,35,50v24,0,35,-22,35,-48v0,-29,-10,-52,-36,-52xm159,-43r-131,0r0,-16r131,0r0,16","w":184},"\u2153":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm58,-129r0,-97v-12,9,-25,16,-39,20r0,-22v18,-6,34,-17,46,-33r19,0r0,132r-26,0xm296,-32v-1,25,-24,40,-53,40v-31,0,-49,-12,-54,-37r25,-3v5,28,55,25,55,-4v0,-16,-19,-22,-38,-18r4,-20v32,4,39,-34,7,-33v-12,0,-20,6,-25,18r-25,-5v10,-24,19,-31,50,-33v52,-4,65,49,24,61v20,5,30,17,30,34","w":300},"\u2154":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm295,-32v-1,25,-25,40,-54,40v-31,0,-49,-12,-54,-37r26,-3v4,28,54,26,54,-4v0,-16,-18,-22,-37,-18r3,-20v32,4,39,-34,7,-33v-12,0,-20,6,-25,18r-25,-5v10,-24,19,-31,50,-33v52,-4,65,49,24,61v20,5,31,17,31,34xm113,-225v1,37,-45,51,-67,75r68,0r0,21r-110,0v-4,-28,82,-62,82,-92v0,-13,-9,-19,-25,-19v-17,0,-22,6,-26,20r-27,-3v5,-48,102,-53,105,-2","w":300},"\uf008":{"d":"-34,-259r42,0r-41,49r-25,0","w":0},"\uf00f":{"d":"-85,-210r-25,0r-41,-49r43,0","w":0},"\uf012":{"d":"-75,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10","w":0},"\uf014":{"d":"-132,-271v28,-3,76,-1,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-4,23,-12v-4,-14,-27,-11,-45,-10","w":0},"\uf016":{"d":"-72,-323v0,55,-53,40,-81,23v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v14,-3,55,35,59,0r23,0","w":0},"\uf017":{"d":"-109,-323v0,55,-53,40,-81,23v-9,0,-14,6,-14,17r-23,0v-1,-23,14,-38,36,-40v14,-1,55,35,59,0r23,0","w":0},"\uf018":{"d":"-121,-323v0,55,-53,40,-81,23v-9,0,-14,6,-14,17r-23,0v-1,-23,14,-38,36,-40v14,-1,55,35,59,0r23,0","w":0},"\uf019":{"d":"-123,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":0},"\uf01a":{"d":"-112,-215v-15,3,-59,-37,-60,1r-23,0v-1,-23,15,-40,36,-40v14,-3,57,33,59,-1r23,0v0,24,-12,40,-35,40","w":0},"\uf01b":{"d":"-123,-215v-15,1,-59,-37,-60,1r-23,0v-1,-23,14,-40,35,-40v14,-3,57,33,60,-1r22,0v0,23,-12,38,-34,40","w":0},"\uf01e":{"d":"-138,57r0,-36r36,0r0,36r-36,0","w":0},"\uf01f":{"d":"-158,57r0,-36r36,0r0,36r-36,0","w":0},"\uf020":{"d":"-187,57r0,-36r36,0r0,36r-36,0","w":0},"\uf021":{"d":"-146,57r0,-36r36,0r0,36r-36,0","w":0},"\uf022":{"d":"-199,57r0,-36r36,0r0,36r-36,0","w":0},"\u0300":{"d":"-28,-272r-25,0r-41,-49r42,0","w":0},"\u0301":{"d":"-43,-321r42,0r-40,49r-26,0","w":0},"\uf01d":{"d":"-64,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":0},"\u0323":{"d":"-138,57r0,-36r36,0r0,36r-36,0","w":0},"\uf023":{"d":"-119,57r0,-36r36,0r0,36r-36,0","w":0},"\uf029":{"d":"-70,57r0,-36r36,0r0,36r-36,0","w":0},"\uf02a":{"d":"-57,57r0,-36r36,0r0,36r-36,0","w":0},"\uf02b":{"d":"-139,57r0,-36r36,0r0,36r-36,0","w":0},"\uf024":{"d":"-116,57r0,-36r36,0r0,36r-36,0","w":0},"\uf025":{"d":"-120,57r0,-36r36,0r0,36r-36,0","w":0},"\uf026":{"d":"-155,57r0,-36r36,0r0,36r-36,0","w":0},"\uf027":{"d":"-132,57r0,-36r36,0r0,36r-36,0","w":0},"\uf028":{"d":"-173,57r0,-36r36,0r0,36r-36,0","w":0},"\uf02d":{"d":"-177,-292v4,-45,55,-25,88,-18v7,0,12,-5,13,-13r17,0v-3,46,-55,26,-87,18v-9,0,-14,4,-14,13r-17,0","w":0},"\uf02e":{"d":"-59,-323v0,55,-53,40,-81,23v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v14,-3,55,35,59,0r23,0","w":0},"\uf02f":{"d":"-198,-292v3,-46,53,-18,87,-18v7,0,12,-5,13,-13r17,0v-3,47,-55,25,-87,18v-9,0,-13,4,-13,13r-17,0","w":0},"\uf030":{"d":"-81,-323v0,56,-52,39,-81,23v-9,0,-13,6,-13,17r-23,0v-1,-24,13,-40,35,-40v14,-3,55,35,59,0r23,0","w":0},"\uf031":{"d":"24,0r0,-187r32,0r0,187r-32,0","w":79},"\u1ea0":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm99,57r0,-36r36,0r0,36r-36,0","w":240},"\u1ea1":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm80,57r0,-36r36,0r0,36r-36,0"},"\u1ea2":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm82,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":240},"\u1ea3":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm69,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10"},"\u1ea4":{"d":"116,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm122,-323r40,0v-20,10,-29,32,-63,28","w":240},"\u1ea5":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm105,-321r42,0r-40,49r-26,0"},"\u1ea6":{"d":"116,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm133,-295v-34,4,-43,-18,-63,-28r40,0xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u1ea7":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm115,-272r-25,0r-41,-49r42,0"},"\u1ea8":{"d":"116,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm128,-306v-5,-9,-29,-6,-42,-4r-2,-12v21,-3,78,-1,71,15v0,7,-10,12,-30,14v1,8,-11,3,-16,4r0,-10v9,0,18,-1,19,-7","w":240},"\u1ea9":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm65,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10"},"\u1eaa":{"d":"116,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm59,-292v4,-45,55,-25,88,-18v7,0,12,-5,13,-13r17,0v-3,46,-55,26,-87,18v-9,0,-14,4,-14,13r-17,0","w":240},"\u1eab":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm158,-313v0,56,-52,41,-81,24v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v16,-4,55,35,59,-1r23,0"},"\u1eac":{"d":"116,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm99,57r0,-36r36,0r0,36r-36,0","w":240},"\u1ead":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm80,57r0,-36r36,0r0,36r-36,0"},"\u1eae":{"d":"170,-288v-11,35,-92,34,-102,0v21,-2,28,15,50,12v23,3,31,-13,52,-12xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm122,-323r40,0v-20,10,-29,32,-63,28","w":240},"\u1eaf":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm105,-321r42,0r-40,49r-26,0"},"\u1eb0":{"d":"170,-288v-11,35,-92,34,-102,0v21,-2,28,15,50,12v23,3,31,-13,52,-12xm133,-295v-34,4,-43,-18,-63,-28r40,0xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u1eb1":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm123,-272r-25,0r-41,-49r42,0"},"\u1eb2":{"d":"170,-288v-11,35,-92,34,-102,0v21,-2,28,15,50,12v23,3,31,-13,52,-12xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm128,-306v-5,-9,-29,-6,-42,-4r-2,-12v21,-3,78,-1,71,15v0,7,-10,12,-30,14v1,8,-11,3,-16,4r0,-10v9,0,18,-1,19,-7","w":240},"\u1eb3":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm68,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10"},"\u1eb4":{"d":"170,-288v-11,35,-92,34,-102,0v21,-2,28,15,50,12v23,3,31,-13,52,-12xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm62,-292v4,-45,55,-25,88,-18v7,0,12,-5,13,-13r17,0v-3,46,-55,26,-87,18v-9,0,-14,4,-14,13r-17,0","w":240},"\u1eb5":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm165,-313v0,56,-52,41,-81,24v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v16,-4,55,35,59,-1r23,0"},"\u1eb6":{"d":"170,-288v-11,35,-92,34,-102,0v21,-2,28,15,50,12v23,3,31,-13,52,-12xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm99,57r0,-36r36,0r0,36r-36,0","w":240},"\u1eb7":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm73,-257v1,31,60,31,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm80,57r0,-36r36,0r0,36r-36,0"},"\u1eb8":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm106,57r0,-36r36,0r0,36r-36,0","w":240},"\u1eb9":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm83,57r0,-36r36,0r0,36r-36,0"},"\u1eba":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm89,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":240},"\u1ebb":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm67,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10"},"\u1ebc":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm105,-295v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":240},"\u1ebd":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm80,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16"},"\u1ebe":{"d":"121,-278v-13,8,-29,13,-53,11r36,-21r35,0r36,21v-24,2,-41,-2,-54,-11xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm127,-323r40,0v-20,10,-29,32,-63,28","w":240},"\u1ebf":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm105,-321r42,0r-40,49r-26,0"},"\u1ec0":{"d":"121,-278v-13,8,-29,13,-53,11r36,-21r35,0r36,21v-24,2,-41,-2,-54,-11xm139,-295v-34,4,-44,-18,-64,-28r40,0xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u1ec1":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm115,-272r-25,0r-41,-49r42,0"},"\u1ec2":{"d":"121,-278v-13,8,-29,13,-53,11r36,-21r35,0r36,21v-24,2,-41,-2,-54,-11xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm132,-306v-5,-9,-29,-6,-42,-4r-2,-12v21,-3,78,-1,71,15v0,7,-10,12,-30,14v1,8,-11,3,-16,4r0,-10v9,0,18,-1,19,-7","w":240},"\u1ec3":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm65,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10"},"\u1ec4":{"d":"121,-278v-13,8,-29,13,-53,11r36,-21r35,0r36,21v-24,2,-41,-2,-54,-11xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm62,-292v4,-45,55,-25,88,-18v7,0,12,-5,13,-13r17,0v-3,46,-55,26,-87,18v-9,0,-14,4,-14,13r-17,0","w":240},"\u1ec5":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm158,-313v0,56,-52,41,-81,24v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v16,-4,55,35,59,-1r23,0"},"\u1ec6":{"d":"121,-278v-13,8,-29,13,-53,11r36,-21r35,0r36,21v-24,2,-41,-2,-54,-11xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm106,57r0,-36r36,0r0,36r-36,0","w":240},"\u1ec7":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm83,57r0,-36r36,0r0,36r-36,0"},"\u1ec8":{"d":"34,0r0,-258r34,0r0,258r-34,0xm17,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":100},"\u1ec9":{"d":"24,0r0,-187r32,0r0,187r-32,0xm6,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10","w":79},"\u1eca":{"d":"34,0r0,-258r34,0r0,258r-34,0xm32,57r0,-36r36,0r0,36r-36,0","w":100},"\u1ecb":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0xm21,57r0,-36r36,0r0,36r-36,0","w":79},"\u1ecc":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm120,57r0,-36r36,0r0,36r-36,0","w":280},"\u1ecd":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm80,57r0,-36r36,0r0,36r-36,0"},"\u1ece":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm107,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":280},"\u1ecf":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm67,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10"},"\u1ed0":{"d":"141,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm147,-323r40,0v-20,10,-29,32,-63,28","w":280},"\u1ed1":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm106,-321r42,0r-40,49r-26,0"},"\u1ed2":{"d":"141,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm158,-295v-34,3,-43,-18,-63,-28r40,0xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"\u1ed3":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm115,-272r-25,0r-41,-49r42,0"},"\u1ed4":{"d":"141,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm153,-306v-5,-9,-29,-6,-42,-4r-2,-12v21,-3,78,-1,71,15v0,7,-10,12,-30,14v1,8,-11,3,-16,4r0,-10v9,0,18,-1,19,-7","w":280},"\u1ed5":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm65,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10"},"\u1ed6":{"d":"141,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm83,-292v4,-45,55,-25,88,-18v7,0,12,-5,13,-13r17,0v-3,46,-55,26,-87,18v-9,0,-14,4,-14,13r-17,0","w":280},"\u1ed7":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm158,-313v0,56,-52,41,-81,24v-9,0,-13,6,-13,17r-24,0v-1,-23,14,-40,36,-40v16,-4,55,35,59,-1r23,0"},"\u1ed8":{"d":"141,-278v-13,8,-30,13,-54,11r37,-21r34,0r37,21v-24,2,-41,-2,-54,-11xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm120,57r0,-36r36,0r0,36r-36,0","w":280},"\u1ed9":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm80,57r0,-36r36,0r0,36r-36,0"},"\u1eda":{"d":"141,-233v-60,0,-88,44,-88,108v0,55,33,100,87,100v56,0,89,-45,89,-104v0,-60,-30,-104,-88,-104xm141,-262v57,0,100,35,114,80v18,-11,28,-16,28,-42r-17,0r0,-37r34,0v3,51,-4,77,-41,92v21,93,-29,173,-118,173v-77,-1,-122,-55,-124,-130v-1,-79,47,-136,124,-136xm119,-274r23,-49r42,0r-39,49r-26,0","w":308},"\u1edb":{"d":"99,-165v-38,0,-55,32,-55,72v0,40,19,71,55,71v37,0,55,-30,55,-72v0,-40,-19,-71,-55,-71xm99,-191v48,-1,80,32,86,75v15,-10,23,-16,23,-39r-17,0r0,-36r34,0v2,48,-5,75,-38,90v2,65,-28,104,-88,105v-56,1,-87,-39,-87,-97v0,-59,32,-97,87,-98xm82,-210r23,-49r42,0r-39,49r-26,0","w":236},"\u1edc":{"d":"141,-233v-60,0,-88,44,-88,108v0,55,33,100,87,100v56,0,89,-45,89,-104v0,-60,-30,-104,-88,-104xm141,-262v57,0,100,35,114,80v18,-11,28,-16,28,-42r-17,0r0,-37r34,0v3,51,-4,77,-41,92v21,93,-29,173,-118,173v-77,-1,-122,-55,-124,-130v-1,-79,47,-136,124,-136xm161,-274r-26,0r-40,-49r42,0","w":308},"\u1edd":{"d":"99,-165v-38,0,-55,32,-55,72v0,40,19,71,55,71v37,0,55,-30,55,-72v0,-40,-19,-71,-55,-71xm99,-191v48,-1,80,32,86,75v15,-10,23,-16,23,-39r-17,0r0,-36r34,0v2,48,-5,75,-38,90v2,65,-28,104,-88,105v-56,1,-87,-39,-87,-97v0,-59,32,-97,87,-98xm121,-210r-26,0r-40,-49r42,0","w":236},"\u1ede":{"d":"141,-233v-60,0,-88,44,-88,108v0,55,33,100,87,100v56,0,89,-45,89,-104v0,-60,-30,-104,-88,-104xm141,-262v57,0,100,35,114,80v18,-11,28,-16,28,-42r-17,0r0,-37r34,0v3,51,-4,77,-41,92v21,93,-29,173,-118,173v-77,-1,-122,-55,-124,-130v-1,-79,47,-136,124,-136xm107,-325v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":308},"\u1edf":{"d":"99,-165v-38,0,-55,32,-55,72v0,40,19,71,55,71v37,0,55,-30,55,-72v0,-40,-19,-71,-55,-71xm99,-191v48,-1,80,32,86,75v15,-10,23,-16,23,-39r-17,0r0,-36r34,0v2,48,-5,75,-38,90v2,65,-28,104,-88,105v-56,1,-87,-39,-87,-97v0,-59,32,-97,87,-98xm67,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10","w":236},"\u1ee0":{"d":"141,-233v-60,0,-88,44,-88,108v0,55,33,100,87,100v56,0,89,-45,89,-104v0,-60,-30,-104,-88,-104xm141,-262v57,0,100,35,114,80v18,-11,28,-16,28,-42r-17,0r0,-37r34,0v3,51,-4,77,-41,92v21,93,-29,173,-118,173v-77,-1,-122,-55,-124,-130v-1,-79,47,-136,124,-136xm119,-290v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":308},"\u1ee1":{"d":"99,-165v-38,0,-55,32,-55,72v0,40,19,71,55,71v37,0,55,-30,55,-72v0,-40,-19,-71,-55,-71xm99,-191v48,-1,80,32,86,75v15,-10,23,-16,23,-39r-17,0r0,-36r34,0v2,48,-5,75,-38,90v2,65,-28,104,-88,105v-56,1,-87,-39,-87,-97v0,-59,32,-97,87,-98xm77,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":236},"\u1ee2":{"d":"141,-233v-60,0,-88,44,-88,108v0,55,33,100,87,100v56,0,89,-45,89,-104v0,-60,-30,-104,-88,-104xm141,-262v57,0,100,35,114,80v18,-11,28,-16,28,-42r-17,0r0,-37r34,0v3,51,-4,77,-41,92v21,93,-29,173,-118,173v-77,-1,-122,-55,-124,-130v-1,-79,47,-136,124,-136xm120,57r0,-36r36,0r0,36r-36,0","w":308},"\u1ee3":{"d":"99,-165v-38,0,-55,32,-55,72v0,40,19,71,55,71v37,0,55,-30,55,-72v0,-40,-19,-71,-55,-71xm99,-191v48,-1,80,32,86,75v15,-10,23,-16,23,-39r-17,0r0,-36r34,0v2,48,-5,75,-38,90v2,65,-28,104,-88,105v-56,1,-87,-39,-87,-97v0,-59,32,-97,87,-98xm80,57r0,-36r36,0r0,36r-36,0","w":236},"\u1ee4":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm110,57r0,-36r36,0r0,36r-36,0","w":259},"\u1ee5":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm75,57r0,-36r36,0r0,36r-36,0"},"\u1ee6":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm93,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":259},"\u1ee7":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm65,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10"},"\u1ee8":{"d":"127,-26v109,0,59,-141,70,-232r34,0r0,87v27,-5,46,-13,44,-50r-16,0r0,-37r34,0v6,61,-13,100,-62,100v5,95,-8,165,-101,162v-75,-2,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm108,-274r23,-49r42,0r-39,49r-26,0","w":307},"\u1ee9":{"d":"93,-23v71,2,46,-97,50,-164r31,0r0,86v24,-7,40,-14,39,-49r-17,0r0,-37r34,0v5,58,-11,97,-56,99r0,88r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,59,-25,164,38,164xm80,-210r23,-49r42,0r-39,49r-26,0","w":240},"\u1eea":{"d":"127,-26v109,0,59,-141,70,-232r34,0r0,87v27,-5,46,-13,44,-50r-16,0r0,-37r34,0v6,61,-13,100,-62,100v5,95,-8,165,-101,162v-75,-2,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm150,-274r-26,0r-40,-49r42,0","w":307},"\u1eeb":{"d":"93,-23v71,2,46,-97,50,-164r31,0r0,86v24,-7,40,-14,39,-49r-17,0r0,-37r34,0v5,58,-11,97,-56,99r0,88r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,59,-25,164,38,164xm121,-210r-26,0r-40,-49r42,0","w":240},"\u1eec":{"d":"127,-26v109,0,59,-141,70,-232r34,0r0,87v27,-5,46,-13,44,-50r-16,0r0,-37r34,0v6,61,-13,100,-62,100v5,95,-8,165,-101,162v-75,-2,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm93,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":307},"\u1eed":{"d":"93,-23v71,2,46,-97,50,-164r31,0r0,86v24,-7,40,-14,39,-49r-17,0r0,-37r34,0v5,58,-11,97,-56,99r0,88r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,59,-25,164,38,164xm65,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10","w":240},"\u1eee":{"d":"127,-26v109,0,59,-141,70,-232r34,0r0,87v27,-5,46,-13,44,-50r-16,0r0,-37r34,0v6,61,-13,100,-62,100v5,95,-8,165,-101,162v-75,-2,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm110,-290v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":307},"\u1eef":{"d":"93,-23v71,2,46,-97,50,-164r31,0r0,86v24,-7,40,-14,39,-49r-17,0r0,-37r34,0v5,58,-11,97,-56,99r0,88r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,59,-25,164,38,164xm78,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":240},"\u1ef0":{"d":"127,-26v109,0,59,-141,70,-232r34,0r0,87v27,-5,46,-13,44,-50r-16,0r0,-37r34,0v6,61,-13,100,-62,100v5,95,-8,165,-101,162v-75,-2,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm110,57r0,-36r36,0r0,36r-36,0","w":307},"\u1ef1":{"d":"93,-23v71,2,46,-97,50,-164r31,0r0,86v24,-7,40,-14,39,-49r-17,0r0,-37r34,0v5,58,-11,97,-56,99r0,88r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,59,-25,164,38,164xm75,57r0,-36r36,0r0,36r-36,0","w":240},"\u1ef4":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm99,57r0,-36r36,0r0,36r-36,0","w":240},"\u1ef5":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm120,57r0,-36r36,0r0,36r-36,0","w":180},"\u1ef6":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm84,-321v27,-5,76,-2,76,25v0,12,-10,18,-32,21r0,9r-19,0r0,-19v12,-1,20,-4,22,-10v-5,-13,-26,-11,-45,-10","w":240},"\u1ef7":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm59,-271v28,-4,75,0,76,26v0,15,-10,23,-32,26r0,9r-20,0r0,-21v14,-1,21,-3,22,-12v-4,-14,-26,-11,-44,-10","w":180},"\u1ef8":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm101,-290v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":240},"\u1ef9":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm71,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16","w":180},"\u01cd":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm117,-291r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":240},"\u01ce":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm106,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0"},"\u01cf":{"d":"34,0r0,-258r34,0r0,258r-34,0xm51,-291r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":100},"\u01d0":{"d":"24,0r0,-187r32,0r0,187r-32,0xm42,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":79},"\u01d1":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm142,-291r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":280},"\u01d2":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm100,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0"},"\u01d3":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm133,-291r19,-30r36,0r-39,49r-34,0r-38,-49r36,0","w":259},"\u01d4":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm102,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0"},"\u01d5":{"d":"177,-303r-91,0r0,-21r91,0r0,21xm177,-263r-24,0r0,-26r24,0r0,26xm110,-263r-24,0r0,-26r24,0r0,26xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u01d6":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0xm44,-281r0,-26r110,0r0,26r-110,0"},"\u01d7":{"d":"176,-324v-20,11,-28,35,-63,31r24,-31r39,0xm177,-263r-24,0r0,-26r24,0r0,26xm110,-263r-24,0r0,-26r24,0r0,26xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u01d8":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0xm80,-275r23,-49r42,0r-39,49r-26,0"},"\u01d9":{"d":"177,-263r-24,0r0,-26r24,0r0,26xm172,-324r-29,31r-24,0r-27,-31r26,0r14,17r14,-17r26,0xm110,-263r-24,0r0,-26r24,0r0,26xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u01da":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0xm102,-294r19,-30r36,0r-39,49r-34,0r-38,-49r36,0"},"\u01db":{"d":"177,-263r-24,0r0,-26r24,0r0,26xm151,-293v-35,4,-43,-20,-64,-31r40,0xm110,-263r-24,0r0,-26r24,0r0,26xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u01dc":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0xm118,-275r-26,0r-40,-49r42,0"},"\u0492":{"d":"195,-227r-133,0r0,87r71,0r0,23r-71,0r0,117r-34,0r0,-117r-29,0r0,-23r29,0r0,-118r167,0r0,31","w":194},"\u0493":{"d":"131,-160r-75,0r0,46r40,0r0,24r-40,0r0,90r-32,0r0,-90r-22,0r0,-24r22,0r0,-73r107,0r0,27","w":131},"\u0496":{"d":"184,-145v81,1,41,-132,145,-113r0,30v-70,-11,-48,82,-100,96v35,9,62,69,83,102r19,0r0,102r-30,0r0,-72r-12,0r-43,-70v-21,-32,-27,-47,-62,-51r0,121r-35,0r0,-121v-35,1,-41,21,-60,47v-2,3,-2,3,-45,74r-43,0v29,-41,57,-115,103,-132v-52,-10,-28,-105,-100,-96r0,-30v104,-18,63,115,145,113r0,-113r35,0r0,113","w":332},"\u0497":{"d":"137,-106v55,1,25,-95,98,-81r0,27v-47,-10,-29,56,-68,64v23,4,45,46,59,70r13,0r0,79r-26,0r0,-53r-6,0r-48,-78v-6,-6,-13,-8,-22,-8r0,86r-33,0r0,-86v-42,6,-47,59,-70,86r-35,0v21,-30,42,-86,75,-96v-28,-9,-27,-35,-44,-62v-5,-4,-14,-3,-24,-2r0,-27v74,-14,44,80,98,81r0,-81r33,0r0,81","w":240},"\u049a":{"d":"62,-145v81,2,40,-132,144,-113r0,30v-69,-10,-47,83,-100,96v35,9,62,70,84,102r18,0r0,102r-30,0r0,-72r-12,0r-43,-70v-20,-32,-28,-47,-61,-51r0,121r-34,0r0,-258r34,0r0,113","w":209},"\u049b":{"d":"55,-106v54,0,26,-95,98,-81r0,27v-46,-10,-29,56,-67,64v23,4,45,46,59,70r11,0r0,79r-26,0r0,-53r-4,0v-23,-28,-29,-79,-71,-86r0,86r-31,0r0,-187r31,0r0,81","w":157},"\u049c":{"d":"105,-167v23,-40,29,-102,101,-91r0,30v-69,-10,-47,83,-100,96v45,17,73,92,102,132r-42,0r-61,-97r0,55r-22,0r0,-74v-6,-3,-13,-5,-21,-5r0,121r-34,0r0,-258r34,0r0,113v8,0,15,0,21,-2r0,-71r22,0r0,51","w":209},"\u049d":{"d":"86,-128v15,-30,18,-65,67,-59r0,27v-45,-10,-31,56,-66,64v30,9,54,67,73,96r-34,0r-40,-66r0,37r-17,0r0,-54v-4,-2,-9,-3,-14,-3r0,86r-31,0r0,-187r31,0r0,81v5,0,10,-1,14,-2r0,-57r17,0r0,37","w":157},"\u04a2":{"d":"255,72r-31,0r0,-72r-27,0r0,-121r-134,0r0,121r-34,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,228r24,0r0,102","w":259},"\u04a3":{"d":"195,53r-26,0r0,-53r-26,0r0,-83r-87,0r0,83r-32,0r0,-187r32,0r0,78r87,0r0,-78r32,0r0,161r20,0r0,79","w":198},"\u04ae":{"d":"199,-258r-84,148r0,110r-31,0r0,-110r-85,-148r36,0r64,118v17,-38,43,-81,63,-118r37,0"},"\u04af":{"d":"177,-187r-71,187r0,72r-32,0r0,-72r-70,-187r34,0r52,152v14,-50,36,-103,53,-152r34,0","w":180},"\u04b0":{"d":"199,-258r-71,125r60,0r0,26r-73,0r0,107r-31,0r0,-107r-73,0r0,-26r60,0r-72,-125r36,0r64,118v17,-38,43,-81,63,-118r37,0"},"\u04b1":{"d":"177,-187r-71,187r57,0r0,23r-57,0r0,49r-32,0r0,-49r-56,0r0,-23r56,0r-70,-187r34,0r52,152v14,-50,36,-103,53,-152r34,0","w":180},"\u04b2":{"d":"238,72r-30,0r0,-72r-12,0r-76,-109r-77,109r-41,0r99,-134r-88,-124r41,0r67,98r73,-98r37,0r-91,122r76,106r22,0r0,102","w":240},"\u04b3":{"d":"177,53r-26,0r0,-53r-12,0r-49,-74r-49,74r-38,0r68,-97r-63,-90r39,0r42,65v13,-21,31,-44,46,-65r37,0r-64,88r51,73r18,0r0,79","w":180},"\u04b8":{"d":"49,-258v0,65,-11,147,55,142r0,-79r21,0r0,77v17,-2,35,-7,53,-14r0,-126r34,0r0,258r-34,0r0,-104v-19,7,-37,12,-53,15r0,49r-21,0r0,-47v-60,0,-89,-30,-89,-95r0,-76r34,0","w":239},"\u04b9":{"d":"78,-66v-60,0,-72,-54,-66,-121r32,0v2,41,-8,90,34,94r0,-49r17,0r0,49v10,-1,23,-4,37,-9r0,-85r32,0r0,187r-32,0r0,-75v-13,4,-25,7,-37,8r0,37r-17,0r0,-36","w":187},"\u04ba":{"d":"62,-154v80,-34,170,-19,163,78r0,76r-34,0v-2,-63,14,-141,-53,-141v-24,0,-50,5,-76,16r0,125r-34,0r0,-258r34,0r0,104","w":239},"\u04bb":{"d":"105,-164v-69,0,-47,96,-50,164r-31,0r0,-258r31,0r0,93v38,-46,121,-31,121,47r0,118r-32,0v-8,-60,25,-164,-39,-164"},"\u018f":{"d":"135,-262v75,2,119,51,120,130v1,79,-39,136,-119,136v-86,0,-123,-62,-119,-152r201,0v8,-91,-135,-117,-153,-30r-33,-9v12,-45,48,-76,103,-75xm53,-118v-7,81,91,125,142,69v15,-17,23,-40,24,-69r-166,0","w":270},"\u04d8":{"d":"135,-262v75,2,119,51,120,130v1,79,-39,136,-119,136v-86,0,-123,-62,-119,-152r201,0v8,-91,-135,-117,-153,-30r-33,-9v12,-45,48,-76,103,-75xm53,-118v-7,81,91,125,142,69v15,-17,23,-40,24,-69r-166,0","w":270},"\u0259":{"d":"98,-191v57,-1,89,38,89,96v0,57,-32,99,-87,99v-57,1,-88,-44,-85,-105r139,0v5,-65,-87,-91,-105,-26r-33,-4v11,-40,38,-60,82,-60xm48,-75v-2,50,58,68,89,38v9,-10,15,-22,16,-38r-105,0"},"\u04d9":{"d":"98,-191v57,-1,89,38,89,96v0,57,-32,99,-87,99v-57,1,-88,-44,-85,-105r139,0v5,-65,-87,-91,-105,-26r-33,-4v11,-40,38,-60,82,-60xm48,-75v-2,50,58,68,89,38v9,-10,15,-22,16,-38r-105,0"},"\u04e8":{"d":"140,-262v75,0,123,58,123,134v0,76,-49,133,-123,132v-75,-1,-122,-56,-123,-130v-1,-79,46,-136,123,-136xm227,-144v3,-80,-98,-117,-150,-63v-14,14,-22,35,-24,63r174,0xm52,-114v-3,77,99,119,150,63v15,-16,23,-37,25,-63r-175,0","w":280},"\u04e9":{"d":"99,-191v55,-1,88,40,88,95v0,62,-30,99,-88,100v-55,0,-87,-40,-87,-97v0,-59,32,-97,87,-98xm153,-111v0,-49,-63,-73,-93,-36v-8,9,-12,21,-14,36r107,0xm45,-85v-5,55,63,85,95,44v8,-11,13,-26,14,-44r-109,0"},"\u066e":{"d":"236,-169v25,22,20,69,21,117r-168,0v-75,9,-99,-62,-59,-114v14,6,-12,27,-7,42v0,30,36,43,71,42r149,0v0,-29,-4,-45,-21,-58","w":256},"\u066f":{"d":"167,-160v39,4,44,67,42,117v-2,51,-54,70,-113,70v-68,0,-98,-42,-77,-103v5,-14,10,-28,18,-42r7,3v-8,22,-19,40,-18,67v1,35,32,44,72,44v49,0,114,-19,95,-72v-24,14,-64,6,-64,-26v0,-23,18,-59,38,-58xm146,-114v3,15,24,13,35,6v-2,-22,-32,-27,-35,-6","w":209},"\u0653":{"d":"2,-257v16,-29,44,9,70,-7v-6,30,-51,1,-68,9","w":74},"\u0654":{"d":"30,-297v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":74},"\u0674":{"d":"30,-297v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":74},"\u0655":{"d":"30,-5v4,7,23,18,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-5,-12,-12v0,-11,29,-42,36,-18v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":74},"\u0670":{"d":"0,-291v5,56,18,73,1,104v-3,-20,-1,-43,-10,-89v2,-4,6,-9,9,-15","w":0},"\u0672":{"d":"30,-301v3,7,22,17,34,10v-6,12,-40,26,-56,16v-2,-2,-7,8,-10,4v8,-22,21,-3,35,-11v-8,-4,-12,-8,-12,-12v-2,-16,48,-43,32,-7v-5,-6,-22,-8,-23,0xm40,-49v4,-59,-9,-125,-14,-184r16,-33r14,117v4,49,7,71,-13,102","w":74},"\u0673":{"d":"37,-2v3,7,23,17,34,9v-5,13,-40,27,-56,17v-2,-2,-7,8,-10,4v8,-22,21,-3,35,-11v-8,-4,-12,-8,-12,-12v-3,-16,48,-43,32,-7v-5,-6,-22,-8,-23,0xm40,-49v4,-59,-9,-125,-14,-184r16,-33r14,117v4,49,7,71,-13,102","w":74},"\u0675":{"d":"40,-49v4,-59,-9,-125,-14,-184r16,-33r14,117v4,49,7,71,-13,102xm72,-244v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":74},"\u0676":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18xm150,-195v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":155},"\u0678":{"d":"193,-166v23,-1,28,22,23,45v-7,-8,-19,-15,-32,-17v-16,-2,-48,31,-48,44v9,20,73,-9,73,21v0,63,-62,90,-134,89v-40,0,-66,-15,-66,-52v0,-39,11,-61,29,-91r8,3v-11,21,-23,41,-23,67v0,78,141,32,169,2v-14,-16,-70,11,-70,-25v0,-36,33,-84,71,-86xm206,-227v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":229},"\u067c":{"d":"174,-211r-14,25r-28,-15r13,-25xm134,-195r-14,25r-28,-15r13,-25xm236,-169v25,22,20,69,21,117r-168,0v-75,9,-99,-62,-59,-114v14,6,-12,27,-7,42v0,30,36,43,71,42r149,0v0,-29,-4,-45,-21,-58xm117,-31v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm124,-39v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":256},"\u067d":{"d":"173,-256r-13,26r-29,-15r13,-26xm167,-209r-13,26r-29,-15r14,-26xm133,-240r-13,26r-29,-15r13,-26xm236,-169v25,22,20,69,21,117r-168,0v-75,9,-99,-62,-59,-114v14,6,-12,27,-7,42v0,30,36,43,71,42r149,0v0,-29,-4,-45,-21,-58","w":256},"\u0681":{"d":"9,-14v0,-60,31,-80,76,-108v-27,-2,-45,0,-70,5v14,-68,100,-22,163,-34r-6,30v-71,13,-151,27,-151,94v0,68,91,72,165,75v-18,8,-25,28,-50,28v-74,1,-127,-20,-127,-90xm100,-227v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":202},"\u0682":{"d":"113,-256r-13,26r-28,-15r13,-26xm121,-212r-13,26r-28,-15r13,-26xm9,-14v0,-60,31,-80,76,-108v-27,-2,-45,0,-70,5v14,-68,100,-22,163,-34r-6,30v-71,13,-151,27,-151,94v0,68,91,72,165,75v-18,8,-25,28,-50,28v-74,1,-127,-20,-127,-90","w":202},"\u0685":{"d":"112,-256r-13,26r-29,-15r13,-26xm147,-224r-14,25r-28,-15r13,-25xm106,-208r-13,25r-28,-15r13,-25xm9,-14v0,-60,31,-80,76,-108v-27,-2,-45,0,-70,5v14,-68,100,-22,163,-34r-6,30v-71,13,-151,27,-151,94v0,68,91,72,165,75v-18,8,-25,28,-50,28v-74,1,-127,-20,-127,-90","w":202},"\u0689":{"d":"68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83xm51,-31v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm58,-39v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":121},"\u068a":{"d":"95,-9r-14,26r-29,-15r13,-26xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u068b":{"d":"52,-238v16,-10,24,-14,40,-16v23,-2,23,22,22,45r-105,0r0,-15v48,9,43,-40,31,-76v-11,-1,-2,-16,-1,-21v2,5,8,9,16,9v0,2,1,19,-7,15v6,24,10,38,4,59xm81,-224v27,2,25,-15,3,-15v-9,-1,-30,9,-39,15r36,0xm95,-9r-14,26r-29,-15r13,-26xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u068f":{"d":"92,-291r-13,25r-29,-14r14,-26xm86,-244r-13,26r-29,-15r14,-26xm52,-275r-13,25r-29,-15r14,-25xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u0690":{"d":"95,-291r-14,26r-28,-15r13,-26xm103,-247r-14,26r-28,-16r13,-25xm63,-231r-14,26r-28,-15r13,-26xm41,-249r-28,-16r12,-25r29,16xm68,-199v46,21,56,76,53,147v-43,-4,-121,20,-101,-43r4,0v9,25,58,9,87,13v0,-44,-13,-73,-45,-83","w":121},"\u0692":{"d":"157,-228r-24,40r-10,0r-24,-40r15,0r14,24r14,-24r15,0xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0693":{"d":"147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54xm128,26v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm135,18v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":175},"\u0694":{"d":"182,26r-13,26r-29,-15r13,-26xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0695":{"d":"174,30r-24,40r-9,0r-24,-40r15,0r14,25r13,-25r15,0xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0696":{"d":"105,-62r-14,26r-28,-15r13,-25xm182,26r-13,26r-29,-15r13,-26xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0697":{"d":"155,-214r-13,25r-28,-14r13,-26xm115,-198r-13,25r-29,-15r14,-25xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u0699":{"d":"147,-258r-13,26r-28,-15r13,-26xm156,-214r-14,25r-28,-15r13,-25xm115,-198r-13,25r-28,-14r13,-26xm94,-216r-28,-16r12,-25r29,15xm147,-155v27,21,34,55,29,103v-5,57,-76,107,-138,73v-8,-5,-30,-5,-22,-17v66,23,147,-17,147,-77v0,-22,-12,-39,-26,-54","w":175},"\u069a":{"d":"281,-9r-14,26r-28,-15r13,-26xm246,-199r-14,26r-28,-15r13,-26xm282,-144v20,22,12,54,14,92v-23,1,-38,-1,-49,-12v-12,14,-33,12,-59,12v-4,53,-45,74,-103,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v34,3,63,-4,49,-40r7,-11v5,24,7,51,34,50v19,-6,0,-34,-8,-42","w":295},"\u069b":{"d":"296,-10r-13,26r-29,-15r14,-26xm290,37r-13,26r-29,-15r14,-26xm256,7r-13,25r-29,-15r13,-26xm282,-144v20,22,12,54,14,92v-23,1,-38,-1,-49,-12v-12,14,-33,12,-59,12v-4,53,-45,74,-103,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v34,3,63,-4,49,-40r7,-11v5,24,7,51,34,50v19,-6,0,-34,-8,-42","w":295},"\u069c":{"d":"296,-10r-13,26r-29,-15r14,-26xm290,37r-13,26r-29,-15r14,-26xm256,7r-13,25r-29,-15r13,-26xm228,-245r-13,26r-28,-15r13,-26xm263,-214r-14,26r-28,-16r13,-25xm222,-198r-13,26r-28,-15r13,-26xm282,-144v20,22,12,54,14,92v-23,1,-38,-1,-49,-12v-12,14,-33,12,-59,12v-4,53,-45,74,-103,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v34,3,63,-4,49,-40r7,-11v5,24,7,51,34,50v19,-6,0,-34,-8,-42","w":295},"\u069d":{"d":"331,-10r-13,26r-29,-15r14,-26xm291,7r-13,25r-29,-15r14,-26xm348,-146v48,0,49,45,47,94r-208,0v-9,54,-40,74,-102,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v75,2,95,-64,160,-64xm330,-82v16,-1,35,-2,37,-14v-25,-41,-93,0,-118,14r81,0","w":395},"\u069e":{"d":"298,-245r-13,26r-28,-15r13,-26xm333,-214r-14,26r-28,-16r13,-25xm293,-198r-14,26r-28,-15r13,-26xm348,-146v48,0,49,45,47,94r-208,0v-9,54,-40,74,-102,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v75,2,95,-64,160,-64xm330,-82v16,-1,35,-2,37,-14v-25,-41,-93,0,-118,14r81,0","w":395},"\u069f":{"d":"158,-245r-14,26r-28,-15r13,-26xm192,-214r-13,26r-29,-16r13,-25xm152,-198r-13,26r-29,-15r13,-26xm163,-146v48,-3,48,45,46,94r-221,0r0,-30v33,1,55,-1,76,-16v16,-45,0,-102,-12,-143r-11,-5v2,-14,5,-29,11,-40v4,13,17,16,33,18v-2,22,-1,21,-6,35r-8,-2v11,38,20,81,8,123v35,-20,50,-32,84,-34xm182,-96v-22,-40,-96,-3,-118,14v35,-2,111,8,118,-14","w":209},"\u06a0":{"d":"70,-291r-14,26r-28,-15r13,-26xm105,-259r-14,25r-29,-15r14,-25xm64,-244r-13,26r-29,-15r13,-25xm23,-15v1,70,96,57,163,62r-45,29v-76,1,-134,-11,-134,-78v0,-42,16,-61,40,-84v-23,-12,-38,-22,-38,-49v0,-35,44,-73,83,-51v6,3,13,8,22,15v-44,-4,-128,19,-70,48v11,5,24,10,38,12v23,-13,45,-23,73,-29r-7,28v-60,24,-113,37,-125,97","w":195},"\u06a1":{"d":"252,-172v40,4,30,73,32,120r-161,0v-79,6,-140,-25,-107,-96v8,-17,4,-24,17,-17v-7,16,-15,21,-13,38v10,71,154,37,235,45v-23,-6,-39,-13,-41,-34v-2,-20,19,-57,38,-56xm250,-138v-15,-2,-16,22,-5,27v4,2,11,4,21,6v-1,-16,-3,-32,-16,-33","w":283},"\u06a2":{"d":"274,-9r-14,26r-28,-15r13,-26xm252,-172v40,4,30,73,32,120r-161,0v-79,6,-140,-25,-107,-96v8,-17,4,-24,17,-17v-7,16,-15,21,-13,38v10,71,154,37,235,45v-23,-6,-39,-13,-41,-34v-2,-20,19,-57,38,-56xm250,-138v-15,-2,-16,22,-5,27v4,2,11,4,21,6v-1,-16,-3,-32,-16,-33","w":283},"\u06a3":{"d":"263,-216r-13,25r-29,-14r13,-26xm175,-9r-13,26r-29,-15r13,-26xm252,-172v40,4,30,73,32,120r-161,0v-79,6,-140,-25,-107,-96v8,-17,4,-24,17,-17v-7,16,-15,21,-13,38v10,71,154,37,235,45v-23,-6,-39,-13,-41,-34v-2,-20,19,-57,38,-56xm250,-138v-15,-2,-16,22,-5,27v4,2,11,4,21,6v-1,-16,-3,-32,-16,-33","w":283},"\u06a5":{"d":"296,-10r-13,26r-29,-15r14,-26xm290,37r-13,26r-29,-15r14,-26xm256,7r-13,25r-29,-15r13,-26xm252,-172v40,4,30,73,32,120r-161,0v-79,6,-140,-25,-107,-96v8,-17,4,-24,17,-17v-7,16,-15,21,-13,38v10,71,154,37,235,45v-23,-6,-39,-13,-41,-34v-2,-20,19,-57,38,-56xm250,-138v-15,-2,-16,22,-5,27v4,2,11,4,21,6v-1,-16,-3,-32,-16,-33","w":283},"\u06a7":{"d":"172,-211r-14,26r-28,-15r13,-26xm167,-160v39,4,44,67,42,117v-2,51,-54,70,-113,70v-68,0,-98,-42,-77,-103v5,-14,10,-28,18,-42r7,3v-8,22,-19,40,-18,67v1,35,32,44,72,44v49,0,114,-19,95,-72v-24,14,-64,6,-64,-26v0,-23,18,-59,38,-58xm146,-114v3,15,24,13,35,6v-2,-22,-32,-27,-35,-6","w":209},"\u06a8":{"d":"151,-245r-14,26r-28,-15r13,-26xm185,-214r-13,26r-29,-16r13,-25xm145,-198r-13,26r-29,-15r13,-26xm167,-160v39,4,44,67,42,117v-2,51,-54,70,-113,70v-68,0,-98,-42,-77,-103v5,-14,10,-28,18,-42r7,3v-8,22,-19,40,-18,67v1,35,32,44,72,44v49,0,114,-19,95,-72v-24,14,-64,6,-64,-26v0,-23,18,-59,38,-58xm146,-114v3,15,24,13,35,6v-2,-22,-32,-27,-35,-6","w":209},"\u06aa":{"d":"82,-52v-63,6,-94,-27,-69,-77v7,1,6,8,5,14v0,22,21,33,64,33r190,0v-31,-42,-152,-30,-205,-61v-23,-14,-10,-32,8,-50v21,-21,62,-37,96,-49r0,30v-28,12,-77,19,-93,40v2,11,13,13,29,17v40,8,40,7,80,15v74,15,82,13,105,58r0,30r-210,0","w":292},"\u06ab":{"d":"18,-115v0,28,30,33,64,33r190,0v-18,-29,-38,-42,-71,-62v-10,12,-32,-17,-37,-25v-3,-69,64,-73,111,-95r0,30v-28,12,-69,20,-89,37v17,23,55,42,72,66v17,24,38,36,34,79r-210,0v-79,10,-94,-48,-61,-101r6,3v-6,14,-9,21,-9,35xm228,-204v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm235,-212v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":292},"\u06ac":{"d":"133,-264r-13,25r-29,-14r13,-26xm111,-184v11,13,47,-6,41,25v1,46,-58,46,-96,31v1,-8,27,0,31,-2v25,5,74,-23,32,-29v-10,1,-23,3,-23,-9v0,-21,29,-57,48,-61r-4,23v-14,3,-28,10,-29,22xm22,-115v0,28,30,33,65,33r112,0r-22,-149v-17,-6,-5,-35,-1,-48v4,12,18,20,34,24v-2,11,0,42,-14,31v6,58,21,107,20,172r-129,0v-79,11,-95,-50,-61,-101r6,3v-6,14,-10,21,-10,35","w":216},"\u06ae":{"d":"155,-10r-13,26r-28,-15r13,-26xm149,37r-13,26r-28,-15r13,-26xm115,7r-13,25r-29,-15r14,-26xm111,-184v11,13,47,-6,41,25v1,46,-58,46,-96,31v1,-8,27,0,31,-2v25,5,74,-23,32,-29v-10,1,-23,3,-23,-9v0,-21,29,-57,48,-61r-4,23v-14,3,-28,10,-29,22xm22,-115v0,28,30,33,65,33r112,0r-22,-149v-17,-6,-5,-35,-1,-48v4,12,18,20,34,24v-2,11,0,42,-14,31v6,58,21,107,20,172r-129,0v-79,11,-95,-50,-61,-101r6,3v-6,14,-10,21,-10,35","w":216},"\u06b0":{"d":"18,-115v0,28,30,33,64,33r190,0v-18,-29,-38,-42,-71,-62v-10,12,-32,-17,-37,-25v-3,-69,64,-73,111,-95r0,30v-28,12,-69,20,-89,37v17,23,55,42,72,66v17,24,38,36,34,79r-210,0v-79,10,-94,-48,-61,-101r6,3v-6,14,-9,21,-9,35xm275,-312r0,30v-40,14,-85,34,-115,54v-2,-24,5,-24,22,-36v24,-16,63,-36,93,-48xm228,-204v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm235,-212v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":292},"\u06b2":{"d":"201,-10r-13,26r-29,-15r14,-26xm161,7r-13,25r-29,-15r14,-26xm18,-115v0,28,30,33,64,33r190,0v-18,-29,-38,-42,-71,-62v-10,12,-32,-17,-37,-25v-3,-69,64,-73,111,-95r0,30v-28,12,-69,20,-89,37v17,23,55,42,72,66v17,24,38,36,34,79r-210,0v-79,10,-94,-48,-61,-101r6,3v-6,14,-9,21,-9,35xm275,-312r0,30v-40,14,-85,34,-115,54v-2,-24,5,-24,22,-36v24,-16,63,-36,93,-48","w":292},"\u06b4":{"d":"198,-314r-10,16r-23,-6r10,-17xm229,-306r-10,17r-23,-6r10,-17xm191,-290r-10,16r-23,-6r10,-17xm18,-115v0,28,30,33,64,33r190,0v-18,-29,-38,-42,-71,-62v-10,12,-32,-17,-37,-25v-3,-69,64,-73,111,-95r0,30v-28,12,-69,20,-89,37v17,23,55,42,72,66v17,24,38,36,34,79r-210,0v-79,10,-94,-48,-61,-101r6,3v-6,14,-9,21,-9,35xm275,-312r0,30v-40,14,-85,34,-115,54v-2,-24,5,-24,22,-36v24,-16,63,-36,93,-48","w":292},"\u06b5":{"d":"174,-321r-24,41r-9,0r-24,-41r15,0r14,25r13,-25r15,0xm151,-279v-1,19,19,17,28,24v0,17,-1,19,-4,34r-10,-3r13,95v3,24,4,43,4,56v0,56,-40,68,-97,71v-93,5,-80,-95,-42,-145v13,16,-23,40,-17,70v-3,68,133,49,142,7v-2,-43,-14,-115,-22,-162r-8,-4v0,-16,4,-30,10,-43r3,0","w":182},"\u06b6":{"d":"174,-306r-14,26r-29,-15r13,-26xm151,-279v-1,19,19,17,28,24v0,17,-1,19,-4,34r-10,-3r13,95v3,24,4,43,4,56v0,56,-40,68,-97,71v-93,5,-80,-95,-42,-145v13,16,-23,40,-17,70v-3,68,133,49,142,7v-2,-43,-14,-115,-22,-162r-8,-4v0,-16,4,-30,10,-43r3,0","w":182},"\u06b7":{"d":"149,-314r-10,16r-23,-6r10,-17xm180,-306r-10,17r-23,-6r9,-17xm142,-290r-10,16r-23,-6r9,-17xm151,-279v-1,19,19,17,28,24v0,17,-1,19,-4,34r-10,-3r13,95v3,24,4,43,4,56v0,56,-40,68,-97,71v-93,5,-80,-95,-42,-145v13,16,-23,40,-17,70v-3,68,133,49,142,7v-2,-43,-14,-115,-22,-162r-8,-4v0,-16,4,-30,10,-43r3,0","w":182},"\u06b8":{"d":"138,15r-13,22r-29,-12r13,-21xm132,52r-13,22r-29,-12r13,-22xm98,31r-13,22r-29,-12r13,-21xm151,-279v-1,19,19,17,28,24v0,17,-1,19,-4,34r-10,-3r13,95v3,24,4,43,4,56v0,56,-40,68,-97,71v-93,5,-80,-95,-42,-145v13,16,-23,40,-17,70v-3,68,133,49,142,7v-2,-43,-14,-115,-22,-162r-8,-4v0,-16,4,-30,10,-43r3,0","w":182},"\u06b9":{"d":"126,50r-14,26r-29,-15r13,-26xm124,-186r-13,25r-28,-15r13,-25xm173,-150v18,22,16,57,16,98v-1,60,-38,74,-103,78v-74,5,-88,-60,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,91,-18,91,-53v0,-24,-8,-43,-19,-57","w":189},"\u06bc":{"d":"124,-186r-13,25r-28,-15r13,-25xm173,-150v18,22,16,57,16,98v-1,60,-38,74,-103,78v-74,5,-88,-60,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,91,-18,91,-53v0,-24,-8,-43,-19,-57xm72,46v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm79,38v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":189},"\u06bd":{"d":"105,-245r-13,26r-29,-15r13,-26xm140,-214r-14,26r-28,-16r13,-25xm99,-198r-13,26r-29,-15r13,-26xm173,-150v18,22,16,57,16,98v-1,60,-38,74,-103,78v-74,5,-88,-60,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,91,-18,91,-53v0,-24,-8,-43,-19,-57","w":189},"\u06bf":{"d":"119,-215r-14,25r-28,-14r13,-26xm9,-14v0,-60,31,-80,76,-108v-27,-2,-45,0,-70,5v14,-68,100,-22,163,-34r-6,30v-71,13,-151,27,-151,94v0,68,91,72,165,75v-18,8,-25,28,-50,28v-74,1,-127,-20,-127,-90xm150,-63r-13,25r-28,-15r13,-25xm144,-16r-13,26r-28,-15r13,-26xm110,-47r-13,25r-29,-15r14,-25","w":202},"\u06c2":{"d":"76,-118v19,-1,36,46,64,36r0,30v-43,8,-49,-30,-74,-38v-20,2,-43,43,-53,65r-8,-6v23,-58,47,-87,71,-87xm55,-174v5,7,22,17,34,9v-5,17,-34,16,-49,24v0,-5,6,-10,18,-14v-6,-3,-12,-6,-12,-13v0,-11,30,-41,36,-17v0,5,-3,8,-4,11v-4,-3,-8,-5,-12,-5v-4,-1,-12,1,-11,5","w":139},"\u06c3":{"d":"103,-186r-13,26r-29,-15r13,-25xm63,-169r-14,25r-29,-15r14,-25xm76,-118v19,-1,36,46,64,36r0,30v-43,8,-49,-30,-74,-38v-20,2,-43,43,-53,65r-8,-6v23,-58,47,-87,71,-87","w":139},"\u06c4":{"d":"128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18xm66,-6v-5,-35,47,-47,47,-8v4,27,-47,42,-47,8xm73,-14v-2,12,26,15,30,5v0,-12,-29,-27,-30,-5","w":155},"\u06ca":{"d":"155,-210r-13,26r-28,-15r13,-25xm115,-193r-13,25r-29,-15r14,-25xm128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18","w":155},"\u06cd":{"d":"122,-80v3,-36,33,-86,71,-86v25,0,28,17,23,45v-24,-39,-74,-1,-80,27v12,19,74,-7,73,21v-2,63,-63,89,-134,89v-84,0,-74,-84,-44,-128r-43,22r0,-11r50,-26v2,1,5,2,8,3v-30,50,-41,109,34,110v34,0,98,-22,112,-41v-14,-15,-73,10,-70,-25","w":229},"\u06ce":{"d":"122,-188r-24,41r-10,0r-24,-41r15,0r14,25r13,-25r16,0xm193,-166v23,-1,28,22,23,45v-7,-8,-19,-15,-32,-17v-16,-2,-48,31,-48,44v9,20,73,-9,73,21v0,63,-62,90,-134,89v-40,0,-66,-15,-66,-52v0,-39,11,-61,29,-91r8,3v-11,21,-23,41,-23,67v0,78,141,32,169,2v-14,-16,-70,11,-70,-25v0,-36,33,-84,71,-86","w":229},"\u06cf":{"d":"130,-196r-14,25r-28,-14r13,-26xm128,-139v28,2,29,42,28,77v-2,56,-60,115,-124,80v-7,-4,-28,-4,-20,-14v61,22,106,-13,132,-55v-30,0,-48,-8,-49,-36v-1,-23,13,-53,33,-52xm144,-81v0,-24,-24,-41,-33,-18v2,15,14,17,33,18","w":155},"\u06d1":{"d":"131,31r-6,12r-18,-5r6,-13xm125,48r-6,12r-18,-5r6,-12xm103,40r-6,12r-18,-5r6,-13xm193,-166v23,-1,28,22,23,45v-7,-8,-19,-15,-32,-17v-16,-2,-48,31,-48,44v9,20,73,-9,73,21v0,63,-62,90,-134,89v-40,0,-66,-15,-66,-52v0,-39,11,-61,29,-91r8,3v-11,21,-23,41,-23,67v0,78,141,32,169,2v-14,-16,-70,11,-70,-25v0,-36,33,-84,71,-86","w":229},"\u06d4":{"d":"68,-52r-61,0r0,-30r61,0r0,30","w":74},"\u06d6":{"d":"-1,-269v5,56,44,-5,65,-6v21,-1,20,24,19,45v-27,-3,-64,7,-83,-5v-6,7,-22,5,-35,5v-17,0,-39,13,-40,26v33,8,85,0,124,3r0,14r-117,0v-11,0,-13,1,-14,-5v1,-32,28,-56,55,-53r-8,-51v-9,-1,-3,-16,-1,-23v5,5,2,8,16,12v0,8,0,19,-7,14r9,48v23,3,9,-16,17,-24xm58,-245v17,2,14,-15,2,-15v-9,0,-27,15,-30,15r28,0","w":0},"\u06d7":{"d":"48,-312r-7,12r-13,-7r6,-12xm29,-304r-7,12r-13,-7r6,-12xm53,-230v-42,1,-100,-8,-107,26v33,8,85,0,124,3r0,14r-117,0v-11,0,-13,1,-14,-5v2,-30,28,-57,56,-53r-9,-51v-8,-2,-2,-17,0,-23v4,7,4,7,15,12v0,8,1,19,-6,14r8,48r43,0v0,-3,-1,-6,-2,-10v-10,3,-29,6,-28,-8v1,-10,6,-30,17,-29v18,3,21,38,20,62xm39,-268v-2,-7,-14,-17,-15,-2v0,6,10,6,15,2","w":0},"\u06d8":{"d":"-37,-201v33,7,39,-28,60,-31v12,21,15,23,14,45v-16,1,-24,-1,-36,-10v-8,10,-21,11,-38,10r0,-14xm26,-202v4,-10,-12,-28,-18,-9v5,5,10,8,18,9","w":0},"\u06d9":{"d":"24,-297v4,2,7,10,16,11v-2,6,-2,19,-9,12v0,21,-2,35,-12,53v5,8,8,19,5,30v-12,3,-26,4,-39,4v1,-19,18,-22,27,-34v-10,-13,-16,-42,-34,-38v-6,1,-27,-28,-14,-37v17,6,41,48,52,68v6,-13,9,-29,9,-48v-9,-2,-3,-15,-1,-21xm-3,-200v17,0,27,-1,17,-15v-4,5,-9,10,-17,15","w":0},"\u06da":{"d":"18,-245r-7,13r-13,-8r7,-12xm-40,-278v7,-31,47,-13,78,-17r-3,14v-32,4,-74,20,-71,45v-5,29,38,35,78,36v-24,24,-89,13,-84,-30v3,-25,14,-38,36,-51v-13,-2,-17,0,-34,3","w":0},"\u06db":{"d":"20,-207r-7,13r-13,-7r6,-13xm3,-221r-6,12r-14,-7r7,-12xm1,-199r-7,12r-13,-7r6,-12","w":0},"\u06dc":{"d":"61,-268v9,10,7,26,7,44v-10,0,-16,0,-23,-5v-5,6,-17,5,-28,5v0,23,-23,37,-50,37v-49,0,-35,-43,-22,-69r3,2v-12,26,-17,51,19,53v35,2,60,-26,35,-52r7,-18v6,10,7,17,8,33v16,1,29,-2,23,-19r3,-5v3,10,3,25,16,24v13,-6,-10,-22,2,-30","w":0},"\u06dd":{"d":"328,-272v38,32,68,83,68,146v0,63,-30,115,-68,147v6,19,-19,36,-36,24v-55,30,-125,31,-180,0v-17,11,-40,-2,-36,-24v-38,-32,-67,-83,-67,-147v0,-64,29,-115,67,-146v-4,-22,17,-35,36,-25v55,-30,125,-29,180,0v18,-11,42,5,36,25xm306,-263v7,0,13,-7,13,-14v0,-7,-6,-14,-13,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm282,-280v-49,-26,-110,-27,-159,0r159,0xm99,-263v7,0,14,-7,14,-14v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14xm88,-257v-74,55,-83,202,0,262v10,-4,21,-2,28,5r173,0v7,-8,18,-9,28,-5v82,-61,73,-206,0,-262v-9,5,-21,4,-28,-4r-173,0v-7,8,-19,9,-28,4xm306,40v7,0,13,-7,13,-14v0,-7,-6,-14,-13,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm282,29r-159,0v49,26,110,25,159,0xm99,40v7,0,14,-7,14,-14v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14","w":404},"\u06de":{"d":"382,-132r-55,55r0,77r-77,0r-55,55r-54,-55r-78,0r0,-77r-54,-55r54,-55r0,-77r78,0r54,-54r55,54r77,0r0,77xm77,-64r0,51r50,0xm127,-250r-50,0r0,50xm314,-200r0,-50r-51,0xm314,-13r0,-51r-51,51r51,0xm159,0r36,36r36,-36r-72,0xm63,-168r-36,36r36,36r0,-72xm231,-264r-36,-36r-36,36r72,0xm314,-181r-70,-69r-98,0r-69,69r0,98r69,70r98,0r70,-70r0,-98xm363,-132r-36,-36r0,72xm195,-170v21,0,38,17,38,38v0,20,-17,38,-38,38v-20,0,-38,-18,-38,-38v0,-22,18,-38,38,-38xm195,-107v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":390},"\u06df":{"d":"0,-213v7,0,13,6,13,13v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13v0,-7,6,-13,13,-13","w":0},"\u06ec":{"d":"0,-213v7,0,13,6,13,13v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13v0,-7,6,-13,13,-13","w":0},"\u06e0":{"d":"13,-187r-26,0r0,-26r26,0r0,26","w":0},"\u06e1":{"d":"-30,-220v21,-42,51,12,78,19r0,14r-96,0r0,-14r68,0v-19,-14,-25,-23,-50,-19","w":0},"\u06e2":{"d":"-16,-268v10,-29,34,-13,44,6r0,14v-22,-1,-50,2,-48,12v3,17,11,31,6,49r-13,-46v0,-22,16,-27,40,-29v-6,-7,-16,-16,-25,-4","w":0},"\u06e3":{"d":"61,-17v9,10,7,26,7,44v-10,0,-16,0,-23,-5v-5,6,-17,5,-28,5v0,23,-23,37,-50,37v-49,0,-35,-43,-22,-69r3,2v-12,26,-17,51,19,53v35,2,60,-26,35,-52r7,-18v6,10,7,17,8,33v16,1,29,-2,23,-19r3,-5v3,10,3,25,16,24v13,-6,-10,-22,2,-30","w":0},"\u06e4":{"d":"-16,-190v2,-12,24,1,33,-3v-9,12,-21,0,-33,3","w":0},"\u06e5":{"d":"64,-224v-32,4,-27,-39,-7,-42v12,-2,13,19,13,37v0,33,-38,55,-70,34v2,-7,13,3,20,1v18,0,34,-14,44,-30xm65,-238v-2,-12,-12,-20,-16,-9v0,6,6,9,16,9","w":69},"\u06e6":{"d":"14,-187v-23,5,-13,-21,-7,-29v5,-1,46,-30,55,-39v7,-2,8,17,6,25v-11,-23,-22,0,-30,9v-6,3,-25,11,-31,17v34,8,86,0,126,3r-17,14r-102,0","w":133},"\u06e7":{"d":"-52,-187v-24,4,-14,-21,-7,-29v5,-1,46,-29,54,-39v8,-2,10,16,7,25v-11,-22,-21,0,-30,9v-7,3,-27,11,-32,17v34,8,87,0,127,3r-18,14r-101,0","w":0},"\u06e8":{"d":"11,-288r-6,12r-14,-7r7,-12xm-7,-201v18,0,43,-9,43,-25v0,-11,-3,-20,-9,-27r7,-18v16,32,15,92,-41,84v-48,3,-37,-44,-22,-69r3,2v-13,26,-18,53,19,53","w":0},"\u06e9":{"d":"207,0r-198,0r40,-46r0,-103r-40,-46r99,-100r99,100r-40,46r0,103xm194,-195r-86,-86r-86,86r37,42r0,111r-28,32r154,0r-28,-32r0,-111xm175,-195r-26,30r0,142r-81,0r0,-142r-27,-30r67,-67xm162,-195r-54,-54r-54,54r22,25r0,137r64,0r0,-137xm146,-195r-15,17r0,131r-46,0r0,-131r-15,-17r38,-39xm137,-195r-29,-30r-29,30r13,14r0,127r32,0r0,-127","w":216},"\u06ea":{"d":"30,30r-30,29r-30,-29r30,-30xm18,30r-18,-18r-18,18r18,18","w":0},"\u06eb":{"d":"30,-216r-30,29r-30,-29r30,-30xm18,-216r-18,-18r-18,18r18,18","w":0},"\u06ed":{"d":"-16,-17v10,-29,34,-13,44,6r0,14v-22,-1,-50,2,-48,12v3,17,11,31,6,49r-13,-46v0,-22,16,-27,40,-29v-6,-7,-16,-16,-25,-4","w":0},"\u06fa":{"d":"228,-245r-13,26r-28,-15r13,-26xm263,-214r-14,26r-28,-16r13,-25xm222,-198r-13,26r-28,-15r13,-26xm281,-9r-14,26r-28,-15r13,-26xm282,-144v20,22,12,54,14,92v-23,1,-38,-1,-49,-12v-12,14,-33,12,-59,12v-4,53,-45,74,-103,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v34,3,63,-4,49,-40r7,-11v5,24,7,51,34,50v19,-6,0,-34,-8,-42","w":295},"\u06fb":{"d":"312,-9r-14,26r-28,-15r13,-26xm278,-198r-13,26r-29,-15r13,-26xm348,-146v48,0,49,45,47,94r-208,0v-9,54,-40,74,-102,78v-75,5,-88,-59,-60,-115v3,-6,7,-17,13,-30r7,4v-12,26,-20,38,-20,66v0,32,25,45,60,45v41,1,94,-18,93,-53v0,-24,-8,-42,-21,-57r15,-36v14,22,16,33,16,68v75,2,95,-64,160,-64xm330,-82v16,-1,35,-2,37,-14v-25,-41,-93,0,-118,14r81,0","w":395},"\u06fc":{"d":"140,-26r-13,25r-29,-15r13,-25xm88,-250r-15,25r-27,-15r14,-25xm23,-15v1,70,96,57,163,62r-45,29v-76,1,-134,-11,-134,-78v0,-42,16,-61,40,-84v-23,-12,-38,-22,-38,-49v0,-35,44,-73,83,-51v6,3,13,8,22,15v-44,-4,-128,19,-70,48v11,5,24,10,38,12v23,-13,45,-23,73,-29r-7,28v-60,24,-113,37,-125,97","w":195},"\u06fd":{"d":"98,-104v-19,-25,-72,-2,-42,18v6,3,14,7,25,11v16,-8,33,-14,50,-19r-9,28v-37,8,-57,19,-80,40v-11,-5,3,-22,9,-28v-10,-7,-29,-12,-30,-25v6,-36,53,-92,86,-48xm72,-20r0,72r-17,0r0,-72r17,0xm88,-20r16,0r0,72r-16,0r0,-72","w":148},"\u06fe":{"d":"68,-128v28,0,39,24,54,46r0,30v-46,0,-117,-2,-96,50v9,22,18,50,8,78r-28,-98v2,-50,34,-54,85,-60v-15,-20,-38,-28,-53,-7r-8,-5v8,-18,18,-34,38,-34xm72,-20r0,72r-17,0r0,-72r17,0xm104,-20r0,72r-16,0r0,-72r16,0","w":121},"\ufb1d":{"d":"62,-187r0,97r-35,0r0,-97r35,0xm30,-54v0,-8,6,-15,15,-14v8,0,15,6,15,14v0,7,-7,16,-15,15v-9,0,-15,-6,-15,-15","w":88},"\ufb1e":{"d":"-30,-265v2,30,59,32,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0","w":0},"\ufb1f":{"d":"27,-50r0,-19r123,0r0,19r-123,0xm150,-187r0,97r-34,0r0,-97r34,0xm62,-187r0,97r-35,0r0,-97r35,0","w":177}}});


$(document).ready(function () {
  AktualniJazykovaVerze = $('option:selected').val();
});

function PresmerovatMutaci(a) {
  if (AktualniJazykovaVerze != a) {
    return !window.open(a);
  }
}

$(document).ready(function () {
  //$("#select-lang select, #type-mysli").styledSelect();
  
  if($.browser.msie && parseInt($.browser.version) === 6)
  {
    $('img').each(function(){
      var _src = $(this).attr('src');
      var _len = _src.length;
      var _dot = _src.substring( _len - 4, _len - 3 );
      if( _dot != '.' )
        $(this).attr('src', _src + '.png');
    }); 
    DD_belatedPNG.fix('.png_bg, img');
  } 
  
  $("#showcase li a")
  .hover(function (e) {
    $("#showcase-image").html('<img src="'+this.href+'" alt="" title="" class="png_bg" />');
    $("#showcase-image img").fadeIn('slow');
  },function (e) {
    $("#showcase-image img").fadeOut('slow',function () {
      $(this).remove();
    });
  })
  .click(function() {
    return false; 
  });
  
  
  var showHideBiskitHand = function () {
    if(parseInt($(window).width())<1023) {
      $(".d3noha").hide();
    } else {
      $(".d3noha").show();
    }
  }
    
  $(window).bind('resize', showHideBiskitHand).triggerHandler('resize');
  $(window).bind('load', showHideBiskitHand).triggerHandler('load');
  
  $(".more").live("click",function () {
    var parent = $(this).parent();    
    var index  = $(".more").index(this);
    var newsDetail = $(".detail-recept:eq("+index+")");
    
    $(this).remove();
    
    if(newsDetail.is(":visible"))
    {      
      newsDetail.fadeOut(function () {
          $(parent).parent().prev().append("<a href=\"javascript:void(0);\" style=\"display: none;\" class=\"more\">Celý recept&nbsp;&raquo;</a>");
          $(".more",$(parent).parent().prev()).fadeIn('fast');
      });      
    }
    else
    { 
      $("p:last",$(parent).next()).append(" <a href=\"\" class=\"more\">Zavřít recept&nbsp;&raquo;</a>");                 
      newsDetail.fadeIn();
    }
    return false;
  });
 

  $("#menu > li").mouseover(function () {
    clearInterval(window["menu_int"]);
    $("ul.submenu").filter(":visible").hide();
    $("ul.submenu",this).show();        
  })
  .mouseleave(function () {    
    window["menu_int"] = setInterval(function () {
      $("ul.submenu").filter(":visible").hide();
    },500);    
  });

  if($.browser.msie && parseInt($.browser.version) > 6) {  
    $('.submenu').add('.submenu li').css('width', '200px');
    $('.en .submenu:first').css('width', '430px');
  }
  
}); 
