

/*
 * 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 Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */

/***************************************************************************

	sexy-combo 2.1.3	: A jQuery date time picker.
	
	Authors: 
		Kadalashvili.Vladimir@gmail.com - Vladimir Kadalashvili
		thetoolman@gmail.com 
		
	Version: 2.1.3
	
	Website: http://code.google.com/p/sexy-combo/
	

 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 *                                                                         *
 ***************************************************************************/


;(function($) {
    $.fn.sexyCombo = function(config) {
        return this.each(function() {
		if ("SELECT" != this.tagName.toUpperCase()) {
		    return;	
		}
	    new $sc(this, config);
	    });  
    };
    
    //default config options
    var defaults = {
        //skin name
        skin: "sexy",
	
	    //this suffix will be appended to the selectbox's name and will be text input's name
	    suffix: "__sexyCombo",
	
	    //the same as the previous, but for hidden input
	    hiddenSuffix: "__sexyComboHidden",
	    
	    //rename original select, and call the hidden field the original name attribute?
	    renameOriginal: false,
	    
	   //initial / default hidden field value.
	   //Also applied when user types something that is not in the options list
	    initialHiddenValue: "",
	
	    //if provided, will be the value of the text input when it has no value and focus
	    emptyText: "",
	
	    //if true, autofilling will be enabled
	    autoFill: false,
	
	    //if true, selected option of the selectbox will be the initial value of the combo
	    triggerSelected: true,
	
	    //function for options filtering
	    filterFn: null,
	
	    //if true, the options list will be placed above text input
	    dropUp: false,
	
	    //separator for values of multiple combos
	    separator: ",",
			
		//key json name for key/value pair
		key: "value",
		
		//value json for key/value pair
		value: "text",

	    //all callback functions are called in the scope of the current sexyCombo instance
	
	    //called after dropdown list appears
	    showListCallback: null,
	
	    //called after dropdown list disappears
	    hideListCallback: null,
	
	    //called at the end of constructor
	    initCallback: null,
	
	    //called at the end of initEvents function
	    initEventsCallback: null,
		    
	    //called when both text and hidden inputs values are changed
	    changeCallback: null,
	
	    //called when text input's value is changed
	    textChangeCallback: null,
	    
		checkWidth: true
    };
    
    //constructor
    //creates initial markup and does some initialization
    $.sexyCombo = function(selectbox, config) {
		
        if (selectbox.tagName.toUpperCase() != "SELECT")
	        return;
	    
	    this.config = $.extend({}, defaults, config || {}); 
	
	   
	    
	    this.selectbox = $(selectbox);
	    this.options = this.selectbox.children().filter("option");
	
	    this.wrapper = this.selectbox.wrap("<div>").
	    hide().
	    parent().
	    addClass("combo").
	    addClass(this.config.skin); 
		
	    this.input = $("<input type='text' />").
	    appendTo(this.wrapper).
	    attr("autocomplete", "off").
	    attr("value", "").
	    attr("name", this.selectbox.attr("name") + this.config.suffix);
	    
	    var origName = this.selectbox.attr("name");
	    var newName = origName + this.config.hiddenSuffix;
	    if(this.config.renameOriginal) { 
	    	this.selectbox.attr("name", newName);
	    }
	    	
	    this.hidden = $("<input type='hidden' />").
	    appendTo(this.wrapper).
	    attr("autocomplete", "off").
	    attr("value", this.config.initialHiddenValue).
	    attr("name", this.config.renameOriginal ? origName : newName);
	
        this.icon = $("<div />").
	    appendTo(this.wrapper).
	    addClass("icon"); 
	
	    this.listWrapper = $("<div />").
	    appendTo(this.wrapper).
	    //addClass("invisible").
	    addClass("list-wrapper"); 

	    this.updateDrop();
	
	    this.list = $("<ul />").appendTo(this.listWrapper); 
	    var self = this;
		var optWidths = [];
	    this.options.each(function() {					   
	        var optionText = $.trim($(this).text());
			if (self.config.checkWidth) {
			    optWidths.push($("<li />").
	            appendTo(self.list).
	            html("<span>" + optionText + "</span>").
	            addClass("visible").find("span").outerWidth());	
			}
			else {
	            $("<li />").
	            appendTo(self.list).
	            html("<span>" + optionText + "</span>").
	            addClass("visible");
			}
	    });  
		
	
	    this.listItems = this.list.children();
		
		
		
		
		/*this.listItems.find("span").each(function() {
		    optWidths.push($(this).outerWidth());										  
		});*/
		if (optWidths.length) {
		    optWidths = optWidths.sort(function(a, b) {
		        return a - b;									
		    });
		    var maxOptionWidth = optWidths[optWidths.length - 1];
			
			
		}
		

        this.singleItemHeight = this.listItems.outerHeight();
		//bgiframe causes some problems, let's remove it
		/*if ("function" == typeof this.listWrapper.bgiframe) {
		    this.listWrapper.bgiframe({height: this.singleItemHeight * this.wrapper.find("li").height()});
		}*/
		this.listWrapper.addClass("invisible");
		
       
	    if ($.browser.opera) {
	        this.wrapper.css({position: "relative", left: "0", top: "0"});
	    } 
	
	
	
	    this.filterFn = ("function" == typeof(this.config.filterFn)) ? this.config.filterFn : this.filterFn;
	
	    this.lastKey = null;
	    //this.overflowCSS = "overflow";
	
	    this.multiple = this.selectbox.attr("multiple");
	
	    var self = this;
	
	    this.wrapper.data("sc:lastEvent", "click");
	
	    this.overflowCSS = "overflowY";
	
	    if ((this.config.checkWidth) && (this.listWrapper.innerWidth() < maxOptionWidth)) {
		    this.overflowCSS = "overflow";	
			
		}
        
		
	    this.notify("init");
	    this.initEvents();
    };
    
    //shortcuts
    var $sc = $.sexyCombo;
    $sc.fn = $sc.prototype = {};
    $sc.fn.extend = $sc.extend = $.extend;
    
    $sc.fn.extend({
        //TOC of our plugin
	    //initializes all event listeners
        initEvents: function() {
	        var self = this;
			
	        this.icon.bind("click", function(e) {
	            if (!self.wrapper.data("sc:positionY"))	{
		            self.wrapper.data("sc:positionY", e.pageY);	    	
		        }
	        });
	
	        this.input.bind("click", function(e) {
	            if (!self.wrapper.data("sc:positionY"))	{
		            self.wrapper.data("sc:positionY", e.pageY);	    	
		        }								 
	        });
	

	        this.wrapper.bind("click", function(e) {
	            if (!self.wrapper.data("sc:positionY"))	{
		            self.wrapper.data("sc:positionY", e.pageY);	 
		        }									   
	        });					
	    
	        this.icon.bind("click", function() {
		        if (self.input.attr("disabled")) {
			         self.input.attr("disabled", false);   
		        }
		        self.wrapper.data("sc:lastEvent", "click");
		        self.filter();
	            self.iconClick();
	        }); 
	    
	        this.listItems.bind("mouseover", function(e) {
	            //self.highlight(e.target);
				if ("LI" == e.target.nodeName.toUpperCase()) {
				    self.highlight(e.target);	
				}
				else {
				    self.highlight($(e.target).parent());	
				}
	        });
	    
	        this.listItems.bind("click", function(e) {
	            self.listItemClick($(e.target));
	        });
		
			this.input.bind("keyup", function(e) {
				self.wrapper.data("sc:lastEvent", "key");							                
				//$sc.log(self.wrapper.data("sc:lastEvent"));
				self.keyUp(e);
			});		
	    
	      
			

	    
	        this.input.bind("keypress", function(e) {
	            if ($sc.KEY.RETURN == e.keyCode) {
	                e.preventDefault();
			    }
		        if ($sc.KEY.TAB == e.keyCode)
			        e.preventDefault();
	        });
	    
	        $(document).bind("click", function(e) {
	            if ((self.icon.get(0) == e.target) || (self.input.get(0) == e.target))
		            return;
		    
		        self.hideList();    
	        });
	    
	        this.triggerSelected();
	        this.applyEmptyText();
	    
	        
		
		    this.input.bind("click", function(e) {
			    self.wrapper.data("sc:lastEvent", "click");	
			    self.icon.trigger("click");
		    });
			
			
			//here
	        this.wrapper.bind("click", function() {
	            self.wrapper.data("sc:lastEvent", "click");								
	        });
	
	        this.input.bind("keydown", function(e) {
	            if (9 == e.keyCode) {
		            e.preventDefault();
		        }
	        });
	
	        this.wrapper.bind("keyup", function(e) {
		        var k = e.keyCode;
		        for (key in $sc.KEY) {
		            if ($sc.KEY[key] == k) {
			            return;	
			        }
		        }
	            self.wrapper.data("sc:lastEvent", "key");	
				//$sc.log("Last evt is key");
	        });	
	
	        this.input.bind("click", function() {
	            self.wrapper.data("sc:lastEvent", "click");		
            });
	
	        this.icon.bind("click", function(e) {
	            if (!self.wrapper.data("sc:positionY"))	{
		            self.wrapper.data("sc:positionY", e.pageY);	    	
		        }
	        });
	
	        this.input.bind("click", function(e) {
	            if (!self.wrapper.data("sc:positionY"))	{
		            self.wrapper.data("sc:positionY", e.pageY);	    	
		        }								 
	        });
	

	        this.wrapper.bind("click", function(e) {
	            if (!self.wrapper.data("sc:positionY"))	{
		            self.wrapper.data("sc:positionY", e.pageY);	 
		        }									   
	        });				
			
			this.notify("initEvents");
	    },
	
	
	    getTextValue: function() {
            return this.__getValue("input");
	    },
	
	    getCurrentTextValue: function() {
            return this.__getCurrentValue("input");
	    },
	
	    getHiddenValue: function() {
            return this.__getValue("hidden");
	    },
	
	    getCurrentHiddenValue: function() {	    
	        return this.__getCurrentValue("hidden");
	    },
	
	    __getValue: function(prop) {
	        prop = this[prop];
	        if (!this.multiple)
	            return $.trim(prop.val());
		
	        var tmpVals = prop.val().split(this.config.separator);
	        var vals = [];
	    
	        for (var i = 0, len = tmpVals.length; i < len; ++i) {
	            vals.push($.trim(tmpVals[i]));
	        }	
	    
	        vals = $sc.normalizeArray(vals);
	    
	        return vals;
	    },
	
	    __getCurrentValue: function(prop) {
	        prop = this[prop];
	        if (!this.multiple)
	            return $.trim(prop.val());
		 
            return $.trim(prop.val().split(this.config.separator).pop());		 
	    },
	
	    //icon click event listener
	    iconClick: function() {
	        if (this.listVisible()) { 
	            this.hideList();
			    this.input.blur();
		    }
	        else {			
	            this.showList();
			    this.input.focus();
	            if (this.input.val().length) {
		            this.selection(this.input.get(0), 0, this.input.val().length);    	
		        }			
		    }          
	    },
	
	    //returns true when dropdown list is visible
	    listVisible: function() {
	        return this.listWrapper.hasClass("visible");
	    },
	
	    //shows dropdown list
	    showList: function() {
	        if (!this.listItems.filter(".visible").length)
	            return;

	        this.listWrapper.removeClass("invisible").
	        addClass("visible");
	        this.wrapper.css("zIndex", "99999");
	        this.listWrapper.css("zIndex", "99999");
	        this.setListHeight();
		
		    var listHeight = this.listWrapper.height();
		    var inputHeight = this.wrapper.height();
		
		    var bottomPos = parseInt(this.wrapper.data("sc:positionY")) + inputHeight + listHeight;
		    var maxShown = $(window).height() + $(document).scrollTop();
		    if (bottomPos > maxShown) {
		        this.setDropUp(true); 
		    }
		    else {
		        this.setDropUp(false);	
		    }
		
		    if ("" == $.trim(this.input.val())) {
	            this.highlightFirst();
	            this.listWrapper.scrollTop(0);
			}
			else {
			    this.highlightSelected();	
			}
	        this.notify("showList");
	    },
	
	    //hides dropdown list
	    hideList: function() {
	        if (this.listWrapper.hasClass("invisible"))
	            return;
	        this.listWrapper.removeClass("visible").
	        addClass("invisible");
	        this.wrapper.css("zIndex", "0");
	        this.listWrapper.css("zIndex", "99999");	
	    
	        this.notify("hideList");
	    },
	
	    //returns sum of all visible items height
	    getListItemsHeight: function() {
	       
			var itemHeight = this.singleItemHeight;
	        return itemHeight * this.liLen();
	    },
	
	    //changes list wrapper's overflow from hidden to scroll and vice versa (depending on list items height))
	    setOverflow: function() {
		    var maxHeight = this.getListMaxHeight();
		    
	        if (this.getListItemsHeight() > maxHeight)
	            this.listWrapper.css(this.overflowCSS, "scroll");
	        else
	            this.listWrapper.css(this.overflowCSS, "hidden");	
	    },
	
	    //highlights active item of the dropdown list
	    highlight: function(activeItem) {
	        if (($sc.KEY.DOWN == this.lastKey) || ($sc.KEY.UP == this.lastKey))
	            return;
		
	        this.listItems.removeClass("active");   
	        $(activeItem).addClass("active");
	    },
	

	
	    //sets text and hidden inputs value
	    setComboValue: function(val, pop, hideList) {
	        var oldVal = this.input.val();
	    
	        var v = "";
	        if (this.multiple) {
	            v = this.getTextValue();
		        if (pop) 
		            v.pop();
		        v.push($.trim(val));
		        v = $sc.normalizeArray(v);
		        v = v.join(this.config.separator) + this.config.separator;   
		 
	        } else {
	            v = $.trim(val);
	        }
	        this.input.val(v);
	        this.setHiddenValue(val);
	        this.filter();
	        if (hideList)
	            this.hideList();
	        this.input.removeClass("empty");

	    
	        if (this.multiple)
	            this.input.focus();
		
	        if (this.input.val() != oldVal)
	            this.notify("textChange");	
				
	    },
	
	
	
	    //sets hidden inputs value
	    //takes text input's value as a param
	    setHiddenValue: function(val) {
	        var set = false;
	        val = $.trim(val);
	        var oldVal = this.hidden.val();
	    	    
	        if (!this.multiple) {
	            for (var i = 0, len = this.options.length; i < len; ++i){
		            if (val == this.options.eq(i).text()) {
		                this.hidden.val(this.options.eq(i).val());
			            set = true;
			            break;
		            }
		        }
	         }
	        else {
	            var comboVals = this.getTextValue();
		        var hiddenVals = [];
		        for (var i = 0, len = comboVals.length; i < len; ++i) {
		            for (var j = 0, len1 = this.options.length; j < len1; ++j) {
		                if (comboVals[i] == this.options.eq(j).text()) {
			                hiddenVals.push(this.options.eq(j).val());
			            }      
		            }
		        }
		
		        if (hiddenVals.length) {
		            set = true;
		        this.hidden.val(hiddenVals.join(this.config.separator));
		    }
	     }
	    
	    if (!set) {
	        this.hidden.val(this.config.initialHiddenValue);
	    }
	    
	    if (oldVal != this.hidden.val())
	        this.notify("change");
		
	    this.selectbox.val(this.hidden.val());
		this.selectbox.trigger("change");
	},
	
	
	    listItemClick: function(item) {
	        this.setComboValue(item.text(), true, true);
	        this.inputFocus();
	    },
	
	    //adds / removes items to / from the dropdown list depending on combo's current value
	    filter: function() {
		    if ("yes" == this.wrapper.data("sc:optionsChanged")) {
		        var self = this;
		        this.listItems.remove();
                this.options = this.selectbox.children().filter("option");
	            this.options.each(function() {
	                var optionText = $.trim($(this).text());
	                $("<li />").
	                appendTo(self.list).
	                text(optionText).
	                addClass("visible");
	    
	            }); 
	
	            this.listItems = this.list.children();
	
	            this.listItems.bind("mouseover", function(e) {
	                self.highlight(e.target);
	            });
	    
	            this.listItems.bind("click", function(e) {
	                self.listItemClick($(e.target));
	            });
			
			    self.wrapper.data("sc:optionsChanged", "");
		    }
			
	        var comboValue = this.input.val();
	        var self = this;

	        this.listItems.each(function() {
	            var $this = $(this);
	            var itemValue = $this.text();
		        if (self.filterFn.call(self, self.getCurrentTextValue(), itemValue, self.getTextValue())) {
		           $this.removeClass("invisible").
		           addClass("visible");
		        } else {
		            $this.removeClass("visible").
		            addClass("invisible");
		        }
	        });
	     
	        this.setOverflow();
	        this.setListHeight();
	    },
	
	//default dropdown list filtering function
	filterFn: function(currentComboValue, itemValue, allComboValues) {
		if ("click" == this.wrapper.data("sc:lastEvent")) {
		    return true;	
		}
		//alert(currentComboValue.toSource());
	    if (!this.multiple) {
	        return itemValue.toLowerCase().indexOf(currentComboValue.toLowerCase()) == 0;
	    }
	    else {
	        //exclude values that are already selected

		for (var i = 0, len = allComboValues.length; i < len; ++i) {
		    if (itemValue == allComboValues[i]) {
		        return false;
		    }
		}
		
		return itemValue.toLowerCase().search(currentComboValue.toLowerCase()) == 0;
	    }
	},
	
	//just returns integer value of list wrapper's max-height property
	getListMaxHeight: function() {
			
		var result = parseInt(this.listWrapper.css("maxHeight"), 10);
		if (isNaN(result)) {
		    result = this.singleItemHeight * 10;	
		}
		
		return result;
	},
	
	//corrects list wrapper's height depending on list items height
	setListHeight: function() {
	
	    var liHeight = this.getListItemsHeight();
		
	    var maxHeight = this.getListMaxHeight();
		
	
	    var listHeight = this.listWrapper.height();
	    if (liHeight < listHeight) {
	        this.listWrapper.height(liHeight); 
			
			return liHeight;
	    }
	    else if (liHeight > listHeight) {
	        this.listWrapper.height(Math.min(maxHeight, liHeight));
			
			return Math.min(maxHeight, liHeight);
	    }
				
	},
	
	//returns active (hovered) element of the dropdown list
	getActive: function() {
	    return this.listItems.filter(".active");
	},
	
	keyUp: function(e) {
	    this.lastKey = e.keyCode;
	    var k = $sc.KEY;
	    switch (e.keyCode) {
	        case k.RETURN:
			case k.TAB:
			//this.input.focus();
		    this.setComboValue(this.getActive().text(), true, true);
		    if (!this.multiple)
		        //this.input.blur(); //
		    	
		break;
		case k.DOWN:
		    this.highlightNext();
		break;
		case k.UP:
		    this.highlightPrev();
		break;
		case k.ESC:
		    this.hideList();
		break;
		default:
		    this.inputChanged();
		break;
	    }
	    
	    
	},
	
	//returns number of currently visible list items
	liLen: function() {
	    return this.listItems.filter(".visible").length;
	},
	
	//triggered when the user changes combo value by typing
	inputChanged: function() {
	    this.filter();

	    if (this.liLen()) {
	        this.showList();
		this.setOverflow();
		this.setListHeight();
	    } else {
	        this.hideList();
	    }
	    
	    this.setHiddenValue(this.input.val());
	    this.notify("textChange");
	    
	},
	
	//highlights first item of the dropdown list
	highlightFirst: function() {
	    this.listItems.removeClass("active").filter(".visible:eq(0)").addClass("active");
	    this.autoFill();
	},
	
	highlightSelected: function() {
        this.listItems.removeClass("active");
		var val = $.trim(this.input.val());
		
		try {
			this.listItems.each(function() {
			    var $this = $(this);
				if ($this.text() == val) {
				    $this.addClass("active");	
					self.listWrapper.scrollTop(0);
					self.scrollDown();
					
				}
			});
			//no match, must be partial input string; highlight first item
			this.highlightFirst();
			
		} catch (e) {}
	},
	
	//highlights item of the dropdown list next to the currently active item
	highlightNext: function() {
	    var $next = this.getActive().next();
	    
	    while ($next.hasClass("invisible") && $next.length) {
	        $next = $next.next();
	    }
	    
	    if ($next.length) {
	        this.listItems.removeClass("active");
		$next.addClass("active");
		this.scrollDown();
	    }
	},
	
	//scrolls list wrapper down when needed
	scrollDown: function() {
	    if ("scroll" != this.listWrapper.css(this.overflowCSS))
	        return;
		
            var beforeActive = this.getActiveIndex() + 1;
			/*if ($.browser.opera)
			    ++beforeActive;*/
	    
	    var minScroll = this.listItems.outerHeight() * beforeActive - this.listWrapper.height();
        
		if ($.browser.msie)
            minScroll += beforeActive;
	    
	    if (this.listWrapper.scrollTop() < minScroll)
	        this.listWrapper.scrollTop(minScroll);
	},
	
	
	//highlights list item before currently active item
	highlightPrev: function() {
	    var $prev = this.getActive().prev();
	    
	    while ($prev.length && $prev.hasClass("invisible"))
	        $prev = $prev.prev();
		
            if ($prev.length) {
	        this.getActive().removeClass("active");
		$prev.addClass("active");
		this.scrollUp();
	    }
	},
	
	//returns index of currently active list item
	getActiveIndex: function() {
	    return $.inArray(this.getActive().get(0), this.listItems.filter(".visible").get());
	},
	
	
	//scrolls list wrapper up when needed
	scrollUp: function() {
	    
	    if ("scroll" != this.listWrapper.css(this.overflowCSS))
	        return;
		
	    var maxScroll = this.getActiveIndex() * this.listItems.outerHeight();
	    
	    if (this.listWrapper.scrollTop() > maxScroll) {
	        this.listWrapper.scrollTop(maxScroll);
	    }     
	},
	
	//emptyText stuff
	applyEmptyText: function() {
	    if (!this.config.emptyText.length)
	        return;
		
	    var self = this;	
	    this.input.bind("focus", function() {
                self.inputFocus();
	    }).
	    bind("blur", function() {
                self.inputBlur();
	    });	
	    
	    if ("" == this.input.val()) {
	        this.input.addClass("empty").val(this.config.emptyText);
	    }
	},
	
	inputFocus: function() {
	    if (this.input.hasClass("empty")) {
		this.input.removeClass("empty").
		val("");
        }
	},
	
	inputBlur: function() {
	    if ("" == this.input.val()) {
		this.input.addClass("empty").
		val(this.config.emptyText);
	    }
	    
	},
	
	//triggerSelected stuff
	triggerSelected: function() {
	    if (!this.config.triggerSelected)
	        return;
		
	    var self = this;	
		try {
	    this.options.each(function() {
	        if ($(this).attr("selected")) {
		        self.setComboValue($(this).text(), false, true);
				throw new Error();
		    }
	    });	
		} catch (e) {
		    return;	
		}
		
        self.setComboValue(this.options.eq(0).text(), false, false);
	},
	
	//autofill stuff
	autoFill: function() {
	    if (!this.config.autoFill || ($sc.KEY.BACKSPACE == this.lastKey) || this.multiple)
	        return;
		    	
	    var curVal = this.input.val();
	    var newVal = this.getActive().text();
	    this.input.val(newVal);
	    this.selection(this.input.get(0), curVal.length, newVal.length);
	   
	    	
	},
	
	//provides selection for autofilling
	//borrowed from jCarousel
	selection: function(field, start, end) {
	    if( field.createTextRange ){
		var selRange = field.createTextRange();
		selRange.collapse(true);
		selRange.moveStart("character", start);
		selRange.moveEnd("character", end);
		selRange.select();
	    } else if( field.setSelectionRange ){
		field.setSelectionRange(start, end);
	    } else {
		if( field.selectionStart ){
			field.selectionStart = start;
			field.selectionEnd = end;
		}
	    }
	   // field.focus();	
	},
	
	
	//for internal use
	updateDrop: function() {
	    if (this.config.dropUp)
	        this.listWrapper.addClass("list-wrapper-up");
	    else 
	        this.listWrapper.removeClass("list-wrapper-up");		
	},
	
	//updates dropUp config option
	setDropUp: function(drop) {
        this.config.dropUp = drop;   
	    this.updateDrop(); 
	},
	
	notify: function(evt) {
	    if (!$.isFunction(this.config[evt + "Callback"]))
	        return;
		
	    this.config[evt + "Callback"].call(this);	
	}
    });
    
    $sc.extend({
        //key codes
	//from jCarousel
        KEY: {
	    UP: 38,
	    DOWN: 40,
	    DEL: 46,
	    TAB: 9,
	    RETURN: 13,
	    ESC: 27,
	    COMMA: 188,
	    PAGEUP: 33,
	    PAGEDOWN: 34,
	    BACKSPACE: 8	
	},
	
	//for debugging
	log: function(msg) {
	    var $log = $("#log");
	    $log.html($log.html() + msg + "<br />");
	},
	
    createSelectbox: function(config) {
	    var $selectbox = $("<select />").
	    appendTo(config.container).
	    attr({name: config.name, id: config.id, size: "1"});
	    
	    if (config.multiple)
	        $selectbox.attr("multiple", true);
	    
	    var data = config.data;
	    var selected = false;
	    
	    for (var i = 0, len = data.length; i < len; ++i) {
	        selected = data[i].selected || false;
	        $("<option />").appendTo($selectbox).
			attr("value", data[i][config.key]).
			text(data[i][config.value]).
			attr("selected", selected);
	    }
	    
	    return $selectbox.get(0);
	},
	
	create: function(config) {
            var defaults = {
	        //the name of the selectbox
	        name: "",
		//the ID of the selectbox
		id: "",
		//data for the options
		/*
		This is an array of objects. The objects should contain the following properties:
		(string)value - the value of the <option>
		(string) text - text of the <option>
		(bool) selected - if set to true, "selected" attribute of this <option> will be set to true
		*/
		data: [],
		
		//if true, combo with multiple choice will be created
		multiple: false,
		
		//key json name for key/value pair
		key: "value",
		
		//value json for key/value pair
		value: "text",		
		
		//an element that will contain the widget
		container: $(document),
		//url that contains JSON object for options data
		//format is the same as in data config option
		//if passed, "data" config option will be ignored
		url: "",
		//params for AJAX request
		ajaxData: {}
	    };
	    config = $.extend({}, defaults, config || {});
	    
            if (config.url) {
	        return $.getJSON(config.url, config.ajaxData, function(data) {
		    delete config.url;
		    delete config.ajaxData;
		    config.data = data;
		    return $sc.create(config);
		});
	    }
	    
	    config.container = $(config.container);
	    
            var selectbox = $sc.createSelectbox(config);
	    return new $sc(selectbox, config);
	    
	},
	
	deactivate: function($select) {
	    $select = $($select);
		$select.each(function() {
		    if ("SELECT" != this.tagName.toUpperCase()) {
			    return;	
			}
			var $this = $(this);
			if (!$this.parent().is(".combo")) {
			    return;	
			}
			//$this.parent().find("input[type='text']").attr("disabled", true);
			
		});
	},
	
	activate: function($select) {
	    $select = $($select);
		$select.each(function() {
		    if ("SELECT" != this.tagName.toUpperCase()) {
			    return;	
			}
			var $this = $(this);
			if (!$this.parent().is(".combo")) {
			    return;	
			}
			$this.parent().find("input[type='text']").attr("disabled", false);
		});		
	},
	
	changeOptions: function($select) {
		$select = $($select);
        $select.each(function() {
		    if ("SELECT" != this.tagName.toUpperCase()) {
			    return;	
			}
			
			var $this = $(this);
			var $wrapper  = $this.parent();
			var $input = $wrapper.find("input[type='text']");
			var $listWrapper = $wrapper.find("ul").parent();
			
	        $listWrapper.removeClass("visible").
	        addClass("invisible");
	        $wrapper.css("zIndex", "0");
	        $listWrapper.css("zIndex", "99999");			
			
			$input.val("");
			$wrapper.data("sc:optionsChanged", "yes");
			var $selectbox = $this;
		    $selectbox.parent().find("input[type='text']").val($selectbox.find("option:eq(0)").text());
		    $selectbox.parent().data("sc:lastEvent", "click");
		    $selectbox.find("option:eq(0)").attr('selected','selected');
		});
	},
	
	normalizeArray: function(arr) {
	    var result = [];
	    for (var i = 0, len =arr.length; i < len; ++i) {
	        if ("" == arr[i])
		    continue;
		    
		result.push(arr[i]);    
	    }
	    
	    return result;
	}
    });
})(jQuery); 


/*
 * FancyBox - simple and fancy jQuery plugin
 * Examples and documentation at: http://fancy.klade.lv/
 * Version: 1.2.1 (13/03/2009)
 * Copyright (c) 2009 Janis Skarnelis
 * Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
 * Requires: jQuery v1.3+
*/
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}(';(7($){$.b.2Q=7(){u B.2t(7(){9 1J=$(B).n(\'2Z\');5(1J.1c(/^3w\\(["\']?(.*\\.2p)["\']?\\)$/i)){1J=3t.$1;$(B).n({\'2Z\':\'45\',\'2o\':"3W:3R.4m.4d(3h=F, 3T="+($(B).n(\'41\')==\'2J-3Z\'?\'4c\':\'3N\')+", Q=\'"+1J+"\')"}).2t(7(){9 1b=$(B).n(\'1b\');5(1b!=\'2e\'&&1b!=\'2n\')$(B).n(\'1b\',\'2n\')})}})};9 A,4,16=D,s=1t 1o,1w,1v=1,1y=/\\.(3A|3Y|2p|3c|3d)(.*)?$/i;9 P=($.2q.3K&&2f($.2q.3z.2k(0,1))<8);$.b.c=7(Y){Y=$.3x({},$.b.c.2R,Y);9 2s=B;7 2h(){A=B;4=Y;2r();u D};7 2r(){5(16)u;5($.1O(4.2c)){4.2c()}4.j=[];4.h=0;5(Y.j.N>0){4.j=Y.j}t{9 O={};5(!A.1H||A.1H==\'\'){9 O={d:A.d,X:A.X};5($(A).1G("1m:1D").N){O.1a=$(A).1G("1m:1D")}4.j.2j(O)}t{9 Z=$(2s).2o("a[1H="+A.1H+"]");9 O={};3C(9 i=0;i<Z.N;i++){O={d:Z[i].d,X:Z[i].X};5($(Z[i]).1G("1m:1D").N){O.1a=$(Z[i]).1G("1m:1D")}4.j.2j(O)}3F(4.j[4.h].d!=A.d){4.h++}}}5(4.23){5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'3s\')}$("#1i").n(\'25\',4.2U).J()}1d()};7 1d(){$("#1f, #1e, #V, #G").S();9 d=4.j[4.h].d;5(d.1c(/#/)){9 U=11.3r.d.3f(\'#\')[0];U=d.3g(U,\'\');U=U.2k(U.2l(\'#\'));1k(\'<6 l="3e">\'+$(U).o()+\'</6>\',4.1I,4.1x)}t 5(d.1c(1y)){s=1t 1o;s.Q=d;5(s.3a){1K()}t{$.b.c.34();$(s).x().14(\'3b\',7(){$(".I").S();1K()})}}t 5(d.1c("17")||A.3j.2l("17")>=0){1k(\'<17 l="35" 3q="$.b.c.38()" 3o="3n\'+C.T(C.3l()*3m)+\'" 2K="0" 3E="0" Q="\'+d+\'"></17>\',4.1I,4.1x)}t{$.4p(d,7(2m){1k(\'<6 l="3L">\'+2m+\'</6>\',4.1I,4.1x)})}};7 1K(){5(4.30){9 w=$.b.c.1n();9 r=C.1M(C.1M(w[0]-36,s.g)/s.g,C.1M(w[1]-4b,s.f)/s.f);9 g=C.T(r*s.g);9 f=C.T(r*s.f)}t{9 g=s.g;9 f=s.f}1k(\'<1m 48="" l="49" Q="\'+s.Q+\'" />\',g,f)};7 2F(){5((4.j.N-1)>4.h){9 d=4.j[4.h+1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}5(4.h>0){9 d=4.j[4.h-1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}};7 1k(1j,g,f){16=F;9 L=4.2Y;5(P){$("#q")[0].1E.2u("f");$("#q")[0].1E.2u("g")}5(L>0){g+=L*2;f+=L*2;$("#q").n({\'v\':L+\'z\',\'2E\':L+\'z\',\'2i\':L+\'z\',\'y\':L+\'z\',\'g\':\'2B\',\'f\':\'2B\'});5(P){$("#q")[0].1E.2C(\'f\',\'(B.2D.4j - 20)\');$("#q")[0].1E.2C(\'g\',\'(B.2D.3S - 20)\')}}t{$("#q").n({\'v\':0,\'2E\':0,\'2i\':0,\'y\':0,\'g\':\'2z%\',\'f\':\'2z%\'})}5($("#k").1u(":19")&&g==$("#k").g()&&f==$("#k").f()){$("#q").1Z("2N",7(){$("#q").1C().1F($(1j)).21("1s",7(){1g()})});u}9 w=$.b.c.1n();9 2v=(g+36)>w[0]?w[2]:(w[2]+C.T((w[0]-g-36)/2));9 2w=(f+1z)>w[1]?w[3]:(w[3]+C.T((w[1]-f-1z)/2));9 K={\'y\':2v,\'v\':2w,\'g\':g+\'z\',\'f\':f+\'z\'};5($("#k").1u(":19")){$("#q").1Z("1s",7(){$("#q").1C();$("#k").24(K,4.2X,4.2T,7(){$("#q").1F($(1j)).21("1s",7(){1g()})})})}t{5(4.1W>0&&4.j[4.h].1a!==1L){$("#q").1C().1F($(1j));9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);$("#k").n({\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()});5(4.1X){K.25=\'J\'}$("#k").24(K,4.1W,4.2W,7(){1g()})}t{$("#q").S().1C().1F($(1j)).J();$("#k").n(K).21("1s",7(){1g()})}}};7 2y(){5(4.h!=0){$("#1e, #2O").x().14("R",7(e){e.2x();4.h--;1d();u D});$("#1e").J()}5(4.h!=(4.j.N-1)){$("#1f, #2M").x().14("R",7(e){e.2x();4.h++;1d();u D});$("#1f").J()}};7 1g(){2y();2F();$(W).1B(7(e){5(e.29==27){$.b.c.1l();$(W).x("1B")}t 5(e.29==37&&4.h!=0){4.h--;1d();$(W).x("1B")}t 5(e.29==39&&4.h!=(4.j.N-1)){4.h++;1d();$(W).x("1B")}});5(4.1r){$(11).14("1N 1T",$.b.c.2g)}t{$("6#k").n("1b","2e")}5(4.2b){$("#22").R($.b.c.1l)}$("#1i, #V").14("R",$.b.c.1l);$("#V").J();5(4.j[4.h].X!==1L&&4.j[4.h].X.N>0){$(\'#G 6\').o(4.j[4.h].X);$(\'#G\').J()}5(4.23&&P){$(\'1U, 1Q, 1P\',$(\'#q\')).n(\'1S\',\'19\')}5($.1O(4.2a)){4.2a()}16=D};u B.x(\'R\').R(2h)};$.b.c.2g=7(){9 m=$.b.c.1n();$("#k").n(\'y\',(($("#k").g()+36)>m[0]?m[2]:m[2]+C.T((m[0]-$("#k").g()-36)/2)));$("#k").n(\'v\',(($("#k").f()+1z)>m[1]?m[3]:m[3]+C.T((m[1]-$("#k").f()-1z)/2)))};$.b.c.1h=7(H,2A){u 2f($.3I(H.3u?H[0]:H,2A,F))||0};$.b.c.1R=7(H){9 m=H.4g();m.v+=$.b.c.1h(H,\'3k\');m.v+=$.b.c.1h(H,\'3J\');m.y+=$.b.c.1h(H,\'3H\');m.y+=$.b.c.1h(H,\'3D\');u m};$.b.c.38=7(){$(".I").S();$("#35").J()};$.b.c.1n=7(){u[$(11).g(),$(11).f(),$(W).3i(),$(W).3p()]};$.b.c.2G=7(){5(!$("#I").1u(\':19\')){33(1w);u}$("#I > 6").n(\'v\',(1v*-40)+\'z\');1v=(1v+1)%12};$.b.c.34=7(){33(1w);9 m=$.b.c.1n();$("#I").n({\'y\':((m[0]-40)/2+m[2]),\'v\':((m[1]-40)/2+m[3])}).J();$("#I").14(\'R\',$.b.c.1l);1w=3Q($.b.c.2G,3X)};$.b.c.1l=7(){16=F;$(s).x();$("#1i, #V").x();5(4.2b){$("#22").x()}$("#V, .I, #1e, #1f, #G").S();5(4.1r){$(11).x("1N 1T")}1q=7(){$("#1i, #k").S();5(4.1r){$(11).x("1N 1T")}5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'19\')}5($.1O(4.1V)){4.1V()}16=D};5($("#k").1u(":19")!==D){5(4.26>0&&4.j[4.h].1a!==1L){9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);9 K={\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()};5(4.1X){K.25=\'S\'}$("#k").31(D,F).24(K,4.26,4.2S,1q)}t{$("#k").31(D,F).1Z("2N",1q)}}t{1q()}u D};$.b.c.2V=7(){9 o=\'\';o+=\'<6 l="1i"></6>\';o+=\'<6 l="22">\';o+=\'<6 p="I" l="I"><6></6></6>\';o+=\'<6 l="k">\';o+=\'<6 l="2I">\';o+=\'<6 l="V"></6>\';o+=\'<6 l="E"><6 p="E 44"></6><6 p="E 43"></6><6 p="E 42"></6><6 p="E 3V"></6><6 p="E 3U"></6><6 p="E 3O"></6><6 p="E 3M"></6><6 p="E 3P"></6></6>\';o+=\'<a d="2P:;" l="1e"><1p p="1Y" l="2O"></1p></a><a d="2P:;" l="1f"><1p p="1Y" l="2M"></1p></a>\';o+=\'<6 l="q"></6>\';o+=\'<6 l="G"></6>\';o+=\'</6>\';o+=\'</6>\';o+=\'</6>\';$(o).2H("46");$(\'<32 4i="0" 4h="0" 4k="0"><2L><13 p="G" l="4l"></13><13 p="G" l="4o"><6></6></13><13 p="G" l="4n"></13></2L></32>\').2H(\'#G\');5(P){$("#2I").47(\'<17 p="4a" 4e="2J" 2K="0"></17>\');$("#V, .E, .G, .1Y").2Q()}};$.b.c.2R={2Y:10,30:F,1X:D,1W:0,26:0,2X:3G,2W:\'28\',2S:\'28\',2T:\'28\',1I:3B,1x:3v,23:F,2U:0.3,2b:F,1r:F,j:[],2c:2d,2a:2d,1V:2d};$(W).3y(7(){$.b.c.2V()})})(4f);',62,274,'||||opts|if|div|function||var||fn|fancybox|href||height|width|itemCurrent||itemArray|fancy_outer|id|pos|css|html|class|fancy_content||imagePreloader|else|return|top||unbind|left|px|elem|this|Math|false|fancy_bg|true|fancy_title|el|fancy_loading|show|itemOpts|pad|orig_item|length|item|isIE|src|click|hide|round|target|fancy_close|document|title|settings|subGroup||window||td|bind|orig_pos|busy|iframe||visible|orig|position|match|_change_item|fancy_left|fancy_right|_finish|getNumeric|fancy_overlay|value|_set_content|close|img|getViewport|Image|span|__cleanup|centerOnScroll|normal|new|is|loadingFrame|loadingTimer|frameHeight|imageRegExp|50|objNext|keydown|empty|first|style|append|children|rel|frameWidth|image|_proceed_image|undefined|min|resize|isFunction|select|object|getPosition|visibility|scroll|embed|callbackOnClose|zoomSpeedIn|zoomOpacity|fancy_ico|fadeOut||fadeIn|fancy_wrap|overlayShow|animate|opacity|zoomSpeedOut||swing|keyCode|callbackOnShow|hideOnContentClick|callbackOnStart|null|absolute|parseInt|scrollBox|_initialize|bottom|push|substr|indexOf|data|relative|filter|png|browser|_start|matchedGroup|each|removeExpression|itemLeft|itemTop|stopPropagation|_set_navigation|100|prop|auto|setExpression|parentNode|right|_preload_neighbor_images|animateLoading|appendTo|fancy_inner|no|frameborder|tr|fancy_right_ico|fast|fancy_left_ico|javascript|fixPNG|defaults|easingOut|easingChange|overlayOpacity|build|easingIn|zoomSpeedChange|padding|backgroundImage|imageScale|stop|table|clearInterval|showLoading|fancy_frame|||showIframe||complete|load|bmp|jpeg|fancy_div|split|replace|enabled|scrollLeft|className|paddingTop|random|1000|fancy_iframe|name|scrollTop|onload|location|hidden|RegExp|jquery|355|url|extend|ready|version|jpg|425|for|borderLeftWidth|hspace|while|300|paddingLeft|curCSS|borderTopWidth|msie|fancy_ajax|fancy_bg_w|scale|fancy_bg_sw|fancy_bg_nw|setInterval|DXImageTransform|clientWidth|sizingMethod|fancy_bg_s|fancy_bg_se|progid|66|gif|repeat||backgroundRepeat|fancy_bg_e|fancy_bg_ne|fancy_bg_n|none|body|prepend|alt|fancy_img|fancy_bigIframe|60|crop|AlphaImageLoader|scrolling|jQuery|offset|cellpadding|cellspacing|clientHeight|border|fancy_title_left|Microsoft|fancy_title_right|fancy_title_main|get'.split('|'),0,{}))


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.08
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica 65 Medium","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 2 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-15 -343 338 80","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"\"":{"d":"93,-257r37,0r0,101r-37,0r0,-101xm30,-257r37,0r0,101r-37,0r0,-101","w":159},"#":{"d":"85,-149r-6,46r40,0r6,-46r-40,0xm178,-76r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r0,-27r38,0r7,-46r-34,0r0,-27r37,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r31,0r0,27r-35,0r-6,46r30,0r0,27"},"$":{"d":"93,-231v-13,0,-23,3,-30,8v-7,6,-10,15,-10,28v0,5,1,10,3,14v3,4,6,8,9,11v4,3,8,5,13,7v5,2,10,3,15,4r0,-72xm47,-78v0,16,3,28,11,37v7,9,19,14,35,15r0,-87v-10,-3,-19,-6,-29,-10v-10,-4,-19,-8,-26,-14v-8,-6,-14,-14,-19,-22v-5,-9,-7,-20,-7,-34v0,-11,2,-21,6,-30v5,-9,11,-16,18,-22v8,-6,16,-10,26,-13v10,-4,20,-5,31,-5r0,-28r16,0r0,28v11,0,21,1,30,4v10,3,18,7,25,13v7,6,13,13,17,22v4,9,7,19,7,31r-41,0v-1,-12,-4,-22,-10,-28v-6,-7,-15,-10,-28,-10r0,76v11,3,21,6,31,10v11,4,20,9,28,15v8,6,14,13,19,22v5,9,7,20,7,33v0,14,-2,25,-7,35v-4,10,-10,18,-18,25v-7,7,-16,12,-27,15v-10,4,-21,6,-33,6r0,28r-16,0r0,-28v-13,0,-25,-2,-35,-6v-11,-4,-20,-9,-28,-16v-8,-7,-14,-16,-18,-26v-4,-11,-6,-23,-6,-36r41,0xm109,-26v13,-1,23,-5,32,-12v8,-6,12,-17,12,-31v0,-7,-1,-12,-4,-17v-2,-5,-6,-8,-10,-12v-4,-3,-9,-5,-14,-7v-5,-2,-11,-4,-16,-5r0,84"},"%":{"d":"62,-185v0,6,0,13,1,19v1,5,3,10,5,15v2,4,5,8,8,10v4,3,8,4,13,4v5,0,10,-1,13,-4v4,-2,7,-6,9,-10v2,-5,4,-10,5,-15v1,-6,1,-13,1,-19v0,-6,0,-12,-1,-18v-1,-6,-2,-11,-4,-16v-3,-4,-5,-8,-9,-11v-4,-2,-8,-4,-14,-4v-5,0,-10,2,-13,4v-4,3,-7,7,-9,11v-2,5,-3,10,-4,16v-1,6,-1,12,-1,18xm90,-114v-11,0,-20,-2,-28,-6v-8,-3,-14,-9,-19,-15v-5,-6,-8,-14,-10,-23v-2,-8,-3,-18,-3,-27v0,-10,1,-19,3,-28v2,-9,6,-16,11,-23v5,-6,11,-11,18,-15v8,-4,17,-6,28,-6v10,0,19,2,27,6v7,4,14,9,19,15v4,7,8,14,10,23v3,9,4,18,4,28v0,9,-1,19,-3,27v-3,9,-6,17,-11,23v-5,6,-11,12,-19,15v-7,4,-17,6,-27,6xm243,-67v0,7,0,13,1,19v1,6,3,11,5,16v2,4,5,7,8,10v4,2,8,4,13,4v5,0,9,-2,13,-4v4,-3,6,-6,9,-10v2,-5,3,-10,4,-16v2,-6,2,-12,2,-19v0,-6,0,-11,-1,-17v-1,-6,-3,-11,-5,-16v-2,-4,-5,-8,-8,-11v-4,-2,-8,-4,-14,-4v-6,0,-10,2,-14,4v-3,3,-6,7,-8,11v-2,5,-4,10,-4,16v-1,6,-1,11,-1,17xm270,5v-10,0,-20,-2,-27,-6v-8,-4,-14,-9,-19,-15v-5,-7,-8,-14,-11,-23v-2,-9,-3,-18,-3,-28v0,-9,1,-18,4,-27v2,-9,6,-17,10,-23v5,-6,12,-12,19,-15v8,-4,17,-6,27,-6v11,0,20,2,28,6v7,3,13,9,18,15v5,6,9,14,11,23v2,9,3,18,3,27v0,10,-1,19,-3,28v-2,9,-5,16,-10,23v-5,6,-11,11,-19,15v-8,4,-17,6,-28,6xm234,-261r27,0r-139,270r-28,0","w":360},"&":{"d":"165,-29v-10,12,-21,21,-32,26v-12,5,-25,8,-40,8v-12,0,-23,-2,-33,-5v-10,-4,-19,-9,-26,-15v-7,-7,-13,-15,-17,-24v-3,-10,-5,-20,-5,-32v0,-9,1,-18,5,-25v3,-8,7,-14,13,-20v5,-7,12,-12,19,-17v7,-5,14,-9,22,-13v-5,-6,-5,-6,-10,-13v-3,-4,-6,-8,-8,-13v-3,-4,-5,-9,-6,-14v-2,-5,-2,-10,-2,-16v0,-9,1,-18,5,-25v3,-8,7,-14,13,-19v6,-6,12,-10,20,-13v8,-3,16,-4,25,-4v8,0,16,1,24,4v7,2,14,6,20,11v6,5,11,12,14,19v4,8,6,17,6,27v0,8,-2,15,-4,22v-3,6,-6,12,-10,17v-4,6,-9,11,-15,15v-6,4,-11,8,-18,12r40,48v2,-4,3,-9,5,-14v1,-6,2,-12,3,-21r36,0v-1,12,-3,23,-7,33v-3,11,-7,21,-13,30r49,60r-50,0xm92,-119v-4,3,-8,5,-12,7v-5,3,-9,6,-13,9v-4,4,-8,8,-10,13v-3,5,-4,12,-4,19v0,14,3,25,11,32v8,8,18,12,30,12v7,0,14,-1,19,-3v5,-2,10,-5,14,-8r9,-9r7,-9xm109,-233v-8,0,-14,3,-20,8v-5,5,-8,12,-8,21v0,4,1,8,3,12v1,4,3,7,5,11v3,3,5,7,8,10r8,10v4,-3,7,-6,11,-8v4,-3,7,-6,10,-9v3,-4,5,-7,6,-11v2,-4,3,-9,3,-14v0,-8,-2,-15,-7,-21v-5,-6,-11,-9,-19,-9","w":233},"'":{"d":"32,-257r36,0r0,101r-36,0r0,-101","w":100},"(":{"d":"69,69r-20,-36v-6,-12,-12,-25,-16,-39v-5,-13,-9,-27,-11,-43v-3,-15,-4,-31,-4,-48v0,-29,4,-58,13,-86v9,-28,22,-55,38,-80r34,0v-14,26,-25,52,-33,80v-8,27,-11,56,-11,86v0,30,3,59,10,86v8,28,19,54,34,80r-34,0","w":100},")":{"d":"31,-263v7,11,14,23,20,36v6,12,11,25,16,39v5,13,9,27,11,43v3,15,4,31,4,48v0,29,-4,58,-13,86v-9,28,-22,55,-38,80r-34,0v15,-26,25,-52,33,-80v8,-27,11,-56,11,-86v0,-30,-3,-59,-10,-86v-8,-28,-19,-54,-34,-80r34,0","w":100},"*":{"d":"7,-206r8,-23r39,15r0,-43r25,0r0,43r39,-15r9,23r-41,14r25,34r-19,14r-26,-36r-24,36r-20,-14r25,-34","w":133},"+":{"d":"90,-182r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0r0,-73","w":216},",":{"d":"25,-49r50,0r0,49v0,15,-5,27,-14,37v-9,11,-20,17,-35,20r0,-22v8,-2,14,-6,18,-13v4,-7,6,-14,6,-22r-25,0r0,-49","w":100},"-":{"d":"18,-117r104,0r0,39r-104,0r0,-39","w":140},"\u00ad":{"d":"18,-117r104,0r0,39r-104,0r0,-39","w":140},".":{"d":"25,-49r50,0r0,49r-50,0r0,-49","w":100},"\/":{"d":"95,-263r40,0r-104,269r-39,0","w":126},"0":{"d":"100,-257v18,0,33,4,44,12v12,9,20,19,27,32v6,13,11,27,13,42v2,16,3,31,3,45v0,14,-1,29,-3,45v-2,15,-7,29,-13,42v-7,13,-15,23,-27,32v-11,8,-26,12,-44,12v-18,0,-33,-4,-44,-12v-11,-9,-20,-19,-27,-32v-6,-13,-10,-27,-13,-42v-2,-16,-3,-31,-3,-45v0,-14,1,-29,3,-45v3,-15,7,-29,13,-42v7,-13,16,-23,27,-32v11,-8,26,-12,44,-12xm100,-29v9,0,16,-3,22,-8v6,-5,11,-12,15,-21v3,-9,6,-19,7,-31v1,-11,2,-24,2,-37v0,-13,-1,-26,-2,-37v-1,-12,-4,-22,-7,-31v-4,-9,-9,-16,-15,-21v-6,-5,-13,-8,-22,-8v-9,0,-17,3,-22,8v-6,5,-11,12,-14,21v-4,9,-6,19,-8,31v-1,11,-2,24,-2,37v0,13,1,26,2,37v2,12,4,22,8,31v3,9,8,16,14,21v5,5,13,8,22,8"},"1":{"d":"19,-210v9,0,17,-1,25,-2v8,-2,16,-4,22,-8v7,-3,13,-7,17,-13v5,-5,8,-11,10,-19r33,0r0,252r-45,0r0,-178r-62,0r0,-32"},"2":{"d":"186,0r-172,0v0,-21,5,-39,15,-55v10,-15,23,-29,40,-40r26,-18v9,-5,17,-12,25,-18v7,-7,13,-14,18,-21v5,-8,7,-16,7,-26v0,-5,0,-10,-1,-15v-1,-5,-3,-10,-6,-14v-4,-5,-8,-8,-13,-11v-6,-3,-13,-5,-22,-5v-8,0,-15,2,-20,5v-6,3,-10,8,-13,13v-4,6,-6,13,-8,20v-1,8,-2,16,-2,25r-41,0v0,-14,2,-27,5,-39v4,-11,10,-22,17,-30v7,-9,17,-16,27,-21v11,-5,23,-7,37,-7v16,0,29,2,39,8v10,5,19,11,25,19v6,7,11,16,14,25v2,9,3,17,3,25v0,10,-1,20,-4,28v-3,8,-8,15,-13,22v-5,7,-11,13,-18,19v-7,6,-13,11,-21,16v-10,8,-10,8,-21,15v-7,4,-14,9,-20,13v-6,5,-12,10,-16,15v-5,5,-8,10,-10,15r123,0r0,37"},"3":{"d":"82,-148v7,1,14,0,20,-1v7,-1,13,-3,18,-6v6,-3,10,-7,13,-13v3,-5,5,-12,5,-19v0,-11,-4,-20,-11,-26v-7,-7,-17,-10,-28,-10v-8,0,-14,2,-19,4v-5,3,-10,7,-13,12v-4,5,-6,11,-8,17v-2,6,-2,12,-2,19r-41,0v0,-13,3,-24,7,-34v4,-11,9,-20,16,-28v7,-7,16,-13,26,-18v10,-4,22,-6,34,-6v10,0,20,1,29,4v10,3,18,7,26,13v7,5,14,12,18,21v5,8,7,18,7,29v0,13,-3,24,-9,34v-5,9,-14,16,-27,20r0,1v15,3,26,10,34,21v8,12,12,26,12,42v0,12,-2,23,-7,32v-5,10,-11,18,-20,24v-8,7,-17,12,-28,16v-11,3,-22,5,-34,5v-15,0,-28,-2,-39,-6v-11,-4,-20,-10,-27,-18v-7,-8,-13,-17,-17,-28v-4,-11,-6,-23,-6,-36r41,0v0,16,4,28,12,39v8,10,20,15,36,15v13,0,25,-4,34,-12v9,-8,14,-19,14,-33v0,-10,-2,-18,-6,-24v-4,-5,-9,-10,-15,-13v-6,-3,-13,-5,-21,-5v-8,-1,-16,-1,-24,-1r0,-31"},"4":{"d":"40,-92r77,0r0,-111r-1,0xm188,-60r-32,0r0,60r-39,0r0,-60r-108,0r0,-40r108,-152r39,0r0,160r32,0r0,32"},"5":{"d":"44,-252r131,0r0,37r-100,0r-13,64r1,1v5,-7,12,-11,21,-15v8,-3,17,-5,25,-5v13,0,24,3,34,7v9,4,18,10,24,17v7,8,12,17,16,27v3,11,5,22,5,34v0,10,-2,20,-5,31v-3,10,-8,20,-15,29v-8,9,-17,16,-28,22v-11,5,-24,8,-39,8v-12,0,-24,-2,-34,-5v-11,-3,-20,-8,-28,-14v-8,-7,-14,-15,-19,-24v-4,-10,-7,-21,-7,-34r41,0v1,14,6,25,14,32v8,7,19,11,32,11v9,0,16,-2,22,-4v6,-3,11,-7,15,-12v3,-5,6,-11,8,-18v1,-7,2,-14,2,-22v0,-7,-1,-13,-3,-20v-2,-6,-5,-12,-9,-16v-3,-5,-8,-9,-15,-12v-6,-3,-13,-4,-21,-4v-9,0,-17,1,-24,5v-8,3,-13,9,-17,18r-41,0"},"6":{"d":"142,-188v-1,-11,-4,-19,-11,-25v-6,-7,-15,-10,-26,-10v-7,0,-13,2,-19,4v-5,3,-10,7,-13,11v-4,5,-7,10,-9,16v-3,6,-5,12,-6,18r-3,20r-2,18r1,0v6,-10,13,-17,23,-22v10,-5,20,-8,31,-8v13,0,24,3,34,7v10,4,18,10,25,18v7,7,12,16,16,27v3,10,5,21,5,33v0,12,-2,24,-6,34v-4,10,-10,20,-17,27v-8,8,-16,14,-27,19v-10,4,-21,6,-34,6v-18,0,-34,-3,-46,-10v-11,-7,-21,-16,-28,-28v-6,-12,-11,-26,-14,-42v-2,-16,-4,-33,-4,-52v0,-15,2,-30,5,-45v3,-16,9,-30,16,-42v8,-13,17,-23,29,-31v13,-8,28,-12,45,-12v10,0,20,2,29,5v9,3,16,8,23,14v7,6,13,13,17,22v4,8,7,17,7,28r-41,0xm103,-29v7,0,14,-2,19,-5v6,-3,10,-7,14,-11v4,-5,6,-11,8,-17v2,-6,3,-13,3,-20v0,-6,-1,-13,-3,-19v-2,-6,-4,-12,-8,-17v-4,-4,-8,-8,-14,-11v-5,-3,-12,-4,-19,-4v-8,0,-14,1,-20,4v-6,3,-10,6,-14,11v-4,5,-7,10,-9,16v-2,7,-3,13,-3,20v0,7,1,14,3,20v2,6,5,12,9,17v4,5,8,9,14,12v6,2,12,4,20,4"},"7":{"d":"13,-252r172,0r0,34v-13,15,-25,30,-36,46v-11,16,-20,33,-28,51v-8,18,-15,37,-20,57v-5,20,-8,41,-10,64r-45,0v2,-20,5,-40,10,-59v6,-19,13,-38,21,-57v9,-18,19,-35,30,-52v11,-17,23,-33,36,-47r-130,0r0,-37"},"8":{"d":"100,-225v-11,0,-20,4,-28,10v-8,7,-12,16,-12,29v0,12,4,21,12,27v7,7,17,10,28,10v12,0,21,-3,29,-10v7,-6,11,-15,11,-27v0,-13,-4,-22,-12,-29v-8,-6,-17,-10,-28,-10xm100,5v-13,0,-24,-2,-35,-5v-11,-4,-21,-9,-29,-16v-8,-7,-14,-15,-18,-25v-5,-10,-7,-21,-7,-33v0,-16,4,-29,13,-40v8,-11,19,-18,33,-22r0,0v-11,-5,-20,-11,-26,-20v-6,-9,-9,-20,-9,-32v0,-22,6,-39,20,-51v14,-12,33,-18,58,-18v25,0,45,6,58,18v14,12,21,29,21,51v0,12,-3,23,-10,32v-6,9,-15,15,-26,20r0,0v14,4,25,11,34,22v8,11,12,24,12,40v0,12,-2,23,-7,33v-4,10,-10,18,-18,25v-8,7,-18,12,-28,16v-11,3,-23,5,-36,5xm100,-27v14,0,25,-4,34,-13v9,-8,14,-19,14,-34v0,-14,-5,-25,-14,-33v-9,-8,-20,-11,-34,-11v-14,0,-25,3,-34,11v-9,8,-14,19,-14,33v0,15,5,26,14,34v9,9,20,13,34,13"},"9":{"d":"58,-64v1,11,5,19,11,25v6,7,15,10,26,10v11,0,20,-3,26,-9v7,-6,12,-13,15,-22v4,-9,6,-18,8,-28v1,-10,2,-19,3,-28r-1,0v-5,10,-13,17,-23,22v-9,5,-20,8,-31,8v-12,0,-23,-2,-33,-6v-9,-4,-18,-10,-25,-17v-7,-8,-12,-16,-16,-27v-4,-10,-6,-22,-6,-35v0,-12,2,-24,6,-34v4,-10,9,-20,17,-27v7,-8,16,-14,27,-19v11,-4,23,-6,37,-6v18,0,32,3,44,10v11,7,21,16,27,28v7,12,11,26,14,42v3,16,4,33,4,52v0,15,-2,30,-5,45v-3,16,-9,30,-16,42v-7,13,-17,23,-29,31v-12,8,-27,12,-45,12v-10,0,-20,-2,-29,-5v-8,-3,-16,-8,-23,-14v-7,-6,-13,-13,-17,-22v-4,-8,-7,-17,-7,-28r41,0xm97,-223v-7,0,-14,2,-19,4v-6,3,-10,7,-14,12v-4,4,-6,10,-8,16v-2,6,-3,13,-3,20v0,7,1,13,3,20v2,6,4,12,8,16v4,5,8,9,14,12v5,3,12,5,19,5v8,0,15,-2,20,-5v6,-3,11,-7,15,-11v3,-5,6,-11,8,-17v2,-7,3,-13,3,-20v0,-7,-1,-14,-3,-20v-2,-6,-5,-11,-8,-16v-4,-5,-9,-9,-15,-12v-5,-2,-12,-4,-20,-4"},":":{"d":"25,-49r50,0r0,49r-50,0r0,-49xm25,-182r50,0r0,48r-50,0r0,-48","w":100},";":{"d":"25,-182r50,0r0,48r-50,0r0,-48xm25,-49r50,0r0,49v0,15,-5,27,-14,37v-9,11,-20,17,-35,20r0,-22v8,-2,14,-6,18,-13v4,-7,6,-14,6,-22r-25,0r0,-49","w":100},"\u037e":{"d":"25,-182r50,0r0,48r-50,0r0,-48xm25,-49r50,0r0,49v0,15,-5,27,-14,37v-9,11,-20,17,-35,20r0,-22v8,-2,14,-6,18,-13v4,-7,6,-14,6,-22r-25,0r0,-49","w":100},"<":{"d":"199,3r-182,-81r0,-26r182,-81r0,37r-134,57r134,57r0,37","w":216},"=":{"d":"199,-36r-182,0r0,-37r182,0r0,37xm199,-109r-182,0r0,-37r182,0r0,37","w":216},">":{"d":"151,-91r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},"?":{"d":"75,-45r48,0r0,45r-48,0r0,-45xm18,-175v0,-14,2,-26,6,-36v4,-11,9,-20,17,-28v7,-8,17,-14,27,-18v11,-4,23,-6,36,-6v11,0,21,1,31,5v9,3,18,8,25,14v7,6,12,13,16,23v4,9,7,19,7,31v0,8,-1,15,-3,21v-2,6,-4,12,-7,16v-3,5,-7,9,-11,12v-5,5,-5,5,-11,10v-5,4,-9,8,-13,11v-4,4,-7,8,-10,13v-3,4,-5,9,-6,15v-2,6,-3,14,-3,22r-39,0v0,-10,1,-19,2,-27v1,-7,3,-13,5,-19v3,-5,5,-10,9,-14v3,-5,8,-9,12,-13r11,-9v4,-3,7,-6,10,-10v2,-3,5,-7,6,-12v2,-4,3,-9,3,-15v0,-7,-2,-13,-4,-19v-3,-5,-6,-9,-9,-12v-4,-3,-8,-5,-12,-7v-4,-1,-8,-2,-11,-2v-15,0,-26,5,-33,15v-7,9,-10,22,-10,39r-41,0"},"@":{"d":"195,-100v0,2,-1,5,-2,8v0,3,-1,6,-1,8v0,3,1,4,2,6v1,2,3,2,5,2v6,0,11,-2,17,-6v5,-4,10,-9,15,-16v4,-7,8,-15,11,-25v2,-9,4,-19,4,-30v0,-14,-3,-26,-8,-37v-5,-10,-12,-19,-20,-27v-9,-7,-19,-13,-31,-17v-12,-4,-24,-6,-37,-6v-16,0,-30,3,-42,9v-13,5,-24,13,-33,23v-9,9,-16,21,-21,34v-5,13,-8,27,-8,42v0,18,3,34,9,48v5,14,12,26,22,36v9,10,21,17,34,23v13,5,27,8,42,8v16,0,31,-3,45,-10v14,-6,26,-15,36,-26r25,0v-11,19,-27,33,-46,44v-18,10,-39,15,-61,15v-19,0,-36,-3,-53,-10v-16,-7,-30,-17,-42,-29v-12,-12,-22,-27,-29,-44v-7,-17,-10,-36,-10,-56v0,-18,3,-35,10,-51v7,-16,17,-30,29,-41v12,-12,26,-21,42,-28v16,-7,33,-10,51,-10v16,0,31,2,46,8v14,5,27,12,38,21v11,10,20,21,26,34v7,13,10,27,10,42v0,18,-3,34,-9,47v-6,14,-13,25,-22,34v-9,9,-18,15,-28,20v-10,4,-18,7,-26,7v-5,0,-10,-2,-14,-6v-4,-3,-6,-8,-7,-15r-1,0v-4,5,-10,10,-18,14v-7,4,-14,6,-22,6v-7,0,-14,-1,-21,-4v-6,-3,-12,-7,-16,-13v-5,-5,-9,-11,-11,-18v-3,-6,-4,-14,-4,-21v0,-12,1,-23,5,-34v4,-11,10,-21,16,-30v7,-9,15,-16,25,-21v10,-6,21,-9,32,-9v9,0,16,3,23,7v7,4,13,10,18,19r6,-20r25,0xm130,-78v7,0,14,-2,20,-6v6,-4,11,-10,15,-16v5,-6,8,-13,11,-21v2,-7,3,-14,3,-21v0,-4,-1,-8,-2,-12v-2,-4,-4,-7,-6,-10v-3,-3,-6,-5,-9,-7v-4,-2,-7,-3,-11,-3v-8,0,-14,3,-21,7v-6,4,-11,9,-15,15v-4,6,-8,13,-10,20v-3,8,-4,15,-4,21v0,10,3,18,8,24v5,6,12,9,21,9","w":288},"A":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0","w":240,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"B":{"d":"72,-149r74,0v11,0,20,-3,27,-10v7,-6,11,-15,11,-26v0,-13,-4,-22,-10,-27v-7,-6,-16,-8,-28,-8r-74,0r0,71xm27,-257r125,0v23,0,42,5,56,16v14,10,21,26,21,48v0,13,-4,24,-10,33v-6,9,-15,16,-27,21r0,1v16,3,28,11,36,23v8,11,12,26,12,43v0,10,-2,20,-5,29v-4,8,-10,16,-17,22v-8,7,-18,12,-30,15v-12,4,-26,6,-43,6r-118,0r0,-257xm72,-37r80,0v14,0,24,-3,32,-10v7,-7,11,-17,11,-30v0,-13,-4,-23,-11,-30v-8,-7,-18,-10,-32,-10r-80,0r0,80","w":253},"C":{"d":"201,-175v-2,-8,-5,-15,-8,-21v-3,-6,-8,-11,-13,-16v-5,-5,-11,-8,-19,-11v-7,-2,-15,-3,-24,-3v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v10,0,19,-1,26,-5v8,-3,15,-8,20,-14v6,-6,10,-13,13,-22v3,-8,5,-17,6,-26r44,0v-1,15,-4,29,-10,42v-5,13,-13,24,-23,33v-9,9,-20,17,-33,22v-13,5,-28,7,-43,7v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11v14,0,28,2,40,6v13,4,24,9,34,17v10,8,18,17,24,28v6,10,9,23,11,37r-45,0","w":259},"D":{"d":"27,-257r107,0v20,0,37,3,51,10v14,7,26,16,35,28v9,11,16,25,21,40v4,16,6,33,6,50v0,18,-2,35,-6,51v-5,15,-12,29,-21,40v-9,12,-21,21,-35,28v-14,7,-31,10,-51,10r-107,0r0,-257xm72,-37r45,0v17,0,31,-2,43,-7v11,-4,20,-11,26,-19v6,-8,11,-18,13,-29v2,-12,3,-24,3,-37v0,-12,-1,-25,-3,-36v-2,-11,-7,-21,-13,-29v-6,-8,-15,-15,-26,-19v-12,-5,-26,-7,-43,-7r-45,0r0,183","w":259},"E":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257","w":226},"F":{"d":"27,-257r178,0r0,39r-133,0r0,67r117,0r0,37r-117,0r0,114r-45,0r0,-257","w":213,"k":{"A":20,".":46,",":46}},"G":{"d":"252,0r-29,0r-7,-30v-12,13,-24,23,-36,28v-12,5,-26,8,-41,8v-20,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-9,-34,-9,-53v0,-18,3,-35,9,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,32,-11,52,-11v14,0,27,2,39,5v13,4,24,10,34,17v10,7,18,16,25,28v6,11,10,23,12,38r-44,0v-1,-9,-4,-16,-8,-22v-4,-7,-9,-12,-15,-16v-6,-5,-13,-8,-20,-10v-7,-2,-15,-3,-23,-3v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-5,24,-5,36v0,13,2,25,5,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v11,1,21,-1,30,-4v9,-3,17,-8,23,-14v6,-6,10,-14,14,-23v3,-9,4,-18,5,-29r-69,0r0,-34r110,0r0,135","w":273},"H":{"d":"26,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0r0,-257","w":259},"I":{"d":"27,-257r45,0r0,257r-45,0r0,-257","w":100},"J":{"d":"166,-83v0,11,-1,22,-3,33v-2,11,-6,20,-12,28v-5,9,-14,16,-25,21v-11,5,-26,7,-45,7v-13,0,-25,-2,-35,-6v-9,-4,-17,-10,-23,-17v-7,-8,-11,-16,-14,-27v-3,-10,-4,-21,-4,-32r0,-14r45,0r0,13v0,15,2,26,7,34v5,8,14,12,28,12v7,0,13,-1,18,-3v4,-2,8,-5,11,-9v3,-5,5,-10,6,-16v0,-6,1,-13,1,-21r0,-177r45,0r0,174","w":193},"K":{"d":"27,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0r0,-257","w":246},"L":{"d":"27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257","w":206,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"27,-257r63,0r71,201r1,0r69,-201r62,0r0,257r-42,0r0,-198r-1,0r-71,198r-38,0r-71,-198r-1,0r0,198r-42,0r0,-257","w":320},"N":{"d":"26,-257r47,0r117,189r1,0r0,-189r43,0r0,257r-48,0r-117,-189r-1,0r0,189r-42,0r0,-257","w":259},"O":{"d":"137,-226v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8xm137,-263v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11","w":273},"P":{"d":"27,-257r114,0v18,0,33,3,44,8v12,5,21,12,27,20v6,8,11,16,13,26v2,9,3,18,3,26v0,7,-1,16,-3,25v-2,10,-7,18,-13,26v-6,8,-15,14,-27,20v-11,5,-26,7,-44,7r-69,0r0,99r-45,0r0,-257xm72,-135r66,0v5,0,10,-1,16,-3v5,-1,10,-3,14,-7v5,-3,8,-7,11,-13v3,-5,4,-12,4,-20v0,-8,-1,-15,-3,-21v-3,-5,-6,-10,-10,-13v-4,-3,-9,-5,-14,-7v-5,-1,-11,-1,-17,-1r-67,0r0,85","w":240,"k":{"A":27,".":61,",":61}},"Q":{"d":"257,-1r-22,24r-38,-32v-9,5,-19,9,-30,12v-10,2,-20,3,-30,3v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,9,-1,18,-2,27v-2,9,-4,18,-7,27v-3,8,-6,17,-11,24v-4,8,-10,15,-16,21xm140,-59r21,-25r32,27v8,-10,14,-21,17,-33v3,-13,5,-26,5,-39v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v5,0,9,0,14,-1v5,-1,10,-3,15,-5","w":273},"R":{"d":"27,-257r123,0v28,0,50,6,64,18v14,13,21,30,21,51v0,13,-2,23,-5,31v-4,8,-8,14,-13,19v-5,5,-9,9,-14,11v-5,2,-8,4,-10,4r0,1v3,0,8,2,12,4v4,1,9,5,12,9v4,4,7,9,10,16v3,7,4,15,4,25v0,15,1,29,3,42v2,12,6,21,11,26r-48,0v-4,-6,-6,-12,-6,-18v-1,-7,-1,-14,-1,-20v0,-12,-1,-22,-2,-30v-2,-9,-5,-16,-8,-21v-4,-6,-9,-10,-16,-13v-7,-3,-15,-4,-25,-4r-67,0r0,106r-45,0r0,-257xm72,-140r74,0v15,0,25,-3,33,-10v7,-7,11,-17,11,-31v0,-8,-1,-15,-4,-20v-2,-5,-5,-9,-9,-12v-5,-3,-9,-5,-15,-6v-5,-1,-11,-1,-17,-1r-73,0r0,80","w":253,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"57,-86v0,10,2,19,5,26v3,6,8,12,14,17v6,4,13,7,21,9v7,2,16,3,25,3v10,0,18,-1,25,-3v7,-2,13,-5,17,-9v4,-3,8,-8,10,-12v1,-5,2,-10,2,-14v0,-10,-2,-18,-6,-22v-5,-5,-10,-8,-15,-10v-9,-4,-20,-7,-32,-10v-12,-3,-27,-7,-45,-11v-11,-3,-20,-7,-27,-12v-7,-4,-13,-10,-18,-15v-4,-6,-7,-12,-9,-19v-2,-6,-2,-13,-2,-20v0,-13,2,-24,8,-33v5,-10,12,-18,21,-24v9,-6,19,-11,30,-14v12,-3,23,-4,35,-4v13,0,26,2,38,5v11,4,22,9,31,16v9,7,16,15,21,25v6,11,8,22,8,36r-45,0v-1,-17,-7,-28,-17,-35v-10,-7,-23,-10,-38,-10v-6,0,-11,0,-16,1v-6,1,-11,3,-16,6v-4,2,-8,6,-11,10v-3,4,-4,10,-4,16v0,9,2,16,8,21v6,6,13,10,22,12v1,0,5,1,12,3v9,3,9,3,22,6r24,6v7,3,13,4,16,5v9,3,16,6,22,11v7,4,12,10,16,15v4,6,7,13,9,19v2,7,3,14,3,20v0,15,-3,27,-8,37v-6,11,-14,19,-24,25v-9,7,-20,12,-32,15v-13,3,-25,4,-38,4v-14,0,-28,-2,-41,-5v-13,-4,-24,-9,-34,-17v-10,-7,-17,-17,-23,-28v-6,-12,-9,-26,-9,-42r45,0","w":233},"T":{"d":"3,-257r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0r0,-39","w":213,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":36,"A":33,";":30,":":30,".":40,"-":46,",":40}},"U":{"d":"24,-257r45,0r0,150v0,8,1,17,2,26v1,9,3,17,7,24v4,7,10,13,18,17v8,5,19,7,34,7v15,0,26,-2,34,-7v8,-4,14,-10,18,-17v4,-7,6,-15,7,-24v1,-9,1,-18,1,-26r0,-150r45,0r0,164v0,17,-2,31,-7,44v-5,12,-12,22,-22,30v-9,9,-20,15,-33,19v-13,4,-27,6,-43,6v-16,0,-30,-2,-43,-6v-13,-4,-24,-10,-34,-19v-9,-8,-16,-18,-21,-30v-5,-13,-8,-27,-8,-44r0,-164","w":259},"V":{"d":"-2,-257r47,0r64,203r1,0r66,-203r46,0r-88,257r-50,0","w":219,"k":{"y":6,"u":13,"r":13,"o":20,"i":-4,"e":20,"a":20,"A":20,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"2,-257r46,0r46,197r1,0r52,-197r46,0r50,197r1,0r48,-197r46,0r-71,257r-46,0r-51,-197r-1,0r-53,197r-46,0","w":339,"k":{"u":6,"r":6,"o":6,"e":6,"a":13,"A":9,";":6,":":6,".":27,"-":10,",":27}},"X":{"d":"5,-257r54,0r58,91r61,-91r50,0r-85,124r91,133r-54,0r-64,-98r-66,98r-51,0r91,-133","w":233},"Y":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101","w":233,"k":{"v":20,"u":31,"q":37,"p":31,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":40,"-":40,",":40}},"Z":{"d":"20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39","w":226},"[":{"d":"26,-263r80,0r0,32r-41,0r0,267r41,0r0,33r-80,0r0,-332","w":106},"\\":{"d":"135,6r-40,0r-103,-269r39,0","w":126},"]":{"d":"81,69r-81,0r0,-33r42,0r0,-267r-42,0r0,-32r81,0r0,332","w":106},"^":{"d":"30,-121r65,-131r26,0r65,131r-37,0r-41,-89r-41,89r-37,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"38,-263r33,51r-30,0r-51,-51r48,0","w":86},"a":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30"},"b":{"d":"23,-257r41,0r0,95r0,0v3,-5,7,-9,11,-12v4,-4,8,-7,13,-9v5,-3,10,-5,16,-6v5,-1,11,-2,16,-2v15,0,27,2,38,8v11,5,20,12,27,21v8,9,13,19,17,31v3,12,5,25,5,39v0,12,-2,24,-5,36v-3,12,-8,22,-15,31v-6,9,-15,17,-25,22v-10,5,-22,8,-35,8v-7,0,-13,0,-19,-1v-7,-1,-13,-3,-18,-5v-6,-2,-11,-6,-16,-9v-5,-4,-9,-9,-12,-16r0,0r0,26r-39,0r0,-257xm166,-93v0,-8,-1,-16,-3,-24v-2,-8,-6,-15,-10,-21v-4,-7,-10,-11,-16,-15v-7,-4,-14,-6,-23,-6v-17,0,-30,6,-39,18v-8,12,-13,28,-13,48v0,9,1,18,4,26v2,8,5,15,10,21v5,6,10,10,16,14v7,3,14,5,22,5v10,0,18,-2,24,-6v7,-4,12,-9,16,-15v4,-6,7,-13,9,-21v2,-8,3,-16,3,-24","w":219},"c":{"d":"147,-124v-1,-11,-6,-20,-14,-26v-7,-6,-17,-9,-28,-9v-6,0,-11,1,-17,3v-6,2,-12,5,-17,10v-5,5,-9,12,-12,21v-4,8,-5,20,-5,34v0,8,1,15,2,23v2,8,5,14,9,20v4,6,9,11,15,15v7,4,14,6,23,6v12,0,22,-4,30,-12v7,-7,12,-17,14,-31r41,0v-4,24,-13,43,-27,56v-15,13,-34,19,-58,19v-15,0,-28,-2,-39,-7v-11,-5,-20,-12,-28,-20v-8,-9,-14,-19,-17,-31v-4,-12,-6,-24,-6,-38v0,-14,2,-27,5,-39v4,-13,10,-23,18,-32v7,-9,17,-16,28,-21v12,-6,25,-8,40,-8v11,0,21,1,31,4v10,3,19,7,26,12v8,6,14,13,19,21v4,9,7,19,8,30r-41,0"},"d":{"d":"197,0r-39,0r0,-25r-1,0v-5,11,-13,18,-24,23v-10,5,-22,7,-33,7v-15,0,-28,-3,-39,-8v-11,-5,-20,-12,-27,-21v-7,-9,-12,-19,-16,-31v-4,-12,-5,-25,-5,-39v0,-17,2,-32,6,-44v5,-12,11,-22,19,-30v7,-8,16,-14,26,-18v9,-3,19,-5,29,-5v6,0,12,0,18,1v6,2,12,3,17,6v6,2,11,5,15,9v5,4,9,8,12,13r1,0r0,-95r41,0r0,257xm54,-91v0,8,1,16,3,23v2,8,5,15,9,21v4,6,10,11,16,14v7,4,14,6,23,6v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v4,-6,7,-14,9,-21v2,-8,3,-16,3,-24v0,-21,-4,-37,-14,-48v-9,-12,-21,-18,-37,-18v-10,0,-18,2,-24,6v-7,4,-12,9,-17,16v-4,6,-7,13,-9,21v-1,8,-2,17,-2,25","w":219},"e":{"d":"149,-109v0,-7,-1,-13,-4,-19v-2,-6,-5,-11,-9,-16v-4,-4,-9,-8,-14,-11v-6,-2,-12,-4,-19,-4v-8,0,-14,1,-20,4v-6,3,-11,6,-15,10v-4,5,-8,10,-10,16v-3,6,-4,13,-4,20r95,0xm54,-82v0,7,1,14,3,20v2,7,5,13,9,18v4,5,9,9,15,12v7,3,14,5,23,5v12,0,21,-3,29,-8v7,-5,12,-13,16,-23r39,0v-2,10,-6,19,-11,27v-6,8,-12,14,-19,20v-8,5,-16,9,-25,12v-10,3,-19,4,-29,4v-15,0,-28,-2,-39,-7v-11,-5,-21,-12,-29,-20v-8,-9,-14,-19,-17,-31v-4,-12,-6,-25,-6,-40v0,-13,2,-26,6,-37v4,-12,10,-23,18,-32v8,-9,17,-16,28,-21v11,-6,24,-8,38,-8v14,0,27,3,39,9v12,6,21,14,29,24v8,10,13,22,17,35v3,13,4,27,2,41r-136,0"},"f":{"d":"3,-186r31,0r0,-16v0,-11,1,-21,4,-28v3,-8,7,-13,12,-17v4,-4,10,-7,16,-8v6,-1,13,-2,19,-2v14,0,23,1,29,2r0,33v-3,-1,-5,-2,-8,-2v-3,0,-7,-1,-11,-1v-5,0,-10,2,-14,4v-4,3,-6,8,-6,16r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0r0,-30","w":113,"k":{"f":6}},"g":{"d":"194,-10v0,28,-8,49,-24,63v-16,14,-38,21,-68,21v-9,0,-19,-1,-28,-3v-10,-2,-18,-5,-26,-10v-8,-4,-14,-10,-20,-18v-5,-7,-8,-16,-9,-27r41,0v1,6,3,10,6,14v3,3,7,6,10,8v4,2,9,4,14,4v4,1,9,1,15,1v16,0,28,-4,36,-12v8,-8,12,-20,12,-35r0,-29r-1,0v-6,11,-14,19,-24,24v-10,6,-20,9,-32,9v-15,0,-27,-3,-38,-8v-10,-5,-19,-12,-26,-21v-7,-9,-12,-19,-15,-31v-3,-12,-4,-24,-4,-38v0,-12,2,-24,5,-36v4,-11,10,-21,17,-29v7,-9,16,-16,26,-21v11,-5,23,-7,36,-7v12,0,22,2,32,7v10,5,18,13,23,23r1,0r0,-25r41,0r0,176xm103,-32v9,0,16,-2,23,-6v6,-4,11,-9,15,-15v4,-6,7,-13,9,-21v2,-7,3,-15,3,-23v0,-8,-1,-16,-3,-23v-2,-8,-5,-14,-9,-20v-4,-6,-9,-10,-16,-14v-6,-3,-14,-5,-22,-5v-10,0,-17,2,-23,6v-7,4,-12,9,-16,15v-3,6,-6,13,-8,21v-2,8,-2,15,-2,23v0,8,1,15,3,23v1,7,4,13,8,19v4,6,9,11,15,14v7,4,14,6,23,6","w":213},"h":{"d":"22,-257r41,0r0,95r0,0v5,-8,13,-15,23,-21v10,-5,21,-8,33,-8v21,0,37,5,48,16v12,10,18,26,18,47r0,128r-41,0r0,-117v0,-15,-4,-25,-9,-32v-6,-6,-15,-10,-27,-10v-7,0,-14,1,-19,4v-6,3,-10,6,-14,10v-4,5,-7,10,-9,16v-2,6,-3,12,-3,19r0,110r-41,0r0,-257","w":206},"i":{"d":"23,-257r41,0r0,39r-41,0r0,-39xm23,-186r41,0r0,186r-41,0r0,-186","w":86},"j":{"d":"23,-257r41,0r0,39r-41,0r0,-39xm23,-186r41,0r0,202v0,18,-4,33,-13,43v-8,10,-21,15,-41,15v-4,0,-7,0,-10,-1v-3,0,-5,0,-8,-1r0,-32v3,0,5,1,8,1r6,0v8,0,12,-2,14,-6v2,-5,3,-12,3,-21r0,-200","w":86},"k":{"d":"23,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0r0,-257","w":193},"l":{"d":"23,-257r41,0r0,257r-41,0r0,-257","w":86},"m":{"d":"22,-186r38,0r0,26r2,0v3,-5,6,-9,10,-13v3,-4,7,-7,12,-10v4,-2,9,-4,15,-6v6,-1,12,-2,20,-2v11,0,22,2,31,7v10,5,17,13,21,24v7,-10,15,-17,24,-23v9,-5,21,-8,34,-8v20,0,35,5,46,14v11,10,17,26,17,48r0,129r-41,0r0,-109v0,-7,-1,-14,-1,-20v-1,-6,-2,-11,-4,-16v-3,-4,-6,-8,-11,-10v-4,-3,-10,-4,-18,-4v-14,0,-24,5,-31,13v-6,9,-9,21,-9,37r0,109r-41,0r0,-120v0,-12,-2,-22,-7,-29v-5,-6,-13,-10,-26,-10v-5,0,-10,1,-15,3v-5,3,-9,6,-13,10v-4,4,-7,9,-9,15v-2,6,-3,13,-3,20r0,111r-41,0r0,-186","w":313},"n":{"d":"22,-186r38,0r0,27r1,1v6,-10,15,-18,25,-24v10,-6,21,-9,33,-9v21,0,37,5,48,16v12,10,18,26,18,47r0,128r-41,0r0,-117v0,-15,-4,-25,-9,-32v-6,-6,-15,-10,-27,-10v-7,0,-14,1,-19,4v-6,3,-10,6,-14,10v-4,5,-7,10,-9,16v-2,6,-3,12,-3,19r0,110r-41,0r0,-186","w":206},"o":{"d":"107,5v-15,0,-28,-2,-40,-7v-11,-5,-21,-12,-29,-21v-8,-8,-15,-19,-19,-31v-4,-12,-6,-25,-6,-39v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v15,0,28,2,40,7v11,5,21,12,29,21v8,8,14,19,19,31v4,12,6,25,6,39v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7xm107,-27v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-8,-1,-16,-3,-24v-2,-8,-5,-15,-10,-21v-4,-6,-10,-11,-16,-15v-7,-4,-15,-6,-24,-6v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,8,1,16,3,24v2,7,5,15,10,21v4,6,9,11,16,15v7,4,15,6,24,6","w":213},"p":{"d":"23,-186r39,0r0,25r0,0v6,-11,14,-18,24,-23v11,-5,22,-7,34,-7v15,0,27,2,38,8v11,5,20,12,27,21v8,9,13,19,17,31v3,12,5,25,5,39v0,12,-2,24,-5,36v-3,12,-8,22,-15,31v-6,9,-15,17,-25,22v-10,5,-22,8,-35,8v-6,0,-12,-1,-18,-2v-6,-1,-12,-2,-18,-5v-5,-2,-10,-5,-15,-9v-5,-4,-8,-8,-12,-13r0,0r0,93r-41,0r0,-255xm166,-93v0,-8,-1,-16,-3,-24v-2,-8,-6,-15,-10,-21v-4,-7,-10,-11,-16,-15v-7,-4,-14,-6,-23,-6v-17,0,-30,6,-39,18v-8,12,-13,28,-13,48v0,9,1,18,4,26v2,8,5,15,10,21v5,6,10,10,16,14v7,3,14,5,22,5v10,0,18,-2,24,-6v7,-4,12,-9,16,-15v4,-6,7,-13,9,-21v2,-8,3,-16,3,-24","w":219},"q":{"d":"197,69r-41,0r0,-93r-1,0v-3,5,-7,9,-12,13v-4,4,-9,7,-15,9v-5,3,-11,4,-17,5v-6,1,-12,2,-18,2v-14,0,-26,-3,-36,-8v-10,-5,-18,-13,-25,-22v-6,-9,-11,-19,-15,-31v-3,-12,-4,-24,-4,-36v0,-14,1,-27,5,-39v4,-12,9,-22,16,-31v7,-9,16,-16,27,-21v11,-6,24,-8,39,-8v12,0,23,2,33,7v11,5,19,12,24,23r1,0r0,-25r39,0r0,255xm54,-93v0,8,1,16,2,24v2,8,5,15,9,21v5,6,10,11,16,15v7,4,15,6,24,6v18,0,31,-6,40,-19v8,-12,12,-27,12,-47v0,-20,-4,-36,-13,-48v-9,-12,-22,-18,-39,-18v-8,0,-16,2,-22,6v-7,4,-12,8,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24","w":219},"r":{"d":"22,-186r38,0r0,36r1,0v1,-5,3,-10,7,-15v3,-5,8,-9,12,-13v5,-4,11,-7,17,-10v6,-2,12,-3,18,-3r10,0v3,1,3,1,6,1r0,40v-3,-1,-6,-1,-9,-2r-9,0v-7,0,-13,1,-20,4v-6,3,-11,7,-16,12v-4,6,-8,12,-10,20v-3,8,-4,17,-4,27r0,89r-41,0r0,-186","w":126,"k":{"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"53,-60v1,12,5,21,13,25v8,5,18,8,29,8v4,0,8,-1,13,-1v5,-1,9,-2,14,-4v4,-1,8,-4,10,-7v3,-3,4,-8,4,-13v0,-5,-2,-9,-6,-13v-3,-3,-8,-6,-14,-8v-5,-2,-12,-4,-19,-5v-7,-2,-14,-3,-22,-5v-7,-1,-15,-4,-22,-6v-7,-2,-13,-6,-19,-10v-6,-4,-10,-9,-13,-15v-4,-7,-6,-15,-6,-24v0,-10,3,-18,8,-25v5,-7,11,-13,19,-17v7,-4,16,-7,25,-9v9,-1,18,-2,26,-2v10,0,19,1,28,3v9,2,16,5,24,10v7,4,13,10,17,18v5,7,8,16,9,26r-43,0v-2,-10,-6,-16,-13,-20v-7,-3,-16,-5,-25,-5v-3,0,-6,0,-10,1v-4,0,-8,1,-11,3v-4,1,-6,3,-9,5v-2,3,-3,6,-3,10v0,5,1,9,5,13v3,3,8,5,13,7v6,2,12,4,20,6v10,2,10,2,22,4r22,6v7,3,14,6,19,10v6,4,10,9,14,16v3,6,5,13,5,23v0,11,-2,20,-7,28v-5,7,-12,14,-20,18v-8,5,-17,9,-27,11v-10,2,-19,3,-29,3v-12,0,-23,-1,-33,-4v-10,-3,-18,-7,-26,-12v-7,-5,-13,-12,-17,-20v-4,-8,-6,-18,-6,-29r41,0","w":186},"t":{"d":"3,-186r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,100r0,11v1,3,2,6,3,8v1,2,3,4,6,5v3,1,6,1,11,1r8,0v0,0,6,0,9,-1r0,32v-7,0,-7,0,-13,1v-5,1,-9,1,-14,1v-10,0,-19,-1,-26,-3v-6,-2,-12,-5,-15,-9v-4,-4,-6,-9,-8,-15v-1,-6,-2,-13,-2,-21r0,-110r-31,0r0,-30","w":119},"u":{"d":"185,0r-40,0r0,-26r-1,0v-5,9,-13,17,-22,23v-10,5,-21,8,-31,8v-24,0,-42,-6,-53,-18v-11,-12,-16,-31,-16,-55r0,-118r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186","w":206},"v":{"d":"3,-186r45,0r47,143r1,0r45,-143r43,0r-67,186r-46,0","w":186,"k":{".":27,",":27}},"w":{"d":"5,-186r43,0r37,139r0,0r35,-139r42,0r33,139r1,0r38,-139r41,0r-58,186r-42,0r-35,-138r0,0r-35,138r-43,0","w":280,"k":{".":20,",":20}},"x":{"d":"72,-98r-65,-88r50,0r39,57r40,-57r48,0r-63,86r71,100r-49,0r-48,-69r-45,69r-49,0","w":193},"y":{"d":"1,-186r45,0r49,139r0,0r48,-139r42,0r-72,196v-5,13,-5,13,-10,24v-3,8,-7,15,-12,21v-4,5,-10,10,-17,14v-7,3,-16,5,-27,5v-9,0,-19,-1,-28,-2r0,-35v3,1,6,1,9,2v4,0,7,1,10,1v5,0,9,-1,12,-2v3,-1,6,-3,8,-5v2,-3,4,-5,5,-9v1,-3,3,-6,4,-10r5,-15","w":186,"k":{".":33,",":33}},"z":{"d":"15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32","w":180},"{":{"d":"-1,-113v2,0,5,-1,9,-1v4,-1,7,-3,11,-5v4,-2,7,-4,9,-8v3,-3,4,-7,4,-13r0,-74v0,-8,2,-16,5,-22v4,-6,8,-11,13,-15v4,-4,10,-7,15,-9v5,-2,10,-3,13,-3r33,0r0,32r-20,0v-4,0,-8,1,-10,3v-3,1,-5,3,-6,6v-2,2,-3,5,-3,8v-1,3,-1,6,-1,8r0,71v0,7,-1,13,-4,18v-3,4,-6,8,-10,11v-4,3,-8,5,-13,6v-4,1,-7,2,-10,2r0,1v3,0,6,1,10,2v5,1,9,3,13,6v4,2,7,6,10,11v3,6,4,12,4,21r0,68v0,3,0,6,1,9v0,3,1,5,3,8v1,2,3,4,6,6v2,2,6,2,10,2r20,0r0,33r-33,0v-3,0,-8,-1,-13,-3v-5,-2,-11,-5,-15,-9v-5,-4,-9,-9,-13,-16v-3,-6,-5,-13,-5,-22r0,-71v0,-6,-1,-10,-4,-14v-2,-4,-5,-7,-9,-9v-4,-2,-7,-4,-11,-5v-4,-1,-7,-1,-9,-1r0,-32","w":106},"|":{"d":"22,-283r36,0r0,360r-36,0r0,-360","w":79},"}":{"d":"108,-81v-3,0,-6,0,-10,1v-4,1,-7,2,-11,4v-3,2,-7,5,-9,8v-3,4,-4,8,-4,13r0,74v0,9,-2,16,-5,22v-3,7,-7,12,-12,16v-5,4,-10,7,-15,9v-6,2,-10,3,-14,3r-33,0r0,-33r20,0v5,0,8,0,11,-2v3,-2,5,-4,6,-6v1,-3,2,-5,3,-8r0,-9r0,-70v0,-7,2,-13,5,-18v2,-5,6,-9,10,-11v4,-3,8,-5,12,-6v4,-2,8,-2,11,-3r0,-1v-3,0,-7,0,-11,-1v-4,-1,-8,-3,-12,-6v-4,-3,-8,-7,-10,-12v-3,-5,-5,-12,-5,-21r0,-68r0,-8v-1,-3,-2,-6,-3,-8v-1,-3,-3,-5,-6,-6v-3,-2,-6,-3,-11,-3r-20,0r0,-32r33,0v4,0,8,1,14,3v5,2,10,5,15,9v5,4,9,9,12,15v3,6,5,14,5,22r0,71v0,6,1,11,4,15v2,4,6,7,9,9v4,2,7,3,11,4v4,1,7,2,10,2r0,32","w":106},"~":{"d":"191,-91v-2,3,-5,7,-8,11v-3,4,-7,7,-10,10v-3,3,-7,5,-12,7v-4,2,-9,3,-15,3v-7,0,-13,-2,-19,-4v-6,-2,-12,-5,-18,-8v-5,-4,-12,-7,-18,-9v-7,-3,-15,-4,-23,-4v-4,0,-8,1,-11,2v-3,2,-5,4,-8,6v-2,2,-5,5,-6,8v-2,3,-4,6,-5,9r-13,-31v2,-4,4,-7,7,-11v3,-4,6,-7,9,-10v4,-3,8,-5,13,-7v4,-2,10,-3,16,-3v6,0,13,1,19,4v7,2,14,5,21,8r20,8v6,3,12,5,17,5v3,0,6,-1,9,-3v3,-1,6,-3,9,-5v2,-3,5,-5,7,-8v3,-4,3,-4,6,-9","w":216},"\u00a1":{"d":"74,-146r-48,0r0,-45r48,0r0,45xm73,66r-45,0r0,-74r12,-112r21,0r12,112r0,74","w":100},"\u00a2":{"d":"96,5v-12,0,-24,-3,-34,-8v-11,-5,-20,-12,-27,-21v-7,-8,-12,-19,-16,-30v-4,-12,-6,-24,-6,-37v0,-15,2,-29,6,-41v5,-13,10,-23,18,-32v7,-8,16,-15,26,-20v10,-5,21,-7,33,-7r0,-33r16,0r0,33v10,0,20,1,28,5v9,3,17,7,24,13v7,6,12,13,17,21v4,8,7,18,8,28r-41,0v-2,-10,-5,-19,-12,-25v-6,-7,-14,-10,-24,-10r0,132v11,-2,20,-7,26,-14v6,-7,10,-17,11,-29r41,0v-4,23,-12,41,-25,55v-13,13,-31,20,-53,20r0,32r-16,0r0,-32xm96,-159v-7,1,-14,3,-20,8v-5,4,-9,10,-12,16v-4,6,-6,14,-7,21v-2,8,-3,15,-3,23v0,7,1,14,3,21v1,7,4,14,7,20v3,6,8,11,13,15v5,4,12,6,19,8r0,-132"},"\u00a3":{"d":"11,-138r23,0v-6,-7,-10,-15,-13,-24v-3,-9,-4,-18,-4,-27v0,-11,2,-21,7,-31v5,-9,11,-17,19,-23v8,-6,17,-11,27,-15v10,-3,21,-5,31,-5v28,0,50,7,66,22v16,15,24,37,25,67r-42,0v0,-8,-1,-15,-3,-22v-2,-7,-5,-12,-8,-17v-4,-5,-9,-9,-15,-12v-6,-3,-13,-4,-22,-4v-11,0,-21,4,-28,11v-8,7,-12,17,-12,31v0,9,2,17,5,26v4,8,8,16,11,23r53,0r0,23r-44,0v4,7,6,15,6,24v0,7,-1,13,-3,18v-2,6,-5,11,-8,16v-3,5,-7,10,-12,14v-4,4,-9,8,-13,11r0,1v9,-3,9,-3,16,-6v6,-3,11,-4,17,-4v7,0,12,1,17,2v4,2,8,3,13,4v4,2,8,4,12,5v4,1,9,2,14,2v7,0,13,-1,19,-4v6,-2,11,-5,16,-10r18,28v-9,8,-18,13,-26,16v-9,3,-19,4,-31,4v-6,0,-12,-1,-18,-2r-18,-3v-6,-2,-12,-4,-18,-5v-6,-2,-13,-2,-20,-2v-6,0,-12,1,-19,3v-7,2,-12,5,-17,9r-19,-29v4,-3,9,-7,13,-11v5,-5,9,-10,13,-15v4,-5,7,-10,9,-16v3,-6,4,-11,4,-17v0,-6,-1,-12,-2,-17v-1,-6,-3,-11,-6,-16r-33,0r0,-23"},"\u00a4":{"d":"100,-72v8,0,14,-2,21,-5v6,-3,11,-6,16,-11v4,-5,8,-11,10,-18v3,-6,4,-13,4,-20v0,-8,-1,-14,-4,-21v-2,-6,-6,-12,-10,-17v-5,-5,-10,-8,-16,-11v-6,-3,-13,-5,-20,-5v-8,0,-15,2,-21,5v-6,3,-12,6,-16,11v-5,5,-9,11,-11,17v-3,7,-4,14,-4,21v0,8,1,15,4,21v2,7,6,12,11,17v4,5,10,9,16,12v6,2,13,4,20,4xm7,-53r21,-22v-6,-6,-10,-14,-14,-22v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-16,14,-22r-21,-22r21,-21r20,20v6,-5,14,-9,23,-12v10,-3,20,-4,30,-4v9,0,19,1,28,4v8,3,16,7,21,12r21,-21r22,22r-20,21v5,6,10,13,12,23v3,9,5,19,5,29v0,10,-2,19,-5,28v-3,10,-7,17,-13,24r20,21r-20,20r-20,-21v-6,6,-14,11,-23,14v-9,3,-18,4,-29,4v-10,0,-20,-1,-29,-4v-9,-3,-17,-8,-23,-13r-21,21"},"\u00a5":{"d":"80,-59r-50,0r0,-24r50,0r0,-24r-50,0r0,-24r36,0r-68,-126r46,0r56,115r57,-115r45,0r-68,126r36,0r0,24r-49,0r0,24r49,0r0,24r-49,0r0,59r-41,0r0,-59"},"\u00a6":{"d":"22,-238r36,0r0,90r-36,0r0,-90xm22,-58r36,0r0,90r-36,0r0,-90","w":79},"\u00a7":{"d":"136,-195v-1,-10,-4,-19,-10,-25v-6,-7,-14,-11,-24,-11v-8,0,-14,3,-20,8v-7,5,-10,11,-10,19v0,6,2,11,6,16v3,4,8,8,13,12v6,4,12,8,19,11v11,6,11,6,22,11v8,4,15,8,22,13v7,4,14,9,20,14v5,5,10,12,13,18v4,7,6,15,6,23v0,6,-1,12,-3,17v-2,5,-5,10,-9,15v-3,5,-7,9,-12,12v-4,4,-9,6,-15,8v7,6,12,12,15,19v4,7,5,16,5,27v0,10,-2,19,-6,27v-4,8,-9,14,-16,19v-6,5,-14,9,-22,12v-9,2,-18,4,-27,4v-11,0,-21,-2,-31,-5v-9,-3,-17,-8,-24,-14v-7,-7,-12,-14,-16,-23v-4,-9,-7,-20,-7,-32r39,0v1,13,5,23,11,30v6,8,15,11,27,11v9,0,16,-2,22,-6v6,-5,9,-12,9,-23v0,-6,-2,-12,-5,-17v-4,-5,-8,-10,-14,-14v-6,-4,-13,-8,-20,-12r-23,-12v-8,-4,-15,-8,-23,-13v-8,-4,-14,-9,-20,-15v-6,-5,-11,-12,-14,-18v-4,-7,-6,-15,-6,-23v0,-14,3,-25,10,-33v7,-9,17,-16,29,-21v-5,-5,-9,-11,-12,-17v-2,-5,-4,-12,-4,-19v0,-10,2,-18,7,-26v4,-8,9,-14,16,-19v6,-5,14,-9,22,-12v9,-3,18,-4,26,-4v11,0,20,1,29,5v9,3,16,7,23,13v6,6,11,13,15,21v4,9,6,18,6,29r-39,0xm69,-146v-7,2,-12,6,-16,11v-4,5,-6,11,-6,18r0,5v1,2,2,5,3,7v1,3,3,5,6,8v2,3,6,5,11,8r65,37v6,-3,12,-7,16,-11v4,-5,6,-11,6,-19v0,-5,-2,-10,-5,-14v-4,-5,-10,-10,-20,-16"},"\u00a8":{"d":"-8,-216r0,-39r41,0r0,39r-41,0xm95,-255r0,39r-41,0r0,-39r41,0","w":86},"\u00a9":{"d":"212,-103v-1,9,-4,17,-8,24v-4,6,-8,12,-14,17v-5,5,-12,9,-19,11v-7,3,-14,4,-22,4v-12,0,-22,-2,-32,-6v-9,-4,-17,-10,-24,-17v-6,-8,-12,-16,-15,-26v-4,-10,-6,-21,-6,-33v0,-10,2,-20,6,-30v3,-9,8,-18,15,-24v6,-7,14,-13,23,-17v10,-4,20,-6,32,-6v17,0,31,5,43,14v11,9,19,23,21,40r-24,0v-2,-9,-7,-16,-14,-22v-7,-6,-16,-9,-26,-9v-8,0,-14,2,-20,5v-6,3,-11,7,-15,11v-4,5,-7,11,-9,17v-2,7,-3,14,-3,21v0,8,1,16,3,23v3,7,6,13,10,18v4,5,9,10,15,13v6,3,12,4,20,4v10,0,19,-3,26,-9v7,-6,11,-13,13,-23r24,0xm247,-129v0,-16,-2,-31,-8,-45v-5,-13,-12,-25,-22,-35v-9,-10,-20,-17,-32,-23v-13,-5,-26,-8,-41,-8v-14,0,-28,3,-40,8v-13,6,-24,13,-33,23v-10,10,-17,22,-22,35v-6,14,-8,29,-8,45v0,16,2,30,7,44v5,13,12,25,21,35v9,10,19,18,32,24v13,6,27,9,43,9v15,0,28,-3,41,-8v12,-6,23,-13,32,-23v10,-10,17,-22,22,-35v6,-14,8,-29,8,-46xm276,-129v0,21,-3,39,-10,56v-8,16,-17,30,-29,42v-12,12,-26,21,-42,27v-16,7,-33,10,-51,10v-19,0,-37,-3,-53,-10v-16,-7,-30,-16,-42,-28v-11,-12,-21,-27,-27,-43v-7,-17,-10,-34,-10,-54v0,-20,3,-38,10,-55v8,-16,17,-30,29,-42v12,-12,27,-21,43,-27v16,-7,33,-10,50,-10v18,0,35,3,51,10v16,6,30,15,42,27v12,12,21,26,29,42v7,17,10,35,10,55","w":288},"\u00aa":{"d":"119,-169v0,2,1,4,1,6v1,1,3,2,5,2r3,0v1,0,2,0,3,-1r0,25v-2,1,-5,1,-8,2v-4,0,-7,1,-9,1v-6,0,-11,-2,-15,-4v-4,-3,-6,-7,-7,-14v-2,3,-4,5,-8,7v-3,2,-6,4,-10,6v-4,1,-8,3,-13,3v-4,1,-8,2,-11,2v-6,0,-12,-1,-17,-2v-5,-2,-10,-4,-14,-7v-4,-3,-7,-6,-10,-10v-2,-4,-3,-9,-3,-15v0,-7,1,-12,4,-16v3,-5,7,-8,11,-11v5,-2,10,-4,16,-5v6,-2,12,-3,17,-4v5,0,9,-1,13,-2v4,-1,8,-1,11,-2v3,-1,6,-2,7,-4v2,-1,3,-3,3,-5v0,-4,-1,-7,-2,-9v-1,-3,-3,-4,-5,-5v-3,-1,-5,-2,-7,-2v-3,-1,-5,-1,-8,-1v-7,0,-13,1,-17,3v-5,2,-7,6,-8,12r-31,0v1,-7,3,-13,7,-18v4,-5,8,-9,13,-12v6,-3,11,-5,18,-6v7,-1,13,-2,20,-2v6,0,12,1,19,2v6,1,11,3,16,6v5,3,9,6,12,10v3,4,4,9,4,15r0,55xm88,-193v-4,2,-8,4,-14,5v-5,0,-11,1,-16,2v-6,1,-11,3,-15,5v-4,2,-6,6,-6,11v0,5,2,9,6,10v4,2,9,2,14,2r11,0v4,-1,7,-2,10,-3v3,-2,5,-4,7,-6v2,-2,3,-6,3,-10r0,-16","w":136},"\u00ab":{"d":"89,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38xm18,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38","w":166},"\u00ac":{"d":"162,-109r-145,0r0,-37r182,0r0,107r-37,0r0,-70","w":216},"\u00ae":{"d":"247,-129v0,-16,-2,-31,-8,-45v-5,-13,-12,-25,-22,-35v-9,-10,-20,-17,-32,-23v-13,-5,-26,-8,-41,-8v-14,0,-28,3,-40,8v-13,6,-24,13,-33,23v-10,10,-17,22,-22,35v-6,14,-8,29,-8,45v0,16,2,30,7,44v5,13,12,25,21,35v9,10,19,18,32,24v13,6,27,9,43,9v15,0,28,-3,41,-8v12,-6,23,-13,32,-23v10,-10,17,-22,22,-35v6,-14,8,-29,8,-46xm276,-129v0,21,-3,39,-10,56v-8,16,-17,30,-29,42v-12,12,-26,21,-42,27v-16,7,-33,10,-51,10v-19,0,-37,-3,-53,-10v-16,-7,-30,-16,-42,-28v-11,-12,-21,-27,-27,-43v-7,-17,-10,-34,-10,-54v0,-20,3,-38,10,-55v8,-16,17,-30,29,-42v12,-12,27,-21,43,-27v16,-7,33,-10,50,-10v18,0,35,3,51,10v16,6,30,15,42,27v12,12,21,26,29,42v7,17,10,35,10,55xm145,-136v5,0,9,0,13,-1v4,0,8,-1,11,-3v3,-1,6,-4,8,-7v2,-3,3,-7,3,-12v0,-5,-1,-9,-3,-11v-2,-3,-5,-5,-8,-6v-3,-2,-7,-3,-11,-3v-3,0,-7,-1,-11,-1r-29,0r0,44r27,0xm118,-51r-25,0r0,-150r57,0v18,0,31,4,40,11v10,6,14,17,14,32v0,14,-4,24,-11,30v-7,6,-17,10,-28,11r42,66r-28,0r-38,-64r-23,0r0,64","w":288},"\u00af":{"d":"-8,-223r0,-23r103,0r0,23r-103,0","w":86},"\u02c9":{"d":"-8,-223r0,-23r103,0r0,23r-103,0","w":86},"\u00b0":{"d":"38,-203v0,5,1,9,3,13v2,4,4,8,7,11v3,3,7,5,11,7v4,2,8,3,13,3v5,0,9,-1,13,-3v4,-2,8,-4,11,-7v3,-3,5,-7,7,-11v2,-4,3,-8,3,-13v0,-5,-1,-9,-3,-13v-2,-4,-4,-8,-7,-11v-3,-3,-7,-5,-11,-7v-4,-2,-8,-3,-13,-3v-5,0,-9,1,-13,3v-4,2,-8,4,-11,7v-3,3,-5,7,-7,11v-2,4,-3,8,-3,13xm18,-203v0,-7,1,-15,4,-21v3,-7,7,-12,12,-17v5,-5,10,-9,17,-12v7,-3,14,-4,21,-4v7,0,14,1,21,4v7,3,12,7,17,12v5,5,9,10,12,17v3,6,4,14,4,21v0,7,-1,14,-4,21v-3,7,-7,12,-12,17v-5,5,-10,9,-17,12v-7,3,-14,4,-21,4v-7,0,-14,-1,-21,-4v-7,-3,-12,-7,-17,-12v-5,-5,-9,-10,-12,-17v-3,-7,-4,-14,-4,-21","w":144},"\u00b1":{"d":"17,-37r182,0r0,37r-182,0r0,-37xm90,-182r36,0r0,45r73,0r0,37r-73,0r0,45r-36,0r0,-45r-73,0r0,-37r73,0r0,-45","w":216},"\u00b2":{"d":"121,-98r-113,0v0,-15,3,-27,9,-37v7,-10,16,-18,27,-25v5,-3,10,-7,16,-10v6,-4,12,-8,16,-11v5,-4,9,-8,12,-13v3,-5,5,-10,5,-16v0,-7,-2,-13,-8,-16v-5,-4,-11,-6,-18,-6v-5,0,-9,1,-12,3v-4,2,-6,4,-8,8v-2,3,-4,6,-5,10v0,4,-1,8,-1,13r-32,0v0,-19,6,-33,16,-43v11,-11,25,-16,43,-16v8,0,15,1,22,3v7,1,13,4,18,8v5,4,9,9,12,15v3,6,5,13,5,21v0,6,-1,11,-3,16v-3,5,-5,10,-9,14v-3,4,-7,8,-12,11r-13,10r-14,8v-5,3,-9,6,-13,9v-4,3,-8,6,-11,9v-2,3,-5,6,-6,10r77,0r0,25","w":129},"\u00b3":{"d":"53,-192v4,0,9,0,13,-1v4,0,8,-2,11,-3v4,-2,7,-4,9,-7v2,-3,3,-7,3,-11v0,-3,-1,-6,-2,-8r-6,-6v-3,-1,-5,-2,-8,-3v-3,0,-6,-1,-9,-1v-8,0,-14,3,-19,8v-5,5,-8,12,-7,20r-29,0v1,-17,6,-30,16,-39v10,-9,23,-14,39,-14v7,0,14,1,20,2v6,2,12,4,17,7v5,4,9,8,12,13v3,6,5,12,5,20v0,7,-2,14,-6,20v-4,5,-10,9,-17,12r0,1v9,2,16,6,21,12v6,7,8,16,8,26v0,8,-1,15,-4,21v-4,6,-8,11,-13,15v-6,4,-12,8,-19,10v-7,2,-15,3,-23,3v-20,0,-35,-5,-44,-15v-10,-10,-15,-23,-15,-41r29,0v-1,9,1,16,7,22v5,6,13,9,23,9v8,0,15,-3,21,-7v6,-5,9,-11,9,-19v0,-6,-1,-10,-3,-13v-3,-4,-6,-6,-10,-8v-4,-2,-9,-3,-14,-4r-15,0r0,-21","w":129},"\u00b4":{"d":"49,-263r48,0r-51,51r-30,0","w":86},"\u00b5":{"d":"185,0r-40,0r0,-26r-1,0v-3,5,-6,9,-10,13v-4,4,-8,7,-12,10v-5,2,-9,4,-14,6v-4,1,-9,2,-13,2v-5,0,-11,-1,-17,-3v-6,-2,-11,-5,-15,-10r0,77r-41,0r0,-255r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186","w":206},"\u03bc":{"d":"185,0r-40,0r0,-26r-1,0v-3,5,-6,9,-10,13v-4,4,-8,7,-12,10v-5,2,-9,4,-14,6v-4,1,-9,2,-13,2v-5,0,-11,-1,-17,-3v-6,-2,-11,-5,-15,-10r0,77r-41,0r0,-255r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186","w":206},"\u00b6":{"d":"89,-124v-12,0,-23,-1,-32,-5v-10,-3,-18,-7,-25,-13v-6,-6,-12,-13,-15,-21v-4,-8,-6,-17,-6,-26v0,-12,2,-23,6,-31v4,-9,10,-16,17,-21v8,-6,17,-10,27,-12v10,-3,22,-4,34,-4r93,0r0,315r-29,0r0,-292r-42,0r0,292r-28,0r0,-182","w":216},"\u00b7":{"d":"23,-109v0,-3,1,-7,2,-10v2,-3,4,-6,6,-8v3,-3,6,-5,9,-6v3,-2,6,-2,10,-2v4,0,7,0,10,2v4,1,6,3,9,6v2,2,4,5,6,8v1,3,2,7,2,10v0,7,-3,14,-8,19v-5,6,-12,9,-19,9v-7,0,-14,-3,-19,-9v-5,-5,-8,-12,-8,-19","w":100},"\u2219":{"d":"23,-109v0,-3,1,-7,2,-10v2,-3,4,-6,6,-8v3,-3,6,-5,9,-6v3,-2,6,-2,10,-2v4,0,7,0,10,2v4,1,6,3,9,6v2,2,4,5,6,8v1,3,2,7,2,10v0,7,-3,14,-8,19v-5,6,-12,9,-19,9v-7,0,-14,-3,-19,-9v-5,-5,-8,-12,-8,-19","w":100},"\u00b8":{"d":"10,58v5,1,5,1,11,3v4,2,8,2,12,2r8,0v2,-1,5,-1,7,-2v2,-1,4,-3,5,-5v1,-2,2,-4,2,-7v0,-5,-2,-8,-5,-11v-4,-2,-7,-3,-11,-3v-6,0,-10,1,-15,4r-7,-7r23,-32r18,0r-17,21r0,1v2,-1,4,-1,5,-1r7,0v4,0,7,0,11,1v4,1,7,3,10,5v3,2,5,5,7,8v2,4,3,8,3,12v0,6,-1,12,-4,16v-3,4,-6,7,-10,10v-4,2,-9,4,-14,5v-5,1,-10,2,-16,2v-5,0,-12,-1,-19,-2v-7,-1,-13,-3,-18,-6","w":86},"\u00b9":{"d":"13,-229v6,0,12,0,17,-1v6,-1,11,-2,15,-5v5,-2,8,-4,11,-7v3,-3,5,-7,7,-12r25,0r0,156r-31,0r0,-110r-44,0r0,-21","w":129},"\u00ba":{"d":"134,-195v0,18,-6,33,-17,44v-10,11,-26,17,-48,17v-21,0,-37,-6,-47,-17v-11,-11,-17,-26,-17,-44v0,-19,6,-34,17,-45v10,-11,26,-17,47,-17v22,0,38,6,48,17v11,11,17,26,17,45xm102,-195v0,-5,0,-10,-2,-14v-1,-5,-3,-9,-6,-12v-3,-4,-6,-7,-10,-9v-4,-2,-9,-4,-15,-4v-5,0,-10,2,-14,4v-4,2,-8,5,-10,9v-3,3,-5,7,-6,12v-2,4,-2,9,-2,14v0,4,0,9,2,13v1,4,3,8,6,12v2,4,6,7,10,9v4,2,9,3,14,3v6,0,11,-1,15,-3v4,-2,8,-5,10,-9v3,-4,5,-8,6,-12v1,-4,2,-9,2,-13","w":136},"\u00bb":{"d":"149,-118r0,40r-56,45r0,-38r34,-27r-34,-27r0,-37xm77,-118r0,40r-55,45r0,-38r34,-27r-34,-27r0,-37","w":166},"\u00bc":{"d":"202,-261r28,0r-151,270r-28,0xm13,-229v6,0,12,0,18,-1v5,-1,10,-2,15,-5v4,-2,8,-4,11,-7v3,-3,5,-7,6,-12r25,0r0,156r-31,0r0,-110r-44,0r0,-21xm228,-119r-1,0r-42,57r43,0r0,-57xm259,0r-31,0r0,-35r-71,0r0,-29r67,-90r35,0r0,92r17,0r0,27r-17,0r0,35","w":300},"\u00bd":{"d":"284,0r-114,0v0,-9,2,-17,4,-24v3,-6,6,-12,10,-18v4,-5,8,-9,13,-13v6,-4,11,-8,16,-11v5,-4,11,-7,16,-10v5,-2,9,-6,13,-9v4,-3,8,-7,10,-11v3,-4,4,-9,4,-15v0,-8,-3,-14,-8,-18v-5,-4,-11,-6,-18,-6v-5,0,-10,1,-13,3v-3,2,-6,4,-8,8v-2,3,-3,7,-4,11v-1,4,-1,9,-2,13r-31,0v0,-19,5,-34,15,-44v11,-11,25,-17,44,-17v8,0,15,1,22,3v7,2,13,5,18,9v5,4,9,9,12,16v3,6,4,13,4,21v0,6,-1,12,-3,16v-2,5,-5,10,-8,14v-3,4,-7,8,-12,11r-13,10v-8,4,-8,4,-15,8v-4,3,-9,6,-13,9v-4,3,-7,6,-10,9v-3,3,-5,6,-6,10r77,0r0,25xm13,-229v6,0,12,0,17,-1v6,-1,11,-2,15,-5v5,-2,8,-4,11,-7v3,-3,5,-7,7,-12r25,0r0,156r-31,0r0,-110r-44,0r0,-21xm200,-261r28,0r-150,270r-29,0","w":300},"\u00be":{"d":"53,-192v4,1,9,0,13,0v4,-1,8,-2,11,-4v4,-2,7,-4,9,-7v2,-3,3,-7,3,-11v0,-3,-1,-6,-2,-8r-6,-6v-3,-1,-5,-2,-8,-3v-3,0,-6,-1,-9,-1v-8,0,-14,3,-19,8v-5,5,-8,12,-7,20r-29,0v1,-17,6,-30,16,-39v10,-9,23,-14,39,-14v7,0,14,1,20,2v6,2,12,4,17,7v5,4,9,8,12,13v3,6,5,12,5,20v0,7,-2,14,-6,20v-4,5,-10,9,-17,12r0,1v9,2,16,6,21,12v6,7,8,16,8,26v0,8,-1,15,-4,21v-4,6,-8,11,-13,15v-6,4,-12,8,-19,10v-7,2,-15,3,-23,3v-20,0,-35,-5,-44,-15v-10,-10,-15,-23,-15,-41r29,0v-1,9,1,16,7,22v5,6,13,9,23,9v8,0,15,-3,21,-7v6,-5,9,-11,9,-19v0,-6,-1,-10,-3,-13v-3,-4,-6,-6,-10,-8v-4,-2,-9,-3,-14,-3v-5,-1,-10,-1,-15,-1r0,-21xm221,-261r28,0r-150,270r-28,0xm241,-119r-1,0r-42,57r43,0r0,-57xm272,0r-31,0r0,-35r-70,0r0,-29r66,-90r35,0r0,92r17,0r0,27r-17,0r0,35","w":300},"\u00bf":{"d":"124,-191r0,45r-48,0r0,-45r48,0xm183,-14v0,13,-2,24,-6,35v-4,10,-10,19,-18,27v-7,8,-16,14,-27,18v-11,4,-23,6,-36,6v-11,0,-21,-2,-31,-5v-9,-3,-17,-8,-25,-14v-7,-6,-12,-13,-16,-22v-4,-9,-6,-19,-6,-30v0,-8,1,-16,2,-22v2,-6,5,-11,8,-16v3,-4,6,-8,10,-11v3,-4,7,-7,11,-11v5,-4,9,-7,13,-11v4,-3,7,-7,10,-12v3,-4,5,-10,7,-16v1,-6,2,-13,2,-22r39,0v0,11,-1,20,-2,27v-1,8,-3,14,-5,20v-2,5,-5,10,-9,14v-3,4,-7,8,-12,13r-11,9v-4,3,-7,6,-10,10v-2,3,-4,7,-6,11v-2,4,-2,10,-2,16v0,7,1,12,3,17v3,5,6,9,9,12v4,3,8,5,12,7v4,1,8,2,11,2v15,0,26,-5,33,-15v7,-9,10,-22,10,-37r42,0"},"\u00c0":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0xm114,-334r33,51r-30,0r-51,-51r48,0","w":240},"\u00c1":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0xm125,-329r49,0r-51,52r-30,0","w":240},"\u00c2":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0xm95,-283r-33,0r38,-51r40,0r39,51r-34,0r-25,-32","w":240},"\u00c3":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0xm184,-328v-1,6,-3,11,-5,16v-1,5,-4,10,-7,13v-3,4,-7,7,-12,9v-4,2,-10,3,-16,3v-4,0,-9,0,-13,-2v-5,-1,-9,-2,-14,-4v-5,-2,-9,-4,-13,-5v-5,-1,-8,-2,-12,-2v-4,0,-7,2,-10,5v-3,3,-5,7,-5,10r-20,0v0,-5,2,-9,3,-14v2,-5,5,-9,8,-13v3,-4,7,-8,11,-10v5,-3,9,-4,15,-4v6,0,11,1,16,2v5,2,9,3,13,5v6,3,6,3,12,5v4,1,7,2,10,2v6,0,10,-2,13,-4v2,-3,4,-7,5,-12r21,0","w":240},"\u00c4":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0xm69,-287r0,-38r41,0r0,38r-41,0xm172,-325r0,38r-41,0r0,-38r41,0","w":240},"\u00c5":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-39,-111r-1,0xm98,-306v0,6,2,11,7,16v4,4,9,6,15,6v6,0,11,-2,16,-6v4,-5,6,-10,6,-16v0,-6,-2,-11,-6,-15v-5,-4,-10,-7,-16,-7v-6,0,-11,3,-15,7v-5,4,-7,9,-7,15xm120,-269v-5,0,-10,-1,-14,-3v-4,-2,-8,-4,-12,-8v-3,-3,-6,-7,-8,-11v-2,-5,-3,-10,-3,-15v0,-5,1,-9,3,-14v2,-4,5,-8,8,-12v4,-3,8,-6,12,-8v4,-2,9,-3,14,-3v5,0,10,1,14,3v5,2,9,5,12,8v4,4,7,8,8,12v2,5,3,9,3,14v0,5,-1,10,-3,15v-1,4,-4,8,-8,11v-3,4,-7,6,-12,8v-4,2,-9,3,-14,3","w":240},"\u00c6":{"d":"125,-257r208,0r0,39r-126,0r0,67r118,0r0,37r-118,0r0,75r128,0r0,39r-170,0r0,-66r-87,0r-30,66r-51,0xm95,-100r70,0r0,-118r-13,0","w":346},"\u00c7":{"d":"246,-98v-1,15,-4,29,-9,42v-6,13,-13,23,-23,33v-9,9,-20,16,-33,21v-13,5,-27,8,-42,8r-11,15r0,1v1,-1,3,-1,5,-1r7,0v0,0,7,0,10,1v4,1,7,3,10,5v3,2,5,5,7,8v2,4,3,8,3,12v0,6,-1,12,-4,16v-2,4,-6,7,-10,10v-4,2,-8,4,-14,5v-5,1,-10,2,-15,2v-6,0,-12,-1,-19,-2v-8,-1,-14,-3,-18,-6r6,-14v6,1,6,1,12,3v3,2,7,2,12,2r7,0v3,-1,5,-1,7,-2v2,-1,4,-3,6,-5v1,-2,1,-4,1,-7v0,-5,-1,-8,-5,-11v-3,-2,-7,-3,-11,-3v-5,0,-10,1,-14,4r-8,-7r20,-27v-17,-1,-33,-6,-46,-14v-14,-7,-25,-17,-35,-29v-9,-12,-16,-26,-21,-42v-5,-15,-7,-31,-7,-49v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11v14,0,28,2,40,6v13,4,24,9,34,17v10,8,18,17,24,28v6,10,9,23,11,37r-45,0v-2,-8,-5,-15,-8,-21v-3,-6,-8,-11,-13,-16v-5,-5,-11,-8,-19,-11v-7,-2,-15,-3,-24,-3v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v10,0,19,-1,26,-5v8,-3,15,-8,20,-14v6,-6,10,-13,13,-22v3,-8,5,-17,6,-26r44,0","w":259},"\u00c8":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm108,-334r33,51r-30,0r-51,-51r48,0","w":226},"\u00c9":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm119,-334r48,0r-51,51r-30,0","w":226},"\u00ca":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm88,-283r-33,0r39,-51r40,0r38,51r-33,0r-26,-32","w":226},"\u00cb":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm62,-287r0,-38r41,0r0,38r-41,0xm165,-325r0,38r-41,0r0,-38r41,0","w":226},"\u00cc":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm45,-334r32,51r-29,0r-52,-51r49,0","w":100},"\u00cd":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm55,-332r49,0r-51,51r-30,0","w":100},"\u00ce":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm25,-283r-33,0r38,-51r40,0r39,51r-33,0r-26,-32","w":100},"\u00cf":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm-1,-287r0,-38r41,0r0,38r-41,0xm102,-325r0,38r-41,0r0,-38r41,0","w":100},"\u00d0":{"d":"72,-151r71,0r0,37r-71,0r0,77r45,0v17,0,31,-2,43,-7v11,-4,20,-11,26,-19v6,-8,11,-18,13,-29v2,-12,3,-24,3,-37v0,-12,-1,-25,-3,-36v-2,-11,-7,-21,-13,-29v-6,-8,-15,-15,-26,-19v-12,-5,-26,-7,-43,-7r-45,0r0,69xm27,-114r-24,0r0,-37r24,0r0,-106r107,0v20,0,37,3,51,10v14,7,26,16,35,28v9,11,16,25,21,40v4,16,6,33,6,50v0,18,-2,35,-6,51v-5,15,-12,29,-21,40v-9,12,-21,21,-35,28v-14,7,-31,10,-51,10r-107,0r0,-114","w":259},"\u00d1":{"d":"26,-257r47,0r117,189r1,0r0,-189r43,0r0,257r-48,0r-117,-189r-1,0r0,189r-42,0r0,-257xm194,-328v-1,6,-3,11,-4,16v-2,5,-5,10,-8,13v-3,4,-7,7,-12,9v-4,2,-10,3,-16,3v-4,0,-9,0,-13,-2v-5,-1,-9,-2,-14,-4v-5,-2,-9,-4,-13,-5v-5,-1,-8,-2,-12,-2v-4,0,-7,2,-10,5v-3,3,-5,7,-5,10r-20,0v0,-5,2,-9,4,-14v1,-5,4,-9,7,-13v3,-4,7,-8,11,-10v5,-3,10,-4,15,-4v6,0,11,1,16,2v5,2,9,3,13,5v6,3,6,3,12,5v4,1,7,2,11,2v5,0,9,-2,12,-4v2,-3,4,-7,6,-12r20,0","w":259},"\u00d2":{"d":"137,-226v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8xm137,-263v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11xm131,-334r33,51r-30,0r-51,-51r48,0","w":273},"\u00d3":{"d":"137,-226v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8xm137,-263v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11xm142,-329r49,0r-51,52r-30,0","w":273},"\u00d4":{"d":"137,-226v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8xm137,-263v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11xm112,-283r-34,0r39,-51r40,0r39,51r-34,0r-25,-32","w":273},"\u00d5":{"d":"137,-226v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8xm137,-263v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11xm201,-328v-1,6,-3,11,-5,16v-1,5,-4,10,-7,13v-3,4,-7,7,-12,9v-4,2,-10,3,-16,3v-5,0,-9,0,-13,-2v-5,-1,-10,-2,-14,-4v-5,-2,-9,-4,-14,-5v-4,-1,-8,-2,-11,-2v-4,0,-8,2,-11,5v-3,3,-4,7,-4,10r-21,0v1,-5,2,-9,4,-14v2,-5,5,-9,8,-13v3,-4,7,-8,11,-10v4,-3,9,-4,15,-4v6,0,11,1,16,2v5,2,9,3,13,5v6,3,6,3,12,5v3,1,7,2,10,2v6,0,10,-2,12,-4v3,-3,5,-7,6,-12r21,0","w":273},"\u00d6":{"d":"137,-226v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,13,1,25,4,36v3,12,8,23,14,32v6,9,14,17,24,22v10,6,22,8,36,8v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-12,-2,-24,-5,-36v-3,-11,-7,-22,-13,-31v-7,-9,-15,-17,-25,-22v-10,-6,-22,-8,-35,-8xm137,-263v19,0,36,3,51,11v16,7,29,17,39,29v11,12,19,26,24,43v6,16,9,33,9,51v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-19,0,-37,-3,-52,-10v-15,-8,-28,-17,-39,-29v-10,-13,-18,-27,-24,-43v-6,-17,-8,-34,-8,-53v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11xm86,-287r0,-38r41,0r0,38r-41,0xm189,-325r0,38r-41,0r0,-38r41,0","w":273},"\u00d7":{"d":"20,-154r31,-20r57,57r57,-57r31,20r-63,63r63,63r-31,20r-57,-58r-57,58r-31,-20r62,-63","w":216},"\u00d8":{"d":"259,-251r-28,32v9,12,16,26,21,41v5,16,8,32,8,49v0,19,-3,36,-9,53v-5,16,-13,30,-24,43v-10,12,-23,21,-39,29v-15,7,-32,10,-51,10v-17,0,-32,-3,-45,-8v-13,-5,-25,-12,-35,-21r-27,30r-16,-13r29,-32v-10,-12,-17,-26,-22,-41v-5,-16,-7,-32,-7,-50v0,-18,2,-35,8,-51v6,-17,14,-31,24,-43v11,-12,24,-22,39,-29v15,-8,33,-11,52,-11v16,0,31,2,45,8v13,5,25,12,35,21r27,-30xm84,-53v6,7,14,12,22,16v9,4,19,6,31,6v13,0,25,-2,35,-8v10,-5,18,-13,25,-22v6,-9,10,-20,13,-32v3,-11,5,-23,5,-36v0,-10,-1,-20,-3,-30v-2,-10,-6,-19,-10,-27xm190,-204v-6,-7,-13,-12,-22,-16v-9,-4,-19,-6,-31,-6v-14,0,-26,2,-36,8v-10,5,-18,13,-24,22v-6,9,-11,20,-14,31v-3,12,-4,24,-4,36v0,11,1,21,3,31v2,10,5,19,10,27","w":273},"\u00d9":{"d":"24,-257r45,0r0,150v0,8,1,17,2,26v1,9,3,17,7,24v4,7,10,13,18,17v8,5,19,7,34,7v15,0,26,-2,34,-7v8,-4,14,-10,18,-17v4,-7,6,-15,7,-24v1,-9,1,-18,1,-26r0,-150r45,0r0,164v0,17,-2,31,-7,44v-5,12,-12,22,-22,30v-9,9,-20,15,-33,19v-13,4,-27,6,-43,6v-16,0,-30,-2,-43,-6v-13,-4,-24,-10,-34,-19v-9,-8,-16,-18,-21,-30v-5,-13,-8,-27,-8,-44r0,-164xm125,-334r32,51r-30,0r-51,-51r49,0","w":259},"\u00da":{"d":"24,-257r45,0r0,150v0,8,1,17,2,26v1,9,3,17,7,24v4,7,10,13,18,17v8,5,19,7,34,7v15,0,26,-2,34,-7v8,-4,14,-10,18,-17v4,-7,6,-15,7,-24v1,-9,1,-18,1,-26r0,-150r45,0r0,164v0,17,-2,31,-7,44v-5,12,-12,22,-22,30v-9,9,-20,15,-33,19v-13,4,-27,6,-43,6v-16,0,-30,-2,-43,-6v-13,-4,-24,-10,-34,-19v-9,-8,-16,-18,-21,-30v-5,-13,-8,-27,-8,-44r0,-164xm135,-329r49,0r-51,52r-30,0","w":259},"\u00db":{"d":"24,-257r45,0r0,150v0,8,1,17,2,26v1,9,3,17,7,24v4,7,10,13,18,17v8,5,19,7,34,7v15,0,26,-2,34,-7v8,-4,14,-10,18,-17v4,-7,6,-15,7,-24v1,-9,1,-18,1,-26r0,-150r45,0r0,164v0,17,-2,31,-7,44v-5,12,-12,22,-22,30v-9,9,-20,15,-33,19v-13,4,-27,6,-43,6v-16,0,-30,-2,-43,-6v-13,-4,-24,-10,-34,-19v-9,-8,-16,-18,-21,-30v-5,-13,-8,-27,-8,-44r0,-164xm105,-283r-33,0r38,-51r40,0r39,51r-33,0r-26,-32","w":259},"\u00dc":{"d":"24,-257r45,0r0,150v0,8,1,17,2,26v1,9,3,17,7,24v4,7,10,13,18,17v8,5,19,7,34,7v15,0,26,-2,34,-7v8,-4,14,-10,18,-17v4,-7,6,-15,7,-24v1,-9,1,-18,1,-26r0,-150r45,0r0,164v0,17,-2,31,-7,44v-5,12,-12,22,-22,30v-9,9,-20,15,-33,19v-13,4,-27,6,-43,6v-16,0,-30,-2,-43,-6v-13,-4,-24,-10,-34,-19v-9,-8,-16,-18,-21,-30v-5,-13,-8,-27,-8,-44r0,-164xm79,-287r0,-38r41,0r0,38r-41,0xm182,-325r0,38r-41,0r0,-38r41,0","w":259},"\u00dd":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101xm122,-329r49,0r-51,52r-30,0","w":233},"\u00de":{"d":"72,-96r66,0v5,0,10,-1,16,-3v5,-1,10,-3,14,-7v5,-3,8,-7,11,-13v3,-5,4,-12,4,-20v0,-8,-1,-15,-3,-21v-3,-5,-6,-10,-10,-13v-4,-3,-9,-5,-14,-7v-5,-1,-11,-1,-17,-1r-67,0r0,85xm27,-257r45,0r0,39r69,0v18,0,33,2,44,8v12,5,21,12,27,20v6,7,11,16,13,25v2,10,3,18,3,26v0,8,-1,17,-3,26v-2,9,-7,18,-13,26v-6,8,-15,14,-27,19v-11,6,-26,8,-44,8r-69,0r0,60r-45,0r0,-257","w":240},"\u00df":{"d":"23,-188v0,-12,2,-23,6,-32v4,-9,9,-17,16,-23v7,-7,15,-12,25,-15v9,-3,20,-5,32,-5v9,0,19,1,28,4v9,3,17,7,24,13v8,5,13,12,18,20v4,8,6,17,6,28v0,12,-3,23,-9,33v-6,10,-15,17,-28,21r0,1v8,1,15,3,21,7v6,3,11,8,15,14v4,5,7,12,9,19v3,7,4,14,4,21v0,13,-2,24,-6,35v-4,10,-9,20,-16,27v-8,8,-16,14,-26,19v-11,4,-22,6,-35,6v-6,0,-13,0,-20,-1r0,-32r6,0v2,1,5,1,8,1v11,0,19,-2,26,-6v6,-3,11,-8,14,-13v3,-6,5,-12,6,-18v1,-7,2,-13,2,-20v0,-8,-2,-16,-6,-21v-3,-6,-8,-10,-14,-14v-6,-3,-12,-6,-20,-7v-7,-1,-15,-2,-22,-2r0,-27v8,0,14,-1,21,-2v6,-1,11,-4,15,-7v4,-4,8,-8,10,-13v3,-5,4,-10,4,-17v0,-25,-12,-37,-36,-37v-4,0,-9,1,-13,2v-4,2,-8,4,-12,7v-4,4,-7,9,-9,15v-2,6,-3,13,-3,23r0,184r-41,0r0,-188","w":206},"\u00e0":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30xm95,-263r32,51r-29,0r-52,-51r49,0"},"\u00e1":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30xm105,-263r49,0r-51,51r-30,0"},"\u00e2":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30xm75,-212r-33,0r38,-51r40,0r39,51r-33,0r-26,-32"},"\u00e3":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30xm164,-257v-1,6,-3,11,-4,16v-2,5,-5,10,-8,13v-3,4,-7,7,-12,9v-4,2,-10,3,-16,3v-4,0,-9,0,-13,-2v-5,-1,-9,-3,-14,-4v-5,-2,-9,-4,-13,-5v-4,-1,-8,-2,-12,-2v-4,0,-7,2,-10,5v-3,3,-5,6,-5,10r-20,0v0,-5,2,-9,4,-14v2,-5,4,-9,7,-13v3,-4,7,-8,11,-10v5,-3,10,-4,15,-4v6,0,11,1,16,2v5,1,9,3,13,5v6,2,6,2,12,5v4,1,7,2,11,2v5,0,9,-2,12,-5v2,-2,4,-6,6,-11r20,0"},"\u00e4":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30xm49,-216r0,-39r41,0r0,39r-41,0xm152,-255r0,39r-41,0r0,-39r41,0"},"\u00e5":{"d":"177,-41v0,5,1,8,2,10v2,3,4,4,8,4r5,0v1,0,3,-1,5,-1r0,28v-1,1,-3,1,-5,2v-3,1,-5,1,-7,2v-3,0,-5,0,-8,1r-6,0v-8,0,-15,-2,-21,-5v-5,-3,-9,-9,-10,-18v-8,8,-18,14,-30,18v-12,3,-24,5,-35,5v-8,0,-16,-1,-24,-3v-8,-3,-14,-6,-20,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,13,-2,18,-3v5,-2,9,-4,12,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-9,-7v-4,-2,-8,-3,-13,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,27,-10v10,-2,20,-3,30,-3v9,0,18,1,27,3v9,2,17,5,24,9v7,4,13,10,17,17v4,7,6,15,6,25r0,96xm136,-93v-6,4,-13,6,-23,7v-9,1,-18,2,-27,4v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,4,1,8,4,11v2,4,5,6,9,8v4,2,8,3,12,4v5,0,9,1,12,1v5,0,10,-1,15,-2v5,-1,10,-3,15,-6v5,-3,9,-7,12,-11v3,-5,4,-10,4,-17r0,-30xm78,-235v0,6,3,11,7,16v5,4,10,6,15,6v6,0,12,-2,16,-6v4,-5,6,-10,6,-16v0,-6,-2,-11,-6,-15v-4,-5,-10,-7,-16,-7v-5,0,-10,2,-15,7v-4,4,-7,9,-7,15xm100,-198v-5,0,-9,-1,-14,-3v-4,-2,-8,-4,-11,-8v-4,-3,-7,-7,-9,-11v-2,-5,-3,-10,-3,-15v0,-5,1,-9,3,-14v2,-4,5,-8,9,-12v3,-3,7,-6,11,-8v5,-2,9,-3,14,-3v5,0,10,1,15,3v4,2,8,5,12,8v3,4,6,8,8,12v2,5,3,9,3,14v0,5,-1,10,-3,15v-2,4,-5,8,-8,11v-4,4,-8,6,-12,8v-5,2,-10,3,-15,3"},"\u00e6":{"d":"309,-59v-5,20,-16,36,-31,47v-15,11,-33,17,-53,17v-14,0,-27,-2,-40,-8v-12,-5,-22,-13,-29,-26v-8,12,-19,21,-33,26v-13,5,-28,8,-44,8v-10,0,-18,-1,-26,-3v-9,-3,-16,-6,-22,-10v-6,-5,-11,-11,-14,-17v-4,-7,-5,-15,-5,-24v0,-12,2,-21,6,-28v4,-8,10,-13,16,-17v7,-4,15,-7,23,-9v9,-2,18,-3,26,-4v8,-2,15,-3,21,-3v7,-1,12,-2,17,-3v5,-2,9,-4,11,-7v3,-3,5,-8,5,-14v0,-5,-1,-9,-4,-13v-2,-3,-5,-5,-8,-7v-4,-2,-8,-3,-12,-4v-4,0,-8,-1,-13,-1v-11,0,-21,3,-28,7v-7,5,-12,13,-13,23r-41,0v1,-12,4,-22,9,-30v5,-8,11,-14,19,-19v8,-5,17,-8,26,-10v10,-2,20,-3,30,-3v6,0,12,0,18,1v6,0,11,2,17,3v5,2,10,5,15,8v5,3,9,8,13,13v7,-9,16,-16,26,-19v11,-4,22,-6,33,-6v16,0,29,3,41,8v11,6,20,13,27,23v8,10,13,21,15,35v3,13,4,27,3,43r-135,0v0,7,1,14,3,20v2,7,5,13,9,18v4,5,9,9,15,12v6,3,14,5,22,5v11,0,20,-3,28,-9v7,-5,12,-13,16,-23r41,0xm136,-93v-2,3,-5,4,-8,5v-4,1,-8,2,-13,2v-4,1,-9,2,-14,2v-5,1,-10,1,-15,2v-4,1,-8,2,-13,3v-4,1,-7,3,-10,5v-3,3,-6,6,-8,9v-2,4,-2,9,-2,14v0,5,1,9,3,12v2,3,5,5,9,7v3,2,7,3,12,4v4,0,9,1,13,1v6,0,11,-1,17,-3v5,-1,10,-4,15,-7v4,-3,8,-7,10,-12v3,-4,4,-10,4,-16r0,-28xm269,-109v1,-15,-3,-27,-12,-36v-8,-9,-20,-14,-35,-14v-7,0,-14,2,-19,4v-6,3,-11,6,-15,11v-4,5,-7,10,-9,16v-2,6,-3,12,-4,19r94,0","w":320},"\u00e7":{"d":"188,-70v-3,23,-12,41,-25,54v-13,12,-31,19,-52,20r-13,17r0,1v1,-1,3,-1,5,-1r7,0v0,0,7,0,11,1v3,1,6,3,9,5v3,2,6,5,8,8v1,4,2,8,2,12v0,6,-1,12,-4,16v-2,4,-6,7,-10,10v-4,2,-8,4,-14,5v-5,1,-10,2,-15,2v-6,0,-12,-1,-19,-2v-7,-1,-13,-3,-18,-6r6,-14v6,1,6,1,12,3v4,2,8,2,12,2r7,0v3,-1,5,-1,7,-2v3,-1,4,-3,6,-5v1,-2,2,-4,2,-7v0,-5,-2,-8,-6,-11v-3,-2,-7,-3,-11,-3v-5,0,-10,1,-14,4r-8,-7r21,-28v-14,-1,-25,-4,-35,-9v-10,-5,-19,-12,-26,-21v-7,-8,-12,-18,-15,-29v-4,-11,-5,-23,-5,-36v0,-14,2,-27,5,-39v4,-13,10,-23,18,-32v7,-9,17,-16,28,-21v12,-6,25,-8,40,-8v11,0,21,1,31,4v10,3,19,7,26,12v8,6,14,13,19,21v4,9,7,19,8,30r-41,0v-1,-11,-6,-20,-14,-26v-7,-6,-17,-9,-28,-9v-6,0,-11,1,-17,3v-6,2,-12,5,-17,10v-5,5,-9,12,-12,21v-4,8,-5,20,-5,34v0,8,1,15,2,23v2,8,5,14,9,20v4,6,9,11,15,15v7,4,14,6,23,6v12,0,22,-4,30,-12v7,-7,12,-17,14,-31r41,0"},"\u00e8":{"d":"149,-109v0,-7,-1,-13,-4,-19v-2,-6,-5,-11,-9,-16v-4,-4,-9,-8,-14,-11v-6,-2,-12,-4,-19,-4v-8,0,-14,1,-20,4v-6,3,-11,6,-15,10v-4,5,-8,10,-10,16v-3,6,-4,13,-4,20r95,0xm54,-82v0,7,1,14,3,20v2,7,5,13,9,18v4,5,9,9,15,12v7,3,14,5,23,5v12,0,21,-3,29,-8v7,-5,12,-13,16,-23r39,0v-2,10,-6,19,-11,27v-6,8,-12,14,-19,20v-8,5,-16,9,-25,12v-10,3,-19,4,-29,4v-15,0,-28,-2,-39,-7v-11,-5,-21,-12,-29,-20v-8,-9,-14,-19,-17,-31v-4,-12,-6,-25,-6,-40v0,-13,2,-26,6,-37v4,-12,10,-23,18,-32v8,-9,17,-16,28,-21v11,-6,24,-8,38,-8v14,0,27,3,39,9v12,6,21,14,29,24v8,10,13,22,17,35v3,13,4,27,2,41r-136,0xm95,-263r32,51r-29,0r-52,-51r49,0"},"\u00e9":{"d":"149,-109v0,-7,-1,-13,-4,-19v-2,-6,-5,-11,-9,-16v-4,-4,-9,-8,-14,-11v-6,-2,-12,-4,-19,-4v-8,0,-14,1,-20,4v-6,3,-11,6,-15,10v-4,5,-8,10,-10,16v-3,6,-4,13,-4,20r95,0xm54,-82v0,7,1,14,3,20v2,7,5,13,9,18v4,5,9,9,15,12v7,3,14,5,23,5v12,0,21,-3,29,-8v7,-5,12,-13,16,-23r39,0v-2,10,-6,19,-11,27v-6,8,-12,14,-19,20v-8,5,-16,9,-25,12v-10,3,-19,4,-29,4v-15,0,-28,-2,-39,-7v-11,-5,-21,-12,-29,-20v-8,-9,-14,-19,-17,-31v-4,-12,-6,-25,-6,-40v0,-13,2,-26,6,-37v4,-12,10,-23,18,-32v8,-9,17,-16,28,-21v11,-6,24,-8,38,-8v14,0,27,3,39,9v12,6,21,14,29,24v8,10,13,22,17,35v3,13,4,27,2,41r-136,0xm105,-263r49,0r-51,51r-30,0"},"\u00ea":{"d":"149,-109v0,-7,-1,-13,-4,-19v-2,-6,-5,-11,-9,-16v-4,-4,-9,-8,-14,-11v-6,-2,-12,-4,-19,-4v-8,0,-14,1,-20,4v-6,3,-11,6,-15,10v-4,5,-8,10,-10,16v-3,6,-4,13,-4,20r95,0xm54,-82v0,7,1,14,3,20v2,7,5,13,9,18v4,5,9,9,15,12v7,3,14,5,23,5v12,0,21,-3,29,-8v7,-5,12,-13,16,-23r39,0v-2,10,-6,19,-11,27v-6,8,-12,14,-19,20v-8,5,-16,9,-25,12v-10,3,-19,4,-29,4v-15,0,-28,-2,-39,-7v-11,-5,-21,-12,-29,-20v-8,-9,-14,-19,-17,-31v-4,-12,-6,-25,-6,-40v0,-13,2,-26,6,-37v4,-12,10,-23,18,-32v8,-9,17,-16,28,-21v11,-6,24,-8,38,-8v14,0,27,3,39,9v12,6,21,14,29,24v8,10,13,22,17,35v3,13,4,27,2,41r-136,0xm75,-212r-33,0r38,-51r40,0r39,51r-33,0r-26,-32"},"\u00eb":{"d":"149,-109v0,-7,-1,-13,-4,-19v-2,-6,-5,-11,-9,-16v-4,-4,-9,-8,-14,-11v-6,-2,-12,-4,-19,-4v-8,0,-14,1,-20,4v-6,3,-11,6,-15,10v-4,5,-8,10,-10,16v-3,6,-4,13,-4,20r95,0xm54,-82v0,7,1,14,3,20v2,7,5,13,9,18v4,5,9,9,15,12v7,3,14,5,23,5v12,0,21,-3,29,-8v7,-5,12,-13,16,-23r39,0v-2,10,-6,19,-11,27v-6,8,-12,14,-19,20v-8,5,-16,9,-25,12v-10,3,-19,4,-29,4v-15,0,-28,-2,-39,-7v-11,-5,-21,-12,-29,-20v-8,-9,-14,-19,-17,-31v-4,-12,-6,-25,-6,-40v0,-13,2,-26,6,-37v4,-12,10,-23,18,-32v8,-9,17,-16,28,-21v11,-6,24,-8,38,-8v14,0,27,3,39,9v12,6,21,14,29,24v8,10,13,22,17,35v3,13,4,27,2,41r-136,0xm49,-216r0,-39r41,0r0,39r-41,0xm152,-255r0,39r-41,0r0,-39r41,0"},"\u00ec":{"d":"23,0r0,-186r41,0r0,186r-41,0xm38,-263r33,51r-30,0r-51,-51r48,0","w":86},"\u00ed":{"d":"23,0r0,-186r41,0r0,186r-41,0xm49,-263r48,0r-51,51r-30,0","w":86},"\u00ee":{"d":"23,0r0,-186r41,0r0,186r-41,0xm18,-212r-33,0r38,-51r40,0r39,51r-33,0r-26,-32","w":86},"\u00ef":{"d":"23,0r0,-186r41,0r0,186r-41,0xm-8,-216r0,-39r41,0r0,39r-41,0xm95,-255r0,39r-41,0r0,-39r41,0","w":86},"\u00f0":{"d":"52,-212r34,-17v-8,-4,-8,-4,-15,-7v-5,-2,-10,-4,-15,-5r27,-22v13,4,26,10,38,18r37,-18r18,17r-34,17v18,15,32,32,42,52v9,21,14,42,14,66v0,16,-2,31,-5,45v-4,14,-9,26,-17,37v-8,10,-18,19,-30,25v-12,6,-27,9,-45,9v-14,0,-26,-2,-36,-7v-11,-5,-20,-11,-27,-20v-8,-8,-13,-18,-17,-30v-4,-12,-6,-25,-6,-39v0,-11,2,-23,6,-34v3,-11,9,-21,16,-29v7,-8,15,-15,25,-20v10,-6,21,-8,33,-8v10,0,20,1,28,3v8,3,16,7,24,13r1,0v-4,-10,-10,-18,-17,-26v-7,-8,-15,-15,-22,-21r-39,18xm108,-150v-10,0,-18,2,-24,5v-7,4,-12,8,-16,14v-4,5,-7,12,-9,19v-2,8,-3,16,-3,24v0,8,1,16,3,23v2,7,5,14,9,19v3,6,8,11,14,14v6,3,13,5,22,5v8,0,15,-2,22,-6v6,-3,12,-8,17,-13v4,-6,8,-12,10,-20v3,-7,4,-15,4,-22v0,-8,-1,-15,-3,-23v-2,-7,-5,-14,-9,-20v-4,-5,-9,-10,-15,-14v-6,-3,-14,-5,-22,-5","w":213},"\u00f1":{"d":"22,-186r38,0r0,27r1,1v6,-10,15,-18,25,-24v10,-6,21,-9,33,-9v21,0,37,5,48,16v12,10,18,26,18,47r0,128r-41,0r0,-117v0,-15,-4,-25,-9,-32v-6,-6,-15,-10,-27,-10v-7,0,-14,1,-19,4v-6,3,-10,6,-14,10v-4,5,-7,10,-9,16v-2,6,-3,12,-3,19r0,110r-41,0r0,-186xm167,-257v-1,6,-2,11,-4,16v-2,5,-4,10,-8,13v-3,4,-7,7,-11,9v-5,2,-10,3,-17,3v-4,0,-8,0,-13,-2v-4,-1,-9,-3,-14,-4v-4,-2,-9,-4,-13,-5v-4,-1,-8,-2,-11,-2v-4,0,-8,2,-11,5v-3,3,-5,6,-5,10r-20,0v1,-5,2,-9,4,-14v2,-5,4,-9,7,-13v4,-4,7,-8,12,-10v4,-3,9,-4,14,-4v6,0,11,1,16,2v5,1,9,3,14,5v6,2,6,2,11,5v4,1,8,2,11,2v5,0,9,-2,12,-5v3,-2,5,-6,6,-11r20,0","w":206},"\u00f2":{"d":"107,5v-15,0,-28,-2,-40,-7v-11,-5,-21,-12,-29,-21v-8,-8,-15,-19,-19,-31v-4,-12,-6,-25,-6,-39v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v15,0,28,2,40,7v11,5,21,12,29,21v8,8,14,19,19,31v4,12,6,25,6,39v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7xm107,-27v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-8,-1,-16,-3,-24v-2,-8,-5,-15,-10,-21v-4,-6,-10,-11,-16,-15v-7,-4,-15,-6,-24,-6v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,8,1,16,3,24v2,7,5,15,10,21v4,6,9,11,16,15v7,4,15,6,24,6xm101,-263r33,51r-30,0r-51,-51r48,0","w":213},"\u00f3":{"d":"107,5v-15,0,-28,-2,-40,-7v-11,-5,-21,-12,-29,-21v-8,-8,-15,-19,-19,-31v-4,-12,-6,-25,-6,-39v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v15,0,28,2,40,7v11,5,21,12,29,21v8,8,14,19,19,31v4,12,6,25,6,39v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7xm107,-27v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-8,-1,-16,-3,-24v-2,-8,-5,-15,-10,-21v-4,-6,-10,-11,-16,-15v-7,-4,-15,-6,-24,-6v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,8,1,16,3,24v2,7,5,15,10,21v4,6,9,11,16,15v7,4,15,6,24,6xm112,-263r49,0r-52,51r-29,0","w":213},"\u00f4":{"d":"107,5v-15,0,-28,-2,-40,-7v-11,-5,-21,-12,-29,-21v-8,-8,-15,-19,-19,-31v-4,-12,-6,-25,-6,-39v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v15,0,28,2,40,7v11,5,21,12,29,21v8,8,14,19,19,31v4,12,6,25,6,39v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7xm107,-27v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-8,-1,-16,-3,-24v-2,-8,-5,-15,-10,-21v-4,-6,-10,-11,-16,-15v-7,-4,-15,-6,-24,-6v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,8,1,16,3,24v2,7,5,15,10,21v4,6,9,11,16,15v7,4,15,6,24,6xm81,-212r-33,0r39,-51r40,0r39,51r-34,0r-25,-32","w":213},"\u00f5":{"d":"107,5v-15,0,-28,-2,-40,-7v-11,-5,-21,-12,-29,-21v-8,-8,-15,-19,-19,-31v-4,-12,-6,-25,-6,-39v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v15,0,28,2,40,7v11,5,21,12,29,21v8,8,14,19,19,31v4,12,6,25,6,39v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7xm107,-27v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-8,-1,-16,-3,-24v-2,-8,-5,-15,-10,-21v-4,-6,-10,-11,-16,-15v-7,-4,-15,-6,-24,-6v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,8,1,16,3,24v2,7,5,15,10,21v4,6,9,11,16,15v7,4,15,6,24,6xm170,-257v-1,6,-2,11,-4,16v-2,5,-4,10,-8,13v-3,4,-7,7,-11,9v-5,2,-10,3,-17,3v-4,0,-8,0,-13,-2v-4,-1,-9,-3,-13,-4v-5,-2,-10,-4,-14,-5v-4,-1,-8,-2,-11,-2v-4,0,-8,2,-11,5v-3,3,-4,6,-4,10r-21,0v1,-5,2,-9,4,-14v2,-5,5,-9,8,-13v3,-4,7,-8,11,-10v4,-3,9,-4,15,-4v5,0,11,1,15,2v5,1,10,3,14,5v6,2,6,2,12,5v3,1,7,2,10,2v5,0,9,-2,12,-5v3,-2,5,-6,6,-11r20,0","w":213},"\u00f6":{"d":"107,5v-15,0,-28,-2,-40,-7v-11,-5,-21,-12,-29,-21v-8,-8,-15,-19,-19,-31v-4,-12,-6,-25,-6,-39v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v15,0,28,2,40,7v11,5,21,12,29,21v8,8,14,19,19,31v4,12,6,25,6,39v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7xm107,-27v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-8,-1,-16,-3,-24v-2,-8,-5,-15,-10,-21v-4,-6,-10,-11,-16,-15v-7,-4,-15,-6,-24,-6v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,8,1,16,3,24v2,7,5,15,10,21v4,6,9,11,16,15v7,4,15,6,24,6xm55,-216r0,-39r41,0r0,39r-41,0xm158,-255r0,39r-41,0r0,-39r41,0","w":213},"\u00f7":{"d":"108,9v-7,0,-13,-3,-18,-8v-5,-5,-8,-11,-8,-18v0,-7,3,-13,8,-18v5,-5,11,-8,18,-8v7,0,13,3,18,8v5,5,8,11,8,18v0,3,-1,7,-2,10v-2,3,-4,5,-6,8v-2,2,-5,4,-8,6v-3,1,-6,2,-10,2xm108,-139v-7,0,-13,-3,-18,-8v-5,-5,-8,-11,-8,-18v0,-7,3,-14,8,-19v5,-5,11,-7,18,-7v7,0,13,2,18,8v5,5,8,11,8,18v0,3,-1,6,-2,9r-6,9v-2,2,-5,4,-8,6v-3,1,-6,2,-10,2xm17,-73r0,-36r182,0r0,36r-182,0","w":216},"\u00f8":{"d":"143,-144v-5,-4,-10,-8,-16,-11v-6,-2,-12,-4,-20,-4v-9,0,-17,2,-24,6v-7,4,-12,9,-16,15v-5,6,-8,13,-10,21v-2,8,-3,16,-3,24v0,6,1,13,2,19v1,7,3,13,6,18xm12,0r23,-26v-15,-17,-22,-40,-22,-67v0,-14,2,-27,6,-39v4,-12,11,-23,19,-31v8,-9,18,-16,29,-21v12,-5,25,-7,40,-7v13,0,24,2,34,5v11,4,19,8,27,15r23,-25r11,10r-23,25v15,18,22,41,22,68v0,14,-2,27,-6,39v-5,12,-11,23,-19,31v-8,9,-18,16,-29,21v-12,5,-25,7,-40,7v-13,0,-24,-2,-34,-5v-10,-4,-19,-9,-27,-15r-23,25xm71,-42v5,4,10,8,16,11v5,2,12,4,20,4v9,0,17,-2,24,-6v6,-4,12,-9,16,-15v5,-6,8,-14,10,-21v2,-8,3,-16,3,-24v0,-7,-1,-13,-2,-19v-1,-7,-4,-13,-6,-18","w":213},"\u00f9":{"d":"185,0r-40,0r0,-26r-1,0v-5,9,-13,17,-22,23v-10,5,-21,8,-31,8v-24,0,-42,-6,-53,-18v-11,-12,-16,-31,-16,-55r0,-118r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186xm98,-263r33,51r-30,0r-51,-51r48,0","w":206},"\u00fa":{"d":"185,0r-40,0r0,-26r-1,0v-5,9,-13,17,-22,23v-10,5,-21,8,-31,8v-24,0,-42,-6,-53,-18v-11,-12,-16,-31,-16,-55r0,-118r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186xm109,-263r48,0r-51,51r-30,0","w":206},"\u00fb":{"d":"185,0r-40,0r0,-26r-1,0v-5,9,-13,17,-22,23v-10,5,-21,8,-31,8v-24,0,-42,-6,-53,-18v-11,-12,-16,-31,-16,-55r0,-118r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186xm78,-212r-33,0r39,-51r39,0r39,51r-33,0r-26,-32","w":206},"\u00fc":{"d":"185,0r-40,0r0,-26r-1,0v-5,9,-13,17,-22,23v-10,5,-21,8,-31,8v-24,0,-42,-6,-53,-18v-11,-12,-16,-31,-16,-55r0,-118r41,0r0,114v0,16,3,28,9,35v6,6,15,10,26,10v9,0,16,-2,22,-4v6,-3,10,-7,14,-11v4,-4,6,-10,8,-16v1,-6,2,-13,2,-20r0,-108r41,0r0,186xm52,-216r0,-39r41,0r0,39r-41,0xm155,-255r0,39r-41,0r0,-39r41,0","w":206},"\u00fd":{"d":"1,-186r45,0r49,139r0,0r48,-139r42,0r-72,196v-5,13,-5,13,-10,24v-3,8,-7,15,-12,21v-4,5,-10,10,-17,14v-7,3,-16,5,-27,5v-9,0,-19,-1,-28,-2r0,-35v3,1,6,1,9,2v4,0,7,1,10,1v5,0,9,-1,12,-2v3,-1,6,-3,8,-5v2,-3,4,-5,5,-9v1,-3,3,-6,4,-10r5,-15xm99,-263r48,0r-51,51r-30,0","w":186},"\u00fe":{"d":"166,-93v0,-8,-1,-16,-3,-24v-2,-8,-6,-15,-10,-21v-4,-7,-10,-11,-16,-15v-7,-4,-14,-6,-23,-6v-17,0,-30,6,-39,18v-8,12,-13,28,-13,48v0,9,1,18,4,26v2,8,5,15,10,21v5,6,10,10,16,14v7,3,14,5,22,5v10,0,18,-2,24,-6v7,-4,12,-9,16,-15v4,-6,7,-13,9,-21v2,-8,3,-16,3,-24xm23,-257r41,0r0,95r0,0v3,-5,7,-9,11,-12v4,-4,8,-7,13,-9v5,-3,10,-5,16,-6v5,-1,11,-2,16,-2v15,0,27,2,38,8v11,5,20,12,27,21v8,9,13,19,17,31v3,12,5,25,5,39v0,12,-2,24,-5,36v-3,12,-8,22,-15,31v-6,9,-15,17,-25,22v-10,5,-22,8,-35,8v-6,0,-12,-1,-18,-2v-6,-1,-12,-2,-17,-5v-6,-2,-11,-5,-16,-9v-4,-3,-8,-8,-12,-13r0,0r0,93r-41,0r0,-326","w":219},"\u00ff":{"d":"1,-186r45,0r49,139r0,0r48,-139r42,0r-72,196v-5,13,-5,13,-10,24v-3,8,-7,15,-12,21v-4,5,-10,10,-17,14v-7,3,-16,5,-27,5v-9,0,-19,-1,-28,-2r0,-35v3,1,6,1,9,2v4,0,7,1,10,1v5,0,9,-1,12,-2v3,-1,6,-3,8,-5v2,-3,4,-5,5,-9v1,-3,3,-6,4,-10r5,-15xm42,-216r0,-39r41,0r0,39r-41,0xm145,-255r0,39r-41,0r0,-39r41,0","w":186},"!":{"d":"26,-45r48,0r0,45r-48,0r0,-45xm28,-257r45,0r0,74r-12,111r-21,0r-12,-111r0,-74","w":100}}});

Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica 45 Light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 4 2 0 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-26 -348 325 77","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"37,-64r13,0r6,-116r0,-77r-25,0r0,77xm59,0r0,-38r-31,0r0,38r31,0","w":86},"\"":{"d":"31,-170r23,0r0,-87r-23,0r0,87xm79,-170r23,0r0,-87r-23,0r0,87","w":133},"#":{"d":"179,-96r-38,0r8,-57r40,0r0,-16r-38,0r11,-80r-18,0r-11,80r-51,0r12,-80r-18,0r-12,80r-41,0r0,16r39,0r-8,57r-41,0r0,16r39,0r-11,80r18,0r11,-80r51,0r-11,80r18,0r11,-80r40,0r0,-16xm131,-153r-8,57r-51,0r8,-57r51,0"},"$":{"d":"107,-117v7,1,14,3,21,6v7,2,13,5,19,9v6,4,11,8,14,14v4,6,6,13,6,22v0,9,-2,17,-5,24v-4,6,-8,12,-14,16v-6,4,-12,8,-19,9v-7,2,-15,3,-22,3r0,-103xm93,-143v-7,-2,-14,-3,-20,-5v-6,-2,-12,-5,-17,-8v-5,-4,-9,-8,-12,-13v-3,-5,-4,-12,-4,-21v0,-9,1,-17,4,-24v2,-7,6,-12,11,-17v5,-4,11,-7,17,-9v7,-2,13,-3,21,-3r0,100xm10,-82v1,27,8,48,21,62v13,14,33,22,62,25r0,31r14,0r0,-31v10,0,20,-1,30,-4v10,-3,19,-8,27,-14v8,-6,14,-13,19,-22v4,-9,7,-20,7,-32v0,-12,-3,-23,-7,-31v-5,-8,-12,-15,-19,-21v-8,-5,-17,-10,-27,-13v-10,-3,-20,-6,-30,-8r0,-103v15,0,28,5,38,16v10,10,15,25,15,43r23,0v0,-12,-2,-23,-6,-32v-4,-10,-9,-18,-16,-25v-7,-7,-16,-12,-25,-16v-9,-4,-19,-5,-29,-5r0,-29r-14,0r0,29v-11,0,-21,1,-30,4v-9,4,-17,8,-24,14v-7,7,-12,14,-16,23v-4,8,-6,18,-6,29v0,12,2,23,6,31v4,8,10,15,16,20v7,6,15,10,25,13v9,3,18,6,29,8r0,106v-19,-2,-34,-9,-44,-20v-10,-11,-16,-27,-16,-48r-23,0"},"%":{"d":"82,-238v8,0,14,2,19,5v5,3,8,7,11,13v3,5,5,10,6,16v2,7,2,12,2,18v0,6,0,12,-2,18v-1,6,-3,11,-6,16v-3,5,-6,10,-11,13v-5,3,-11,5,-19,5v-8,0,-14,-2,-19,-5v-5,-3,-9,-8,-12,-13v-2,-5,-4,-10,-5,-16v-2,-6,-2,-12,-2,-18v0,-6,0,-11,2,-18v1,-6,3,-11,5,-16v3,-6,7,-10,12,-13v5,-3,11,-5,19,-5xm68,12r18,0r162,-273r-17,0xm240,-131v-10,0,-19,2,-26,6v-7,3,-13,8,-18,14v-4,6,-8,13,-10,22v-2,8,-3,17,-3,26v0,10,1,19,3,27v2,8,6,16,10,22v5,6,11,11,18,14v7,4,16,5,26,5v10,0,19,-1,26,-5v8,-3,13,-8,18,-14v5,-6,8,-14,10,-22v2,-8,3,-17,3,-27v0,-9,-1,-18,-3,-26v-2,-9,-5,-16,-10,-22v-5,-6,-10,-11,-18,-14v-7,-4,-16,-6,-26,-6xm240,-114v8,0,14,1,19,4v5,4,8,8,11,13v3,5,5,11,6,17v2,6,2,12,2,18v0,5,0,11,-2,17v-1,6,-3,12,-6,17v-3,5,-6,9,-11,12v-5,4,-11,5,-19,5v-8,0,-14,-1,-19,-5v-5,-3,-9,-7,-11,-12v-3,-5,-5,-11,-6,-17v-2,-6,-2,-12,-2,-17v0,-6,0,-12,2,-18v1,-6,3,-12,6,-17v2,-5,6,-9,11,-13v5,-3,11,-4,19,-4xm82,-254v-10,0,-19,2,-26,5v-7,4,-13,8,-18,14v-4,7,-8,14,-10,22v-2,8,-3,17,-3,27v0,9,1,18,3,27v2,8,6,15,10,21v5,6,11,11,18,15v7,3,16,5,26,5v10,0,19,-2,26,-5v8,-4,13,-9,18,-15v5,-6,8,-13,10,-21v2,-9,3,-18,3,-27v0,-10,-1,-19,-3,-27v-2,-8,-5,-15,-10,-22v-5,-6,-10,-10,-18,-14v-7,-3,-16,-5,-26,-5","w":320},"&":{"d":"153,-50v-7,10,-16,19,-26,26v-10,7,-22,10,-34,10v-8,0,-15,-1,-21,-3v-7,-3,-13,-6,-18,-11v-5,-4,-9,-10,-13,-16v-3,-6,-4,-13,-4,-20v0,-8,1,-15,4,-22v4,-6,8,-12,13,-17v5,-5,10,-10,17,-14v6,-4,12,-8,18,-11xm195,0r28,0r-43,-52v6,-11,10,-22,12,-34v2,-11,3,-21,3,-28r-23,0v0,10,0,18,-1,25v-1,6,-3,12,-6,18r-56,-67v6,-4,12,-9,18,-13v6,-4,12,-9,16,-15v5,-5,9,-11,12,-17v3,-7,4,-14,4,-22v0,-8,-1,-15,-4,-21v-3,-7,-7,-12,-13,-17v-5,-4,-11,-8,-18,-10v-6,-3,-14,-4,-22,-4v-8,0,-15,1,-22,4v-7,2,-13,6,-18,10v-5,5,-9,10,-12,17v-3,6,-5,13,-5,21v0,6,1,12,3,18v2,5,5,11,8,16v3,5,6,10,10,14v6,7,6,7,11,14v-7,4,-14,8,-22,13v-7,5,-14,11,-20,17v-6,7,-11,14,-15,21v-4,8,-6,16,-6,25v0,12,2,22,6,31v4,9,9,17,16,23v7,6,16,11,25,14v9,3,20,4,31,4v15,0,29,-3,42,-10v13,-7,24,-17,33,-28xm102,-238v10,0,18,3,24,8v7,6,10,14,10,25v0,6,-1,12,-3,17v-3,5,-6,10,-10,14v-3,4,-8,8,-12,12v-5,3,-10,6,-14,9v-4,-5,-4,-5,-10,-11v-3,-5,-6,-9,-9,-13v-3,-5,-5,-9,-7,-14v-2,-5,-3,-9,-3,-14v0,-11,3,-19,10,-25v7,-5,15,-8,24,-8","w":219},"'":{"d":"39,-170r23,0r0,-87r-23,0r0,87","w":100},"(":{"d":"87,69v-7,-11,-13,-23,-19,-36v-5,-13,-10,-26,-14,-39v-4,-14,-7,-28,-10,-41v-2,-14,-3,-28,-3,-40v0,-32,4,-63,11,-93v7,-29,19,-57,35,-82r-18,0v-16,24,-28,50,-37,78v-9,28,-14,58,-14,88v0,16,2,31,4,45v2,14,5,28,10,41v4,13,9,27,16,40v6,12,13,26,21,39r18,0","w":86},")":{"d":"0,-262v6,11,13,23,18,36v6,12,11,25,15,39v4,13,7,27,9,41v3,13,4,27,4,40v0,32,-4,62,-11,92v-8,29,-19,57,-35,83r18,0v15,-25,28,-51,37,-79v9,-28,13,-57,13,-88v0,-16,-1,-30,-3,-45v-2,-14,-6,-27,-10,-41v-4,-13,-10,-26,-16,-39v-6,-13,-13,-26,-21,-39r-18,0","w":86},"*":{"d":"51,-200r-26,35r11,8r27,-36r26,36r11,-8r-25,-35r42,-14r-5,-14r-42,15r0,-44r-14,0r0,44r-41,-15r-5,14","w":126},"+":{"d":"99,-100r-81,0r0,19r81,0r0,81r19,0r0,-81r81,0r0,-19r-81,0r0,-81r-19,0r0,81","w":216},",":{"d":"35,-38r0,38r15,0r0,10v-1,3,-2,6,-4,10v-1,3,-3,6,-5,8v-2,3,-5,5,-8,6r0,15v6,-1,10,-4,14,-7v4,-3,8,-7,10,-12v3,-4,5,-9,6,-14v1,-5,2,-10,2,-16r0,-38r-30,0","w":100},"-":{"d":"112,-89r0,-20r-90,0r0,20r90,0","w":133},"\u00ad":{"d":"112,-89r0,-20r-90,0r0,20r90,0","w":133},".":{"d":"65,0r0,-38r-30,0r0,38r30,0","w":100},"\/":{"d":"15,5r110,-267r-19,0r-111,267r20,0","w":119},"0":{"d":"100,-235v14,0,26,4,35,11v8,8,15,17,19,28v5,11,8,23,9,36v2,13,2,25,2,35v0,11,0,23,-2,36v-1,13,-4,25,-9,36v-4,11,-11,21,-19,28v-9,8,-21,11,-35,11v-14,0,-26,-3,-34,-11v-9,-7,-16,-17,-20,-28v-5,-11,-7,-23,-9,-36v-1,-13,-2,-25,-2,-36v0,-10,1,-22,2,-35v2,-13,4,-25,9,-36v4,-11,11,-20,20,-28v8,-7,20,-11,34,-11xm100,-254v-18,0,-33,4,-45,12v-11,8,-20,18,-26,31v-7,12,-11,26,-13,42v-3,15,-4,30,-4,45v0,14,1,29,4,45v2,15,6,29,13,42v6,12,15,22,26,30v12,8,27,12,45,12v18,0,33,-4,45,-12v11,-8,20,-18,27,-30v6,-13,10,-27,12,-42v3,-16,4,-31,4,-46v0,-14,-1,-29,-4,-45v-2,-15,-6,-29,-12,-41v-7,-13,-16,-23,-27,-31v-12,-8,-27,-12,-45,-12"},"1":{"d":"35,-187r67,0r0,187r22,0r0,-252r-18,0v-2,12,-5,21,-9,27v-4,6,-9,11,-14,14v-6,3,-13,5,-21,6v-8,1,-17,1,-27,2r0,16"},"2":{"d":"179,-21r-140,0v1,-8,5,-16,11,-23v5,-7,12,-14,20,-20v7,-6,15,-11,23,-16v12,-7,12,-7,21,-14v9,-5,17,-11,24,-17v8,-6,15,-12,21,-20v5,-7,10,-15,14,-23v3,-9,5,-19,5,-29v0,-12,-2,-22,-6,-31v-4,-9,-10,-16,-17,-22v-7,-6,-15,-11,-25,-14v-9,-3,-19,-4,-30,-4v-14,0,-26,2,-36,6v-10,5,-19,11,-25,19v-7,8,-12,17,-15,28v-4,11,-5,23,-5,36r23,0v0,-9,0,-18,2,-27v2,-8,6,-15,10,-22v5,-6,11,-11,18,-15v8,-4,16,-6,27,-6v7,0,15,1,21,3v7,3,13,6,18,10v6,5,10,10,13,17v3,6,4,13,4,21v0,10,-2,19,-5,26v-4,8,-9,15,-16,22v-7,7,-15,14,-23,20r-27,18v-9,5,-17,12,-26,18v-8,6,-16,13,-22,21v-7,8,-12,16,-16,26v-5,9,-7,21,-7,33r166,0r0,-21"},"3":{"d":"12,-80v-1,13,0,25,4,36v4,11,10,20,18,27v8,7,17,13,28,17v11,3,23,5,36,5v11,0,22,-1,33,-5v11,-3,20,-8,28,-14v8,-7,14,-15,19,-25v4,-9,7,-20,7,-32v0,-17,-5,-31,-14,-42v-9,-11,-22,-18,-38,-21r0,0v14,-4,24,-10,31,-20v8,-11,11,-22,11,-36v0,-11,-2,-21,-6,-29v-5,-8,-11,-15,-18,-20v-7,-5,-16,-9,-25,-11v-9,-3,-19,-4,-29,-4v-12,0,-23,2,-33,6v-10,4,-18,10,-25,17v-7,8,-12,17,-16,27v-3,10,-5,21,-5,33r22,0v0,-10,1,-18,4,-26v2,-8,6,-15,11,-20v4,-6,11,-10,18,-13v7,-4,15,-5,25,-5v7,0,14,1,21,3v7,1,12,4,17,8v5,4,9,9,12,15v3,6,5,13,5,21v0,8,-2,15,-5,21v-3,6,-7,11,-12,14v-5,4,-11,7,-17,9v-6,1,-12,2,-17,2r-20,0r0,19r20,0v8,0,16,1,23,3v7,3,14,6,19,10v6,5,10,10,13,17v3,7,5,15,5,24v0,9,-2,17,-5,23v-4,7,-9,13,-15,18v-6,5,-13,8,-20,11v-8,2,-16,3,-24,3v-11,0,-20,-1,-28,-5v-8,-3,-14,-7,-20,-13v-5,-6,-9,-13,-12,-21v-3,-8,-4,-17,-3,-27r-23,0"},"4":{"d":"11,-63r116,0r0,63r21,0r0,-63r38,0r0,-19r-38,0r0,-170r-21,0r-116,167r0,22xm31,-82r95,-137r1,0r0,137r-96,0"},"5":{"d":"13,-72v0,12,2,23,7,32v4,10,10,18,17,25v8,6,16,11,26,15v10,4,21,5,33,5v12,0,23,-2,34,-6v10,-4,20,-10,28,-18v8,-7,14,-16,18,-27v5,-10,7,-22,7,-34v0,-13,-2,-24,-6,-35v-4,-11,-9,-20,-17,-28v-7,-7,-16,-13,-26,-18v-11,-4,-22,-6,-35,-6v-10,0,-20,2,-30,6v-9,4,-17,10,-24,17r0,0r16,-84r110,0r0,-21r-126,0r-24,131r19,0v6,-10,14,-17,24,-22v10,-5,21,-8,32,-8v9,0,18,2,26,5v8,3,15,8,20,14v6,6,10,13,14,21v3,8,5,16,5,26v0,9,-2,17,-5,26v-3,8,-7,16,-12,22v-6,6,-13,11,-20,15v-8,3,-17,5,-26,5v-9,0,-17,-1,-25,-4v-7,-3,-13,-7,-19,-12v-6,-5,-10,-11,-13,-18v-3,-7,-5,-15,-5,-24r-23,0"},"6":{"d":"104,-145v10,0,19,2,26,5v8,4,14,8,19,14v5,6,9,13,12,22v3,8,4,16,4,26v0,8,-1,16,-4,24v-3,8,-7,15,-13,21v-5,6,-11,11,-19,14v-7,4,-15,5,-24,5v-11,0,-21,-1,-29,-5v-8,-3,-14,-8,-19,-14v-5,-5,-9,-12,-12,-20v-2,-8,-3,-17,-3,-25v0,-10,1,-19,4,-27v3,-8,7,-15,12,-21v6,-6,12,-10,20,-14v8,-3,17,-5,26,-5xm182,-188v-3,-22,-11,-39,-24,-50v-13,-11,-31,-16,-54,-16v-13,0,-25,2,-35,7v-10,5,-18,11,-25,19v-6,7,-11,16,-15,26v-4,9,-7,18,-10,28v-2,9,-3,18,-4,26v0,8,-1,14,-1,19v0,25,2,46,6,63v3,17,8,31,16,41v7,11,16,19,27,23v11,5,24,7,40,7v12,0,24,-2,34,-6v10,-4,19,-10,27,-18v8,-7,13,-16,18,-27v4,-10,6,-22,6,-34v0,-12,-2,-23,-6,-34v-4,-10,-10,-19,-17,-26v-7,-8,-16,-14,-26,-18v-10,-4,-22,-6,-34,-6v-15,0,-28,4,-40,11v-12,8,-21,18,-27,31r-1,0v0,-12,1,-24,3,-37v1,-13,5,-26,10,-37v5,-11,12,-20,21,-28v9,-7,21,-11,36,-11v14,0,26,4,35,13v10,9,15,20,17,34r23,0"},"7":{"d":"18,-228r140,0v-18,20,-33,39,-45,57v-13,19,-23,37,-31,55v-8,18,-15,37,-19,56v-5,18,-8,39,-9,60r24,0v2,-29,7,-56,14,-80v8,-25,17,-47,28,-66v10,-19,21,-35,32,-49v11,-14,20,-25,28,-33r0,-21r-162,0r0,21"},"8":{"d":"100,-14v-9,0,-17,-1,-25,-3v-8,-3,-15,-6,-20,-11v-6,-5,-11,-11,-14,-18v-3,-7,-5,-15,-5,-25v0,-9,2,-17,5,-24v4,-7,8,-12,14,-17v6,-5,13,-8,20,-10v8,-2,16,-4,25,-3v8,-1,17,1,24,3v8,2,15,6,21,10v6,5,10,11,14,18v3,6,5,14,5,23v0,10,-2,18,-5,26v-3,7,-8,13,-14,17v-5,5,-12,9,-20,11v-8,2,-16,3,-25,3xm176,-191v0,-11,-2,-20,-6,-28v-5,-8,-11,-15,-18,-20v-7,-5,-15,-9,-25,-11v-9,-3,-18,-4,-27,-4v-10,0,-19,1,-28,4v-9,2,-17,6,-24,11v-8,5,-14,12,-18,20v-4,8,-7,17,-7,28v0,14,4,25,11,35v7,9,17,16,30,20r0,1v-15,3,-27,10,-36,22v-9,12,-14,26,-15,42v0,13,3,24,7,34v5,9,11,17,19,23v8,7,17,12,28,15v10,3,21,4,33,4v12,0,23,-1,34,-4v10,-3,19,-8,27,-15v8,-6,14,-14,19,-23v5,-10,7,-21,7,-34v0,-17,-5,-31,-14,-42v-9,-11,-21,-19,-38,-22r0,-1v13,-4,23,-10,31,-20v7,-10,10,-21,10,-35xm100,-144v-7,0,-13,-1,-20,-3v-6,-1,-12,-4,-17,-8v-5,-4,-9,-9,-12,-15v-3,-6,-5,-13,-5,-21v0,-7,2,-14,5,-19v3,-6,7,-10,12,-14v5,-4,10,-6,17,-8v6,-2,13,-3,20,-3v8,0,15,1,21,3v7,2,12,4,17,8v5,4,9,8,12,14v2,5,4,12,4,19v0,8,-2,15,-5,21v-3,6,-7,11,-12,15v-5,4,-10,7,-17,8v-6,2,-13,3,-20,3"},"9":{"d":"96,-104v-10,0,-18,-1,-26,-5v-8,-3,-14,-8,-19,-14v-5,-6,-9,-13,-12,-21v-3,-9,-4,-17,-4,-26v0,-9,1,-17,4,-25v3,-8,7,-15,13,-21v5,-6,11,-10,19,-14v7,-3,15,-5,24,-5v11,0,21,2,29,5v8,3,14,8,19,14v6,6,9,13,12,21v2,7,3,16,3,25v0,9,-1,18,-4,26v-2,8,-7,15,-12,21v-5,6,-12,11,-20,14v-8,4,-16,5,-26,5xm18,-60v3,22,11,38,24,49v14,11,31,16,54,16v13,0,25,-2,35,-7v10,-5,18,-11,25,-19v6,-7,12,-16,16,-25v4,-10,7,-19,9,-28v2,-10,3,-18,4,-26v0,-9,1,-15,1,-20v0,-25,-2,-45,-5,-63v-4,-17,-9,-30,-16,-41v-8,-11,-17,-18,-28,-23v-11,-5,-24,-7,-39,-7v-13,0,-24,2,-35,6v-10,5,-19,11,-27,18v-7,8,-13,17,-17,27v-5,11,-7,22,-7,34v0,12,2,24,6,34v4,10,10,19,17,27v7,7,16,13,26,17v10,4,22,6,34,6v15,0,28,-3,40,-11v12,-8,21,-18,27,-30r1,0v0,11,-1,23,-2,37v-2,13,-5,25,-11,36v-5,11,-12,21,-21,28v-9,8,-21,11,-35,11v-15,0,-27,-4,-36,-13v-9,-8,-15,-20,-17,-33r-23,0"},":":{"d":"65,-142r0,-38r-30,0r0,38r30,0xm65,0r0,-38r-30,0r0,38r30,0","w":100},";":{"d":"35,-38r0,38r15,0r0,10v-1,3,-2,6,-4,10v-1,3,-3,6,-5,8v-2,3,-5,5,-8,6r0,15v6,-1,10,-4,14,-7v4,-3,8,-7,10,-12v3,-4,5,-9,6,-14v1,-5,2,-10,2,-16r0,-38r-30,0xm65,-142r0,-38r-30,0r0,38r30,0","w":100},"\u037e":{"d":"35,-38r0,38r15,0r0,10v-1,3,-2,6,-4,10v-1,3,-3,6,-5,8v-2,3,-5,5,-8,6r0,15v6,-1,10,-4,14,-7v4,-3,8,-7,10,-12v3,-4,5,-9,6,-14v1,-5,2,-10,2,-16r0,-38r-30,0xm65,-142r0,-38r-30,0r0,38r30,0","w":100},"<":{"d":"199,-17r-160,-74r160,-74r0,-20r-182,84r0,20r182,84r0,-20","w":216},"=":{"d":"199,-136r-181,0r0,19r181,0r0,-19xm199,-65r-181,0r0,19r181,0r0,-19","w":216},">":{"d":"17,-17r0,20r182,-84r0,-20r-182,-84r0,20r160,74","w":216},"?":{"d":"42,-178v0,-9,1,-18,3,-26v3,-8,6,-15,11,-20v5,-6,11,-11,18,-14v8,-4,16,-5,26,-5v7,0,14,1,20,3v6,3,12,6,16,10v5,4,9,9,11,15v3,6,5,13,5,20v0,10,-3,18,-7,26v-5,7,-10,14,-17,21v-8,7,-14,13,-19,18v-6,6,-10,12,-13,18v-4,5,-6,12,-7,20v-2,7,-2,17,-2,28r22,0v1,-11,1,-20,2,-26v1,-5,2,-10,4,-15v2,-4,6,-8,10,-12r18,-18v9,-8,17,-17,22,-27v6,-9,9,-20,9,-34v0,-10,-2,-19,-6,-28v-3,-8,-9,-15,-15,-21v-7,-6,-15,-10,-24,-13v-8,-3,-18,-4,-28,-4v-13,0,-24,2,-35,6v-10,4,-18,9,-25,17v-7,7,-12,16,-16,26v-4,11,-6,22,-6,35r23,0xm83,0r30,0r0,-38r-30,0r0,38","w":193},"@":{"d":"153,-184v4,0,7,1,11,3v3,2,6,5,9,8v2,3,5,7,6,10v2,4,3,9,3,13v0,8,-2,17,-5,27v-3,9,-7,19,-13,27v-5,9,-11,16,-19,22v-7,6,-15,8,-23,8v-9,0,-16,-3,-21,-9v-6,-6,-9,-15,-9,-25v0,-9,2,-18,4,-28v3,-9,8,-18,13,-27v5,-8,12,-15,19,-20v8,-6,16,-9,25,-9xm221,-196r-19,0r-9,24v-4,-11,-10,-19,-16,-24v-7,-4,-14,-7,-22,-7v-13,0,-25,3,-35,10v-11,6,-20,14,-27,24v-8,10,-13,21,-17,33v-4,12,-7,25,-7,37v0,8,2,14,4,21v2,6,5,11,9,16v4,5,9,9,15,11v6,3,13,5,20,5v9,0,18,-3,26,-8v7,-5,14,-10,20,-16r0,0v1,8,4,14,8,18v5,4,10,6,17,6v10,0,20,-3,30,-8v10,-6,19,-13,26,-22v8,-10,15,-21,20,-34v5,-13,7,-26,7,-40v0,-17,-3,-32,-9,-46v-7,-14,-15,-25,-26,-35v-11,-10,-24,-18,-39,-23v-15,-6,-31,-8,-48,-8v-18,0,-36,3,-52,10v-16,7,-30,16,-42,28v-12,12,-21,26,-28,42v-7,16,-10,34,-10,52v0,19,3,37,10,54v6,16,16,30,28,42v11,12,26,22,42,29v16,7,34,10,53,10v12,0,23,-1,34,-4v11,-3,21,-7,31,-13v9,-5,18,-12,26,-20v8,-8,15,-17,21,-27r-19,0v-5,8,-11,14,-18,20v-7,6,-15,11,-23,15v-8,5,-16,8,-25,10v-9,2,-18,3,-27,3v-16,0,-31,-3,-45,-9v-14,-6,-26,-14,-36,-24v-11,-11,-19,-23,-24,-37v-6,-15,-9,-30,-9,-46v0,-17,3,-32,8,-47v6,-14,14,-27,24,-38v10,-10,22,-19,36,-25v14,-6,29,-9,46,-9v14,0,27,2,39,6v13,5,23,11,33,19v9,8,16,18,22,29v5,12,8,26,8,40v0,11,-2,21,-5,31v-3,11,-8,21,-13,29v-6,9,-12,16,-20,21v-7,6,-15,9,-23,9v-3,0,-5,-1,-6,-3v-1,-1,-2,-4,-2,-6v-1,-3,0,-6,0,-10v1,-4,2,-7,3,-11","w":288},"A":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226,"k":{"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24}},"B":{"d":"50,-123r85,0v21,0,38,4,50,12v11,8,17,21,17,37v0,11,-1,19,-5,26v-4,7,-9,12,-15,16v-6,4,-13,7,-21,9v-9,1,-17,2,-26,2r-85,0r0,-102xm26,0r109,0v21,0,37,-3,49,-8v13,-5,22,-12,28,-19v6,-8,10,-16,12,-24v2,-9,3,-16,3,-22v0,-17,-5,-31,-15,-42v-10,-12,-23,-19,-40,-21r0,0v7,-2,13,-4,19,-8v5,-4,10,-8,14,-13v4,-5,7,-11,9,-17v2,-7,3,-13,3,-20v0,-12,-2,-22,-7,-30v-4,-8,-10,-15,-18,-20v-8,-4,-16,-8,-26,-10v-10,-2,-21,-3,-31,-3r-109,0r0,257xm50,-236r85,0v38,0,58,16,58,48v0,6,-2,12,-4,17v-2,5,-6,10,-11,14v-5,4,-11,7,-18,9v-7,2,-16,4,-25,4r-85,0r0,-92","w":240},"C":{"d":"238,-179v-1,-14,-5,-26,-12,-36v-6,-10,-14,-19,-24,-26v-9,-7,-20,-12,-31,-16v-12,-4,-24,-5,-36,-5v-20,0,-38,3,-53,11v-15,7,-28,17,-38,29v-10,12,-18,27,-23,43v-5,16,-7,33,-7,50v0,18,2,35,7,51v5,16,13,31,23,43v10,12,23,22,38,29v15,8,33,11,53,11v15,0,29,-2,41,-7v13,-5,23,-12,32,-20v10,-10,17,-20,23,-33v6,-13,9,-27,11,-43r-25,0v-1,12,-4,22,-8,32v-4,10,-10,19,-17,26v-7,8,-15,14,-25,18v-9,4,-20,7,-32,7v-17,0,-32,-4,-44,-10v-12,-7,-22,-15,-30,-26v-8,-11,-14,-23,-17,-36v-4,-14,-6,-27,-6,-42v0,-13,2,-27,6,-41v3,-13,9,-25,17,-36v8,-11,18,-19,30,-26v12,-6,27,-10,44,-10v9,0,18,2,27,5v8,2,16,6,23,12v7,5,13,11,18,19v5,8,9,17,11,27r24,0","w":253},"D":{"d":"50,-236r53,0v18,0,34,2,47,6v14,4,25,10,33,19v9,8,15,19,19,33v4,14,6,30,6,49v0,20,-2,36,-6,50v-4,13,-10,25,-19,33v-8,9,-19,15,-33,19v-13,4,-29,6,-47,6r-53,0r0,-215xm26,0r89,0v39,-1,68,-12,88,-33v20,-21,30,-53,30,-96v0,-42,-10,-74,-30,-95v-20,-21,-49,-32,-88,-33r-89,0r0,257","w":246},"E":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257","w":213},"F":{"d":"26,0r24,0r0,-122r124,0r0,-21r-124,0r0,-93r139,0r0,-21r-163,0r0,257","w":193,"k":{"A":20,".":46,",":46}},"G":{"d":"246,-131r-110,0r0,21r88,0v0,14,-2,26,-5,38v-4,12,-10,21,-18,30v-7,8,-17,15,-28,20v-11,4,-24,7,-38,7v-17,0,-32,-4,-44,-10v-12,-7,-22,-15,-30,-26v-8,-11,-14,-23,-17,-36v-4,-14,-6,-27,-6,-42v0,-13,2,-27,6,-41v3,-13,9,-25,17,-36v8,-11,18,-19,30,-26v12,-6,27,-10,44,-10v12,0,23,2,33,6v10,4,18,9,26,16v7,6,12,13,16,20v5,8,7,15,8,23r24,0v-2,-14,-6,-26,-13,-37v-6,-11,-14,-20,-24,-27v-9,-7,-20,-12,-32,-16v-12,-4,-25,-5,-38,-5v-20,0,-38,3,-53,11v-15,7,-28,17,-38,29v-10,12,-18,27,-23,43v-5,16,-7,33,-7,50v0,18,2,35,7,51v5,16,13,31,23,43v10,12,23,22,38,29v15,8,33,11,53,11v9,0,18,-1,27,-3v9,-2,17,-5,25,-9v8,-4,15,-10,21,-16v6,-7,12,-15,16,-24r1,0r3,47r18,0r0,-131","w":266},"H":{"d":"26,0r24,0r0,-125r153,0r0,125r25,0r0,-257r-25,0r0,112r-153,0r0,-112r-24,0r0,257","w":253},"I":{"d":"28,0r24,0r0,-257r-24,0r0,257","w":79},"J":{"d":"130,-82v0,12,-1,22,-3,30v-1,9,-4,15,-7,21v-4,5,-9,9,-15,12v-6,2,-14,4,-24,4v-12,0,-22,-3,-29,-8v-6,-5,-11,-11,-14,-18v-3,-7,-5,-14,-5,-22v-1,-11,-1,-11,-1,-19r-24,0v0,11,1,22,2,32v2,11,6,20,11,28v6,8,13,15,22,20v9,5,21,7,36,7v14,0,26,-1,35,-4v10,-3,17,-8,23,-15v6,-6,10,-14,13,-24v3,-9,4,-21,4,-34r0,-185r-24,0r0,175","w":180},"K":{"d":"26,0r24,0r0,-88r50,-46r107,134r31,0r-120,-151r115,-106r-33,0r-150,138r0,-138r-24,0r0,257","w":233},"L":{"d":"26,0r168,0r0,-21r-144,0r0,-236r-24,0r0,257","w":193,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"25,0r25,0r0,-222r0,0r89,222r23,0r87,-222r1,0r0,222r25,0r0,-257r-36,0r-89,225r-89,-225r-36,0r0,257","w":299},"N":{"d":"26,0r24,0r0,-217r1,0r150,217r27,0r0,-257r-25,0r0,217r0,0r-150,-217r-27,0r0,257","w":253},"O":{"d":"12,-129v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50xm37,-129v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42","w":266},"P":{"d":"26,0r24,0r0,-110r90,0v12,0,22,-2,31,-5v10,-3,18,-8,24,-14v7,-7,12,-15,16,-24v4,-9,5,-19,5,-31v0,-11,-1,-21,-5,-31v-4,-9,-9,-16,-16,-23v-6,-6,-14,-11,-24,-14v-9,-3,-19,-5,-31,-5r-114,0r0,257xm50,-236r85,0v17,0,30,4,41,13v11,8,16,22,16,39v0,18,-5,31,-16,40v-11,9,-24,13,-41,13r-85,0r0,-105","w":226,"k":{"A":27,".":55,",":55}},"Q":{"d":"160,-69r-13,15r34,26v-13,8,-29,13,-47,13v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,17,-3,33,-8,49v-5,15,-13,29,-25,39xm252,1r-36,-28v13,-12,22,-27,29,-45v6,-18,10,-37,10,-57v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v13,0,25,-1,36,-4v11,-4,21,-8,30,-15r40,31","w":266},"R":{"d":"26,0r24,0r0,-114r93,0v12,-1,21,1,27,6v7,4,12,10,16,17v3,7,5,15,6,24v2,9,2,18,3,27r0,9v0,4,1,8,1,11v1,4,1,8,2,11v1,4,2,7,4,9r27,0v-3,-3,-5,-8,-7,-13r-3,-18v-1,-7,-1,-13,-2,-19r0,-16v-1,-8,-2,-15,-3,-21v-2,-7,-4,-13,-8,-18v-3,-5,-8,-9,-13,-12v-6,-3,-13,-6,-21,-7r0,-1v16,-3,29,-11,37,-23v9,-12,13,-26,13,-42v0,-12,-2,-22,-7,-30v-4,-9,-9,-16,-16,-21v-8,-5,-16,-9,-25,-12v-10,-3,-20,-4,-30,-4r-118,0r0,257xm50,-236r92,0v18,0,32,4,41,14v10,9,14,21,14,37v0,8,-1,15,-4,21v-3,6,-7,11,-12,16v-5,4,-11,7,-18,10v-7,2,-14,3,-21,3r-92,0r0,-101","w":240,"k":{"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"S":{"d":"13,-85v-1,16,1,29,6,41v5,11,12,21,21,28v9,7,20,13,33,16v13,4,27,5,43,5v15,0,28,-1,38,-4v11,-3,20,-6,28,-11v7,-4,13,-9,17,-15v4,-5,7,-11,10,-16v2,-6,3,-11,4,-16v1,-4,1,-8,1,-11v0,-11,-2,-20,-5,-27v-4,-7,-9,-14,-15,-19v-6,-5,-13,-9,-21,-13v-8,-3,-17,-6,-26,-9r-62,-15v-6,-1,-11,-3,-15,-5v-5,-2,-9,-5,-13,-8v-3,-3,-6,-6,-8,-11v-2,-4,-3,-9,-3,-15v0,-10,2,-18,5,-25v4,-6,8,-11,14,-15v6,-4,13,-7,21,-9v8,-2,16,-3,24,-3v9,0,18,2,26,4v9,3,16,6,22,11v7,5,12,11,16,19v4,7,6,16,6,25r25,0v0,-13,-3,-24,-8,-34v-5,-10,-12,-19,-20,-25v-9,-7,-19,-12,-31,-15v-11,-4,-23,-5,-36,-5v-18,0,-33,2,-44,7v-12,5,-21,12,-28,19v-6,8,-11,16,-13,24v-3,8,-4,16,-4,22v0,10,2,19,5,25v3,7,8,13,13,18v5,5,11,9,18,12v7,3,15,5,22,7r57,14v6,1,13,3,19,5v6,3,12,6,17,9v5,4,9,8,12,14v4,5,5,11,5,18v0,10,-2,18,-6,24v-5,7,-11,12,-18,16v-6,5,-14,8,-22,10v-8,2,-15,3,-22,3v-11,0,-22,-2,-33,-4v-10,-2,-19,-6,-27,-11v-7,-6,-13,-13,-17,-21v-5,-9,-7,-20,-7,-34r-24,0","w":226},"T":{"d":"-2,-236r90,0r0,236r24,0r0,-236r90,0r0,-21r-204,0r0,21","k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"i":-9,"e":40,"c":40,"a":40,"A":24,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"23,-93v0,14,2,26,6,38v4,12,10,22,18,31v8,9,18,16,31,21v12,6,27,8,45,8v18,0,33,-2,46,-8v13,-5,23,-12,31,-21v8,-9,14,-19,18,-31v3,-12,5,-24,5,-38r0,-164r-24,0r0,159v0,15,-2,28,-5,38v-4,10,-9,19,-15,26v-7,6,-15,11,-24,14v-9,3,-20,5,-32,5v-12,0,-22,-2,-32,-5v-9,-3,-17,-8,-23,-14v-7,-7,-12,-16,-15,-26v-3,-10,-5,-23,-5,-38r0,-159r-25,0r0,164","w":246},"V":{"d":"93,0r28,0r96,-257r-26,0r-83,230r-1,0r-83,-230r-27,0","w":213,"k":{"y":6,"u":13,"r":13,"o":20,"i":-2,"e":20,"a":20,"A":20,";":27,":":27,".":46,"-":20,",":46}},"W":{"d":"71,0r27,0r65,-230r0,0r66,230r26,0r70,-257r-24,0r-59,225r0,0r-63,-225r-31,0r-63,225r0,0r-59,-225r-26,0","w":326,"k":{"u":6,"r":6,"o":6,"i":-9,"e":6,"a":13,"A":6,";":6,":":6,".":27,",":27}},"X":{"d":"88,-132r-92,132r27,0r80,-113r78,113r29,0r-93,-132r88,-125r-27,0r-75,108r-73,-108r-29,0","w":206},"Y":{"d":"98,0r24,0r0,-106r102,-151r-30,0r-84,130r-84,-130r-30,0r102,151r0,106","w":219,"k":{"v":20,"u":27,"q":33,"p":27,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":36,"-":40,",":44}},"Z":{"d":"13,-236r158,0r-169,214r0,22r200,0r0,-21r-173,0r169,-214r0,-22r-185,0r0,21","w":206},"[":{"d":"85,69r0,-19r-35,0r0,-293r35,0r0,-19r-58,0r0,331r58,0","w":86},"\\":{"d":"125,5r-111,-267r-19,0r110,267r20,0","w":119},"]":{"d":"1,-262r0,19r36,0r0,293r-36,0r0,19r58,0r0,-331r-58,0","w":86},"^":{"d":"37,-86r71,-140r72,140r20,0r-83,-163r-18,0r-83,163r21,0","w":216},"_":{"d":"180,45r0,-18r-180,0r0,18r180,0","w":180},"`":{"d":"36,-212r19,0r-38,-50r-28,0","w":66},"a":{"d":"140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0","w":186},"b":{"d":"170,-93v0,10,-1,19,-3,29v-2,9,-6,18,-11,25v-5,8,-11,14,-19,18v-8,5,-17,7,-28,7v-12,0,-22,-2,-30,-7v-8,-4,-15,-10,-20,-18v-5,-7,-9,-16,-11,-25v-3,-10,-4,-19,-4,-29v0,-9,1,-19,4,-29v2,-9,6,-17,11,-25v5,-7,12,-13,20,-18v8,-5,18,-7,30,-7v11,0,20,2,28,7v8,5,14,11,19,18v5,8,9,16,11,25v2,10,3,20,3,29xm22,0r20,0r0,-35r1,0v5,12,14,22,26,30v12,7,25,10,40,10v15,0,27,-2,37,-8v11,-5,19,-12,26,-21v7,-9,13,-19,16,-31v3,-12,5,-25,5,-38v0,-13,-2,-26,-5,-37v-3,-12,-9,-23,-16,-32v-7,-9,-15,-16,-26,-21v-10,-6,-22,-8,-37,-8v-7,0,-13,1,-20,3v-7,1,-13,4,-18,7v-6,4,-11,8,-16,13v-4,5,-8,11,-10,18r-1,0r0,-107r-22,0r0,257","w":206},"c":{"d":"175,-127v-2,-22,-11,-38,-24,-48v-14,-11,-31,-16,-51,-16v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v21,0,38,-6,52,-19v13,-12,22,-30,25,-53r-23,0v-1,8,-3,15,-6,22v-3,6,-7,12,-12,16v-4,5,-10,9,-16,11v-6,3,-13,4,-20,4v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7v15,0,27,4,35,12v9,8,15,19,18,33r22,0","w":186},"d":{"d":"36,-93v0,-9,2,-19,4,-29v2,-9,6,-17,11,-25v5,-7,11,-13,18,-18v8,-5,17,-7,28,-7v12,0,22,2,31,7v8,5,15,11,20,18v5,8,9,16,11,25v2,10,3,20,3,29v0,10,-1,19,-3,29v-2,9,-6,18,-11,25v-5,8,-12,14,-20,18v-9,5,-19,7,-31,7v-11,0,-20,-2,-28,-7v-7,-4,-13,-10,-18,-18v-5,-7,-9,-16,-11,-25v-2,-10,-4,-19,-4,-29xm185,-257r-23,0r0,107r0,0v-3,-7,-6,-13,-11,-18v-4,-5,-9,-9,-15,-13v-6,-3,-12,-6,-18,-7v-7,-2,-14,-3,-21,-3v-14,0,-26,2,-37,8v-10,5,-19,12,-26,21v-7,9,-12,20,-15,32v-4,11,-5,24,-5,37v0,13,1,26,5,38v3,12,8,22,15,31v7,9,16,16,26,21v11,6,23,8,37,8v7,0,14,-1,21,-2v6,-2,13,-5,19,-9v6,-3,11,-8,16,-13v5,-5,8,-10,10,-16r1,0r0,35r21,0r0,-257","w":206},"e":{"d":"178,-87v0,-13,-1,-25,-4,-38v-3,-13,-7,-24,-14,-34v-7,-9,-15,-17,-26,-23v-10,-6,-23,-9,-38,-9v-15,0,-27,3,-38,8v-11,6,-19,13,-26,23v-7,9,-12,19,-15,31v-3,12,-5,24,-5,36v0,13,2,26,5,38v3,12,8,22,15,31v7,9,15,16,26,21v11,6,23,8,38,8v24,0,42,-5,55,-17v13,-12,21,-28,26,-49r-23,0v-3,14,-10,25,-19,34v-9,9,-22,13,-39,13v-11,0,-20,-2,-28,-7v-8,-4,-14,-10,-19,-17v-4,-7,-8,-15,-10,-23v-3,-9,-4,-17,-4,-26r143,0xm35,-106v1,-8,3,-16,6,-24v3,-9,7,-16,12,-22v5,-6,11,-11,18,-14v7,-4,16,-6,25,-6v9,0,17,2,25,6v7,3,13,8,18,14v5,6,9,13,12,21v2,8,4,17,4,25r-120,0","w":186},"f":{"d":"93,-186r-36,0r0,-16r0,-14v0,0,1,-8,3,-11v1,-4,4,-6,7,-8v3,-2,8,-3,14,-3v3,0,6,0,8,1v3,0,6,0,9,1r0,-20v-4,0,-7,0,-10,-1r-9,0v-9,0,-17,1,-23,4v-6,3,-10,6,-14,11v-3,5,-5,11,-6,17v-2,7,-2,14,-2,22r0,17r-32,0r0,19r32,0r0,167r23,0r0,-167r36,0r0,-19","w":93,"k":{"f":6}},"g":{"d":"96,-21v-10,0,-20,-2,-27,-7v-8,-4,-14,-9,-19,-16v-5,-7,-9,-15,-11,-24v-3,-9,-4,-18,-4,-27v0,-10,1,-19,3,-28v3,-10,6,-18,11,-25v5,-7,12,-13,19,-17v8,-5,17,-7,28,-7v11,0,20,2,28,7v7,4,13,10,18,18v5,7,8,15,11,25v2,9,3,18,3,27v0,9,-1,18,-4,27v-2,9,-6,17,-11,24v-5,7,-12,12,-19,16v-7,5,-16,7,-26,7xm179,-186r-23,0r0,32r-1,0v-4,-10,-12,-19,-23,-26v-10,-8,-22,-11,-36,-11v-13,0,-25,2,-36,7v-10,5,-19,12,-26,20v-7,9,-12,19,-16,30v-4,12,-6,24,-6,36v0,14,2,26,5,38v3,11,8,21,15,30v7,9,15,16,26,20v11,5,23,8,38,8v14,0,25,-4,36,-11v10,-7,18,-16,23,-27r1,0r0,25v0,23,-5,40,-14,52v-10,12,-25,18,-46,18v-6,0,-12,-1,-18,-2v-6,-1,-12,-3,-17,-6v-5,-3,-9,-7,-12,-12v-4,-4,-6,-10,-7,-17r-23,0v1,10,3,18,8,25v5,7,11,13,18,18v7,4,15,8,24,10v9,2,18,3,27,3v15,0,28,-2,38,-6v11,-4,19,-10,26,-18v6,-7,11,-17,14,-28v3,-11,5,-23,5,-37r0,-171"},"h":{"d":"21,0r23,0r0,-108v0,-9,2,-18,4,-26v3,-8,7,-14,12,-20v5,-6,11,-10,18,-13v7,-3,15,-5,24,-5v9,0,17,1,23,4v6,3,11,7,15,12v3,5,6,11,7,18v2,7,2,14,2,22r0,116r23,0r0,-120v0,-11,-1,-21,-3,-29v-2,-9,-6,-17,-11,-23v-6,-6,-13,-11,-21,-14v-9,-3,-20,-5,-33,-5v-6,0,-13,1,-19,3v-6,1,-12,4,-17,7v-6,3,-10,7,-14,12v-4,5,-7,10,-9,15r-1,0r0,-103r-23,0r0,257","w":193},"i":{"d":"22,0r23,0r0,-186r-23,0r0,186xm22,-221r23,0r0,-36r-23,0r0,36","w":66},"j":{"d":"22,23v0,7,-1,14,-4,19v-2,5,-8,8,-17,8r-6,0v0,0,-4,0,-6,-1r0,19r8,0v3,1,5,1,8,1v8,0,15,-2,20,-4v5,-3,9,-7,12,-12v3,-4,5,-10,6,-16v1,-6,2,-13,2,-20r0,-203r-23,0r0,209xm22,-221r23,0r0,-36r-23,0r0,36","w":66},"k":{"d":"22,0r22,0r0,-71r37,-30r73,101r29,0r-85,-117r79,-69r-30,0r-103,90r0,-161r-22,0r0,257","w":180},"l":{"d":"22,0r23,0r0,-257r-23,0r0,257","w":66},"m":{"d":"22,0r22,0r0,-104v0,-9,1,-18,4,-27v2,-8,5,-15,9,-21v5,-7,11,-11,18,-15v6,-3,15,-5,25,-5v7,0,13,1,18,4v5,2,9,5,12,9v3,5,5,10,7,15v1,6,2,12,2,18r0,126r22,0r0,-105v0,-9,1,-17,3,-25v1,-8,4,-15,8,-22v4,-6,9,-11,15,-14v7,-4,15,-6,25,-6v16,0,27,4,34,12v6,8,10,20,10,35r0,125r22,0r0,-126v0,-43,-20,-65,-61,-65v-13,0,-24,3,-35,9v-11,6,-19,15,-24,27v-4,-12,-10,-21,-20,-27v-10,-6,-21,-9,-34,-9v-14,0,-27,3,-37,10v-10,6,-17,15,-23,27r-2,0r0,-32r-20,0r0,186","w":299},"n":{"d":"21,0r23,0r0,-108v0,-9,2,-18,4,-26v3,-8,7,-14,12,-20v5,-6,11,-10,18,-13v7,-3,15,-5,24,-5v9,0,17,1,23,4v6,3,11,7,15,12v3,5,6,11,7,18v2,7,2,14,2,22r0,116r23,0r0,-120v0,-11,-1,-21,-3,-29v-2,-9,-6,-17,-11,-23v-6,-6,-13,-11,-21,-14v-9,-3,-20,-5,-33,-5v-6,0,-13,1,-19,3v-6,1,-12,4,-17,7v-6,3,-10,7,-14,12v-4,5,-7,10,-9,15r-1,0r0,-32r-23,0r0,186","w":193},"o":{"d":"100,-191v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-13,-2,-26,-6,-38v-4,-12,-9,-22,-17,-31v-7,-9,-16,-16,-27,-21v-11,-6,-24,-8,-38,-8xm100,-172v11,0,20,2,29,7v8,4,14,10,20,18v5,7,9,16,12,25v3,10,4,19,4,29v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7"},"p":{"d":"170,-93v0,10,-1,19,-3,29v-2,9,-6,18,-11,25v-5,8,-11,14,-19,18v-8,5,-17,7,-28,7v-12,0,-22,-2,-30,-7v-8,-4,-15,-10,-20,-18v-5,-7,-9,-16,-11,-25v-3,-10,-4,-19,-4,-29v0,-10,1,-21,3,-30v2,-10,6,-18,11,-25v5,-8,12,-13,20,-18v9,-4,19,-6,31,-6v11,0,20,2,28,7v8,5,14,11,19,18v5,8,9,16,11,25v2,10,3,20,3,29xm22,69r22,0r0,-104r1,0v2,6,6,12,10,17v5,5,10,10,16,13v5,4,11,6,18,8v7,2,13,2,20,2v15,0,27,-2,37,-8v11,-5,19,-12,26,-21v7,-9,13,-19,16,-31v3,-12,5,-25,5,-38v0,-13,-2,-26,-5,-37v-3,-12,-9,-23,-16,-32v-7,-9,-15,-16,-26,-21v-10,-6,-22,-8,-37,-8v-15,0,-28,3,-40,11v-12,7,-21,17,-26,30r-1,0r0,-36r-20,0r0,255","w":206},"q":{"d":"36,-93v0,-9,2,-19,4,-29v2,-9,6,-17,11,-25v5,-7,11,-13,18,-18v8,-5,17,-7,28,-7v12,0,22,2,31,7v8,5,15,11,20,18v5,8,9,16,11,25v2,10,3,20,3,29v0,10,-1,19,-3,29v-2,9,-6,18,-11,25v-5,8,-12,14,-20,18v-9,5,-19,7,-31,7v-11,0,-20,-2,-28,-7v-7,-4,-13,-10,-18,-18v-5,-7,-9,-16,-11,-25v-2,-10,-4,-19,-4,-29xm185,-186r-21,0r0,36r-1,0v-2,-6,-5,-12,-10,-17v-5,-5,-10,-9,-16,-13v-6,-4,-13,-6,-19,-8v-7,-2,-14,-3,-21,-3v-14,0,-26,2,-37,8v-10,5,-19,12,-26,21v-7,9,-12,20,-15,32v-4,11,-5,24,-5,37v0,13,1,26,5,38v3,12,8,22,15,31v7,9,16,16,26,21v11,6,23,8,37,8v7,0,14,0,21,-2v6,-2,12,-4,18,-8v6,-3,11,-8,15,-13v5,-5,8,-11,11,-17r0,0r0,104r23,0r0,-255","w":206},"r":{"d":"22,0r22,0r0,-99v0,-10,2,-19,5,-27v4,-8,8,-16,15,-22v6,-6,13,-10,21,-13v9,-4,18,-5,28,-5r0,-22v-16,-1,-31,3,-43,11v-12,8,-21,20,-27,35r-1,0r0,-44r-20,0r0,186","w":113,"k":{"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"156,-131v-1,-10,-3,-19,-7,-27v-3,-7,-8,-13,-14,-18v-6,-5,-13,-9,-21,-12v-8,-2,-17,-3,-27,-3v-8,0,-16,1,-24,3v-8,2,-16,5,-23,9v-6,4,-12,9,-16,16v-4,7,-6,15,-6,24v0,8,1,15,4,20v2,5,6,10,11,14v4,3,10,7,16,9v6,3,13,5,20,7r30,6v5,1,10,3,15,5v4,1,9,3,13,6v4,2,7,6,9,9v2,4,3,9,3,14v0,7,-1,12,-5,16v-3,5,-7,9,-12,11v-5,3,-11,5,-17,7v-6,1,-11,1,-16,1v-16,0,-28,-4,-38,-11v-11,-8,-16,-20,-17,-35r-23,0v2,23,10,39,23,50v14,10,32,15,53,15v9,0,18,-1,27,-3v9,-2,17,-5,24,-9v7,-5,13,-11,17,-18v5,-7,7,-15,7,-25v0,-9,-2,-16,-5,-22v-3,-6,-7,-11,-12,-15v-5,-4,-10,-7,-17,-10v-6,-2,-12,-4,-19,-5r-30,-7v-4,-1,-8,-2,-13,-3v-4,-2,-9,-4,-12,-6v-4,-3,-7,-6,-10,-9v-2,-4,-4,-8,-4,-13v0,-6,2,-11,4,-15v3,-4,6,-8,11,-10v4,-3,9,-4,14,-5v5,-2,10,-2,15,-2v7,0,13,1,19,2v5,2,10,4,15,8v4,3,8,7,11,12v2,6,4,12,4,19r23,0","w":173},"t":{"d":"58,-242r-23,0r0,56r-32,0r0,19r32,0r0,127v0,16,3,27,9,33v6,6,16,9,31,9r10,0v4,0,7,-1,10,-1r0,-19v-6,1,-13,1,-19,1v-8,0,-13,-3,-15,-7v-2,-4,-3,-10,-3,-17r0,-126r37,0r0,-19r-37,0r0,-56","w":106},"u":{"d":"172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,121v0,11,1,20,4,29v2,9,6,16,11,22v5,7,12,11,20,15v9,3,19,4,30,4v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186","w":193},"v":{"d":"72,0r24,0r70,-186r-23,0r-58,163r-1,0r-58,-163r-25,0","w":166,"k":{".":27,",":27}},"w":{"d":"63,0r24,0r46,-156r1,0r45,156r25,0r60,-186r-24,0r-48,159r0,0r-46,-159r-25,0r-46,159r0,0r-48,-159r-24,0","w":266,"k":{".":20,",":20}},"x":{"d":"0,0r28,0r58,-78r58,78r29,0r-73,-97r67,-89r-28,0r-52,71r-53,-71r-28,0r66,90","w":173},"y":{"d":"75,-1r-8,22v-3,6,-3,6,-5,11v-2,4,-4,7,-7,10v-2,2,-5,4,-8,6v-3,1,-7,2,-12,2v-3,0,-6,0,-8,-1v-3,0,-5,-1,-8,-1r0,19v2,1,4,1,7,1v2,0,6,1,10,1v8,0,14,-1,18,-2v5,-2,9,-4,13,-7v3,-3,6,-7,9,-12v3,-5,6,-12,9,-20r81,-214r-23,0r-57,159r-61,-159r-24,0","w":166,"k":{".":33,",":33}},"z":{"d":"156,-170r0,-16r-142,0r0,19r113,0r-122,149r0,18r156,0r0,-19r-128,0","w":166},"{":{"d":"105,69r0,-19r-7,0v-3,0,-6,-1,-9,-3v-2,-2,-4,-5,-6,-8v-2,-4,-3,-8,-3,-12v-1,-5,-2,-10,-2,-14r0,-51v0,-10,-1,-18,-3,-26v-2,-7,-4,-12,-7,-17v-3,-5,-6,-8,-9,-11v-3,-2,-5,-4,-6,-4r0,-1v1,-1,3,-2,6,-5v3,-2,6,-6,9,-10v3,-5,5,-11,7,-18v2,-7,3,-16,3,-26r0,-50v0,-5,1,-10,2,-14v0,-5,1,-9,3,-12v2,-4,4,-6,6,-8v3,-2,6,-3,9,-3r7,0r0,-19r-18,0v-10,0,-17,4,-23,12v-5,8,-8,19,-8,33r0,53v0,7,-1,14,-1,21v-1,7,-2,14,-4,19v-2,5,-5,10,-8,13v-4,3,-8,5,-13,5r0,19v5,0,9,1,13,5v3,3,6,7,8,13v2,5,3,11,4,18v0,7,1,14,1,21r0,54v0,13,3,24,8,33v6,8,13,12,23,12r18,0","w":119},"|":{"d":"31,77r19,0r0,-360r-19,0r0,360","w":79},"}":{"d":"14,-262r0,19r8,0v3,0,6,1,9,3v2,2,4,4,6,8v1,3,3,7,3,12v1,4,1,9,1,14r0,50v0,10,1,19,4,26v2,7,4,13,7,18v3,4,6,8,9,10v2,3,4,4,6,5r0,1v-2,0,-4,2,-6,4v-3,3,-6,6,-9,11v-3,5,-5,10,-7,17v-3,8,-4,16,-4,26r0,51v0,4,0,9,-1,14v0,4,-2,8,-3,12v-2,3,-4,6,-6,8v-3,2,-6,3,-9,3r-8,0r0,19r18,0v10,0,18,-4,24,-12v5,-9,8,-20,8,-33r0,-54v0,-7,0,-14,1,-21v1,-7,2,-13,4,-19v2,-5,5,-9,8,-13v3,-3,8,-4,13,-4r0,-20v-5,0,-10,-1,-13,-4v-3,-4,-6,-8,-8,-13v-2,-6,-3,-12,-4,-19v-1,-7,-1,-14,-1,-21r0,-53v0,-14,-3,-25,-8,-33v-6,-8,-14,-12,-24,-12r-18,0","w":119},"~":{"d":"178,-113v-4,6,-8,12,-13,17v-5,5,-11,7,-18,7v-5,0,-10,-1,-16,-3v-6,-3,-13,-5,-20,-8v-6,-3,-13,-6,-20,-8v-8,-3,-14,-4,-21,-4v-6,0,-12,1,-16,3v-5,2,-9,4,-13,7v-3,3,-6,6,-9,10v-3,3,-5,7,-7,11r13,13v3,-6,6,-12,11,-17v5,-5,11,-8,19,-8v7,0,14,1,20,4v6,2,12,5,19,8v6,3,12,6,19,8v6,2,13,4,20,4v6,0,11,-1,15,-3v5,-2,9,-4,12,-7v3,-3,7,-6,10,-10v3,-4,6,-8,8,-11","w":216},"\u00a1":{"d":"50,-122r-13,0r-6,117r0,74r25,0r0,-74xm28,-186r0,38r31,0r0,-38r-31,0","w":86},"\u00a2":{"d":"97,-14v-9,-1,-17,-5,-24,-10v-7,-5,-13,-11,-17,-18v-5,-7,-8,-15,-10,-24v-3,-9,-4,-18,-4,-27v0,-9,1,-18,4,-27v2,-8,5,-16,10,-24v4,-7,10,-13,17,-18v7,-5,15,-8,24,-9r0,157xm183,-127v-2,-11,-4,-20,-8,-28v-4,-7,-10,-14,-16,-19v-6,-6,-13,-10,-21,-12v-9,-3,-17,-5,-27,-5r0,-31r-14,0r0,32v-13,1,-24,4,-33,10v-10,5,-18,13,-25,21v-6,9,-11,19,-15,30v-3,12,-5,24,-5,36v0,13,2,24,5,36v4,11,9,21,15,30v7,9,15,16,25,22v9,5,20,9,33,10r0,37r14,0r0,-37v20,0,36,-7,49,-20v13,-12,21,-30,24,-52r-23,0v0,8,-2,15,-5,21v-3,6,-7,12,-11,16v-5,5,-10,9,-15,12v-6,3,-12,4,-19,4r0,-158v14,0,25,5,33,13v8,7,13,18,16,32r23,0"},"\u00a3":{"d":"17,-119r29,0v3,5,5,11,7,19v2,7,3,13,3,19v0,7,-1,14,-3,20r-9,18v-4,5,-8,10,-13,15v-5,5,-10,10,-16,14r13,19v6,-3,6,-3,10,-6v3,-1,6,-3,9,-4v3,-2,6,-3,9,-3v4,-1,7,-1,12,-1v7,0,14,0,20,2v5,2,11,4,16,6v6,1,12,3,18,4v6,2,13,2,21,2v10,0,20,-2,28,-5v8,-4,16,-10,24,-17r-11,-17v-5,6,-12,10,-19,14v-8,4,-15,6,-23,6v-6,0,-11,0,-16,-2v-5,-2,-10,-3,-15,-5v-5,-2,-10,-4,-16,-5v-6,-2,-13,-2,-20,-2v-7,0,-13,1,-19,3v-6,2,-11,5,-16,7r-1,0v5,-4,10,-9,14,-13v5,-5,9,-10,13,-16v4,-5,7,-11,9,-17v2,-7,3,-13,3,-20v0,-5,0,-11,-2,-18v-1,-7,-4,-12,-6,-17r51,0r0,-11r-58,0v-2,-6,-4,-10,-7,-15v-2,-4,-5,-8,-7,-12v-2,-4,-4,-9,-5,-13v-1,-5,-2,-11,-2,-17v0,-9,2,-18,5,-25v4,-7,8,-13,13,-18v6,-4,12,-8,19,-10v7,-2,15,-3,23,-3v10,0,18,1,26,5v8,3,14,7,19,13v5,6,9,13,12,21v2,8,3,17,3,27r23,0v1,-27,-7,-48,-21,-63v-15,-15,-36,-22,-62,-22v-11,0,-21,1,-31,4v-10,3,-18,7,-26,13v-8,7,-14,14,-19,23v-4,10,-7,21,-7,34v0,11,2,21,6,30v4,10,9,19,14,28r-22,0r0,11"},"\u00a4":{"d":"10,-49r14,14r20,-20v8,6,17,11,26,14v10,4,20,6,30,6v11,0,21,-2,30,-5v10,-4,18,-9,26,-15r19,20r14,-14r-19,-19v6,-8,11,-17,14,-26v4,-10,6,-20,6,-31v0,-10,-2,-21,-6,-30v-3,-9,-8,-18,-14,-26r19,-19r-14,-14r-19,20v-8,-6,-17,-11,-26,-15v-9,-3,-19,-5,-30,-5v-10,0,-21,2,-30,6v-10,3,-18,8,-26,14r-20,-20r-14,14r21,20v-7,8,-11,16,-15,26v-3,9,-5,19,-5,29v0,11,2,21,5,30v4,9,9,18,15,26xm34,-125v0,-9,2,-18,5,-27v4,-8,8,-15,14,-21v6,-6,13,-11,22,-15v8,-3,16,-5,25,-5v10,0,18,2,26,5v9,4,16,9,22,15v6,6,10,13,14,21v3,9,5,18,5,27v0,10,-2,19,-5,27v-4,9,-8,16,-14,22v-6,6,-13,11,-22,15v-8,3,-16,5,-26,5v-9,0,-17,-2,-25,-5v-9,-4,-16,-9,-22,-15v-6,-6,-10,-13,-14,-22v-3,-8,-5,-17,-5,-27"},"\u00a5":{"d":"40,-109r46,0r2,3r0,26r-48,0r0,17r48,0r0,63r23,0r0,-63r49,0r0,-17r-49,0r0,-26r2,-3r47,0r0,-17r-39,0r76,-131r-25,0r-72,131r-72,-131r-26,0r76,131r-38,0r0,17"},"\u00a6":{"d":"31,32r19,0r0,-90r-19,0r0,90xm31,-148r19,0r0,-90r-19,0r0,90","w":79},"\u00a7":{"d":"161,-83v0,10,-3,18,-8,25v-6,6,-13,10,-22,14v-8,-5,-17,-11,-27,-16v-11,-5,-21,-11,-31,-17v-9,-6,-17,-13,-24,-20v-7,-8,-10,-16,-10,-25v0,-10,3,-18,8,-24v6,-6,13,-11,21,-15v8,5,17,11,28,16v10,5,20,11,30,17v10,6,18,12,25,20v7,7,10,16,10,25xm184,-83v0,-12,-3,-22,-9,-30v-6,-9,-14,-16,-23,-23v-9,-6,-19,-12,-30,-17v-11,-6,-21,-11,-30,-17v-9,-5,-17,-11,-23,-18v-6,-6,-9,-14,-9,-23v0,-6,1,-11,4,-15v2,-4,5,-7,9,-10v4,-2,8,-4,13,-6v4,-1,9,-1,14,-1v7,0,12,1,18,3v5,3,10,6,13,10v4,4,7,8,9,14v2,6,2,11,2,17r23,0v0,-20,-6,-36,-18,-47v-12,-11,-28,-16,-49,-16v-7,0,-15,1,-22,3v-7,2,-14,6,-19,10v-6,4,-11,10,-14,16v-4,7,-6,14,-6,22v0,16,6,29,18,39v-5,2,-10,5,-15,8v-4,4,-9,7,-12,12v-4,4,-7,9,-9,14v-2,5,-3,11,-3,17v0,11,3,22,9,30v7,8,14,16,23,22v9,7,19,13,30,18v11,5,21,11,30,16v9,6,17,12,23,18v6,7,9,15,9,24v0,6,-1,10,-3,14v-3,4,-6,8,-10,10v-3,3,-8,5,-13,6v-4,1,-9,2,-14,2v-7,0,-12,-1,-18,-4v-5,-2,-9,-5,-13,-9v-4,-4,-7,-9,-9,-14v-1,-6,-2,-12,-2,-18r-23,0v0,21,6,37,18,48v12,10,28,16,49,16v7,0,15,-1,22,-3v7,-3,14,-6,20,-10v5,-5,10,-10,14,-16v3,-7,5,-14,5,-23v0,-15,-6,-28,-18,-39v5,-2,10,-5,15,-8v5,-3,9,-7,12,-11v4,-5,7,-9,9,-14v2,-6,3,-11,3,-17"},"\u00a8":{"d":"77,-218r0,-36r-24,0r0,36r24,0xm14,-218r0,-36r-25,0r0,36r25,0","w":66},"\u00a9":{"d":"278,-129v0,-18,-4,-36,-10,-52v-7,-16,-17,-31,-29,-43v-12,-12,-26,-21,-42,-28v-16,-7,-34,-10,-53,-10v-19,0,-37,3,-53,10v-16,7,-30,16,-42,28v-12,12,-22,27,-29,43v-6,16,-10,34,-10,52v0,19,4,37,10,53v7,16,17,31,29,43v12,12,26,21,42,28v16,7,34,10,53,10v19,0,37,-3,53,-10v16,-7,30,-16,42,-28v12,-12,22,-27,29,-43v6,-16,10,-34,10,-53xm257,-129v0,17,-3,32,-9,45v-5,14,-13,27,-23,37v-10,10,-22,18,-36,24v-14,6,-29,9,-45,9v-16,0,-31,-3,-45,-9v-14,-6,-26,-14,-36,-24v-10,-10,-18,-23,-24,-37v-5,-13,-8,-28,-8,-45v0,-16,3,-31,8,-45v6,-13,14,-26,24,-36v10,-10,22,-18,36,-24v14,-6,29,-9,45,-9v16,0,31,3,45,9v14,6,26,14,36,24v10,10,18,23,23,36v6,14,9,29,9,45xm214,-157v-1,-8,-4,-16,-8,-23v-4,-7,-8,-12,-14,-17v-6,-4,-13,-8,-21,-10v-7,-3,-15,-4,-24,-4v-12,0,-23,2,-33,6v-9,4,-18,10,-24,17v-7,8,-12,17,-15,27v-4,10,-6,21,-6,32v0,12,2,23,6,33v3,10,8,19,15,27v6,7,15,13,24,17v10,4,21,6,33,6v9,0,17,-1,24,-4v8,-2,15,-6,21,-10v6,-5,10,-10,14,-17v4,-7,7,-15,8,-23r-19,0v-2,10,-7,19,-15,27v-8,7,-19,11,-32,11v-10,0,-19,-2,-26,-5v-7,-4,-14,-8,-19,-14v-5,-6,-9,-13,-11,-21v-3,-8,-4,-17,-4,-27v0,-9,1,-18,4,-26v2,-8,6,-15,11,-21v5,-6,12,-10,19,-14v7,-3,16,-5,26,-5v13,0,24,4,32,11v8,8,13,17,15,27r19,0","w":288},"\u00aa":{"d":"82,-181v0,6,-1,10,-3,15v-3,4,-6,7,-10,10v-3,3,-8,6,-13,7v-5,2,-11,2,-16,2v-3,0,-6,0,-9,-1v-3,-1,-5,-2,-8,-4v-2,-2,-4,-4,-6,-7v-1,-2,-2,-5,-2,-9v0,-5,2,-9,4,-11v3,-3,7,-5,12,-7v5,-2,11,-3,17,-4v7,0,14,-1,21,-3v2,0,4,-1,7,-1v3,-1,5,-2,5,-4r1,0r0,17xm19,-215v1,-9,4,-15,10,-19v6,-4,13,-6,21,-6v5,0,9,0,13,1v3,1,7,2,10,4v3,2,5,4,7,7v1,3,2,7,2,12v0,4,-2,7,-5,8v-3,1,-8,2,-14,3r-24,3v-7,1,-14,2,-20,5v-7,2,-11,6,-15,10v-4,5,-6,12,-6,20v0,12,4,21,12,26v8,6,18,9,31,9v19,0,34,-8,44,-24r1,0v0,7,1,12,3,15v2,4,7,5,14,5r5,0v2,0,3,-1,5,-1r0,-12v-2,1,-3,1,-5,1v-6,0,-9,-3,-9,-8r0,-62v0,-8,-1,-14,-4,-18v-2,-5,-6,-9,-10,-11v-4,-3,-9,-5,-15,-6v-6,-1,-11,-1,-17,-1v-15,0,-27,3,-36,9v-9,6,-14,16,-14,30r16,0","w":111},"\u00ab":{"d":"127,-43r0,-24r-33,-32r33,-32r0,-24r-47,45r0,22xm69,-43r0,-24r-33,-32r33,-32r0,-24r-47,45r0,22","w":153},"\u00ac":{"d":"180,-40r19,0r0,-96r-181,0r0,19r162,0r0,77","w":216},"\u00ae":{"d":"144,-262v-19,0,-37,3,-53,10v-16,7,-30,16,-42,28v-12,12,-22,27,-29,43v-6,16,-10,34,-10,52v0,19,4,37,10,53v7,16,17,31,29,43v12,12,26,21,42,28v16,7,34,10,53,10v19,0,37,-3,53,-10v16,-7,30,-16,42,-28v12,-12,22,-27,29,-43v6,-16,10,-34,10,-53v0,-18,-4,-36,-10,-52v-7,-16,-17,-31,-29,-43v-12,-12,-26,-21,-42,-28v-16,-7,-34,-10,-53,-10xm144,-243v16,0,31,3,45,9v14,6,26,14,36,24v10,10,18,23,23,36v6,14,9,29,9,45v0,17,-3,32,-9,45v-5,14,-13,27,-23,37v-10,10,-22,18,-36,24v-14,6,-29,9,-45,9v-16,0,-31,-3,-45,-9v-14,-6,-26,-14,-36,-24v-10,-10,-18,-23,-24,-37v-5,-13,-8,-28,-8,-45v0,-16,3,-31,8,-45v6,-13,14,-26,24,-36v10,-10,22,-18,36,-24v14,-6,29,-9,45,-9xm114,-120r33,0r43,69r22,0r-46,-69v6,-1,11,-2,15,-4v5,-2,9,-5,13,-9v3,-3,6,-7,8,-12v2,-5,3,-11,3,-18v0,-14,-4,-25,-12,-32v-8,-7,-21,-11,-38,-11r-60,0r0,155r19,0r0,-69xm114,-136r0,-54r35,0v5,0,9,1,14,1v4,1,8,2,12,5v3,2,6,4,8,8v2,3,3,8,3,13v0,6,-1,11,-4,15v-2,4,-6,7,-10,8v-5,2,-10,3,-15,3v-6,1,-12,1,-17,1r-26,0","w":288},"\u00af":{"d":"93,-228r0,-16r-119,0r0,16r119,0","w":66},"\u02c9":{"d":"93,-228r0,-16r-119,0r0,16r119,0","w":66},"\u00b0":{"d":"20,-202v0,7,1,14,4,20v3,6,6,12,11,17v5,4,10,8,17,11v6,2,13,4,20,4v7,0,14,-2,20,-4v6,-3,12,-7,17,-11v4,-5,8,-11,11,-17v2,-6,4,-13,4,-20v0,-8,-2,-14,-4,-20v-3,-7,-7,-12,-11,-17v-5,-5,-11,-8,-17,-11v-6,-3,-13,-4,-20,-4v-7,0,-14,1,-20,4v-7,3,-12,6,-17,11v-5,5,-8,10,-11,17v-3,6,-4,12,-4,20xm34,-202v0,-6,1,-11,3,-15v2,-5,5,-9,8,-12v4,-3,8,-6,12,-8v5,-2,10,-3,15,-3v5,0,10,1,15,3v4,2,8,5,12,8v3,3,6,7,8,12v2,4,3,9,3,15v0,5,-1,10,-3,14v-2,5,-5,9,-8,12v-4,4,-8,7,-12,9v-5,2,-10,2,-15,2v-5,0,-10,0,-15,-2v-4,-2,-8,-5,-12,-9v-3,-3,-6,-7,-8,-12v-2,-4,-3,-9,-3,-14","w":144},"\u00b1":{"d":"99,-116r-81,0r0,19r81,0r0,65r19,0r0,-65r81,0r0,-19r-81,0r0,-65r-19,0r0,65xm18,0r181,0r0,-19r-181,0r0,19","w":216},"\u00b2":{"d":"26,-199v0,-5,0,-10,1,-15v2,-5,4,-10,6,-14v3,-3,7,-6,12,-9v4,-2,10,-3,16,-3v5,0,10,1,14,2v5,1,9,3,12,6v3,2,6,5,8,9v2,4,3,8,3,12v0,7,-1,12,-3,16v-3,5,-6,9,-11,13v-7,7,-15,12,-24,17v-9,6,-17,11,-25,17v-8,6,-15,13,-21,20v-5,8,-8,18,-9,29r109,0r0,-14r-89,0v1,-5,4,-10,8,-14v4,-4,8,-8,13,-12v5,-3,9,-6,14,-9v5,-2,10,-5,14,-8v5,-3,10,-6,15,-10v5,-3,10,-7,14,-11v3,-5,7,-10,9,-15v2,-5,3,-11,3,-17v0,-16,-5,-27,-15,-34v-10,-7,-22,-11,-37,-11v-19,0,-33,5,-42,15v-9,10,-13,23,-12,40r17,0","w":119},"\u00b3":{"d":"49,-172r12,0v11,0,20,2,28,7v8,6,12,13,12,23v0,5,-1,10,-4,14v-2,4,-5,7,-9,10v-4,3,-8,5,-13,6v-6,2,-11,3,-16,3v-12,0,-22,-4,-29,-11v-7,-7,-11,-17,-10,-28r-17,0v-1,17,3,30,14,39v11,9,25,14,43,14v8,0,15,-1,22,-3v7,-2,13,-6,19,-9v5,-4,9,-9,12,-15v3,-6,5,-13,5,-21v0,-10,-3,-18,-9,-25v-6,-7,-14,-11,-25,-12r0,-1v9,-2,16,-6,20,-12v5,-6,8,-13,8,-21v0,-7,-2,-13,-5,-18v-3,-5,-7,-9,-11,-13v-5,-3,-11,-5,-17,-7v-6,-1,-13,-2,-20,-2v-16,0,-29,5,-38,14v-10,10,-14,22,-15,37r17,0v0,-11,3,-20,9,-27v7,-7,16,-10,27,-10v10,0,18,2,25,7v7,4,11,11,11,20v0,5,-1,9,-3,12v-2,3,-5,6,-8,8v-4,3,-7,4,-11,5v-4,1,-8,2,-12,2r-12,0r0,14","w":119},"\u00b4":{"d":"78,-262r-28,0r-38,50r18,0","w":66},"\u00b5":{"d":"172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,255r23,0r0,-76v6,4,13,7,20,9v7,2,15,3,22,3v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186","w":193},"\u03bc":{"d":"172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,255r23,0r0,-76v6,4,13,7,20,9v7,2,15,3,22,3v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186","w":193},"\u00b6":{"d":"98,64r23,0r0,-302r43,0r0,302r23,0r0,-321r-83,0v-25,0,-45,6,-59,18v-14,12,-21,30,-21,53v0,9,2,18,6,26v3,8,9,16,15,22v7,6,15,11,24,15v9,3,19,5,29,5r0,182","w":216},"\u00b7":{"d":"50,-135v-5,0,-10,2,-15,6v-4,5,-6,9,-6,15v0,6,2,11,6,15v4,4,9,6,15,6v6,0,10,-2,15,-6v4,-4,6,-9,6,-14v0,-6,-2,-11,-6,-16v-4,-4,-9,-6,-15,-6","w":100},"\u2219":{"d":"50,-135v-5,0,-10,2,-15,6v-4,5,-6,9,-6,15v0,6,2,11,6,15v4,4,9,6,15,6v6,0,10,-2,15,-6v4,-4,6,-9,6,-14v0,-6,-2,-11,-6,-16v-4,-4,-9,-6,-15,-6","w":100},"\u00b8":{"d":"33,0r-22,28r6,6v3,-2,10,-3,18,-3v4,0,8,1,11,4v3,2,4,5,4,10v0,5,-2,9,-5,12v-4,2,-9,3,-14,3v-5,0,-10,0,-16,-2v-5,-1,-9,-2,-12,-3r-5,12v5,2,11,4,16,5v6,2,12,2,18,2v4,0,9,0,14,-2v4,-1,8,-3,12,-5v4,-3,7,-6,10,-10v2,-4,3,-8,3,-14v0,-5,-1,-10,-4,-13v-3,-3,-6,-6,-10,-8v-5,-1,-9,-2,-14,-2v-5,0,-9,0,-13,1r15,-21r-12,0","w":66},"\u00b9":{"d":"13,-210r43,0r0,111r17,0r0,-152r-14,0v-2,6,-3,11,-6,15v-2,3,-6,6,-9,7v-4,2,-9,3,-14,4v-5,0,-11,0,-17,1r0,14","w":119},"\u00ba":{"d":"58,-132v10,0,19,-2,27,-5v8,-3,14,-8,19,-13v5,-6,9,-12,11,-20v3,-7,4,-15,4,-23v0,-9,-1,-17,-4,-24v-2,-8,-6,-14,-11,-20v-5,-5,-11,-9,-19,-12v-8,-4,-17,-5,-27,-5v-9,0,-17,1,-24,5v-7,3,-13,7,-18,12v-5,6,-9,12,-11,20v-3,7,-4,15,-4,24v0,8,1,16,4,23v2,8,6,14,11,20v5,5,11,10,18,13v7,3,15,5,24,5xm60,-147v-7,0,-13,-1,-18,-4v-6,-2,-10,-6,-13,-10v-4,-5,-7,-10,-8,-15v-2,-6,-3,-12,-3,-17v0,-6,1,-12,3,-17v1,-6,4,-11,8,-15v3,-5,7,-8,13,-11v5,-3,11,-4,18,-4v7,0,13,1,18,4v6,3,10,6,14,11v3,4,6,9,8,15v1,5,2,11,2,17v0,5,-1,11,-2,17v-2,5,-5,10,-8,15v-4,4,-8,8,-14,10v-5,3,-11,4,-18,4","w":120},"\u00bb":{"d":"84,-43r48,-45r0,-22r-48,-45r0,24r34,32r-34,32r0,24xm26,-43r48,-45r0,-22r-48,-45r0,24r34,32r-34,32r0,24","w":153},"\u00bc":{"d":"48,12r17,0r163,-273r-17,0xm17,-210r44,0r0,111r17,0r0,-152r-15,0v-1,6,-3,11,-5,15v-3,3,-6,6,-10,7v-4,2,-8,3,-13,4v-5,0,-11,0,-18,1r0,14xm231,0r17,0r0,-36r25,0r0,-14r-25,0r0,-102r-16,0r-76,102r0,14r75,0r0,36xm230,-128r1,0r0,78r-59,0","w":300},"\u00bd":{"d":"48,12r17,0r163,-273r-17,0xm17,-210r44,0r0,111r17,0r0,-152r-15,0v-1,6,-3,11,-5,15v-3,3,-6,6,-10,7v-4,2,-8,3,-13,4v-5,0,-11,0,-18,1r0,14xm193,-100v0,-6,1,-11,2,-16v1,-5,3,-9,6,-13v3,-4,6,-7,11,-9v5,-2,10,-3,17,-3v5,0,9,0,14,1r12,6v3,3,6,6,8,10v2,3,3,7,3,12v0,6,-2,12,-4,16v-2,4,-6,9,-10,13v-7,6,-15,12,-24,17v-9,5,-18,11,-26,16v-8,6,-15,13,-20,21v-6,8,-9,17,-9,29r109,0r0,-14r-90,0v2,-6,4,-10,8,-15v4,-4,8,-8,13,-11r15,-9v0,0,9,-5,13,-8v5,-3,11,-6,16,-10v5,-4,9,-8,13,-12v4,-4,7,-9,9,-14v2,-6,4,-11,4,-18v0,-15,-5,-26,-15,-34v-10,-7,-23,-11,-38,-11v-19,0,-32,6,-41,16v-9,10,-13,23,-13,40r17,0","w":300},"\u00be":{"d":"49,-172r12,0v11,0,20,2,28,7v8,6,12,13,12,23v0,5,-1,10,-4,14v-2,4,-5,7,-9,10v-4,3,-8,5,-13,6v-6,2,-11,3,-16,3v-12,0,-22,-4,-29,-11v-7,-7,-11,-17,-10,-28r-17,0v-1,17,3,30,14,39v11,9,25,14,43,14v8,0,15,-1,22,-3v7,-2,13,-6,19,-9v5,-4,9,-9,12,-15v3,-6,5,-13,5,-21v0,-10,-3,-18,-9,-25v-6,-7,-14,-11,-25,-12r0,-1v9,-2,16,-6,20,-12v5,-6,8,-13,8,-21v0,-7,-2,-13,-5,-18v-3,-5,-7,-9,-11,-13v-5,-3,-11,-5,-17,-7v-6,-1,-13,-2,-20,-2v-16,0,-29,5,-38,14v-10,10,-14,22,-15,37r17,0v0,-11,3,-20,9,-27v7,-7,16,-10,27,-10v10,0,18,2,25,7v7,4,11,11,11,20v0,5,-1,9,-3,12v-2,3,-5,6,-8,8v-4,3,-7,4,-11,5v-4,1,-8,2,-12,2r-12,0r0,14xm62,12r18,0r162,-273r-17,0xm231,0r17,0r0,-36r25,0r0,-14r-25,0r0,-102r-16,0r-76,102r0,14r75,0r0,36xm230,-128r1,0r0,78r-59,0","w":300},"\u00bf":{"d":"152,-10v0,9,-1,18,-4,25v-2,8,-6,15,-10,21v-5,6,-11,11,-19,14v-7,3,-16,5,-25,5v-7,0,-14,-1,-20,-4v-6,-2,-12,-5,-17,-9v-4,-5,-8,-10,-11,-16v-2,-6,-4,-12,-4,-20v0,-9,2,-17,7,-25v4,-8,10,-15,17,-21r19,-19v5,-5,10,-11,13,-17v3,-6,6,-12,7,-20v2,-8,2,-17,2,-28r-23,0v0,11,0,20,-1,25v-1,6,-2,11,-5,15v-2,4,-5,9,-9,13v-7,6,-7,6,-18,17v-9,9,-17,18,-23,27v-6,10,-9,21,-9,35v0,10,2,19,6,28v4,8,9,15,16,21v7,5,15,10,23,13v9,3,18,4,29,4v12,0,24,-2,34,-6v10,-4,19,-9,26,-17v7,-7,12,-16,16,-27v3,-10,5,-22,5,-34r-22,0xm111,-186r-31,0r0,38r31,0r0,-38","w":193},"\u00c0":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0xm116,-278r19,0r-38,-50r-28,0","w":226},"\u00c1":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0xm158,-328r-28,0r-38,50r18,0","w":226},"\u00c2":{"d":"126,-328r-25,0r-41,50r21,0r32,-36r31,36r23,0xm-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226},"\u00c3":{"d":"156,-321v-1,5,-3,9,-6,12v-3,4,-7,6,-12,6v-4,0,-7,-1,-11,-3v-5,-3,-5,-3,-11,-5v-4,-2,-8,-4,-13,-6v-4,-1,-9,-2,-14,-2v-5,0,-9,1,-13,3v-4,2,-7,4,-9,8v-3,3,-5,7,-7,11v-2,4,-3,8,-3,12r14,0v0,-6,2,-10,5,-13v4,-4,8,-5,14,-5v3,0,6,1,10,3r12,6v4,1,8,3,13,5v4,2,9,2,14,2v4,0,8,-1,12,-3v4,-2,7,-4,9,-8v3,-3,5,-6,6,-11v2,-4,3,-8,4,-12r-14,0xm-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226},"\u00c4":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0xm157,-284r0,-36r-24,0r0,36r24,0xm94,-284r0,-36r-25,0r0,36r25,0","w":226},"\u00c5":{"d":"75,-310v0,6,1,11,3,15v2,5,5,9,9,13v3,3,7,6,12,8v5,2,9,3,15,3v5,0,10,-1,15,-3v4,-2,8,-5,12,-8v3,-4,6,-8,8,-13v2,-4,3,-9,3,-15v0,-5,-1,-10,-3,-15v-2,-4,-5,-8,-8,-12v-4,-3,-8,-6,-12,-8v-5,-2,-10,-3,-15,-3v-6,0,-10,1,-15,3v-5,2,-9,5,-12,8v-4,4,-7,8,-9,12v-2,5,-3,10,-3,15xm89,-310v0,-7,3,-12,7,-17v5,-5,11,-7,18,-7v7,0,13,2,17,7v5,5,7,10,7,17v0,7,-2,13,-7,18v-4,5,-10,7,-17,7v-7,0,-13,-2,-18,-7v-4,-5,-7,-11,-7,-18xm-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226},"\u00c6":{"d":"185,-122r124,0r0,-21r-124,0r0,-93r132,0r0,-21r-185,0r-135,257r28,0r42,-81r93,0r0,81r158,0r0,-21r-133,0r0,-101xm78,-102r68,-134r14,0r0,134r-82,0","w":326},"\u00c7":{"d":"217,-98v-1,12,-4,22,-8,32v-4,10,-10,19,-17,26v-7,8,-15,14,-25,18v-9,4,-20,7,-32,7v-17,0,-32,-4,-44,-10v-12,-7,-22,-15,-30,-26v-8,-11,-14,-23,-17,-36v-4,-14,-6,-27,-6,-42v0,-13,2,-27,6,-41v3,-13,9,-25,17,-36v8,-11,18,-19,30,-26v12,-6,27,-10,44,-10v9,0,18,2,27,5v8,2,16,6,23,12v7,5,13,11,18,19v5,8,9,17,11,27r24,0v-1,-14,-5,-26,-12,-36v-6,-10,-14,-19,-24,-26v-9,-7,-20,-12,-31,-16v-12,-4,-24,-5,-36,-5v-20,0,-38,3,-53,11v-15,7,-28,17,-38,29v-10,12,-18,27,-23,43v-5,16,-7,33,-7,50v0,17,2,33,7,49v4,15,11,29,20,41v9,12,20,22,34,30v13,8,29,12,47,14r-18,23r6,6v4,-2,10,-3,18,-3v4,0,8,1,11,4v3,2,5,5,5,10v0,5,-2,9,-6,12v-4,2,-8,3,-13,3v-6,0,-11,0,-16,-2v-6,-1,-10,-2,-13,-3r-5,12v5,2,11,4,17,5v5,2,11,2,17,2v4,0,9,0,14,-2v4,-1,9,-3,13,-5v3,-3,7,-6,9,-10v2,-4,4,-8,4,-14v0,-5,-2,-10,-5,-13v-2,-3,-6,-6,-10,-8v-4,-1,-9,-2,-14,-2v-4,0,-9,0,-13,1r12,-16r0,0v15,0,29,-2,41,-7v13,-5,23,-12,32,-20v10,-10,17,-20,23,-33v6,-13,9,-27,11,-43r-25,0","w":253},"\u00c8":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257xm109,-278r19,0r-38,-50r-28,0","w":213},"\u00c9":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257xm151,-328r-28,0r-38,50r18,0","w":213},"\u00ca":{"d":"119,-328r-25,0r-41,50r21,0r32,-36r31,36r23,0xm26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257","w":213},"\u00cb":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257xm150,-284r0,-36r-24,0r0,36r24,0xm87,-284r0,-36r-25,0r0,36r25,0","w":213},"\u00cc":{"d":"28,0r24,0r0,-257r-24,0r0,257xm43,-278r19,0r-38,-50r-28,0","w":79},"\u00cd":{"d":"28,0r24,0r0,-257r-24,0r0,257xm85,-328r-28,0r-38,50r18,0","w":79},"\u00ce":{"d":"53,-328r-25,0r-41,50r21,0r31,-36r31,36r24,0xm28,0r24,0r0,-257r-24,0r0,257","w":79},"\u00cf":{"d":"28,0r24,0r0,-257r-24,0r0,257xm84,-284r0,-36r-24,0r0,36r24,0xm21,-284r0,-36r-25,0r0,36r25,0","w":79},"\u00d0":{"d":"50,-236r53,0v18,0,34,2,47,6v14,4,25,10,33,19v9,8,15,19,19,33v4,14,6,30,6,49v0,20,-2,36,-6,50v-4,13,-10,25,-19,33v-8,9,-19,15,-33,19v-13,4,-29,6,-47,6r-53,0r0,-104r85,0r0,-16r-85,0r0,-95xm26,-141r-26,0r0,16r26,0r0,125r89,0v39,-1,68,-12,88,-33v20,-21,30,-53,30,-96v0,-42,-10,-74,-30,-95v-20,-21,-49,-32,-88,-33r-89,0r0,116","w":246},"\u00d1":{"d":"170,-321v-2,5,-4,9,-7,12v-3,4,-7,6,-12,6v-4,0,-7,-1,-10,-3v-6,-3,-6,-3,-12,-5r-12,-6v-5,-1,-9,-2,-15,-2v-5,0,-9,1,-13,3v-3,2,-6,4,-9,8v-3,3,-5,7,-7,11r-3,12r14,0v0,-6,2,-10,6,-13v3,-4,8,-5,13,-5v3,0,7,1,10,3r12,6v4,1,8,3,13,5v4,2,9,2,14,2v4,0,9,-1,12,-3v4,-2,7,-4,10,-8v2,-3,4,-6,6,-11v1,-4,3,-8,3,-12r-13,0xm26,0r24,0r0,-217r1,0r150,217r27,0r0,-257r-25,0r0,217r0,0r-150,-217r-27,0r0,257","w":253},"\u00d2":{"d":"12,-129v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50xm37,-129v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42xm136,-278r19,0r-38,-50r-28,0","w":266},"\u00d3":{"d":"12,-129v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50xm37,-129v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42xm178,-328r-28,0r-38,50r18,0","w":266},"\u00d4":{"d":"146,-328r-25,0r-41,50r21,0r31,-36r31,36r24,0xm12,-129v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50xm37,-129v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42","w":266},"\u00d5":{"d":"176,-321v-1,5,-4,9,-6,12v-3,4,-7,6,-13,6v-3,0,-6,-1,-10,-3v-5,-3,-5,-3,-11,-5v-4,-2,-9,-4,-13,-6v-4,-1,-9,-2,-14,-2v-5,0,-9,1,-13,3v-4,2,-7,4,-10,8v-2,3,-4,7,-6,11v-2,4,-3,8,-3,12r14,0v0,-6,2,-10,5,-13v4,-4,8,-5,14,-5v3,0,6,1,10,3v3,2,7,4,11,6v4,1,9,3,13,5v5,2,10,2,14,2v5,0,9,-1,13,-3v4,-2,7,-4,9,-8v3,-3,5,-6,6,-11v2,-4,3,-8,4,-12r-14,0xm12,-129v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50xm37,-129v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42","w":266},"\u00d6":{"d":"12,-129v0,18,3,35,8,51v5,16,12,31,22,43v11,12,23,22,38,29v16,8,33,11,54,11v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-5,-16,-13,-31,-23,-43v-10,-12,-22,-22,-38,-29v-15,-8,-32,-11,-52,-11v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50xm37,-129v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v16,0,31,4,43,10v12,7,22,15,30,26v8,11,14,23,17,36v4,14,6,28,6,41v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-17,0,-32,-4,-44,-10v-13,-7,-23,-15,-30,-26v-8,-11,-14,-23,-18,-36v-3,-14,-5,-27,-5,-42xm177,-284r0,-36r-24,0r0,36r24,0xm114,-284r0,-36r-25,0r0,36r25,0","w":266},"\u00d7":{"d":"94,-90r-67,68r13,13r68,-68r68,68r13,-13r-68,-68r68,-68r-13,-14r-68,68r-68,-68r-13,14","w":216},"\u00d8":{"d":"209,-203v7,10,13,22,16,35v3,12,5,26,5,39v0,15,-2,28,-6,42v-3,13,-9,25,-17,36v-8,11,-18,19,-30,26v-12,6,-27,10,-43,10v-15,0,-28,-3,-40,-8v-11,-5,-20,-12,-28,-21xm58,-54v-8,-10,-13,-22,-16,-35v-4,-13,-5,-26,-5,-40v0,-13,2,-27,5,-41v4,-13,10,-25,18,-36v7,-11,17,-19,30,-26v12,-6,27,-10,44,-10v14,0,27,3,39,8v11,5,20,12,28,21xm242,-259r-26,28v-10,-10,-22,-17,-35,-23v-14,-6,-30,-8,-47,-8v-21,0,-38,3,-54,11v-15,7,-27,17,-38,29v-10,12,-17,27,-22,43v-5,16,-8,33,-8,50v0,18,3,34,7,50v5,16,13,30,23,43r-29,31r10,9r27,-31v10,10,22,18,36,24v14,6,30,8,48,8v20,0,37,-3,52,-11v16,-7,28,-17,38,-29v10,-12,18,-27,23,-43v5,-16,8,-33,8,-51v0,-17,-3,-34,-8,-50v-4,-16,-12,-30,-22,-42r26,-30","w":266},"\u00d9":{"d":"23,-93v0,14,2,26,6,38v4,12,10,22,18,31v8,9,18,16,31,21v12,6,27,8,45,8v18,0,33,-2,46,-8v13,-5,23,-12,31,-21v8,-9,14,-19,18,-31v3,-12,5,-24,5,-38r0,-164r-24,0r0,159v0,15,-2,28,-5,38v-4,10,-9,19,-15,26v-7,6,-15,11,-24,14v-9,3,-20,5,-32,5v-12,0,-22,-2,-32,-5v-9,-3,-17,-8,-23,-14v-7,-7,-12,-16,-15,-26v-3,-10,-5,-23,-5,-38r0,-159r-25,0r0,164xm126,-278r19,0r-38,-50r-28,0","w":246},"\u00da":{"d":"23,-93v0,14,2,26,6,38v4,12,10,22,18,31v8,9,18,16,31,21v12,6,27,8,45,8v18,0,33,-2,46,-8v13,-5,23,-12,31,-21v8,-9,14,-19,18,-31v3,-12,5,-24,5,-38r0,-164r-24,0r0,159v0,15,-2,28,-5,38v-4,10,-9,19,-15,26v-7,6,-15,11,-24,14v-9,3,-20,5,-32,5v-12,0,-22,-2,-32,-5v-9,-3,-17,-8,-23,-14v-7,-7,-12,-16,-15,-26v-3,-10,-5,-23,-5,-38r0,-159r-25,0r0,164xm168,-328r-28,0r-38,50r18,0","w":246},"\u00db":{"d":"136,-328r-25,0r-41,50r21,0r31,-36r31,36r24,0xm23,-93v0,14,2,26,6,38v4,12,10,22,18,31v8,9,18,16,31,21v12,6,27,8,45,8v18,0,33,-2,46,-8v13,-5,23,-12,31,-21v8,-9,14,-19,18,-31v3,-12,5,-24,5,-38r0,-164r-24,0r0,159v0,15,-2,28,-5,38v-4,10,-9,19,-15,26v-7,6,-15,11,-24,14v-9,3,-20,5,-32,5v-12,0,-22,-2,-32,-5v-9,-3,-17,-8,-23,-14v-7,-7,-12,-16,-15,-26v-3,-10,-5,-23,-5,-38r0,-159r-25,0r0,164","w":246},"\u00dc":{"d":"23,-93v0,14,2,26,6,38v4,12,10,22,18,31v8,9,18,16,31,21v12,6,27,8,45,8v18,0,33,-2,46,-8v13,-5,23,-12,31,-21v8,-9,14,-19,18,-31v3,-12,5,-24,5,-38r0,-164r-24,0r0,159v0,15,-2,28,-5,38v-4,10,-9,19,-15,26v-7,6,-15,11,-24,14v-9,3,-20,5,-32,5v-12,0,-22,-2,-32,-5v-9,-3,-17,-8,-23,-14v-7,-7,-12,-16,-15,-26v-3,-10,-5,-23,-5,-38r0,-159r-25,0r0,164xm167,-284r0,-36r-24,0r0,36r24,0xm104,-284r0,-36r-25,0r0,36r25,0","w":246},"\u00dd":{"d":"98,0r24,0r0,-106r102,-151r-30,0r-84,130r-84,-130r-30,0r102,151r0,106xm155,-328r-28,0r-38,50r18,0","w":219},"\u00de":{"d":"26,0r24,0r0,-68r90,0v12,0,22,-2,31,-5v10,-3,18,-8,24,-14v7,-7,12,-14,16,-24v4,-9,5,-19,5,-30v0,-12,-1,-22,-5,-31v-4,-10,-9,-17,-16,-24v-6,-6,-14,-11,-24,-14v-9,-3,-19,-5,-31,-5r-90,0r0,-42r-24,0r0,257xm50,-194r85,0v17,0,30,4,41,13v11,9,16,22,16,40v0,17,-5,30,-16,39v-11,9,-24,13,-41,13r-85,0r0,-105","w":226},"\u00df":{"d":"22,0r23,0r0,-191v0,-17,3,-30,11,-39v7,-9,20,-13,38,-13v6,0,13,1,18,3v6,2,11,5,15,9v5,4,8,9,11,14v2,6,3,12,3,19v0,9,-1,17,-5,23v-3,6,-8,10,-14,14v-6,3,-12,6,-20,7v-7,2,-15,2,-23,2r0,20v11,0,21,0,31,2v9,1,17,4,23,8v7,4,12,10,16,18v4,8,5,18,5,30v0,11,-1,19,-5,27v-3,7,-7,13,-13,18v-5,4,-11,8,-18,10v-7,2,-14,3,-22,3v-3,0,-6,0,-8,-1v-3,0,-6,0,-9,-1r0,20v3,1,6,1,9,1r9,0v12,0,22,-2,32,-6v10,-3,18,-8,25,-15v7,-7,13,-15,17,-25v4,-10,6,-21,6,-35v0,-8,-1,-16,-3,-24v-3,-7,-6,-14,-11,-20v-4,-6,-10,-11,-16,-15v-7,-4,-15,-7,-24,-7r0,-1v7,-2,13,-4,18,-7v5,-4,9,-8,13,-13v3,-4,6,-10,7,-16v2,-5,3,-12,3,-18v0,-10,-2,-19,-5,-27v-4,-8,-9,-15,-16,-20v-6,-5,-14,-10,-22,-12v-9,-3,-18,-4,-27,-4v-11,0,-21,1,-30,4v-8,3,-16,7,-22,13v-6,6,-11,13,-15,22v-3,8,-5,19,-5,30r0,193","w":193},"\u00e0":{"d":"140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0xm96,-212r19,0r-38,-50r-28,0","w":186},"\u00e1":{"d":"140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0xm138,-262r-28,0r-38,50r18,0","w":186},"\u00e2":{"d":"106,-262r-25,0r-41,50r21,0r32,-36r30,36r24,0xm140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0","w":186},"\u00e3":{"d":"136,-255v-1,5,-3,9,-6,12v-3,4,-7,5,-13,5v-3,0,-6,0,-10,-2v-5,-3,-5,-3,-11,-6v-4,-1,-9,-3,-13,-5v-4,-2,-9,-2,-14,-2v-5,0,-9,1,-13,3v-4,2,-7,4,-10,8v-2,3,-4,6,-6,11v-2,4,-3,8,-3,12r14,0v0,-6,2,-10,5,-14v4,-3,8,-4,14,-4v3,0,6,1,10,3v4,2,7,3,11,5v5,2,9,4,13,6v5,1,10,2,14,2v5,0,9,-1,13,-3v4,-2,7,-4,9,-8v3,-3,5,-7,6,-11v2,-4,3,-8,4,-12r-14,0xm140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0","w":186},"\u00e4":{"d":"140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0xm137,-218r0,-36r-24,0r0,36r24,0xm74,-218r0,-36r-25,0r0,36r25,0","w":186},"\u00e5":{"d":"55,-244v0,6,1,11,3,15v2,5,5,9,8,12v4,4,8,7,13,9v4,2,9,3,15,3v5,0,10,-1,15,-3v4,-2,8,-5,12,-9v3,-3,6,-7,8,-12v2,-4,3,-9,3,-15v0,-5,-1,-10,-3,-15v-2,-4,-5,-8,-8,-12v-4,-3,-8,-6,-12,-8v-5,-2,-10,-3,-15,-3v-6,0,-11,1,-15,3v-5,2,-9,5,-13,8v-3,4,-6,8,-8,12v-2,5,-3,10,-3,15xm69,-244v0,-7,2,-12,7,-17v5,-5,11,-7,18,-7v7,0,12,2,17,7v5,5,7,10,7,17v0,7,-2,13,-7,18v-5,4,-10,7,-17,7v-7,0,-13,-3,-18,-7v-5,-5,-7,-11,-7,-18xm140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm42,-129v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v9,0,16,0,23,-2v7,-2,13,-4,18,-7v5,-4,10,-8,14,-12v4,-5,8,-10,12,-16r1,0v0,4,0,9,1,13v1,4,2,7,4,10v2,3,5,5,8,7v3,1,8,2,14,2r8,0v2,-1,4,-1,7,-1r0,-20v-3,1,-5,2,-8,2v-8,0,-13,-5,-13,-14r0,-98v0,-13,-2,-23,-6,-31v-4,-8,-9,-14,-16,-18v-6,-4,-14,-7,-22,-9v-8,-1,-16,-2,-24,-2v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0","w":186},"\u00e6":{"d":"163,-106v0,-8,1,-17,3,-25v3,-8,7,-15,12,-21v5,-6,11,-11,18,-15v8,-3,16,-5,25,-5v9,0,17,2,25,6v7,3,13,8,18,14v5,6,9,13,12,21v3,8,4,17,4,25r-117,0xm140,-72v0,9,-1,17,-5,24v-3,8,-8,14,-14,19v-6,5,-13,9,-21,11v-7,3,-16,4,-24,4v-6,0,-11,-1,-16,-2v-5,-2,-9,-4,-13,-8v-4,-3,-7,-7,-9,-11v-3,-5,-4,-10,-4,-15v0,-10,3,-17,8,-21v6,-5,13,-9,21,-12v8,-2,18,-4,28,-6v10,-1,20,-3,30,-4v3,-1,6,-2,10,-3v4,-1,7,-3,9,-6r0,0r0,30xm303,-87v0,-13,-2,-26,-4,-39v-3,-12,-7,-24,-14,-33v-6,-10,-14,-18,-24,-24v-10,-5,-23,-8,-39,-8v-6,0,-13,1,-20,2v-6,2,-13,4,-18,7v-6,4,-11,8,-16,12v-5,5,-8,11,-11,17r0,0v-2,-8,-4,-14,-9,-19v-4,-5,-9,-9,-15,-12v-5,-3,-12,-4,-19,-6v-7,-1,-13,-1,-19,-1v-22,0,-39,5,-53,15v-14,9,-21,25,-23,47r23,0v1,-15,5,-26,15,-33v9,-7,21,-10,35,-10v7,0,13,0,19,2v6,1,11,3,15,5v5,3,8,7,11,12v2,5,3,11,3,19v0,5,0,9,-2,12v-1,3,-3,6,-5,8r-9,3v-4,1,-8,2,-13,2v-12,2,-24,3,-36,5v-12,1,-23,4,-32,8v-9,4,-17,9,-23,17v-6,7,-8,17,-8,30v0,9,1,17,4,24v4,7,8,13,14,17v5,5,12,8,20,10v7,2,15,3,24,3v8,0,16,-1,25,-2v8,-2,16,-5,24,-9v7,-4,13,-9,19,-15v5,-6,8,-13,10,-20r0,0v6,15,14,27,26,35v12,8,26,11,42,11v22,0,40,-5,53,-17v14,-11,24,-27,28,-48r-22,0v-4,15,-10,26,-19,34v-9,8,-21,12,-36,12v-11,0,-21,-2,-29,-5v-7,-4,-14,-10,-19,-16v-5,-7,-9,-15,-11,-24v-2,-9,-3,-18,-2,-28r140,0","w":313},"\u00e7":{"d":"154,-67v-1,8,-3,15,-6,22v-3,6,-7,12,-12,16v-4,5,-10,9,-16,11v-6,3,-13,4,-20,4v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7v15,0,27,4,35,12v9,8,15,19,18,33r22,0v-2,-22,-11,-38,-24,-48v-14,-11,-31,-16,-51,-16v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,13,2,24,5,36v4,11,9,21,15,29v7,9,15,16,24,22v10,6,21,9,33,11r-18,23r6,6v4,-2,10,-3,18,-3v4,0,8,1,11,4v3,2,5,5,5,10v0,5,-2,9,-6,12v-4,2,-9,3,-14,3v-5,0,-10,0,-15,-2v-6,-1,-10,-2,-13,-3r-5,12v5,2,11,4,17,5v5,2,11,2,17,2v4,0,9,0,14,-2v4,-1,9,-3,12,-5v4,-3,7,-6,10,-10v2,-4,3,-8,3,-14v0,-5,-1,-10,-4,-13v-3,-3,-6,-6,-10,-8v-4,-1,-9,-2,-14,-2v-4,0,-9,0,-13,1r12,-16v20,0,37,-7,50,-19v13,-13,22,-30,25,-53r-23,0","w":186},"\u00e8":{"d":"178,-87v0,-13,-1,-25,-4,-38v-3,-13,-7,-24,-14,-34v-7,-9,-15,-17,-26,-23v-10,-6,-23,-9,-38,-9v-15,0,-27,3,-38,8v-11,6,-19,13,-26,23v-7,9,-12,19,-15,31v-3,12,-5,24,-5,36v0,13,2,26,5,38v3,12,8,22,15,31v7,9,15,16,26,21v11,6,23,8,38,8v24,0,42,-5,55,-17v13,-12,21,-28,26,-49r-23,0v-3,14,-10,25,-19,34v-9,9,-22,13,-39,13v-11,0,-20,-2,-28,-7v-8,-4,-14,-10,-19,-17v-4,-7,-8,-15,-10,-23v-3,-9,-4,-17,-4,-26r143,0xm35,-106v1,-8,3,-16,6,-24v3,-9,7,-16,12,-22v5,-6,11,-11,18,-14v7,-4,16,-6,25,-6v9,0,17,2,25,6v7,3,13,8,18,14v5,6,9,13,12,21v2,8,4,17,4,25r-120,0xm96,-212r19,0r-38,-50r-28,0","w":186},"\u00e9":{"d":"178,-87v0,-13,-1,-25,-4,-38v-3,-13,-7,-24,-14,-34v-7,-9,-15,-17,-26,-23v-10,-6,-23,-9,-38,-9v-15,0,-27,3,-38,8v-11,6,-19,13,-26,23v-7,9,-12,19,-15,31v-3,12,-5,24,-5,36v0,13,2,26,5,38v3,12,8,22,15,31v7,9,15,16,26,21v11,6,23,8,38,8v24,0,42,-5,55,-17v13,-12,21,-28,26,-49r-23,0v-3,14,-10,25,-19,34v-9,9,-22,13,-39,13v-11,0,-20,-2,-28,-7v-8,-4,-14,-10,-19,-17v-4,-7,-8,-15,-10,-23v-3,-9,-4,-17,-4,-26r143,0xm35,-106v1,-8,3,-16,6,-24v3,-9,7,-16,12,-22v5,-6,11,-11,18,-14v7,-4,16,-6,25,-6v9,0,17,2,25,6v7,3,13,8,18,14v5,6,9,13,12,21v2,8,4,17,4,25r-120,0xm138,-262r-28,0r-38,50r18,0","w":186},"\u00ea":{"d":"106,-262r-25,0r-41,50r21,0r32,-36r30,36r24,0xm178,-87v0,-13,-1,-25,-4,-38v-3,-13,-7,-24,-14,-34v-7,-9,-15,-17,-26,-23v-10,-6,-23,-9,-38,-9v-15,0,-27,3,-38,8v-11,6,-19,13,-26,23v-7,9,-12,19,-15,31v-3,12,-5,24,-5,36v0,13,2,26,5,38v3,12,8,22,15,31v7,9,15,16,26,21v11,6,23,8,38,8v24,0,42,-5,55,-17v13,-12,21,-28,26,-49r-23,0v-3,14,-10,25,-19,34v-9,9,-22,13,-39,13v-11,0,-20,-2,-28,-7v-8,-4,-14,-10,-19,-17v-4,-7,-8,-15,-10,-23v-3,-9,-4,-17,-4,-26r143,0xm35,-106v1,-8,3,-16,6,-24v3,-9,7,-16,12,-22v5,-6,11,-11,18,-14v7,-4,16,-6,25,-6v9,0,17,2,25,6v7,3,13,8,18,14v5,6,9,13,12,21v2,8,4,17,4,25r-120,0","w":186},"\u00eb":{"d":"178,-87v0,-13,-1,-25,-4,-38v-3,-13,-7,-24,-14,-34v-7,-9,-15,-17,-26,-23v-10,-6,-23,-9,-38,-9v-15,0,-27,3,-38,8v-11,6,-19,13,-26,23v-7,9,-12,19,-15,31v-3,12,-5,24,-5,36v0,13,2,26,5,38v3,12,8,22,15,31v7,9,15,16,26,21v11,6,23,8,38,8v24,0,42,-5,55,-17v13,-12,21,-28,26,-49r-23,0v-3,14,-10,25,-19,34v-9,9,-22,13,-39,13v-11,0,-20,-2,-28,-7v-8,-4,-14,-10,-19,-17v-4,-7,-8,-15,-10,-23v-3,-9,-4,-17,-4,-26r143,0xm35,-106v1,-8,3,-16,6,-24v3,-9,7,-16,12,-22v5,-6,11,-11,18,-14v7,-4,16,-6,25,-6v9,0,17,2,25,6v7,3,13,8,18,14v5,6,9,13,12,21v2,8,4,17,4,25r-120,0xm137,-218r0,-36r-24,0r0,36r24,0xm74,-218r0,-36r-25,0r0,36r25,0","w":186},"\u00ec":{"d":"45,0r0,-186r-23,0r0,186r23,0xm36,-212r19,0r-38,-50r-28,0","w":66},"\u00ed":{"d":"45,0r0,-186r-23,0r0,186r23,0xm78,-262r-28,0r-38,50r18,0","w":66},"\u00ee":{"d":"46,-262r-25,0r-41,50r21,0r31,-36r31,36r24,0xm45,0r0,-186r-23,0r0,186r23,0","w":66},"\u00ef":{"d":"45,0r0,-186r-23,0r0,186r23,0xm77,-218r0,-36r-24,0r0,36r24,0xm14,-218r0,-36r-25,0r0,36r25,0","w":66},"\u00f0":{"d":"99,-163v12,0,22,2,30,6v8,4,14,10,19,17v5,7,9,15,11,24v3,8,4,17,4,26v0,11,-1,22,-4,31v-3,9,-7,17,-12,24v-6,7,-12,12,-20,16v-9,3,-18,5,-28,5v-12,0,-21,-2,-29,-6v-8,-4,-15,-10,-20,-17v-5,-7,-9,-15,-11,-24v-3,-9,-4,-18,-4,-28v0,-10,1,-20,4,-29v2,-9,6,-16,11,-23v5,-7,12,-12,20,-16v8,-4,18,-6,29,-6xm49,-215r11,12r38,-21v10,8,19,16,27,25v8,10,15,20,21,31r-1,0v-5,-5,-12,-9,-21,-11v-9,-2,-18,-3,-26,-3v-14,0,-26,2,-37,7v-10,5,-19,12,-27,20v-7,9,-12,19,-16,30v-4,11,-6,23,-6,35v0,14,2,26,5,38v4,11,9,21,16,30v7,8,16,15,27,20v11,5,23,7,38,7v15,0,28,-2,39,-7v11,-6,20,-13,27,-21v7,-9,13,-20,16,-32v4,-12,6,-24,6,-38v0,-15,-2,-30,-6,-44v-3,-13,-8,-26,-15,-37v-6,-12,-13,-23,-22,-33v-8,-9,-18,-18,-28,-27r39,-22r-11,-11r-41,23v-6,-5,-13,-9,-19,-12r-19,-11r-13,12v6,3,12,6,17,10v8,5,8,5,17,10"},"\u00f1":{"d":"139,-255v-1,5,-3,9,-6,12v-3,4,-7,5,-12,5v-4,0,-7,0,-11,-2v-5,-3,-5,-3,-11,-6v-4,-1,-8,-3,-13,-5v-4,-2,-9,-2,-14,-2v-5,0,-9,1,-13,3v-3,2,-7,4,-9,8v-3,3,-5,6,-7,11v-1,4,-3,8,-3,12r14,0v0,-6,2,-10,5,-14v4,-3,9,-4,14,-4v3,0,7,1,10,3v4,2,8,3,12,5v4,2,8,4,13,6v4,1,9,2,14,2v4,0,8,-1,12,-3v4,-2,7,-4,9,-8v3,-3,5,-7,7,-11r3,-12r-14,0xm21,0r23,0r0,-108v0,-9,2,-18,4,-26v3,-8,7,-14,12,-20v5,-6,11,-10,18,-13v7,-3,15,-5,24,-5v9,0,17,1,23,4v6,3,11,7,15,12v3,5,6,11,7,18v2,7,2,14,2,22r0,116r23,0r0,-120v0,-11,-1,-21,-3,-29v-2,-9,-6,-17,-11,-23v-6,-6,-13,-11,-21,-14v-9,-3,-20,-5,-33,-5v-6,0,-13,1,-19,3v-6,1,-12,4,-17,7v-6,3,-10,7,-14,12v-4,5,-7,10,-9,15r-1,0r0,-32r-23,0r0,186","w":193},"\u00f2":{"d":"100,-191v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-13,-2,-26,-6,-38v-4,-12,-9,-22,-17,-31v-7,-9,-16,-16,-27,-21v-11,-6,-24,-8,-38,-8xm100,-172v11,0,20,2,29,7v8,4,14,10,20,18v5,7,9,16,12,25v3,10,4,19,4,29v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7xm103,-212r19,0r-38,-50r-28,0"},"\u00f3":{"d":"100,-191v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-13,-2,-26,-6,-38v-4,-12,-9,-22,-17,-31v-7,-9,-16,-16,-27,-21v-11,-6,-24,-8,-38,-8xm100,-172v11,0,20,2,29,7v8,4,14,10,20,18v5,7,9,16,12,25v3,10,4,19,4,29v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7xm145,-262r-28,0r-38,50r18,0"},"\u00f4":{"d":"113,-262r-25,0r-41,50r21,0r31,-36r31,36r24,0xm100,-191v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-13,-2,-26,-6,-38v-4,-12,-9,-22,-17,-31v-7,-9,-16,-16,-27,-21v-11,-6,-24,-8,-38,-8xm100,-172v11,0,20,2,29,7v8,4,14,10,20,18v5,7,9,16,12,25v3,10,4,19,4,29v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7"},"\u00f5":{"d":"143,-255v-2,5,-4,9,-6,12v-3,4,-7,5,-13,5v-3,0,-7,0,-10,-2v-5,-3,-5,-3,-11,-6v-4,-1,-9,-3,-13,-5v-4,-2,-9,-2,-14,-2v-5,0,-9,1,-13,3v-4,2,-7,4,-10,8v-2,3,-5,6,-6,11v-2,4,-3,8,-3,12r14,0v0,-6,1,-10,5,-14v4,-3,8,-4,14,-4v3,0,6,1,10,3v3,2,7,3,11,5v4,2,9,4,13,6v5,1,9,2,14,2v5,0,9,-1,13,-3v3,-2,7,-4,9,-8v3,-3,5,-7,6,-11v2,-4,3,-8,4,-12r-14,0xm100,-191v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-13,-2,-26,-6,-38v-4,-12,-9,-22,-17,-31v-7,-9,-16,-16,-27,-21v-11,-6,-24,-8,-38,-8xm100,-172v11,0,20,2,29,7v8,4,14,10,20,18v5,7,9,16,12,25v3,10,4,19,4,29v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7"},"\u00f6":{"d":"100,-191v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,14,2,26,6,38v4,12,9,22,17,31v7,9,17,16,27,21v11,6,24,8,38,8v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-13,-2,-26,-6,-38v-4,-12,-9,-22,-17,-31v-7,-9,-16,-16,-27,-21v-11,-6,-24,-8,-38,-8xm100,-172v11,0,20,2,29,7v8,4,14,10,20,18v5,7,9,16,12,25v3,10,4,19,4,29v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-11,0,-20,-2,-28,-7v-9,-4,-15,-10,-21,-18v-5,-7,-9,-15,-12,-25v-3,-9,-4,-19,-4,-29v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7xm144,-218r0,-36r-24,0r0,36r24,0xm81,-218r0,-36r-25,0r0,36r25,0"},"\u00f7":{"d":"199,-81r0,-19r-181,0r0,19r181,0xm88,-163v0,5,2,10,6,14v4,4,9,6,14,6v6,0,10,-2,14,-6v4,-4,6,-9,6,-14v0,-6,-2,-10,-6,-14v-4,-4,-8,-6,-14,-6v-6,0,-10,2,-14,6v-4,4,-6,8,-6,14xm88,-18v0,6,2,10,6,14v4,4,9,6,14,6v6,0,10,-2,14,-6v4,-4,6,-9,6,-14v0,-6,-2,-10,-6,-14v-4,-4,-8,-6,-14,-6v-6,0,-10,2,-14,6v-4,4,-6,8,-6,14","w":216},"\u00f8":{"d":"48,-44v-5,-7,-8,-15,-10,-24v-2,-8,-3,-16,-3,-25v0,-10,1,-19,4,-29v3,-9,7,-18,12,-25v6,-8,12,-14,21,-18v8,-5,17,-7,28,-7v10,0,19,2,27,6v7,4,14,9,19,16xm153,-141v4,7,7,14,9,23v2,8,3,16,3,25v0,10,-1,20,-4,29v-3,10,-7,18,-12,25v-6,8,-12,14,-20,18v-9,5,-18,7,-29,7v-10,0,-19,-2,-27,-6v-7,-4,-14,-9,-19,-15xm180,-187r-19,20v-7,-7,-16,-13,-26,-18v-10,-4,-22,-6,-35,-6v-14,0,-27,2,-38,8v-10,5,-20,12,-27,21v-8,9,-13,19,-17,31v-4,12,-6,25,-6,38v0,13,2,24,5,36v4,11,9,21,15,30r-22,24r8,7r22,-23v7,8,15,14,26,18v10,4,21,6,34,6v14,0,27,-2,38,-8v11,-5,20,-12,27,-21v8,-9,13,-19,17,-31v4,-12,6,-24,6,-38v0,-12,-2,-24,-5,-35v-3,-11,-8,-21,-15,-30r20,-22"},"\u00f9":{"d":"172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,121v0,11,1,20,4,29v2,9,6,16,11,22v5,7,12,11,20,15v9,3,19,4,30,4v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186xm99,-212r19,0r-38,-50r-28,0","w":193},"\u00fa":{"d":"172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,121v0,11,1,20,4,29v2,9,6,16,11,22v5,7,12,11,20,15v9,3,19,4,30,4v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186xm141,-262r-28,0r-38,50r18,0","w":193},"\u00fb":{"d":"109,-262r-25,0r-41,50r21,0r32,-36r31,36r23,0xm172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,121v0,11,1,20,4,29v2,9,6,16,11,22v5,7,12,11,20,15v9,3,19,4,30,4v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186","w":193},"\u00fc":{"d":"172,-186r-23,0r0,98v0,9,-1,18,-3,27v-2,9,-5,17,-10,24v-4,7,-10,13,-17,17v-7,4,-16,6,-25,6v-18,0,-31,-4,-38,-13v-8,-8,-12,-21,-12,-38r0,-121r-23,0r0,121v0,11,1,20,4,29v2,9,6,16,11,22v5,7,12,11,20,15v9,3,19,4,30,4v14,0,27,-3,38,-10v12,-6,20,-16,26,-28r1,0r0,33r21,0r0,-186xm140,-218r0,-36r-24,0r0,36r24,0xm77,-218r0,-36r-25,0r0,36r25,0","w":193},"\u00fd":{"d":"75,-1r-8,22v-3,6,-3,6,-5,11v-2,4,-4,7,-7,10v-2,2,-5,4,-8,6v-3,1,-7,2,-12,2v-3,0,-6,0,-8,-1v-3,0,-5,-1,-8,-1r0,19v2,1,4,1,7,1v2,0,6,1,10,1v8,0,14,-1,18,-2v5,-2,9,-4,13,-7v3,-3,6,-7,9,-12v3,-5,6,-12,9,-20r81,-214r-23,0r-57,159r-61,-159r-24,0xm128,-262r-28,0r-38,50r18,0","w":166},"\u00fe":{"d":"170,-93v0,10,-1,19,-3,29v-2,9,-6,18,-11,25v-5,8,-11,14,-19,18v-8,5,-17,7,-28,7v-12,0,-22,-2,-30,-7v-8,-4,-15,-10,-20,-18v-5,-7,-9,-16,-11,-25v-3,-10,-4,-19,-4,-29v0,-9,1,-19,4,-29v2,-9,6,-17,11,-25v5,-7,12,-13,20,-18v8,-5,18,-7,30,-7v11,0,20,2,28,7v8,5,14,11,19,18v5,8,9,16,11,25v2,10,3,20,3,29xm22,69r22,0r0,-104r1,0v2,6,6,12,10,17v5,5,10,10,16,13v5,4,11,6,18,8v7,2,13,2,20,2v15,0,27,-2,37,-8v11,-5,19,-12,26,-21v7,-9,13,-19,16,-31v3,-12,5,-25,5,-38v0,-13,-2,-26,-5,-37v-3,-12,-9,-23,-16,-32v-7,-9,-15,-16,-26,-21v-10,-6,-22,-8,-37,-8v-7,0,-13,1,-20,3v-7,1,-13,4,-18,7v-6,4,-11,8,-16,13v-4,5,-8,11,-10,18r-1,0r0,-107r-22,0r0,326","w":206},"\u00ff":{"d":"75,-1r-8,22v-3,6,-3,6,-5,11v-2,4,-4,7,-7,10v-2,2,-5,4,-8,6v-3,1,-7,2,-12,2v-3,0,-6,0,-8,-1v-3,0,-5,-1,-8,-1r0,19v2,1,4,1,7,1v2,0,6,1,10,1v8,0,14,-1,18,-2v5,-2,9,-4,13,-7v3,-3,6,-7,9,-12v3,-5,6,-12,9,-20r81,-214r-23,0r-57,159r-61,-159r-24,0xm127,-218r0,-36r-24,0r0,36r24,0xm64,-218r0,-36r-25,0r0,36r25,0","w":166}}});

Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -325 350 76","underline-thickness":"37.793","underline-position":"-19.3359","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":7,"A":13}},"\u00a0":{"w":100},"!":{"d":"45,-66r-13,-131r0,-61r54,0r0,61r-13,131r-28,0xm34,0r0,-49r50,0r0,49r-50,0","w":119},"\"":{"d":"29,-166r-9,-48r0,-44r53,0r0,44r-8,48r-36,0xm108,-166r-9,-48r0,-44r54,0r0,44r-8,48r-37,0","w":170},"#":{"d":"27,-64r-24,0r0,-39r32,0r10,-52r-42,0r0,-39r50,0r14,-68r40,0r-14,68r38,0r14,-68r41,0r-14,68r24,0r0,39r-32,0r-11,52r43,0r0,39r-51,0r-14,68r-39,0r14,-68r-39,0r-14,68r-40,0xm85,-155r-10,52r39,0r10,-52r-39,0"},"$":{"d":"86,-38r0,-74v-23,-6,-40,-16,-51,-30v-10,-13,-16,-29,-16,-48v0,-19,6,-35,19,-48v12,-14,28,-21,48,-23r0,-17r25,0r0,17v19,2,34,9,45,19v11,11,18,25,21,42r-44,6v-3,-14,-10,-23,-22,-28r0,69v29,7,48,17,58,29v10,12,15,28,15,47v0,21,-6,39,-19,53v-13,15,-31,24,-54,27r0,33r-25,0r0,-32v-20,-2,-37,-10,-49,-23v-13,-12,-21,-30,-25,-53r46,-5v2,9,6,17,11,24v5,7,11,12,17,15xm86,-223v-7,3,-12,7,-17,12v-4,6,-6,12,-6,19v0,6,2,12,6,17v4,6,9,10,17,13r0,-61xm111,-36v9,-1,16,-5,22,-12v5,-6,8,-14,8,-23v0,-8,-2,-14,-7,-20v-4,-6,-12,-10,-23,-13r0,68"},"%":{"d":"16,-194v0,-23,5,-40,15,-51v10,-12,24,-17,41,-17v18,0,32,5,42,17v10,11,15,28,15,51v0,23,-5,40,-15,51v-10,11,-24,17,-41,17v-18,0,-32,-6,-42,-17v-10,-11,-15,-28,-15,-51xm54,-194v0,16,2,28,6,33v3,5,7,7,12,7v5,0,9,-2,12,-7v4,-5,6,-17,6,-33v0,-17,-2,-28,-6,-34v-3,-4,-7,-6,-12,-6v-5,0,-9,2,-12,6v-4,6,-6,17,-6,34xm110,10r-37,0r137,-272r36,0xm189,-58v0,-23,6,-40,16,-51v10,-11,24,-17,41,-17v18,0,32,6,42,17v10,11,15,28,15,51v0,23,-5,41,-15,52v-10,11,-24,16,-41,16v-18,0,-32,-5,-42,-16v-10,-11,-16,-29,-16,-52xm228,-58v0,17,2,28,6,34v3,4,7,6,12,6v5,0,9,-2,12,-6v4,-6,6,-17,6,-34v0,-17,-2,-28,-6,-34v-3,-4,-7,-6,-12,-6v-5,0,-9,2,-12,6v-4,6,-6,17,-6,34","w":320},"&":{"d":"254,-31r-30,38v-14,-7,-28,-17,-42,-30v-10,10,-21,16,-33,21v-12,4,-26,7,-42,7v-32,0,-56,-9,-72,-27v-13,-14,-19,-30,-19,-49v0,-16,5,-31,15,-44v9,-13,24,-25,44,-35v-9,-10,-16,-20,-20,-29v-5,-10,-7,-19,-7,-27v0,-16,6,-29,19,-40v12,-11,30,-16,53,-16v22,0,40,6,52,17v13,11,19,25,19,42v0,10,-3,20,-9,29v-6,10,-19,20,-38,32r36,47v4,-7,8,-17,11,-29r45,10v-5,16,-9,28,-12,35v-3,7,-7,13,-10,18v5,6,12,11,21,17v9,6,15,11,19,13xm120,-172r13,-10v10,-7,15,-15,15,-22v0,-7,-3,-12,-7,-17v-5,-4,-11,-6,-20,-6v-7,0,-14,2,-18,6v-4,4,-7,8,-7,13v0,6,4,14,12,22xm100,-118v-11,6,-19,13,-25,21v-6,8,-9,16,-9,25v0,10,4,19,11,26v7,6,16,10,28,10v8,0,15,-2,22,-5v7,-3,15,-8,24,-15","w":259},"'":{"d":"25,-166r-9,-48r0,-44r54,0r0,44r-8,48r-37,0","w":85},"(":{"d":"108,76r-34,0v-18,-27,-32,-55,-41,-85v-10,-29,-14,-57,-14,-84v0,-34,6,-66,17,-96v10,-27,23,-51,39,-73r33,0v-16,35,-27,66,-33,91v-6,24,-9,51,-9,79v0,19,2,39,5,59v4,20,9,39,15,57v4,12,11,29,22,52","w":119},")":{"d":"12,76v10,-21,17,-37,21,-48v4,-11,7,-24,11,-39v3,-14,6,-28,7,-41v2,-13,3,-27,3,-40v0,-28,-3,-55,-9,-79v-6,-25,-17,-56,-33,-91r33,0v18,25,32,52,42,80v9,28,14,57,14,86v0,25,-4,51,-11,79v-9,31,-24,62,-44,93r-34,0","w":119},"*":{"d":"43,-139r-26,-21v8,-9,17,-18,26,-27r7,-7v-3,0,-12,-2,-25,-6v-10,-2,-17,-4,-20,-5r10,-31v16,6,29,13,41,21v-2,-19,-4,-35,-4,-47r31,0v0,8,-1,24,-4,47v2,-1,7,-3,15,-7v10,-5,20,-9,29,-12r9,32v-13,3,-28,5,-45,8r21,24v4,5,8,9,10,12r-27,18r-23,-40v-7,13,-16,26,-25,41","w":140},"+":{"d":"82,-37r0,-67r-67,0r0,-46r67,0r0,-67r45,0r0,67r68,0r0,46r-68,0r0,67r-45,0","w":210},",":{"d":"25,-49r49,0r0,35v0,14,-1,26,-4,34v-2,8,-7,15,-14,22v-7,7,-15,12,-26,15r-9,-20v10,-3,17,-8,21,-13v4,-6,6,-14,7,-24r-24,0r0,-49","w":100},"-":{"d":"20,-69r0,-49r97,0r0,49r-97,0","w":119},"\u00ad":{"d":"20,-69r0,-49r97,0r0,49r-97,0","w":119},".":{"d":"26,0r0,-49r49,0r0,49r-49,0","w":100},"\/":{"d":"-1,4r64,-266r37,0r-64,266r-37,0","w":100},"0":{"d":"99,-259v25,0,44,9,58,27v17,21,25,56,25,105v0,49,-8,84,-25,105v-14,18,-33,26,-58,26v-25,0,-46,-9,-61,-29v-15,-19,-23,-53,-23,-103v0,-48,9,-83,25,-104v14,-18,34,-27,59,-27xm99,-218v-6,0,-12,2,-16,6v-5,4,-9,11,-11,20v-4,13,-5,35,-5,65v0,30,1,51,4,62v3,12,7,19,12,23v5,4,10,5,16,5v6,0,11,-1,16,-5v4,-4,8,-11,11,-21v3,-12,5,-34,5,-64v0,-30,-2,-51,-5,-62v-3,-12,-7,-19,-11,-23v-5,-4,-10,-6,-16,-6"},"1":{"d":"142,0r-50,0r0,-186v-18,17,-39,29,-64,37r0,-45v13,-4,27,-12,42,-24v16,-11,26,-25,32,-41r40,0r0,259","k":{"1":20}},"2":{"d":"182,-46r0,46r-173,0v2,-17,7,-34,17,-49v9,-16,28,-36,55,-62v23,-21,36,-35,41,-42v7,-10,11,-21,11,-31v0,-11,-3,-19,-9,-25v-6,-6,-14,-9,-25,-9v-10,0,-18,3,-24,10v-7,6,-10,16,-11,30r-49,-4v3,-28,12,-47,27,-59v16,-12,35,-18,58,-18v26,0,46,7,60,21v15,14,22,31,22,51v0,12,-2,23,-6,33v-4,11,-11,22,-20,33v-6,8,-17,19,-32,33v-16,14,-26,24,-30,28v-4,5,-7,10,-10,14r98,0"},"3":{"d":"14,-68r47,-6v2,12,6,21,13,28v6,6,14,9,24,9v10,0,19,-3,26,-11v7,-8,10,-18,10,-31v0,-13,-3,-23,-10,-30v-7,-7,-15,-11,-24,-11v-7,0,-14,1,-23,4r5,-40v14,0,24,-3,31,-9v7,-6,11,-14,11,-25v0,-8,-3,-15,-8,-20v-5,-6,-12,-8,-21,-8v-8,0,-15,3,-21,9v-6,6,-10,14,-11,25r-46,-7v3,-16,8,-28,15,-38v6,-9,15,-16,26,-22v12,-5,24,-8,39,-8v24,0,43,8,58,23v12,13,18,27,18,43v0,23,-12,41,-37,54v15,4,27,11,35,22v9,11,14,24,14,40v0,22,-9,42,-25,57v-17,16,-37,24,-62,24v-23,0,-42,-6,-58,-20v-15,-13,-24,-31,-26,-52"},"4":{"d":"112,0r0,-52r-105,0r0,-43r111,-164r42,0r0,164r32,0r0,43r-32,0r0,52r-48,0xm112,-95r0,-88r-59,88r59,0"},"5":{"d":"16,-66r49,-5v2,11,6,20,13,26v7,7,15,10,24,10v10,0,19,-4,26,-13v7,-8,11,-21,11,-38v0,-15,-4,-27,-11,-35v-7,-8,-16,-12,-28,-12v-14,0,-27,6,-38,19r-40,-6r25,-134r131,0r0,46r-93,0r-8,44v11,-6,22,-8,34,-8v22,0,40,8,55,23v16,16,23,37,23,63v0,21,-6,40,-18,56v-17,23,-40,34,-70,34v-24,0,-43,-6,-58,-19v-15,-13,-24,-30,-27,-51"},"6":{"d":"183,-195r-48,6v-1,-10,-4,-17,-9,-22v-5,-5,-12,-7,-19,-7v-11,0,-20,5,-27,14v-7,9,-12,29,-14,58v13,-14,28,-21,46,-21v21,0,39,8,53,23v15,16,22,36,22,61v0,26,-7,48,-23,63v-15,16,-35,24,-59,24v-26,0,-48,-10,-65,-30v-16,-20,-25,-53,-25,-99v0,-48,9,-82,26,-102v18,-21,41,-32,69,-32v19,0,35,6,48,17v13,11,21,27,25,47xm71,-87v0,16,3,29,11,37v7,9,16,13,25,13v9,0,17,-3,23,-10v6,-7,9,-19,9,-35v0,-17,-3,-29,-10,-37v-6,-8,-15,-12,-24,-12v-10,0,-18,4,-24,11v-7,8,-10,19,-10,33"},"7":{"d":"15,-208r0,-46r169,0r0,36v-14,13,-28,33,-42,59v-15,25,-26,53,-33,82v-8,28,-12,54,-11,77r-48,0v1,-36,8,-72,22,-109v14,-37,32,-70,56,-99r-113,0"},"8":{"d":"58,-139v-13,-5,-22,-13,-28,-22v-6,-10,-9,-20,-9,-31v0,-20,7,-35,20,-48v14,-12,33,-19,57,-19v25,0,44,7,57,19v14,13,21,28,21,48v0,12,-3,22,-10,32v-6,9,-14,16,-26,21v15,6,25,14,33,25v7,11,11,24,11,38v0,24,-8,43,-23,58v-15,15,-35,23,-60,23v-24,0,-43,-7,-59,-19v-18,-14,-27,-34,-27,-60v0,-14,3,-26,10,-38v7,-12,18,-21,33,-27xm68,-189v0,10,3,18,8,23v6,6,13,8,22,8v10,0,17,-2,23,-8v6,-5,8,-13,8,-23v0,-9,-2,-17,-8,-22v-6,-6,-13,-9,-22,-9v-10,0,-17,3,-23,9v-5,6,-8,13,-8,22xm63,-78v0,13,4,24,11,31v7,8,15,12,26,12v10,0,18,-4,25,-11v7,-7,10,-18,10,-32v0,-12,-3,-22,-10,-29v-7,-7,-15,-11,-26,-11v-12,0,-21,4,-27,13v-6,8,-9,17,-9,27"},"9":{"d":"16,-60r48,-5v1,10,4,17,9,22v5,4,12,7,20,7v10,0,19,-5,26,-14v7,-10,12,-29,14,-59v-13,15,-28,22,-47,22v-20,0,-38,-8,-53,-23v-14,-16,-22,-36,-22,-62v0,-26,8,-47,24,-63v15,-16,35,-24,59,-24v26,0,48,10,64,31v17,20,26,53,26,99v0,47,-9,81,-27,102v-17,21,-40,32,-68,32v-20,0,-36,-6,-49,-17v-12,-10,-20,-26,-24,-48xm128,-168v0,-15,-4,-28,-11,-37v-7,-8,-16,-13,-25,-13v-9,0,-17,4,-23,11v-6,7,-9,19,-9,35v0,17,3,29,10,37v6,8,15,12,24,12v10,0,18,-4,24,-11v7,-8,10,-19,10,-34"},":":{"d":"35,-137r0,-50r50,0r0,50r-50,0xm35,0r0,-49r50,0r0,49r-50,0","w":119},";":{"d":"34,-137r0,-50r49,0r0,50r-49,0xm34,-49r49,0r0,35v0,14,-1,26,-3,34v-3,8,-7,15,-14,22v-7,7,-16,12,-26,15r-10,-20v10,-3,17,-8,21,-14v4,-5,7,-13,7,-23r-24,0r0,-49","w":119},"\u037e":{"d":"34,-137r0,-50r49,0r0,50r-49,0xm34,-49r49,0r0,35v0,14,-1,26,-3,34v-3,8,-7,15,-14,22v-7,7,-16,12,-26,15r-10,-20v10,-3,17,-8,21,-14v4,-5,7,-13,7,-23r-24,0r0,-49","w":119},"<":{"d":"193,-29r-176,-77r0,-43r176,-76r0,50r-123,47r123,49r0,50","w":210},"=":{"d":"15,-143r0,-46r180,0r0,46r-180,0xm15,-65r0,-46r180,0r0,46r-180,0","w":210},">":{"d":"17,-29r0,-50r123,-48r-123,-48r0,-50r177,77r0,42","w":210},"?":{"d":"132,-66r-45,0r0,-12v0,-15,2,-27,7,-36v5,-9,15,-20,29,-32v14,-11,23,-19,26,-23v4,-5,6,-12,6,-19v0,-9,-3,-18,-11,-24v-8,-7,-18,-11,-31,-11v-13,0,-23,4,-32,11v-8,7,-14,18,-17,33r-45,-6v1,-21,10,-39,26,-53v17,-15,39,-22,66,-22v28,0,51,7,67,22v17,15,26,32,26,52v0,11,-4,21,-10,31v-6,9,-19,23,-39,39v-11,9,-17,16,-20,21v-2,6,-3,15,-3,29xm87,0r0,-49r50,0r0,49r-50,0","w":219},"@":{"d":"312,-3r38,0v-12,23,-30,42,-54,56v-28,15,-62,23,-102,23v-38,0,-72,-7,-100,-20v-28,-13,-49,-32,-63,-58v-13,-25,-20,-53,-20,-83v0,-33,8,-64,23,-92v16,-28,37,-50,64,-64v27,-14,58,-21,93,-21v29,0,56,5,79,17v23,11,40,28,52,49v12,21,18,44,18,69v0,30,-9,57,-27,81v-23,31,-53,46,-89,46v-10,0,-17,-2,-22,-5v-5,-3,-8,-8,-10,-15v-14,13,-29,20,-48,20v-19,0,-35,-7,-48,-20v-13,-14,-19,-31,-19,-54v0,-27,8,-52,23,-75v19,-28,43,-42,72,-42v21,0,36,8,46,24r5,-19r46,0r-26,126v-2,8,-3,13,-3,15v0,3,1,5,2,7v1,1,3,2,5,2v6,0,13,-3,22,-10v12,-9,21,-21,29,-36v7,-15,11,-30,11,-46v0,-29,-11,-53,-31,-73v-21,-19,-50,-29,-88,-29v-32,0,-58,7,-81,20v-22,12,-38,31,-49,54v-12,24,-17,48,-17,74v0,24,6,47,18,67v13,20,30,35,53,44v23,10,48,14,77,14v28,0,53,-3,73,-11v20,-8,36,-20,48,-35xm122,-76v0,15,3,26,9,33v6,7,14,11,23,11v6,0,13,-2,19,-5v4,-2,8,-6,13,-11v6,-7,11,-18,16,-31v4,-14,7,-27,7,-39v0,-13,-3,-23,-10,-30v-6,-7,-13,-11,-23,-11v-10,0,-19,4,-28,12v-8,8,-15,19,-19,33v-4,15,-7,27,-7,38","w":351},"A":{"d":"259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0","w":259,"k":{"y":13,"w":7,"v":13,"Y":33,"W":20,"V":27,"T":27," ":13}},"B":{"d":"26,-258r103,0v21,0,36,1,46,3v10,2,19,5,27,10v8,6,14,13,20,22v5,9,8,19,8,30v0,12,-4,23,-10,33v-7,10,-16,18,-27,23v16,5,28,12,37,23v8,11,12,24,12,39v0,12,-2,23,-8,34v-5,12,-13,20,-22,27v-10,7,-21,11,-35,12v-9,1,-30,2,-63,2r-88,0r0,-258xm78,-215r0,60r34,0v21,0,33,-1,38,-1v9,-1,16,-4,21,-9v5,-5,8,-12,8,-20v0,-8,-2,-15,-7,-20v-4,-5,-11,-8,-19,-9v-5,-1,-20,-1,-45,-1r-30,0xm78,-112r0,69r49,0v18,0,30,-1,35,-2v8,-1,14,-5,19,-10v5,-6,7,-13,7,-22v0,-8,-1,-14,-5,-20v-4,-5,-9,-9,-16,-12v-8,-2,-23,-3,-47,-3r-42,0","w":259},"C":{"d":"191,-95r51,16v-8,28,-21,49,-39,63v-18,14,-41,20,-69,20v-34,0,-62,-11,-84,-35v-22,-23,-33,-55,-33,-96v0,-42,11,-76,33,-99v22,-24,52,-36,88,-36v31,0,57,9,76,28v12,11,21,27,27,47r-52,13v-3,-14,-9,-24,-19,-32v-9,-8,-21,-12,-35,-12v-19,0,-35,7,-46,21v-12,14,-18,36,-18,67v0,32,6,55,17,69v12,14,27,21,46,21v14,0,26,-4,36,-13v10,-9,17,-23,21,-42","w":259},"D":{"d":"26,-258r95,0v22,0,38,2,49,5v15,5,28,13,39,24v11,11,19,25,25,42v5,16,8,36,8,61v0,21,-3,39,-8,54v-6,19,-16,34,-27,46v-9,9,-22,16,-37,21v-12,3,-27,5,-46,5r-98,0r0,-258xm78,-214r0,171r39,0v14,0,25,-1,31,-3v9,-2,16,-6,21,-11v6,-5,10,-13,14,-24v4,-12,5,-28,5,-48v0,-20,-1,-35,-5,-46v-4,-10,-8,-19,-15,-25v-6,-5,-14,-10,-24,-12v-7,-1,-21,-2,-43,-2r-23,0","w":259},"E":{"d":"26,0r0,-258r191,0r0,44r-139,0r0,57r130,0r0,43r-130,0r0,71r144,0r0,43r-196,0","w":240},"F":{"d":"27,0r0,-258r176,0r0,44r-124,0r0,61r107,0r0,43r-107,0r0,110r-52,0","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"146,-95r0,-43r112,0r0,102v-11,11,-26,20,-47,28v-21,8,-42,12,-63,12v-27,0,-50,-5,-70,-17v-21,-11,-36,-27,-46,-48v-10,-21,-15,-44,-15,-69v0,-27,6,-50,17,-71v11,-21,28,-37,49,-48v17,-9,38,-13,62,-13v32,0,57,7,75,20v18,13,30,32,35,56r-52,9v-3,-12,-10,-22,-20,-30v-10,-7,-23,-11,-38,-11v-23,0,-41,8,-54,22v-13,14,-20,36,-20,64v0,31,7,54,20,69v14,15,32,23,54,23v11,0,21,-2,32,-6v11,-5,21,-10,29,-16r0,-33r-60,0","w":280},"H":{"d":"26,0r0,-258r52,0r0,102r102,0r0,-102r52,0r0,258r-52,0r0,-113r-102,0r0,113r-52,0","w":259},"I":{"d":"25,0r0,-258r52,0r0,258r-52,0","w":100},"J":{"d":"119,-258r52,0r0,163v0,22,-2,38,-6,50v-5,15,-14,27,-27,36v-13,9,-31,13,-52,13v-26,0,-45,-7,-59,-21v-14,-14,-21,-35,-21,-63r49,-5v1,15,3,25,7,31v5,9,14,14,25,14v12,0,20,-3,25,-10v5,-7,7,-20,7,-41r0,-167"},"K":{"d":"27,0r0,-258r52,0r0,115r105,-115r70,0r-97,101r102,157r-67,0r-71,-121r-42,43r0,78r-52,0","w":259},"L":{"d":"28,0r0,-256r52,0r0,213r129,0r0,43r-181,0","w":219,"k":{"y":13,"Y":33,"W":20,"V":27,"T":27," ":7}},"M":{"d":"25,0r0,-258r78,0r47,176r46,-176r78,0r0,258r-48,0r0,-203r-51,203r-50,0r-51,-203r0,203r-49,0","w":299},"N":{"d":"27,0r0,-258r50,0r106,172r0,-172r48,0r0,258r-52,0r-104,-168r0,168r-48,0","w":259},"O":{"d":"16,-127v0,-27,4,-49,11,-66v6,-13,14,-25,24,-36v11,-10,22,-18,34,-23v16,-7,34,-10,55,-10v38,0,69,12,91,35v23,24,35,57,35,99v0,41,-12,74,-34,97v-23,24,-53,35,-91,35v-38,0,-69,-11,-91,-35v-23,-23,-34,-55,-34,-96xm69,-129v0,29,7,51,20,66v14,15,31,23,52,23v21,0,38,-8,51,-22v13,-15,20,-38,20,-68v0,-29,-7,-51,-20,-66v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,22v-13,15,-20,37,-20,67","w":280},"P":{"d":"26,0r0,-258r84,0v31,0,52,2,62,4v14,4,27,12,37,25v10,13,15,30,15,51v0,15,-3,29,-9,39v-6,11,-13,20,-22,26v-9,6,-18,10,-27,12v-12,3,-30,4,-54,4r-34,0r0,97r-52,0xm78,-214r0,73r29,0v20,0,34,-1,41,-4v7,-3,12,-7,16,-13v4,-5,6,-12,6,-20v0,-9,-3,-17,-8,-23v-6,-6,-13,-10,-21,-11v-6,-2,-19,-2,-38,-2r-25,0","w":240,"k":{"A":27,".":46,",":46," ":7}},"Q":{"d":"234,-33v12,9,26,17,41,22r-19,37v-8,-3,-15,-6,-23,-10v-2,-1,-13,-8,-35,-23v-16,8,-35,11,-56,11v-39,0,-70,-11,-93,-35v-22,-23,-33,-56,-33,-98v0,-42,11,-75,33,-98v23,-23,53,-35,92,-35v38,0,68,12,91,35v22,23,33,56,33,98v0,22,-3,42,-9,59v-5,13,-12,25,-22,37xm192,-62v6,-8,11,-17,15,-29v3,-11,5,-23,5,-38v0,-30,-7,-52,-20,-67v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,23v-13,14,-20,37,-20,66v0,30,7,53,20,68v13,15,30,22,50,22v8,0,15,-1,21,-4v-10,-6,-21,-12,-32,-16r15,-29v17,5,33,14,49,26","w":280},"R":{"d":"26,0r0,-258r110,0v27,0,47,3,60,7v12,5,22,13,30,25v7,12,11,25,11,41v0,19,-6,35,-17,47v-11,13,-28,21,-51,24v11,7,21,14,28,22v7,8,17,22,30,42r31,50r-62,0r-38,-56v-13,-20,-22,-33,-27,-38v-5,-5,-10,-9,-16,-11v-5,-2,-14,-3,-26,-3r-11,0r0,108r-52,0xm78,-149r39,0v25,0,40,-1,47,-3v6,-2,11,-6,14,-11v4,-5,6,-11,6,-19v0,-9,-3,-16,-7,-21v-5,-5,-12,-9,-20,-10v-4,-1,-17,-1,-38,-1r-41,0r0,65","w":259,"k":{"Y":13,"W":7,"V":7}},"S":{"d":"13,-84r51,-5v3,17,9,30,18,38v9,8,22,12,38,12v17,0,29,-4,38,-11v8,-7,13,-15,13,-25v0,-6,-2,-11,-6,-15v-3,-5,-10,-8,-19,-12v-6,-2,-20,-5,-41,-11v-28,-7,-48,-15,-59,-25v-16,-15,-24,-32,-24,-52v0,-13,4,-26,11,-37v8,-11,19,-20,33,-26v14,-6,31,-9,50,-9v33,0,57,7,73,21v17,14,25,33,26,57r-52,2v-2,-13,-7,-23,-14,-28v-8,-6,-19,-9,-33,-9v-15,0,-27,3,-36,9v-5,4,-8,10,-8,16v0,6,3,12,8,16v6,5,22,11,48,17v25,6,44,12,56,19v12,6,21,15,28,26v7,11,11,25,11,41v0,15,-5,29,-13,41v-8,13,-20,23,-35,29v-15,6,-33,10,-56,10v-32,0,-57,-8,-75,-23v-17,-15,-28,-37,-31,-66","w":240},"T":{"d":"84,0r0,-214r-76,0r0,-44r205,0r0,44r-77,0r0,214r-52,0","w":219,"k":{"y":27,"w":27,"u":27,"s":27,"r":20,"o":27,"i":7,"e":27,"c":27,"a":27,"O":7,"A":27,";":40,":":40,".":40,"-":20,",":40}},"U":{"d":"26,-258r52,0r0,140v0,22,1,36,2,43v2,10,7,19,16,25v8,7,20,10,34,10v15,0,26,-3,33,-9v8,-6,12,-14,14,-22v2,-9,2,-24,2,-44r0,-143r52,0r0,136v0,31,-1,52,-4,65v-3,13,-8,24,-15,33v-8,8,-18,15,-31,21v-12,5,-29,7,-49,7v-25,0,-44,-2,-56,-8v-13,-6,-23,-13,-30,-22v-8,-9,-13,-19,-15,-29v-3,-15,-5,-36,-5,-65r0,-138","w":259},"V":{"d":"92,0r-92,-258r56,0r65,191r64,-191r55,0r-93,258r-55,0","w":240,"k":{"y":13,"u":13,"r":20,"o":27,"i":7,"e":20,"a":20,"A":27,";":20,":":20,".":33,"-":20,",":33}},"W":{"d":"63,0r-62,-258r53,0r39,177r47,-177r62,0r46,180r39,-180r52,0r-62,258r-55,0r-52,-193r-51,193r-56,0","w":339,"k":{"y":7,"u":7,"r":7,"o":7,"i":3,"e":7,"a":13,"A":20,";":7,":":7,".":20,"-":7,",":20}},"X":{"d":"0,0r88,-134r-80,-124r61,0r52,83r50,-83r61,0r-80,125r88,133r-63,0r-57,-89r-58,89r-62,0","w":240},"Y":{"d":"94,0r0,-108r-95,-150r61,0r61,102r60,-102r59,0r-94,150r0,108r-52,0","w":240,"k":{"v":20,"u":20,"q":27,"p":20,"o":27,"i":13,"e":20,"a":20,"A":33,";":27,":":27,".":40,"-":20,",":40," ":7}},"Z":{"d":"4,0r0,-47r135,-167r-120,0r0,-44r189,0r0,41r-141,174r146,0r0,43r-209,0","w":219},"[":{"d":"26,73r0,-331r87,0r0,39r-40,0r0,253r40,0r0,39r-87,0","w":119},"\\":{"d":"-1,-262r37,0r64,266r-37,0","w":100},"]":{"d":"94,-258r0,331r-87,0r0,-39r40,0r0,-253r-40,0r0,-39r87,0","w":119},"^":{"d":"20,-122r66,-140r40,0r64,140r-50,0r-35,-86r-35,86r-50,0","w":210},"_":{"d":"-3,71r0,-32r205,0r0,32r-205,0"},"`":{"d":"87,-210r-31,0r-49,-52r56,0","w":119},"a":{"d":"63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10"},"b":{"d":"24,0r0,-258r49,0r0,93v15,-17,33,-26,54,-26v23,0,42,8,57,25v15,16,22,40,22,71v0,32,-8,56,-23,73v-15,18,-33,26,-55,26v-11,0,-21,-2,-32,-8v-10,-5,-19,-13,-26,-23r0,27r-46,0xm73,-97v0,19,3,33,9,43v8,13,20,19,34,19v11,0,20,-4,28,-14v8,-9,11,-24,11,-44v0,-21,-3,-37,-11,-46v-8,-9,-18,-14,-30,-14v-12,0,-22,4,-29,14v-8,9,-12,23,-12,42","w":219},"c":{"d":"189,-131r-49,8v-2,-9,-5,-17,-11,-22v-6,-5,-14,-7,-23,-7v-12,0,-22,4,-29,13v-8,8,-11,22,-11,42v0,22,3,38,11,47v7,9,17,14,30,14v9,0,17,-3,23,-8v6,-5,10,-15,13,-28r48,9v-5,22,-15,39,-29,50v-14,12,-33,17,-57,17v-28,0,-49,-8,-66,-26v-16,-17,-24,-41,-24,-71v0,-31,8,-55,24,-72v17,-17,39,-26,66,-26v23,0,41,5,55,15v13,10,23,24,29,45"},"d":{"d":"197,0r-46,0r0,-27v-7,10,-16,18,-27,23v-10,6,-21,8,-31,8v-22,0,-40,-8,-55,-26v-16,-17,-23,-41,-23,-72v0,-32,7,-56,22,-72v15,-17,34,-25,57,-25v20,0,38,9,54,26r0,-93r49,0r0,258xm65,-97v0,20,3,34,8,43v8,13,20,19,34,19v11,0,21,-5,29,-14v8,-10,12,-24,12,-44v0,-21,-4,-37,-12,-46v-8,-9,-17,-14,-29,-14v-12,0,-22,5,-30,14v-8,9,-12,23,-12,42","w":219},"e":{"d":"134,-59r49,8v-6,18,-16,32,-30,41v-13,10,-31,14,-51,14v-33,0,-57,-10,-72,-32v-12,-17,-19,-38,-19,-64v0,-31,9,-55,25,-73v16,-17,36,-26,61,-26v28,0,50,9,66,28v16,18,24,46,23,84r-124,0v0,15,4,26,12,34v8,8,17,12,28,12v8,0,15,-2,20,-6v5,-4,9,-11,12,-20xm137,-109v-1,-15,-4,-26,-11,-33v-7,-7,-16,-11,-26,-11v-11,0,-20,4,-27,12v-7,8,-10,18,-10,32r74,0"},"f":{"d":"4,-187r28,0r0,-14v0,-15,1,-27,5,-35v3,-8,9,-14,18,-19v9,-5,20,-7,34,-7v14,0,28,2,41,6r-6,35v-8,-2,-16,-3,-23,-3v-7,0,-12,2,-15,5v-3,3,-5,10,-5,19r0,13r37,0r0,39r-37,0r0,148r-49,0r0,-148r-28,0r0,-39","w":119},"g":{"d":"21,12r57,7v1,7,3,11,6,14v5,3,12,5,22,5v13,0,23,-2,29,-6v5,-2,8,-7,10,-12v2,-4,2,-12,2,-23r0,-27v-14,20,-33,30,-55,30v-25,0,-45,-11,-60,-32v-11,-17,-17,-37,-17,-62v0,-32,7,-56,22,-72v15,-17,34,-25,57,-25v23,0,42,10,57,31r0,-27r46,0r0,168v0,22,-2,38,-6,49v-3,11,-8,20,-15,26v-6,6,-15,11,-26,14v-11,4,-25,6,-42,6v-31,0,-54,-6,-67,-16v-13,-11,-20,-25,-20,-42r0,-6xm65,-97v0,20,4,34,12,43v8,9,17,14,28,14v12,0,23,-5,31,-14v8,-9,12,-23,12,-42v0,-19,-4,-34,-12,-43v-8,-9,-18,-14,-30,-14v-12,0,-21,4,-29,14v-8,9,-12,23,-12,42","w":219},"h":{"d":"75,-258r0,95v16,-19,35,-28,57,-28v12,0,22,2,31,6v9,5,16,10,21,17v4,6,7,13,9,21v2,8,3,21,3,37r0,110r-50,0r0,-99v0,-19,-1,-32,-3,-37v-1,-5,-5,-9,-9,-12v-5,-4,-11,-5,-18,-5v-9,0,-16,2,-22,6v-7,4,-11,10,-14,18v-3,8,-5,20,-5,35r0,94r-49,0r0,-258r49,0","w":219},"i":{"d":"26,-212r0,-46r49,0r0,46r-49,0xm26,0r0,-187r49,0r0,187r-49,0","w":100},"j":{"d":"25,-212r0,-46r49,0r0,46r-49,0xm74,-187r0,181v0,24,-1,41,-4,51v-4,9,-10,17,-18,23v-9,5,-21,8,-34,8v-5,0,-10,-1,-16,-2v-6,0,-12,-2,-19,-4r9,-42v2,1,5,1,7,1v2,1,4,1,5,1v5,0,10,-1,13,-3v3,-3,5,-5,6,-8v1,-3,2,-12,2,-28r0,-178r49,0","w":100},"k":{"d":"24,0r0,-258r49,0r0,137r58,-66r61,0r-64,69r69,118r-54,0r-46,-84r-24,24r0,60r-49,0"},"l":{"d":"26,0r0,-258r49,0r0,258r-49,0","w":100},"m":{"d":"22,-187r46,0r0,26v16,-20,35,-30,58,-30v12,0,22,3,31,7v9,5,16,13,22,23v8,-10,17,-18,26,-23v10,-4,20,-7,31,-7v13,0,25,3,34,8v10,6,17,14,22,25v3,8,5,21,5,39r0,119r-50,0r0,-107v0,-18,-1,-30,-5,-36v-4,-7,-11,-10,-21,-10v-7,0,-13,2,-19,6v-6,4,-11,11,-14,19v-2,8,-4,21,-4,38r0,90r-49,0r0,-102v0,-18,-1,-30,-3,-35v-1,-6,-4,-10,-8,-12v-4,-3,-9,-4,-15,-4v-7,0,-14,2,-20,6v-7,4,-11,10,-14,18v-2,8,-3,20,-3,38r0,91r-50,0r0,-187","w":320},"n":{"d":"196,0r-50,0r0,-95v0,-20,-1,-33,-3,-39v-2,-6,-5,-11,-10,-14v-5,-3,-11,-5,-17,-5v-9,0,-17,2,-23,7v-7,5,-12,11,-14,19v-3,7,-4,22,-4,42r0,85r-50,0r0,-187r46,0r0,28v17,-21,37,-32,62,-32v11,0,21,2,30,6v9,4,16,9,20,15v5,6,8,13,10,21v2,7,3,19,3,33r0,116","w":219},"o":{"d":"14,-96v0,-16,4,-32,13,-48v8,-15,19,-27,34,-35v15,-8,31,-12,50,-12v28,0,51,9,69,28v18,18,27,41,27,69v0,28,-9,52,-27,70v-18,19,-41,28,-69,28v-17,0,-34,-4,-49,-11v-16,-8,-27,-19,-35,-34v-9,-15,-13,-34,-13,-55xm65,-93v0,18,4,32,13,42v9,10,20,15,33,15v13,0,23,-5,32,-15v9,-10,13,-24,13,-43v0,-18,-4,-32,-13,-42v-9,-10,-19,-15,-32,-15v-13,0,-24,5,-33,15v-9,10,-13,24,-13,43","w":219},"p":{"d":"24,-187r46,0r0,28v6,-10,15,-17,25,-23v10,-6,21,-9,34,-9v21,0,40,9,55,26v15,17,23,40,23,71v0,31,-8,55,-23,72v-16,18,-34,26,-56,26v-10,0,-19,-2,-28,-6v-8,-4,-17,-11,-26,-21r0,94r-50,0r0,-258xm73,-97v0,21,4,37,13,47v8,10,18,15,30,15v12,0,21,-5,29,-14v7,-9,11,-24,11,-45v0,-20,-4,-34,-12,-44v-7,-9,-17,-14,-29,-14v-12,0,-22,5,-30,14v-8,9,-12,23,-12,41","w":219},"q":{"d":"148,71r0,-94v-7,8,-15,15,-24,20v-10,5,-20,7,-31,7v-22,0,-39,-8,-53,-24v-16,-18,-24,-44,-24,-75v0,-30,8,-54,23,-71v15,-16,34,-25,56,-25v13,0,23,3,33,8v9,5,17,13,24,24r0,-28r45,0r0,258r-49,0xm149,-96v0,-19,-3,-33,-11,-42v-8,-10,-18,-14,-30,-14v-11,0,-21,5,-30,14v-8,10,-12,25,-12,45v0,21,4,35,12,45v8,9,17,13,29,13v11,0,21,-5,30,-15v8,-10,12,-25,12,-46","w":219},"r":{"d":"73,0r-49,0r0,-187r46,0r0,27v7,-13,15,-21,21,-25v6,-4,13,-6,21,-6v11,0,22,3,33,9r-16,43v-8,-5,-16,-8,-23,-8v-7,0,-13,2,-17,6v-5,4,-9,11,-12,21v-2,10,-4,31,-4,62r0,58","w":140,"k":{".":20,",":20}},"s":{"d":"8,-53r50,-8v2,10,6,17,13,22v6,5,15,8,27,8v13,0,22,-3,29,-7v4,-4,6,-8,6,-14v0,-3,-1,-7,-3,-9v-3,-2,-8,-5,-17,-7v-40,-8,-65,-16,-76,-24v-14,-10,-22,-24,-22,-42v0,-16,7,-29,19,-40v13,-11,33,-17,60,-17v25,0,44,4,57,13v12,8,21,20,25,36r-46,9v-2,-7,-6,-13,-11,-17v-6,-3,-14,-5,-24,-5v-13,0,-23,1,-28,5v-4,3,-6,6,-6,10v0,4,2,7,5,9v5,3,20,8,46,14v27,6,45,13,55,22v11,9,16,21,16,37v0,17,-7,31,-22,44v-14,12,-35,18,-63,18v-26,0,-46,-5,-60,-15v-15,-11,-25,-25,-30,-42"},"t":{"d":"111,-187r0,40r-33,0r0,75v0,15,0,24,1,27v0,2,2,4,4,6v2,1,5,2,8,2v5,0,12,-1,20,-4r4,38v-11,5,-24,7,-39,7v-8,0,-16,-1,-24,-4v-7,-3,-12,-7,-15,-12v-4,-5,-6,-11,-7,-19v-1,-6,-2,-17,-2,-35r0,-81r-23,0r0,-40r23,0r0,-37r50,-29r0,66r33,0","w":119},"u":{"d":"149,0r0,-28v-7,10,-16,18,-27,24v-11,5,-23,8,-35,8v-13,0,-24,-3,-34,-8v-10,-6,-17,-13,-22,-23v-4,-10,-6,-24,-6,-42r0,-118r49,0r0,86v0,26,1,42,3,48v2,6,5,11,10,14v5,4,11,6,18,6v9,0,16,-3,23,-7v6,-5,11,-11,14,-18v2,-6,3,-23,3,-50r0,-79r50,0r0,187r-46,0","w":219},"v":{"d":"77,0r-75,-187r52,0r35,96r10,31v3,-8,5,-13,5,-16r6,-15r35,-96r51,0r-74,187r-45,0","k":{".":27,",":27}},"w":{"d":"61,0r-59,-187r48,0r35,123r32,-123r47,0r31,123r36,-123r49,0r-60,187r-48,0r-32,-120r-31,120r-48,0","w":280,"k":{".":13,",":13}},"x":{"d":"2,0r67,-96r-64,-91r60,0r33,52r35,-52r58,0r-63,89r69,98r-61,0r-38,-58r-38,58r-58,0"},"y":{"d":"2,-187r53,0r45,133r43,-133r51,0r-66,180r-11,32v-5,11,-9,20,-13,25v-4,6,-8,11,-13,14v-5,4,-12,7,-19,9v-7,2,-16,3,-25,3v-10,0,-19,-1,-28,-3r-5,-39v8,2,15,2,21,2v12,0,20,-3,26,-10v5,-6,10,-15,12,-25","k":{".":27,",":27}},"z":{"d":"6,0r0,-38r70,-81v11,-13,20,-22,25,-28v-5,1,-13,1,-22,1r-66,0r0,-41r154,0r0,35r-71,83r-25,27v13,-1,22,-1,25,-1r77,0r0,43r-167,0","w":180},"{":{"d":"11,-72r0,-42v8,-1,15,-2,19,-4v4,-2,8,-6,11,-11v3,-5,5,-11,7,-18v1,-6,1,-16,1,-30v0,-23,1,-38,3,-47v2,-9,6,-17,12,-22v5,-5,13,-10,24,-13v7,-2,18,-3,33,-3r10,0r0,42v-13,0,-22,1,-25,2v-4,2,-7,4,-8,7v-2,3,-3,8,-3,15v0,8,-1,22,-2,42v0,12,-2,21,-4,28v-3,8,-6,14,-10,18v-3,5,-9,10,-17,15v7,4,12,8,17,14v4,5,8,12,10,19v2,8,4,18,5,31v0,19,1,32,1,37v0,8,1,13,3,16v1,3,4,6,8,7v4,2,12,3,25,3r0,42r-10,0v-15,0,-27,-1,-36,-4v-8,-3,-15,-7,-21,-13v-6,-5,-10,-13,-12,-21v-2,-9,-3,-22,-3,-41v0,-22,-1,-36,-3,-42v-2,-9,-6,-16,-11,-20v-6,-4,-14,-6,-24,-7","w":140},"|":{"d":"31,76r0,-338r39,0r0,338r-39,0","w":100},"}":{"d":"128,-72v-8,0,-15,2,-19,4v-5,2,-8,5,-11,10v-3,5,-6,12,-7,19v-1,6,-1,16,-1,29v0,23,-1,39,-3,48v-2,9,-6,16,-12,22v-5,5,-13,9,-24,13v-7,2,-18,3,-34,3r-9,0r0,-42v12,0,21,-1,25,-3v3,-1,6,-4,8,-7v2,-3,3,-8,3,-15v0,-7,0,-21,1,-41v1,-12,3,-22,5,-29v3,-7,6,-14,10,-19v5,-5,10,-9,17,-13v-9,-6,-15,-11,-19,-17v-6,-7,-9,-17,-11,-29v-2,-8,-3,-26,-3,-54v0,-9,-1,-15,-3,-18v-1,-3,-4,-5,-8,-7v-3,-1,-12,-2,-25,-2r0,-42r9,0v16,0,28,1,37,4v8,2,15,6,21,12v6,6,10,13,12,22v2,9,3,22,3,41v0,21,1,35,2,42v3,9,7,16,12,20v5,4,13,6,24,7r0,42","w":140},"~":{"d":"12,-91r0,-46v15,-16,32,-24,52,-24v7,0,14,1,20,2v6,2,18,6,34,12v16,7,27,10,32,10v7,0,15,-2,23,-6v9,-4,17,-11,25,-19r0,47v-5,6,-12,11,-22,16v-10,5,-20,7,-30,7v-6,0,-12,0,-17,-2v-6,-1,-15,-5,-27,-10v-18,-8,-32,-12,-42,-12v-17,0,-33,8,-48,25","w":210},"\u00c4":{"d":"259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0xm67,-273r0,-42r42,0r0,42r-42,0xm142,-273r0,-42r43,0r0,42r-43,0","w":259},"\u00c5":{"d":"162,-275v0,10,-3,18,-10,25v-7,7,-15,10,-25,10v-9,0,-17,-3,-24,-10v-7,-7,-10,-15,-10,-25v0,-9,3,-17,10,-24v7,-7,15,-10,24,-10v10,0,18,3,25,10v7,7,10,15,10,24xm143,-275v0,-4,-1,-8,-4,-11v-4,-3,-7,-4,-12,-4v-4,0,-8,1,-11,4v-3,3,-4,7,-4,11v0,5,1,8,4,12v3,3,7,4,11,4v5,0,8,-1,12,-4v3,-4,4,-7,4,-12xm259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0","w":259},"\u00c7":{"d":"191,-95r51,16v-8,28,-21,49,-39,63v-18,14,-41,20,-69,20v-34,0,-62,-11,-84,-35v-22,-23,-33,-55,-33,-96v0,-42,11,-76,33,-99v22,-24,52,-36,88,-36v31,0,57,9,76,28v12,11,21,27,27,47r-52,13v-3,-14,-9,-24,-19,-32v-9,-8,-21,-12,-35,-12v-19,0,-35,7,-46,21v-12,14,-18,36,-18,67v0,32,6,55,17,69v12,14,27,21,46,21v14,0,26,-4,36,-13v10,-9,17,-23,21,-42xm82,71r0,-21v12,1,23,2,33,2v10,0,18,-2,23,-6v4,-2,6,-6,6,-10v0,-4,-2,-8,-6,-11v-3,-3,-9,-4,-16,-4v-8,0,-16,1,-23,3r4,-17v9,-3,19,-5,30,-5v14,0,25,3,33,10v8,6,11,14,11,23v0,11,-4,19,-12,25v-12,9,-28,14,-49,14v-15,0,-27,-1,-34,-3","w":259},"\u00c9":{"d":"26,0r0,-258r191,0r0,44r-139,0r0,57r130,0r0,43r-130,0r0,71r144,0r0,43r-196,0xm92,-273r24,-52r55,0r-48,52r-31,0","w":240},"\u00d1":{"d":"91,-272r-22,0r0,-6v0,-13,3,-22,9,-29v6,-6,13,-10,23,-10v4,0,8,1,11,2v4,1,10,3,19,7v10,4,17,7,22,7v4,0,7,-2,10,-4v2,-2,4,-6,5,-12r22,0v0,16,-3,27,-9,34v-5,7,-13,10,-22,10v-4,0,-8,0,-12,-1v-2,-1,-9,-3,-20,-7v-11,-4,-19,-6,-23,-6v-4,0,-7,1,-9,3v-2,2,-3,6,-4,12xm27,0r0,-258r50,0r106,172r0,-172r48,0r0,258r-52,0r-104,-168r0,168r-48,0","w":259},"\u00d6":{"d":"16,-127v0,-27,4,-49,11,-66v6,-13,14,-25,24,-36v11,-10,22,-18,34,-23v16,-7,34,-10,55,-10v38,0,69,12,91,35v23,24,35,57,35,99v0,41,-12,74,-34,97v-23,24,-53,35,-91,35v-38,0,-69,-11,-91,-35v-23,-23,-34,-55,-34,-96xm69,-129v0,29,7,51,20,66v14,15,31,23,52,23v21,0,38,-8,51,-22v13,-15,20,-38,20,-68v0,-29,-7,-51,-20,-66v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,22v-13,15,-20,37,-20,67xm79,-273r0,-42r42,0r0,42r-42,0xm154,-273r0,-42r43,0r0,42r-43,0","w":280},"\u00dc":{"d":"26,-258r52,0r0,140v0,22,1,36,2,43v2,10,7,19,16,25v8,7,20,10,34,10v15,0,26,-3,33,-9v8,-6,12,-14,14,-22v2,-9,2,-24,2,-44r0,-143r52,0r0,136v0,31,-1,52,-4,65v-3,13,-8,24,-15,33v-8,8,-18,15,-31,21v-12,5,-29,7,-49,7v-25,0,-44,-2,-56,-8v-13,-6,-23,-13,-30,-22v-8,-9,-13,-19,-15,-29v-3,-15,-5,-36,-5,-65r0,-138xm70,-273r0,-42r42,0r0,42r-42,0xm145,-273r0,-42r43,0r0,42r-43,0","w":259},"\u00e1":{"d":"63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10xm76,-210r24,-52r55,0r-48,52r-31,0"},"\u00e0":{"d":"63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10xm125,-210r-31,0r-49,-52r56,0"},"\u00e2":{"d":"41,-210r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10"},"\u00e4":{"d":"63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10xm42,-220r0,-42r42,0r0,42r-42,0xm117,-220r0,-42r43,0r0,42r-43,0"},"\u00e3":{"d":"62,-212r-22,0r0,-6v0,-12,3,-22,9,-29v6,-6,13,-9,23,-9v4,0,8,0,11,1v4,1,10,3,19,7v10,5,17,7,22,7v4,0,7,-2,10,-4v2,-2,4,-6,5,-12r22,0v0,16,-3,27,-9,34v-5,7,-13,10,-22,10v-4,0,-8,0,-12,-1v-2,0,-9,-3,-20,-7v-11,-4,-19,-6,-23,-6v-4,0,-7,1,-9,3v-2,3,-3,7,-4,12xm63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10"},"\u00e5":{"d":"135,-236v0,10,-4,18,-10,24v-7,7,-15,11,-25,11v-9,0,-17,-4,-24,-11v-7,-6,-10,-14,-10,-24v0,-9,3,-18,10,-24v7,-7,15,-10,24,-10v10,0,18,3,25,10v6,6,10,14,10,24xm116,-236v0,-4,-2,-8,-5,-11v-3,-3,-6,-5,-11,-5v-4,0,-8,2,-11,5v-3,3,-4,7,-4,11v0,4,1,8,4,11v3,3,7,5,11,5v5,0,8,-2,11,-5v3,-3,5,-7,5,-11xm63,-130r-45,-8v5,-18,14,-31,26,-40v12,-9,31,-13,55,-13v22,0,38,3,49,8v11,5,18,12,23,20v4,8,6,23,6,44r0,58v0,16,1,28,2,36v2,8,5,16,9,25r-49,0v-1,-3,-3,-8,-5,-15v0,-3,-1,-4,-1,-5v-9,8,-18,14,-27,18v-10,4,-20,6,-31,6v-19,0,-34,-5,-46,-15v-11,-11,-16,-24,-16,-40v0,-11,2,-20,7,-28v5,-8,12,-15,22,-19v9,-5,22,-8,39,-12v23,-4,39,-8,48,-12r0,-5v0,-9,-2,-16,-7,-20v-5,-4,-14,-6,-27,-6v-9,0,-15,2,-20,5v-5,4,-9,10,-12,18xm129,-90v-6,2,-17,5,-30,8v-14,3,-23,6,-27,9v-7,4,-10,10,-10,17v0,7,3,13,8,18v5,5,12,7,20,7v9,0,17,-3,25,-8v6,-5,10,-10,12,-17v1,-4,2,-12,2,-24r0,-10"},"\u00e7":{"d":"189,-131r-49,8v-2,-9,-5,-17,-11,-22v-6,-5,-14,-7,-23,-7v-12,0,-22,4,-29,13v-8,8,-11,22,-11,42v0,22,3,38,11,47v7,9,17,14,30,14v9,0,17,-3,23,-8v6,-5,10,-15,13,-28r48,9v-5,22,-15,39,-29,50v-14,12,-33,17,-57,17v-28,0,-49,-8,-66,-26v-16,-17,-24,-41,-24,-71v0,-31,8,-55,24,-72v17,-17,39,-26,66,-26v23,0,41,5,55,15v13,10,23,24,29,45xm56,71r0,-21v12,1,23,2,33,2v10,0,18,-2,23,-6v4,-2,6,-6,6,-10v0,-4,-2,-8,-6,-11v-3,-3,-9,-4,-16,-4v-8,0,-16,1,-23,3r4,-17v9,-3,19,-5,30,-5v14,0,25,3,33,10v8,6,11,14,11,23v0,11,-4,19,-12,25v-12,9,-28,14,-49,14v-15,0,-27,-1,-34,-3"},"\u00e9":{"d":"134,-59r49,8v-6,18,-16,32,-30,41v-13,10,-31,14,-51,14v-33,0,-57,-10,-72,-32v-12,-17,-19,-38,-19,-64v0,-31,9,-55,25,-73v16,-17,36,-26,61,-26v28,0,50,9,66,28v16,18,24,46,23,84r-124,0v0,15,4,26,12,34v8,8,17,12,28,12v8,0,15,-2,20,-6v5,-4,9,-11,12,-20xm137,-109v-1,-15,-4,-26,-11,-33v-7,-7,-16,-11,-26,-11v-11,0,-20,4,-27,12v-7,8,-10,18,-10,32r74,0xm74,-210r24,-52r55,0r-48,52r-31,0"},"\u00e8":{"d":"134,-59r49,8v-6,18,-16,32,-30,41v-13,10,-31,14,-51,14v-33,0,-57,-10,-72,-32v-12,-17,-19,-38,-19,-64v0,-31,9,-55,25,-73v16,-17,36,-26,61,-26v28,0,50,9,66,28v16,18,24,46,23,84r-124,0v0,15,4,26,12,34v8,8,17,12,28,12v8,0,15,-2,20,-6v5,-4,9,-11,12,-20xm137,-109v-1,-15,-4,-26,-11,-33v-7,-7,-16,-11,-26,-11v-11,0,-20,4,-27,12v-7,8,-10,18,-10,32r74,0xm124,-210r-31,0r-49,-52r56,0"},"\u00ea":{"d":"39,-210r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm134,-59r49,8v-6,18,-16,32,-30,41v-13,10,-31,14,-51,14v-33,0,-57,-10,-72,-32v-12,-17,-19,-38,-19,-64v0,-31,9,-55,25,-73v16,-17,36,-26,61,-26v28,0,50,9,66,28v16,18,24,46,23,84r-124,0v0,15,4,26,12,34v8,8,17,12,28,12v8,0,15,-2,20,-6v5,-4,9,-11,12,-20xm137,-109v-1,-15,-4,-26,-11,-33v-7,-7,-16,-11,-26,-11v-11,0,-20,4,-27,12v-7,8,-10,18,-10,32r74,0"},"\u00eb":{"d":"134,-59r49,8v-6,18,-16,32,-30,41v-13,10,-31,14,-51,14v-33,0,-57,-10,-72,-32v-12,-17,-19,-38,-19,-64v0,-31,9,-55,25,-73v16,-17,36,-26,61,-26v28,0,50,9,66,28v16,18,24,46,23,84r-124,0v0,15,4,26,12,34v8,8,17,12,28,12v8,0,15,-2,20,-6v5,-4,9,-11,12,-20xm137,-109v-1,-15,-4,-26,-11,-33v-7,-7,-16,-11,-26,-11v-11,0,-20,4,-27,12v-7,8,-10,18,-10,32r74,0xm40,-220r0,-42r42,0r0,42r-42,0xm115,-220r0,-42r43,0r0,42r-43,0"},"\u00ed":{"d":"26,0r0,-187r49,0r0,187r-49,0xm22,-210r24,-52r55,0r-48,52r-31,0","w":100},"\u00ec":{"d":"26,0r0,-187r49,0r0,187r-49,0xm76,-210r-31,0r-49,-52r56,0","w":100},"\u00ee":{"d":"-9,-210r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm26,0r0,-187r49,0r0,187r-49,0","w":100},"\u00ef":{"d":"26,0r0,-187r49,0r0,187r-49,0xm-8,-220r0,-42r42,0r0,42r-42,0xm67,-220r0,-42r43,0r0,42r-43,0","w":100},"\u00f1":{"d":"72,-212r-22,0r0,-6v0,-12,3,-22,9,-29v6,-6,13,-9,23,-9v4,0,8,0,11,1v4,1,10,3,19,7v10,5,17,7,22,7v4,0,7,-2,10,-4v2,-2,4,-6,5,-12r22,0v0,16,-3,27,-8,34v-6,7,-14,10,-23,10v-4,0,-8,0,-12,-1v-2,0,-9,-3,-20,-7v-11,-4,-19,-6,-23,-6v-4,0,-7,1,-9,3v-2,3,-3,7,-4,12xm196,0r-50,0r0,-95v0,-20,-1,-33,-3,-39v-2,-6,-5,-11,-10,-14v-5,-3,-11,-5,-17,-5v-9,0,-17,2,-23,7v-7,5,-12,11,-14,19v-3,7,-4,22,-4,42r0,85r-50,0r0,-187r46,0r0,28v17,-21,37,-32,62,-32v11,0,21,2,30,6v9,4,16,9,20,15v5,6,8,13,10,21v2,7,3,19,3,33r0,116","w":219},"\u00f3":{"d":"14,-96v0,-16,4,-32,13,-48v8,-15,19,-27,34,-35v15,-8,31,-12,50,-12v28,0,51,9,69,28v18,18,27,41,27,69v0,28,-9,52,-27,70v-18,19,-41,28,-69,28v-17,0,-34,-4,-49,-11v-16,-8,-27,-19,-35,-34v-9,-15,-13,-34,-13,-55xm65,-93v0,18,4,32,13,42v9,10,20,15,33,15v13,0,23,-5,32,-15v9,-10,13,-24,13,-43v0,-18,-4,-32,-13,-42v-9,-10,-19,-15,-32,-15v-13,0,-24,5,-33,15v-9,10,-13,24,-13,43xm86,-210r24,-52r55,0r-48,52r-31,0","w":219},"\u00f2":{"d":"14,-96v0,-16,4,-32,13,-48v8,-15,19,-27,34,-35v15,-8,31,-12,50,-12v28,0,51,9,69,28v18,18,27,41,27,69v0,28,-9,52,-27,70v-18,19,-41,28,-69,28v-17,0,-34,-4,-49,-11v-16,-8,-27,-19,-35,-34v-9,-15,-13,-34,-13,-55xm65,-93v0,18,4,32,13,42v9,10,20,15,33,15v13,0,23,-5,32,-15v9,-10,13,-24,13,-43v0,-18,-4,-32,-13,-42v-9,-10,-19,-15,-32,-15v-13,0,-24,5,-33,15v-9,10,-13,24,-13,43xm136,-210r-31,0r-49,-52r56,0","w":219},"\u00f4":{"d":"51,-210r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm14,-96v0,-16,4,-32,13,-48v8,-15,19,-27,34,-35v15,-8,31,-12,50,-12v28,0,51,9,69,28v18,18,27,41,27,69v0,28,-9,52,-27,70v-18,19,-41,28,-69,28v-17,0,-34,-4,-49,-11v-16,-8,-27,-19,-35,-34v-9,-15,-13,-34,-13,-55xm65,-93v0,18,4,32,13,42v9,10,20,15,33,15v13,0,23,-5,32,-15v9,-10,13,-24,13,-43v0,-18,-4,-32,-13,-42v-9,-10,-19,-15,-32,-15v-13,0,-24,5,-33,15v-9,10,-13,24,-13,43","w":219},"\u00f6":{"d":"14,-96v0,-16,4,-32,13,-48v8,-15,19,-27,34,-35v15,-8,31,-12,50,-12v28,0,51,9,69,28v18,18,27,41,27,69v0,28,-9,52,-27,70v-18,19,-41,28,-69,28v-17,0,-34,-4,-49,-11v-16,-8,-27,-19,-35,-34v-9,-15,-13,-34,-13,-55xm65,-93v0,18,4,32,13,42v9,10,20,15,33,15v13,0,23,-5,32,-15v9,-10,13,-24,13,-43v0,-18,-4,-32,-13,-42v-9,-10,-19,-15,-32,-15v-13,0,-24,5,-33,15v-9,10,-13,24,-13,43xm50,-220r0,-42r42,0r0,42r-42,0xm125,-220r0,-42r43,0r0,42r-43,0","w":219},"\u00f5":{"d":"73,-212r-23,0r0,-6v0,-12,3,-22,9,-29v6,-6,14,-9,23,-9v4,0,8,0,11,1v4,1,10,3,20,7v9,5,16,7,21,7v4,0,7,-2,10,-4v2,-2,4,-6,5,-12r23,0v-1,16,-4,27,-9,34v-6,7,-14,10,-23,10v-4,0,-8,0,-12,-1v-2,0,-9,-3,-20,-7v-10,-4,-18,-6,-23,-6v-4,0,-7,1,-9,3v-2,3,-3,7,-3,12xm14,-96v0,-16,4,-32,13,-48v8,-15,19,-27,34,-35v15,-8,31,-12,50,-12v28,0,51,9,69,28v18,18,27,41,27,69v0,28,-9,52,-27,70v-18,19,-41,28,-69,28v-17,0,-34,-4,-49,-11v-16,-8,-27,-19,-35,-34v-9,-15,-13,-34,-13,-55xm65,-93v0,18,4,32,13,42v9,10,20,15,33,15v13,0,23,-5,32,-15v9,-10,13,-24,13,-43v0,-18,-4,-32,-13,-42v-9,-10,-19,-15,-32,-15v-13,0,-24,5,-33,15v-9,10,-13,24,-13,43","w":219},"\u00fa":{"d":"149,0r0,-28v-7,10,-16,18,-27,24v-11,5,-23,8,-35,8v-13,0,-24,-3,-34,-8v-10,-6,-17,-13,-22,-23v-4,-10,-6,-24,-6,-42r0,-118r49,0r0,86v0,26,1,42,3,48v2,6,5,11,10,14v5,4,11,6,18,6v9,0,16,-3,23,-7v6,-5,11,-11,14,-18v2,-6,3,-23,3,-50r0,-79r50,0r0,187r-46,0xm85,-210r24,-52r55,0r-48,52r-31,0","w":219},"\u00f9":{"d":"149,0r0,-28v-7,10,-16,18,-27,24v-11,5,-23,8,-35,8v-13,0,-24,-3,-34,-8v-10,-6,-17,-13,-22,-23v-4,-10,-6,-24,-6,-42r0,-118r49,0r0,86v0,26,1,42,3,48v2,6,5,11,10,14v5,4,11,6,18,6v9,0,16,-3,23,-7v6,-5,11,-11,14,-18v2,-6,3,-23,3,-50r0,-79r50,0r0,187r-46,0xm135,-210r-31,0r-49,-52r56,0","w":219},"\u00fb":{"d":"50,-210r37,-52r46,0r36,52r-39,0r-21,-26r-19,26r-40,0xm149,0r0,-28v-7,10,-16,18,-27,24v-11,5,-23,8,-35,8v-13,0,-24,-3,-34,-8v-10,-6,-17,-13,-22,-23v-4,-10,-6,-24,-6,-42r0,-118r49,0r0,86v0,26,1,42,3,48v2,6,5,11,10,14v5,4,11,6,18,6v9,0,16,-3,23,-7v6,-5,11,-11,14,-18v2,-6,3,-23,3,-50r0,-79r50,0r0,187r-46,0","w":219},"\u00fc":{"d":"149,0r0,-28v-7,10,-16,18,-27,24v-11,5,-23,8,-35,8v-13,0,-24,-3,-34,-8v-10,-6,-17,-13,-22,-23v-4,-10,-6,-24,-6,-42r0,-118r49,0r0,86v0,26,1,42,3,48v2,6,5,11,10,14v5,4,11,6,18,6v9,0,16,-3,23,-7v6,-5,11,-11,14,-18v2,-6,3,-23,3,-50r0,-79r50,0r0,187r-46,0xm51,-220r0,-42r42,0r0,42r-42,0xm126,-220r0,-42r43,0r0,42r-43,0","w":219},"\u00b0":{"d":"15,-206v0,-16,6,-29,17,-40v11,-11,24,-16,39,-16v16,0,29,5,40,16v11,11,16,25,16,40v0,15,-5,29,-16,40v-11,11,-24,16,-40,16v-15,0,-28,-5,-39,-16v-11,-11,-17,-25,-17,-40xm44,-206v0,7,3,14,8,19v5,5,12,8,19,8v8,0,14,-3,19,-8v5,-5,8,-12,8,-19v0,-7,-3,-14,-8,-19v-5,-5,-11,-8,-19,-8v-7,0,-14,3,-19,8v-5,5,-8,12,-8,19","w":143},"\u00a2":{"d":"131,-143r-32,106v2,1,5,1,8,1v9,0,17,-3,23,-8v6,-5,10,-15,12,-28r49,9v-5,22,-15,39,-29,50v-14,12,-34,17,-57,17v-6,0,-12,0,-18,-1r-21,68r-21,-6r20,-68v-16,-7,-28,-18,-37,-34v-9,-16,-13,-35,-13,-57v0,-30,8,-54,24,-71v16,-17,38,-26,66,-26v5,0,11,0,17,1r20,-66r21,6r-20,65v23,9,38,27,45,54r-48,8v-2,-8,-5,-15,-9,-20xm110,-152r-4,0v-12,0,-22,4,-30,13v-7,8,-11,23,-11,42v0,23,5,40,14,50"},"\u00a3":{"d":"176,-50r19,42v-7,3,-15,6,-24,9v-8,2,-17,3,-25,3v-10,0,-25,-2,-42,-7v-18,-5,-31,-8,-39,-8v-14,0,-29,5,-44,15r-19,-42v14,-10,23,-20,29,-30v6,-11,9,-21,9,-31v0,-3,-1,-7,-1,-10r-37,0r0,-39r28,0v-5,-14,-7,-28,-7,-42v0,-13,3,-25,10,-37v7,-11,17,-20,30,-26v13,-6,26,-9,42,-9v23,0,41,6,55,17v13,12,22,29,25,51r-48,7v-2,-13,-6,-22,-12,-27v-6,-6,-13,-9,-22,-9v-9,0,-17,3,-23,10v-6,6,-10,14,-10,23v0,5,1,12,3,20v2,8,4,15,6,22r55,0r0,39r-47,0v1,2,1,5,1,8v0,9,-2,17,-5,25v-4,8,-11,18,-22,31v6,-3,15,-5,24,-5v4,0,8,0,11,1v2,0,7,1,15,3v14,4,24,6,29,6v9,0,21,-4,36,-10"},"\u00a7":{"d":"173,-203r-48,5v0,-8,-3,-15,-8,-20v-4,-4,-11,-6,-19,-6v-8,0,-13,1,-17,5v-4,3,-6,7,-6,11v0,6,2,11,8,16v3,4,15,12,36,25v20,13,34,23,40,28v10,9,18,18,22,26v5,8,7,18,7,28v0,11,-3,21,-8,30v-6,9,-14,17,-24,25v7,7,12,14,16,21v3,7,5,15,5,24v0,17,-6,31,-19,43v-14,12,-32,18,-57,18v-23,0,-42,-6,-56,-18v-14,-11,-22,-27,-25,-46r48,-6v2,11,7,19,12,24v6,5,14,8,23,8v8,0,14,-2,18,-6v5,-4,7,-9,7,-15v0,-5,-2,-10,-6,-15v-5,-4,-20,-15,-47,-32v-27,-17,-44,-31,-53,-42v-8,-11,-12,-24,-12,-38v0,-11,3,-22,8,-32v6,-10,14,-18,25,-24v-6,-6,-10,-13,-13,-19v-3,-7,-5,-14,-5,-20v0,-16,6,-30,19,-41v12,-11,29,-16,52,-16v23,0,41,5,54,16v13,11,21,26,23,43xm129,-52v5,-4,9,-9,12,-13v2,-4,3,-8,3,-12v0,-4,-1,-8,-4,-12v-2,-4,-10,-11,-22,-20r-48,-34v-4,2,-7,5,-10,10v-3,4,-5,9,-5,13v0,12,8,24,24,34"},"\u00b6":{"d":"112,71r-43,0r0,-184v-22,-2,-39,-9,-51,-22v-12,-12,-18,-29,-18,-50v0,-12,2,-24,7,-34v5,-10,11,-18,19,-24v8,-6,18,-10,29,-13v7,-1,19,-2,39,-2r104,0r0,46r-19,0r0,283r-42,0r0,-283r-25,0r0,283"},"\u00df":{"d":"24,0r0,-167v0,-24,3,-42,7,-54v4,-12,12,-22,24,-30v12,-7,27,-11,46,-11v24,0,42,5,54,15v12,10,18,23,18,38v0,10,-3,21,-10,33r-11,21v-1,3,-1,5,-1,7v0,4,1,8,4,12v2,3,9,10,21,23v12,12,21,22,25,31v4,8,6,17,6,26v0,17,-6,32,-17,43v-12,12,-27,17,-45,17v-13,0,-24,-3,-34,-9v-10,-7,-18,-15,-23,-24r34,-20v3,4,6,8,9,10v3,2,6,4,10,4v4,0,9,-2,12,-6v3,-3,5,-7,5,-12v0,-5,-2,-10,-5,-15v-2,-3,-11,-11,-25,-24v-19,-19,-29,-34,-29,-45v0,-7,3,-19,11,-34v6,-13,10,-20,11,-24v1,-3,1,-6,1,-10v0,-5,-2,-9,-6,-13v-4,-4,-9,-5,-15,-5v-6,0,-11,1,-15,4v-5,3,-7,7,-9,12v-2,6,-3,20,-3,40r0,167r-50,0","w":219},"\u00ae":{"d":"133,-263v23,0,45,6,67,17v21,12,37,28,50,50v12,22,18,44,18,68v0,23,-6,45,-18,67v-12,21,-29,38,-50,49v-21,12,-43,18,-67,18v-23,0,-46,-6,-67,-18v-21,-11,-38,-28,-50,-49v-12,-22,-18,-44,-18,-67v0,-24,6,-46,19,-68v12,-22,28,-38,50,-50v21,-11,43,-17,66,-17xm133,-237v-18,0,-36,5,-53,14v-17,10,-30,23,-40,40v-10,18,-15,36,-15,55v0,19,5,37,14,54v10,17,23,30,40,40v18,9,35,14,54,14v19,0,37,-5,54,-14v17,-10,31,-23,40,-40v10,-17,15,-35,15,-54v0,-19,-5,-37,-15,-55v-10,-17,-23,-30,-40,-40v-17,-9,-35,-14,-54,-14xm72,-56r0,-143r29,0r46,0v10,1,17,3,22,6v6,3,10,7,14,14v3,6,5,13,5,20v0,10,-3,19,-10,27v-7,7,-16,11,-28,13v4,2,7,4,10,6v2,1,5,5,9,11v1,1,5,7,11,17r17,29r-36,0r-12,-23v-8,-16,-15,-26,-20,-30v-5,-4,-12,-6,-20,-6r-8,0r0,59r-29,0xm101,-137r12,0v17,0,27,-1,31,-2v4,-2,7,-4,10,-7v2,-3,3,-7,3,-11v0,-4,-1,-8,-3,-11v-2,-3,-6,-5,-10,-6v-4,-2,-14,-2,-31,-2r-12,0r0,39","w":265},"\u00a9":{"d":"133,-263v23,0,45,6,67,17v21,12,37,29,50,50v12,22,18,44,18,68v0,23,-6,45,-18,67v-12,21,-29,38,-50,49v-21,12,-43,18,-67,18v-23,0,-46,-6,-67,-18v-21,-11,-38,-28,-50,-49v-12,-22,-18,-44,-18,-67v0,-24,6,-46,19,-68v12,-21,28,-38,50,-50v21,-11,43,-17,66,-17xm133,-236v-18,0,-36,4,-53,13v-17,10,-31,23,-40,40v-10,18,-15,36,-15,55v0,18,5,36,14,53v10,18,23,31,40,40v17,10,35,15,54,15v19,0,37,-5,54,-15v17,-9,30,-22,40,-40v9,-17,14,-35,14,-53v0,-19,-5,-37,-14,-55v-10,-17,-24,-30,-41,-40v-17,-9,-34,-13,-53,-13xm166,-108r28,9v-4,15,-12,26,-22,34v-10,8,-23,12,-37,12v-20,0,-36,-7,-49,-20v-13,-13,-19,-31,-19,-54v0,-15,3,-29,8,-41v6,-11,14,-20,25,-26v10,-6,22,-9,35,-9v15,0,27,4,36,10v10,7,18,18,23,33r-28,7v-4,-9,-8,-15,-13,-19v-5,-4,-12,-6,-19,-6v-10,0,-19,4,-26,12v-7,8,-10,21,-10,38v0,17,3,30,10,38v7,8,15,12,24,12v8,0,15,-3,20,-7v6,-5,11,-13,14,-23","w":265},"\u00b4":{"d":"33,-210r24,-52r55,0r-48,52r-31,0","w":119},"\u00a8":{"d":"1,-220r0,-42r42,0r0,42r-42,0xm76,-220r0,-42r43,0r0,42r-43,0","w":119},"\u00c6":{"d":"-15,0r120,-258r233,0r0,44r-128,0r0,57r118,0r0,44r-118,0r0,70r133,0r0,43r-185,0r0,-61r-89,0r-26,61r-58,0xm88,-106r71,0r0,-113r-20,0","w":360},"\u00d8":{"d":"218,-239r28,-31r24,21r-29,33v7,11,14,24,18,39v4,16,6,32,6,50v0,40,-11,73,-33,96v-23,24,-53,35,-90,35v-32,0,-58,-7,-77,-22r-29,32r-25,-21r30,-34v-17,-23,-26,-53,-26,-89v0,-41,12,-73,34,-97v23,-23,53,-35,91,-35v31,0,57,8,78,23xm185,-203v-11,-10,-26,-15,-45,-15v-21,0,-38,8,-51,22v-13,15,-20,37,-20,67v0,18,3,34,8,48xm205,-175r-108,121v12,11,26,16,43,16v21,0,38,-7,52,-22v13,-16,20,-38,20,-68v0,-19,-3,-35,-7,-47","w":280},"\u00b1":{"d":"76,-63r0,-67r-67,0r0,-46r67,0r0,-67r45,0r0,67r68,0r0,46r-68,0r0,67r-45,0xm9,0r0,-46r180,0r0,46r-180,0","w":197},"\u00a5":{"d":"74,-48r-65,0r0,-39r65,0r0,-21r-65,0r0,-39r46,0r-55,-111r54,0r35,75v5,10,8,18,10,25v2,-8,5,-16,9,-25r36,-75r54,0r-55,111r47,0r0,39r-66,0r0,21r66,0r0,39r-66,0r0,48r-50,0r0,-48"},"\u00b5":{"d":"20,-187r49,0r0,85v0,24,2,41,7,50v6,11,15,17,28,17v6,0,12,-2,18,-7v6,-4,10,-10,13,-17v3,-8,4,-22,4,-43r0,-85r50,0r0,187r-46,0r0,-22v-3,6,-7,11,-10,14v-3,4,-7,6,-13,9v-5,2,-10,4,-14,4v-8,0,-16,-3,-22,-7v-5,-4,-10,-10,-15,-20r0,94r-49,0r0,-259","w":207},"\u00aa":{"d":"45,-220r-34,-7v3,-11,9,-20,17,-26v8,-6,20,-9,37,-9v17,0,30,2,39,7v5,3,10,8,13,15v1,5,2,14,2,27r0,42v0,13,1,21,1,25v1,4,2,8,4,12r-33,0v-1,-3,-3,-7,-4,-12v-10,10,-23,15,-38,15v-13,0,-24,-3,-31,-10v-8,-7,-11,-16,-11,-28v0,-8,1,-14,5,-20v4,-5,9,-10,16,-13v6,-2,17,-5,33,-8v10,-2,17,-4,22,-6r0,-4v0,-5,-1,-9,-3,-11v-3,-2,-8,-3,-15,-3v-6,0,-10,1,-13,2v-3,2,-5,6,-7,12xm83,-192v-2,1,-6,2,-11,3v-12,3,-20,5,-22,6v-5,3,-7,7,-7,12v0,3,1,7,5,10v3,3,7,4,12,4v7,0,12,-2,17,-7v4,-5,6,-12,6,-21r0,-7","w":133},"\u00ba":{"d":"5,-196v0,-21,5,-37,16,-49v11,-11,26,-17,45,-17v18,0,33,6,44,17v11,12,17,28,17,49v0,21,-6,37,-17,49v-11,11,-26,17,-44,17v-19,0,-34,-6,-45,-17v-11,-12,-16,-28,-16,-49xm42,-196v0,13,2,22,6,28v4,5,10,8,17,8v7,0,13,-3,17,-8v4,-6,7,-15,7,-28v0,-13,-3,-22,-7,-27v-4,-6,-10,-8,-17,-8v-7,0,-13,2,-17,8v-4,5,-6,14,-6,27","w":131},"\u00e6":{"d":"252,-60r49,9v-7,18,-17,32,-31,41v-13,10,-31,14,-52,14v-13,0,-25,-2,-36,-6v-11,-4,-21,-11,-30,-19v-9,7,-19,13,-33,18v-13,5,-26,7,-40,7v-20,0,-36,-5,-47,-15v-11,-11,-17,-24,-17,-40v0,-9,2,-18,6,-25v4,-7,9,-13,15,-17v5,-4,13,-8,23,-11v5,-2,19,-5,42,-10v11,-2,21,-5,29,-7r0,-5v0,-9,-2,-16,-7,-20v-5,-5,-13,-7,-23,-7v-10,0,-17,2,-23,6v-5,3,-9,9,-11,17r-45,-8v6,-18,15,-32,27,-40v13,-9,32,-13,58,-13v12,0,23,2,33,4v9,3,17,8,24,13v7,-5,15,-10,24,-13v8,-2,17,-4,27,-4v19,0,35,4,47,12v13,8,24,20,31,35v8,15,11,37,11,65r-124,0v2,16,6,28,13,35v7,7,16,11,26,11v8,0,15,-3,21,-7v6,-4,10,-11,13,-20xm254,-110v0,-10,-2,-17,-4,-22v-3,-7,-7,-12,-13,-15v-6,-4,-13,-6,-21,-6v-7,0,-13,2,-18,5v-5,3,-10,8,-13,14v-4,9,-6,17,-5,24r74,0xm130,-89v-27,7,-42,11,-44,12v-8,2,-13,5,-16,9v-4,4,-5,8,-5,13v0,7,2,12,8,17v5,5,11,7,19,7v9,0,17,-2,25,-8v6,-4,9,-9,11,-15v1,-6,2,-18,2,-35","w":320},"\u00f8":{"d":"166,-176r19,-21r19,16r-19,22v7,9,13,18,17,30v4,11,6,23,6,36v0,28,-9,51,-28,69v-18,19,-41,28,-69,28v-20,0,-38,-5,-54,-15r-20,24r-19,-17r20,-23v-7,-9,-13,-19,-17,-31v-4,-12,-6,-24,-6,-36v0,-29,9,-52,27,-70v18,-18,41,-27,69,-27v21,0,40,5,55,15xm139,-144v-8,-6,-17,-9,-27,-9v-13,0,-25,5,-34,15v-9,10,-14,25,-14,43v0,12,2,22,5,31xm154,-122r-69,79v7,6,16,9,26,9v14,0,25,-5,34,-15v9,-10,14,-25,14,-43v0,-11,-2,-21,-5,-30","w":219},"\u00bf":{"d":"134,-187r0,50r-49,0r0,-50r49,0xm89,-120r45,0r0,13v0,13,-2,25,-7,35v-5,9,-15,20,-30,32v-15,12,-24,21,-27,26v-3,4,-4,10,-4,16v0,9,4,17,12,24v7,7,18,10,31,10v12,0,23,-3,31,-10v8,-7,14,-18,18,-33r45,5v-2,15,-6,27,-13,37v-8,13,-20,23,-33,29v-14,7,-30,10,-46,10v-29,0,-51,-8,-68,-22v-17,-15,-25,-32,-25,-52v0,-7,1,-15,4,-22v3,-7,8,-14,14,-21v7,-7,17,-17,31,-28v10,-8,16,-15,19,-20v2,-6,4,-16,3,-29","w":219},"\u00a1":{"d":"86,-187r0,50r-50,0r0,-50r50,0xm75,-119r13,130r0,61r-54,0r0,-61r13,-130r28,0","w":119},"\u00ac":{"d":"150,-66r0,-78r-135,0r0,-45r180,0r0,123r-45,0","w":210},"\u00ab":{"d":"111,-173r-45,79r45,82r-39,0r-55,-82r55,-79r39,0xm180,-173r-45,79r45,82r-39,0r-55,-82r55,-79r39,0"},"\u00bb":{"d":"88,-12r45,-80r-45,-81r38,0r56,81r-56,80r-38,0xm19,-12r45,-80r-45,-81r38,0r56,81r-56,80r-38,0"},"\u00c0":{"d":"259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0xm157,-273r-31,0r-49,-52r56,0","w":259},"\u00c3":{"d":"87,-272r-22,0v-1,-3,-1,-5,-1,-6v0,-13,3,-22,9,-29v6,-6,14,-10,23,-10v4,0,8,1,12,2v3,1,10,3,19,7v9,4,17,7,22,7v4,0,7,-2,9,-4v3,-2,4,-6,5,-12r23,0v0,16,-3,27,-9,34v-6,7,-13,10,-22,10v-4,0,-8,0,-12,-1v-3,-1,-10,-3,-20,-7v-11,-4,-19,-6,-24,-6v-4,0,-7,1,-9,3v-2,2,-3,6,-3,12xm259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0","w":259},"\u00d5":{"d":"98,-272r-22,0r0,-6v0,-13,3,-22,9,-29v6,-6,13,-10,23,-10v4,0,7,1,11,2v4,1,10,3,19,7v10,4,17,7,22,7v4,0,7,-2,10,-4v2,-2,4,-6,4,-12r23,0v0,16,-3,27,-9,34v-5,7,-13,10,-22,10v-4,0,-8,0,-12,-1r-20,-7v0,0,-19,-6,-24,-6v-3,0,-6,1,-8,3v-3,2,-4,6,-4,12xm16,-127v0,-27,4,-49,11,-66v6,-13,14,-25,24,-36v11,-10,22,-18,34,-23v16,-7,34,-10,55,-10v38,0,69,12,91,35v23,24,35,57,35,99v0,41,-12,74,-34,97v-23,24,-53,35,-91,35v-38,0,-69,-11,-91,-35v-23,-23,-34,-55,-34,-96xm69,-129v0,29,7,51,20,66v14,15,31,23,52,23v21,0,38,-8,51,-22v13,-15,20,-38,20,-68v0,-29,-7,-51,-20,-66v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,22v-13,15,-20,37,-20,67","w":280},"\u00f7":{"d":"74,-172r0,-50r49,0r0,50r-49,0xm9,-104r0,-46r180,0r0,46r-180,0xm74,-33r0,-49r49,0r0,49r-49,0","w":197},"\u00ff":{"d":"2,-187r53,0r45,133r43,-133r51,0r-66,180r-11,32v-5,11,-9,20,-13,25v-4,6,-8,11,-13,14v-5,4,-12,7,-19,9v-7,2,-16,3,-25,3v-10,0,-19,-1,-28,-3r-5,-39v8,2,15,2,21,2v12,0,20,-3,26,-10v5,-6,10,-15,12,-25xm41,-220r0,-42r42,0r0,42r-42,0xm116,-220r0,-42r43,0r0,42r-43,0"},"\u00b7":{"d":"26,-101r0,-49r49,0r0,49r-49,0","w":100},"\u2219":{"d":"26,-101r0,-49r49,0r0,49r-49,0","w":100},"\u00c2":{"d":"68,-272r37,-52r45,0r37,52r-40,0r-20,-27r-19,27r-40,0xm259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0","w":259},"\u00ca":{"d":"59,-272r37,-52r46,0r36,52r-39,0r-21,-27r-19,27r-40,0xm26,0r0,-258r191,0r0,44r-139,0r0,57r130,0r0,43r-130,0r0,71r144,0r0,43r-196,0","w":240},"\u00c1":{"d":"259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0xm98,-273r24,-52r55,0r-48,52r-31,0","w":259},"\u00cb":{"d":"26,0r0,-258r191,0r0,44r-139,0r0,57r130,0r0,43r-130,0r0,71r144,0r0,43r-196,0xm62,-273r0,-42r42,0r0,42r-42,0xm137,-273r0,-42r43,0r0,42r-43,0","w":240},"\u00c8":{"d":"26,0r0,-258r191,0r0,44r-139,0r0,57r130,0r0,43r-130,0r0,71r144,0r0,43r-196,0xm152,-273r-31,0r-49,-52r56,0","w":240},"\u00cd":{"d":"25,0r0,-258r52,0r0,258r-52,0xm19,-273r24,-52r55,0r-48,52r-31,0","w":100},"\u00ce":{"d":"-7,-272r37,-52r45,0r37,52r-40,0r-20,-27r-19,27r-40,0xm25,0r0,-258r52,0r0,258r-52,0","w":100},"\u00cf":{"d":"25,0r0,-258r52,0r0,258r-52,0xm-8,-273r0,-42r42,0r0,42r-42,0xm67,-273r0,-42r43,0r0,42r-43,0","w":100},"\u00cc":{"d":"25,0r0,-258r52,0r0,258r-52,0xm78,-273r-31,0r-49,-52r56,0","w":100},"\u00d3":{"d":"16,-127v0,-27,4,-49,11,-66v6,-13,14,-25,24,-36v11,-10,22,-18,34,-23v16,-7,34,-10,55,-10v38,0,69,12,91,35v23,24,35,57,35,99v0,41,-12,74,-34,97v-23,24,-53,35,-91,35v-38,0,-69,-11,-91,-35v-23,-23,-34,-55,-34,-96xm69,-129v0,29,7,51,20,66v14,15,31,23,52,23v21,0,38,-8,51,-22v13,-15,20,-38,20,-68v0,-29,-7,-51,-20,-66v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,22v-13,15,-20,37,-20,67xm109,-273r24,-52r55,0r-48,52r-31,0","w":280},"\u00d4":{"d":"79,-272r37,-52r46,0r36,52r-40,0r-20,-27r-19,27r-40,0xm16,-127v0,-27,4,-49,11,-66v6,-13,14,-25,24,-36v11,-10,22,-18,34,-23v16,-7,34,-10,55,-10v38,0,69,12,91,35v23,24,35,57,35,99v0,41,-12,74,-34,97v-23,24,-53,35,-91,35v-38,0,-69,-11,-91,-35v-23,-23,-34,-55,-34,-96xm69,-129v0,29,7,51,20,66v14,15,31,23,52,23v21,0,38,-8,51,-22v13,-15,20,-38,20,-68v0,-29,-7,-51,-20,-66v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,22v-13,15,-20,37,-20,67","w":280},"\u00d2":{"d":"16,-127v0,-27,4,-49,11,-66v6,-13,14,-25,24,-36v11,-10,22,-18,34,-23v16,-7,34,-10,55,-10v38,0,69,12,91,35v23,24,35,57,35,99v0,41,-12,74,-34,97v-23,24,-53,35,-91,35v-38,0,-69,-11,-91,-35v-23,-23,-34,-55,-34,-96xm69,-129v0,29,7,51,20,66v14,15,31,23,52,23v21,0,38,-8,51,-22v13,-15,20,-38,20,-68v0,-29,-7,-51,-20,-66v-13,-14,-30,-22,-51,-22v-22,0,-39,8,-52,22v-13,15,-20,37,-20,67xm168,-273r-31,0r-49,-52r56,0","w":280},"\u00da":{"d":"26,-258r52,0r0,140v0,22,1,36,2,43v2,10,7,19,16,25v8,7,20,10,34,10v15,0,26,-3,33,-9v8,-6,12,-14,14,-22v2,-9,2,-24,2,-44r0,-143r52,0r0,136v0,31,-1,52,-4,65v-3,13,-8,24,-15,33v-8,8,-18,15,-31,21v-12,5,-29,7,-49,7v-25,0,-44,-2,-56,-8v-13,-6,-23,-13,-30,-22v-8,-9,-13,-19,-15,-29v-3,-15,-5,-36,-5,-65r0,-138xm97,-273r24,-52r55,0r-48,52r-31,0","w":259},"\u00db":{"d":"71,-272r37,-52r45,0r37,52r-40,0r-20,-27r-19,27r-40,0xm26,-258r52,0r0,140v0,22,1,36,2,43v2,10,7,19,16,25v8,7,20,10,34,10v15,0,26,-3,33,-9v8,-6,12,-14,14,-22v2,-9,2,-24,2,-44r0,-143r52,0r0,136v0,31,-1,52,-4,65v-3,13,-8,24,-15,33v-8,8,-18,15,-31,21v-12,5,-29,7,-49,7v-25,0,-44,-2,-56,-8v-13,-6,-23,-13,-30,-22v-8,-9,-13,-19,-15,-29v-3,-15,-5,-36,-5,-65r0,-138","w":259},"\u00d9":{"d":"26,-258r52,0r0,140v0,22,1,36,2,43v2,10,7,19,16,25v8,7,20,10,34,10v15,0,26,-3,33,-9v8,-6,12,-14,14,-22v2,-9,2,-24,2,-44r0,-143r52,0r0,136v0,31,-1,52,-4,65v-3,13,-8,24,-15,33v-8,8,-18,15,-31,21v-12,5,-29,7,-49,7v-25,0,-44,-2,-56,-8v-13,-6,-23,-13,-30,-22v-8,-9,-13,-19,-15,-29v-3,-15,-5,-36,-5,-65r0,-138xm156,-273r-31,0r-49,-52r56,0","w":259},"\u00b8":{"d":"7,71r0,-21v12,1,23,2,33,2v10,0,18,-2,23,-6v4,-2,6,-6,6,-10v0,-4,-2,-8,-6,-11v-3,-3,-9,-4,-16,-4v-8,0,-16,1,-23,3r4,-17v9,-3,19,-5,30,-5v14,0,25,3,33,10v8,6,11,14,11,23v0,11,-4,19,-12,25v-12,9,-28,14,-49,14v-15,0,-27,-1,-34,-3","w":119},"\u00a6":{"d":"31,-123r0,-139r39,0r0,139r-39,0xm31,76r0,-139r39,0r0,139r-39,0","w":100},"\u00d0":{"d":"26,-258r95,0v22,0,38,2,50,5v15,5,28,13,39,25v10,11,19,25,24,41v6,17,8,37,8,61v0,22,-3,41,-9,58v-6,17,-15,31,-26,42v-9,9,-22,16,-37,21v-11,3,-27,5,-46,5r-98,0r0,-112r-27,0r0,-33r27,0r0,-113xm78,-214r0,69r55,0r0,33r-55,0r0,69r39,0v17,0,30,-2,37,-5v10,-3,18,-10,23,-19v8,-13,11,-33,11,-61v0,-19,-1,-34,-4,-44v-3,-11,-8,-19,-14,-26v-6,-6,-14,-11,-24,-13v-7,-2,-22,-3,-44,-3r-24,0","w":259},"\u00f0":{"d":"58,-258r52,0v7,5,13,11,19,16r32,-16r8,18r-26,11v23,23,39,46,49,68v10,23,15,45,15,65v0,30,-9,55,-28,73v-18,18,-41,27,-69,27v-28,0,-51,-9,-69,-27v-17,-18,-26,-42,-26,-71v0,-28,9,-52,28,-70v16,-15,34,-23,54,-23v6,0,12,1,19,3v4,2,11,5,20,9v-5,-8,-9,-14,-12,-19r-14,-19r-44,21r-8,-17r39,-18v-12,-11,-25,-21,-39,-31xm66,-93v0,18,4,33,13,42v8,10,19,15,31,15v13,0,23,-5,32,-15v9,-9,13,-23,13,-40v0,-18,-4,-32,-13,-42v-9,-10,-20,-15,-32,-15v-12,0,-23,5,-31,14v-9,10,-13,23,-13,41","w":219},"\u00dd":{"d":"94,0r0,-108r-95,-150r61,0r61,102r60,-102r59,0r-94,150r0,108r-52,0xm87,-273r24,-52r55,0r-48,52r-31,0","w":240},"\u00fd":{"d":"2,-187r53,0r45,133r43,-133r51,0r-66,180r-11,32v-5,11,-9,20,-13,25v-4,6,-8,11,-13,14v-5,4,-12,7,-19,9v-7,2,-16,3,-25,3v-10,0,-19,-1,-28,-3r-5,-39v8,2,15,2,21,2v12,0,20,-3,26,-10v5,-6,10,-15,12,-25xm74,-210r24,-52r55,0r-48,52r-31,0"},"\u00de":{"d":"26,0r0,-258r52,0r0,49r32,0v31,0,52,1,62,4v15,4,27,12,37,25v10,13,15,30,15,50v0,16,-3,29,-9,40v-6,11,-13,19,-22,25v-9,7,-18,11,-27,13v-12,2,-30,3,-54,3r-34,0r0,49r-52,0xm78,-166r0,74r29,0v19,0,32,-1,37,-2v7,-2,13,-6,18,-12v5,-6,8,-14,8,-24v0,-8,-2,-14,-6,-20v-4,-6,-9,-10,-15,-12v-6,-3,-21,-4,-46,-4r-25,0","w":240},"\u00fe":{"d":"24,-258r50,0r0,93v10,-10,18,-16,27,-20v8,-4,17,-6,28,-6v21,0,40,9,55,26v15,17,23,40,23,71v0,31,-8,55,-23,72v-16,18,-34,26,-56,26v-10,0,-19,-2,-28,-6v-8,-4,-17,-11,-26,-21r0,94r-50,0r0,-329xm73,-97v0,19,4,33,10,43v8,13,20,19,34,19v11,0,20,-4,28,-14v7,-9,11,-24,11,-44v0,-21,-4,-37,-12,-46v-7,-9,-17,-14,-29,-14v-12,0,-22,4,-30,14v-8,9,-12,23,-12,42","w":219},"\u00d7":{"d":"20,-74r53,-53r-54,-53r33,-33r53,53r53,-53r32,32r-53,53r54,54r-33,33r-54,-54r-53,53","w":210},"\u00b9":{"d":"87,-128r-33,0r0,-90v-11,8,-24,13,-38,17r0,-27v11,-3,21,-8,30,-15v7,-5,11,-11,14,-18r27,0r0,133","w":119},"\u00b2":{"d":"111,-156r0,28r-107,0v2,-10,5,-19,10,-27v5,-7,16,-18,34,-32v14,-11,22,-18,24,-21v4,-4,6,-9,6,-13v0,-5,-2,-8,-5,-11v-3,-2,-7,-4,-13,-4v-6,0,-10,2,-13,5v-3,2,-5,8,-6,15r-33,-2v2,-14,6,-24,13,-30v9,-9,23,-13,40,-13v16,0,29,4,37,11v9,8,13,17,13,27v0,6,-1,12,-4,18v-3,6,-7,12,-13,18v-3,3,-11,9,-24,19v-6,6,-11,10,-14,12r55,0","w":119},"\u00b3":{"d":"7,-166r32,-4v1,7,3,11,7,15v3,3,8,4,13,4v6,0,11,-2,14,-5v4,-4,5,-8,5,-14v0,-5,-1,-9,-5,-12v-3,-4,-7,-5,-13,-5v-3,0,-9,1,-16,2r4,-25v6,0,11,-1,15,-2v3,-1,6,-3,7,-5v2,-2,2,-5,2,-7v0,-4,-1,-6,-3,-8v-3,-3,-7,-4,-11,-4v-5,0,-9,2,-12,4v-3,3,-5,7,-6,14r-31,-5v3,-12,7,-21,13,-26v9,-8,21,-12,37,-12v14,0,26,4,34,11v9,7,13,16,13,25v0,4,-1,9,-4,12v-3,6,-8,10,-13,13v8,3,14,7,18,13v4,5,6,12,6,19v0,11,-5,21,-15,29v-10,9,-23,13,-39,13v-15,0,-27,-3,-36,-11v-9,-7,-14,-17,-16,-29","w":119},"\u00bd":{"d":"87,-128r-33,0r0,-90v-11,8,-24,13,-38,17r0,-27v11,-3,21,-8,30,-15v7,-5,11,-11,14,-18r27,0r0,133xm88,9r-28,0r153,-270r27,0xm291,-20r0,27r-107,0v2,-10,5,-18,10,-26v5,-8,17,-19,34,-33v14,-10,22,-17,24,-21v4,-4,6,-9,6,-13v0,-5,-2,-8,-5,-11v-3,-2,-7,-4,-13,-4v-6,0,-10,2,-13,5v-3,3,-5,8,-6,16r-33,-3v2,-14,6,-24,13,-30v10,-9,23,-13,40,-13v16,0,29,4,37,12v9,7,13,16,13,26v0,6,-1,12,-4,18v-2,6,-7,12,-13,18v-3,3,-11,9,-24,19v-6,6,-11,10,-14,13r55,0","w":300},"\u00bc":{"d":"87,-128r-33,0r0,-90v-11,8,-24,13,-38,17r0,-27v11,-3,21,-8,30,-15v7,-5,11,-11,14,-18r27,0r0,133xm88,9r-28,0r153,-270r27,0xm247,7r0,-25r-64,0r0,-25r67,-83r28,0r0,82r19,0r0,26r-19,0r0,25r-31,0xm247,-44r0,-39r-33,39r33,0","w":300},"\u00be":{"d":"7,-166r32,-4v1,7,3,11,7,15v3,3,8,4,13,4v6,0,11,-2,14,-5v4,-4,5,-8,5,-14v0,-5,-1,-9,-5,-12v-3,-4,-7,-5,-13,-5v-3,0,-9,1,-16,2r4,-25v6,0,11,-1,15,-2v3,-1,6,-3,7,-5v2,-2,2,-5,2,-7v0,-4,-1,-6,-3,-8v-3,-3,-7,-4,-11,-4v-5,0,-9,2,-12,4v-3,3,-5,7,-6,14r-31,-5v3,-12,7,-21,13,-26v9,-8,21,-12,37,-12v14,0,26,4,34,11v9,7,13,16,13,25v0,4,-1,9,-4,12v-3,6,-8,10,-13,13v8,3,14,7,18,13v4,5,6,12,6,19v0,11,-5,21,-15,29v-10,9,-23,13,-39,13v-15,0,-27,-3,-36,-11v-9,-7,-14,-17,-16,-29xm92,9r-28,0r153,-270r28,0xm246,7r0,-25r-63,0r0,-25r67,-83r28,0r0,82r19,0r0,26r-19,0r0,25r-32,0xm246,-44r0,-39r-32,39r32,0","w":300},"\u00af":{"d":"-3,-273r0,-32r205,0r0,32r-205,0","w":198},"\u00a4":{"d":"31,-165r-23,-23r29,-32r24,24v6,-3,13,-6,19,-7v6,-2,13,-3,19,-3v7,0,14,1,20,3v6,1,13,4,19,7r23,-23r30,29r-23,24v3,6,5,12,7,18v2,7,2,13,2,20v0,7,0,13,-2,20v-2,6,-4,12,-7,18r23,24r-29,30r-24,-24v-6,3,-12,6,-19,7v-6,2,-13,3,-20,3v-6,0,-13,-1,-19,-3v-6,-1,-12,-4,-18,-7r-23,23r-30,-29r23,-24v-4,-6,-6,-12,-8,-18v-2,-7,-2,-13,-2,-20v0,-7,0,-13,2,-19v2,-7,4,-13,7,-18xm64,-128v0,10,3,18,10,25v7,7,16,11,25,11v10,0,19,-4,26,-11v7,-7,10,-15,10,-25v0,-10,-3,-18,-10,-25v-7,-7,-16,-10,-26,-10v-9,0,-18,3,-25,10v-7,7,-10,15,-10,25"}}});

﻿/*!
 *  Hyphenator 2.4.0 - client side hyphenation for webbrowsers
 *  Copyright (C) 2009  Mathias Nater, Zürich (mathias at mnn dot ch)
 *  Project and Source hosted on http://code.google.com/p/hyphenator/
 * 
 *  This JavaScript code is free software: you can redistribute
 *  it and/or modify it under the terms of the GNU Lesser
 *  General Public License (GNU LGPL) as published by the Free Software
 *  Foundation, either version 3 of the License, or (at your option)
 *  any later version.  The code is distributed WITHOUT ANY WARRANTY;
 *  without even the implied warranty of MERCHANTABILITY or FITNESS
 *  FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
 *
 *  As additional permission under GNU GPL version 3 section 7, you
 *  may distribute non-source (e.g., minimized or compacted) forms of
 *  that code without the copy of the GNU GPL normally required by
 *  section 4, provided you include this license notice and a URL
 *  through which recipients can access the Corresponding Source.
 */
 
/* 
 *  Comments are jsdoctoolkit formatted. See jsdoctoolkit.org
 */
 
/* The following comment is for JSLint: */
/*global window, ActiveXObject, unescape */
/*jslint browser: true, eqeqeq: true, immed: true, newcap: true, nomen: true, onevar: true, undef: true, white: true, indent: 4*/

/**
 * @fileOverview
 * A script that does hyphenation in (X)HTML files
 * @author Mathias Nater, <a href = "mailto:mathias@mnn.ch">mathias@mnn.ch</a>
 * @version 2.4.0
  */

/**
 * @constructor
 * @description Provides all functionality to do hyphenation, except the patterns that are loaded
 * externally.
 * @namespace Holds all methods and properties
 * @example
 * &lt;script src = "Hyphenator.js" type = "text/javascript"&gt;&lt;/script&gt;
 * &lt;script type = "text/javascript"&gt;
 *   Hyphenator.run();
 * &lt;/script&gt;
 */
var Hyphenator = (function () {


	/**
	 * @name Hyphenator-languageHint
	 * @fieldOf Hyphenator
	 * @description
	 * A string to be displayed in a prompt if the language can't be guessed.
	 * If you add hyphenation patterns change this string.
	 * Internally, this string is used to define languages that are supported by Hyphenator.
	 * @see Hyphenator-supportedLang
	 * @type string
	 * @private
	 * @see Hyphenator-autoSetMainLanguage
	 */
	var languageHint = 'cs, da, bn, de, en, es, fi, fr, gu, hi, hu, it, kn, ml, nl, or, pa, pl, pt, ru, sv, ta, te, tr, uk',

	/**
	 * @name Hyphenator-supportedLang
	 * @fieldOf Hyphenator
	 * @description
	 * A generated key-value object that stores supported languages.
	 * The languages are retrieved from {@link Hyphenator-languageHint}.
	 * @type object
	 * @private
	 * @example
	 * Check if language lang is supported:
	 * if (supportedLang[lang])
	 */
	supportedLang = (function () {
		var k, i = 0, a = languageHint.split(', '), r = {};
		while (!!(k = a[i++])) {
			r[k] = true;
		}
		return r;
	}()),

	/**
	 * @name Hyphenator-prompterStrings
	 * @fieldOf Hyphenator
	 * @description
	 * A key-value object holding the strings to be displayed if the language can't be guessed
	 * If you add hyphenation patterns change this string.
	 * @type object
	 * @private
	 * @see Hyphenator-autoSetMainLanguage
	 */	
	prompterStrings = {
		'cs': 'Jazyk této internetové stránky nebyl automaticky rozpoznán. Určete prosím její jazyk:',
		'da': 'Denne websides sprog kunne ikke bestemmes. Angiv venligst sprog:',
		'de': 'Die Sprache dieser Webseite konnte nicht automatisch bestimmt werden. Bitte Sprache angeben:',
		'en': 'The language of this website could not be determined automatically. Please indicate the main language:',
		'es': 'El idioma del sitio no pudo determinarse autom%E1ticamente. Por favor, indique el idioma principal:',
		'fi': 'Sivun kielt%E4 ei tunnistettu automaattisesti. M%E4%E4rit%E4 sivun p%E4%E4kieli:',
		'fr': 'La langue de ce site n%u2019a pas pu %EAtre d%E9termin%E9e automatiquement. Veuillez indiquer une langue, s.v.p.%A0:',
		'hu': 'A weboldal nyelvét nem sikerült automatikusan megállapítani. Kérem adja meg a nyelvet:',
		'it': 'Lingua del sito sconosciuta. Indicare una lingua, per favore:',
		'ml': 'ഈ വെ%u0D2C%u0D4D%u200Cസൈറ്റിന്റെ ഭാഷ കണ്ടുപിടിയ്ക്കാ%u0D28%u0D4D%u200D കഴിഞ്ഞില്ല. ഭാഷ ഏതാണെന്നു തിരഞ്ഞെടുക്കുക:',
		'nl': 'De taal van deze website kan niet automatisch worden bepaald. Geef de hoofdtaal op:',
		'pt': 'A língua deste site não pôde ser determinada automaticamente. Por favor indique a língua principal:',
		'ru': 'Язык этого сайта не может быть определен автоматически. Пожалуйста укажите язык:',
		'sv': 'Spr%E5ket p%E5 den h%E4r webbplatsen kunde inte avg%F6ras automatiskt. V%E4nligen ange:',
		'tr': 'Bu web sitesinin dilini otomatik olarak tespit edilememiştir. Lütfen ana dili gösterir:',
		'uk': 'Мова цього веб-сайту не може бути визначена автоматично. Будь ласка, вкажіть головну мову:'
	},
	
	/**
	 * @name Hyphenator-basePath
	 * @fieldOf Hyphenator
	 * @description
	 * A string storing the basepath from where Hyphenator.js was loaded.
	 * This is used to load the patternfiles.
	 * The basepath is determined dynamically by searching all script-tags for Hyphenator.js
	 * If the path cannot be determined http://hyphenator.googlecode.com/svn/trunk/ is used as fallback.
	 * @type string
	 * @private
	 * @see Hyphenator-loadPatterns
	 */
	basePath = (function () {
		var s = document.getElementsByTagName('script'), i = 0, p, src, t;
		while (!!(t = s[i++])) {
			if (!t.src) {
				continue;
			}
			src = t.src;
			p = src.indexOf('Hyphenator.js');
			if (p !== -1) {
				return src.substring(0, p);
			}
		}
		return 'http://hyphenator.googlecode.com/svn/trunk/';
	}()),

	/**
	 * @name Hyphenator-isLocal
	 * @fieldOf Hyphenator
	 * @description
	 * isLocal is true, if Hyphenator is loaded from the same domain, as the webpage, but false, if
	 * it's loaded from an external source (i.e. directly from google.code)
	 */
	isLocal = (function () {
		var re = false;
		if (window.location.href.indexOf(basePath) !== -1) {
			re = true;
		}
		return re;
	}()),
	
	/**
	 * @name Hyphenator-documentLoaded
	 * @fieldOf Hyphenator
	 * @description
	 * documentLoaded is true, when the DOM has been loaded. This is set by runOnContentLoaded
	 */
	documentLoaded = false,
	
	/**
	 * @name Hyphenator-dontHyphenate
	 * @fieldOf Hyphenator
	 * @description
	 * A key-value object containing all html-tags whose content should not be hyphenated
	 * @type object
	 * @private
	 * @see Hyphenator-hyphenateElement
	 */
	dontHyphenate = {'script': true, 'code': true, 'pre': true, 'img': true, 'br': true, 'samp': true, 'kbd': true, 'var': true, 'abbr': true, 'acronym': true, 'sub': true, 'sup': true, 'button': true, 'option': true, 'label': true, 'textarea': true},

	/**
	 * @name Hyphenator-enableCache
	 * @fieldOf Hyphenator
	 * @description
	 * A variable to set if caching is enabled or not
	 * @type boolean
	 * @default true
	 * @private
	 * @see Hyphenator.config
	 * @see hyphenateWord
	 */
	enableCache = true,
	
	/**
	 * @name Hyphenator-enableRemoteLoading
	 * @fieldOf Hyphenator
	 * @description
	 * A variable to set if pattern files should be loaded remotely or not
	 * @type boolean
	 * @default true
	 * @private
	 * @see Hyphenator.config
	 * @see Hyphenator-loadPatterns
	 */
	enableRemoteLoading = true,
	
	/**
	 * @name Hyphenator-displayToggleBox
	 * @fieldOf Hyphenator
	 * @description
	 * A variable to set if the togglebox should be displayed or not
	 * @type boolean
	 * @default false
	 * @private
	 * @see Hyphenator.config
	 * @see Hyphenator-toggleBox
	 */
	displayToggleBox = false,
	
	/**
	 * @name Hyphenator-hyphenateClass
	 * @fieldOf Hyphenator
	 * @description
	 * A string containing the css-class-name for the hyphenate class
	 * @type string
	 * @default 'hyphenate'
	 * @private
	 * @example
	 * &lt;p class = "hyphenate"&gt;Text&lt;/p&gt;
	 * @see Hyphenator.config
	 */
	hyphenateClass = 'hyphenate',

	/**
	 * @name Hyphenator-dontHyphenateClass
	 * @fieldOf Hyphenator
	 * @description
	 * A string containing the css-class-name for elements that should not be hyphenated
	 * @type string
	 * @default 'donthyphenate'
	 * @private
	 * @example
	 * &lt;p class = "donthyphenate"&gt;Text&lt;/p&gt;
	 * @see Hyphenator.config
	 */
	dontHyphenateClass = 'donthyphenate',
	
	/**
	 * @name Hyphenator-min
	 * @fieldOf Hyphenator
	 * @description
	 * A number wich indicates the minimal length of words to hyphenate.
	 * @type number
	 * @default 6
	 * @private
	 * @see Hyphenator.config
	 */	
	min = 6,
	
	/**
	 * @name Hyphenator-isBookmarklet
	 * @fieldOf Hyphenator
	 * @description
	 * Indicates if Hyphanetor runs as bookmarklet or not.
	 * @type boolean
	 * @default false
	 * @private
	 */	
	isBookmarklet = (function () {
		var loc = null, re = false, jsArray = document.getElementsByTagName('script'), i, l;
		for (i = 0, l = jsArray.length; i < l; i++) {
			if (!!jsArray[i].getAttribute('src')) {
				loc = jsArray[i].getAttribute('src');
			}
			if (!loc) {
				continue;
			} else if (loc.indexOf('Hyphenator.js?bm=true') !== -1) {
				re = true;
			}
		}
		return re;
	}()),

	/**
	 * @name Hyphenator-mainLanguage
	 * @fieldOf Hyphenator
	 * @description
	 * The general language of the document
	 * @type number
	 * @private
	 * @see Hyphenator-autoSetMainLanguage
	 */	
	mainLanguage = null,

	/**
	 * @name Hyphenator-elements
	 * @fieldOf Hyphenator
	 * @description
	 * An array holding all elements that have to be hyphenated. This var is filled by
	 * {@link Hyphenator-gatherDocumentInfos}
	 * @type array
	 * @private
	 */	
	elements = [],
	
	/**
	 * @name Hyphenator-exceptions
	 * @fieldOf Hyphenator
	 * @description
	 * An object containing exceptions as comma separated strings for each language.
	 * When the language-objects are loaded, their exceptions are processed, copied here and then deleted.
	 * @see Hyphenator-prepareLanguagesObj
	 * @type object
	 * @private
	 */	
	exceptions = {},

	/**
	 * @name Hyphenator-docLanguages
	 * @fieldOf Hyphenator
	 * @description
	 * An object holding all languages used in the document. This is filled by
	 * {@link Hyphenator-gatherDocumentInfos}
	 * @type object
	 * @private
	 */	
	docLanguages = {},


	/**
	 * @name Hyphenator-state
	 * @fieldOf Hyphenator
	 * @description
	 * A number that inidcates the current state of the script
	 * 0: not initialized
	 * 1: loading patterns
	 * 2: ready
	 * 3: hyphenation done
	 * 4: hyphenation removed
	 * @type number
	 * @private
	 */	
	state = 0,

	/**
	 * @name Hyphenator-url
	 * @fieldOf Hyphenator
	 * @description
	 * A string containing a RegularExpression to match URL's
	 * @type string
	 * @private
	 */	
	url = '(\\w*:\/\/)?((\\w*:)?(\\w*)@)?((([\\d]{1,3}\\.){3}([\\d]{1,3}))|(([\\w]*\\.)+([\\w]{2,4})))(:\\d*)?(\/[\\w#!:\\.?\\+=&%@!\\-]*)*',

	/**
	 * @name Hyphenator-mail
	 * @fieldOf Hyphenator
	 * @description
	 * A string containing a RegularExpression to match mail-adresses
	 * @type string
	 * @private
	 */	
	mail = '[\\w-\\.]+@[\\w\\.]+',

	/**
	 * @name Hyphenator-urlRE
	 * @fieldOf Hyphenator
	 * @description
	 * A RegularExpressions-Object for url- and mail adress matching
	 * @type object
	 * @private
	 */		
	urlOrMailRE = new RegExp('(' + url + ')|(' + mail + ')', 'i'),

	/**
	 * @name Hyphenator-zeroWidthSpace
	 * @fieldOf Hyphenator
	 * @description
	 * A string that holds a char.
	 * Depending on the browser, this is the zero with space or an empty string.
	 * The zeroWidthSpace is inserted after a '-' in compound words, so even FF and IE
	 * will break after a '-' if necessary.
	 * zeroWidthSpace is also used to break URLs
	 * @type string
	 * @private
	 */		
	zeroWidthSpace = (function () {
		var zws, ua = navigator.userAgent.toLowerCase();
		if (ua.indexOf('msie 6') === -1) {
			zws = String.fromCharCode(8203); //Unicode zero width space
		} else {
			zws = ''; //IE6 doesn't support zws
		}
		return zws;
	}()),
	
	/**
	 * @name Hyphenator-onHyphenationDone
	 * @fieldOf Hyphenator
	 * @description
	 * A method to be called, when the last element has been hyphenated or the hyphenation has been
	 * removed from the last element.
	 * @see Hyphenator.config
	 * @type function
	 * @private
	 */		
	onHyphenationDone = function () {},

	/**
	 * @name Hyphenator-onError
	 * @fieldOf Hyphenator
	 * @description
	 * A function that can be called upon an error.
	 * @see Hyphenator.config
	 * @type function
	 * @private
	 */		
	onError = function (e) {
		alert("Hyphenator.js says:\n\nAn Error ocurred:\n" + e.message);
	},

	/**
	 * @name Hyphenator-selectorFunction
	 * @fieldOf Hyphenator
	 * @description
	 * A function that has to return a HTMLNodeList of Elements to be hyphenated.
	 * By default it uses the classname ('hyphenate') to select the elements.
	 * @see Hyphenator.config
	 * @type function
	 * @private
	 */		
	selectorFunction = function () {
		var tmp, el = [], i, l;
		if (document.getElementsByClassName) {
			el = document.getElementsByClassName(hyphenateClass);
		} else {
			tmp = document.getElementsByTagName('*');
			l = tmp.length;
			for (i = 0; i < l; i++)
			{
				if (tmp[i].className.indexOf(hyphenateClass) !== -1 && tmp[i].className.indexOf(dontHyphenateClass) === -1) {
					el.push(tmp[i]);
				}
			}
		}
		return el;
	},

	/**
	 * @name Hyphenator-intermediateState
	 * @fieldOf Hyphenator
	 * @description
	 * The value of style.visibility of the text while it is hyphenated.
	 * @see Hyphenator.config
	 * @type string
	 * @private
	 */		
	intermediateState = 'hidden',
	
	/**
	 * @name Hyphenator-hyphen
	 * @fieldOf Hyphenator
	 * @description
	 * A string containing the character for in-word-hyphenation
	 * @type string
	 * @default the soft hyphen
	 * @private
	 * @see Hyphenator.config
	 */
	hyphen = String.fromCharCode(173),
	
	/**
	 * @name Hyphenator-urlhyphen
	 * @fieldOf Hyphenator
	 * @description
	 * A string containing the character for url/mail-hyphenation
	 * @type string
	 * @default the zero width space
	 * @private
	 * @see Hyphenator.config
	 * @see Hyphenator-zeroWidthSpace
	 */
	urlhyphen = zeroWidthSpace,
	
	/**
	 * @name Hyphenator-Expando
	 * @methodOf Hyphenator
	 * @description
	 * This custom object stores data for elements: storing data directly in elements
	 * (DomElement.customData = foobar;) isn't a good idea. It would lead to conflicts
	 * in form elements, when the form has a child with name="foobar". Therefore, this
	 * solution follows the approach of jQuery: the data is stored in an object and
	 * referenced by a unique attribute of the element. The attribute has a name that 
	 * is built by the prefix "HyphenatorExpando_" and a random number, so if the very
	 * very rare case occurs, that there's already an attribute with the same name, a
	 * simple reload is enough to make it function.
	 * @private
	 */		
	Expando = (function () {
		var container = {},
			name = "HyphenatorExpando_" + Math.random(),
			uuid = 0;
		return {
			getDataForElem : function (elem) {
				return container[elem[name]];
			},
			setDataForElem : function (elem, data) {
				var id;
				if (elem[name] && elem[name] !== '') {
					id = elem[name];
				} else {
					id = uuid++;
					elem[name] = id;
				}
				container[id] = data;
			},
			appendDataForElem : function (elem, data) {
				var k;
				for (k in data) {
					if (data.hasOwnProperty(k)) {
						container[elem[name]][k] = data[k];
					}
				}
			},
			delDataOfElem : function (elem) {
				delete container[elem[name]];
			}
		};
	}()),
		
	/*
	 * runOnContentLoaded is based od jQuery.bindReady()
	 * see
	 * 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
	 */
	/**
	 * @name Hyphenator-runOnContentLoaded
	 * @methodOf Hyphenator
	 * @description
	 * A crossbrowser solution for the DOMContentLoaded-Event based on jQuery
	 * <a href = "http://jquery.com/</a>
	 * @param object the window-object
	 * @param function-object the function to call onDOMContentLoaded
	 * @private
	 */
	runOnContentLoaded = function (w, f) {
		var oldonload = w.onload;
		if (documentLoaded) {
			f();
			return;
		}
		function init() {
			if (!documentLoaded) {
				documentLoaded = true;
				f();
			}
		}
	
		// Mozilla, Opera and webkit nightlies currently support this event
		if (document.addEventListener) {
			// Use the handy event callback
			document.addEventListener("DOMContentLoaded", function () {
				document.removeEventListener("DOMContentLoaded", arguments.callee, false);
				init();
			}, false);
	
		// If IE event model is used
		} else if (document.attachEvent) {
			// ensure firing before onload,
			// maybe late but safe also for iframes
			document.attachEvent("onreadystatechange", function () {
				if (document.readyState === "complete") {
					document.detachEvent("onreadystatechange", arguments.callee);
					init();
				}
			});
	
			// If IE and not an iframe
			// continually check to see if the document is ready
			if (document.documentElement.doScroll && window == window.top) {
				(function () {
					if (documentLoaded) {
						return;
					}
					try {
						// If IE is used, use the trick by Diego Perini
						// http://javascript.nwbox.com/IEContentLoaded/
						document.documentElement.doScroll("left");
					} catch (error) {
						setTimeout(arguments.callee, 0);
						return;
					}
					// and execute any waiting functions
					f();
				}());
			}		
		}
		// A fallback to window.onload, that will always work
		w.onload = function (e) {
			init();
			if (typeof oldonload === 'function') {
				oldonload();
			}
		};	
	},



	/**
	 * @name Hyphenator-getLang
	 * @methodOf Hyphenator
	 * @description
	 * Gets the language of an element. If no language is set, it may use the {@link Hyphenator-mainLanguage}.
	 * @param object The first parameter is an DOM-Element-Object
	 * @param boolean The second parameter is a boolean to tell if the function should return the {@link Hyphenator-mainLanguage}
	 * if there's no language found for the element.
	 * @private
	 */
	getLang = function (el, fallback) {
		if (!!el.getAttribute('lang')) {
			return el.getAttribute('lang').substring(0, 2).toLowerCase();
		}
		// The following doesn't work in IE due to a bug when getAttribute('xml:lang') in a table
		/*if (!!el.getAttribute('xml:lang')) {
			return el.getAttribute('xml:lang').substring(0, 2);
		}*/
		//instead, we have to do this (thanks to borgzor):
		try {
			if (!!el.getAttribute('xml:lang')) {
				return el.getAttribute('xml:lang').substring(0, 2).toLowerCase();
			}
		} catch (ex) {}
		if (el.tagName !== 'HTML') {
			return getLang(el.parentNode, true);
		}
		if (fallback) {
			return mainLanguage;
		}
		return null;
	},
	
	/**
	 * @name Hyphenator-autoSetMainLanguage
	 * @methodOf Hyphenator
	 * @description
	 * Retrieves the language of the document from the DOM.
	 * The function looks in the following places:
	 * <ul>
	 * <li>lang-attribute in the html-tag</li>
	 * <li>&lt;meta http-equiv = "content-language" content = "xy" /&gt;</li>
	 * <li>&lt;meta name = "DC.Language" content = "xy" /&gt;</li>
	 * <li>&lt;meta name = "language" content = "xy" /&gt;</li>
	 * </li>
	 * If nothing can be found a prompt using {@link Hyphenator-languageHint} and {@link Hyphenator-prompterStrings} is displayed.
	 * If the retrieved language is in the object {@link Hyphenator-supportedLang} it is copied to {@link Hyphenator-mainLanguage}
	 * @private
	 */		
	autoSetMainLanguage = function () {
		var el = document.getElementsByTagName('html')[0],
			m = document.getElementsByTagName('meta'),
			i, text, lang, e, ul;
		mainLanguage = getLang(el);
		if (!mainLanguage) {
			for (i = 0; i < m.length; i++) {
				//<meta http-equiv = "content-language" content="xy">	
				if (!!m[i].getAttribute('http-equiv') && (m[i].getAttribute('http-equiv') === 'content-language')) {
					mainLanguage = m[i].getAttribute('content').substring(0, 2).toLowerCase();
				}
				//<meta name = "DC.Language" content="xy">
				if (!!m[i].getAttribute('name') && (m[i].getAttribute('name') === 'DC.language')) {
					mainLanguage = m[i].getAttribute('content').substring(0, 2).toLowerCase();
				}			
				//<meta name = "language" content = "xy">
				if (!!m[i].getAttribute('name') && (m[i].getAttribute('name') === 'language')) {
					mainLanguage = m[i].getAttribute('content').substring(0, 2).toLowerCase();
				}
			}
		}
		if (!mainLanguage) {
			text = '';
			ul = navigator.language ? navigator.language : navigator.userLanguage;
			ul = ul.substring(0, 2);
			if (prompterStrings.hasOwnProperty(ul)) {
				text = prompterStrings[ul];
			} else {
				text = prompterStrings.en;
			}
			text += ' (ISO 639-1)\n\n' + languageHint;
			lang = window.prompt(unescape(text), ul).toLowerCase();
			if (supportedLang[lang]) {
				mainLanguage = lang;
			} else {
				e = new Error('The language "' + lang + '" is not yet supported.');
				throw e;
			}
		}
	},
    
	/**
	 * @name Hyphenator-gatherDocumentInfos
	 * @methodOf Hyphenator
	 * @description
	 * This method runs through the DOM and executes the process()-function on:
	 * - every node returned by the {@link Hyphenator-selectorFunction}.
	 * The process()-function copies the element to the elements-variable, sets its visibility
	 * to intermediateState, retrieves its language and recursivly descends the DOM-tree until
	 * the child-Nodes aren't of type 1
	 * @private
	 */		
	gatherDocumentInfos = function () {
		var elToProcess, tmp, i = 0,
		process = function (el, hide, lang) {
			var n, i = 0, hyphenatorSettings = {};
			if (hide && intermediateState === 'hidden') {
				if (!!el.getAttribute('style')) {
					hyphenatorSettings.hasOwnStyle = true;
				} else {
					hyphenatorSettings.hasOwnStyle = false;					
				}
				hyphenatorSettings.isHidden = true;
				el.style.visibility = 'hidden';
			}
			if (el.lang && typeof(el.lang) === 'string') {
				hyphenatorSettings.language = el.lang.toLowerCase(); //copy attribute-lang to internal lang
			} else if (lang) {
				hyphenatorSettings.language = lang.toLowerCase();
			} else {
				hyphenatorSettings.language = getLang(el, true);
			}
			lang = hyphenatorSettings.language;
			if (supportedLang[lang]) {
				docLanguages[lang] = true;
			} else {
				onError(new Error('Language ' + lang + ' is not yet supported.'));
			}
			Expando.setDataForElem(el, hyphenatorSettings);
			elements.push(el);
			while (!!(n = el.childNodes[i++])) {
				if (n.nodeType === 1 && !dontHyphenate[n.nodeName.toLowerCase()] &&
					n.className.indexOf(dontHyphenateClass) === -1 && !(n in elToProcess)) {
					process(n, false, lang);
				}
			}
		};
		if (Hyphenator.isBookmarklet()) {
			elToProcess = document.getElementsByTagName('body')[0];
			process(elToProcess, false, mainLanguage);
		} else {
			elToProcess = selectorFunction();
			while (!!(tmp = elToProcess[i++]))
			{
				process(tmp, true);
			}			
		}
		if (!Hyphenator.languages.hasOwnProperty(mainLanguage)) {
			docLanguages[mainLanguage] = true;
		} else if (!Hyphenator.languages[mainLanguage].prepared) {
			docLanguages[mainLanguage] = true;
		}
		if (elements.length > 0) {
			Expando.appendDataForElem(elements[elements.length - 1], {isLast : true});
		}
	},
		 
	/**
	 * @name Hyphenator-convertPatterns
	 * @methodOf Hyphenator
	 * @description
	 * Converts the patterns from string '_a6' to object '_a':'_a6'.
	 * The result is stored in the {@link Hyphenator-patterns}-object.
	 * @private
	 * @param string the language whose patterns shall be converted
	 */		
	convertPatterns = function (lang) {
		var plen, anfang, pats, pat, key, tmp = {};
		pats = Hyphenator.languages[lang].patterns;
		for (plen in pats) {
			if (pats.hasOwnProperty(plen)) {
				plen = parseInt(plen, 10);
				anfang = 0;
				while (!!(pat = pats[plen].substr(anfang, plen))) {
					key = pat.replace(/\d/g, '');
					tmp[key] = pat;
					anfang += plen;
				}
			}
		}
		Hyphenator.languages[lang].patterns = tmp;
		Hyphenator.languages[lang].patternsConverted = true;
	},

	/**
	 * @name Hyphenator-convertExceptionsToObject
	 * @methodOf Hyphenator
	 * @description
	 * Converts a list of comma seprated exceptions to an object:
	 * 'Fortran,Hy-phen-a-tion' -> {'Fortran':'Fortran','Hyphenation':'Hy-phen-a-tion'}
	 * @private
	 * @param string a comma separated string of exceptions (without spaces)
	 */		
	convertExceptionsToObject = function (exc) {
		var w = exc.split(', '),
			r = {},
			i, l, key;
		for (i = 0, l = w.length; i < l; i++) {
			key = w[i].replace(/-/g, '');
			if (!r.hasOwnProperty(key)) {
				r[key] = w[i];
			}
		}
		return r;
	},
	
	/**
	 * @name Hyphenator-loadPatterns
	 * @methodOf Hyphenator
	 * @description
	 * Adds a &lt;script&gt;-Tag to the DOM to load an externeal .js-file containing patterns and settings for the given language.
	 * If the iven language is not in the {@link Hyphenator-supportedLang}-Object it returns.
	 * One may ask why we are not using AJAX to load the patterns. The XMLHttpRequest-Object 
	 * has a same-origin-policy. This makes the isBookmarklet-functionality impossible.
	 * @param string The language to load the patterns for
	 * @private
	 * @see Hyphenator-basePath
	 */
	loadPatterns = function (lang) {
		var url, xhr, head, script;
		if (supportedLang[lang] && !Hyphenator.languages[lang]) {
	        url = basePath + 'patterns/' + lang + '.js';
		} else {
			return;
		}
		if (isLocal && !isBookmarklet) {
			//check if 'url' is available:
			xhr = null;
			if (typeof XMLHttpRequest !== 'undefined') {
				xhr = new XMLHttpRequest();
			}
			if (!xhr) {
				try {
					xhr  = new ActiveXObject("Msxml2.XMLHTTP");
				} catch (e) {
					xhr  = null;
				}
			}
			if (xhr) {
				xhr.open('HEAD', url, false);
				xhr.setRequestHeader('Cache-Control', 'no-cache');
				xhr.send(null);
				if (xhr.status === 404) {
					onError(new Error('Could not load\n' + url));
					delete docLanguages[lang];
					return;
				}
			}
		}
		if (document.createElement) {
			head = document.getElementsByTagName('head').item(0);
			script = document.createElement('script');
			script.src = url;
			script.type = 'text/javascript';
			head.appendChild(script);
		}
	},
	
	/**
	 * @name Hyphenator-prepareLanguagesObj
	 * @methodOf Hyphenator
	 * @description
	 * Adds a cache to each language and converts the exceptions-list to an object.
	 * @private
	 * @param string the language ob the lang-obj
	 */		
	prepareLanguagesObj = function (lang) {
		var lo = Hyphenator.languages[lang], wrd;
		if (!lo.prepared) {	
			if (enableCache) {
				lo.cache = {};
			}
			if (lo.hasOwnProperty('exceptions')) {
				Hyphenator.addExceptions(lang, lo.exceptions);
				delete lo.exceptions;
			}
			if (exceptions.hasOwnProperty('global')) {
				if (exceptions.hasOwnProperty(lang)) {
					exceptions[lang] += ', ' + exceptions.global;
				} else {
					exceptions[lang] = exceptions.global;
				}
			}
			if (exceptions.hasOwnProperty(lang)) {
				lo.exceptions = convertExceptionsToObject(exceptions[lang]);
				delete exceptions[lang];
			} else {
				lo.exceptions = {};
			}
			convertPatterns(lang);
			wrd = '[\\w' + lo.specialChars + '@' + String.fromCharCode(173) + '-]{' + min + ',}';
			lo.genRegExp = new RegExp('(' + url + ')|(' + mail + ')|(' + wrd + ')', 'gi');
			lo.prepared = true;
		}
	},
	
	/**
	 * @name Hyphenator-prepare
	 * @methodOf Hyphenator
	 * @description
	 * This funtion prepares the Hyphenator-Object: If RemoteLoading is turned off, it assumes
	 * that the patternfiles are loaded, all conversions are made and the callback is called.
	 * If RemoteLoading is on (default), it loads the pattern files and waits until they are loaded,
	 * by repeatedly checking Hyphenator.languages. If a patterfile is loaded the patterns are
	 * converted to their object style and the lang-object extended.
	 * Finally the callback is called.
	 * @param function-object callback to call, when all patterns are loaded
	 * @private
	 */
	prepare = function (callback) {
		var lang, docLangEmpty = true, interval;
		if (!enableRemoteLoading) {
			for (lang in Hyphenator.languages) {
				if (Hyphenator.languages.hasOwnProperty(lang)) {
					prepareLanguagesObj(lang);
				}
			}
			state = 2;
			callback();
			return;
		}
		// get all languages that are used and preload the patterns
		state = 1;
		for (lang in docLanguages) {
			if (docLanguages.hasOwnProperty(lang)) {
				loadPatterns(lang);
				docLangEmpty = false;
			}
		}
		if (docLangEmpty) {
			state = 2;
			callback();
			return;
		}
		// wait until they are loaded
		interval = window.setInterval(function () {
			var finishedLoading = false, lang;
			for (lang in docLanguages) {
				if (docLanguages.hasOwnProperty(lang)) {
					if (!Hyphenator.languages[lang]) {
						finishedLoading = false;
						break;
					} else {
						finishedLoading = true;
						delete docLanguages[lang];
						//do conversion while other patterns are loading:
						prepareLanguagesObj(lang);		
					}
				}
			}
			if (finishedLoading) {
				window.clearInterval(interval);
				state = 2;
				callback();
			}
		}, 100);
	},

	/**
	 * @name Hyphenator-switchToggleBox
	 * @methodOf Hyphenator
	 * @description
	 * Creates or hides the toggleBox: a small button to turn off/on hyphenation on a page.
	 * @param boolean true when hyphenation is on, false when it's off
	 * @see Hyphenator.config
	 * @private
	 */		
	toggleBox = function (s) {
		var myBox, bdy, myIdAttribute, myTextNode, myClassAttribute;
		if (!!(myBox = document.getElementById('HyphenatorToggleBox'))) {
			if (s) {
				myBox.firstChild.data = 'Hy-phe-na-ti-on';
			} else {
				myBox.firstChild.data = 'Hyphenation';
			}
		} else {
			bdy = document.getElementsByTagName('body')[0];
			myBox = document.createElement('div');
			myIdAttribute = document.createAttribute('id');
			myIdAttribute.nodeValue = 'HyphenatorToggleBox';
			myClassAttribute = document.createAttribute('class');
			myClassAttribute.nodeValue = dontHyphenateClass;
			myTextNode = document.createTextNode('Hy-phe-na-ti-on');
			myBox.appendChild(myTextNode);
			myBox.setAttributeNode(myIdAttribute);
			myBox.setAttributeNode(myClassAttribute);
			myBox.onclick =  Hyphenator.toggleHyphenation;
			myBox.style.position = 'absolute';
			myBox.style.top = '0px';
			myBox.style.right = '0px';
			myBox.style.margin = '0';
			myBox.style.backgroundColor = '#AAAAAA';
			myBox.style.color = '#FFFFFF';
			myBox.style.font = '6pt Arial';
			myBox.style.letterSpacing = '0.2em';
			myBox.style.padding = '3px';
			myBox.style.cursor = 'pointer';
			myBox.style.WebkitBorderBottomLeftRadius = '4px';
			myBox.style.MozBorderRadiusBottomleft = '4px';
			bdy.appendChild(myBox);
		}
	},

	/**
	 * @name Hyphenator-hyphenateWord
	 * @methodOf Hyphenator
	 * @description
	 * This function is the heart of Hyphenator.js. It returns a hyphenated word.
	 *
	 * If there's already a {@link Hyphenator-hypen} in the word, the word is returned as it is.
	 * If the word is in the exceptions list or in the cache, it is retrieved from it.
	 * If there's a '-' put a zeroWidthSpace after the '-' and hyphenate the parts.
	 * @param string The language of the word
	 * @param string The word
	 * @returns string The hyphenated word
	 * @public
	 */	
	hyphenateWord = function (lang, word) {
		var lo = Hyphenator.languages[lang],
			parts, i, l, w, wl, s, hypos, p, maxwins, win, pat = false, patk, patl, c, digits, z, numb3rs, n, inserted, hyphenatedword;
		if (word === '') {
			return '';
		}
		if (word.indexOf(hyphen) !== -1) {
			//word already contains shy; -> leave at it is!
			return word;
		}
		if (enableCache && lo.cache.hasOwnProperty(word)) { //the word is in the cache
			return lo.cache[word];
		}
		if (lo.exceptions.hasOwnProperty(word)) { //the word is in the exceptions list
			return lo.exceptions[word].replace(/-/g, hyphen);
		}
		if (word.indexOf('-') !== -1) {
			//word contains '-' -> hyphenate the parts separated with '-'
			parts = word.split('-');
			for (i = 0, l = parts.length; i < l; i++) {
				parts[i] = hyphenateWord(lang, parts[i]);
			}
			return parts.join('-');
		}
		//finally the core hyphenation algorithm
		w = '_' + word + '_';
		wl = w.length;
		s = w.split('');
		w = w.toLowerCase();
		hypos = [];
		numb3rs = {'0': true, '1': true, '2': true, '3': true, '4': true, '5': true, '6': true, '7': true, '8': true, '9': true}; //check for member is faster then isFinite()
		n = wl - lo.shortestPattern;
		for (p = 0; p <= n; p++) {
			maxwins = Math.min((wl - p), lo.longestPattern);
			for (win = lo.shortestPattern; win <= maxwins; win++) {
				if (lo.patterns.hasOwnProperty(patk = w.substr(p, win))) {
					pat = lo.patterns[patk];
				} else {
					continue;
				}
				digits = 1;
				patl = pat.length;
				for (i = 0; i < patl; i++) {
					c = pat.charAt(i);
					if (numb3rs[c]) {
						if (i === 0) {
							z = p - 1;
							if (!hypos[z] || hypos[z] < c) {
								hypos[z] = c;
							}
						} else {
							z = p + i - digits;
							if (!hypos[z] || hypos[z] < c) {
								hypos[z] = c;
							}
						}
						digits++;								
					}
				}
			}
		}
		inserted = 0;
		for (i = lo.leftmin; i <= (word.length - lo.rightmin); i++) {
			if (!!(hypos[i] & 1)) {
				s.splice(i + inserted + 1, 0, hyphen);
				inserted++;
			}
		}
		hyphenatedword = s.slice(1, -1).join('');
		if (enableCache) {
			lo.cache[word] = hyphenatedword;
		}
		return hyphenatedword;
	},
		
	/**
	 * @name Hyphenator-hyphenateURL
	 * @methodOf Hyphenator
	 * @description
	 * Puts {@link Hyphenator-urlhyphen} after each no-alphanumeric char that my be in a URL.
	 * @param string URL to hyphenate
	 * @returns string the hyphenated URL
	 * @public
	 */
	hyphenateURL = function (url) {
		return url.replace(/([:\/\.\?#&_,;!@]+)/gi, '$&' + urlhyphen);
	},

	/**
	 * @name Hyphenator-hyphenateElement
	 * @methodOf Hyphenator
	 * @description
	 * Takes the content of the given element and - if there's text - replaces the words
	 * by hyphenated words. If there's another element, the function is called recursively.
	 * When all words are hyphenated, the visibility of the element is set to 'visible'.
	 * @param object The element to hyphenate
	 * @param string The language used in this element
	 * @public
	 */
	hyphenateElement = function (el) {
		var hyphenatorSettings = Expando.getDataForElem(el),
			lang = hyphenatorSettings.language, hyphenate, n, i;
		if (Hyphenator.languages.hasOwnProperty(lang)) {
			hyphenate = function (word) {
				if (urlOrMailRE.test(word)) {
					return hyphenateURL(word);
				} else {
					return hyphenateWord(lang, word);
				}
			};
			i = 0;
			while (!!(n = el.childNodes[i++])) {
				if (n.nodeType === 3 && n.data.length >= min) { //type 3 = #text -> hyphenate!
					n.data = n.data.replace(Hyphenator.languages[lang].genRegExp, hyphenate);
				}
			}
		}
		if (hyphenatorSettings.isHidden && intermediateState === 'hidden') {
			el.style.visibility = 'visible';
			if (!hyphenatorSettings.hasOwnStyle) {
				el.setAttribute('style', ''); // without this, removeAttribute doesn't work in Safari (thanks to molily)
				el.removeAttribute('style');
			} else {
				if (el.style.removeProperty) {
					el.style.removeProperty('visibility');
				} else if (el.style.removeAttribute) { // IE
					el.style.removeAttribute('visibility');
				}  
			}
		}
		if (hyphenatorSettings.isLast) {
			state = 3;
			onHyphenationDone();
		}
	},
	
	/**
	 * @name Hyphenator-removeHyphenationFromElement
	 * @methodOf Hyphenator
	 * @description
	 * Removes all hyphens from the element. If there are other elements, the function is
	 * called recursively.
	 * Removing hyphens is usefull if you like to copy text. Some browsers are buggy when the copy hyphenated texts.
	 * @param object The element where to remove hyphenation.
	 * @public
	 */
	removeHyphenationFromElement = function (el) {
		var h, i = 0, n;
		switch (hyphen) {
		case '|':
			h = '\\|';
			break;
		case '+':
			h = '\\+';
			break;
		case '*':
			h = '\\*';
			break;
		default:
			h = hyphen;
		}
		while (!!(n = el.childNodes[i++])) {
			if (n.nodeType === 3) {
				n.data = n.data.replace(new RegExp(h, 'g'), '');
				n.data = n.data.replace(new RegExp(zeroWidthSpace, 'g'), '');
			} else if (n.nodeType === 1) {
				removeHyphenationFromElement(n);
			}
		}
	},

	/**
	 * @name Hyphenator-hyphenateDocument
	 * @methodOf Hyphenator
	 * @description
	 * Calls hyphenateElement() for all members of elements. This is done with a setTimout
	 * to prevent a "long running Script"-alert when hyphenating large pages.
	 * Therefore a tricky bind()-function was necessary.
	 * @public
	 */
	hyphenateDocument = function () {
		function bind(fun, arg) {
			return function () {
				return fun(arg);
			};
		}
		var i = 0, el;
		while (!!(el = elements[i++])) {
			window.setTimeout(bind(hyphenateElement, el), 0);

		}
	},

	/**
	 * @name Hyphenator-removeHyphenationFromDocument
	 * @methodOf Hyphenator
	 * @description
	 * Does what it says ;-)
	 * @public
	 */
	removeHyphenationFromDocument = function () {
		var i = 0, el;
		while (!!(el = elements[i++])) {
			removeHyphenationFromElement(el);
		}
		state = 4;
	};

	return {
		
		/**
		 * @name Hyphenator.version
		 * @memberOf Hyphenator
		 * @description
		 * String containing the actual version of Hyphenator.js
		 * [major release].[minor releas].[bugfix release]
		 * major release: new API, new Features, big changes
		 * minor release: new languages, improvements
		 * @public
         */		
		version: '2.4.0',
		
		/**
		 * @name Hyphenator.languages
		 * @memberOf Hyphenator
		 * @description
		 * Objects that holds key-value pairs, where key is the language and the value is the
		 * language-object loaded from (and set by) the pattern file.
		 * The language object holds the following members:
		 * <table>
		 * <tr><th>key</th><th>desc></th></tr>
		 * <tr><td>leftmin</td><td>The minimum of chars to remain on the old line</td></tr>
		 * <tr><td>rightmin</td><td>The minimum of chars to go on the new line</td></tr>
		 * <tr><td>shortestPattern</td><td>The shortes pattern (numbers don't count!)</td></tr>
		 * <tr><td>longestPattern</td><td>The longest pattern (numbers don't count!)</td></tr>
		 * <tr><td>specialChars</td><td>Non-ASCII chars in the alphabet.</td></tr>
		 * <tr><td>patterns</td><td>the patterns</td></tr>
		 * </table>
		 * And optionally (or after prepareLanguagesObj() has been called):
		 * <table>
		 * <tr><td>exceptions</td><td>Excpetions for the secified language</td></tr>
		 * </table>
		 * @public
         */		
		languages: {},
		

		/**
		 * @name Hyphenator.config
		 * @methodOf Hyphenator
		 * @description
		 * Config function that takes an object as an argument. The object contains key-value-pairs
		 * containig Hyphenator-settings. This is a shortcut for calling Hyphenator.set...-Methods.
		 * @param object <table>
		 * <tr><th>key</th><th>values</th><th>default</th></tr>
		 * <tr><td>classname</td><td>string</td><td>'hyphenate'</td></tr>
		 * <tr><td>minwordlength</td><td>integer</td><td>6</td></tr>
		 * <tr><td>hyphenchar</td><td>string</td><td>'&amp;shy;'</td></tr>
		 * <tr><td>urlhyphenchar</td><td>string</td><td>'zero with space'</td></tr>
		 * <tr><td>togglebox</td><td>function</td><td>see code</td></tr>
		 * <tr><td>displaytogglebox</td><td>boolean</td><td>false</td></tr>
		 * <tr><td>remoteloading</td><td>boolean</td><td>true</td></tr>
		 * <tr><td>onhyphenationdonecallback</td><td>function</td><td>empty function</td></tr>
		 * <tr><td>onerrorhandler</td><td>function</td><td>alert(onError)</td></tr>
		 * <tr><td>intermediatestate</td><td>string</td><td>'hidden'</td></tr>
		 * </table>
		 * @public
		 * @example &lt;script src = "Hyphenator.js" type = "text/javascript"&gt;&lt;/script&gt;
         * &lt;script type = "text/javascript"&gt;
         *     Hyphenator.config({'minwordlength':4,'hyphenchar':'|'});
         *     Hyphenator.run();
         * &lt;/script&gt;
         */
		config: function (obj) {
			var assert = function (name, type) {
					if (typeof obj[name] === type) {
						return true;
					} else {
						onError(new Error('Config onError: ' + name + ' must be of type ' + type));
						return false;
					}
				},
				key;
			for (key in obj) {
				if (obj.hasOwnProperty(key)) {
					switch (key) {
					case 'classname':
						if (assert('classname', 'string')) {
							hyphenateClass = obj.classname;
						}
						break;
					case 'donthyphenateclassname':
						if (assert('donthyphenateclassname', 'string')) {
							dontHyphenateClass = obj.donthyphenateclassname;
						}						
						break;
					case 'minwordlength':
						if (assert('minwordlength', 'number')) {
							min = obj.minwordlength;
						}
						break;
					case 'hyphenchar':
						if (assert('hyphenchar', 'string')) {
							if (obj.hyphenchar === '&shy;') {
								obj.hyphenchar = String.fromCharCode(173);
							}
							hyphen = obj.hyphenchar;
						}
						break;
					case 'urlhyphenchar':
						if (obj.hasOwnProperty('urlhyphenchar')) {
							if (assert('urlhyphenchar', 'string')) {
								urlhyphen = obj.urlhyphenchar;
							}
						}
						break;
					case 'togglebox':
						if (assert('togglebox', 'function')) {
							toggleBox = obj.togglebox;
						}
						break;
					case 'displaytogglebox':
						if (assert('displaytogglebox', 'boolean')) {
							displayToggleBox = obj.displaytogglebox;
						}
						break;
					case 'remoteloading':
						if (assert('remoteloading', 'boolean')) {
							enableRemoteLoading = obj.remoteloading;
						}
						break;
					case 'enablecache':
						if (assert('enablecache', 'boolean')) {
							enableCache = obj.enablecache;
						}
						break;
					case 'onhyphenationdonecallback':
						if (assert('onhyphenationdonecallback', 'function')) {
							onHyphenationDone = obj.onhyphenationdonecallback;
						}
						break;
					case 'onerrorhandler':
						if (assert('onerrorhandler', 'function')) {
							onError = obj.onerrorhandler;
						}
						break;
					case 'intermediatestate':
						if (assert('intermediatestate', 'string')) {
							intermediateState = obj.intermediatestate;
						}
						break;
					case 'selectorfunction':
						if (assert('selectorfunction', 'function')) {
							selectorFunction = obj.selectorfunction;
						}
						break;
					default:
						onError(new Error('Hyphenator.config: property ' + key + ' not known.'));
					}
				}
			}
		},

		/**
		 * @name Hyphenator.run
		 * @methodOf Hyphenator
		 * @description
		 * Bootstrap function that starts all hyphenation processes when called.
		 * @public
		 * @example &lt;script src = "Hyphenator.js" type = "text/javascript"&gt;&lt;/script&gt;
         * &lt;script type = "text/javascript"&gt;
         *   Hyphenator.run();
         * &lt;/script&gt;
         */
		run: function () {
			var process = function () {
				try {
					autoSetMainLanguage();
					gatherDocumentInfos();
					prepare(hyphenateDocument);
					if (displayToggleBox) {
						toggleBox(true);
					}
				} catch (e) {
					onError(e);
				}
			};
			if (!documentLoaded) {
				runOnContentLoaded(window, process);
			}
			if (Hyphenator.isBookmarklet() || documentLoaded) {
				process();
			}
		},
		
		/**
		 * @name Hyphenator.addExceptions
		 * @methodOf Hyphenator
		 * @description
		 * Adds the exceptions from the string to the appropriate language in the 
		 * {@link Hyphenator-languages}-object
		 * @param string The language
		 * @param string A comma separated string of hyphenated words WITH spaces.
		 * @public
		 * @example &lt;script src = "Hyphenator.js" type = "text/javascript"&gt;&lt;/script&gt;
         * &lt;script type = "text/javascript"&gt;
         *   Hyphenator.addExceptions('de','ziem-lich, Wach-stube');
         *   Hyphenator.run();
         * &lt;/script&gt;
         */
		addExceptions: function (lang, words) {
			if (lang === '') {
				lang = 'global';
			}
			if (exceptions.hasOwnProperty[lang]) {
				exceptions[lang] += ", " + words;
			} else {
				exceptions[lang] = words;
			}
		},
		
		/**
		 * @name Hyphenator.hyphenate
		 * @methodOf Hyphenator
		 * @public
		 * @description
		 * Hyphenates the target. The language patterns must be loaded.
		 * If the target is a string, the hyphenated string is returned,
		 * if it's an object, the values are hyphenated directly.
		 * @param mixed the target to be hyphenated
		 * @param string the language of the target
		 * @returns string
		 * @example &lt;script src = "Hyphenator.js" type = "text/javascript"&gt;&lt;/script&gt;
		 * &lt;script src = "patterns/en.js" type = "text/javascript"&gt;&lt;/script&gt;
         * &lt;script type = "text/javascript"&gt;
		 * var t = Hyphenator.hyphenate('Hyphenation', 'en'); //Hy|phen|ation
		 * &lt;/script&gt;
		 */
		hyphenate: function (target, lang) {
			var hyphenate, n, i;
			if (Hyphenator.languages.hasOwnProperty(lang)) {
				if (!Hyphenator.languages[lang].prepared) {
					prepareLanguagesObj(lang);
				}
				hyphenate = function (word) {
					if (urlOrMailRE.test(word)) {
						return hyphenateURL(word);
					} else {
						return hyphenateWord(lang, word);
					}
				};
				if (typeof target === 'string' || target.constructor === String) {
					return target.replace(Hyphenator.languages[lang].genRegExp, hyphenate);
				} else if (typeof target === 'object') {
					i = 0;
					while (!!(n = target.childNodes[i++])) {
						if (n.nodeType === 3 && n.data.length >= min) { //type 3 = #text -> hyphenate!
							n.data = n.data.replace(Hyphenator.languages[lang].genRegExp, hyphenate);
						} else if (n.nodeType === 1) {
							if (n.lang !== '') {
								lang = n.lang;
							}
							Hyphenator.hyphenate(n, lang);
						}
					}
				}
			} else {
				onError(new Error('Language "' + lang + '" is not loaded.'));
			}
		},
		
		/**
		 * @name Hyphenator.isBookmarklet
		 * @methodOf Hyphenator
		 * @description
		 * Returns {@link Hyphenator-isBookmarklet}.
		 * @returns boolean
		 * @public
         */
		isBookmarklet: function () {
			return isBookmarklet;
		},


		/**
		 * @name Hyphenator.toggleHyphenation
		 * @methodOf Hyphenator
		 * @description
		 * Checks the current state of the ToggleBox and removes or does hyphenation.
		 * @public
         */
		toggleHyphenation: function () {
			switch (state) {
			case 3:
				removeHyphenationFromDocument();
				toggleBox(false);
				break;
			case 4:
				hyphenateDocument();
				toggleBox(true);
				break;
			}
		}
	};
}());
if (Hyphenator.isBookmarklet()) {
	Hyphenator.config({displaytogglebox: true, intermediatestate: 'visible'});
	Hyphenator.run();
}

﻿Hyphenator.languages.en = {
	leftmin : 2,
	rightmin : 2,
	shortestPattern : 2,
	longestPattern : 8,
	specialChars : '',
	patterns : {
		3 : 'a2da2fai2a1ja2n4ao2bfb1jbk44bp2btb1v1cac3c2ch1cick1c5n1coc1q1cyd1bd5cd1jd1m1dod1p1dr1dud1vd1wd2ye1fei2e1je1q4eu1fa4fd4fh1fi4fm4fn1fo2ft3fu1fy1gag3bgd4gl2g1m1gog3p1grgs2g3w1gyh1bh1fh1h4hkh1w2id2igi3hi3j4ik2io2ip4iri1u2iv4iy5ja1jek1bk3fkh4k1ikk4k1lk1mk5tk1w2ld2lf4ljl1l2lm2lp4lt1ly1ma2mh4mkm1m1mo4mt1mu4mw1nan3fn1jn5mn1qn1rn1t4nz4oaoi2o5j2oko2noo2o1qou21papd44pf4pgpr2p3wqu2r1br1cr1frg2rh4r3jr1lr1mr1pr1wsa2s2hsk21sos1r2ss1su4svsw2s4y1ta4tc2tl1to1tu4tvtw41ty4tzu5j4uk2usu3u1vav4yw1bwi2w4kw5p4wtwy4x1ax1ex1hx3ix3ox3px1uxx4y1by1cy1dy1iy1wza14zb2ze5zl4zm1zo',
		4 : '_ch4_ci2_eb4_eg2_es3_eu3_ga2_ge2_he2_in1_le2_me2_od2_os3_sh2_si2_st4_sy2_ta4_te4_th2_ti2_up3_ye44ab_abe24abr2adi4aduae4raff4ag1iag1na2goa4gya3haa3heah4la3hoa5ia2aleal1i4alm4amaa2mo4and2angano4a2pla3pu2a2rar1iar2par3q4as_as4la2ta4atha1tra2tua2tyau4bau3ra2vaav1iaw3iaws4aye4ays45ba_1batba4z2b1bb2be4b1d4be_1bel3betbe3w4b3hbi2bbi4d3bie1bilbi2tb2l2b4lo4b1m4b3n3bodbo4e3boobt4lb4tob3trbu4n4b5w5by_bys42ce_3cei1cen3cepcet4cew44ch_che23ciaci5c4cii2cim2cin5cizck3icly4coe22cogcoi4cov1cri22c1tc2tec4twcud5c4ufc4ui3cun1cuscze41d2a5da_4daf2dag3dat5dayd1d42de_d4em1dende1pd3eqdes2de1tde1v4dey4d1fd4gadg1id2gyd1h25di_3didd1ifd1in1diodir2dis1d5k22dly3do_5doed4ogd4or3dosdo4v3doxdre44dryds4pd4swd4syd2thdu2cdu4gdu4n4dup5dynead1ea4lea2tea2v2e1be3bre1ceec2ie1cre1cu4edi4edoee2cee2fee2me5ex1effeg5n5egye1h4e5icei5deig2e1lael2fel2iem5be1mee3my4enn4enoe5ofeo2ge3ole1oreos4e4ote5owe2pae1poer1a2erber1her1i2eroer1s4erues2c4eshe1sie1sp2esses4w4etnet5ze5une3upeus4e1vie5vue1wae3wh1exp5eyceys44fag5far4f5b4fe_fe4b2fedfer1fev44f1ff2fyfi3a2finf4l25fonfo2rfos54f5pfri22f3sf4tof2ty4fuggaf42gam4gaz2ge_2ged1gen1geoge4vg2geggo45gi_g1icgil45gio3girgi4u5giv3gizgla41gle3glog4mygn4ag1nig1no3go_gob55goegon25googov1g4rogth3gu4a2gue3gun3gusha4m5hazh4edhe2nhep5h1eshe4theu4hi4phi2vh2lo4h1m2h1nho4g4h5p4hr4h4shh4tyhu4ghu4thy2s2i1ai2aliam4i2anibe4i1bli5boi1br4ich2iciid5di2dii4dri2du2ie4i3et4if_i3fl4ift4igii2goi1lail5fil1i4ilnil3vim1ii2mu2in_4ind2ine2ini4ink4inl2inn2insin1u4iny4io_i1olio4mi4osipe4ip3ii1rair1i2is_4ise3isfi2sois1pi2su2ite2ithi1ti4itt4i5wix4oizi4ja4pjew3jo4p3ka_k3abk5agkal4k2ed1keeke4gk1erkes45ki_k4imki4pkis44klyko5rk3ouk4scks4lk4sy4lav2l1blce4l3cil2deldi4l3drle2ales23leyl5frl5galgo32l3h3likl1itl1izlka3l2lell2ill4o3lo_4lof4lovl4pll5pr4l1rl4scl2sel1tel1trltu2lu5aluf4lu3o4lup1lut2l1w4lya4lyb2mab2mah4map4m1b4m5c4me_2medme2gme2m1men2mesme4v4m1f5mi_mi3amig4m2ism2iz4m1l4m1nmn4amn4o4mokmo2rmos2mo2v4m1pm2pim2py4m3rm4shm5si3mummun24mupmu4unak4n2ann4asn2atn2aun1crn1cun1de2ne_ne2bne2c2ned1nen3neone2qn1er1nesne4vne4wn1gun2gynha4nhe4ni4dnik4n1imn1inni4on2it4nk2n1kl4n1lnme4nne43noe4nogno4n4nop1noun1p4npi4nru4ns4cn2sen2slns3mnt2int4snu1anu4dn4umn3uon1v2n1w4nym4nyp4n3zaoad3o1bio3bro1ceoch4o4elo3ero3evo2fio1geo4gl1ogyo1h2oig4o1laol2dol2iol2tol2vo2lyo2meon1aon1c2ondon3soo4ko2pa2opho1prop1uopy5o1rao1ryos2cos4lo2so4othou4lou5vow1io4wooy1ap4adp4aip4alpa1ppav43pay4p1b4pe_pe2cp4eepek4pe2t4ph_ph2l4phsph3t5phu1phypi3ap4idpi2n4p1m2p3npo4cpo4p1posp4ot4p1pp2pep2seps4h2p1tp2tep2thp4twpub3pue4puf4pu4mpu2n5puspu2t2rabr2air2asrbi2rb4or2cerd2i2re_re1oreu2rev2rfu4r4fyr1glr3gu4rh_ri3ar4ibri1or4iqr2isrle4r2mer4myrno4r3nur2ocro4erok2rox5r3por1r44rs2r1sars4cr2ser1shr1sir1spr5swr1tiru3aru2nrv4er3vory4cry3t5sais1apsau45saw4s5bsch2s1cu4s5d4se_se4ase2g5sei5sev5sex4s3f2s3g2sh_sho44shwsi1b1siosi2r1sis5siu1siv5siz4skes1l2s2le2s1ms3mas1n43soms4op4sov2spas1sas1sis4sls4snss2tss5w2st_st2ist4rs2tys4ulsu2msu2nsu2r4swo4syc3syl3ta_2tabta2ltav42taw2t1bt4ch4t1d4te_1teeteg41teote4p3teu3tex4tey2t1f4t1g2th_th2e4thl2ths1tiatif22tig1tim1tio5tiqti4u1tiv1tizt5lat5lo4t1mtme4to3b2toftos24t1p1trat4sctsh4t4swt5tottu4tu1atud24tue3tum3tus4two4tya2tyltz4e4uabuac4u1atuav4ub4eu3cau3cru3cuu4cyud5du4du3ufau3fl2ui2ui4nuiv3u1laul4eul2i4ulsu3luul5vu1mium2pu2neu1niunu4un5yun5zu5osu1ouu1peu3plup3pu1raurc4ur1dur2lu3ruusc2us1pu2suuts4uu4mu1v2uxu3uz4e5va_vag43vat4ve_4vedveg3v3ifvik42vilv1invi4p3viv5vo_voi43vok4vv42wacwam4w1erw3evwhi4wil2wir4wiz5w4no1wo2wom1wra4wri4w3shws4lxam3x4apxas5x3c2x2edxhi2xhu4xi5axi5cx4obx1t2x3tixu3ay5acy5aty2cey3chy5eey1eryes4ye4ty5gi4y3hy3lay3loy5luyme4yn5dyn5g5ynxy1o4yo5dyom4y4osyp3iy3poy5puy3royr4rys4cy4soyss4ys1tzar2ze4nze4pz1erzet42z1iz4ilz4iszo4mzte4z4zy',
		5 : '_ach4_af1t_al3t_an5c_ang4_ant4_ar5s_as3c_as1p_as1s_au1d_av4i_awn4_ba4g_ber4_bri2_ca4t_co3e_co4r_de3o_do4t_du4c_eer4_el5d_en3g_en3s_eye5_fes3_gi5a_gi4b_go4r_hes3_het3_hi3b_hov5_id4l_im3m_ine2_in2k_in3s_ir5r_is4i_ju3r_la4m_len4_lep5_lev1_li4g_li2n_li3o_li4t_mis1_ni4c_odd5_or3c_or1d_or3t_oth3_out3_pi4e_pi2t_ra4c_ree2_res2_ri4g_ro4q_ru4d_se2n_til4_to4p_un1a_un1e_un5k_un5o_un3u_ure3_us5aa5bala5banabi5aab3ula4carac1er4a2cia3cieac1ina3cioac3ulac4uma3diaa3dioa3dita5diuad4lead3owad4sua3ducad5uma4gabaga4nage4o4ageu4ag4l3agogag5ula3ic_ai5lya4i4nain5oak1enal5abal3ada4lar4aldiali4ea4ly_4alys5alyt3alyzam5abam3agam3icam5ifam1ina5mona3naran1dla5neea3nena3neuan1glan3ioa3nipan3ita3niuan5otan2saan4snan2span4st4antoan2tran4twan3uaan3ula5nurapar4ap5at4aphiap3inapoc5aque5ar3alara3par4ata5rauaraw4ar4dra3reear4fiar4flar4imar3ioar2izar2mia3rooarre4ar4saar2shas4abashi4a3siba3sicask3ia4socas5phas4shas1trat5acat5apate5cat5evat4ho4ati_a5tiaat1icat3ifa4toga2toma4topa4tosat4skat5teat4that5uaat5ueat3ulaugh3au3guau4l2aun5dau1thav3aga5vanav3igav5oca1vor3awayaw4lyax4icax4iday5alazz5iba4gebal1aban4eban3ib3berbeak4beat34be2dbe3dabe3debe3dibe3gibe5gube1libe3lo4be5mbe5nu4bes4be3spbe5trbe3twbe5yobi5enbi4er2b3ifbin4dbi5oubi3trb5itzb4le_blen4b3lisbne5gbod3ibon4a5bor_bor5d5bore5bori5bos4b5otaboth5bo4to4brit2b5s2bsor4bu4gabu3libumi4bu3re5bust4butab5utoca1blcach44cag42c5ah4calocan5dcan4ecany44casyca4thccha5cci4accon44ced_5cel_3cell3cenc4ceni3cent4cesaces5t4ched5chio3chitchi2z3cho2ch4ticia5r4cierci4la3cilic4inac1ing5cinocion44cipeci3ph2c1it1c4l44clarcle4m4clicclim4co5agco4grcol5i5colocon4ac4onecon3gcon5tco3paco4pl4corbcos4ecove4cow5acoz5eco5zi5credcre4vcri5fc4rincris4cru4d4c3s2cta4bc3terctu4r5culicu2mac3umecu4micu3picu5py3c4ut4cutrdach4da2m2dan3gdard5dark54dary4dato5dav4dav5edeaf52d1ed4dee_de5ifde5lo5dem_de3node3nude3padepi4de2pud4erh5dermder5sd2es_de1scde4sude2todia5bd4ice3dictdi3ge1dina5dinidio5gdi4pldi1re5disid2iti1di1v4d5la3dle_3dled2d3lo4d5lu4d1n4do5de2d5ofdo4ladoli4doni4doo3ddop4p4drai5drendri4bdril4dro4p4drow2d1s2d1u1ad1ucadu5eld3uledu4pedy4sedys5pe1a4be3actea4gee5andear3aear4cear5kear2tea5spe3asseast3eav5ieav5oe4bene4bite4cadecca5e4cibec3imeci4te2cole2corec4tee4cul2e2da4ed3dede4se3diaed3ibed3imed1itedi5ze4doledon2e4drie4duleed3ieel3iee4lyee4naee4p1ee2s4eest4ee4tye4ficefil43efit4egaleger4eg5ibeg4ice4go_e4goseg1ule5gureher4ei5gle3imbe3infe1ingeir4deit3eei3the5itye4judeki4nek4lae4la_e4lace4lawe3lea5elece4lede5lene1lese5lime3lioe2lis4ellaello4e5locel5ogel2shel4tae5ludel5uge4mace4mage5mane2mele4metemi4ee4misem3izemo4gem3pie4mulemu3ne5neae5neeen3eme3newe5niee5nile3nioen3ite5niu5enizeno4ge4nosen3oven4swen3uaen5ufe3ny_4en3ze4oi4eo3reeo4toe5oute3paie5pelephe4e4plie3proep4she4putera4ber3arer4bler3ch2ere_ere4qeret4e1rio4eriter4iueri4ver3m4er3noer5obe5rocero4rer1ou4ertler3tweru4te1s4ae2scae3scres5cue1s2ee2sece3shae2sice2sidesi4ues4mie2sole2son2estre2sureta4be3teoet1icetin4e5tire3trae3treet3uaet5ymeu3roeute4eu5tre2vase5veaev1erev3idevi4le4vinevi4ve5voce4wage5weeewil5e3wit5eye_fa3blfab3rfa4cefain4fa3ta4fatofeas44feca5fectfe3life4mofen2d5ferrf4fesf4fief4flyfic4i4ficsfi3cufil5i4fily5finafi2nefin4nflin4f2ly5fon4tfor4ifra4tf5reafril4frol5fu5elfu5nefu3rifusi4fus4s4futa5gal_3galiga3log5amo4ganogass4gath3geez44gely4geno4genyge3omg4ery5gesigeth54getoge4ty4g1g2g3gergglu5gh3ingh4to1gi4agia5rg4icogien5gir4lg3isl5glasgli4bg3ligglo3rg4na_g2ning4niog4nongo3isgo3ni5gos_g4raigran24graygre4n4gritgruf4g5ste4gu4tgy5rahach4hae4mhae4th5aguha3lahan4ghan4khap3lhap5thar2dhas5shaun4haz3a1head3hearh5elohem4phena4heo5rh4erah3ernh3eryhi5anhi4cohigh5h4il2h4inahir4lhi3rohir4phir4rhis4s4h1l4hlan4hmet4h5odshoge4ho4mahome3hon4aho5ny3hoodhoon4ho5ruhos4ehos1p1houshree54h1s2h4tarht1enht5eshun4thy3pehy3ph4iancian3iia5peiass4i4atuib5iaib3inib3lii5bun4icam5icap4icaricas5i4cayiccu44iceoi5cidi2cipi4cly4i1cr5icrai4cryic4teictu2ic4umic5uoi3curi4daiide4si5dieid3ioid1itid5iui3dlei4domid3owid5uoied4eield3ien4ei5enni1er_i3esci1estif4fri3fieiga5bi3gibig3ilig3inig3iti4g4lig3orig5oti5greigu5iig1ur4i5i4i3legil1erilev4il3iail2ibil3io2ilitil2izil3oqil4tyil5uri4mag4imet4imitim4nii3mon4inavi3nee4inga4inge4ingi4ingo4ingui5ni_i4niain3ioin1is2i1noino4si4notin3se2int_i5nusioge4io2grion3iio5phior3iio5thi5otiio4toi4ourip4icip3uli3quaira4bi4racird5ei4refi4resir5giir4isiro4gir5ulis5agis3arisas52is1cis3chis3eris3ibisi4di5sis4is4k4ismsis2piis4py4is1sis1teis1tiis5us4ita_i4tagi3tani3tatit4es4itiait3igi2tim2itio4itis4itonit5ryi5tudit3ul4itz_iv5ioiv1it4izarjac4qjer5s5judgkais4ke5like4ty5k2ick4illkilo5k4in_kin4gk5ish4kleyk5nes1k2nokosh4kro5n4k1s2l4abolaci4l4adela3dylag4nlam3o3landlar4glar3ilas4elbin44l1c2ld5isl4drile4bileft55leg_5legg4len_3lenc1lentle3phle4prler4e3lergl4ero5lesq3lessl3eva4leye4l1g4lgar3l4gesli4agli2amli4asli5bi4licsl4icul3icyl3ida3lidil4iffli4fl3lighlim3ili4mol4inalin3ili5og4l4iqlis4pl2it_l3kallka4tl4lawl5leal3lecl3legl3lell5lowl5metl4modlmon42l1n2lo4cil5ogo3logu5longlon4ilood5lop3il3opmlora45los_los4tlo4ta2loutlpa5bl3phal5phil3pit2l1s2l4sielt5aglten4lth3iltis4lu3brluch4lu3cilu3enlu5idlu4ma5lumiluo3rluss4l5venly5mely3no2lys4l5ysema2cama4cl5magnmaid54maldmar3vmas4emas1t5matemath3m5bilmbi4v4med_mel4tmen4a4menemen4imens43mentme5onme4tame1tem4etrmid4amid4gm4illmin4a3mindmin4tm4inumiot4mis5l4mithm4nin4mocrmo2d1mo4gomois2mo3memo3spmoth3m5ouf3mousm3petmpi4am5pirmp5ismpov5mp4tr4m1s25multn4abu4nac_na4can5actna4li4naltnank4nar3c4narenar3inar4ln5armnas4c3nautnav4e4n1b4ncar5n3chanc1innc4itn4dain5danndi4bn1ditn3dizn5ducndu4rnd2wen3earneb3u5neck5negene4lane5mine4mo4nenene4pon2erener4r2nes_4nesp2nest4neswn5even4gabn3gelng5han3gibng1inn5gitn4glangov4ng5shn4gum4n1h4nhab33n4iani3anni4apni3bani4blni5dini4erni2fin5igrnin4g5nis_n4ithni3trn3ketnk3innmet44n1n2nni4vnob4ln5oclnoge4no4mono3mynon5i4noscnos4enos5tno5ta3nounnowl32n1s2ns5abnsid1nsig4n4socns4pen5spinta4bn5tibnti2fnti4pnu5enn3uinnu1men5umi3nu4nnu3troard3oas4eoat5io5barobe4lo2binob3ulocif3o4cilo4codocre3od3icodi3oo2do4odor3o5engoe4tao5geoo4gero3gieog3ito4groogu5i2ogynohab5oiff4o3ingo5ismo3kenok5ieo4lanold1eol3ero3letol4fio3liao5lilo5lioo5livolo4rol5plol3ubol3uno5lusom5ahoma5lom2beom4blo4meto3miao5midom1ino4monom3pion4aco3nanon5doo3nenon4guon1ico3nioon1iso5niuonsu4on5umonva5ood5eood5ioop3io3ordoost5ope5dop1ero3pito5pono5ra_ore5aor3eiorew4or4guo5rilor1ino1rioo3riuor2miorn2eo5rofor5pe3orrhor4seorst4or4tyo5rumos3alos4ceo5scrosi4uos4paos4poos2tao4tano4teso3tifo3tisoto5sou3blou5etoun2dov4eno3visow3elown5ipa4capa4cepac4tpain4pan4apa3nypa4pu3parepa2te3pe4a2p2ed3pede3pedipee4dpe4lap4encpe5onp4erip4ernper3ope5ruper1vph4erph1ic5phie3phiz3phobpho4rpian4pi4cyp5idapi3de5pidi3piecpi3enpi3lop4in_pind4p4ino3pi1opion4p3ithpi2tu2p3k21p2l23planpli3a4pligpli4nploi4plu4m5pod_po5em5po4gpoin2po4ni1p4orpo4rypos1spo4ta5pounp4pedp5pelp3penp3perp3petpre3rpre3vpri4spro3lpro1t2p1s2p4sibpti3mptu4rpul3cpur4r5putepu3trqua5v2que_3quer3quetra3bir5aclraf4tra4lor2amir4anira5norar5crare4rau4tr4babr4bagrbi4fr2binrcen4r3charc4itrcum3r4dalrdi4ardin4re1alre3an5reavre4aw2r2edre1dere2fere3fire4fyre5itre1lire5lure1pur1er4r4erirero4re5rur4es_res2tre4whrg3err3getr3gicrgi4nr5gisr5gitrgo4n4rhalria4bri4agrib3ar4ice4ricir4icori1erri5et5rigirim5i3rimor2inarin4drin4erin4g5riphri2plr4is_ris4cr3ishris4pri2turiv3ir3ketrk4ler2ledr4ligr4lisr3lo4rma5cr3menr4mior3mitr4narr3nelr4nerr5netr3neyr5nicr3nitr3nivr4nourob3lro3crro1ferom4irom4pron4e1room5rootror3iro5roros4sro4tyro4var4pear3petrp4h4rre4crre4fr4reorri4orri4vrron4rros4rrys4r3secrs3esr5sharson3r4tagr3tebrte5ort5ibrti4dr3tigr4tivr3trirt4shru3enru4glru3inrunk5r5uscr3venr3veyr3vicrvi4v2s1ab5sacks3actsal4msa5losal4t3sancsa5tasat3usca4pscav5s4ced4sceis4cess4choscle5s4cliscof4seas4sea5w3sect4s4eds5edlseg3rse1le5self5selv4seme4sencsen4dsen5gs4erlser4os1e4sse5shses5tsew4ish1er5shevsh1insh3io3shipshiv5shon3shor4s5icc5sidisil4e4sily2s1ins2inas3ing5sionsir5as3kets3latsman3smel4s5menso4cesoft35solvsona4son4gsor5csor5dso5vi5spaispa4n2spers2phespho5spil44spios4plys4ponspor44spotssas3s2s5cs3sels5sets4siess4lis2tags2tals4tedste2ws3thes4ti_s5tias1tics4ties3tif5stirs1tles4top4stry4st3wsu1alsu4b3su2g3su5issuit3sum3isyn5o4tacita5do4taf4ta5latal3i4talkta5mota5pltar4a4tarc4taretas4eta5sytaun44teattece45tect2t1edte5dite5gi3tel_teli45tels3tenc3tend1tentte5peter3c1teriter5v4tes_4tessthan44thea3thet4thil4thooti4ab2ti2b4tickt4ico5tidi3tienti5fy5tigu4timp2t1int2ina3tiniti5octi3sa3tisetis4mti5sotis4pti3tltiv4ati3zatlan43tle_3tled2t1n24todoto2grto5icto2matom4bto3my4tono4tonyto2ra5tour4touttra3btras4tre5ftre4m5tria2trimtri4vtro3vtru5itrus44t1s24t3t2t4testu3artu4bi4tuf45tu3i3ture5turitur5otu5ry4t1watwis4type3ty5phua5nauan4iuar2duar3iuar3tu4belu3beru1b4iuci4buc4itucle3ud3erudev4u1dicud5isu5ditu4donud4siu4eneuens4ug5inu1inguir4muita4ula5bulch4u1lenul4giu5lia4ul3mu1l4oul1ti4ultuul5ulum5abum4biunat4un4erun4imu2ninuni3vun3s4un4swu4orsu5piauptu44ura_u4ragu4rasur4beur4fru3rifur1inu3riou1ritur3izur4nouros4ur4peur4piurti4u5sadu5sanus4apus3ciuse5au5siau3sicus5slus1trusur4uta4bu3tat4ute_4utel4utenu4tisu4t1lut5ofuto5gu5tonu4touvac3uva4geval5oval1uva5mova5piv3el_ve4lov4elyv4erdv4e2s4ves_ve4teve4ty5vian5vidivi5gnv2incvin5d4vingvio3lvi1ouvi5rovi3sovi3su4vitivit3r4vityvo4lav5ole5volt3volvvom5ivori4vo4ryvo4taw5ablwag5owait5w5al_war4twas4twa1tewed4nweet3wee5vwel4lwest3win4g3wisewith3wl4eswl3inws4pew5s4txac5ex4agoxer4ixe5roxhil5xi5dix4imexpe3d3yar4yc5erych4eycom4ycot4y4erfympa3yn5icy4o5gy4onsy4pedyper5y4pocyp2tayra5myr5iay3s2eys3io3ysisys3taysur4yt3icz5a2bze3rozo5ol4z1z2',
		6 : '_am5at_ani5m_an3te_ar4ty_atom5_ba5na_bas4e_be5ra_be3sm_can5c_ce4la_cit5r_de3ra_de3ri_des4c_dumb5_eas3i_el3em_enam3_er4ri_ge5og_han5k_hi3er_hon3o_idol3_in3ci_la4cy_lath5_leg5e_lig5a_mal5o_man5a_mer3c_mon3e_mo3ro_mu5ta_of5te_os4tl_pe5te_pio5n_pre3m_ran4t_rit5u_ros5t_row5d_sci3e_self5_sell5_sing4_ting4_tin5k_ton4a_top5i_tou5s_un3ce_ve5ra_wil5iab5erdab5latab5rogac5ardac5aroa5ceoua5chetac5robact5ifad4dinad5er_ad3icaadi4erad5ranaeri4eag5ellag3onia5guerain5inait5enal3enda5le5oal4ia_al5lev4allica5log_ama5raam5ascam5eraam5ilyami4noamor5iamp5enan3age3analyan3arcanar4ia3natiande4san3disan4dowang5iea4n1ica3niesan3i3fan4imea5nimia5ninean3ishan4kli5annizanoth5an4scoans3poan4surantal4an4tieap5eroa3pherap3itaa3pituap5olaapor5iapos3taps5esar3acta5radearan4gar5av4arbal4ar5easar3enta5ressar5ialar3iana3rietar5o5da5ronias3anta5sia_as3tenasur5aat3ablat3aloat5echat3egoat3en_at3eraater5nat3estath5ema5thenath5omat5i5bat3ituat5ropat4tagat3uraau5sibaut5enave4noav3eraav5ernav5eryavi4erazi4erbarbi5bari4abas4sibbi4nabe5nigbe5strbet5izbi3lizbi5netbi3ogrblath55blespblun4tbol3icbom4bibon5at4b1orabound3broth3bunt4ibus5iebuss4e3butiocab3inca5denca3latcal4lacan4iccan5iscan3izcan4tyca5percar5om4cativcav5alccou3t4ceden2cen4ece5ram3cessic5e4ta4ch3abcheap3che5lo3chemich5enech3er_ch3ers4ch1in5chinici2a5b3cinatcin3emc5ing_4cipic4cista4cisticit3iz5clareco3inccol3orcom5ercop3iccoro3ncras5t5crat_cre3at5criticro4plcrop5ocros4ect5angc5tantc4ticuctim3icu5ity3cultucu5riacuss4icu4tie2d3a4b4dativdeb5itde4bondecan4de4cilde5comdeli4e3demicde5mildemor5de4narde2s5odes3tide3strdev3ild3ge4t1d4i3adi4cam5di3en3dine_di5nizdirt5id4is3t3dles_4dlessdo5lordom5izdo3nat4d5outdrea5rduc5er4duct_4ductsdum4beead5ieea5gereal5ereal3oueam3erear5esear4icear4ileart3eeat5eneath3ie5atife4a3tueav3ene4bel_e4belsecan5cec5ifye5citee4clame4cluse4comme4concec3oraeco5roe4cremec4tanec3ulae4d1ered3icaed5ulo5eficie3fineeg5inge5git5e5instej5udielan4delaxa4el3egae4l1ere3libeel3icae3lierel5ishe3liv3el4label3op_em5anaem3icaem1in2em5ineem5ishe5miss5emnizem5ulaen5amoe4nanten3dicen5eroen5esien5esten3etren5icsen3isheop3areo5rolep5ance3pente4prece4predep3rehe4probep5utaequi3l4erander4chee3realere5coere3iner5el_er3emoer5ena4ereneer3enter5esser3este1ria45ericke3rieneri4erer3inee4rivaer4nis4ernit5ernizer3setert3er5erwaues5canes5ecres5encesh5ene2s5imes4i4ne5skines3olues5onaes3peres4preestan4es3tiges5tim4es2toe3stone5stroes5urreten4dethod3e5tideeti4noet5onaet3ricet5rifet3roget5roseuti5leva2p5ev5astev3ellevel3oe5vengeven4ie5verbew3ingfall5e4fa4mafam5isfar5thfa3thefault5feath3fend5ef5fin_f2f5is2f3ic_f3icanf3icenfi3cer5ficia5ficiefi5delfight5fin2d5f1in3gfis4tif5lessflo3refon4defo5ratfor5ayfore5tfort5afres5cfu4minga5metgan5isga3nizgar5n44gativgel4inge5lisge5lizge4natge5nizgh5out5gicia5gies_g3imen3g4in_gin5ge5g4insglad5ignet4t3g4o4ggondo5go5rizgor5ou4grada3guard5gui5t2g5y3nh3ab4lhala3mhan4cihan4cy5hand_hang5ohan4teha3ranha5rashard3ehar4lehe4canh5ecathe5do5he3l4ihel4lyhen5athera3pher4bahere5ah5erouhe2s5phet4edhimer4hion4ehis3elhlo3rih5odizhol5ar3hol4ehor5atho5rishort3eho5senhouse3hov5elhro3pohu4minhun5kehus3t4h4wart4ian4ti4ativib3eraib5ertib5it_ib5itei2b5rii4car_i4caraic5inaic3ipai2c5ocic3ulaid5ancide3alid5ianidi4aridi5ou5ie5gaien5a4i3entiif5eroiff5en4ific_ig3eraight3iil3a4bi4ladei2l5amila5rail4istill5abim3ageima5ryim5idaimi5lei5miniim3ulai4n3auincel4in3ceri5nessin5genin3ityi4no4c2in4thion3atip4re4iq5uefiq3uidire4dei4rel4iri5deiri3tuir4min5iron_is5hanis3honish5opislan4is4salissen4is4sesis4ta_ist4lyita4bi4ita5mit3erai5teri4i2ticit3icait5illi4tismi4tramit3uativ3elliv3en_iv5il_i5vorei4v3ot5izont4jestyk3en4dk3est_kin4delab3iclan4dllan5etlan4tela5tan4lativla4v4ald4ereld4erile4mat5lene_lera5b3l4erile5sco5less_li4ato5licioli4cor4lict_lid5erlif3erli4gra4l4i4llim4bll4im4p1l4inelin3ealiv3erl3le4nl3le4tl2lin4l5linall5outlm3inglob5al3logiclom3er5lope_lo5rielor5oulos5etloun5dlp5ingltane5ltera4ltur3al5umn_lus3tel5vet4mag5inma3ligma5linmal4limal4ty5maniaman5isman3izma5rizmar4lyma5scema3tismba4t55mediame3diem5e5dymel5onmem1o3men5acmen4demensu5men4tem5ersa3mestimet3alme5thime3try3miliam5ineem4inglmis4timma5rymoi5semon5etmon5gemoni3amo3nizmonol4mo3ny_4mora_mo5seympara5mpar5imphas4mp5iesm4p1inmpo3rim4pousmulti32n1a2bna5liana5mitnanci4nan4itnas5tina3talnau3sen4ces_n5cheon5chiln3chisn5d2ifne4gatnel5iznera5bn4erarn4er5i3neticn5geren3gerini3miz5nine_nis4ta3nition3itorn5keronni3alno3ble4n3o2dnois5ino5l4i3nomicnon4agn5oniznor5abnpre4cnsati4n4s3esnter3snti4ern3tinentu3menuf4fe3nu3itoast5eob3a3bob5ingo3cheto4clamoc3rac5ocritoc3ulao5cureod5dedof5iteofit4to4gatoo5gene1o1giso5g2ly3ognizoic3esoi3deroi5letoi5sonoi3terolass4o3lesco3liceol5id_o3li4fol3ingo5lis_ol3isho5liteolli4eol3umeom3enaom3ic_om3icao5miniomo4geompro53oncilon5eston3keyon4odion3omyonspi4onten4on3t4iontif53operao5phano5pherop3ingo4posio4r3ago5realore5sh4o5riaor3icaor3ityor3ougors5enor3thior3thyo3scopos4i4eos3itoos3ityos5tilos5titot3er_ot5ersoth3i4ot3ic_ot5icao3ticeouch5iover3sov4ertoviti4o5v4olow3derow5est5paganp3agatpan3elpan4typar5dipar5elp4a4ripar4ispa5terpa5thypear4lpedia4ped4icpeli4epe4nanpen4thp4era_p4eragperme5per3tipe5tenpe5tizphar5iphe3noph4es_ph5ing3phone5phonipi4ciepi5thaplas5tpli5erplum4bpo3et55pointpoly5tppa5rapray4e5precipre5copre3empre4lap3rese3press5pri4epris3op3rocapros3ept5a4bput3errach4eraf5firam3etrane5oran4gerap3er3raphyrar5ef4rarilra5vairav3elra5zier5binerch4err4ci4brdi4errd3ingre5arrre4crere3disred5itre4facreg3isren4tere5pinre4spire3strre4terre3trire5utire4valrev3elre5vilrg3ingric5as5ricidri4cierid5erri3encri3entrig5anril3iz5rimanrim4pe5rina_riph5erit3icrit5urriv5elriv3etrk4linrl5ishrm5ersrm3ingr1nis4ro5filro5ker5role_ron4alron4taro3pelrop3icro4therov5elr5pentrp5er_rp3ingrre4strsa5tirse4crrs5er_rse5v2r4si4brtach4rten4dr4tierrtil3irtil4lr4tilyr4tistru3e4lrum3plrun4tyruti5nrvel4irv5er_r5vest5ryngesac3risalar4san4desa5vor3s4cie4scopyse2c3ose4d4ese4molsen5ats5eneds5enin4sentd4sentlsep3a34s1er_4servo5se5umsev3ensh5oldshort53side_5sidessi5diz4signa5sine_sion5a3sitiosk5inesk5ingslith5small35smithso4labsol3d2so3lic3s4on_s5ophyspen4d2s5peo3sphersp5ings5sengs4ses_ssi4erss5ilyssur5astam4i5stands4ta4p5stat_s5terostew5a5stickst3ing5stockstom3a5stone3stores4trads4trays4tridsy5rintai5lotal5enta5logtan4detanta3ta5perta3riz4taticta4turtax4istch5ettead4ite5gerte2ma2tem3at3tenan4tenes5ter3dter3ist3ess_teth5eth3easthe5atthe3isth5ic_th5ica5thinkth5odeti4atot4ic1utim5ul3tine_ti3zen3tles_t5let_to3natto3rietor5izto3wartra5chtraci4trem5i4tricstro5mitron5i4tronytro3sptu4nis2t3up_tur3isu4berou3ble_ud5estud3iedud3iesuen4teuer4ilugh3enuil5izu5lati5ulcheul3derul3ingul5ishul4larul4lisuls5esultra3um4blyumor5oun5ishunt3abun4tesuper5sup3ingupt5ibure5atur4ferurs5erur5tesur3theur4tieus4linuten4i4u1t2iu3tineut3ing5u5tiz2v1a4bvac5ilva5lieva5nizvel3liven3omv5enue5vere_v4erelv3erenv4eresver3ie3versever3thves4tevet3ervi5ali5vide_5vided5vides5vilit4vi4nav3io4rvis3itvor5ab4voteewa5gerwa5verweath3win4dewo5venwrita4xi5mizxpan4dymbol5yn3chryo5netys3icay3thin',
		7 : '_ad4der_anti5s_ar4tie_aster5_be5sto_but4ti_cam4pe_capa5b_car5ol_de4moi_earth5_gen3t4_hand5i_hero5i_hon5ey_im5pin_lat5er_mag5a5_mar5ti_me5ter_mist5i_muta5b_or5ato_ped5al_pe5tit_re5mit_se5rie_sta5bl_ten5an_tim5o5_under5_ven4dea4lenti5a5lysta4matisa4m5atoan5est_a4pillaar5adisa5ratioar5ativar4chanar5dinear5inat5a5si4ta5ternaat5omizbad5gerban5dagbina5r43bi3tio3bit5uabuf4fercall5incast5ercas5tigccompa55chanic5chine_5cific_5cratic4c3retacul4tiscur5a4b4c5utivdel5i5qdem5ic_de4monsdenti5fdern5izdi4latodrag5on5drupliec5essaec5ifiee4compee4f3ereefor5ese4fuse_el5ativel5ebrae4l5ic_el5igibe4l3ingem5igraem3i3niemoni5oench4erent5age4enthesep5recaep5ti5b4erati_er5encee4sage_e4sagese4sert_e4sertse4servaes5idenes5ignaesis4tees5piraes4si4bestruc5e5titioet5itiv4f3ical4ficatefill5ingani5za4g3o3na5graph_4graphy4gress_hang5erh5a5nizharp5enhar5terhel4lishith5erhro5niziam5eteia4tricic4t3uainer4ari5nite_5initioinsur5aion4eryiphras4iq3ui3t5i5r2izis5itiviso5mer4istral5i5ticki2t5o5mi4v3er_i4vers_iv3o3ro4jestiek5iness4latelilev4er_lev4eralev4ersliar5iz5ligatelink5er5liticalloqui5l3o3nizlo4ratol5ties_5lumnia4matizam4b3ing5metricme5triem5i5liemin5glim5inglymis4er_m5istrymo5lestmon4ismmon4istmpa5rabmula5r4nag5er_ncour5and5est_nge4n4en5o5mizno4rarynov3el3nsta5bln4t3ingo5a5lesoctor5aod5uct_od5uctso2g5a5rog5ativoint5eroist5eno5litiool5ogizom5atizom5erseom5etry5ommend4operagor5alizor5angeor5est_4oscopios5itivo5statiotele4goth5esiounc5erover4nepara5blpar5age5pathicpa4tricpera5blperi5stper4mal5phistipi4grappref5acpre5tenprin4t3prof5itput4tedput4tinration4rb5ing_r5ebratrec5ollre5fer_r4en4tare4posiress5ibre5stalre4ti4zre5versre5vertrev5olurip5licri3ta3br5ited_rit5er_rit5ersr4ming_rom5etero5n4isros5perrtroph45sa3tioscan4t55scin4dscour5asmol5d45sophics5ophizsqual4lsspend4stern5i5stratuta5blestal4listen4tagter5iesteri5za5ternit5thodicthor5ittho5riztill5intion5eeto5cratton4alitrac4ittrac4tetra5ventri5ces5triciatro5pheuar5antu4b5inguiv4er_ul4li4bu4m3ingun4ter_upport5uri4ficus5tereuti5lizution5avar5iedver5encvermi4n4v3idenv3i3lizwea5riewill5inxe4cutoxpecto5ylla5bl',
		8 : '_chill5i_cor5ner_dictio5_eq5ui5t_for5mer_re5stat_trib5utab5it5abab5o5lizap5illara5rameteation5arces5si5bch5a5nisch5inesse4q3ui3sg5rapher5graphicimenta5rin5dlingin5glinglem5aticl5i5tics5losophyma5chinema5rine_mpos5itenato5mizneg5ativni5ficat5nologisntrol5lioc5ratizonspir5appo5siterec5omper5ev5er_5taboliz5tisticatrav5es5url5ing_',
		9 : '_ratio5nac5laratioec5ificatef5i5niteep5etitio5losophiz5mocratiz5nop5o5liuto5matic'
	}
};



$(document).ready(function(){
	var language = document.childNodes[1].lang;
	var placeholder = ( language == "de" ) ? "bitte wählen..." : "please choose...";
	$("select").sexyCombo({
		emptyText: placeholder,
		triggerSelected: false,
		changeCallback: function() {
			window.location.href = "http://" + window.location.hostname + "/" + this.getHiddenValue();
		}
	});
	$(".contact-item:odd img").css("float","right");
	$(".contact-item:odd .text").css("float","left")
	$(".jqfancybox").fancybox( { 'hideOnContentClick': true, 'overlayShow': false } );

	var odd = 0;
	var even = 1;
	$(".contenttable").find("tr").each(function(){
		if( odd )
			$(this).addClass("tr-odd");
		if( even )
			$(this).addClass("tr-even");
		
		var count = 0;
		$(this).children().each(function(){
			$(this).addClass( "td-" + count );
			count++;
		});
		
		odd = (odd == 1) ? 0 : 1;
		even = (even == 1) ? 0 : 1;
	});
});

Cufon.replace( '.content_lt h2, .content h1', { fontFamily: 'Helvetica 65 Medium' } );
Cufon.replace( '.sidebar h1, .news h2, .press h2, .content_ct h2, .content_rt h2, .content_lb h2, .content_cb h2, .content_rb h2', { fontFamily: 'Helvetica 45 Light' } );
Cufon.replace( '.header .navigation a', { fontFamily: 'Arial' } );

Hyphenator.config({
	minwordlength: 6,
	remoteloading: false,
	classname : 'hyphenate',
	donthyphenateclassname : 'donthyphenate'
});
Hyphenator.run();



