/*
 * 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")}})})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/**
 * jQuery-Plugin "preloadCssImages"
 * by Scott Jehl, scott@filamentgroup.com
 * http://www.filamentgroup.com
 * reference article: http://www.filamentgroup.com/lab/update_automatically_preload_images_from_css_with_jquery/
 * demo page: http://www.filamentgroup.com/examples/preloadImages/index_v2.php
 * 
 * Copyright (c) 2008 Filament Group, Inc
 * Dual licensed under the MIT (filamentgroup.com/examples/mit-license.txt) and GPL (filamentgroup.com/examples/gpl-license.txt) licenses.
 *
 * Version: 5.0, 10.31.2008
 * Changelog:
 * 	02.20.2008 initial Version 1.0
 *    06.04.2008 Version 2.0 : removed need for any passed arguments. Images load from any and all directories.
 *    06.21.2008 Version 3.0 : Added options for loading status. Fixed IE abs image path bug (thanks Sam Pohlenz).
 *    07.24.2008 Version 4.0 : Added support for @imported CSS (credit: http://marcarea.com/). Fixed support in Opera as well. 
 *    10.31.2008 Version: 5.0 : Many feature and performance enhancements from trixta
 * --------------------------------------------------------------------
 */

;jQuery.preloadCssImages = function(settings){
	settings = jQuery.extend({
		statusTextEl: null,
		statusBarEl: null,
		errorDelay: 999, // handles 404-Errors in IE
		simultaneousCacheLoading: 2
	}, settings);
	var allImgs = [],
		loaded = 0,
		imgUrls = [],
		thisSheetRules,	
		errorTimer;
	
	function onImgComplete(){
		clearTimeout(errorTimer);
		if (imgUrls && imgUrls.length && imgUrls[loaded]) {
			loaded++;
			if (settings.statusTextEl) {
				var nowloading = (imgUrls[loaded]) ? 
					'Now Loading: <span>' + imgUrls[loaded].split('/')[imgUrls[loaded].split('/').length - 1] : 
					'Loading complete'; // wrong status-text bug fixed
				jQuery(settings.statusTextEl).html('<span class="numLoaded">' + loaded + '</span> of <span class="numTotal">' + imgUrls.length + '</span> loaded (<span class="percentLoaded">' + (loaded / imgUrls.length * 100).toFixed(0) + '%</span>) <span class="currentImg">' + nowloading + '</span></span>');
			}
			if (settings.statusBarEl) {
				var barWidth = jQuery(settings.statusBarEl).width();
				jQuery(settings.statusBarEl).css('background-position', -(barWidth - (barWidth * loaded / imgUrls.length).toFixed(0)) + 'px 50%');
			}
			loadImgs();
		}
	}
	
	function loadImgs(){
		//only load 1 image at the same time / most browsers can only handle 2 http requests, 1 should remain for user-interaction (Ajax, other images, normal page requests...)
		// otherwise set simultaneousCacheLoading to a higher number for simultaneous downloads
		if(imgUrls && imgUrls.length && imgUrls[loaded]){
			var img = new Image(); //new img obj
			img.src = imgUrls[loaded];	//set src either absolute or rel to css dir
			if(!img.complete){
				jQuery(img).bind('error load onreadystatechange', onImgComplete);
			} else {
				onImgComplete();
			}
			errorTimer = setTimeout(onImgComplete, settings.errorDelay); // handles 404-Errors in IE
		}
	}
	
	function parseCSS(sheets, urls) {
		var w3cImport = false,
			imported = [],
			importedSrc = [],
			baseURL;
		var sheetIndex = sheets.length;
		while(sheetIndex--){//loop through each stylesheet
			
			var cssPile = '';//create large string of all css rules in sheet
			
			if(urls && urls[sheetIndex]){
				baseURL = urls[sheetIndex];
			} else {
				var csshref = (sheets[sheetIndex].href) ? sheets[sheetIndex].href : 'window.location.href';
				var baseURLarr = csshref.split('/');//split href at / to make array
				baseURLarr.pop();//remove file path from baseURL array
				baseURL = baseURLarr.join('/');//create base url for the images in this sheet (css file's dir)
				if (baseURL) {
					baseURL += '/'; //tack on a / if needed
				}
			}
			if(sheets[sheetIndex].cssRules || sheets[sheetIndex].rules){
				thisSheetRules = (sheets[sheetIndex].cssRules) ? //->>> http://www.quirksmode.org/dom/w3c_css.html
					sheets[sheetIndex].cssRules : //w3
					sheets[sheetIndex].rules; //ie 
				var ruleIndex = thisSheetRules.length;
				while(ruleIndex--){
					if(thisSheetRules[ruleIndex].style && thisSheetRules[ruleIndex].style.cssText){
						var text = thisSheetRules[ruleIndex].style.cssText;
						if(text.toLowerCase().indexOf('url') != -1){ // only add rules to the string if you can assume, to find an image, speed improvement
							cssPile += text; // thisSheetRules[ruleIndex].style.cssText instead of thisSheetRules[ruleIndex].cssText is a huge speed improvement
						}
					} else if(thisSheetRules[ruleIndex].styleSheet) {
						imported.push(thisSheetRules[ruleIndex].styleSheet);
						w3cImport = true;
					}
					
				}
			}
			//parse cssPile for image urls
			var tmpImage = cssPile.match(/[^\("]+\.(gif|jpg|jpeg|png)/g);//reg ex to get a string of between a "(" and a ".filename" / '"' for opera-bugfix
			if(tmpImage){
				var i = tmpImage.length;
				while(i--){ // handle baseUrl here for multiple stylesheets in different folders bug
					var imgSrc = (tmpImage[i].charAt(0) == '/' || tmpImage[i].match('://')) ? // protocol-bug fixed
						tmpImage[i] : 
						baseURL + tmpImage[i];
					
					if(jQuery.inArray(imgSrc, imgUrls) == -1){
						imgUrls.push(imgSrc);
					}
				}
			}
			
			if(!w3cImport && sheets[sheetIndex].imports && sheets[sheetIndex].imports.length) {
				for(var iImport = 0, importLen = sheets[sheetIndex].imports.length; iImport < importLen; iImport++){
					var iHref = sheets[sheetIndex].imports[iImport].href;
					iHref = iHref.split('/');
					iHref.pop();
					iHref = iHref.join('/');
					if (iHref) {
						iHref += '/'; //tack on a / if needed
					}
					var iSrc = (iHref.charAt(0) == '/' || iHref.match('://')) ? // protocol-bug fixed
						iHref : 
						baseURL + iHref;
					
					importedSrc.push(iSrc);
					imported.push(sheets[sheetIndex].imports[iImport]);
				}
				
				
			}
		}//loop
		if(imported.length){
			parseCSS(imported, importedSrc);
			return false;
		}
		var downloads = settings.simultaneousCacheLoading;
		while( downloads--){
			setTimeout(loadImgs, downloads);
		}
	}
	parseCSS(document.styleSheets);
	return imgUrls;
};;
// ColorBox v1.3.6 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
// c) 2009 Jack Moore - www.colorpowered.com - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php

(function ($) {
	// Shortcuts (to increase compression)
	var colorbox = 'colorbox',
	hover = 'hover',
	TRUE = true,
	FALSE = false,
	cboxPublic,
	isIE = $.browser.msie && !$.support.opacity, // feature detection alone gave false positives in some browsers
	isIE6 = isIE && $.browser.version < 7,

	// Event Strings (to increase compression)
	cbox_open = 'cbox_open',
	cbox_load = 'cbox_load',
	cbox_complete = 'cbox_complete',
	cbox_cleanup = 'cbox_cleanup',
	cbox_closed = 'cbox_closed',
	cbox_resize = 'resize.cbox_resize',

	// Cached jQuery Object Variables
	$overlay,
	$cbox,
	$wrap,
	$content,
	$topBorder,
	$leftBorder,
	$rightBorder,
	$bottomBorder,
	$related,
	$window,
	$loaded,
	$loadingBay,
	$loadingOverlay,
	$loadingGraphic,
	$title,
	$current,
	$slideshow,
	$next,
	$prev,
	$close,

	// Variables for cached values or use across multiple functions
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	bookmark,
	index,
	settings,
	open,
	active,
	
	// ColorBox Default Settings.	
	// See http://colorpowered.com/colorbox for details.
	defaults = {
		transition: "elastic",
		speed: 350,
		width: FALSE,
		height: FALSE,
		innerWidth: FALSE,
		innerHeight: FALSE,
		initialWidth: "400",
		initialHeight: "400",
		maxWidth: FALSE,
		maxHeight: FALSE,
		scalePhotos: TRUE,
		scrolling: TRUE,
		inline: FALSE,
		html: FALSE,
		iframe: FALSE,
		photo: FALSE,
		href: FALSE,
		title: FALSE,
		rel: FALSE,
		opacity: 0.9,
		preloading: TRUE,
		current: "image {current} of {total}",
		previous: "previous",
		next: "next",
		close: "close",
		open: FALSE,
		overlayClose: TRUE,
		
		slideshow: FALSE,
		slideshowAuto: TRUE,
		slideshowSpeed: 2500,
		slideshowStart: "start slideshow",
		slideshowStop: "stop slideshow",
		
		onOpen: FALSE,
		onLoad: FALSE,
		onComplete: FALSE,
		onCleanup: FALSE,
		onClosed: FALSE
	};
	
	// ****************
	// HELPER FUNCTIONS
	// ****************
		
	// Convert % values to pixels
	function setSize(size, dimension) {
		dimension = dimension === 'x' ? $window.width() : $window.height();//document.documentElement.clientWidth : document.documentElement.clientHeight;
		return (typeof size === 'string') ? Math.round((size.match(/%/) ? (dimension / 100) * parseInt(size, 10) : parseInt(size, 10))) : size;
	}

	// Checks an href to see if it is a photo.
	// There is a force photo option (photo: true) for hrefs that cannot be matched by this regex.
	function isImage(url) {
		url = $.isFunction(url) ? url.call(element) : url;
		return settings.photo || url.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i);
	}
	
	// Assigns functions results to their respective settings.  This allows functions to be used to set ColorBox options.
	function process() {
		for (var i in settings) {
			if ($.isFunction(settings[i]) && i.substring(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
			    settings[i] = settings[i].call(element);
			}
		}
		settings.rel = settings.rel || element.rel;
		settings.href = settings.href || element.href;
		settings.title = settings.title || element.title;
	}

	function launch(elem) {
		
		element = elem;
		
		settings = $.extend({}, $(element).data(colorbox));
		
		process(); // Convert functions to their returned values.
		
		if (settings.rel && settings.rel !== 'nofollow') {
			$related = $('.cboxElement').filter(function () {
				var relRelated = $(this).data(colorbox).rel || this.rel;
				return (relRelated === settings.rel);
			});
			index = $related.index(element);
			
			// Check direct calls to ColorBox.
			if (index < 0) {
				$related = $related.add(element);
				index = $related.length - 1;
			}
		} else {
			$related = $(element);
			index = 0;
		}
		
		if (!open) {
			open = TRUE;
			
			active = TRUE; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
			
			bookmark = element;
			
			bookmark.blur(); // Remove the focus from the calling element.
			
			// Set Navigation Key Bindings
			$(document).bind("keydown.cbox_close", function (e) {
				if (e.keyCode === 27) {
					e.preventDefault();
					cboxPublic.close();
				}
			}).bind("keydown.cbox_arrows", function (e) {
				if ($related.length > 1) {
					if (e.keyCode === 37) {
						e.preventDefault();
						$prev.click();
					} else if (e.keyCode === 39) {
						e.preventDefault();
						$next.click();
					}
				}
			});
			
			if (settings.overlayClose) {
				$overlay.css({"cursor": "pointer"}).one('click', cboxPublic.close);
			}
			
			$.event.trigger(cbox_open);
			if (settings.onOpen) {
				settings.onOpen.call(element);
			}
			
			$overlay.css({"opacity": settings.opacity}).show();
			
			// Opens inital empty ColorBox prior to content being loaded.
			settings.w = setSize(settings.initialWidth, 'x');
			settings.h = setSize(settings.initialHeight, 'y');
			cboxPublic.position(0);
			
			if (isIE6) {
				$window.bind('resize.cboxie6 scroll.cboxie6', function () {
					$overlay.css({width: $window.width(), height: $window.height(), top: $window.scrollTop(), left: $window.scrollLeft()});
				}).trigger("scroll.cboxie6");
			}
		}
		
		$current.add($prev).add($next).add($slideshow).add($title).hide();
		
		$close.html(settings.close).show();
		
		cboxPublic.slideshow();
		
		cboxPublic.load();
	}

	// ****************
	// PUBLIC FUNCTIONS
	// Usage format: $.fn.colorbox.close();
	// Usage from within an iframe: parent.$.fn.colorbox.close();
	// ****************
	
	cboxPublic = $.fn.colorbox = function (options, callback) {
		var $this = this;
		
		if (!$this.length) {
			if ($this.selector === '') { // empty selector means a direct call, ie: $.fn.colorbox();
				$this = $('<a/>');
				options.open = TRUE;
			} else { // else the selector didn't match anything, and colorbox should go ahead and return.
				return this;
			}
		}
		
		$this.each(function () {
			var data = $.extend({}, $(this).data(colorbox) ? $(this).data(colorbox) : defaults, options);
			
			$(this).data(colorbox, data).addClass("cboxElement");
			
			if (callback) {
				$(this).data(colorbox).onComplete = callback;
			}
		});
		
		if (options && options.open) {
			launch($this);
		}
		
		return this;
	};

	// Initialize ColorBox: store common calculations, preload the interface graphics, append the html.
	// This preps colorbox for a speedy open when clicked, and lightens the burdon on the browser by only
	// having to run once, instead of each time colorbox is opened.
	cboxPublic.init = function () {
		
		// jQuery object generator to save a bit of space
		function $div(id) {
			return $('<div id="cbox' + id + '"/>');
		}
		
		// Create & Append jQuery Objects
		$window = $(window);
		$cbox = $('<div id="colorbox"/>');
		$overlay = $div("Overlay").hide();
		$wrap = $div("Wrapper");
		$content = $div("Content").append(
			$loaded = $div("LoadedContent").css({width: 0, height: 0}),
			$loadingOverlay = $div("LoadingOverlay"),
			$loadingGraphic = $div("LoadingGraphic"),
			$title = $div("Title"),
			$current = $div("Current"),
			$slideshow = $div("Slideshow"),
			$next = $div("Next"),
			$prev = $div("Previous"),
			$close = $div("Close")
		);
		$wrap.append( // The 3x3 Grid that makes up ColorBox
			$('<div/>').append(
				$div("TopLeft"),
				$topBorder = $div("TopCenter"),
				$div("TopRight")
			),
			$('<div/>').append(
				$leftBorder = $div("MiddleLeft"),
				$content,
				$rightBorder = $div("MiddleRight")
			),
			$('<div/>').append(
				$div("BottomLeft"),
				$bottomBorder = $div("BottomCenter"),
				$div("BottomRight")
			)
		).children().children().css({'float': 'left'});
		
		$loadingBay = $("<div style='position:absolute; top:0; left:0; width:9999px; height:0;'/>");
		
		$('body').prepend($overlay, $cbox.append($wrap, $loadingBay));
				
		if (isIE) {
			$cbox.addClass('cboxIE');
			if (isIE6) {
				$overlay.css('position', 'absolute');
			}
		}
		
		// Add rollover event to navigation elements
		$content.children()
		.bind('mouseover mouseout', function(){
			$(this).toggleClass(hover);
		}).addClass(hover);
		
		// Cache values needed for size calculations
		interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(TRUE) - $content.height();//Subtraction needed for IE6
		interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(TRUE) - $content.width();
		loadedHeight = $loaded.outerHeight(TRUE);
		loadedWidth = $loaded.outerWidth(TRUE);
		
		// Setting padding to remove the need to do size conversions during the animation step.
		$cbox.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
		
		// Setup button & key events.
		$next.click(cboxPublic.next);
		$prev.click(cboxPublic.prev);
		$close.click(cboxPublic.close);
		
		// Adding the 'hover' class allowed the browser to load the hover-state
		// background graphics.  The class can now can be removed.
		$content.children().removeClass(hover);
		
		$('.cboxElement').live('click', function (e) {
			if (e.button !== 0 && typeof e.button !== 'undefined') {// checks to see if it was a non-left mouse-click.
				return TRUE;
			} else {
				launch(this);			
				return FALSE;
			}
		});
	};

	cboxPublic.position = function (speed, loadedCallback) {
		var
		animate_speed,
		winHeight = $window.height(),
		// keeps the top and left positions within the browser's viewport.
		posTop = Math.max(winHeight - settings.h - loadedHeight - interfaceHeight,0)/2 + $window.scrollTop(),
		posLeft = Math.max(document.documentElement.clientWidth - settings.w - loadedWidth - interfaceWidth,0)/2 + $window.scrollLeft();
		
		// setting the speed to 0 to reduce the delay between same-sized content.
		animate_speed = ($cbox.width() === settings.w+loadedWidth && $cbox.height() === settings.h+loadedHeight) ? 0 : speed;
		
		// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
		// but it has to be shrank down around the size of div#colorbox when it's done.  If not,
		// it can invoke an obscure IE bug when using iframes.
		$wrap[0].style.width = $wrap[0].style.height = "9999px";
		
		function modalDimensions (that) {
			// loading overlay size has to be sure that IE6 uses the correct height.
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = that.style.width;
			$loadingGraphic[0].style.height = $loadingOverlay[0].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
		}
		
		$cbox.dequeue().animate({width:settings.w+loadedWidth, height:settings.h+loadedHeight, top:posTop, left:posLeft}, {duration: animate_speed,
			complete: function(){
				modalDimensions(this);
				
				active = FALSE;
				
				// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
				$wrap[0].style.width = (settings.w+loadedWidth+interfaceWidth) + "px";
				$wrap[0].style.height = (settings.h+loadedHeight+interfaceHeight) + "px";
				
				if (loadedCallback) {loadedCallback();}
			},
			step: function(){
				modalDimensions(this);
			}
		});
	};

	cboxPublic.resize = function (object) {
		if(!open){ return; }
		
		var topMargin,
		prev,
		prevSrc,
		next,
		nextSrc,
		photo,
		timeout,
		speed = settings.transition==="none" ? 0 : settings.speed;
		
		$window.unbind(cbox_resize);
		
		if(!object){
			timeout = setTimeout(function(){ // timer allows IE to render the dimensions before attempting to calculate the height
				var $child = $loaded.wrapInner("<div style='overflow:auto'></div>").children(); // temporary wrapper to get an accurate estimate of just how high the total content should be.
				settings.h = $child.height();
				$loaded.css({height:settings.h});
				$child.replaceWith($child.children()); // ditch the temporary wrapper div used in height calculation
				cboxPublic.position(speed);
			}, 1);
			return;
		}
		
		$loaded.remove();
		$loaded = $('<div id="cboxLoadedContent"/>').html(object);
		
		function getWidth(){
			settings.w = settings.w || $loaded.width();
			settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
			return settings.w;
		}
		function getHeight(){
			settings.h = settings.h || $loaded.height();
			settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
			return settings.h;
		}
		
		$loaded.hide()
		.appendTo($loadingBay)// content has to be appended to the DOM for accurate size calculations.  Appended to an absolutely positioned element, rather than BODY, which avoids an extremely brief display of the vertical scrollbar in Firefox that can occur for a small minority of websites.
		.css({width:getWidth(), overflow:settings.scrolling ? 'auto' : 'hidden'})
		.css({height:getHeight()})// sets the height independently from the width in case the new width influences the value of height.
		.prependTo($content);
		
		$('#cboxPhoto').css({cssFloat:'none'});// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
		
		// Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
		if (isIE6) {
			$('select:not(#colorbox select)').filter(function(){
				return this.style.visibility !== 'hidden';
			}).css({'visibility':'hidden'}).one(cbox_cleanup, function(){
				this.style.visibility = 'inherit';
			});
		}
				
		function setPosition (s) {
			cboxPublic.position(s, function(){
				if (!open) { return; }
				
				if (isIE) {
					//This fadeIn helps the bicubic resampling to kick-in.
					if( photo ){$loaded.fadeIn(100);}
					//IE adds a filter when ColorBox fades in and out that can cause problems if the loaded content contains transparent pngs.
					$cbox[0].style.removeAttribute("filter");
				}
				
				//Waited until the iframe is added to the DOM & it is visible before setting the src.
				//This increases compatability with pages using DOM dependent JavaScript.
				if(settings.iframe){
					$loaded.append("<iframe id='cboxIframe'" + (settings.scrolling ? " " : "scrolling='no'") + " name='iframe_"+new Date().getTime()+"' frameborder=0 src='"+settings.href+"' " + (isIE ? "allowtransparency='true'" : '') + " />");
				}
				
				$loaded.show();
				
				$title.show().html(settings.title);
				
				if ($related.length>1) {
					$current.html(settings.current.replace(/\{current\}/, index+1).replace(/\{total\}/, $related.length)).show();
					$next.html(settings.next).show();
					$prev.html(settings.previous).show();
					
					if(settings.slideshow){
						$slideshow.show();
					}
				}
				
				$loadingOverlay.hide();
				$loadingGraphic.hide();
				
				$.event.trigger(cbox_complete);
				if (settings.onComplete) {
					settings.onComplete.call(element);
				}
				
				if (settings.transition === 'fade'){
					$cbox.fadeTo(speed, 1, function(){
						if(isIE){$cbox[0].style.removeAttribute("filter");}
					});
				}
				
				$window.bind(cbox_resize, function(){
					cboxPublic.position(0);
				});
			});
		}
		
		if((settings.transition === 'fade' && $cbox.fadeTo(speed, 0, function(){setPosition(0);})) || setPosition(speed)){}
		
		// Preloads images within a rel group
		if (settings.preloading && $related.length>1) {
			prev = index > 0 ? $related[index-1] : $related[$related.length-1];
			next = index < $related.length-1 ? $related[index+1] : $related[0];
			nextSrc = $(next).data(colorbox).href || next.href;
			prevSrc = $(prev).data(colorbox).href || prev.href;
			
			if(isImage(nextSrc)){
				$('<img />').attr('src', nextSrc);
			}
			
			if(isImage(prevSrc)){
				$('<img />').attr('src', prevSrc);
			}
		}
	};

	cboxPublic.load = function () {
		var href, img, setResize, resize = cboxPublic.resize;
		
		active = TRUE;
		
		/*
		 
		// I decided to comment this out because I can see it causing problems as users
		// really should just set the dimensions on their IMG elements instead,
		// but I'm leaving the code in as it may be useful to someone.
		// To use, uncomment the function and change 'if(textStatus === "success"){ resize(this); }'
		// to 'if(textStatus === "success"){ preload(this); }'
		
		// Preload loops through the HTML to find IMG elements and loads their sources.
		// This allows the resize method to accurately estimate the dimensions of the new content.
		function preload(html){
			var
			$ajax = $(html),
			$imgs = $ajax.find('img'),
			x = $imgs.length;
			
			function loadloop(){
				var img = new Image();
				x = x-1;
				if(x >= 0){
					img.onload = loadloop;
					img.src = $imgs[x].src;
				} else {
					resize($ajax);
				}
			}
			
			loadloop();
		}
		*/
		
		element = $related[index];
		
		settings = $.extend({}, $(element).data(colorbox));
		
		//convert functions to static values
		process();
		
		$.event.trigger(cbox_load);
		if (settings.onLoad) {
			settings.onLoad.call(element);
		}
		
		// Evaluate the height based on the optional height and width settings.
		settings.h = settings.height ?
				setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
				settings.innerHeight ?
					setSize(settings.innerHeight, 'y') :
					FALSE;
		settings.w = settings.width ?
				setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
				settings.innerWidth ?
					setSize(settings.innerWidth, 'x') :
					FALSE;
		
		// Sets the minimum dimensions for use in image scaling
		settings.mw = settings.w;
		settings.mh = settings.h;
		
		// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
		// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
		if(settings.maxWidth){
			settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if(settings.maxHeight){
			settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}
		
		href = settings.href;
		
		$loadingOverlay.show();
		$loadingGraphic.show();
		
		if (settings.inline) {
			// Inserts an empty placeholder where inline content is being pulled from.
			// An event is bound to put inline content back when ColorBox closes or loads new content.
			$('<div id="cboxInlineTemp" />').hide().insertBefore($(href)[0]).bind(cbox_load+' '+cbox_cleanup, function(){
				$(this).replaceWith($loaded.children());
			});
			resize($(href));
		} else if (settings.iframe) {
			// IFrame element won't be added to the DOM until it is ready to be displayed,
			// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
			resize(" ");
		} else if (settings.html) {
			resize(settings.html);
		} else if (isImage(href)){
			img = new Image();
			img.onload = function(){
				var percent;
				
				img.onload = null;
				
				img.id = 'cboxPhoto';
				
				$(img).css({margin:'auto', border:'none', display:'block', cssFloat:'left'});
				
				if(settings.scalePhotos){
					setResize = function(){
						img.height -= img.height * percent;
						img.width -= img.width * percent;	
					};
					if(settings.mw && img.width > settings.mw){
						percent = (img.width - settings.mw) / img.width;
						setResize();
					}
					if(settings.mh && img.height > settings.mh){
						percent = (img.height - settings.mh) / img.height;
						setResize();
					}
				}
				
				if (settings.h) {
					img.style.marginTop = Math.max(settings.h - img.height,0)/2 + 'px';
				}
				
				resize(img);
				
				if($related.length > 1){
					$(img).css({cursor:'pointer'}).click(cboxPublic.next);
				}
				
				if(isIE){
					img.style.msInterpolationMode='bicubic';
				}
			};
			img.src = href;
		} else {
			$('<div />').appendTo($loadingBay).load(href, function(data, textStatus){
				if(textStatus === "success"){
					resize(this);
				} else {
					resize($("<p>Request unsuccessful.</p>"));
				}
			});
		}
	};

	// Navigates to the next page/image in a set.
	cboxPublic.next = function () {
		if(!active){
			index = index < $related.length-1 ? index+1 : 0;
			cboxPublic.load();
		}
	};
	
	cboxPublic.prev = function () {
		if(!active){
			index = index > 0 ? index-1 : $related.length-1;
			cboxPublic.load();
		}
	};

	cboxPublic.slideshow = function () {
		var stop, timeOut, className = 'cboxSlideshow_';
		
		$slideshow.bind(cbox_closed, function(){
			$slideshow.unbind();
			clearTimeout(timeOut);
			$cbox.removeClass(className+"off"+" "+className+"on");
		});
		
		function start(){
			$slideshow
			.text(settings.slideshowStop)
			.bind(cbox_complete, function(){
				timeOut = setTimeout(cboxPublic.next, settings.slideshowSpeed);
			})
			.bind(cbox_load, function(){
				clearTimeout(timeOut);	
			}).one("click", function(){
				stop();
				$(this).removeClass(hover);
			});
			$cbox.removeClass(className+"off").addClass(className+"on");
		}
		
		stop = function(){
			clearTimeout(timeOut);
			$slideshow
			.text(settings.slideshowStart)
			.unbind(cbox_complete+' '+cbox_load)
			.one("click", function(){
				start();
				timeOut = setTimeout(cboxPublic.next, settings.slideshowSpeed);
				$(this).removeClass(hover);
			});
			$cbox.removeClass(className+"on").addClass(className+"off");
		};
		
		if(settings.slideshow && $related.length>1){
			if(settings.slideshowAuto){
				start();
			} else {
				stop();
			}
		}
	};

	// Note: to use this within an iframe use the following format: parent.$.fn.colorbox.close();
	cboxPublic.close = function () {
		
		$.event.trigger(cbox_cleanup);
		if (settings.onCleanup) {
			settings.onCleanup.call(element);
		}
		
		open = FALSE;
		$(document).unbind("keydown.cbox_close keydown.cbox_arrows");
		$window.unbind(cbox_resize+' resize.cboxie6 scroll.cboxie6');
		$overlay.css({cursor: 'auto'}).fadeOut('fast');
		
		$cbox
		.stop(TRUE, FALSE)
		.fadeOut('fast', function () {
			$('#colorbox iframe').attr('src', 'about:blank');
			$loaded.remove();
			$cbox.css({'opacity': 1});
			
			try{
				bookmark.focus();
			} catch (er){
				// do nothing
			}
			
			$.event.trigger(cbox_closed);
			if (settings.onClosed) {
				settings.onClosed.call(element);
			}
		});
	};

	// A method for fetching the current element ColorBox is referencing.
	// returns a jQuery object.
	cboxPublic.element = function(){ return $(element); };

	cboxPublic.settings = defaults;

	// Initializes ColorBox when the DOM has loaded
	$(cboxPublic.init);

}(jQuery));
;
/**
 * @author Alexander Farkas
 * v. 1.1
 */

(function($){
	
	if(!document.defaultView || !document.defaultView.getComputedStyle){
		var oldCurCSS = jQuery.curCSS;
		jQuery.curCSS = function(elem, name, force){
			if(name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[ name ]){
				return oldCurCSS.apply(this, arguments);
			}
			var style = elem.style;
			if ( !force && style && style[ name ] ){
				return style[ name ];
			}
			return oldCurCSS(elem, 'backgroundPositionX', force) +' '+ oldCurCSS(elem, 'backgroundPositionY', force);
		};
	}
})(jQuery);

(function($) {
	
	function toArray(strg){
		strg = strg.replace(/left|top/g,'0px');
		strg = strg.replace(/right|bottom/g,'100%');
		strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
		var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
		return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
	}
	
	$.fx.step. backgroundPosition = function(fx) {
		if (!fx.bgPosReady) {
			
			var start = $.curCSS(fx.elem,'backgroundPosition');
			if(!start){//FF2 no inline-style fallback
				start = '0px 0px';
			}
			
			start = toArray(start);
			fx.start = [start[0],start[2]];
			
			var end = toArray(fx.options.curAnim.backgroundPosition);
			fx.end = [end[0],end[2]];
			
			fx.unit = [end[1],end[3]];
			fx.bgPosReady = true;
		}
		
		var nowPosX = [];
		nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
		nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];           
		fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];

	};
})(jQuery);;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Martin Majoor, 1995. Published by FontShop International. FontFont release 1
 * 
 * Manufacturer:
 * Martin Majoor, . Published by FontShop International. FontFont release
 */
Cufon.registerFont({"w":250,"face":{"font-family":"Scala","font-weight":550,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 6 0 0 2 0 3","ascent":"800","descent":"-200","x-height":"13","bbox":"-7 -870 934 256","underline-thickness":"20","underline-position":"-150","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{},"#":{"d":"361,-401r-143,0r-26,130r143,0xm511,-271r-10,57r-115,0r-41,214r-62,0r41,-214r-143,0r-43,214r-61,0r43,-214r-115,0r10,-57r116,0r27,-130r-117,0r10,-57r117,0r40,-200r60,0r-39,200r143,0r39,-200r62,0r-40,200r112,0r-10,57r-112,0r-25,130r113,0","w":550},"$":{"d":"166,-525v0,11,1,22,4,31v3,9,8,18,14,26v6,8,14,17,26,26v12,9,27,19,45,30r0,-213v-29,5,-51,16,-66,33v-15,17,-23,40,-23,67xm301,-41v36,-15,61,-30,76,-46v15,-16,22,-37,22,-62v0,-12,-2,-23,-5,-33v-3,-10,-8,-20,-16,-30v-8,-10,-18,-20,-31,-30v-13,-10,-28,-20,-46,-31r0,232xm255,13v-22,-1,-41,-3,-57,-5v-16,-2,-31,-4,-44,-8v-13,-4,-26,-9,-38,-15v-12,-6,-26,-13,-40,-22r57,-66v8,9,15,17,21,23v6,6,12,11,18,16v6,5,11,11,18,16v7,5,16,10,27,17r38,-3r0,-264r-18,-10v-31,-17,-57,-34,-77,-48v-20,-14,-36,-28,-48,-43v-12,-15,-21,-30,-26,-46v-5,-16,-8,-34,-8,-53v0,-24,4,-46,13,-66v9,-20,21,-38,37,-54v16,-16,34,-28,56,-38v22,-10,45,-16,71,-18r0,-58r46,0r0,57v15,1,29,1,42,3v13,2,25,4,37,8v12,4,26,9,39,15v13,6,28,14,45,23r-60,64v-8,-9,-15,-16,-21,-22v-9,-8,-9,-8,-17,-16v-6,-5,-12,-10,-19,-15r-25,-17r-21,2r0,246v37,21,67,39,91,56v24,17,42,33,56,48v14,15,24,32,30,48v6,16,8,34,8,54v0,38,-9,72,-28,103v-19,31,-45,53,-78,68v-13,5,-24,9,-34,11v-10,2,-26,5,-45,6r0,58r-46,0r0,-55","w":543},"%":{"d":"526,-162v0,16,3,30,9,44v6,14,15,26,25,36v10,10,22,19,36,25v14,6,29,9,45,9v16,0,31,-3,45,-9v14,-6,26,-15,36,-25v10,-10,18,-22,24,-36v6,-14,9,-28,9,-44v0,-16,-3,-31,-9,-45v-6,-14,-14,-27,-24,-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,-19,23,-25,37v-6,14,-9,29,-9,45xm95,-495v0,16,3,31,9,45v6,14,14,26,24,36v10,10,22,19,36,25v14,6,29,9,45,9v16,0,31,-3,45,-9v14,-6,26,-15,36,-25v10,-10,19,-22,25,-36v6,-14,9,-29,9,-45v0,-16,-3,-31,-9,-45v-6,-14,-15,-25,-25,-36v-10,-11,-22,-19,-36,-25v-14,-6,-29,-9,-45,-9v-16,0,-31,3,-45,9v-14,6,-26,14,-36,25v-10,11,-18,22,-24,36v-6,14,-9,29,-9,45xm816,-162v0,24,-5,47,-14,68v-9,21,-22,40,-38,56v-16,16,-34,28,-55,37v-21,9,-44,14,-68,14v-24,0,-47,-5,-68,-14v-21,-9,-40,-21,-56,-37v-16,-16,-28,-35,-37,-56v-9,-21,-14,-44,-14,-68v0,-24,5,-47,14,-68v9,-21,21,-40,37,-56v16,-16,35,-29,56,-38v21,-9,44,-13,68,-13v24,0,47,4,68,13v21,9,39,22,55,38v16,16,29,35,38,56v9,21,14,44,14,68xm384,-495v0,24,-5,47,-14,68v-9,21,-21,40,-37,56v-16,16,-35,28,-56,37v-21,9,-44,14,-68,14v-24,0,-47,-5,-68,-14v-21,-9,-39,-21,-55,-37v-16,-16,-29,-35,-38,-56v-9,-21,-14,-44,-14,-68v0,-24,5,-47,14,-68v9,-21,22,-40,38,-56v16,-16,34,-29,55,-38v21,-9,44,-14,68,-14v24,0,47,5,68,14v21,9,40,22,56,38v16,16,28,35,37,56v9,21,14,44,14,68xm115,46r559,-733r69,0r-575,733r-53,0","w":850},"&":{"d":"244,-35v23,0,46,-7,72,-21v26,-14,51,-32,74,-57r-177,-248v-35,30,-59,57,-73,83v-14,26,-21,55,-21,86v0,21,4,40,11,59v7,19,16,35,27,50v11,15,25,26,40,35v15,9,31,13,47,13xm703,-100v-16,24,-30,43,-41,58v-11,15,-22,26,-32,34v-10,8,-21,13,-32,16v-11,3,-23,5,-38,5v-15,0,-28,-2,-40,-5v-12,-3,-25,-7,-36,-14v-11,-7,-23,-17,-34,-28v-11,-11,-23,-25,-35,-41v-32,31,-63,53,-92,67v-29,14,-62,21,-97,21v-28,0,-54,-5,-77,-14v-23,-9,-44,-23,-61,-39v-17,-16,-30,-35,-40,-58v-10,-23,-15,-47,-15,-73v0,-26,5,-52,16,-77v11,-25,26,-47,45,-68r17,-17v5,-5,11,-11,18,-17v7,-6,15,-12,24,-20v14,-12,14,-12,35,-28v-15,-19,-27,-35,-37,-50v-10,-15,-18,-29,-24,-42v-6,-13,-10,-26,-13,-39v-3,-13,-4,-26,-4,-41v0,-25,4,-47,14,-68v10,-21,23,-39,40,-54v17,-15,38,-26,61,-34v23,-8,49,-13,77,-13v23,0,45,3,65,10v20,7,37,16,51,28v14,12,26,27,34,43v8,16,12,34,12,54v0,22,-5,43,-16,64v-11,21,-28,39,-49,55r-69,53r-25,-33v16,-13,29,-25,40,-35v11,-10,19,-20,25,-30v6,-10,12,-21,14,-32v2,-11,3,-23,3,-36v0,-69,-31,-103,-93,-103v-31,0,-56,10,-76,30v-20,20,-30,46,-30,78v0,21,4,43,14,67v10,24,23,49,40,72r200,277r22,-38v6,-11,11,-21,16,-31v8,-16,8,-16,16,-34r18,-43r-82,0r0,-37r226,0r0,37r-97,0v-7,20,-14,37,-20,51v-6,14,-13,29,-19,42v-6,13,-13,26,-21,40r-30,51v23,31,43,52,59,64v16,12,32,18,51,18v17,0,31,-5,44,-14v13,-9,28,-27,47,-52","w":703},"'":{"d":"96,-658r58,0r0,226r-58,0r0,-226"},"(":{"d":"231,256r-23,-32v-6,-9,-12,-19,-18,-29v-6,-10,-11,-21,-16,-33r-19,-42v-24,-57,-42,-110,-53,-161v-11,-51,-16,-104,-16,-161v0,-57,5,-110,16,-161v11,-51,29,-104,53,-161r19,-44v5,-12,10,-22,16,-32v6,-10,12,-19,18,-28r23,-32r43,0v-15,29,-30,63,-42,100v-12,37,-23,76,-32,116v-9,40,-15,81,-20,122v-5,41,-8,81,-8,120v0,39,3,79,8,120v5,41,11,82,20,122v9,40,20,79,32,116v12,37,27,71,42,100r-43,0","w":309},")":{"d":"153,120r-19,42v-5,12,-11,23,-16,33v-5,10,-12,20,-18,29r-22,32r-43,0v15,-29,29,-63,41,-100v12,-37,23,-76,32,-116v9,-40,17,-81,22,-122v5,-41,7,-81,7,-120v0,-39,-2,-79,-7,-120v-5,-41,-13,-82,-22,-122v-9,-40,-20,-79,-32,-116v-12,-37,-26,-71,-41,-100r43,0r22,32v6,9,13,18,18,28v5,10,11,20,16,32r19,44v24,57,42,110,53,161v11,51,16,104,16,161v0,57,-5,110,-16,161v-11,51,-29,104,-53,161","w":309},"*":{"d":"26,-495r23,-71r165,72r-12,38xm149,-257r-60,-44r119,-135r32,24xm412,-302r-60,44r-92,-155r32,-24xm451,-566r23,71r-176,39r-12,-38xm214,-685r74,0r-17,179r-40,0","w":500},"+":{"d":"38,-208r0,-57r209,0r0,-209r56,0r0,209r209,0r0,57r-209,0r0,208r-56,0r0,-208r-209,0","w":550},",":{"d":"190,-49v0,28,-9,58,-28,89v-19,31,-47,62,-82,92r-24,-31v24,-19,41,-36,50,-49v9,-13,14,-27,14,-42v0,-15,-4,-28,-12,-36v-8,-8,-21,-15,-40,-21v8,-22,17,-37,26,-45v9,-8,22,-12,39,-12v16,0,30,5,41,16v11,11,16,24,16,39"},"-":{"d":"233,-190r-191,0r0,-76r191,0r0,76","w":275},"\u00ad":{"d":"233,-190r-191,0r0,-76r191,0r0,76","w":275},".":{"d":"184,-48v0,17,-6,31,-18,42v-12,11,-25,17,-41,17v-16,0,-29,-6,-41,-17v-12,-11,-18,-25,-18,-42v0,-16,6,-30,18,-41v12,-11,25,-17,41,-17v16,0,29,6,41,17v12,11,18,25,18,41"},"\/":{"d":"50,243r251,-903r59,0r-252,903r-58,0","w":409},"0":{"d":"125,-230v0,24,5,47,14,68v9,21,22,40,38,56v16,16,35,29,56,38v21,9,44,14,69,14v24,0,46,-5,68,-14v22,-9,41,-22,57,-38v16,-16,29,-35,38,-56v9,-21,14,-44,14,-68v0,-25,-5,-48,-14,-69v-9,-21,-22,-40,-38,-56v-16,-16,-35,-29,-57,-38v-22,-9,-44,-14,-68,-14v-25,0,-48,5,-69,14v-21,9,-40,22,-56,38v-16,16,-29,35,-38,56v-9,21,-14,44,-14,69xm545,-230v0,33,-6,64,-19,94v-13,30,-30,56,-52,78v-22,22,-48,39,-78,52v-30,13,-61,19,-94,19v-34,0,-66,-6,-95,-19v-29,-13,-55,-30,-77,-52v-22,-22,-39,-48,-52,-78v-13,-30,-19,-61,-19,-94v0,-34,6,-66,19,-96v13,-30,30,-55,52,-77v22,-22,48,-39,77,-52v29,-13,61,-19,95,-19v33,0,64,6,94,19v30,13,56,30,78,52v22,22,39,47,52,77v13,30,19,62,19,96","w":603},"1":{"d":"329,0r-270,0r0,-37r97,0r0,-387r-97,0r0,-37r270,0r0,37r-98,0r0,387r98,0r0,37","w":387},"2":{"d":"465,0r-419,0r0,-35r165,-128v24,-18,43,-34,59,-49v16,-15,29,-29,38,-42v9,-13,16,-25,20,-38v4,-13,5,-27,5,-42v0,-27,-8,-48,-25,-64v-17,-16,-39,-24,-67,-24v-26,0,-50,6,-71,18v-21,12,-45,32,-71,61r-31,-30v18,-19,35,-36,50,-49v15,-13,30,-22,45,-30v15,-8,29,-14,44,-17v15,-3,31,-5,49,-5v23,0,45,3,64,10v19,7,36,16,50,28v14,12,25,25,33,41v8,16,12,34,12,53v0,28,-8,56,-25,83v-17,27,-43,53,-76,77r-157,115r263,0r0,-96r45,-1r0,164","w":528},"3":{"d":"139,239v-7,3,-14,5,-21,7v-7,2,-15,3,-23,4v-8,1,-17,3,-27,4v-10,1,-22,1,-35,2r0,-43v42,-4,76,-11,103,-21v27,-10,53,-26,76,-45v23,-19,41,-42,54,-67v13,-25,19,-51,19,-77v0,-20,-4,-38,-11,-55v-7,-17,-16,-31,-28,-44v-12,-13,-26,-23,-42,-30v-16,-7,-35,-10,-54,-10r-44,0r0,-33v25,-15,46,-29,63,-42v17,-13,31,-27,42,-41v11,-14,18,-28,23,-43v5,-15,8,-31,8,-48v0,-23,-7,-42,-20,-57v-13,-15,-29,-23,-50,-23v-8,0,-15,1,-22,3v-7,2,-15,5,-22,10v-7,5,-16,12,-24,20v-8,8,-18,18,-29,31r-32,-30v25,-30,50,-52,75,-65v25,-13,52,-20,83,-20v18,0,35,4,51,10v16,6,29,15,40,26v11,11,20,25,27,40v7,15,10,31,10,49v0,31,-8,57,-25,80v-17,23,-47,47,-88,73v45,3,81,21,108,52v27,31,40,71,40,121v0,40,-9,76,-26,108v-17,32,-45,62,-82,91v-39,30,-78,51,-117,63","w":431},"4":{"d":"318,-58r0,-274r-215,274r215,0xm499,0r-106,0r0,243r-75,0r0,-243r-310,0r0,-18r360,-456r25,0r0,416r70,0r0,-47r36,0r0,105","w":549},"5":{"d":"244,190v-15,11,-29,21,-42,28v-13,7,-26,13,-41,18v-15,5,-31,9,-49,12v-18,3,-38,6,-62,8r0,-43v17,-2,33,-5,46,-7v13,-2,24,-4,34,-8v10,-4,21,-9,30,-14v9,-5,19,-11,29,-18v59,-41,88,-97,88,-169v0,-54,-15,-96,-45,-126v-30,-30,-78,-49,-142,-58r0,-274r224,0r0,-41r40,0r0,117r-220,0r0,133v74,10,131,35,171,74v40,39,60,89,60,152v0,40,-11,79,-32,117v-21,38,-51,71,-89,99","w":432},"6":{"d":"514,-698v-18,1,-34,2,-48,3v-14,1,-26,3,-37,6v-11,3,-22,5,-33,9v-11,4,-22,9,-34,15v-22,11,-43,23,-62,38v-19,15,-37,31,-52,49v-30,36,-53,80,-70,132v-17,52,-25,104,-25,159v0,36,5,69,13,101v8,32,19,60,33,84v14,24,31,42,50,56v19,14,40,20,62,20v23,0,47,-9,70,-26v23,-17,42,-40,55,-67v14,-27,21,-56,21,-85v0,-31,-9,-62,-25,-90v-16,-28,-37,-48,-62,-61v-23,-11,-50,-16,-83,-16r-48,0r9,-40v17,-4,31,-7,41,-8v10,-1,21,-2,33,-2v31,0,61,5,88,15v27,10,50,26,70,44v20,18,35,40,46,65v11,25,17,53,17,82v0,31,-6,61,-19,89v-13,28,-30,51,-52,72v-22,21,-47,37,-76,49v-29,12,-60,18,-93,18v-35,0,-68,-7,-97,-21v-29,-14,-53,-34,-74,-60v-21,-26,-37,-58,-48,-94v-11,-36,-17,-76,-17,-120v0,-49,7,-95,20,-140v13,-45,32,-86,56,-124v24,-38,53,-71,87,-100v34,-29,71,-51,112,-66r40,-14v0,0,24,-6,37,-8v13,-2,27,-3,42,-4v15,-1,33,-1,54,-1","w":610},"7":{"d":"162,181v-10,17,-27,42,-51,75r-69,-56r36,-34v10,-10,19,-19,28,-29v9,-10,18,-21,27,-33r31,-42v33,-45,56,-83,71,-116r155,-340r-315,0r0,92r-50,0r0,-188r50,0r0,29r380,0r0,38r-184,404v-5,13,-12,27,-21,44r-30,57v-11,21,-22,40,-32,56","w":489},"8":{"d":"289,-437r41,-38v16,-15,29,-33,38,-53v9,-20,13,-41,13,-64v0,-33,-10,-60,-29,-80v-19,-20,-45,-29,-78,-29v-32,0,-58,9,-78,28v-20,19,-29,44,-29,75v0,20,4,40,13,58v9,18,22,34,39,47xm255,-358r-68,60v-39,35,-59,79,-59,134v0,43,13,77,38,102v25,25,59,37,102,37v44,0,79,-12,106,-37v27,-25,41,-59,41,-100v0,-12,-1,-23,-3,-32v-2,-9,-5,-18,-10,-27v-5,-9,-12,-18,-20,-27v-8,-9,-20,-18,-33,-29xm220,-388r-72,-62v-21,-18,-38,-38,-49,-61v-11,-23,-17,-46,-17,-69v0,-22,5,-43,15,-62v10,-19,24,-36,41,-50v17,-14,38,-26,61,-34v23,-8,48,-13,75,-13v25,0,48,4,70,12v22,8,40,19,56,32v16,13,29,29,38,47v9,18,14,38,14,59v0,21,-7,43,-20,67v-13,24,-31,46,-54,65r-55,47r89,77v31,27,54,50,66,71v12,21,18,45,18,70v0,29,-6,57,-18,82v-12,25,-28,46,-48,64v-20,18,-44,34,-72,44v-28,10,-60,15,-93,15v-42,0,-77,-5,-103,-16v-26,-11,-49,-28,-68,-53v-27,-33,-40,-69,-40,-108v0,-56,31,-110,92,-162","w":550},"9":{"d":"96,215v18,-1,34,-3,48,-5v14,-2,26,-3,37,-6v11,-3,23,-6,33,-10v10,-4,21,-8,34,-14v47,-23,85,-51,114,-86v14,-17,26,-36,38,-58v12,-22,22,-45,30,-70v8,-25,15,-50,20,-76v5,-26,7,-53,7,-79v0,-35,-3,-68,-11,-98v-8,-30,-19,-56,-33,-78v-14,-22,-30,-39,-49,-52v-19,-13,-40,-19,-62,-19v-20,0,-40,4,-58,14v-18,10,-34,23,-47,40v-13,17,-24,36,-32,58v-8,22,-12,46,-12,71v0,50,15,90,45,119v30,29,72,44,124,44r49,0r-10,40v-19,4,-33,7,-43,8v-10,1,-22,2,-33,2v-31,0,-59,-5,-85,-16v-26,-11,-50,-25,-70,-44v-20,-19,-35,-42,-46,-67v-11,-25,-17,-52,-17,-81v0,-31,6,-60,19,-87v13,-27,30,-51,51,-72v21,-21,46,-37,75,-49v29,-12,60,-18,92,-18v34,0,66,7,95,22v29,15,54,35,75,61v21,26,38,57,50,92v12,35,18,74,18,115v0,44,-7,88,-21,131v-14,43,-33,84,-57,121v-24,37,-53,70,-86,99v-33,29,-69,50,-107,64v-13,5,-25,10,-37,13v-12,3,-25,4,-38,6v-13,2,-27,3,-43,4v-16,1,-35,2,-58,2","w":610},":":{"d":"182,-48v1,16,-5,30,-16,42v-11,12,-25,17,-42,17v-15,0,-29,-6,-40,-17v-11,-11,-16,-25,-16,-40v0,-16,5,-30,16,-41v11,-11,25,-17,40,-17v16,0,30,5,41,16v11,11,17,25,17,40xm182,-409v1,16,-5,30,-16,41v-11,11,-25,17,-42,17v-15,0,-29,-6,-40,-17v-11,-11,-16,-24,-16,-40v0,-16,5,-29,16,-40v11,-11,25,-17,40,-17v16,0,30,6,41,17v11,11,17,24,17,39"},";":{"d":"186,-409v1,16,-4,30,-16,41v-12,11,-26,17,-42,17v-16,0,-29,-6,-40,-17v-11,-11,-17,-24,-17,-40v0,-16,6,-29,17,-40v11,-11,24,-17,40,-17v15,0,28,6,40,17v12,11,18,24,18,39xm186,-49v0,28,-9,58,-28,89v-19,31,-47,62,-82,92r-25,-31v24,-19,41,-36,50,-49v9,-13,14,-27,14,-42v0,-15,-4,-28,-11,-36v-7,-8,-21,-15,-40,-21v8,-22,17,-37,26,-45v9,-8,22,-12,39,-12v15,0,29,5,40,16v11,11,17,24,17,39"},"\u037e":{"d":"186,-409v1,16,-4,30,-16,41v-12,11,-26,17,-42,17v-16,0,-29,-6,-40,-17v-11,-11,-17,-24,-17,-40v0,-16,6,-29,17,-40v11,-11,24,-17,40,-17v15,0,28,6,40,17v12,11,18,24,18,39xm186,-49v0,28,-9,58,-28,89v-19,31,-47,62,-82,92r-25,-31v24,-19,41,-36,50,-49v9,-13,14,-27,14,-42v0,-15,-4,-28,-11,-36v-7,-8,-21,-15,-40,-21v8,-22,17,-37,26,-45v9,-8,22,-12,39,-12v15,0,29,5,40,16v11,11,17,24,17,39"},"<":{"d":"511,0r-472,-210r0,-54r472,-210r0,63r-396,174r396,174r0,63","w":550},"=":{"d":"525,-134r-500,0r0,-57r500,0r0,57xm525,-273r-500,0r0,-56r500,0r0,56","w":550},">":{"d":"39,0r0,-63r396,-174r-396,-174r0,-63r472,210r0,54","w":550},"?":{"d":"198,-48v1,16,-5,30,-16,42v-11,12,-25,17,-41,17v-16,0,-30,-6,-41,-17v-11,-11,-16,-25,-16,-40v0,-16,5,-30,16,-41v11,-11,25,-17,40,-17v16,0,30,5,41,16v11,11,17,25,17,40xm146,-192r-25,0r0,-177r165,0v7,-11,10,-21,12,-29v2,-8,3,-19,3,-34v0,-31,-7,-60,-21,-87v-14,-27,-33,-48,-58,-64v-10,-7,-20,-12,-28,-17v-8,-5,-16,-8,-26,-12v-10,-4,-21,-8,-34,-11v-13,-3,-29,-7,-48,-12r35,-101v35,10,67,24,96,43v29,19,53,41,73,67v20,26,35,54,46,85v11,31,17,65,17,100v0,44,-11,79,-32,104v-21,25,-51,38,-88,38r-61,0","w":409},"@":{"d":"520,-185v11,-15,20,-30,28,-45v8,-15,15,-30,21,-46v6,-16,11,-34,16,-53v5,-19,9,-39,13,-62v-13,-17,-26,-30,-37,-37v-11,-7,-24,-10,-39,-10v-20,0,-39,7,-58,22v-19,15,-36,35,-50,60v-14,25,-25,54,-34,87v-9,33,-13,67,-13,102v0,56,13,84,40,84v13,0,31,-9,51,-27v20,-18,41,-44,62,-75xm569,-185v-11,19,-21,35,-31,49v-10,14,-20,25,-29,36v-9,11,-19,21,-29,30v-10,9,-20,19,-31,28v-17,13,-34,24,-53,32v-19,8,-35,12,-48,12v-9,0,-17,-4,-24,-11v-7,-7,-14,-18,-19,-31v-5,-13,-10,-28,-13,-46v-3,-18,-4,-38,-4,-59v0,-47,6,-91,18,-132v12,-41,30,-76,51,-106v21,-30,46,-54,75,-71v29,-17,61,-25,95,-25v9,0,17,0,23,1v6,1,12,2,18,4v6,2,14,4,20,7v6,3,13,8,22,13r30,-25r39,0r-57,355v-1,9,-2,17,-3,24v-1,7,-1,13,-1,18v0,13,5,24,16,31v11,7,25,11,44,11v15,0,29,-2,44,-6v15,-4,29,-10,42,-18v13,-8,25,-17,36,-28v11,-11,19,-22,26,-35v20,-36,30,-84,30,-145v0,-45,-7,-83,-20,-116v-13,-33,-34,-66,-63,-99v-17,-19,-33,-35,-51,-48v-18,-13,-37,-25,-57,-33v-20,-8,-41,-14,-64,-18v-23,-4,-48,-5,-75,-5v-57,0,-110,9,-156,26v-46,17,-85,41,-118,73v-33,32,-59,71,-77,116v-18,45,-27,95,-27,150v0,63,10,117,29,160v19,43,50,81,93,115v16,13,32,23,48,32v16,9,32,16,49,21v17,5,36,10,56,12v20,2,42,3,66,3v18,0,34,0,48,-1v14,-1,27,-3,39,-6v12,-3,26,-6,38,-11v12,-5,25,-10,39,-17r20,44v-31,15,-59,24,-86,30v-27,6,-58,9,-93,9v-28,0,-54,-2,-78,-5v-24,-3,-46,-7,-66,-14v-20,-7,-39,-17,-58,-28v-19,-11,-38,-24,-57,-39v-47,-38,-81,-81,-103,-129v-22,-48,-33,-104,-33,-168v0,-62,10,-119,31,-170v21,-51,50,-96,87,-133v37,-37,81,-66,133,-87v52,-21,109,-31,171,-31v61,0,114,9,159,27v45,18,86,47,124,87v35,37,60,75,76,115v16,40,23,88,23,142v0,28,-2,54,-5,76v-3,22,-8,42,-16,60v-8,18,-18,35,-30,50v-12,15,-25,29,-42,42v-43,33,-93,49,-152,49v-37,0,-65,-8,-82,-23v-17,-15,-25,-39,-25,-73v0,-9,1,-17,2,-27v1,-10,3,-19,5,-28","w":1000},"A":{"d":"428,-265r-107,-281r-113,281r220,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":691},"B":{"d":"230,-365r102,0v33,0,59,-11,80,-35v21,-24,31,-55,31,-92v0,-35,-10,-65,-29,-88v-19,-23,-43,-34,-73,-34r-111,0r0,249xm230,-45r112,0v42,0,75,-12,99,-35v24,-23,36,-56,36,-97v0,-21,-3,-39,-10,-57v-7,-18,-16,-33,-28,-46v-12,-13,-26,-23,-43,-30v-17,-7,-35,-10,-54,-10r-112,0r0,275xm67,0r0,-37r75,0r0,-586r-75,0r0,-37r304,0v23,0,44,4,64,13v20,9,38,20,53,35v15,15,26,32,35,52v9,20,13,41,13,64v0,19,-4,37,-12,54v-8,17,-18,32,-31,46v-13,14,-29,24,-47,32v-18,8,-37,14,-57,16v21,3,37,5,47,8v10,3,21,7,34,13v31,15,55,36,72,63v17,27,26,58,26,92v0,25,-5,47,-14,68v-9,21,-21,40,-37,55v-16,15,-35,27,-57,36v-22,9,-45,13,-70,13r-323,0","w":635},"C":{"d":"617,-29v-21,8,-40,15,-58,20v-18,5,-35,10,-52,13v-17,3,-33,6,-49,7v-16,1,-33,2,-51,2v-51,0,-99,-8,-143,-25v-44,-17,-80,-42,-112,-72v-32,-30,-57,-66,-75,-108v-18,-42,-27,-87,-27,-136v0,-49,8,-94,26,-136v18,-42,43,-77,74,-108v31,-31,68,-56,110,-74v42,-18,87,-26,136,-26v33,0,63,2,90,8v27,6,55,16,83,29r0,-45r47,0r0,170r-47,0r0,-49v-31,-23,-59,-39,-84,-48v-25,-9,-54,-14,-86,-14v-37,0,-70,7,-101,21v-31,14,-57,34,-79,59v-22,25,-39,56,-51,91v-12,35,-19,74,-19,116v0,41,7,80,21,116v14,36,32,68,56,94v24,26,52,47,84,62v32,15,67,23,104,23v25,0,49,-4,72,-11v23,-7,51,-20,83,-39r0,-73r48,0r0,133","w":667},"D":{"d":"230,-50r120,0v34,0,66,-8,96,-22v30,-14,55,-33,76,-58v21,-25,38,-55,50,-89v12,-34,18,-71,18,-111v0,-39,-6,-74,-18,-108v-12,-34,-30,-64,-52,-89v-22,-25,-46,-45,-75,-60v-29,-15,-60,-22,-93,-22r-122,0r0,559xm67,0r0,-37r75,0r0,-586r-75,0r0,-37r295,0v45,0,88,9,128,26v40,17,74,40,103,70v29,30,53,65,70,105v17,40,26,83,26,128v0,46,-8,89,-25,129v-17,40,-41,76,-70,106v-29,30,-64,53,-104,70v-40,17,-83,26,-129,26r-294,0","w":740},"E":{"d":"522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},"F":{"d":"305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,276r75,0r0,37","w":571},"G":{"d":"619,-25v-22,7,-42,13,-60,18v-18,5,-35,8,-51,11v-16,3,-32,6,-47,7v-15,1,-32,2,-49,2v-52,0,-98,-7,-137,-21v-39,-14,-76,-35,-109,-64v-37,-33,-66,-72,-86,-117v-20,-45,-30,-92,-30,-142v0,-49,9,-95,27,-137v18,-42,43,-78,74,-108v31,-30,69,-53,113,-70v44,-17,90,-26,141,-26v30,0,58,2,83,7v25,5,52,13,83,24r0,-39r46,0r0,170r-46,0r0,-65v-33,-16,-63,-28,-90,-35v-27,-7,-54,-10,-82,-10v-35,0,-67,7,-97,22v-30,15,-57,36,-80,62v-23,26,-41,57,-54,92v-13,35,-19,73,-19,113v0,41,8,79,23,115v15,36,36,66,62,93v26,27,57,48,92,63v35,15,73,22,114,22r20,0v0,0,13,-1,20,-2v7,-1,15,-3,23,-5r28,-7r0,-175r-85,0r0,-37r248,0r0,37r-75,0r0,202","w":745},"H":{"d":"768,0r-238,0r0,-37r75,0r0,-275r-375,0r0,275r75,0r0,37r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,266r375,0r0,-266r-75,0r0,-37r238,0r0,37r-76,0r0,586r76,0r0,37","w":838},"I":{"d":"305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},"J":{"d":"221,18v-13,27,-25,50,-35,68v-10,18,-20,35,-30,50v-10,15,-23,29,-36,44v-13,15,-29,32,-48,51r-34,-32v12,-11,22,-22,30,-31v8,-9,14,-19,20,-28v6,-9,12,-18,16,-29v4,-11,8,-23,12,-37v4,-13,8,-25,10,-36v2,-11,4,-22,5,-34v1,-12,3,-26,3,-42r0,-56r0,-529r-75,0r0,-37r238,0r0,37r-76,0r0,641","w":364},"K":{"d":"305,0r-238,0r0,-38r75,0r0,-584r-75,-1r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37xm656,0r-135,0r-282,-333r246,-290r-74,0r0,-37r207,0r0,37r-65,0r-221,264r271,322r53,0r0,37","w":653},"L":{"d":"522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,578r246,0r0,-88r46,0r0,133","w":531},"M":{"d":"834,0r-238,0r0,-37r75,0r0,-492r-245,539r-246,-550r0,503r76,0r0,37r-202,0r0,-37r76,0r0,-586r-76,0r0,-37r161,0r228,510r235,-510r156,0r0,37r-75,0r0,586r75,0r0,37","w":901},"N":{"d":"611,11r-31,0r-384,-528r0,480r76,0r0,37r-202,0r0,-37r76,0r0,-548r-27,-38r-69,0r0,-37r145,0r366,502r0,-465r-76,0r0,-37r201,0r0,37r-75,0r0,634","w":737},"O":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm373,13v-44,0,-86,-9,-125,-27v-39,-18,-72,-43,-102,-74v-30,-31,-53,-68,-70,-109v-17,-41,-26,-85,-26,-132v0,-47,9,-92,26,-133v17,-41,40,-78,69,-109v29,-31,64,-56,103,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,47,-8,91,-25,132v-17,41,-41,78,-70,109v-29,31,-63,57,-102,75v-39,18,-80,27,-123,27","w":743},"P":{"d":"314,0r-247,0r0,-37r75,0r0,-586r-75,0r0,-37r286,0v29,0,56,5,80,14v24,9,44,22,61,39v17,17,30,37,40,60v10,23,15,49,15,77v0,28,-6,54,-17,78v-11,24,-27,46,-46,64v-19,18,-42,32,-69,42v-27,10,-56,15,-87,15v-9,0,-18,0,-25,-1v-7,-1,-18,-2,-31,-5r0,-35v7,1,12,2,15,2v3,0,7,1,12,1v21,0,42,-5,61,-13v19,-8,36,-19,50,-34v14,-15,26,-32,34,-52v8,-20,12,-40,12,-62v0,-20,-4,-38,-10,-56v-6,-18,-14,-33,-25,-46v-11,-13,-23,-24,-37,-31v-14,-7,-30,-11,-47,-11r-109,0r0,577r85,0","w":600},"Q":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm709,135r-107,96r0,-1r-46,-24v0,0,-24,-14,-34,-20v-10,-6,-20,-12,-29,-18v-9,-6,-18,-13,-27,-21v-10,-8,-19,-17,-28,-25v-9,-8,-19,-18,-28,-28v-9,-10,-19,-22,-30,-36v-16,-20,-17,-20,-38,-48v-45,-6,-82,-17,-114,-34v-32,-17,-62,-40,-89,-71v-28,-31,-49,-68,-65,-109v-16,-41,-24,-83,-24,-125v0,-47,9,-92,26,-133v17,-41,40,-78,70,-109v30,-31,63,-56,102,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,30,-3,60,-11,89v-8,29,-19,57,-34,83v-15,26,-32,50,-52,72v-20,22,-43,40,-68,55v-13,8,-24,14,-36,19v-12,5,-29,10,-50,16v17,21,35,39,52,56v17,17,34,32,49,44v15,12,30,21,43,28v13,7,25,10,34,10v7,0,16,-3,25,-8v9,-5,23,-14,41,-27","w":759},"R":{"d":"230,-342r96,0v19,0,36,-3,52,-10v16,-7,30,-16,41,-28v11,-12,21,-27,27,-44v6,-17,9,-35,9,-56v0,-43,-11,-77,-34,-100v-23,-23,-55,-34,-97,-34r-94,0r0,272xm645,0r-85,0v-15,0,-26,-1,-36,-2v-10,-1,-19,-4,-26,-8v-7,-4,-14,-10,-20,-18v-6,-8,-13,-18,-21,-31r-149,-237r-78,0r0,259r75,0r0,37r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r278,0v49,0,87,7,116,21v29,14,51,37,66,68v13,28,20,58,20,89v0,49,-13,88,-39,118v-26,30,-63,48,-111,55r144,222v12,19,23,32,32,39v9,7,20,10,33,10r39,0r0,38","w":654},"S":{"d":"134,9r-47,0r0,-180r47,0r0,79v15,10,29,18,40,25v11,7,22,12,32,16v10,4,20,7,30,8v10,1,19,2,30,2v40,0,72,-10,97,-29v25,-19,37,-44,37,-76v0,-14,-3,-27,-8,-40v-5,-13,-14,-26,-25,-38v-11,-12,-26,-24,-45,-37v-19,-13,-42,-26,-69,-40v-31,-17,-57,-32,-79,-47v-22,-15,-40,-31,-53,-46v-13,-15,-23,-31,-29,-48v-6,-17,-8,-36,-8,-57v0,-25,5,-48,15,-69v10,-21,24,-38,41,-54v17,-16,38,-28,62,-37v24,-9,51,-13,79,-13v25,0,48,2,67,7v19,5,36,12,52,21r0,-36r46,0r0,171r-46,0r0,-71v-25,-17,-46,-29,-62,-35v-16,-6,-34,-9,-54,-9v-34,0,-62,9,-82,28v-20,19,-30,44,-30,75v0,13,2,24,6,35v4,11,13,22,24,33v11,11,27,24,47,37v20,13,46,29,77,47v31,18,57,35,78,50v21,15,38,30,50,45v12,15,21,32,26,48v5,16,7,34,7,55v0,26,-5,51,-15,73v-10,22,-24,41,-42,58v-18,17,-40,30,-64,39v-24,9,-50,14,-78,14v-16,0,-31,-1,-44,-3v-13,-2,-26,-4,-38,-8v-12,-4,-24,-8,-36,-14v-12,-6,-23,-12,-36,-20r0,41","w":562},"T":{"d":"444,0r-288,0r0,-37r100,0r0,-573r-200,0r0,80r-48,0r0,-158r48,0r0,28r488,0r0,-28r48,0r0,158r-48,0r0,-80r-200,0r0,573r100,0r0,37","w":600},"U":{"d":"729,-623r-75,0r0,381v0,54,-10,99,-29,134v-19,35,-50,64,-92,87v-43,23,-90,34,-139,34v-36,0,-69,-6,-100,-17v-31,-11,-58,-28,-80,-48v-22,-20,-40,-44,-53,-72v-13,-28,-19,-57,-19,-90r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,30,4,57,13,82v9,25,21,45,37,63v16,18,34,32,56,41v22,9,48,14,76,14v29,0,55,-5,78,-15v23,-10,43,-22,60,-40v17,-18,30,-39,39,-64v9,-25,14,-52,14,-82r0,-377r-75,0r0,-37r201,0r0,37","w":780},"V":{"d":"353,17r-34,0r-252,-640r-59,0r0,-37r248,0r0,37r-94,0r194,491r192,-491r-66,0r0,-37r171,0r0,37r-50,0","w":661},"W":{"d":"494,-488r55,-135r-109,0xm636,17r-31,0r-128,-324r-125,324r-33,0r-253,-640r-58,0r0,-37r210,0r0,37r-59,0r196,493r96,-244r-99,-249r-59,0r0,-37r359,0r0,37r-52,0r-79,204r117,294r195,-498r-69,0r0,-37r170,0r0,37r-48,0","w":942},"X":{"d":"652,0r-257,0r0,-37r94,0r-171,-242r-187,242r95,0r0,37r-218,0r0,-37r56,0r223,-287r-211,-299r-57,0r0,-37r254,0r0,37r-94,0r161,229r177,-229r-92,0r0,-37r218,0r0,37r-59,0r-212,275r220,311r60,0r0,37","w":660},"Y":{"d":"436,0r-238,0r0,-37r75,0r0,-267r-207,-319r-58,0r0,-37r247,0r0,37r-91,0r172,262r159,-262r-91,0r0,-37r200,0r0,37r-52,0r-192,313r0,273r76,0r0,37","w":612},"Z":{"d":"609,0r-550,0r0,-30r410,-579r-363,0r0,80r-47,0r0,-159r47,0r0,28r483,0r0,31r-408,579r381,0r0,-104r47,0r0,154","w":668},"[":{"d":"221,243r-152,0r0,-903r152,0r0,46r-93,0r0,812r93,0r0,45"},"\\":{"d":"360,243r-59,0r-251,-903r58,0","w":409},"]":{"d":"29,243r0,-45r93,0r0,-812r-93,0r0,-46r152,0r0,903r-152,0"},"^":{"d":"258,-529r-85,-88r-86,88r-48,0r112,-165r43,0r108,165r-44,0","w":338},"_":{"d":"500,57r-500,0r0,-57r500,0r0,57","w":500},"`":{"d":"180,-529r-159,-161r93,0r119,161r-53,0","w":258},"a":{"d":"285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"b":{"d":"233,13v-22,0,-44,-2,-65,-5v-21,-3,-46,-9,-75,-16r0,-663r-87,0r0,-27r144,-39r18,0r0,691v17,7,30,12,39,14v9,2,20,3,33,3v25,0,48,-5,68,-15v20,-10,37,-24,52,-42v15,-18,26,-41,34,-66v8,-25,13,-52,13,-82v0,-55,-12,-98,-35,-130v-23,-32,-54,-47,-94,-47r-73,0r0,-33v25,-9,45,-14,60,-17v15,-3,29,-4,42,-4v27,0,52,6,75,17v23,11,42,26,59,46v17,20,30,44,39,71v9,27,13,57,13,90v0,38,-7,73,-19,104v-12,31,-29,59,-52,81v-23,22,-50,39,-82,51v-32,12,-68,18,-107,18","w":526},"c":{"d":"417,-35v-17,10,-31,18,-43,24v-12,6,-25,11,-36,15v-11,4,-23,6,-35,7v-12,1,-26,2,-42,2v-35,0,-67,-6,-95,-17v-28,-11,-52,-26,-72,-46v-20,-20,-35,-44,-46,-72v-11,-28,-16,-61,-16,-96v0,-36,6,-70,18,-100v12,-30,28,-56,50,-78v22,-22,48,-39,78,-51v30,-12,62,-18,98,-18v13,0,26,1,36,2v10,1,20,3,30,7v10,4,21,8,32,14v11,6,22,14,35,23r-54,60r-23,-23v0,0,-12,-10,-18,-15v-6,-5,-12,-9,-19,-14v-7,-5,-15,-10,-25,-16v-14,1,-26,2,-36,4v-10,2,-19,5,-27,9v-8,4,-16,9,-23,16v-7,7,-15,15,-23,25v-31,38,-46,82,-46,132v0,28,4,54,13,79v9,25,22,46,37,65v15,19,33,33,54,44v21,11,43,16,66,16v16,0,31,-2,47,-7v16,-5,38,-15,65,-29","w":430},"d":{"d":"331,-85r29,-23r0,-232v0,-31,-6,-53,-17,-65v-11,-12,-32,-18,-62,-18v-24,0,-46,5,-66,14v-20,9,-37,22,-51,39v-14,17,-26,36,-34,60v-8,24,-11,50,-11,79v0,57,12,101,35,132v23,31,55,47,96,47v15,0,28,-2,39,-6v11,-4,25,-14,42,-27xm523,-28r-144,38r-19,0r0,-70v-27,27,-51,46,-72,57v-21,11,-44,16,-69,16v-26,0,-50,-6,-73,-18v-23,-12,-42,-29,-59,-49v-17,-20,-29,-44,-39,-72v-10,-28,-15,-58,-15,-90v0,-35,7,-68,19,-98v12,-30,28,-56,50,-78v22,-22,47,-41,76,-54v29,-13,59,-19,92,-19v17,0,32,2,44,5v12,3,27,10,46,20r0,-231r-87,0r0,-27r144,-39r19,0r0,681r87,0r0,28","w":532},"e":{"d":"348,-296r0,-24v0,-30,-10,-55,-28,-74v-18,-19,-42,-29,-71,-29v-37,0,-67,11,-91,34v-24,23,-37,54,-42,93r232,0xm418,-42v-19,11,-36,19,-50,26v-14,7,-27,14,-40,18v-13,4,-26,6,-38,8v-12,2,-25,3,-40,3v-32,0,-62,-5,-88,-17v-26,-12,-49,-29,-68,-50v-19,-21,-34,-45,-45,-74v-11,-29,-16,-60,-16,-95v0,-35,5,-68,16,-97v11,-29,26,-54,45,-76v19,-22,42,-39,68,-51v26,-12,55,-18,86,-18v27,0,52,4,74,13v22,9,42,21,58,37v16,16,28,35,37,57v9,22,13,48,13,75r0,27r-315,0r0,11v0,31,4,60,12,86v8,26,19,48,33,67v14,19,30,34,50,44v20,10,42,15,66,15v20,0,39,-3,56,-9v17,-6,39,-19,67,-37","w":461},"f":{"d":"280,0r-247,0r0,-37r76,0r0,-360r-87,0r0,-27r87,-22r0,-82v0,-31,5,-60,15,-86v10,-26,23,-48,41,-67v18,-19,40,-33,65,-43v25,-10,52,-15,82,-15v48,0,94,13,139,38r-55,68r-26,-23v-11,-8,-12,-8,-22,-16v-7,-5,-14,-10,-22,-14r-29,-15v-40,7,-69,26,-87,56v-18,30,-26,75,-26,136r0,66r115,0r0,46r-115,0r0,360r96,0r0,37","w":323},"g":{"d":"148,32v-13,19,-22,34,-26,46v-4,12,-7,24,-7,37v0,30,13,54,38,73v25,19,58,28,98,28v22,0,43,-3,63,-10v20,-7,36,-17,51,-29v15,-12,26,-26,35,-42v9,-16,13,-33,13,-51v0,-16,-4,-29,-11,-38v-7,-9,-16,-14,-27,-14r-227,0xm135,-295v0,41,10,73,29,97v19,24,46,36,80,36v33,0,60,-12,80,-36v20,-24,29,-56,29,-97v0,-41,-9,-73,-29,-97v-20,-24,-47,-35,-80,-35v-34,0,-61,11,-80,35v-19,24,-29,56,-29,97xm487,-389r-87,0v12,14,20,27,25,41v5,14,7,31,7,52v0,53,-17,95,-51,126v-34,31,-81,47,-140,47v-7,0,-13,-1,-19,-1v-6,0,-11,-1,-16,-2v-5,-1,-10,-2,-16,-3v-6,-1,-13,-3,-20,-6v-15,15,-26,29,-32,39v-6,10,-10,20,-10,29v0,17,10,26,29,26r250,0v24,0,43,8,56,24v13,16,20,39,20,68v0,28,-7,54,-20,79v-13,25,-32,47,-55,66v-23,19,-49,33,-80,44v-31,11,-65,16,-100,16v-43,0,-79,-8,-109,-23v-30,-15,-59,-41,-86,-78v5,-13,11,-25,15,-34v4,-9,9,-18,14,-27v5,-9,12,-19,20,-29r29,-38v-15,-3,-27,-7,-37,-14v-10,-7,-23,-19,-38,-36v9,-15,16,-29,23,-39v7,-10,13,-19,21,-28v8,-9,17,-18,26,-27r35,-31v-57,-33,-86,-81,-86,-142v0,-54,17,-97,51,-128v34,-31,80,-47,137,-47v10,0,19,0,27,1v8,1,14,2,22,4v8,2,17,5,26,9v9,4,21,9,34,16r64,0r71,-17r0,63","w":507},"h":{"d":"548,0r-227,0r0,-37r76,0r0,-293v0,-27,-6,-48,-19,-63v-13,-15,-30,-23,-52,-23v-11,0,-20,1,-30,4v-10,3,-21,9,-32,18v-11,9,-23,21,-38,36v-15,15,-33,36,-55,61r0,260r75,0r0,37r-226,0r0,-37r76,0r0,-634r-88,0r0,-27r144,-39r19,0r0,386v19,-22,36,-41,51,-55v15,-14,30,-25,44,-34v14,-9,28,-16,42,-20v14,-4,28,-5,44,-5v37,0,67,11,88,33v21,22,32,53,32,92r0,303r76,0r0,37","w":568},"i":{"d":"90,-635v0,-15,5,-27,15,-37v10,-10,22,-15,37,-15v15,0,28,5,38,15v10,10,15,22,15,37v0,15,-5,28,-15,38v-10,10,-23,15,-38,15v-15,0,-27,-5,-37,-15v-10,-10,-15,-23,-15,-38xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,426r76,0r0,37","w":282},"j":{"d":"86,-635v0,-15,6,-27,16,-37v10,-10,22,-15,37,-15v15,0,27,5,37,15v10,10,16,22,16,37v0,15,-6,28,-16,38v-10,10,-22,15,-37,15v-15,0,-27,-5,-37,-15v-10,-10,-16,-23,-16,-38xm181,73v-9,22,-17,40,-24,55v-7,15,-15,29,-23,42v-8,13,-18,27,-28,40v-10,13,-24,28,-40,46r-24,-19r34,-61v0,0,15,-32,20,-46v5,-14,8,-28,9,-43v1,-15,2,-33,2,-54r0,-430r-89,0r0,-27r144,-39r19,0r0,536","w":274},"k":{"d":"246,0r-226,0r0,-37r76,0r0,-634r-88,0r0,-27r144,-39r19,0r0,700r75,0r0,37xm508,0r-124,0r-205,-246r179,-170r-65,0r0,-37r199,0r0,37r-77,0r-155,148r191,231r57,0r0,37","w":508},"l":{"d":"246,0r-226,0r0,-37r76,0r0,-634r-88,0r0,-27r144,-39r19,0r0,700r75,0r0,37","w":267},"m":{"d":"862,0r-226,0r0,-37r76,0r0,-293v0,-27,-6,-48,-19,-63v-13,-15,-30,-22,-52,-22v-17,0,-32,4,-47,13v-15,9,-34,25,-55,48r-53,57r0,260r75,0r0,37r-226,0r0,-37r75,0r0,-293v0,-27,-6,-48,-19,-63v-13,-15,-30,-23,-52,-23v-11,0,-21,1,-30,4v-9,3,-20,9,-31,18v-11,9,-24,21,-39,36v-15,15,-33,36,-55,61r0,260r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,112v19,-22,36,-41,51,-55v15,-14,30,-25,44,-34v14,-9,28,-16,42,-20v14,-4,29,-5,45,-5v70,0,110,38,120,114v19,-22,36,-41,51,-55v15,-14,30,-25,44,-34v14,-9,27,-16,41,-20v14,-4,29,-5,45,-5v37,0,67,11,88,33v21,22,32,53,32,91r0,304r75,0r0,37","w":883},"n":{"d":"561,0r-226,0r0,-37r75,0r0,-293v0,-27,-6,-48,-19,-63v-13,-15,-30,-23,-52,-23v-11,0,-21,1,-30,4v-9,3,-20,9,-31,18v-11,9,-24,21,-39,36v-15,15,-33,36,-55,61r0,260r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,112v19,-22,36,-41,51,-55v15,-14,30,-25,44,-34v14,-9,28,-16,42,-20v14,-4,29,-5,45,-5v37,0,67,11,88,33v21,22,32,53,32,92r0,303r75,0r0,37","w":581},"o":{"d":"252,-423v-19,0,-36,5,-52,15v-16,10,-31,24,-43,42v-12,18,-21,38,-28,62v-7,24,-10,50,-10,78v0,27,3,53,10,77v7,24,16,45,28,63v12,18,27,32,43,42v16,10,33,15,52,15v19,0,36,-5,52,-15v16,-10,31,-24,43,-42v12,-18,22,-38,29,-62v7,-24,10,-50,10,-78v0,-28,-3,-54,-10,-78v-7,-24,-17,-44,-29,-62v-12,-18,-27,-32,-43,-42v-16,-10,-33,-15,-52,-15xm252,13v-30,0,-58,-6,-85,-19v-27,-13,-50,-30,-70,-51v-20,-21,-36,-47,-47,-76v-11,-29,-17,-60,-17,-93v0,-33,6,-65,17,-94v11,-29,27,-54,47,-75v20,-21,43,-38,70,-51v27,-13,55,-19,85,-19v30,0,58,6,85,19v27,13,50,30,70,51v20,21,36,46,47,75v11,29,17,61,17,94v0,33,-6,64,-17,93v-11,29,-27,55,-47,76v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19","w":505},"p":{"d":"292,-402v-10,0,-20,0,-28,2v-8,2,-16,5,-25,10v-9,5,-18,11,-27,18v-9,7,-20,17,-31,28r0,230v0,31,5,53,17,66v12,13,32,19,61,19v24,0,45,-5,65,-14v20,-9,37,-23,51,-40v14,-17,25,-38,33,-62v8,-24,11,-51,11,-80v0,-55,-11,-97,-34,-129v-23,-32,-54,-48,-93,-48xm272,243r-242,0r0,-37r76,0r0,-603r-88,0r0,-28r144,-38r19,0r0,69v25,-26,49,-44,71,-54v22,-10,46,-16,75,-16v27,0,51,5,73,16v22,11,40,25,56,44v16,19,27,42,36,69v9,27,13,56,13,89v0,37,-5,72,-17,104v-12,32,-29,59,-50,82v-21,23,-45,41,-74,54v-29,13,-60,19,-94,19v-9,0,-17,0,-24,-1v-7,-1,-14,-2,-21,-4v-7,-2,-13,-5,-20,-8v-7,-3,-15,-6,-24,-11r0,217r91,0r0,37","w":538},"q":{"d":"294,-466v13,0,25,0,36,1v11,1,21,1,32,3v11,2,22,5,34,8v18,4,18,4,40,10r0,652r75,-1r0,36r-246,0r0,-37r95,0r0,-613v-14,-7,-26,-11,-34,-13v-8,-2,-19,-3,-33,-3v-54,0,-96,17,-127,51v-31,34,-47,82,-47,142v0,27,3,51,10,74v7,23,16,43,27,60v11,17,25,30,41,40v16,10,33,14,51,14r74,0r0,34v-27,8,-48,13,-62,16v-14,3,-28,5,-41,5v-26,0,-50,-6,-73,-18v-23,-12,-42,-29,-59,-49v-17,-20,-29,-44,-39,-72v-10,-28,-15,-58,-15,-90v0,-25,3,-48,10,-72v7,-24,16,-46,28,-66v12,-20,26,-38,43,-53v17,-15,35,-27,55,-36v17,-7,37,-13,57,-17v20,-4,43,-6,68,-6","w":521},"r":{"d":"280,0r-247,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,112v18,-23,33,-42,46,-57v13,-15,25,-26,35,-34v10,-8,19,-15,27,-18v8,-3,17,-5,26,-5v13,0,22,3,28,9r31,27r-58,70v-19,-19,-34,-28,-44,-28v-9,0,-19,6,-31,17v-12,11,-33,34,-60,67r0,266r96,0r0,37","w":377},"s":{"d":"93,9r-40,0r0,-142r46,0r0,27v0,11,3,20,9,30v6,10,15,18,26,26v11,8,24,14,38,18v14,4,30,7,45,7v28,0,51,-6,69,-19v18,-13,27,-30,27,-50v0,-10,-2,-19,-6,-27v-4,-8,-11,-16,-21,-24v-10,-8,-24,-17,-41,-25v-17,-8,-39,-17,-65,-27v-48,-19,-82,-38,-101,-59v-19,-21,-29,-47,-29,-78v0,-19,4,-38,12,-54v8,-16,18,-30,31,-41v13,-11,30,-21,49,-27v19,-6,40,-9,63,-9v43,0,79,11,106,34r6,-36r43,0r-24,144r-43,0v4,-11,6,-22,6,-33v0,-10,-3,-20,-8,-28v-5,-8,-12,-15,-21,-22v-9,-7,-20,-12,-32,-16v-12,-4,-25,-5,-38,-5v-26,0,-46,6,-62,19v-16,13,-24,31,-24,52v0,11,1,19,3,26v2,7,7,14,15,20v8,6,22,14,39,22v17,8,41,17,71,29v25,10,46,20,62,29v16,9,29,20,39,30v10,10,17,21,21,34v4,13,7,27,7,43v0,20,-4,38,-11,55v-7,17,-18,31,-31,43v-13,12,-29,21,-48,28v-19,7,-39,10,-61,10v-56,0,-98,-13,-127,-40r0,36","w":421},"t":{"d":"299,-42v-13,11,-25,19,-35,26v-10,7,-18,12,-26,16v-8,4,-16,6,-24,7v-8,1,-16,2,-25,2v-29,0,-53,-8,-69,-25v-16,-17,-24,-41,-24,-72r0,-309r-87,0r0,-27r87,-22r0,-138r72,0r0,141r124,0r0,46r-124,0r0,300v0,19,3,33,10,41v7,8,19,11,36,11v11,0,20,-2,29,-5v9,-3,22,-9,39,-19","w":299},"u":{"d":"560,-28r-144,36r-18,0r0,-113v-18,22,-35,40,-50,55v-15,15,-30,28,-44,37v-14,9,-29,16,-43,20v-14,4,-29,6,-44,6v-38,0,-68,-12,-89,-35v-21,-23,-32,-54,-32,-94r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v19,0,36,-5,51,-15v15,-10,33,-27,56,-54v5,-5,12,-12,19,-21v7,-9,16,-19,27,-30r0,-240r-76,0r0,-31r132,-35r19,0r0,407r87,0r0,28","w":570},"v":{"d":"442,-416r-42,0r-163,429r-20,0r-175,-428r-42,-1r0,-37r194,0r0,37r-70,0r119,295r112,-295r-67,0r0,-37r154,0r0,37","w":442},"w":{"d":"706,-416r-42,0r-162,429r-20,0r-127,-311r-120,311r-20,0r-173,-429r-42,0r0,-37r193,0r0,37r-69,0r117,295r90,-234r-25,-61r-57,0r0,-37r209,0r0,37r-70,0r120,295r112,-295r-67,0r0,-37r153,0r0,37","w":706},"x":{"d":"437,0r-189,0r0,-37r57,0r-97,-147r-112,147r59,0r0,37r-155,0r0,-37r42,0r142,-183r-132,-196r-42,0r0,-37r193,0r0,37r-62,0r90,138r103,-138r-48,0r0,-37r144,0r0,37r-42,0r-134,171r141,208r42,0r0,37","w":437},"y":{"d":"443,-416r-42,0r-169,439v-11,30,-25,61,-42,94v-17,33,-34,61,-51,85v-5,6,-11,13,-17,22v-6,9,-14,20,-23,32r-65,-67v21,-12,22,-12,36,-21v10,-6,18,-12,26,-18v8,-6,14,-14,21,-21v7,-7,14,-16,22,-26v7,-9,14,-18,19,-26v5,-8,10,-17,15,-26r15,-31v5,-11,10,-24,16,-39r-162,-397r-42,0r0,-37r194,0r0,37r-71,0r121,295r112,-295r-67,0r0,-37r154,0r0,37","w":443},"z":{"d":"430,0r-392,0r0,-37r291,-370r-233,0r-13,84r-43,0r21,-150r43,0r-3,20r331,0r0,30r-293,377r248,0r0,-77r43,1r0,122","w":469},"{":{"d":"52,-264r38,0v24,0,43,-10,56,-30v13,-20,20,-49,20,-87r0,-230v0,-89,44,-133,131,-133r57,0r0,33r-40,0v-48,0,-72,32,-72,97r0,236v0,22,-1,41,-4,56v-3,15,-9,28,-16,38v-7,10,-17,18,-29,23v-12,5,-27,9,-45,11v18,3,33,7,45,12v12,5,22,12,29,22v7,10,13,23,16,38v3,15,4,34,4,56r0,241v0,65,24,97,72,97r40,0r0,40r-57,0v-87,0,-131,-45,-131,-134r0,-241v0,-38,-7,-67,-20,-87v-13,-20,-32,-30,-56,-30r-38,0r0,-28","w":409},"|":{"d":"154,256r-58,0r0,-1000r58,0r0,1000"},"}":{"d":"357,-264r0,28r-37,0v-25,0,-44,10,-57,30v-13,20,-20,49,-20,87r0,241v0,89,-43,134,-130,134r-57,0r0,-40r39,0v49,0,73,-32,73,-97r0,-241v0,-22,1,-41,4,-56v3,-15,9,-28,16,-38v7,-10,16,-17,28,-22v12,-5,27,-9,45,-12v-18,-2,-33,-6,-45,-11v-12,-5,-21,-13,-28,-23v-7,-10,-13,-23,-16,-38v-3,-15,-4,-34,-4,-56r0,-236v0,-65,-24,-97,-73,-97r-39,0r0,-33r57,0v87,0,130,44,130,133r0,230v0,38,7,67,20,87v13,20,32,30,57,30r37,0","w":409},"~":{"d":"133,-572v-13,0,-25,2,-37,8v-12,6,-25,16,-39,30r-25,-17v21,-28,41,-47,60,-59v19,-12,40,-18,62,-18v9,0,18,0,27,2v9,2,15,5,20,8r38,23v19,12,40,18,61,18v8,0,14,0,20,-1v6,-1,12,-2,17,-5v5,-3,11,-6,17,-11v6,-5,12,-12,21,-21r24,16v-12,15,-23,27,-33,37v-10,10,-20,16,-30,22v-10,6,-19,10,-30,12v-11,2,-23,4,-36,4v-16,0,-30,-2,-42,-5v-12,-3,-24,-10,-37,-19v-9,-6,-16,-11,-21,-14v-5,-3,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-12,0","w":454},"\u00c4":{"d":"428,-265r-107,-281r-113,281r220,0xm307,-753v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm473,-753v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":672},"\u00c5":{"d":"291,-790v0,13,4,23,13,32v9,9,20,14,33,14v13,0,24,-5,33,-14v9,-9,13,-19,13,-32v0,-13,-4,-25,-13,-34v-9,-9,-20,-13,-33,-13v-13,0,-24,4,-33,13v-9,9,-13,21,-13,34xm428,-265r-107,-281r-113,281r220,0xm417,-790v0,22,-7,41,-23,56v-16,15,-35,23,-57,23v-22,0,-41,-8,-57,-23v-16,-15,-23,-34,-23,-56v0,-22,7,-40,23,-56v16,-16,35,-24,57,-24v22,0,41,8,57,24v16,16,23,34,23,56xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":672},"\u00c7":{"d":"616,-28v-43,15,-79,26,-110,32v-31,6,-63,9,-96,9r-39,47v30,12,51,24,61,35v10,11,15,27,15,47v0,13,-3,25,-9,36v-6,11,-14,22,-25,30v-11,8,-23,14,-38,19v-15,5,-30,7,-47,7v-15,0,-27,-1,-37,-4r-12,-3r-21,-5v-2,-1,-5,-2,-8,-2v-3,0,-6,-1,-10,-2r27,-53v23,21,48,32,73,32v12,0,22,-5,30,-13v8,-8,11,-18,11,-31v0,-18,-6,-31,-18,-41v-12,-10,-33,-18,-63,-24r71,-77v-49,-5,-93,-17,-133,-35v-40,-18,-74,-42,-102,-72v-28,-30,-50,-65,-65,-104v-15,-39,-23,-82,-23,-129v0,-49,8,-95,26,-137v18,-42,43,-78,74,-108v31,-30,68,-55,110,-72v42,-17,88,-26,138,-26v18,0,35,1,50,2v15,1,29,4,42,7v13,3,27,7,40,13v13,6,27,13,41,21r0,-44r46,0r0,168r-47,0r0,-48v-16,-13,-31,-24,-44,-33v-13,-9,-26,-16,-39,-21v-13,-5,-26,-9,-39,-11v-13,-2,-28,-3,-45,-3v-38,0,-73,7,-104,21v-31,14,-58,33,-80,58v-22,25,-39,55,-51,90v-12,35,-19,74,-19,117v0,45,7,87,21,124v14,37,35,69,62,94v25,23,55,43,89,57v34,14,67,21,99,21v12,0,24,-1,35,-3v11,-2,23,-4,34,-8v11,-4,24,-10,37,-16v13,-6,27,-14,43,-24r0,-70r49,0r0,132","w":642},"\u00c9":{"d":"292,-709r-56,0r115,-115r107,0xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},"\u00d1":{"d":"263,-745v-16,0,-31,2,-44,7v-13,5,-29,14,-46,26r-20,-21v39,-39,84,-59,134,-59v11,0,21,0,32,2v11,2,19,4,24,6r44,20v23,10,48,15,73,15v9,0,17,0,24,-1v7,-1,13,-2,19,-4v6,-2,12,-6,19,-10v10,-6,10,-7,25,-17r23,18v-22,21,-44,36,-66,45v-22,9,-50,14,-81,14v-19,0,-36,-1,-49,-4v-13,-3,-27,-9,-43,-16v-11,-5,-19,-9,-25,-12v-6,-3,-11,-5,-16,-6v-5,-1,-8,-2,-12,-2v-4,0,-9,-1,-15,-1xm611,11r-31,0r-384,-528r0,480r76,0r0,37r-202,0r0,-37r76,0r0,-548r-27,-38r-69,0r0,-37r145,0r366,502r0,-465r-76,0r0,-37r201,0r0,37r-75,0r0,634","w":737},"\u00d6":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm305,-755v0,13,-5,25,-15,35v-10,10,-22,15,-36,15v-13,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,35,-15v14,0,26,5,36,15v10,10,15,22,15,36xm542,-755v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm373,13v-44,0,-86,-9,-125,-27v-39,-18,-72,-43,-102,-74v-30,-31,-53,-68,-70,-109v-17,-41,-26,-85,-26,-132v0,-47,9,-92,26,-133v17,-41,40,-78,69,-109v29,-31,64,-56,103,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,47,-8,91,-25,132v-17,41,-41,78,-70,109v-29,31,-63,57,-102,75v-39,18,-80,27,-123,27","w":743},"\u00dc":{"d":"336,-757v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36xm564,-757v0,13,-5,25,-15,35v-10,10,-22,15,-36,15v-13,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,35,-15v14,0,26,5,36,15v10,10,15,22,15,36xm729,-623r-75,0r0,381v0,54,-10,99,-29,134v-19,35,-50,64,-92,87v-43,23,-90,34,-139,34v-36,0,-69,-6,-100,-17v-31,-11,-58,-28,-80,-48v-22,-20,-40,-44,-53,-72v-13,-28,-19,-57,-19,-90r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,30,4,57,13,82v9,25,21,45,37,63v16,18,34,32,56,41v22,9,48,14,76,14v29,0,55,-5,78,-15v23,-10,43,-22,60,-40v17,-18,30,-39,39,-64v9,-25,14,-52,14,-82r0,-377r-75,0r0,-37r201,0r0,37","w":780},"\u00e1":{"d":"285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm186,-529r-53,0r119,-161r93,0xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"\u00e0":{"d":"285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm229,-529r-159,-161r93,0r119,161r-53,0xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"\u00e2":{"d":"285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm304,-529r-86,-88r-85,88r-49,0r112,-165r44,0r107,165r-43,0xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"\u00e4":{"d":"285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm175,-588v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm352,-588v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"\u00e3":{"d":"285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm136,-572v-13,0,-26,2,-37,8v-11,6,-24,16,-39,30r-24,-17v21,-28,41,-47,60,-59v19,-12,40,-18,62,-18v9,0,17,0,26,2v9,2,16,5,20,8r38,23v19,12,40,18,62,18v8,0,14,0,20,-1v6,-1,11,-2,16,-5v5,-3,10,-6,16,-11v6,-5,13,-12,22,-21r25,16v-12,15,-23,27,-33,37v-10,10,-20,16,-30,22v-10,6,-20,10,-31,12v-11,2,-23,4,-36,4v-16,0,-29,-2,-41,-5v-12,-3,-25,-10,-38,-19v-9,-6,-15,-11,-20,-14v-5,-3,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-13,0xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"\u00e5":{"d":"173,-584v0,13,4,23,13,32v9,9,20,14,33,14v13,0,24,-5,33,-14v9,-9,14,-19,14,-32v0,-13,-5,-24,-14,-33v-9,-9,-20,-13,-33,-13v-13,0,-24,4,-33,13v-9,9,-13,20,-13,33xm285,-205r-171,40r0,50v0,21,6,39,18,51v12,12,30,18,51,18v16,0,32,-4,47,-12v15,-8,33,-22,55,-41r0,-106xm299,-584v0,22,-7,41,-23,56v-16,15,-35,23,-57,23v-22,0,-41,-8,-56,-23v-15,-15,-23,-34,-23,-56v0,-22,8,-40,23,-56v15,-16,34,-24,56,-24v22,0,41,8,57,24v16,16,23,34,23,56xm437,-19r-67,21v-7,2,-14,4,-20,5v-6,1,-11,2,-15,2v-15,0,-27,-5,-36,-15v-9,-10,-13,-25,-13,-44r0,-10v-21,26,-42,45,-62,56v-20,11,-44,17,-71,17v-35,0,-63,-11,-86,-32v-23,-21,-34,-49,-34,-83v0,-25,8,-48,23,-67v15,-19,34,-32,58,-37r171,-39r0,-113v0,-20,-7,-37,-20,-50v-13,-13,-30,-19,-50,-19v-10,0,-19,1,-27,3v-8,2,-20,7,-35,14r0,48r-89,26v-3,-6,-5,-10,-6,-14v-1,-4,-2,-9,-2,-14v0,-15,4,-28,12,-40v8,-12,19,-23,33,-32v14,-9,31,-17,50,-22v19,-5,40,-7,63,-7v44,0,79,10,106,30v27,20,40,47,40,80r0,308r77,0r0,28","w":457},"\u00e7":{"d":"401,-34v-15,9,-28,16,-39,22v-11,6,-21,10,-30,13v-9,3,-18,5,-26,7v-8,2,-18,3,-28,3r-40,51v23,5,41,15,54,29v13,14,20,31,20,50v0,13,-2,24,-8,35v-6,11,-14,21,-24,29v-10,8,-22,15,-36,19v-14,4,-28,6,-44,6r-15,0v0,0,-10,-1,-15,-2v-8,-2,-7,-2,-17,-4v-7,-1,-15,-3,-25,-6v-2,-1,-4,-1,-7,-2r-9,-3r27,-51v11,9,24,18,37,24v13,6,25,9,34,9v11,0,21,-4,28,-11v7,-7,11,-17,11,-28v0,-19,-7,-34,-21,-47v-14,-13,-32,-19,-53,-19r-4,0r69,-79v-66,-1,-117,-21,-154,-59v-37,-38,-56,-91,-56,-158v0,-35,6,-67,18,-96v12,-29,29,-54,50,-75v21,-21,47,-37,77,-49v30,-12,63,-17,99,-17v11,0,20,0,29,1v9,1,17,4,26,7v9,3,18,8,28,13v10,5,22,13,36,22r-51,58v-8,-9,-15,-16,-21,-22v-6,-6,-11,-10,-17,-14v-6,-4,-12,-10,-18,-14v-6,-4,-15,-9,-25,-15v-23,2,-43,8,-62,17v-19,9,-34,22,-47,38v-13,16,-23,33,-30,54v-7,21,-11,44,-11,69v0,27,4,52,13,75v9,23,20,44,34,62v14,18,32,32,51,42v19,10,40,15,62,15v15,0,30,-2,45,-7v15,-5,37,-14,65,-28","w":417},"\u00e9":{"d":"348,-296r0,-24v0,-30,-10,-55,-28,-74v-18,-19,-42,-29,-71,-29v-37,0,-67,11,-91,34v-24,23,-37,54,-42,93r232,0xm202,-529r-53,0r119,-161r93,0xm418,-42v-19,11,-36,19,-50,26v-14,7,-27,14,-40,18v-13,4,-26,6,-38,8v-12,2,-25,3,-40,3v-32,0,-62,-5,-88,-17v-26,-12,-49,-29,-68,-50v-19,-21,-34,-45,-45,-74v-11,-29,-16,-60,-16,-95v0,-35,5,-68,16,-97v11,-29,26,-54,45,-76v19,-22,42,-39,68,-51v26,-12,55,-18,86,-18v27,0,52,4,74,13v22,9,42,21,58,37v16,16,28,35,37,57v9,22,13,48,13,75r0,27r-315,0r0,11v0,31,4,60,12,86v8,26,19,48,33,67v14,19,30,34,50,44v20,10,42,15,66,15v20,0,39,-3,56,-9v17,-6,39,-19,67,-37","w":461},"\u00e8":{"d":"348,-296r0,-24v0,-30,-10,-55,-28,-74v-18,-19,-42,-29,-71,-29v-37,0,-67,11,-91,34v-24,23,-37,54,-42,93r232,0xm256,-529r-159,-161r93,0r119,161r-53,0xm418,-42v-19,11,-36,19,-50,26v-14,7,-27,14,-40,18v-13,4,-26,6,-38,8v-12,2,-25,3,-40,3v-32,0,-62,-5,-88,-17v-26,-12,-49,-29,-68,-50v-19,-21,-34,-45,-45,-74v-11,-29,-16,-60,-16,-95v0,-35,5,-68,16,-97v11,-29,26,-54,45,-76v19,-22,42,-39,68,-51v26,-12,55,-18,86,-18v27,0,52,4,74,13v22,9,42,21,58,37v16,16,28,35,37,57v9,22,13,48,13,75r0,27r-315,0r0,11v0,31,4,60,12,86v8,26,19,48,33,67v14,19,30,34,50,44v20,10,42,15,66,15v20,0,39,-3,56,-9v17,-6,39,-19,67,-37","w":461},"\u00ea":{"d":"348,-296r0,-24v0,-30,-10,-55,-28,-74v-18,-19,-42,-29,-71,-29v-37,0,-67,11,-91,34v-24,23,-37,54,-42,93r232,0xm328,-529r-86,-88r-85,88r-49,0r113,-165r43,0r107,165r-43,0xm418,-42v-19,11,-36,19,-50,26v-14,7,-27,14,-40,18v-13,4,-26,6,-38,8v-12,2,-25,3,-40,3v-32,0,-62,-5,-88,-17v-26,-12,-49,-29,-68,-50v-19,-21,-34,-45,-45,-74v-11,-29,-16,-60,-16,-95v0,-35,5,-68,16,-97v11,-29,26,-54,45,-76v19,-22,42,-39,68,-51v26,-12,55,-18,86,-18v27,0,52,4,74,13v22,9,42,21,58,37v16,16,28,35,37,57v9,22,13,48,13,75r0,27r-315,0r0,11v0,31,4,60,12,86v8,26,19,48,33,67v14,19,30,34,50,44v20,10,42,15,66,15v20,0,39,-3,56,-9v17,-6,39,-19,67,-37","w":461},"\u00eb":{"d":"348,-296r0,-24v0,-30,-10,-55,-28,-74v-18,-19,-42,-29,-71,-29v-37,0,-67,11,-91,34v-24,23,-37,54,-42,93r232,0xm201,-588v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm398,-588v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36xm418,-42v-19,11,-36,19,-50,26v-14,7,-27,14,-40,18v-13,4,-26,6,-38,8v-12,2,-25,3,-40,3v-32,0,-62,-5,-88,-17v-26,-12,-49,-29,-68,-50v-19,-21,-34,-45,-45,-74v-11,-29,-16,-60,-16,-95v0,-35,5,-68,16,-97v11,-29,26,-54,45,-76v19,-22,42,-39,68,-51v26,-12,55,-18,86,-18v27,0,52,4,74,13v22,9,42,21,58,37v16,16,28,35,37,57v9,22,13,48,13,75r0,27r-315,0r0,11v0,31,4,60,12,86v8,26,19,48,33,67v14,19,30,34,50,44v20,10,42,15,66,15v20,0,39,-3,56,-9v17,-6,39,-19,67,-37","w":461},"\u00ed":{"d":"107,-529r-54,0r119,-161r93,0xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,426r76,0r0,37","w":282},"\u00ec":{"d":"174,-529r-158,-161r93,0r119,161r-54,0xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,426r76,0r0,37","w":282},"\u00ee":{"d":"211,-529r-69,-88r-69,88r-48,0r95,-165r44,0r90,165r-43,0xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,426r76,0r0,37","w":282},"\u00ef":{"d":"118,-588v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36xm254,-588v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,426r76,0r0,37","w":282},"\u00f1":{"d":"197,-571v-13,0,-25,3,-37,9v-12,6,-25,15,-39,29r-25,-17v21,-28,41,-48,60,-60v19,-12,40,-17,62,-17v9,0,18,1,27,3v9,2,15,4,20,7r38,23v19,12,40,18,61,18v8,0,14,0,20,-1v6,-1,12,-2,17,-5v5,-3,11,-7,17,-12v6,-5,12,-11,21,-20r24,16v-12,15,-23,26,-33,36v-10,10,-20,18,-30,24v-10,6,-19,10,-30,12v-11,2,-23,3,-36,3v-16,0,-30,-2,-42,-5v-12,-3,-24,-10,-37,-19v-9,-6,-16,-10,-21,-13v-5,-3,-10,-6,-14,-8v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1xm561,0r-226,0r0,-37r75,0r0,-293v0,-27,-6,-48,-19,-63v-13,-15,-30,-23,-52,-23v-11,0,-21,1,-30,4v-9,3,-20,9,-31,18v-11,9,-24,21,-39,36v-15,15,-33,36,-55,61r0,260r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r144,-39r18,0r0,112v19,-22,36,-41,51,-55v15,-14,30,-25,44,-34v14,-9,28,-16,42,-20v14,-4,29,-5,45,-5v37,0,67,11,88,33v21,22,32,53,32,92r0,303r75,0r0,37","w":581},"\u00f3":{"d":"252,-423v-19,0,-36,5,-52,15v-16,10,-31,24,-43,42v-12,18,-21,38,-28,62v-7,24,-10,50,-10,78v0,27,3,53,10,77v7,24,16,45,28,63v12,18,27,32,43,42v16,10,33,15,52,15v19,0,36,-5,52,-15v16,-10,31,-24,43,-42v12,-18,22,-38,29,-62v7,-24,10,-50,10,-78v0,-28,-3,-54,-10,-78v-7,-24,-17,-44,-29,-62v-12,-18,-27,-32,-43,-42v-16,-10,-33,-15,-52,-15xm215,-529r-53,0r119,-161r92,0xm252,13v-30,0,-58,-6,-85,-19v-27,-13,-50,-30,-70,-51v-20,-21,-36,-47,-47,-76v-11,-29,-17,-60,-17,-93v0,-33,6,-65,17,-94v11,-29,27,-54,47,-75v20,-21,43,-38,70,-51v27,-13,55,-19,85,-19v30,0,58,6,85,19v27,13,50,30,70,51v20,21,36,46,47,75v11,29,17,61,17,94v0,33,-6,64,-17,93v-11,29,-27,55,-47,76v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19","w":505},"\u00f2":{"d":"252,-423v-19,0,-36,5,-52,15v-16,10,-31,24,-43,42v-12,18,-21,38,-28,62v-7,24,-10,50,-10,78v0,27,3,53,10,77v7,24,16,45,28,63v12,18,27,32,43,42v16,10,33,15,52,15v19,0,36,-5,52,-15v16,-10,31,-24,43,-42v12,-18,22,-38,29,-62v7,-24,10,-50,10,-78v0,-28,-3,-54,-10,-78v-7,-24,-17,-44,-29,-62v-12,-18,-27,-32,-43,-42v-16,-10,-33,-15,-52,-15xm262,-529r-158,-161r93,0r119,161r-54,0xm252,13v-30,0,-58,-6,-85,-19v-27,-13,-50,-30,-70,-51v-20,-21,-36,-47,-47,-76v-11,-29,-17,-60,-17,-93v0,-33,6,-65,17,-94v11,-29,27,-54,47,-75v20,-21,43,-38,70,-51v27,-13,55,-19,85,-19v30,0,58,6,85,19v27,13,50,30,70,51v20,21,36,46,47,75v11,29,17,61,17,94v0,33,-6,64,-17,93v-11,29,-27,55,-47,76v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19","w":505},"\u00f4":{"d":"252,-423v-19,0,-36,5,-52,15v-16,10,-31,24,-43,42v-12,18,-21,38,-28,62v-7,24,-10,50,-10,78v0,27,3,53,10,77v7,24,16,45,28,63v12,18,27,32,43,42v16,10,33,15,52,15v19,0,36,-5,52,-15v16,-10,31,-24,43,-42v12,-18,22,-38,29,-62v7,-24,10,-50,10,-78v0,-28,-3,-54,-10,-78v-7,-24,-17,-44,-29,-62v-12,-18,-27,-32,-43,-42v-16,-10,-33,-15,-52,-15xm345,-529r-86,-88r-85,88r-49,0r113,-165r43,0r108,165r-44,0xm252,13v-30,0,-58,-6,-85,-19v-27,-13,-50,-30,-70,-51v-20,-21,-36,-47,-47,-76v-11,-29,-17,-60,-17,-93v0,-33,6,-65,17,-94v11,-29,27,-54,47,-75v20,-21,43,-38,70,-51v27,-13,55,-19,85,-19v30,0,58,6,85,19v27,13,50,30,70,51v20,21,36,46,47,75v11,29,17,61,17,94v0,33,-6,64,-17,93v-11,29,-27,55,-47,76v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19","w":505},"\u00f6":{"d":"252,-423v-19,0,-36,5,-52,15v-16,10,-31,24,-43,42v-12,18,-21,38,-28,62v-7,24,-10,50,-10,78v0,27,3,53,10,77v7,24,16,45,28,63v12,18,27,32,43,42v16,10,33,15,52,15v19,0,36,-5,52,-15v16,-10,31,-24,43,-42v12,-18,22,-38,29,-62v7,-24,10,-50,10,-78v0,-28,-3,-54,-10,-78v-7,-24,-17,-44,-29,-62v-12,-18,-27,-32,-43,-42v-16,-10,-33,-15,-52,-15xm205,-588v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm402,-588v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36xm252,13v-30,0,-58,-6,-85,-19v-27,-13,-50,-30,-70,-51v-20,-21,-36,-47,-47,-76v-11,-29,-17,-60,-17,-93v0,-33,6,-65,17,-94v11,-29,27,-54,47,-75v20,-21,43,-38,70,-51v27,-13,55,-19,85,-19v30,0,58,6,85,19v27,13,50,30,70,51v20,21,36,46,47,75v11,29,17,61,17,94v0,33,-6,64,-17,93v-11,29,-27,55,-47,76v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19","w":505},"\u00f5":{"d":"252,-423v-19,0,-36,5,-52,15v-16,10,-31,24,-43,42v-12,18,-21,38,-28,62v-7,24,-10,50,-10,78v0,27,3,53,10,77v7,24,16,45,28,63v12,18,27,32,43,42v16,10,33,15,52,15v19,0,36,-5,52,-15v16,-10,31,-24,43,-42v12,-18,22,-38,29,-62v7,-24,10,-50,10,-78v0,-28,-3,-54,-10,-78v-7,-24,-17,-44,-29,-62v-12,-18,-27,-32,-43,-42v-16,-10,-33,-15,-52,-15xm174,-572v-13,0,-26,2,-37,8v-11,6,-24,16,-39,30r-24,-17v21,-28,41,-47,60,-59v19,-12,40,-18,62,-18v9,0,18,0,27,2v9,2,15,5,20,8r37,23v19,12,40,18,62,18v8,0,14,0,20,-1v6,-1,11,-2,16,-5v5,-3,10,-6,16,-11v6,-5,13,-12,22,-21r25,16v-12,15,-23,27,-33,37v-10,10,-20,16,-30,22v-10,6,-20,10,-30,12v-10,2,-23,4,-36,4v-17,0,-31,-2,-42,-5v-11,-3,-24,-10,-37,-19v-9,-6,-16,-11,-21,-14v-5,-3,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-13,0xm252,13v-30,0,-58,-6,-85,-19v-27,-13,-50,-30,-70,-51v-20,-21,-36,-47,-47,-76v-11,-29,-17,-60,-17,-93v0,-33,6,-65,17,-94v11,-29,27,-54,47,-75v20,-21,43,-38,70,-51v27,-13,55,-19,85,-19v30,0,58,6,85,19v27,13,50,30,70,51v20,21,36,46,47,75v11,29,17,61,17,94v0,33,-6,64,-17,93v-11,29,-27,55,-47,76v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19","w":505},"\u00fa":{"d":"229,-529r-53,0r119,-161r93,0xm560,-28r-144,36r-18,0r0,-113v-18,22,-35,40,-50,55v-15,15,-30,28,-44,37v-14,9,-29,16,-43,20v-14,4,-29,6,-44,6v-38,0,-68,-12,-89,-35v-21,-23,-32,-54,-32,-94r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v19,0,36,-5,51,-15v15,-10,33,-27,56,-54v5,-5,12,-12,19,-21v7,-9,16,-19,27,-30r0,-240r-76,0r0,-31r132,-35r19,0r0,407r87,0r0,28","w":570},"\u00f9":{"d":"288,-529r-159,-161r93,0r119,161r-53,0xm560,-28r-144,36r-18,0r0,-113v-18,22,-35,40,-50,55v-15,15,-30,28,-44,37v-14,9,-29,16,-43,20v-14,4,-29,6,-44,6v-38,0,-68,-12,-89,-35v-21,-23,-32,-54,-32,-94r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v19,0,36,-5,51,-15v15,-10,33,-27,56,-54v5,-5,12,-12,19,-21v7,-9,16,-19,27,-30r0,-240r-76,0r0,-31r132,-35r19,0r0,407r87,0r0,28","w":570},"\u00fb":{"d":"366,-529r-86,-88r-85,88r-49,0r113,-165r43,0r108,165r-44,0xm560,-28r-144,36r-18,0r0,-113v-18,22,-35,40,-50,55v-15,15,-30,28,-44,37v-14,9,-29,16,-43,20v-14,4,-29,6,-44,6v-38,0,-68,-12,-89,-35v-21,-23,-32,-54,-32,-94r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v19,0,36,-5,51,-15v15,-10,33,-27,56,-54v5,-5,12,-12,19,-21v7,-9,16,-19,27,-30r0,-240r-76,0r0,-31r132,-35r19,0r0,407r87,0r0,28","w":570},"\u00fc":{"d":"225,-588v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm422,-588v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36xm560,-28r-144,36r-18,0r0,-113v-18,22,-35,40,-50,55v-15,15,-30,28,-44,37v-14,9,-29,16,-43,20v-14,4,-29,6,-44,6v-38,0,-68,-12,-89,-35v-21,-23,-32,-54,-32,-94r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v19,0,36,-5,51,-15v15,-10,33,-27,56,-54v5,-5,12,-12,19,-21v7,-9,16,-19,27,-30r0,-240r-76,0r0,-31r132,-35r19,0r0,407r87,0r0,28","w":570},"\u00b0":{"d":"93,-547v0,19,7,36,21,50v14,14,31,21,50,21v20,0,37,-7,51,-21v14,-14,21,-31,21,-50v0,-20,-7,-37,-21,-51v-14,-14,-31,-21,-51,-21v-19,0,-36,7,-50,21v-14,14,-21,31,-21,51xm286,-547v0,17,-4,32,-10,47v-6,15,-15,27,-26,38v-11,11,-23,20,-38,26v-15,6,-31,10,-48,10v-17,0,-32,-4,-47,-10v-15,-6,-28,-15,-39,-26v-11,-11,-20,-23,-26,-38v-6,-15,-9,-30,-9,-47v0,-17,3,-32,9,-47v6,-15,15,-29,26,-40v11,-11,24,-20,39,-26v15,-6,30,-9,47,-9v17,0,33,3,48,9v15,6,27,15,38,26v11,11,20,25,26,40v6,15,10,30,10,47","w":333},"\u00a2":{"d":"117,-241v0,36,8,69,23,100v15,31,37,57,66,78r70,-365v-23,1,-44,6,-63,16v-19,10,-37,23,-51,40v-14,17,-25,36,-33,58v-8,22,-12,47,-12,73xm421,-35v-16,9,-30,17,-43,23v-13,6,-25,12,-36,16v-11,4,-21,6,-32,7v-11,1,-24,2,-37,2v-4,0,-9,0,-15,-1v-6,-1,-13,-1,-21,-1r-8,0r-14,75r-37,0r16,-83v-51,-12,-90,-37,-118,-75v-28,-38,-43,-85,-43,-140v0,-37,5,-71,17,-102v12,-31,29,-58,50,-80v21,-22,47,-40,76,-52v29,-12,62,-19,97,-19r10,0r14,-75r37,0r-14,78v9,1,17,3,24,5v7,2,15,4,22,7v7,3,14,7,22,12v12,8,11,8,27,19r-54,59v-5,-7,-9,-14,-13,-18v-6,-6,-5,-6,-10,-12v-3,-4,-8,-8,-12,-12r-15,-15r-71,371v10,3,18,6,24,7v6,1,12,2,19,2v9,0,17,0,25,-1v8,-1,15,-3,24,-6v9,-3,19,-7,30,-12r38,-19","w":443},"\u00a3":{"d":"70,-101r14,-36r128,-22r115,-412v13,-49,37,-88,71,-117v34,-29,74,-44,119,-44v14,0,28,2,41,6v13,4,24,8,34,15v10,7,16,14,22,23v6,9,9,18,9,27v0,17,-8,30,-25,39v-8,3,-14,5,-19,5v-7,0,-15,-2,-22,-7v-7,-5,-12,-11,-14,-18r-8,-26v-5,-16,-16,-24,-31,-24v-21,0,-42,13,-62,39v-20,26,-35,61,-47,105r-106,389r191,0r-21,58r-187,0r-42,155r-6,23v-2,7,-5,14,-8,21v-3,7,-9,18,-18,33v14,2,26,3,36,5v10,2,18,4,28,8v10,4,21,8,32,14v17,8,17,9,43,23v23,13,41,22,55,27v14,5,27,8,36,8v7,0,15,-2,22,-6v7,-4,14,-8,19,-14v4,-6,6,-12,6,-19v0,-14,-10,-31,-29,-52r72,-44v9,13,15,23,18,31v3,8,4,18,4,29v0,35,-14,62,-42,83v-28,21,-65,32,-112,32v-39,0,-75,-9,-106,-28r-45,-28v-11,-7,-20,-11,-29,-14v-9,-3,-21,-5,-38,-6v-45,51,-92,76,-141,76v-10,0,-19,-3,-25,-8v-6,-5,-9,-12,-9,-20v0,-9,4,-18,11,-27v7,-9,16,-18,28,-27v12,-9,25,-17,41,-24v16,-7,33,-12,51,-17v15,-25,29,-63,42,-114r30,-120r-126,0","w":576},"\u00a7":{"d":"152,-561v0,-17,2,-30,6,-41v4,-11,12,-26,23,-43r16,6v-1,9,-3,15,-3,19r0,12v0,17,3,41,10,72v7,31,15,62,26,95r64,196v17,50,29,99,38,147v9,48,13,90,13,128v0,21,-1,39,-3,55v-2,16,-5,31,-10,45v-5,14,-11,26,-18,37v-7,11,-17,23,-28,34v-37,37,-78,55,-123,55v-24,0,-45,-5,-62,-14v-17,-9,-38,-25,-61,-49r65,-42v19,34,46,51,81,51v36,0,64,-14,84,-40v20,-26,29,-63,29,-110v0,-19,-1,-39,-3,-60v-2,-21,-7,-44,-12,-68v-5,-24,-12,-51,-20,-81v-8,-30,-19,-63,-31,-100r-39,-123v-10,-34,-19,-63,-25,-86v-6,-23,-10,-42,-13,-57v-3,-15,-4,-27,-4,-38xm251,79v0,17,-1,31,-5,42v-4,11,-12,25,-23,42r-16,-6v1,-8,3,-13,3,-17r0,-14v0,-17,-3,-41,-10,-72v-7,-31,-15,-62,-26,-94r-64,-197v-16,-50,-29,-99,-38,-146v-9,-47,-13,-90,-13,-129v0,-34,4,-64,13,-92v9,-28,21,-52,37,-72v16,-20,35,-35,57,-46v22,-11,48,-16,75,-16v23,0,43,5,61,14v18,9,39,26,62,49r-65,43v-19,-35,-46,-52,-81,-52v-36,0,-64,14,-84,40v-20,26,-29,63,-29,111v0,19,1,38,3,59v2,21,7,43,12,68v5,25,12,52,20,82v8,30,19,63,31,100v16,48,29,88,39,122v10,34,19,63,25,86v6,23,11,41,13,56v2,15,3,28,3,39","w":396},"\u00b6":{"d":"492,256r-37,0r0,-955r-78,0r0,955r-38,0r0,-501r-50,0v-31,0,-61,-6,-89,-19v-28,-13,-53,-32,-74,-54v-21,-22,-38,-48,-51,-77v-13,-29,-19,-60,-19,-93v0,-36,6,-70,19,-100v13,-30,30,-56,52,-78v22,-22,48,-39,78,-52v30,-13,63,-19,98,-19r283,0r1,39r-95,0r0,954","w":644},"\u00df":{"d":"184,0r-151,0r0,-37r76,0r0,-360r-87,0r0,-27r87,-22r0,-81v0,-31,5,-59,14,-85v9,-26,22,-48,39,-67v17,-19,38,-33,61,-44v23,-11,49,-16,76,-16v25,0,50,4,73,13v23,9,44,21,62,36v18,15,33,32,44,51v11,19,16,39,16,60v0,19,-5,39,-16,57v-11,18,-25,33,-43,45r-62,42v-17,11,-30,25,-39,40v-9,15,-14,31,-14,47v0,11,1,20,4,27v3,7,8,15,16,21v8,6,19,12,34,19v15,7,34,15,58,24v44,16,75,34,94,55v19,21,29,48,29,81v0,42,-15,75,-46,99v-31,24,-73,35,-127,35v-32,0,-60,-4,-83,-11v-23,-7,-47,-20,-71,-37r48,-61v9,13,18,25,27,34v9,9,18,16,27,22v9,6,18,10,28,12v10,2,21,3,33,3v28,0,52,-8,71,-23v19,-15,29,-33,29,-54v0,-10,-1,-19,-4,-26v-3,-7,-9,-14,-17,-20v-8,-6,-20,-12,-35,-20v-15,-8,-36,-17,-62,-28v-44,-18,-75,-37,-93,-56v-18,-19,-26,-44,-26,-74v0,-15,1,-27,4,-38v3,-11,8,-23,15,-34v7,-11,18,-22,31,-34v13,-12,30,-26,51,-43v23,-19,40,-35,49,-49v9,-14,13,-32,13,-52v0,-30,-10,-56,-29,-76v-19,-20,-51,-37,-94,-51v-23,6,-42,13,-56,21v-14,8,-25,19,-33,34v-8,15,-14,33,-17,55v-3,22,-4,50,-4,84r0,509","w":605},"\u00ae":{"d":"437,-247r61,0v28,0,51,-8,68,-24v17,-16,25,-37,25,-64v0,-60,-35,-90,-104,-90r-50,0r0,178xm437,-206r0,169r69,0r0,37r-209,0r0,-37r70,0r0,-392r-70,0r0,-37r198,0v115,0,172,41,172,124v0,64,-36,106,-109,126r93,159v8,13,19,20,33,20r33,0r0,37r-116,0r-117,-206r-47,0xm154,-229v0,48,9,93,27,135v18,42,43,79,74,110v31,31,68,56,110,74v42,18,87,27,135,27v48,0,93,-9,135,-27v42,-18,79,-43,110,-74v31,-31,56,-68,74,-110v18,-42,27,-87,27,-135v0,-48,-9,-93,-27,-135v-18,-42,-43,-78,-74,-110v-31,-32,-68,-57,-110,-75v-42,-18,-87,-27,-135,-27v-48,0,-93,9,-135,27v-42,18,-79,43,-110,75v-31,32,-56,68,-74,110v-18,42,-27,87,-27,135xm910,-229v0,57,-11,109,-32,159v-21,50,-51,93,-88,130v-37,37,-80,66,-130,88v-50,22,-103,33,-160,33v-57,0,-110,-11,-160,-33v-50,-22,-93,-51,-130,-88v-37,-37,-67,-80,-88,-130v-21,-50,-32,-102,-32,-159v0,-57,11,-110,32,-160v21,-50,51,-94,88,-131v37,-37,80,-66,130,-88v50,-22,103,-32,160,-32v57,0,110,10,160,32v50,22,93,51,130,88v37,37,67,81,88,131v21,50,32,103,32,160","w":1000},"\u00a9":{"d":"669,-135r0,107v-18,8,-34,15,-48,20v-14,5,-27,9,-38,12v-11,3,-22,6,-33,7v-11,1,-23,2,-35,2v-37,0,-71,-7,-102,-19v-31,-12,-59,-30,-81,-52v-22,-22,-39,-48,-52,-79v-13,-31,-19,-64,-19,-101v0,-33,7,-64,21,-94v14,-30,31,-56,54,-79v23,-23,50,-41,80,-54v30,-13,62,-20,95,-20v17,0,36,2,55,7v19,5,37,12,52,20r0,-28r49,0r0,144r-50,0r0,-69v-22,-12,-40,-21,-53,-25v-13,-4,-27,-6,-43,-6v-24,0,-46,6,-67,16v-21,10,-39,24,-54,42v-15,18,-27,39,-36,64v-9,25,-13,51,-13,80v0,30,4,58,13,84v9,26,22,48,38,66v16,18,36,32,58,42v22,10,46,16,72,16v15,0,29,-2,41,-6v12,-4,27,-13,46,-26r0,-71r50,0xm154,-243v0,48,9,93,27,135v18,42,43,78,74,110v31,32,68,57,110,75v42,18,87,27,135,27v48,0,93,-9,135,-27v42,-18,79,-43,110,-75v31,-32,56,-68,74,-110v18,-42,27,-87,27,-135v0,-48,-9,-93,-27,-135v-18,-42,-43,-79,-74,-110v-31,-31,-68,-56,-110,-74v-42,-18,-87,-27,-135,-27v-48,0,-93,9,-135,27v-42,18,-79,43,-110,74v-31,31,-56,68,-74,110v-18,42,-27,87,-27,135xm910,-243v0,57,-11,110,-32,160v-21,50,-51,94,-88,131v-37,37,-80,66,-130,88v-50,22,-103,32,-160,32v-57,0,-110,-10,-160,-32v-50,-22,-93,-51,-130,-88v-37,-37,-67,-81,-88,-131v-21,-50,-32,-103,-32,-160v0,-57,11,-109,32,-159v21,-50,51,-93,88,-130v37,-37,80,-66,130,-88v50,-22,103,-33,160,-33v57,0,110,11,160,33v50,22,93,51,130,88v37,37,67,80,88,130v21,50,32,102,32,159","w":1000},"\u00b4":{"d":"123,-529r-54,0r119,-161r93,0","w":333},"\u00a8":{"d":"166,-572v0,13,-5,25,-15,35v-10,10,-22,15,-36,15v-13,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,35,-15v14,0,26,5,36,15v10,10,15,22,15,36xm341,-572v0,13,-5,25,-15,35v-10,10,-22,15,-36,15v-13,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,35,-15v14,0,26,5,36,15v10,10,15,22,15,36","w":406},"\u00c6":{"d":"426,-263r0,-356r-189,356r189,0xm808,0r-457,0r0,-37r75,0r0,-180r-212,0r-96,180r80,0r0,37r-190,0r0,-37r45,0r316,-586r-64,0r0,-37r447,0r0,-23r47,0r0,157r-47,0r0,-84r-239,0r0,255r192,0r0,-76r46,0r0,195r-46,0r0,-74r-192,0r0,264r248,0r0,-86r47,0r0,132","w":867},"\u00d8":{"d":"216,-119v23,28,47,49,72,61v25,12,54,18,86,18v32,0,62,-7,90,-22v28,-15,51,-34,71,-60v20,-26,36,-57,47,-92v11,-35,17,-74,17,-115v0,-34,-3,-64,-10,-91v-7,-27,-18,-57,-34,-89xm148,-333v0,34,3,65,10,94v7,29,19,58,34,88r340,-392v-42,-52,-95,-78,-160,-78v-32,0,-62,7,-89,21v-27,14,-51,34,-71,60v-20,26,-36,57,-47,92v-11,35,-17,74,-17,115xm40,24r102,-117v-32,-35,-55,-72,-70,-110v-15,-38,-23,-80,-23,-127v0,-47,8,-92,25,-133v17,-41,41,-78,70,-109v29,-31,64,-55,103,-73v39,-18,81,-27,126,-27v77,0,146,26,205,77r102,-117r29,26r-103,118v32,38,55,76,70,114v15,38,22,80,22,125v0,46,-9,90,-26,131v-17,41,-41,78,-70,109v-29,31,-64,57,-103,75v-39,18,-81,27,-124,27v-40,0,-76,-6,-109,-19v-33,-13,-65,-33,-96,-61r-101,116","w":749},"\u00b1":{"d":"512,0r-474,0r0,-57r474,0r0,57xm38,-249r0,-56r209,0r0,-169r56,0r0,169r209,0r0,56r-209,0r0,169r-56,0r0,-169r-209,0","w":550},"\u00a5":{"d":"438,0r-238,0r0,-37r75,0r0,-132r-165,0r0,-42r165,0r0,-94r-165,0r0,-39r140,0r-182,-279r-59,0r-1,-37r249,0r0,37r-91,0r171,261r161,-261r-91,0r0,-37r200,0r0,37r-51,0r-175,279r146,0r0,39r-165,0r0,94r165,0r0,42r-165,0r0,132r76,0r0,37","w":615},"\u00b5":{"d":"543,-478r0,503r-479,-251","w":620},"\u03bc":{"d":"543,-478r0,503r-479,-251","w":620},"\u00aa":{"d":"427,-605r-33,-27v-9,-7,-18,-14,-27,-19v-9,-5,-18,-10,-28,-15r-37,-18v-40,7,-69,26,-86,56v-17,30,-26,75,-26,136r0,49r225,0r0,-84v0,-9,1,-16,1,-22v0,-6,1,-11,2,-17r3,-18v0,0,3,-13,6,-21xm801,-700r-56,82r-29,-26v-12,-10,-12,-10,-24,-19v-8,-6,-15,-11,-24,-17v-14,-8,-14,-9,-34,-21v-27,1,-48,4,-62,9v-14,5,-28,15,-41,28v-9,9,-16,17,-21,26v-5,9,-9,19,-12,30v-3,11,-5,24,-6,40v-1,16,-1,35,-1,59r0,66r206,0r76,-20r19,0r0,426r76,0r0,37r-227,0r0,-37r76,0r0,-360r-226,0r0,360r75,0r0,37r-226,0r0,-37r75,0r0,-360r-225,0r0,360r75,0r0,37r-226,0r0,-37r75,0r0,-360r-87,0r0,-27r87,-22r0,-65v0,-32,4,-61,14,-87v10,-26,24,-48,41,-66v17,-18,39,-33,64,-43v25,-10,53,-15,84,-15v12,0,23,1,34,2v11,1,22,3,33,6v11,3,22,7,35,12v13,5,27,12,43,20v16,-11,30,-20,44,-27v14,-7,28,-13,41,-17v13,-4,27,-8,42,-10v15,-2,30,-3,47,-3v11,0,22,0,32,1v10,1,20,2,30,4v10,2,21,4,32,8v11,4,24,9,39,14","w":889},"\u00ba":{"d":"712,-443r0,-203v-9,-8,-17,-15,-24,-20v-7,-5,-14,-9,-21,-13v-7,-4,-13,-8,-21,-11r-29,-11v-25,3,-45,7,-62,15v-17,8,-31,19,-41,34v-10,15,-18,34,-22,57v-4,23,-6,51,-6,84r0,68r226,0xm422,-616v-12,-9,-23,-17,-32,-23v-9,-6,-17,-11,-26,-16v-9,-5,-19,-9,-29,-13r-38,-16v-21,6,-39,13,-54,22v-15,9,-26,20,-35,34v-9,14,-14,31,-18,50v-4,19,-6,42,-6,69r0,66r226,0r0,-85v0,-17,0,-31,2,-42v2,-11,5,-27,10,-46xm614,-739v9,0,17,0,24,1v7,1,14,2,22,3v8,1,16,3,24,5v8,2,17,6,28,10r56,-17r19,0r0,700r76,0r0,37r-227,0r0,-37r76,0r0,-360r-226,0r0,360r75,0r0,37r-226,0r0,-37r75,0r0,-360r-226,0r0,360r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27r87,-22r0,-82v0,-28,5,-54,15,-78v10,-24,24,-45,42,-62v18,-17,39,-30,64,-40v25,-10,52,-14,81,-14v26,0,49,4,71,10v22,6,47,17,74,32v13,-11,26,-21,38,-28v12,-7,26,-13,38,-18v12,-5,25,-8,38,-10v13,-2,28,-3,44,-3","w":883},"\u00e6":{"d":"184,-46v9,0,18,-1,26,-3v8,-2,16,-6,25,-11v9,-5,19,-12,29,-20v10,-8,22,-18,36,-31v-5,-15,-10,-28,-12,-39v-2,-11,-3,-22,-3,-33r0,-21r-170,40r0,50v0,19,6,35,19,48v13,13,30,20,50,20xm590,-319v-2,-73,-35,-109,-98,-109v-85,0,-129,55,-132,164xm663,-44v-30,21,-58,35,-83,44v-25,9,-53,13,-83,13v-39,0,-74,-8,-105,-23v-31,-15,-55,-38,-74,-67v-17,17,-32,32,-46,43v-14,11,-26,21,-39,28v-13,7,-25,11,-37,14v-12,3,-25,5,-39,5v-38,0,-69,-9,-91,-29v-22,-20,-33,-47,-33,-81v0,-31,9,-55,25,-73v16,-18,42,-31,78,-40r149,-35r0,-95v0,-30,-6,-52,-18,-66v-12,-14,-31,-21,-57,-21v-11,0,-20,1,-28,3v-8,2,-17,8,-29,15r0,48r-88,26v-4,-6,-7,-11,-8,-15v-1,-4,-2,-7,-2,-11v0,-15,4,-28,13,-41v9,-13,21,-24,36,-33v15,-9,32,-17,52,-22v20,-5,41,-8,64,-8v35,0,62,6,82,18v20,12,33,31,41,57v15,-25,36,-43,61,-56v25,-13,54,-19,87,-19v50,0,90,15,121,44v31,29,50,71,57,125r-310,74v0,15,0,29,1,40v1,11,3,21,6,30v3,9,7,18,12,26v5,8,12,18,20,27v16,19,34,34,56,45v22,11,45,17,68,17v9,0,18,-1,26,-2v8,-1,17,-4,26,-7v9,-3,19,-7,30,-12v11,-5,23,-12,37,-20","w":702},"\u00f8":{"d":"121,-230v0,21,1,40,4,57v3,17,8,34,15,51r211,-245v-14,-19,-28,-33,-43,-42v-15,-9,-33,-13,-53,-13v-19,0,-37,4,-53,14v-16,10,-30,24,-42,41v-12,17,-21,38,-28,61v-7,23,-11,49,-11,76xm160,-86v11,17,25,31,42,41v17,10,36,15,56,15v18,0,35,-5,51,-16v16,-11,30,-25,42,-43v12,-18,22,-39,29,-63v7,-24,10,-50,10,-77v0,-16,-1,-33,-4,-50v-3,-17,-8,-35,-14,-52xm254,13v-51,0,-96,-17,-135,-52r-74,86r-28,-26r75,-87v-20,-26,-35,-52,-44,-77v-9,-25,-13,-53,-13,-84v0,-33,5,-64,17,-93v12,-29,28,-54,48,-75v20,-21,43,-38,70,-51v27,-13,55,-19,86,-19v49,0,95,17,136,51r75,-87r29,25r-76,89v19,28,34,55,43,80v9,25,14,52,14,81v0,33,-6,63,-18,92v-12,29,-29,54,-49,76v-20,22,-43,39,-70,52v-27,13,-56,19,-86,19","w":486},"\u00bf":{"d":"211,-433v-1,-16,5,-29,16,-41v11,-12,25,-18,42,-18v15,0,29,6,40,17v11,11,17,25,17,41v0,15,-6,29,-17,40v-11,11,-25,17,-40,17v-16,0,-30,-6,-41,-17v-11,-11,-16,-24,-17,-39xm263,-288r25,0r0,176r-165,0v-7,12,-11,22,-13,29v-2,7,-2,19,-2,34v0,32,7,61,21,88v14,27,33,48,58,63v10,7,19,12,27,17v8,5,18,9,28,13v10,4,20,7,33,10v13,3,29,7,48,12r-35,102v-35,-10,-67,-24,-96,-43v-29,-19,-53,-41,-73,-67v-20,-26,-36,-54,-47,-86v-11,-32,-16,-65,-16,-100v0,-44,11,-79,32,-104v21,-25,51,-38,88,-38r61,0","w":409},"\u00a1":{"d":"75,-448v0,-15,6,-29,17,-40v11,-11,25,-17,40,-17v15,0,29,6,40,17v11,11,17,25,17,40v0,16,-6,29,-17,40v-11,11,-25,17,-40,17v-15,0,-29,-6,-40,-17v-11,-11,-17,-24,-17,-40xm152,-301r38,544r-116,0r38,-544r40,0","w":263},"\u00ab":{"d":"339,-224r119,151r0,42r-232,-193r232,-192r0,41xm139,-224r118,151r0,42r-232,-193r232,-192r0,41","w":492},"\u00bb":{"d":"157,-224r-119,-151r0,-41r232,192r-232,193r0,-42xm357,-224r-119,-151r0,-41r233,192r-233,193r0,-42","w":500},"\u00a0":{"w":333},"\u00c0":{"d":"428,-265r-107,-281r-113,281r220,0xm366,-713r-166,-115r107,0r114,115r-55,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":672},"\u00c3":{"d":"428,-265r-107,-281r-113,281r220,0xm246,-757v-16,0,-31,2,-44,7v-13,5,-28,14,-45,26r-21,-21v19,-19,41,-34,64,-44v23,-10,46,-15,71,-15v10,0,20,0,31,2v11,2,19,4,24,6r45,20v22,10,46,15,72,15v9,0,17,0,24,-1v7,-1,13,-2,19,-4v6,-2,12,-6,19,-10v10,-6,10,-7,25,-17r23,18v-22,21,-45,36,-67,45v-22,9,-49,14,-80,14v-19,0,-35,-1,-48,-4v-13,-3,-28,-9,-43,-16v-11,-5,-19,-9,-25,-12v-6,-3,-12,-5,-16,-6v-4,-1,-9,-2,-13,-2v-4,0,-9,-1,-15,-1xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":672},"\u00d5":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm267,-758v-16,0,-31,3,-44,8v-13,5,-28,13,-45,25r-21,-21v39,-39,84,-59,134,-59v11,0,21,1,32,3v11,2,19,3,24,5r44,20v23,10,48,15,73,15v9,0,17,0,24,-1v7,-1,13,-3,19,-5v6,-2,12,-6,19,-10v10,-6,10,-6,25,-16r23,18v-22,21,-44,37,-66,46v-22,9,-50,13,-81,13v-19,0,-35,-2,-48,-5v-13,-3,-28,-8,-44,-15v-11,-5,-19,-9,-25,-12v-6,-3,-11,-5,-16,-6v-5,-1,-8,-3,-12,-3r-15,0xm373,13v-44,0,-86,-9,-125,-27v-39,-18,-72,-43,-102,-74v-30,-31,-53,-68,-70,-109v-17,-41,-26,-85,-26,-132v0,-47,9,-92,26,-133v17,-41,40,-78,69,-109v29,-31,64,-56,103,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,47,-8,91,-25,132v-17,41,-41,78,-70,109v-29,31,-63,57,-102,75v-39,18,-80,27,-123,27","w":743},"\u00f7":{"d":"525,-208r-500,0r0,-57r500,0r0,57xm335,-427v0,16,-6,30,-17,41v-11,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-41v0,-17,6,-31,17,-42v11,-11,25,-17,42,-17v16,0,30,6,41,17v11,11,17,25,17,42xm335,-48v0,17,-6,31,-17,42v-11,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-42v0,-16,6,-30,17,-41v11,-11,25,-17,42,-17v16,0,30,6,41,17v11,11,17,25,17,41","w":550},"\u00ff":{"d":"186,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm370,-571v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm443,-416r-42,0r-169,439v-11,30,-25,61,-42,94v-17,33,-34,61,-51,85v-5,6,-11,13,-17,22v-6,9,-14,20,-23,32r-65,-67v21,-12,22,-12,36,-21v10,-6,18,-12,26,-18v8,-6,14,-14,21,-21v7,-7,14,-16,22,-26v7,-9,14,-18,19,-26v5,-8,10,-17,15,-26r15,-31v5,-11,10,-24,16,-39r-162,-397r-42,0r0,-37r194,0r0,37r-71,0r121,295r112,-295r-67,0r0,-37r154,0r0,37","w":443},"\u00b7":{"d":"296,-240v0,17,-6,31,-18,42v-12,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-42v0,-16,6,-30,17,-42v11,-12,25,-17,42,-17v16,0,29,5,41,17v12,12,18,26,18,42","w":474},"\u2219":{"d":"296,-240v0,17,-6,31,-18,42v-12,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-42v0,-16,6,-30,17,-42v11,-12,25,-17,42,-17v16,0,29,5,41,17v12,12,18,26,18,42","w":474},"\u00c2":{"d":"428,-265r-107,-281r-113,281r220,0xm425,-701r-85,-59r-86,59r-48,0r112,-112r44,0r107,112r-44,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":672},"\u00ca":{"d":"381,-723r-86,-59r-85,59r-49,0r112,-112r44,0r107,112r-43,0xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},"\u00c1":{"d":"428,-265r-107,-281r-113,281r220,0xm303,-718r-56,0r115,-115r107,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38","w":672},"\u00cb":{"d":"232,-766v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm427,-766v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},"\u00c8":{"d":"325,-717r-166,-115r107,0r114,115r-55,0xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},"\u00cd":{"d":"182,-710r-44,0r86,-115r95,0xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},"\u00ce":{"d":"275,-701r-86,-59r-85,59r-49,0r113,-112r43,0r107,112r-43,0xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},"\u00cf":{"d":"161,-758v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm313,-758v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},"\u00cc":{"d":"201,-714r-137,-115r96,0r85,115r-44,0xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},"\u00d3":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm345,-720r-63,0r140,-102r115,0xm373,13v-44,0,-86,-9,-125,-27v-39,-18,-72,-43,-102,-74v-30,-31,-53,-68,-70,-109v-17,-41,-26,-85,-26,-132v0,-47,9,-92,26,-133v17,-41,40,-78,69,-109v29,-31,64,-56,103,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,47,-8,91,-25,132v-17,41,-41,78,-70,109v-29,31,-63,57,-102,75v-39,18,-80,27,-123,27","w":743},"\u00d4":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm458,-709r-85,-59r-86,59r-48,0r112,-112r44,0r107,112r-44,0xm373,13v-44,0,-86,-9,-125,-27v-39,-18,-72,-43,-102,-74v-30,-31,-53,-68,-70,-109v-17,-41,-26,-85,-26,-132v0,-47,9,-92,26,-133v17,-41,40,-78,69,-109v29,-31,64,-56,103,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,47,-8,91,-25,132v-17,41,-41,78,-70,109v-29,31,-63,57,-102,75v-39,18,-80,27,-123,27","w":743},"\u00d2":{"d":"374,-620v-33,0,-62,8,-90,22v-28,14,-52,34,-72,60v-20,26,-35,56,-46,91v-11,35,-17,74,-17,117v0,42,6,80,17,116v11,36,26,67,46,93v20,26,44,47,71,61v27,14,57,21,90,21v32,0,62,-7,89,-22v27,-15,50,-35,70,-61v20,-26,35,-56,46,-92v11,-36,16,-74,16,-116v0,-42,-5,-81,-16,-116v-11,-35,-26,-66,-46,-92v-20,-26,-43,-46,-70,-60v-27,-14,-56,-22,-88,-22xm381,-720r-192,-102r115,0r140,102r-63,0xm373,13v-44,0,-86,-9,-125,-27v-39,-18,-72,-43,-102,-74v-30,-31,-53,-68,-70,-109v-17,-41,-26,-85,-26,-132v0,-47,9,-92,26,-133v17,-41,40,-78,69,-109v29,-31,64,-56,103,-74v39,-18,81,-27,125,-27v43,0,84,10,123,28v39,18,73,43,102,74v29,31,53,67,70,108v17,41,25,85,25,132v0,47,-8,91,-25,132v-17,41,-41,78,-70,109v-29,31,-63,57,-102,75v-39,18,-80,27,-123,27","w":743},"\u00da":{"d":"405,-697r-55,0r115,-115r107,0xm729,-623r-75,0r0,381v0,54,-10,99,-29,134v-19,35,-50,64,-92,87v-43,23,-90,34,-139,34v-36,0,-69,-6,-100,-17v-31,-11,-58,-28,-80,-48v-22,-20,-40,-44,-53,-72v-13,-28,-19,-57,-19,-90r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,30,4,57,13,82v9,25,21,45,37,63v16,18,34,32,56,41v22,9,48,14,76,14v29,0,55,-5,78,-15v23,-10,43,-22,60,-40v17,-18,30,-39,39,-64v9,-25,14,-52,14,-82r0,-377r-75,0r0,-37r201,0r0,37","w":780},"\u00db":{"d":"502,-708r-85,-59r-86,59r-48,0r112,-112r44,0r107,112r-44,0xm729,-623r-75,0r0,381v0,54,-10,99,-29,134v-19,35,-50,64,-92,87v-43,23,-90,34,-139,34v-36,0,-69,-6,-100,-17v-31,-11,-58,-28,-80,-48v-22,-20,-40,-44,-53,-72v-13,-28,-19,-57,-19,-90r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,30,4,57,13,82v9,25,21,45,37,63v16,18,34,32,56,41v22,9,48,14,76,14v29,0,55,-5,78,-15v23,-10,43,-22,60,-40v17,-18,30,-39,39,-64v9,-25,14,-52,14,-82r0,-377r-75,0r0,-37r201,0r0,37","w":780},"\u00d9":{"d":"403,-706r-166,-115r107,0r115,115r-56,0xm729,-623r-75,0r0,381v0,54,-10,99,-29,134v-19,35,-50,64,-92,87v-43,23,-90,34,-139,34v-36,0,-69,-6,-100,-17v-31,-11,-58,-28,-80,-48v-22,-20,-40,-44,-53,-72v-13,-28,-19,-57,-19,-90r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,30,4,57,13,82v9,25,21,45,37,63v16,18,34,32,56,41v22,9,48,14,76,14v29,0,55,-5,78,-15v23,-10,43,-22,60,-40v17,-18,30,-39,39,-64v9,-25,14,-52,14,-82r0,-377r-75,0r0,-37r201,0r0,37","w":780},"\"":{"d":"256,-658r58,0r0,226r-58,0r0,-226xm95,-658r59,0r0,226r-59,0r0,-226","w":409},"!":{"d":"189,-46v0,15,-6,29,-17,40v-11,11,-25,17,-40,17v-15,0,-29,-6,-40,-17v-11,-11,-17,-25,-17,-40v0,-15,6,-29,17,-40v11,-11,25,-17,40,-17v15,0,29,6,40,17v11,11,17,25,17,40xm152,-192r-40,0r-38,-545r116,0","w":265},"\u00a4":{"d":"414,-443r0,-59r0,-32v0,0,1,-16,2,-24v1,-8,3,-16,5,-24v2,-8,5,-16,8,-27v-12,-10,-22,-18,-31,-24v-9,-6,-18,-11,-27,-16v-9,-5,-18,-9,-29,-13v-11,-4,-24,-8,-40,-13v-39,7,-68,27,-86,57v-18,30,-27,74,-27,132r0,43r225,0xm585,0r-234,0r0,-37r63,0r0,-360r-225,0r0,360r62,0r0,37r-213,0r0,-37r75,0r0,-360r-86,0r0,-24r86,-21r0,-61v0,-32,5,-61,15,-87v10,-26,24,-48,42,-66v18,-18,40,-33,66,-43v26,-10,54,-15,86,-15v27,0,54,3,78,10v24,7,48,17,71,30v20,-21,41,-35,64,-44v23,-9,51,-14,84,-14v25,0,48,3,69,8v21,5,44,15,69,28r-55,68v-10,-9,-19,-16,-26,-22v-7,-6,-13,-11,-20,-16v-7,-5,-15,-9,-23,-13r-30,-15v-40,7,-69,26,-87,55v-18,29,-27,74,-27,135r0,61r116,0r0,46r-115,0r0,360r95,0r0,37","w":631}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 1993 Martin Majoor
 * 
 * Manufacturer:
 * Martin Majoor
 */
Cufon.registerFont({"w":550,"face":{"font-family":"ScalaSans","font-weight":550,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 4 0 0 2 0 3","ascent":"800","descent":"-200","x-height":"13","bbox":"-21 -868 915 256","underline-thickness":"57","underline-position":"28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":250},"#":{"d":"268,-401r-26,130r143,0r26,-130r-143,0xm585,-401r-112,0r-25,130r114,0r-10,57r-116,0r-41,214r-62,0r41,-214r-143,0r-43,214r-61,0r43,-214r-115,0r10,-57r116,0r27,-130r-116,0r10,-57r116,0r40,-200r60,0r-39,200r143,0r39,-200r62,0r-39,200r111,0","w":650},"$":{"d":"393,-162v0,-24,-3,-40,-9,-49v-5,-7,-25,-25,-61,-54v-11,-9,-19,-13,-25,-13r0,215v29,-5,53,-17,70,-35v17,-18,25,-39,25,-64xm253,-597v-67,12,-101,44,-101,95v0,30,14,54,41,72v24,17,36,25,37,26v5,4,10,8,15,11v5,3,8,4,8,3r0,-207xm442,-548v-15,-9,-27,-16,-36,-20v-9,-4,-20,-9,-33,-14v-15,-5,-28,-10,-37,-12v-9,-2,-22,-3,-38,-4r0,230v5,3,9,6,12,8v3,2,6,4,9,5v27,15,48,28,65,39v17,11,30,19,38,26v16,13,29,29,38,50v9,21,14,44,14,68v0,27,-6,52,-16,76v-10,24,-25,44,-44,60v-8,7,-16,12,-23,17v-7,5,-15,9,-24,13v-9,4,-18,6,-29,9v-11,3,-25,5,-40,7r0,59r-44,0r-1,-56v-15,-1,-28,-2,-39,-3v-11,-1,-21,-2,-30,-4v-9,-2,-16,-3,-24,-6v-8,-3,-16,-6,-25,-9v-9,-4,-9,-4,-17,-8v-6,-3,-12,-5,-18,-9v-10,-6,-10,-6,-22,-14r-28,-18r42,-65r24,16v7,5,14,9,20,12v6,3,11,7,16,9v8,4,7,3,15,7v14,6,27,11,38,13v11,2,27,4,48,5r0,-240r-41,-24v-27,-15,-49,-30,-67,-43v-18,-13,-32,-26,-43,-40v-11,-14,-19,-28,-24,-42v-5,-14,-7,-29,-7,-46v0,-48,16,-87,47,-117v31,-30,76,-49,135,-56r1,-60r44,0r0,59v12,1,23,1,32,2v9,1,16,1,24,2v8,1,15,2,22,4v7,2,15,4,24,7v7,2,12,5,18,7v6,2,12,5,18,8v6,3,13,6,20,10r24,14","w":534},"%":{"d":"755,-162v0,-16,-3,-31,-9,-45v-6,-14,-14,-27,-24,-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,-19,23,-25,37v-6,14,-9,29,-9,45v0,16,3,30,9,44v6,14,15,26,25,36v10,10,22,19,36,25v14,6,29,9,45,9v16,0,31,-3,45,-9v14,-6,26,-15,36,-25v10,-10,18,-22,24,-36v6,-14,9,-28,9,-44xm324,-495v0,-16,-3,-31,-9,-45v-6,-14,-15,-25,-25,-36v-10,-11,-22,-19,-36,-25v-14,-6,-29,-9,-45,-9v-16,0,-31,3,-45,9v-14,6,-26,14,-36,25v-10,11,-18,22,-24,36v-6,14,-9,29,-9,45v0,16,3,31,9,45v6,14,14,26,24,36v10,10,22,19,36,25v14,6,29,9,45,9v16,0,31,-3,45,-9v14,-6,26,-15,36,-25v10,-10,19,-22,25,-36v6,-14,9,-29,9,-45xm816,-162v0,24,-5,47,-14,68v-9,21,-22,40,-38,56v-16,16,-34,28,-55,37v-21,9,-44,14,-68,14v-24,0,-47,-5,-68,-14v-21,-9,-40,-21,-56,-37v-16,-16,-28,-35,-37,-56v-9,-21,-14,-44,-14,-68v0,-24,5,-47,14,-68v9,-21,21,-40,37,-56v16,-16,35,-29,56,-38v21,-9,44,-13,68,-13v24,0,47,4,68,13v21,9,39,22,55,38v16,16,29,35,38,56v9,21,14,44,14,68xm172,44r-69,0r572,-736r69,0xm384,-495v0,24,-5,47,-14,68v-9,21,-21,40,-37,56v-16,16,-35,28,-56,37v-21,9,-44,14,-68,14v-24,0,-47,-5,-68,-14v-21,-9,-39,-21,-55,-37v-16,-16,-29,-35,-38,-56v-9,-21,-14,-44,-14,-68v0,-24,5,-47,14,-68v9,-21,22,-40,38,-56v16,-16,34,-29,55,-38v21,-9,44,-14,68,-14v24,0,47,5,68,14v21,9,40,22,56,38v16,16,28,35,37,56v9,21,14,44,14,68","w":850},"&":{"d":"222,-342r-42,34v-29,23,-50,44,-62,64v-12,20,-18,43,-18,68v0,37,12,66,36,88v24,22,58,32,99,32v27,0,51,-5,73,-14v10,-5,20,-10,30,-16v10,-6,24,-18,43,-34xm709,-101r-16,24r-13,18v-4,5,-8,10,-12,14r-13,13v-29,29,-62,44,-100,44v-9,0,-18,0,-27,-2v-9,-2,-18,-5,-26,-8v-13,-5,-26,-12,-38,-22v-12,-10,-27,-26,-47,-47v-31,29,-61,49,-91,61v-30,12,-66,19,-106,19v-31,0,-58,-4,-83,-13v-25,-9,-45,-20,-63,-36v-18,-16,-32,-35,-42,-57v-10,-22,-14,-47,-14,-74v0,-17,2,-34,6,-49v4,-15,12,-29,22,-44v10,-15,22,-32,38,-48v16,-16,35,-33,58,-52r43,-35r-20,-26r-17,-23v-20,-27,-34,-49,-42,-68v-8,-19,-11,-40,-11,-62v0,-25,5,-48,14,-68v9,-20,22,-37,39,-52v17,-15,38,-26,62,-34v24,-8,51,-12,80,-12v27,0,51,3,73,10v22,7,41,18,57,30v16,12,28,27,37,44v9,17,13,37,13,58v0,22,-8,44,-23,68v-15,24,-37,47,-66,68r-46,34r-39,-50r40,-30v19,-15,33,-29,42,-42v9,-13,13,-29,13,-46v0,-23,-10,-43,-29,-58v-19,-15,-43,-22,-73,-22v-33,0,-59,10,-81,28v-22,18,-33,41,-33,69v0,9,2,19,5,30v2,8,4,15,6,21v2,6,6,13,10,20v4,7,11,16,18,27v7,11,16,24,28,40r192,266v15,-17,27,-30,34,-41v7,-11,14,-23,20,-38v3,-7,6,-15,8,-22v2,-7,4,-14,5,-22v1,-8,3,-16,4,-26v1,-10,3,-22,4,-35r69,0v-1,15,-3,28,-4,39v-1,11,-2,21,-4,30v-2,9,-4,18,-6,26v-2,8,-6,15,-9,23v-4,10,-8,19,-13,28v-5,9,-10,18,-16,27v-6,9,-14,18,-23,28r-31,35v20,25,37,43,50,52v13,9,28,14,43,14v16,0,31,-6,45,-17v14,-11,30,-31,50,-60","w":701},"'":{"d":"91,-434r0,-226r69,0r0,226r-69,0","w":251},"(":{"d":"274,245r-22,-28v-6,-8,-12,-17,-17,-27v-5,-10,-11,-20,-17,-32v-6,-12,-12,-29,-20,-49v-23,-55,-41,-108,-52,-160v-11,-52,-16,-106,-16,-162v0,-55,5,-108,16,-159v11,-51,29,-105,52,-162v14,-33,14,-34,23,-54v6,-14,12,-24,17,-33v5,-9,10,-16,15,-23v5,-7,12,-14,21,-22r75,0v-20,23,-38,52,-55,86v-17,34,-31,72,-43,112v-12,40,-21,83,-28,127v-7,44,-10,88,-10,131v0,43,3,87,10,131v7,44,16,87,28,127v12,40,26,77,43,111v17,34,35,63,55,86r-75,0","w":363},")":{"d":"241,-213v0,55,-5,109,-16,159v-11,50,-28,104,-52,163v-7,18,-13,33,-19,45r-17,34v0,0,-11,18,-17,27v-6,9,-14,19,-23,30r-75,0v20,-23,38,-52,55,-86v17,-34,31,-71,43,-111v12,-40,21,-83,28,-127v7,-44,10,-88,10,-131v0,-43,-3,-87,-10,-131v-7,-44,-16,-87,-28,-127v-12,-40,-26,-78,-43,-112v-17,-34,-35,-63,-55,-86r75,0v8,8,15,15,21,22v6,7,11,14,16,23v5,9,10,19,16,33v9,20,9,21,23,54v23,57,40,111,51,162v11,51,17,104,17,159","w":363},"*":{"d":"148,-232r-58,-42r104,-132r48,34xm353,-232r-94,-140r47,-35r104,133xm187,-425r-162,-46r22,-68r159,58xm312,-425r-19,-56r159,-58r22,68xm280,-491r-58,0r-6,-169r71,0","w":500},"+":{"d":"303,-208r0,208r-56,0r0,-208r-209,0r0,-57r209,0r0,-209r56,0r0,209r209,0r0,57r-209,0"},",":{"d":"176,-36v0,9,-1,17,-2,26v-1,9,-3,18,-6,27v-4,15,-9,31,-16,45r-30,59r-13,24r-44,0v5,-11,9,-20,11,-27v4,-10,4,-10,11,-30v2,-7,3,-13,5,-18v2,-5,3,-10,4,-14v1,-4,3,-8,4,-13v1,-5,3,-10,4,-17r-43,-108v11,-7,21,-12,29,-14v8,-2,18,-4,29,-4v38,0,57,21,57,64","w":252},"-":{"d":"42,-190r0,-76r191,0r0,76r-191,0","w":276},"\u00ad":{"d":"42,-190r0,-76r191,0r0,76r-191,0","w":276},".":{"d":"182,-45v0,16,-5,30,-16,41v-11,11,-25,16,-40,16v-16,0,-29,-5,-40,-16v-11,-11,-17,-25,-17,-41v0,-15,6,-28,17,-39v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,24,16,39","w":251},"\/":{"d":"112,245r-69,0r252,-905r69,0","w":409},"0":{"d":"464,-234v0,-27,-5,-51,-14,-74v-9,-23,-20,-44,-36,-61v-16,-17,-35,-31,-56,-41v-21,-10,-43,-15,-67,-15v-24,0,-46,5,-67,15v-21,10,-40,24,-56,41v-16,17,-29,38,-38,61v-9,23,-13,47,-13,74v0,26,4,51,13,74v9,23,22,44,38,61v16,17,35,31,56,41v21,10,43,15,67,15v24,0,46,-5,67,-15v21,-10,40,-24,56,-41v16,-17,27,-38,36,-61v9,-23,14,-48,14,-74xm539,-234v0,35,-6,67,-19,98v-13,31,-32,57,-54,80v-22,23,-48,41,-78,54v-30,13,-63,20,-97,20v-35,0,-67,-7,-97,-20v-30,-13,-56,-31,-79,-54v-23,-23,-40,-49,-53,-80v-13,-31,-20,-63,-20,-98v0,-35,7,-68,20,-99v13,-31,30,-57,53,-80v23,-23,49,-41,79,-54v30,-13,62,-20,97,-20v34,0,67,7,97,20v30,13,56,31,78,54v22,23,41,49,54,80v13,31,19,64,19,99","w":570},"1":{"d":"172,0r0,-415r-113,0r0,-63r188,0r0,478r-75,0","w":390},"2":{"d":"42,0r0,-38r232,-201v33,-28,50,-60,50,-97v0,-25,-8,-45,-24,-60v-16,-15,-38,-22,-64,-22v-11,0,-23,2,-35,5v-12,3,-22,8,-31,13v-5,3,-10,7,-14,10v-4,3,-8,6,-13,11r-17,17v0,0,-10,11,-27,29r-51,-38r27,-31v0,0,10,-10,17,-18v5,-5,9,-10,13,-13r15,-12v16,-13,34,-22,56,-29v22,-7,45,-11,68,-11v49,0,88,13,116,39v28,26,42,62,42,107v0,23,-4,45,-12,64v-3,7,-6,14,-10,21v-4,7,-11,14,-18,22v-7,8,-15,16,-26,26r-40,35r-129,108r277,0r0,63r-402,0","w":494},"3":{"d":"368,-30v0,37,-7,70,-22,99v-15,29,-35,54,-62,75v-27,21,-59,38,-97,49v-38,11,-81,17,-128,17r-25,0r0,-64v23,-1,43,-2,60,-3v17,-1,32,-4,46,-7v14,-3,26,-6,37,-10v11,-4,23,-10,34,-17v26,-15,46,-34,61,-57v15,-23,22,-48,22,-75v0,-39,-12,-68,-36,-89v-24,-21,-60,-31,-105,-31r-50,0r0,-55v51,-11,91,-30,118,-54v27,-24,41,-54,41,-89v0,-24,-7,-43,-20,-57v-13,-14,-31,-22,-54,-22v-17,0,-33,4,-48,12v-15,8,-36,22,-62,43r-44,-50v7,-7,14,-12,20,-17v6,-5,13,-10,18,-13v19,-13,39,-23,62,-30v23,-7,46,-11,68,-11v41,0,73,12,97,37v24,25,36,58,36,100v0,69,-33,121,-100,154v15,5,26,8,33,11v7,3,14,6,21,10v25,14,45,33,59,58v14,25,20,53,20,86","w":430},"4":{"d":"308,-308r-171,229r-19,21r25,-5r179,0r-1,-244r2,-31xm394,0r0,210r-72,0r0,-210r-315,0r0,-19r352,-465r35,0r0,421r116,0r0,63r-116,0","w":526},"5":{"d":"364,-25v0,40,-8,76,-26,109v-18,33,-43,60,-75,81v-27,17,-58,30,-95,37v-9,2,-17,3,-24,4v-7,1,-16,3,-24,4v-8,1,-18,1,-28,2v-10,1,-23,1,-38,2r0,-63v17,-1,31,-2,42,-3v11,-1,21,-2,30,-3v9,-1,16,-3,24,-5v12,-3,12,-3,26,-7v35,-11,63,-31,82,-57v19,-26,28,-58,28,-96v0,-51,-15,-91,-44,-119v-13,-11,-28,-20,-46,-25v-18,-5,-43,-9,-74,-10r-49,-2r0,-302r271,0r0,63r-199,0r0,176r39,3v56,4,100,25,132,62v32,37,48,87,48,149","w":413},"6":{"d":"416,-202v0,-19,-3,-36,-9,-52v-6,-16,-15,-29,-25,-40v-10,-11,-22,-20,-37,-26v-15,-6,-31,-10,-48,-10v-7,0,-16,0,-27,2v-11,2,-21,4,-32,7v-9,2,-17,5,-24,7v-7,2,-14,5,-21,8v-7,3,-15,6,-23,10v-12,6,-12,5,-28,13v-1,11,-1,19,-1,24r0,16v0,29,3,57,10,81v7,24,16,45,29,62v13,17,28,31,45,40v17,9,36,14,57,14v19,0,38,-4,54,-12v16,-8,30,-19,42,-33v12,-14,21,-30,28,-49v7,-19,10,-40,10,-62xm482,-210v0,33,-5,64,-15,92v-10,28,-24,54,-42,74v-18,20,-39,36,-64,48v-25,12,-52,17,-81,17v-33,0,-62,-7,-88,-20v-26,-13,-50,-32,-68,-57v-18,-25,-32,-55,-42,-90v-10,-35,-14,-75,-14,-120v0,-119,32,-219,96,-300v29,-36,60,-62,96,-79v36,-17,78,-25,127,-25v10,0,19,0,28,1v9,1,21,2,37,3r0,62v-13,-1,-22,-2,-29,-2v-7,0,-15,-1,-24,-1v-15,0,-31,1,-45,3v-14,2,-26,4,-36,7v-36,12,-69,37,-100,74v-11,13,-20,25,-28,37v-8,12,-14,24,-20,37v-6,13,-10,29,-14,45v-4,16,-9,35,-14,58v27,-13,27,-14,37,-18v7,-3,13,-5,20,-8v41,-15,78,-23,113,-23v25,0,48,4,69,13v21,9,38,22,53,38v15,16,28,36,36,59v8,23,12,48,12,75","w":544},"7":{"d":"287,-75r-23,51v0,0,-18,37,-29,57v-9,17,-17,32,-25,45v-8,13,-16,24,-24,36v-8,12,-16,24,-26,37v-10,13,-22,27,-36,44r-58,-49r24,-28v7,-8,12,-15,16,-20v23,-30,46,-64,67,-102v21,-38,39,-74,52,-109r114,-296r-297,0r0,-69r390,0r0,38","w":465},"8":{"d":"377,-156v0,-18,-5,-36,-15,-52v-10,-16,-27,-35,-50,-56r-63,-57r-63,51v-43,35,-65,73,-65,114v0,34,11,60,32,78v21,18,52,27,92,27v41,0,74,-9,97,-28v23,-19,35,-44,35,-77xm351,-540v0,-24,-9,-44,-28,-58v-19,-14,-44,-21,-76,-21v-30,0,-54,9,-73,25v-19,16,-28,37,-28,62v0,29,16,57,49,85r54,45r55,-45v15,-12,26,-26,34,-43v8,-17,13,-33,13,-50xm457,-149v0,24,-5,46,-15,66v-10,20,-25,37,-44,52v-19,15,-42,26,-68,34v-26,8,-56,12,-88,12v-30,0,-58,-4,-82,-12v-24,-8,-44,-19,-62,-33v-18,-14,-32,-32,-42,-52v-10,-20,-14,-42,-14,-66v0,-27,5,-51,16,-72v3,-6,8,-12,14,-20r18,-24v0,0,12,-15,19,-22v7,-7,13,-12,19,-17r71,-55r-65,-55v-13,-11,-23,-21,-32,-30v-9,-9,-15,-17,-20,-26v-5,-9,-9,-18,-11,-27v-2,-9,-3,-18,-3,-29v0,-23,5,-43,14,-62v9,-19,21,-35,38,-49v17,-14,36,-24,59,-31v23,-7,48,-11,76,-11v26,0,49,3,71,10v22,7,41,16,56,28v15,12,27,27,36,44v9,17,13,35,13,56v0,45,-21,85,-63,119r-69,56r82,70v11,9,23,20,34,35v17,19,27,36,33,52v6,16,9,36,9,59","w":499},"9":{"d":"412,-222v0,-30,-3,-58,-10,-82v-7,-24,-16,-45,-28,-62v-12,-17,-28,-31,-45,-40v-17,-9,-37,-14,-58,-14v-19,0,-37,4,-53,12v-16,8,-30,19,-42,33v-12,14,-21,31,-28,50v-7,19,-10,40,-10,62v0,37,11,68,33,92v22,24,51,36,86,36v7,0,17,-1,27,-3v10,-2,21,-3,32,-6v17,-5,31,-9,44,-14v13,-5,30,-13,51,-24v1,-11,1,-19,1,-24r0,-16xm485,-199v0,59,-8,113,-24,163v-16,50,-40,96,-71,136v-29,36,-61,63,-97,80v-36,17,-78,25,-127,25v-10,0,-20,0,-28,-1r-36,-3r0,-63v12,1,21,2,28,3v7,1,15,1,24,1v33,0,60,-4,82,-11v17,-5,35,-14,52,-27v17,-13,33,-28,48,-46v11,-13,20,-24,28,-36v8,-12,14,-25,20,-38v6,-13,10,-28,14,-45v4,-17,9,-36,13,-59v-17,9,-30,15,-37,18r-20,8v-39,16,-76,24,-113,24v-25,0,-48,-5,-69,-14v-21,-9,-39,-22,-54,-38v-15,-16,-26,-35,-34,-58v-8,-23,-13,-48,-13,-75v0,-33,5,-65,15,-93v10,-28,25,-52,43,-73v18,-21,39,-37,64,-49v25,-12,51,-17,80,-17v67,0,119,26,156,77v37,51,56,121,56,211","w":544},":":{"d":"182,-45v0,16,-5,30,-16,41v-11,11,-25,16,-40,16v-16,0,-29,-5,-40,-16v-11,-11,-17,-25,-17,-41v0,-15,6,-28,17,-39v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,24,16,39xm182,-409v0,16,-5,30,-16,41v-11,11,-25,16,-40,16v-16,0,-29,-5,-40,-16v-11,-11,-17,-25,-17,-41v0,-15,6,-28,17,-39v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,24,16,39","w":251},";":{"d":"176,-36v0,15,-3,33,-8,53v-4,15,-9,31,-16,45r-30,59r-14,24r-44,0v5,-11,10,-20,12,-27v4,-10,3,-10,10,-30v3,-7,4,-13,6,-18v2,-5,3,-10,4,-14v1,-4,3,-8,4,-13v1,-5,3,-10,4,-17r-43,-108v11,-7,20,-12,28,-14v8,-2,18,-4,30,-4v38,0,57,21,57,64xm183,-409v0,16,-6,30,-17,41v-11,11,-24,16,-40,16v-15,0,-29,-5,-40,-16v-11,-11,-16,-25,-16,-41v0,-15,5,-28,16,-39v11,-11,25,-17,40,-17v16,0,29,6,40,17v11,11,17,24,17,39","w":251},"\u037e":{"d":"176,-36v0,15,-3,33,-8,53v-4,15,-9,31,-16,45r-30,59r-14,24r-44,0v5,-11,10,-20,12,-27v4,-10,3,-10,10,-30v3,-7,4,-13,6,-18v2,-5,3,-10,4,-14v1,-4,3,-8,4,-13v1,-5,3,-10,4,-17r-43,-108v11,-7,20,-12,28,-14v8,-2,18,-4,30,-4v38,0,57,21,57,64xm183,-409v0,16,-6,30,-17,41v-11,11,-24,16,-40,16v-15,0,-29,-5,-40,-16v-11,-11,-16,-25,-16,-41v0,-15,5,-28,16,-39v11,-11,25,-17,40,-17v16,0,29,6,40,17v11,11,17,24,17,39","w":251},"<":{"d":"39,-210r0,-54r472,-210r0,63r-396,174r396,174r0,63"},"=":{"d":"25,-134r0,-57r500,0r0,57r-500,0xm25,-273r0,-57r500,0r0,57r-500,0"},">":{"d":"39,0r0,-63r396,-174r-396,-174r0,-63r472,210r0,54"},"?":{"d":"203,-45v0,16,-6,30,-17,41v-11,11,-24,16,-39,16v-16,0,-30,-5,-41,-16v-11,-11,-16,-25,-16,-41v0,-15,5,-28,16,-39v11,-11,25,-17,41,-17v15,0,28,6,39,17v11,11,17,24,17,39xm365,-446v0,26,-3,48,-9,66v-6,18,-18,35,-33,50v-7,7,-13,12,-19,17v-6,5,-12,9,-18,11v-6,2,-14,3,-22,4v-8,1,-18,2,-29,2r-51,0r0,107r-75,0r0,-176r151,0v11,-15,18,-28,22,-39v4,-11,5,-24,5,-40v0,-29,-5,-56,-15,-81v-10,-25,-22,-46,-40,-65v-18,-19,-39,-36,-64,-48v-25,-12,-53,-20,-84,-24r25,-76v15,3,27,5,38,8v11,3,21,5,29,8v8,3,16,7,23,10v7,3,15,7,23,12v22,13,42,28,59,46v17,18,32,39,45,61v13,22,22,46,29,71v7,25,10,50,10,76","w":418},"@":{"d":"599,-398v-17,-5,-31,-9,-43,-12v-12,-3,-24,-4,-35,-4v-21,0,-41,8,-60,22v-19,14,-35,33,-49,58v-14,25,-25,53,-33,86v-8,33,-12,69,-12,106v0,41,10,62,31,62v7,0,16,-5,28,-14v12,-9,27,-21,43,-38v7,-7,13,-15,21,-24v8,-9,16,-20,24,-33v21,-29,37,-55,48,-79v11,-24,20,-49,25,-75xm905,-265v0,42,-5,80,-17,114v-12,34,-28,63,-50,87v-22,24,-48,41,-79,54v-31,13,-65,19,-104,19v-69,0,-104,-32,-104,-95v0,-7,1,-14,2,-24v1,-10,3,-21,5,-32r5,-23v-15,26,-31,49,-48,70v-17,21,-35,39,-53,53v-18,14,-37,25,-55,33v-18,8,-36,12,-53,12v-20,0,-36,-13,-48,-40v-12,-27,-18,-63,-18,-108v0,-47,6,-91,18,-131v12,-40,29,-76,50,-106v21,-30,46,-53,75,-70v29,-17,59,-26,92,-26v9,0,18,1,28,2v10,1,21,2,32,3v15,3,29,6,41,9v12,3,29,7,50,14r-52,326v-1,9,-2,17,-3,24v-1,7,-1,13,-1,18v0,12,6,22,16,30v10,8,23,12,38,12v7,0,15,-2,24,-4v9,-2,17,-5,26,-8v79,-35,119,-104,119,-207v0,-44,-8,-85,-25,-123v-17,-38,-39,-72,-68,-100v-29,-28,-62,-52,-101,-68v-39,-16,-80,-24,-124,-24v-51,0,-99,8,-143,26v-44,18,-80,43,-112,74v-32,31,-56,69,-74,112v-18,43,-27,91,-27,142v0,55,10,102,29,143v19,41,50,77,91,109v31,25,63,42,95,52v32,10,70,16,114,16v15,0,29,-1,42,-2v13,-1,25,-2,37,-5v12,-3,24,-7,36,-11v12,-4,25,-9,39,-15r23,59v-15,7,-26,12,-33,15v-41,16,-89,24,-146,24v-28,0,-54,-2,-77,-5v-23,-3,-45,-7,-66,-14v-21,-7,-40,-17,-59,-28v-19,-11,-38,-24,-57,-39v-47,-38,-81,-81,-103,-129v-22,-48,-33,-104,-33,-168v0,-62,10,-119,31,-170v21,-51,50,-96,87,-133v37,-37,82,-66,133,-87v51,-21,108,-31,170,-31v57,0,109,9,156,27v47,18,87,45,121,78v34,33,60,72,79,118v19,46,29,96,29,151","w":1000},"A":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0","w":595},"B":{"d":"445,-182v0,-39,-13,-68,-37,-89v-24,-21,-59,-31,-104,-31r-113,0r0,233r113,0v30,0,52,-1,67,-5v15,-4,28,-11,39,-20v11,-9,20,-22,26,-38v6,-16,9,-33,9,-50xm420,-491v0,-33,-9,-58,-27,-76v-9,-9,-19,-16,-32,-19v-13,-3,-32,-5,-57,-5r-113,0r0,214r107,0v23,0,41,-3,54,-7v13,-4,25,-11,36,-22v21,-21,32,-50,32,-85xm532,-176v0,26,-4,50,-13,72v-9,22,-21,40,-37,56v-16,16,-34,28,-56,36v-22,8,-46,12,-73,12r-244,0r0,-660r214,0v32,0,57,3,77,9v20,6,38,17,55,32v16,15,29,34,38,55v9,21,14,43,14,66v0,36,-10,67,-30,94v-20,27,-48,46,-83,58v44,9,78,28,102,57v24,29,36,67,36,113","w":591},"C":{"d":"541,-547v-25,-17,-51,-30,-76,-38v-25,-8,-54,-12,-86,-12v-35,0,-67,6,-97,19v-30,13,-55,31,-76,54v-21,23,-37,50,-49,82v-12,32,-18,66,-18,104v0,41,6,79,18,113v12,34,29,63,51,87v22,24,50,43,82,56v32,13,66,19,105,19v28,0,54,-2,77,-7v23,-5,48,-13,75,-24r23,64v-10,5,-19,9,-26,12v-7,3,-14,6,-21,8r-20,6v0,0,-14,4,-22,6v-17,4,-33,6,-47,8v-14,2,-29,3,-44,3v-50,0,-96,-8,-138,-25v-42,-17,-77,-41,-107,-72v-30,-31,-53,-68,-70,-110v-17,-42,-25,-88,-25,-139v0,-48,9,-93,26,-134v17,-41,40,-77,70,-107v30,-30,64,-55,104,-72v40,-17,85,-26,132,-26v45,0,86,7,124,22v15,5,26,10,36,16r40,25","w":605},"D":{"d":"575,-334v0,-37,-6,-71,-19,-102v-13,-31,-31,-59,-54,-82v-23,-23,-50,-41,-82,-54v-32,-13,-67,-19,-104,-19r-125,0r0,522r125,0v43,0,79,-5,106,-14v27,-9,51,-25,72,-46v12,-13,23,-27,33,-43v10,-16,18,-34,25,-52v7,-18,13,-36,17,-55v4,-19,6,-37,6,-55xm661,-333v0,43,-8,86,-23,127v-15,41,-37,77,-66,110v-30,35,-64,59,-102,74v-38,15,-85,22,-142,22r-219,0r0,-660r220,0v48,0,92,8,133,24v41,16,76,39,106,68v30,29,52,64,68,104v16,40,25,84,25,131","w":711},"E":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0","w":539},"F":{"d":"191,-591r0,226r239,0r0,70r-239,0r0,295r-82,0r0,-660r371,0r0,69r-289,0","w":522},"G":{"d":"616,-25r-28,10v0,0,-15,5,-20,6v-23,7,-49,13,-79,17v-30,4,-59,5,-87,5v-50,0,-96,-9,-139,-27v-43,-18,-79,-41,-111,-72v-32,-31,-57,-67,-75,-109v-18,-42,-27,-87,-27,-136v0,-49,8,-95,26,-136v18,-41,43,-77,74,-107v31,-30,67,-55,110,-72v43,-17,89,-25,139,-25v23,0,48,1,73,4v25,3,47,6,64,11v15,4,28,8,38,13v10,5,24,12,42,22r-31,68v-8,-5,-15,-8,-21,-11r-14,-7v-19,-8,-41,-14,-66,-19v-25,-5,-50,-7,-77,-7v-47,0,-86,6,-118,19v-32,13,-61,35,-86,65v-21,24,-37,51,-48,81v-11,30,-17,62,-17,95v0,40,8,77,22,111v14,34,34,62,60,86v26,24,55,44,90,58v35,14,74,21,115,21v17,0,32,-1,47,-3v15,-2,35,-6,62,-11r0,-220r82,0r0,270","w":708},"H":{"d":"580,0r0,-302r-389,0r0,302r-82,0r0,-660r82,0r0,283r389,0r0,-283r82,0r0,660r-82,0","w":771},"I":{"d":"109,0r0,-660r82,0r0,660r-82,0","w":300},"J":{"d":"191,19r-11,37v0,0,-6,19,-10,28v-4,9,-8,18,-13,26v-5,8,-10,17,-17,27v-9,14,-9,13,-17,25v-5,8,-11,15,-17,22v-6,7,-13,14,-20,22v-7,8,-16,17,-27,27r-53,-45r28,-32r20,-24v6,-7,10,-14,14,-20v4,-6,8,-12,11,-19v9,-19,17,-42,22,-67v5,-25,8,-53,8,-83r0,-603r82,0r0,679","w":300},"K":{"d":"109,0r0,-660r82,0r0,660r-82,0xm461,0r-264,-333r258,-327r94,0r-258,321r271,339r-101,0","w":571},"L":{"d":"109,0r0,-660r82,0r0,591r295,0r0,69r-377,0","w":495},"M":{"d":"687,0r0,-578r-5,22v-1,6,-3,12,-5,18r-7,18v0,0,-3,9,-8,23r-195,497r-75,0r-182,-484v-4,-9,-8,-18,-10,-24r-6,-18v0,0,-2,-13,-4,-20v-2,-7,-4,-16,-6,-26r0,572r-75,0r0,-660r113,0r201,528v5,13,8,23,9,28v1,5,3,13,4,22v2,-13,4,-23,5,-28v1,-5,4,-13,7,-22r208,-528r113,0r0,660r-82,0","w":878},"N":{"d":"555,6r-333,-515v-1,-3,-4,-5,-6,-9v-2,-4,-4,-9,-7,-14v-3,-5,-3,-4,-5,-8v-1,-2,-2,-5,-3,-7v-2,-3,-4,-7,-5,-10v-1,-3,-3,-8,-5,-15r0,572r-82,0r0,-660r107,0r327,503v2,3,3,3,5,7v2,3,3,6,4,9v2,5,4,9,5,12v1,3,4,9,7,18v1,1,2,3,2,5v0,2,1,3,2,5r0,-559r82,0r0,666r-95,0","w":759},"O":{"d":"623,-330v0,-37,-6,-72,-19,-105v-13,-33,-30,-61,-52,-85v-22,-24,-47,-44,-76,-58v-29,-14,-61,-22,-94,-22v-33,0,-65,8,-94,22v-29,14,-55,34,-77,58v-22,24,-39,52,-52,85v-13,33,-19,68,-19,105v0,37,6,73,19,106v13,33,30,62,52,86v22,24,48,44,77,58v29,14,61,21,94,21v33,0,65,-7,94,-21v29,-14,54,-34,76,-58v22,-24,39,-53,52,-86v13,-33,19,-69,19,-106xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137","w":763},"P":{"d":"443,-460v0,-44,-12,-78,-37,-103v-10,-10,-22,-17,-38,-21v-16,-4,-37,-7,-64,-7r-113,0r0,272v11,1,21,2,30,3v9,1,16,1,23,2v7,1,13,1,18,1r17,0v36,0,65,-4,86,-13v24,-10,43,-27,57,-51v14,-24,21,-52,21,-83xm528,-465v0,35,-5,66,-16,93v-11,27,-28,51,-48,70v-20,19,-45,34,-74,44v-29,10,-61,16,-97,16r-19,0v0,0,-13,-1,-20,-2v-7,-1,-16,-1,-26,-2v-10,-1,-22,-3,-37,-4r0,250r-82,0r0,-660r207,0v40,0,72,4,96,12v24,8,46,21,65,40v34,35,51,82,51,143","w":556},"Q":{"d":"624,-330v0,-37,-6,-72,-19,-105v-13,-33,-30,-61,-52,-85v-22,-24,-48,-44,-77,-58v-29,-14,-61,-22,-94,-22v-33,0,-65,8,-94,22v-29,14,-55,34,-77,58v-22,24,-40,52,-53,85v-13,33,-19,68,-19,105v0,37,6,73,19,106v13,33,30,62,52,86v22,24,48,44,78,58v30,14,61,21,94,21v33,0,65,-7,94,-21v29,-14,55,-34,77,-58v22,-24,39,-53,52,-86v13,-33,19,-69,19,-106xm713,-329v0,43,-6,84,-19,122v-13,38,-32,71,-56,101v-24,30,-53,56,-87,76v-34,20,-72,34,-114,42v7,9,12,16,16,20v6,6,6,6,17,18v19,19,37,35,54,48v9,7,16,13,24,18v8,5,16,10,25,15v9,5,18,10,29,15v16,8,17,7,39,17r-46,63r-42,-23r-33,-19v0,0,-19,-12,-28,-18v-9,-6,-18,-14,-28,-22v-11,-9,-22,-18,-31,-26v-9,-8,-19,-16,-27,-25r-25,-28v0,0,-18,-22,-28,-35r-14,-17r-25,-5v0,0,-12,-2,-20,-4v-6,-1,-10,-2,-15,-3v-5,-1,-10,-3,-16,-5v-31,-11,-60,-28,-86,-49v-26,-21,-48,-46,-67,-75v-19,-29,-34,-60,-44,-95v-10,-35,-16,-70,-16,-107v0,-49,8,-95,24,-137v16,-42,40,-79,70,-109v30,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,71v30,31,52,67,68,109v16,42,25,87,25,137","w":763},"R":{"d":"430,-481v0,-42,-12,-72,-36,-91v-5,-4,-10,-8,-15,-10v-5,-2,-12,-4,-19,-6v-7,-2,-15,-2,-25,-2v-10,0,-22,-1,-37,-1r-107,0r0,239r107,0v88,0,132,-43,132,-129xm461,0r-182,-283r-88,0r0,283r-82,0r0,-660r201,0v20,0,38,0,53,2v15,2,29,4,41,8v12,4,23,10,33,16v10,6,20,14,29,23v16,15,29,34,38,57v9,23,14,47,14,72v0,26,-5,51,-15,75v-10,24,-24,45,-43,62v-13,13,-28,24,-42,31v-14,7,-33,14,-58,19r195,295r-94,0","w":584},"S":{"d":"442,-548v-17,-10,-31,-17,-40,-22v-9,-5,-18,-9,-29,-12v-13,-4,-28,-7,-45,-10v-17,-3,-33,-4,-46,-4v-38,0,-69,9,-92,26v-23,17,-34,39,-34,67v0,12,2,23,6,33v4,10,13,20,25,31v12,11,29,22,50,35v21,13,49,28,82,46v47,25,81,47,104,67v16,13,28,31,37,52v9,21,14,44,14,68v0,57,-19,102,-58,135v-39,33,-92,49,-159,49v-45,0,-85,-7,-122,-22v-9,-4,-9,-4,-17,-8v-6,-3,-12,-5,-18,-9v-10,-6,-10,-6,-22,-14r-28,-18r42,-65v19,13,34,21,44,27v10,6,21,11,32,16v30,11,62,17,95,17v39,0,70,-9,92,-26v22,-17,33,-42,33,-74v0,-20,-3,-36,-10,-47v-11,-21,-30,-39,-56,-54v-5,-3,-18,-10,-36,-19v-18,-9,-43,-23,-74,-40v-50,-27,-86,-54,-108,-81v-22,-27,-33,-58,-33,-92v0,-26,5,-50,15,-72v10,-22,25,-40,44,-55v19,-15,43,-27,70,-35v27,-8,56,-13,89,-13v19,0,38,1,57,4v19,3,37,7,54,12v7,2,12,5,18,7v6,2,12,5,18,8v6,3,13,6,20,10r24,14","w":534},"T":{"d":"310,-591r0,591r-82,0r0,-591r-220,0r0,-69r522,0r0,69r-220,0","w":539},"U":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434","w":700},"V":{"d":"318,17r-50,0r-260,-677r88,0r195,515v3,8,6,19,7,32v0,-11,2,-21,6,-32r188,-515r82,0","w":583},"W":{"d":"606,13r-51,0r-119,-312r-120,312r-44,0r-264,-673r88,0r202,545r104,-271r-104,-274r75,0r66,173r67,-173r68,0r-101,262r108,282r194,-544r81,0","w":864},"X":{"d":"469,0r-182,-269r-184,269r-95,0r231,-337r-220,-323r94,0r175,254r173,-254r93,0r-221,324r230,336r-94,0","w":572},"Y":{"d":"310,-308r0,308r-82,0r0,-302r-220,-358r88,0r177,283r182,-283r87,0"},"Z":{"d":"42,0r0,-38r382,-553r-382,0r0,-69r494,0r0,44r-382,547r400,0r0,69r-512,0","w":595},"[":{"d":"73,245r0,-905r164,0r0,56r-88,0r0,793r88,0r0,56r-164,0","w":250},"\\":{"d":"295,245r-252,-905r69,0r252,905r-69,0","w":409},"]":{"d":"13,245r0,-56r88,0r0,-793r-88,0r0,-56r164,0r0,905r-164,0","w":250},"^":{"d":"435,-1r-174,-395r-174,395r-63,0r210,-472r54,0r210,472r-63,0","w":522},"_":{"d":"0,57r0,-57r500,0r0,57r-500,0","w":500},"`":{"d":"201,-497r-113,-163r100,0r82,163r-69,0","w":383},"a":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24","w":476},"b":{"d":"402,-244v0,-47,-12,-84,-35,-110v-23,-26,-56,-40,-98,-40v-21,0,-41,2,-58,8v-17,6,-35,15,-54,28r0,289v11,5,21,9,31,11v10,2,22,3,35,3v7,0,13,0,19,-1v6,-1,13,-2,20,-3v13,-3,26,-8,38,-13v12,-5,23,-11,34,-19v25,-17,43,-38,53,-61v10,-23,15,-54,15,-92xm484,-247v0,39,-6,75,-19,107v-13,32,-30,59,-53,82v-23,23,-51,40,-84,52v-33,12,-69,19,-109,19v-13,0,-29,-1,-47,-3v-18,-2,-32,-4,-44,-7v-8,-1,-15,-3,-21,-5v-6,-2,-14,-6,-25,-11r0,-716r75,0r0,295v12,-6,21,-10,28,-13v7,-3,15,-5,24,-8v11,-3,25,-5,41,-7v16,-2,30,-3,44,-3v29,0,55,5,78,15v23,10,43,25,60,44v17,19,29,43,38,70v9,27,14,56,14,89","w":527},"c":{"d":"431,-35v-10,6,-9,7,-17,11v-5,3,-10,5,-13,6v-38,21,-80,31,-126,31v-35,0,-67,-6,-95,-17v-28,-11,-52,-27,-72,-48v-20,-21,-37,-45,-48,-74v-11,-29,-17,-60,-17,-95v0,-36,5,-69,17,-99v12,-30,29,-54,50,-76v21,-22,45,-39,74,-51v29,-12,61,-18,96,-18v23,0,45,3,67,9v7,2,14,4,20,6v6,2,12,4,17,7v5,3,11,6,17,10r21,14r-43,61v-17,-15,-34,-24,-49,-30v-15,-6,-32,-9,-53,-9v-46,0,-83,15,-111,47v-28,32,-41,74,-41,125v0,52,15,93,43,123v28,30,66,46,115,46v22,0,41,-2,57,-8v16,-6,33,-16,52,-30","w":444},"d":{"d":"382,-295v0,-17,-1,-29,-2,-37v-1,-8,-4,-16,-7,-23v-14,-25,-44,-38,-91,-38v-48,0,-86,16,-115,48v-29,32,-43,75,-43,130v0,23,3,44,9,63v6,19,14,36,25,50v11,14,23,24,38,32v15,8,32,12,49,12v13,0,27,-2,43,-8v16,-6,31,-14,45,-23v9,-7,16,-13,23,-19v7,-6,15,-17,26,-30r0,-157xm382,0r0,-57v-20,23,-42,40,-68,52v-26,12,-53,18,-82,18v-28,0,-53,-6,-76,-17v-23,-11,-43,-26,-60,-46v-17,-20,-30,-44,-39,-72v-9,-28,-14,-59,-14,-92v0,-37,5,-70,17,-101v12,-31,28,-57,48,-79v20,-22,46,-40,74,-52v28,-12,59,-19,92,-19v24,0,44,2,61,7v17,5,32,13,47,24r0,-295r76,0r0,729r-76,0","w":539},"e":{"d":"350,-289v-1,-35,-9,-63,-26,-81v-17,-18,-41,-27,-72,-27v-32,0,-59,9,-80,27v-21,18,-35,46,-44,81r222,0xm122,-233v0,55,14,99,40,130v26,31,62,47,108,47v20,0,39,-4,56,-10v17,-6,37,-18,62,-35r30,59v-17,11,-32,19,-46,26v-14,7,-26,14,-39,18v-13,4,-25,6,-38,8v-13,2,-26,3,-41,3v-31,0,-60,-6,-86,-17v-26,-11,-48,-27,-66,-48v-18,-21,-34,-47,-44,-76v-10,-29,-15,-62,-15,-98v0,-36,5,-69,15,-98v10,-29,25,-55,44,-76v19,-21,42,-37,68,-48v26,-11,55,-17,87,-17v27,0,51,4,72,13v21,9,40,22,55,38v15,16,28,37,36,60v8,23,12,49,12,77r0,44r-310,0","w":469},"f":{"d":"365,-654v-16,-5,-30,-10,-41,-12v-11,-2,-22,-3,-33,-3v-77,0,-115,53,-115,160r0,56r107,0r0,63r-107,0r0,390r-75,0r0,-390r-76,0r0,-44r76,-19r0,-75v0,-32,4,-61,13,-87v9,-26,23,-49,40,-67v17,-18,37,-32,61,-42v24,-10,51,-15,81,-15v19,0,37,2,52,5v15,3,31,9,48,17","w":282},"g":{"d":"408,71v0,-31,-20,-46,-59,-46r-169,0r-15,23v-15,23,-25,39,-30,50v-5,11,-8,21,-8,30v0,17,10,31,30,42v20,11,45,16,76,16v23,0,46,-4,67,-10v21,-6,39,-14,55,-24v16,-10,29,-23,39,-37v10,-14,14,-29,14,-44xm338,-295v0,-16,-3,-31,-8,-45v-5,-14,-13,-25,-22,-35v-9,-10,-19,-18,-32,-24v-13,-6,-26,-9,-40,-9v-14,0,-27,3,-39,9v-12,6,-22,15,-31,25v-9,10,-17,22,-22,36v-5,14,-8,28,-8,43v0,15,3,29,8,43v5,14,13,26,22,36v9,10,20,19,32,25v12,6,25,9,39,9v14,0,27,-2,39,-8v12,-6,23,-14,32,-24v9,-10,17,-22,22,-36v5,-14,8,-29,8,-45xm393,-390v18,27,27,58,27,94v0,23,-5,45,-14,66v-9,21,-22,39,-38,54v-16,15,-35,28,-56,37v-21,9,-44,14,-68,14v-3,0,-8,-1,-12,-1v-4,0,-9,0,-16,-1v-1,0,-3,-1,-6,-1r-9,0v-21,17,-36,31,-45,42v-9,11,-14,19,-14,26v0,6,2,10,8,12v6,2,16,4,30,4r169,0v42,0,73,9,93,26v20,17,29,43,29,80v0,27,-6,51,-19,74v-13,23,-30,44,-52,61v-22,17,-48,31,-78,41v-30,10,-62,15,-96,15v-24,0,-47,-3,-68,-9v-21,-6,-40,-13,-56,-23v-16,-10,-28,-22,-38,-35v-10,-13,-15,-27,-15,-42v0,-13,5,-28,14,-47v7,-13,14,-24,22,-35v8,-11,21,-25,38,-43v-23,-7,-40,-14,-50,-22v-10,-8,-15,-19,-15,-32v0,-15,8,-31,22,-49v14,-18,36,-39,67,-64v-58,-31,-87,-79,-87,-144v0,-25,5,-49,14,-70v9,-21,21,-40,37,-55v16,-15,35,-27,57,-35v22,-8,46,-13,73,-13v8,0,16,0,23,1r21,3v0,0,15,3,23,5v8,2,18,6,29,10r69,0r82,-7r0,63r-95,0","w":507},"h":{"d":"379,0r0,-321v0,-15,0,-26,-1,-33v-1,-7,-3,-13,-6,-20v-7,-16,-22,-24,-45,-24v-23,0,-48,9,-75,28v-27,19,-60,50,-99,93r0,277r-75,0r0,-729r75,0r0,371r19,-22v0,0,10,-12,14,-16v4,-4,10,-8,14,-12v6,-6,6,-5,14,-12v17,-15,37,-26,58,-34v21,-8,43,-11,64,-11v79,0,119,42,119,126r0,339r-76,0","w":536},"i":{"d":"86,0r0,-453r75,0r0,453r-75,0xm173,-611v0,13,-5,25,-15,35v-10,10,-21,14,-34,14v-13,0,-24,-4,-34,-14v-10,-10,-15,-22,-15,-35v0,-13,5,-25,15,-35v10,-10,21,-14,34,-14v13,0,24,4,34,14v10,10,15,22,15,35","w":247},"j":{"d":"159,75r-14,33v-4,9,-8,16,-12,24v-6,12,-5,12,-11,22v-4,7,-9,15,-14,23v-5,8,-9,15,-13,21v-6,9,-6,10,-12,18r-13,18v-5,6,-11,13,-18,22r-50,-42v13,-18,14,-18,22,-30v6,-8,10,-15,14,-22r11,-19r11,-21v9,-17,14,-35,18,-53v4,-18,6,-39,6,-63r0,-459r75,0r0,528xm170,-612v0,13,-4,24,-14,34v-10,10,-22,15,-35,15v-13,0,-25,-5,-35,-15v-10,-10,-14,-21,-14,-34v0,-13,4,-24,14,-34v10,-10,22,-15,35,-15v13,0,25,5,35,15v10,10,14,21,14,34","w":245},"k":{"d":"346,0r-187,-246r187,-207r98,0r-193,208r194,245r-99,0xm82,0r0,-729r75,0r0,729r-75,0","w":454},"l":{"d":"82,0r0,-729r75,0r0,729r-75,0","w":239},"m":{"d":"690,0r0,-321v0,-17,0,-28,-1,-34v-1,-6,-3,-12,-6,-19v-9,-16,-24,-24,-46,-24v-21,0,-43,7,-67,22v-24,15,-53,41,-86,77r-21,22r0,277r-75,0r0,-321v0,-17,0,-28,-1,-34v-1,-6,-3,-12,-6,-19v-9,-16,-24,-24,-46,-24v-23,0,-48,9,-75,28v-27,19,-60,50,-99,93r0,277r-75,0r0,-453r75,0r0,95r20,-22v5,-6,11,-12,15,-16r12,-12v6,-6,7,-5,15,-12v17,-15,36,-26,57,-34v21,-8,43,-11,64,-11v74,0,113,36,118,108v8,-9,14,-17,20,-23v8,-9,10,-10,16,-16r12,-12v6,-6,7,-5,15,-12v17,-15,36,-26,57,-34v21,-8,43,-11,64,-11v79,0,119,42,119,126r0,339r-75,0","w":847},"n":{"d":"388,0r0,-321v0,-15,-1,-26,-2,-33v-1,-7,-2,-13,-5,-20v-3,-7,-9,-14,-17,-18v-8,-4,-18,-6,-29,-6v-23,0,-48,9,-75,28v-27,19,-60,50,-99,93r0,277r-75,0r0,-453r75,0r0,95r20,-22v5,-6,11,-12,15,-16r12,-12v6,-6,7,-5,15,-12v17,-15,36,-26,57,-34v21,-8,43,-11,64,-11v79,0,119,42,119,126r0,339r-75,0","w":545},"o":{"d":"408,-226v0,-24,-4,-47,-11,-68v-7,-21,-17,-39,-30,-54v-13,-15,-28,-27,-45,-36v-17,-9,-35,-14,-55,-14v-20,0,-39,5,-56,14v-17,9,-32,21,-45,36v-13,15,-23,33,-30,54v-7,21,-11,44,-11,68v0,24,4,47,11,68v7,21,17,39,30,54v13,15,28,27,45,36v17,9,36,14,56,14v20,0,38,-5,55,-14v17,-9,32,-21,45,-36v13,-15,23,-33,30,-54v7,-21,11,-44,11,-68xm490,-226v0,33,-6,63,-18,92v-12,29,-28,54,-48,76v-20,22,-43,39,-70,52v-27,13,-56,19,-87,19v-31,0,-60,-6,-87,-19v-27,-13,-52,-30,-72,-52v-20,-22,-36,-47,-48,-76v-12,-29,-17,-59,-17,-92v0,-33,5,-63,17,-92v12,-29,28,-54,48,-76v20,-22,45,-39,72,-52v27,-13,56,-19,87,-19v31,0,60,6,87,19v27,13,50,30,70,52v20,22,36,47,48,76v12,29,18,59,18,92","w":533},"p":{"d":"419,-238v0,-23,-3,-44,-9,-63v-6,-19,-14,-36,-25,-50v-11,-14,-24,-25,-39,-33v-15,-8,-31,-11,-48,-11v-13,0,-28,3,-44,9v-16,6,-30,13,-44,22v-9,7,-18,13,-24,20r-25,30r0,157v0,19,0,33,1,39v1,6,4,13,8,20v15,26,46,39,91,39v48,0,86,-17,115,-49v29,-32,43,-75,43,-130xm500,-239v0,37,-6,70,-17,101v-11,31,-27,58,-48,80v-21,22,-45,40,-73,52v-28,12,-60,18,-93,18v-24,0,-44,-2,-61,-7v-17,-5,-32,-13,-47,-24r0,258r-75,0r0,-692r75,0r0,57v19,-22,41,-40,67,-52v26,-12,53,-18,82,-18v28,0,54,5,77,16v23,11,43,27,60,47v17,20,30,44,39,72v9,28,14,59,14,92","w":543},"q":{"d":"370,-382v-11,-5,-21,-9,-31,-11v-10,-2,-22,-3,-37,-3v-54,0,-97,18,-129,52v-32,34,-48,80,-48,138v0,47,12,83,35,109v23,26,56,39,98,39v21,0,41,-2,58,-8v17,-6,35,-15,54,-27r0,-289xm370,239r0,-257v-12,6,-21,10,-28,13v-7,3,-15,5,-24,8v-11,3,-24,6,-40,8v-16,2,-31,3,-45,3v-28,0,-54,-5,-77,-16v-23,-11,-43,-25,-60,-44v-17,-19,-30,-42,-39,-68v-9,-26,-14,-56,-14,-88v0,-39,6,-74,19,-106v13,-32,31,-60,54,-83v23,-23,50,-42,82,-55v32,-13,67,-19,106,-19v15,0,32,1,50,3v18,2,32,4,45,7v8,2,15,4,21,6v6,2,14,5,25,10r0,678r-75,0","w":520},"r":{"d":"300,-371v-14,-12,-25,-18,-32,-18v-27,0,-63,40,-107,119r0,270r-75,0r0,-453r75,0r0,82v14,-18,26,-33,37,-45v11,-12,21,-22,30,-29v9,-7,18,-12,26,-15v8,-3,16,-5,25,-5v18,0,37,10,58,31","w":337},"s":{"d":"387,-117v0,41,-13,72,-41,95v-28,23,-67,35,-117,35v-19,0,-40,-2,-63,-6v-11,-2,-20,-4,-28,-6v-8,-2,-17,-4,-25,-7v-8,-3,-17,-6,-25,-10v-8,-4,-18,-9,-29,-15r31,-63v11,6,12,6,20,10v8,4,8,5,14,8v16,7,33,13,52,18v19,5,36,7,52,7v23,0,43,-6,58,-17v15,-11,22,-26,22,-43v0,-5,0,-11,-2,-17v-2,-6,-4,-11,-7,-14v-5,-7,-10,-13,-15,-18v-5,-5,-13,-10,-22,-15v-9,-5,-20,-11,-33,-17v-13,-6,-30,-14,-50,-22v-22,-9,-40,-18,-55,-27v-15,-9,-28,-17,-37,-27v-9,-10,-16,-21,-20,-32v-4,-11,-6,-23,-6,-37v0,-40,15,-71,46,-94v31,-23,73,-34,126,-34v9,0,19,0,29,1v10,1,20,3,29,4v13,3,13,4,23,6v7,2,14,4,20,6v6,2,13,4,20,8r25,14r-37,61v-15,-9,-26,-15,-35,-19v-9,-4,-19,-8,-30,-11v-19,-5,-37,-8,-52,-8v-25,0,-46,5,-61,15v-15,10,-23,25,-23,42v0,11,4,21,11,28v5,5,10,9,14,12v4,3,10,8,18,12v8,4,18,9,30,14v18,8,19,8,50,21v24,10,44,20,60,29v16,9,28,19,38,30v10,11,16,23,20,36v4,13,5,29,5,47","w":447},"t":{"d":"292,-44r-35,27v-10,7,-19,13,-28,18v-9,5,-17,7,-25,9v-8,2,-17,3,-26,3v-26,0,-47,-9,-63,-28v-16,-19,-24,-43,-24,-73r0,-302r-76,0r0,-44r76,-19r0,-132r75,0r0,132r120,0r0,63r-120,0r0,258r1,20v1,7,1,14,1,18v0,4,0,7,1,10v1,15,9,22,26,22v9,0,19,-2,28,-7v9,-5,22,-13,38,-25","w":309},"u":{"d":"383,0r0,-94v-52,72,-112,108,-180,108v-81,0,-121,-42,-121,-127r0,-340r75,0r0,321v0,28,5,48,13,60v8,12,22,19,41,19v12,0,25,-3,40,-9v15,-6,30,-15,45,-26v15,-11,30,-23,45,-38v15,-15,29,-32,42,-50r0,-277r76,0r0,453r-76,0","w":541},"v":{"d":"256,13r-69,0r-170,-466r82,0r125,367r2,18r1,-17r123,-368r82,0","w":447},"w":{"d":"505,13r-61,0r-102,-283r-7,-25r-6,25r-107,283r-63,0r-151,-466r82,0r109,361r1,13r1,-13r102,-282r-30,-79r79,0r120,360r1,14r1,-14r113,-360r75,0","w":668},"x":{"d":"302,0r-104,-169r-106,169r-84,0r152,-229r-152,-224r93,0r100,168r101,-168r86,0r-150,221r156,232r-92,0","w":402},"y":{"d":"218,25v-11,28,-21,53,-30,73v-9,20,-20,40,-33,60v-7,11,-7,10,-13,20r-14,20v-8,10,-7,11,-17,24r-24,31r-60,-46r29,-33v8,-9,16,-18,22,-26v6,-8,12,-17,17,-26r18,-32r17,-30v5,-10,9,-20,14,-30v5,-10,9,-22,14,-35r18,-45r-168,-403r84,0r109,277r15,44r10,-44r93,-277r77,0","w":405},"z":{"d":"32,0r0,-38r277,-348r-264,0r0,-67r377,0r0,32r-281,354r281,0r0,67r-390,0","w":460},"{":{"d":"330,243v-47,0,-82,-11,-102,-31v-20,-20,-30,-54,-30,-101r0,-220v0,-75,-25,-113,-76,-113r-36,0r0,-55r36,0v51,0,76,-38,76,-113r0,-220v0,-47,10,-82,30,-102v20,-20,55,-30,102,-30r56,0r0,63r-44,0v-11,0,-21,3,-32,8v-11,5,-19,13,-24,22v-5,7,-8,17,-10,27v-2,10,-3,25,-3,44r0,201r0,25v0,8,0,15,-1,20v-2,19,-9,36,-20,50v-11,14,-24,24,-39,27r-25,6r24,4v17,3,32,14,44,32v3,5,6,11,8,16v2,5,5,11,6,18v1,7,2,14,2,23v0,9,1,21,1,34r0,202v0,19,1,33,3,43v2,10,5,19,10,27v5,9,13,16,24,22v11,6,21,8,32,8r44,0r0,63r-56,0","w":409},"|":{"d":"92,239r0,-968r70,0r0,968r-70,0","w":250},"}":{"d":"291,-222v-25,0,-44,10,-57,29v-13,19,-19,47,-19,84r0,220v0,47,-11,81,-31,101v-20,20,-54,31,-101,31r-56,0r0,-63r44,0v11,0,21,-3,32,-8v11,-5,19,-13,24,-22v5,-7,9,-16,11,-26v2,-10,2,-25,2,-44r0,-202r0,-25v0,-7,0,-14,1,-20v2,-19,8,-37,19,-51v11,-14,25,-23,40,-26r25,-5r-24,-5v-17,-3,-32,-14,-44,-32v-3,-5,-7,-11,-9,-16v-2,-5,-4,-11,-5,-18v-1,-7,-3,-15,-3,-24r0,-33r0,-201v0,-19,0,-34,-2,-44v-2,-10,-6,-19,-11,-27v-5,-9,-13,-15,-24,-21v-11,-6,-21,-9,-32,-9r-44,0r0,-63r56,0v47,0,81,10,101,30v20,20,31,55,31,102r0,220v0,75,25,113,76,113r36,1r0,54r-36,0","w":409},"~":{"d":"530,-232v-17,12,-30,20,-40,26v-10,6,-21,12,-35,17v-32,11,-62,17,-91,17v-11,0,-21,-1,-30,-2v-9,-1,-18,-2,-28,-5v-10,-3,-20,-6,-32,-11r-41,-19v-15,-7,-29,-12,-39,-15v-10,-3,-21,-5,-32,-5v-20,0,-40,4,-62,13v-22,9,-43,21,-63,36r-29,-42r21,-17v6,-5,12,-9,18,-12r18,-9v0,0,13,-7,21,-10v30,-12,57,-18,81,-18v11,0,24,1,37,4v13,3,28,9,43,16r50,22v15,7,29,11,39,14v10,3,21,4,32,4v21,0,42,-4,64,-11v11,-4,21,-8,30,-13v9,-5,20,-13,35,-24","w":544},"\u00c4":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm255,-758v0,13,-5,25,-15,35v-10,10,-22,15,-36,15v-13,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,35,-15v14,0,26,5,36,15v10,10,15,22,15,36xm440,-758v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36","w":595},"\u00c5":{"d":"298,-572r-108,302r215,0xm341,-788v0,-11,-4,-22,-12,-30v-8,-8,-18,-12,-29,-12v-11,0,-22,4,-30,12v-8,8,-12,19,-12,30v0,11,4,21,12,29v8,8,19,12,30,12v11,0,21,-4,29,-12v8,-8,12,-18,12,-29xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm379,-788v0,22,-8,41,-23,56v-15,15,-34,23,-56,23v-22,0,-40,-8,-56,-23v-16,-15,-24,-34,-24,-56v0,-22,8,-40,24,-56v16,-16,34,-24,56,-24v22,0,41,8,56,24v15,16,23,34,23,56","w":595},"\u00c7":{"d":"541,-547v-25,-17,-51,-30,-76,-38v-25,-8,-54,-12,-86,-12v-35,0,-67,6,-97,19v-30,13,-55,31,-76,54v-21,23,-37,50,-49,82v-12,32,-18,66,-18,104v0,41,6,79,18,113v12,34,29,63,51,87v22,24,50,43,82,56v32,13,66,19,105,19v28,0,54,-2,77,-7v23,-5,48,-13,75,-24r23,64v-17,8,-30,14,-40,18v-10,4,-21,7,-34,10v-35,9,-67,13,-97,13r-4,0r-36,58r9,0v51,0,77,25,77,76v0,28,-9,50,-27,67v-18,17,-44,25,-76,25v-16,0,-32,-2,-48,-5v-16,-3,-35,-9,-59,-18r25,-51v19,8,34,14,45,17v11,3,22,5,31,5v12,0,22,-4,30,-11v8,-7,11,-15,11,-26v0,-15,-5,-26,-15,-32v-10,-6,-28,-9,-52,-9r-31,0r58,-97v-11,-2,-21,-4,-30,-5v-9,-1,-16,-3,-23,-5v-7,-2,-14,-4,-21,-7r-22,-9v-29,-13,-55,-31,-79,-52v-24,-21,-44,-46,-60,-74v-16,-28,-29,-58,-38,-90v-9,-32,-14,-66,-14,-101v0,-48,9,-93,26,-134v17,-41,40,-77,70,-107v30,-30,64,-55,104,-72v40,-17,85,-26,132,-26v45,0,86,7,124,22v15,5,26,10,36,16r40,25","w":605},"\u00c9":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm346,-715r-70,0r95,-118r88,0","w":539},"\u00d1":{"d":"555,6r-333,-515v-1,-3,-4,-5,-6,-9v-2,-4,-4,-9,-7,-14v-3,-5,-3,-4,-5,-8v-1,-2,-2,-5,-3,-7v-2,-3,-4,-7,-5,-10v-1,-3,-3,-8,-5,-15r0,572r-82,0r0,-660r107,0r327,503v2,3,3,3,5,7v2,3,3,6,4,9v2,5,4,9,5,12v1,3,4,9,7,18v1,1,2,3,2,5v0,2,1,3,2,5r0,-559r82,0r0,666r-95,0xm581,-749v-11,11,-20,19,-27,23v-7,4,-16,9,-29,14v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27v-12,-6,-12,-5,-20,-9v-5,-2,-9,-4,-13,-6v-4,-2,-8,-4,-11,-4r-12,0v-13,0,-24,3,-35,8v-7,3,-13,5,-17,8r-28,18r-32,-44v17,-11,29,-18,36,-22v7,-4,16,-9,25,-13v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,8,2,13,4v5,2,12,5,20,9v8,4,18,10,31,17v11,6,21,10,29,13v8,3,15,4,23,4v7,0,13,-1,19,-2v6,-1,11,-2,17,-5v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":759},"\u00d6":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm333,-760v0,14,-5,26,-15,36v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-36v0,-13,5,-25,15,-35v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,35xm535,-760v0,14,-5,26,-15,36v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-36v0,-13,5,-25,15,-35v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,35","w":763},"\u00dc":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm306,-762v0,14,-4,26,-14,36v-10,10,-22,14,-36,14v-14,0,-26,-4,-36,-14v-10,-10,-14,-22,-14,-36v0,-14,4,-26,14,-36v10,-10,22,-14,36,-14v14,0,26,4,36,14v10,10,14,22,14,36xm508,-762v0,14,-4,26,-14,36v-10,10,-22,14,-36,14v-14,0,-26,-4,-36,-14v-10,-10,-14,-22,-14,-36v0,-14,4,-26,14,-36v10,-10,22,-14,36,-14v14,0,26,4,36,14v10,10,14,22,14,36","w":700},"\u00e1":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24xm268,-497r-69,0r94,-163r88,0","w":476},"\u00e0":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24xm237,-497r-113,-163r88,0r94,163r-69,0","w":476},"\u00e2":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24xm317,-497r-75,-107r-76,107r-68,0r112,-163r63,0r115,163r-71,0","w":476},"\u00e4":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24xm195,-573v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm370,-573v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":476},"\u00e3":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24xm436,-578v-11,11,-20,18,-27,22v-7,4,-16,10,-29,15v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27r-19,-10v-5,-2,-10,-4,-14,-6v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-19,36,-23v7,-4,16,-8,25,-12v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,0,18,-1v6,-1,12,-3,18,-6v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":476},"\u00e5":{"d":"312,-207r-170,44v-5,11,-8,19,-10,25v-2,6,-3,15,-3,24v0,18,6,32,17,43v11,11,25,16,44,16v9,0,16,-1,24,-3v8,-2,17,-4,26,-8v9,-4,18,-11,30,-18v12,-7,26,-17,42,-29r0,-94xm282,-586v0,-11,-4,-22,-12,-30v-8,-8,-18,-12,-29,-12v-11,0,-21,4,-29,12v-8,8,-13,19,-13,30v0,11,5,21,13,29v8,8,18,12,29,12v11,0,21,-4,29,-12v8,-8,12,-18,12,-29xm407,13v-31,-2,-53,-8,-66,-17v-13,-9,-20,-25,-22,-46v-11,10,-20,17,-27,22v-7,5,-14,10,-21,14v-14,8,-30,14,-47,19v-17,5,-33,7,-49,7v-37,0,-66,-10,-88,-32v-22,-22,-33,-51,-33,-87v0,-33,9,-61,26,-82v17,-21,42,-36,75,-44r157,-37r0,-82v0,-37,-29,-56,-86,-56v-46,0,-69,13,-69,39v0,4,1,10,4,17r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v46,0,82,10,108,30v26,20,40,48,40,83r0,245r0,33v2,12,14,20,37,24xm320,-586v0,22,-8,41,-23,56v-15,15,-34,23,-56,23v-22,0,-41,-8,-57,-23v-16,-15,-23,-34,-23,-56v0,-22,7,-40,23,-56v16,-16,35,-24,57,-24v22,0,41,8,56,24v15,16,23,34,23,56","w":476},"\u00e7":{"d":"431,-35v-17,11,-31,18,-41,23v-10,5,-24,10,-41,15v-13,3,-22,6,-29,7v-7,1,-16,2,-29,3r-31,56v23,0,41,6,54,19v13,13,20,32,20,57v0,27,-8,48,-26,65v-18,17,-41,26,-69,26v-7,0,-13,0,-19,-1v-6,-1,-12,-2,-19,-3v-7,-1,-15,-3,-25,-6v-14,-4,-15,-5,-36,-12r25,-51v19,8,34,14,45,17v11,3,22,5,32,5v11,0,20,-4,28,-11v8,-7,12,-15,12,-26v0,-15,-6,-26,-16,-32v-10,-6,-27,-9,-50,-9r-32,0r57,-94v-67,-15,-117,-43,-149,-81v-32,-38,-49,-89,-49,-154v0,-35,5,-68,17,-98v12,-30,29,-56,50,-77v21,-21,45,-38,74,-50v29,-12,61,-18,96,-18v23,0,45,3,67,9v7,2,14,4,20,6v6,2,12,4,17,7v5,3,11,6,17,10r21,14r-43,61v-17,-15,-34,-24,-49,-30v-15,-6,-32,-9,-53,-9v-46,0,-83,15,-111,47v-28,32,-41,74,-41,125v0,52,15,93,43,123v28,30,66,46,115,46v22,0,41,-2,57,-8v16,-6,33,-16,52,-30","w":444},"\u00e9":{"d":"350,-289v-1,-35,-9,-63,-26,-81v-17,-18,-41,-27,-72,-27v-32,0,-59,9,-80,27v-21,18,-35,46,-44,81r222,0xm122,-233v0,55,14,99,40,130v26,31,62,47,108,47v20,0,39,-4,56,-10v17,-6,37,-18,62,-35r30,59v-17,11,-32,19,-46,26v-14,7,-26,14,-39,18v-13,4,-25,6,-38,8v-13,2,-26,3,-41,3v-31,0,-60,-6,-86,-17v-26,-11,-48,-27,-66,-48v-18,-21,-34,-47,-44,-76v-10,-29,-15,-62,-15,-98v0,-36,5,-69,15,-98v10,-29,25,-55,44,-76v19,-21,42,-37,68,-48v26,-11,55,-17,87,-17v27,0,51,4,72,13v21,9,40,22,55,38v15,16,28,37,36,60v8,23,12,49,12,77r0,44r-310,0xm275,-497r-70,0r95,-163r88,0","w":469},"\u00e8":{"d":"350,-289v-1,-35,-9,-63,-26,-81v-17,-18,-41,-27,-72,-27v-32,0,-59,9,-80,27v-21,18,-35,46,-44,81r222,0xm122,-233v0,55,14,99,40,130v26,31,62,47,108,47v20,0,39,-4,56,-10v17,-6,37,-18,62,-35r30,59v-17,11,-32,19,-46,26v-14,7,-26,14,-39,18v-13,4,-25,6,-38,8v-13,2,-26,3,-41,3v-31,0,-60,-6,-86,-17v-26,-11,-48,-27,-66,-48v-18,-21,-34,-47,-44,-76v-10,-29,-15,-62,-15,-98v0,-36,5,-69,15,-98v10,-29,25,-55,44,-76v19,-21,42,-37,68,-48v26,-11,55,-17,87,-17v27,0,51,4,72,13v21,9,40,22,55,38v15,16,28,37,36,60v8,23,12,49,12,77r0,44r-310,0xm256,-497r-113,-163r88,0r94,163r-69,0","w":469},"\u00ea":{"d":"350,-289v-1,-35,-9,-63,-26,-81v-17,-18,-41,-27,-72,-27v-32,0,-59,9,-80,27v-21,18,-35,46,-44,81r222,0xm122,-233v0,55,14,99,40,130v26,31,62,47,108,47v20,0,39,-4,56,-10v17,-6,37,-18,62,-35r30,59v-17,11,-32,19,-46,26v-14,7,-26,14,-39,18v-13,4,-25,6,-38,8v-13,2,-26,3,-41,3v-31,0,-60,-6,-86,-17v-26,-11,-48,-27,-66,-48v-18,-21,-34,-47,-44,-76v-10,-29,-15,-62,-15,-98v0,-36,5,-69,15,-98v10,-29,25,-55,44,-76v19,-21,42,-37,68,-48v26,-11,55,-17,87,-17v27,0,51,4,72,13v21,9,40,22,55,38v15,16,28,37,36,60v8,23,12,49,12,77r0,44r-310,0xm331,-497r-75,-107r-76,107r-69,0r113,-163r63,0r113,163r-69,0","w":469},"\u00eb":{"d":"350,-289v-1,-35,-9,-63,-26,-81v-17,-18,-41,-27,-72,-27v-32,0,-59,9,-80,27v-21,18,-35,46,-44,81r222,0xm122,-233v0,55,14,99,40,130v26,31,62,47,108,47v20,0,39,-4,56,-10v17,-6,37,-18,62,-35r30,59v-17,11,-32,19,-46,26v-14,7,-26,14,-39,18v-13,4,-25,6,-38,8v-13,2,-26,3,-41,3v-31,0,-60,-6,-86,-17v-26,-11,-48,-27,-66,-48v-18,-21,-34,-47,-44,-76v-10,-29,-15,-62,-15,-98v0,-36,5,-69,15,-98v10,-29,25,-55,44,-76v19,-21,42,-37,68,-48v26,-11,55,-17,87,-17v27,0,51,4,72,13v21,9,40,22,55,38v15,16,28,37,36,60v8,23,12,49,12,77r0,44r-310,0xm219,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm394,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":469},"\u00ed":{"d":"86,0r0,-453r75,0r0,453r-75,0xm149,-497r-69,0r94,-163r88,0","w":247},"\u00ec":{"d":"86,0r0,-453r75,0r0,453r-75,0xm105,-497r-113,-163r88,0r94,163r-69,0","w":247},"\u00ee":{"d":"86,0r0,-453r75,0r0,453r-75,0xm199,-497r-75,-107r-76,107r-69,0r113,-163r63,0r113,163r-69,0","w":247},"\u00ef":{"d":"86,0r0,-453r75,0r0,453r-75,0xm89,-573v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm264,-573v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":247},"\u00f1":{"d":"388,0r0,-321v0,-15,-1,-26,-2,-33v-1,-7,-2,-13,-5,-20v-3,-7,-9,-14,-17,-18v-8,-4,-18,-6,-29,-6v-23,0,-48,9,-75,28v-27,19,-60,50,-99,93r0,277r-75,0r0,-453r75,0r0,95r20,-22v5,-6,11,-12,15,-16r12,-12v6,-6,7,-5,15,-12v17,-15,36,-26,57,-34v21,-8,43,-11,64,-11v79,0,119,42,119,126r0,339r-75,0xm472,-574v-11,11,-20,18,-27,22v-7,4,-16,10,-29,15v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27r-19,-10v-5,-2,-10,-4,-14,-6v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-19,36,-23v7,-4,16,-8,25,-12v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,0,18,-1v6,-1,12,-3,18,-6v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":545},"\u00f3":{"d":"408,-226v0,-24,-4,-47,-11,-68v-7,-21,-17,-39,-30,-54v-13,-15,-28,-27,-45,-36v-17,-9,-35,-14,-55,-14v-20,0,-39,5,-56,14v-17,9,-32,21,-45,36v-13,15,-23,33,-30,54v-7,21,-11,44,-11,68v0,24,4,47,11,68v7,21,17,39,30,54v13,15,28,27,45,36v17,9,36,14,56,14v20,0,38,-5,55,-14v17,-9,32,-21,45,-36v13,-15,23,-33,30,-54v7,-21,11,-44,11,-68xm490,-226v0,33,-6,63,-18,92v-12,29,-28,54,-48,76v-20,22,-43,39,-70,52v-27,13,-56,19,-87,19v-31,0,-60,-6,-87,-19v-27,-13,-52,-30,-72,-52v-20,-22,-36,-47,-48,-76v-12,-29,-17,-59,-17,-92v0,-33,5,-63,17,-92v12,-29,28,-54,48,-76v20,-22,45,-39,72,-52v27,-13,56,-19,87,-19v31,0,60,6,87,19v27,13,50,30,70,52v20,22,36,47,48,76v12,29,18,59,18,92xm292,-497r-66,0r86,-163r88,0","w":533},"\u00f2":{"d":"408,-226v0,-24,-4,-47,-11,-68v-7,-21,-17,-39,-30,-54v-13,-15,-28,-27,-45,-36v-17,-9,-35,-14,-55,-14v-20,0,-39,5,-56,14v-17,9,-32,21,-45,36v-13,15,-23,33,-30,54v-7,21,-11,44,-11,68v0,24,4,47,11,68v7,21,17,39,30,54v13,15,28,27,45,36v17,9,36,14,56,14v20,0,38,-5,55,-14v17,-9,32,-21,45,-36v13,-15,23,-33,30,-54v7,-21,11,-44,11,-68xm490,-226v0,33,-6,63,-18,92v-12,29,-28,54,-48,76v-20,22,-43,39,-70,52v-27,13,-56,19,-87,19v-31,0,-60,-6,-87,-19v-27,-13,-52,-30,-72,-52v-20,-22,-36,-47,-48,-76v-12,-29,-17,-59,-17,-92v0,-33,5,-63,17,-92v12,-29,28,-54,48,-76v20,-22,45,-39,72,-52v27,-13,56,-19,87,-19v31,0,60,6,87,19v27,13,50,30,70,52v20,22,36,47,48,76v12,29,18,59,18,92xm258,-497r-120,-163r88,0r101,163r-69,0","w":533},"\u00f4":{"d":"408,-226v0,-24,-4,-47,-11,-68v-7,-21,-17,-39,-30,-54v-13,-15,-28,-27,-45,-36v-17,-9,-35,-14,-55,-14v-20,0,-39,5,-56,14v-17,9,-32,21,-45,36v-13,15,-23,33,-30,54v-7,21,-11,44,-11,68v0,24,4,47,11,68v7,21,17,39,30,54v13,15,28,27,45,36v17,9,36,14,56,14v20,0,38,-5,55,-14v17,-9,32,-21,45,-36v13,-15,23,-33,30,-54v7,-21,11,-44,11,-68xm490,-226v0,33,-6,63,-18,92v-12,29,-28,54,-48,76v-20,22,-43,39,-70,52v-27,13,-56,19,-87,19v-31,0,-60,-6,-87,-19v-27,-13,-52,-30,-72,-52v-20,-22,-36,-47,-48,-76v-12,-29,-17,-59,-17,-92v0,-33,5,-63,17,-92v12,-29,28,-54,48,-76v20,-22,45,-39,72,-52v27,-13,56,-19,87,-19v31,0,60,6,87,19v27,13,50,30,70,52v20,22,36,47,48,76v12,29,18,59,18,92xm346,-497r-76,-107r-75,107r-69,0r113,-163r63,0r113,163r-69,0","w":533},"\u00f6":{"d":"408,-226v0,-24,-4,-47,-11,-68v-7,-21,-17,-39,-30,-54v-13,-15,-28,-27,-45,-36v-17,-9,-35,-14,-55,-14v-20,0,-39,5,-56,14v-17,9,-32,21,-45,36v-13,15,-23,33,-30,54v-7,21,-11,44,-11,68v0,24,4,47,11,68v7,21,17,39,30,54v13,15,28,27,45,36v17,9,36,14,56,14v20,0,38,-5,55,-14v17,-9,32,-21,45,-36v13,-15,23,-33,30,-54v7,-21,11,-44,11,-68xm490,-226v0,33,-6,63,-18,92v-12,29,-28,54,-48,76v-20,22,-43,39,-70,52v-27,13,-56,19,-87,19v-31,0,-60,-6,-87,-19v-27,-13,-52,-30,-72,-52v-20,-22,-36,-47,-48,-76v-12,-29,-17,-59,-17,-92v0,-33,5,-63,17,-92v12,-29,28,-54,48,-76v20,-22,45,-39,72,-52v27,-13,56,-19,87,-19v31,0,60,6,87,19v27,13,50,30,70,52v20,22,36,47,48,76v12,29,18,59,18,92xm234,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm409,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":533},"\u00f5":{"d":"408,-226v0,-24,-4,-47,-11,-68v-7,-21,-17,-39,-30,-54v-13,-15,-28,-27,-45,-36v-17,-9,-35,-14,-55,-14v-20,0,-39,5,-56,14v-17,9,-32,21,-45,36v-13,15,-23,33,-30,54v-7,21,-11,44,-11,68v0,24,4,47,11,68v7,21,17,39,30,54v13,15,28,27,45,36v17,9,36,14,56,14v20,0,38,-5,55,-14v17,-9,32,-21,45,-36v13,-15,23,-33,30,-54v7,-21,11,-44,11,-68xm490,-226v0,33,-6,63,-18,92v-12,29,-28,54,-48,76v-20,22,-43,39,-70,52v-27,13,-56,19,-87,19v-31,0,-60,-6,-87,-19v-27,-13,-52,-30,-72,-52v-20,-22,-36,-47,-48,-76v-12,-29,-17,-59,-17,-92v0,-33,5,-63,17,-92v12,-29,28,-54,48,-76v20,-22,45,-39,72,-52v27,-13,56,-19,87,-19v31,0,60,6,87,19v27,13,50,30,70,52v20,22,36,47,48,76v12,29,18,59,18,92xm449,-574v-11,11,-20,18,-27,22v-7,4,-16,10,-29,15v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27r-20,-10v-5,-2,-9,-4,-13,-6v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1v-13,0,-24,3,-35,8v-7,3,-13,5,-17,8r-28,18r-32,-44v17,-11,29,-19,36,-23v7,-4,16,-8,25,-12v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,8,2,13,4v5,2,12,5,20,9v8,4,18,10,31,17v11,6,21,10,29,13v8,3,15,4,23,4v7,0,13,0,19,-1v6,-1,11,-3,17,-6v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":533},"\u00fa":{"d":"383,0r0,-94v-52,72,-112,108,-180,108v-81,0,-121,-42,-121,-127r0,-340r75,0r0,321v0,28,5,48,13,60v8,12,22,19,41,19v12,0,25,-3,40,-9v15,-6,30,-15,45,-26v15,-11,30,-23,45,-38v15,-15,29,-32,42,-50r0,-277r76,0r0,453r-76,0xm295,-497r-69,0r95,-163r88,0","w":541},"\u00f9":{"d":"383,0r0,-94v-52,72,-112,108,-180,108v-81,0,-121,-42,-121,-127r0,-340r75,0r0,321v0,28,5,48,13,60v8,12,22,19,41,19v12,0,25,-3,40,-9v15,-6,30,-15,45,-26v15,-11,30,-23,45,-38v15,-15,29,-32,42,-50r0,-277r76,0r0,453r-76,0xm258,-497r-113,-163r88,0r94,163r-69,0","w":541},"\u00fb":{"d":"383,0r0,-94v-52,72,-112,108,-180,108v-81,0,-121,-42,-121,-127r0,-340r75,0r0,321v0,28,5,48,13,60v8,12,22,19,41,19v12,0,25,-3,40,-9v15,-6,30,-15,45,-26v15,-11,30,-23,45,-38v15,-15,29,-32,42,-50r0,-277r76,0r0,453r-76,0xm346,-497r-76,-107r-75,107r-69,0r113,-163r63,0r113,163r-69,0","w":541},"\u00fc":{"d":"383,0r0,-94v-52,72,-112,108,-180,108v-81,0,-121,-42,-121,-127r0,-340r75,0r0,321v0,28,5,48,13,60v8,12,22,19,41,19v12,0,25,-3,40,-9v15,-6,30,-15,45,-26v15,-11,30,-23,45,-38v15,-15,29,-32,42,-50r0,-277r76,0r0,453r-76,0xm240,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm415,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":541},"\u00b0":{"d":"236,-547v0,-20,-7,-37,-21,-51v-14,-14,-31,-21,-51,-21v-19,0,-36,7,-50,21v-14,14,-21,31,-21,51v0,19,7,36,21,50v14,14,31,21,50,21v20,0,37,-7,51,-21v14,-14,21,-31,21,-50xm286,-547v0,17,-4,32,-10,47v-6,15,-15,27,-26,38v-11,11,-23,20,-38,26v-15,6,-31,10,-48,10v-17,0,-32,-4,-47,-10v-15,-6,-28,-15,-39,-26v-11,-11,-20,-23,-26,-38v-6,-15,-9,-30,-9,-47v0,-17,3,-32,9,-47v6,-15,15,-29,26,-40v11,-11,24,-20,39,-26v15,-6,30,-9,47,-9v17,0,33,3,48,9v15,6,27,15,38,26v11,11,20,25,26,40v6,15,10,30,10,47","w":333},"\u00a2":{"d":"275,-397v-2,0,-3,-1,-5,-1r-5,0v-19,0,-38,5,-55,14v-17,9,-31,20,-44,36v-13,16,-23,35,-30,56v-7,21,-11,43,-11,67v0,57,17,101,50,130v5,5,10,9,15,12v8,5,7,5,22,15xm431,-35v-19,11,-33,20,-44,25v-11,5,-23,9,-38,13v-11,3,-24,5,-39,7v-15,2,-29,3,-42,3v-5,0,-10,-1,-13,-1v-3,0,-8,0,-14,-1r-16,83r-44,0r17,-92v-3,-1,-5,-2,-6,-2v-1,0,-3,-1,-4,-2r-27,-12v-7,-3,-13,-7,-19,-10v-6,-3,-12,-6,-16,-10v-6,-6,-6,-6,-15,-14v-45,-43,-68,-101,-68,-173v0,-35,5,-67,17,-97v12,-30,28,-55,48,-77v20,-22,45,-39,73,-52v28,-13,58,-19,90,-19r7,0v3,0,7,0,10,1r16,-84r44,0r-16,89v11,3,20,6,28,8v8,2,14,5,20,8v6,3,14,6,20,10r22,15r-43,61v-12,-11,-21,-18,-29,-22v-8,-4,-19,-8,-32,-12r-63,333v5,1,10,3,13,3r13,0v23,0,43,-2,59,-8v16,-6,33,-16,52,-30","w":444},"\u00a3":{"d":"591,-616v-4,-9,-8,-17,-12,-23v-4,-6,-9,-11,-14,-14v-5,-3,-12,-6,-19,-7v-7,-1,-16,-2,-27,-2v-32,0,-59,12,-81,36v-7,7,-12,13,-17,20v-5,7,-9,15,-13,24v-4,9,-8,19,-12,32v-6,19,-5,19,-13,47r-88,340r189,0r-25,69r-189,0r-40,148r-15,45v-3,9,-5,16,-7,21v-2,5,-3,9,-4,10v-2,4,-2,4,-4,9v-2,3,-4,7,-7,12v5,-1,10,-2,14,-2r10,0r11,0v4,0,10,1,15,2v8,1,15,2,21,3v6,1,11,1,15,2v1,1,6,2,15,4v9,2,22,7,39,12v23,6,46,9,67,9v35,0,52,-13,52,-38v0,-7,-1,-15,-3,-24v-1,-3,-1,-7,-2,-11v-1,-4,-2,-10,-3,-16r75,-11r9,43v0,0,2,19,2,28v0,31,-12,55,-34,71v-22,16,-55,24,-98,24v-30,0,-57,-3,-80,-9r-69,-16v-11,-3,-23,-5,-34,-6v-11,-1,-23,-2,-36,-2r-8,0v-12,0,-24,1,-35,2v-11,1,-22,3,-33,5v-3,1,-11,3,-23,6r-48,11v-3,1,-8,3,-13,4v-8,2,-8,1,-19,3r13,-75v21,-3,38,-6,49,-9v11,-3,22,-9,33,-16v17,-12,30,-28,41,-47v11,-19,21,-46,30,-79r29,-113r-126,0r19,-57r126,-12r100,-359v8,-29,14,-52,20,-70v6,-18,12,-32,18,-43v6,-11,12,-21,18,-29v6,-8,14,-15,23,-23v17,-14,37,-25,60,-33v23,-8,48,-12,74,-12v17,0,31,1,43,4v12,3,22,7,32,13v10,6,19,14,26,24v7,10,13,22,20,37","w":576},"\u00a7":{"d":"346,40v0,31,-4,59,-12,84v-8,25,-20,46,-36,64v-16,18,-36,30,-58,40v-22,10,-47,15,-74,15v-23,0,-45,-3,-64,-9v-12,-4,-23,-10,-32,-17v-9,-7,-19,-19,-31,-36r53,-43v19,31,47,47,82,47v35,0,62,-15,82,-43v20,-28,30,-67,30,-117v0,-13,0,-27,-2,-43v-2,-16,-5,-35,-10,-56v-5,-21,-10,-47,-18,-76r-29,-104v-21,-77,-37,-141,-48,-192v-11,-51,-16,-88,-16,-113v0,-13,2,-24,5,-34v3,-10,8,-23,17,-38r36,14v-4,9,-7,15,-9,21v-2,6,-2,13,-2,20v0,24,4,51,12,80r73,258v17,62,31,116,39,161v8,45,12,84,12,117xm297,-629v-19,-31,-46,-47,-81,-47v-35,0,-62,14,-82,43v-20,29,-30,68,-30,118v0,13,0,27,2,43v2,16,5,35,10,56r18,76v0,0,17,63,28,104v43,152,65,254,65,305v0,13,-2,23,-5,33v-3,10,-9,23,-18,38r-36,-13v5,-9,8,-17,10,-22v2,-5,2,-12,2,-19v0,-12,-2,-25,-4,-38v-2,-13,-5,-27,-9,-42r-73,-258v-17,-63,-30,-117,-38,-162v-8,-45,-13,-84,-13,-117v0,-31,4,-58,13,-83v9,-25,20,-46,36,-64v16,-18,35,-32,57,-42v22,-10,47,-14,74,-14v25,0,47,3,65,10v11,3,21,8,30,16v9,8,20,20,33,36","w":396},"\u00b6":{"d":"465,226r0,-899r-69,0r0,899r-57,0r0,-471r-50,0v-32,0,-63,-6,-91,-19v-28,-13,-53,-32,-74,-54v-21,-22,-38,-48,-51,-77v-13,-29,-19,-60,-19,-93v0,-34,6,-67,19,-98v13,-31,31,-59,56,-84v23,-23,48,-40,75,-50v27,-10,59,-16,98,-16r220,0r0,962r-57,0","w":644},"\u00df":{"d":"555,-117v0,40,-15,72,-45,95v-30,23,-69,35,-120,35v-14,0,-26,-1,-38,-2v-12,-1,-24,-3,-36,-7v-12,-4,-23,-10,-36,-16v-13,-6,-27,-14,-44,-24r33,-57v14,9,26,16,37,22v11,6,20,11,30,15v10,4,19,6,28,7v9,1,19,2,29,2v26,0,47,-5,63,-17v16,-12,25,-28,25,-47v0,-11,-3,-21,-8,-30v-10,-14,-25,-26,-44,-35v-5,-3,-13,-7,-24,-12r-44,-21v-39,-19,-67,-37,-83,-55v-16,-18,-25,-41,-25,-67v0,-13,1,-25,4,-35v3,-10,9,-19,17,-30v8,-11,20,-23,36,-36v16,-13,36,-28,61,-47v13,-9,23,-18,32,-26v9,-8,16,-16,21,-23v5,-7,8,-15,10,-23v2,-8,3,-17,3,-27v0,-31,-12,-55,-35,-73v-23,-18,-54,-27,-93,-27v-25,0,-47,5,-67,15v-11,5,-20,11,-28,19v-8,8,-14,18,-18,30v-4,12,-7,27,-9,44v-2,17,-3,37,-3,61r0,509r-74,0r0,-390r-88,0r0,-44r88,-19r0,-75v0,-67,17,-119,52,-156v35,-37,85,-55,150,-55v62,0,111,14,146,42v35,28,52,67,52,116v0,15,-2,28,-6,41v-4,13,-11,25,-20,38v-9,13,-22,27,-38,41v-16,14,-38,30,-63,48v-21,16,-36,29,-45,41v-9,12,-13,25,-13,38v0,7,2,13,5,19v3,6,10,13,18,19v8,6,18,13,32,20v14,7,31,16,52,25v33,15,58,28,74,39v16,11,27,25,36,40v9,16,13,34,13,55","w":576},"\u00ae":{"d":"584,-343v0,-13,-3,-26,-8,-37v-5,-11,-13,-19,-22,-24v-7,-3,-17,-6,-30,-8v-13,-2,-29,-3,-48,-3r-76,0r0,157r76,0v72,0,108,-28,108,-85xm595,-6r-145,-195r-50,0r0,195r-82,0r0,-472r170,0v62,0,107,11,135,32v28,21,42,54,42,101v0,39,-11,71,-33,95v-22,24,-54,39,-94,43r158,201r-101,0xm836,-243v0,-48,-9,-93,-27,-135v-18,-42,-43,-79,-74,-110v-31,-31,-68,-56,-110,-74v-42,-18,-87,-27,-135,-27v-48,0,-93,9,-135,27v-42,18,-79,43,-111,74v-32,31,-56,68,-74,110v-18,42,-27,87,-27,135v0,48,9,93,27,135v18,42,42,78,74,110v32,32,69,57,111,75v42,18,87,27,135,27v48,0,93,-9,135,-27v42,-18,79,-43,110,-75v31,-32,56,-68,74,-110v18,-42,27,-87,27,-135xm900,-243v0,57,-10,110,-32,160v-22,50,-51,94,-88,131v-37,37,-80,66,-130,88v-50,22,-103,32,-160,32v-57,0,-110,-10,-160,-32v-50,-22,-93,-51,-130,-88v-37,-37,-66,-81,-88,-131v-22,-50,-33,-103,-33,-160v0,-57,11,-109,33,-159v22,-50,51,-93,88,-130v37,-37,80,-66,130,-88v50,-22,103,-33,160,-33v57,0,110,11,160,33v50,22,93,51,130,88v37,37,66,80,88,130v22,50,32,102,32,159","w":979},"\u00a9":{"d":"682,-50v-15,9,-25,15,-32,18v-40,21,-84,31,-132,31v-36,0,-69,-6,-99,-17v-30,-11,-55,-27,-77,-48v-22,-21,-38,-45,-50,-74v-12,-29,-18,-61,-18,-96v0,-35,6,-68,18,-98v12,-30,30,-56,52,-77v22,-21,48,-38,79,-50v31,-12,64,-18,100,-18v25,0,48,3,71,9v8,2,15,4,21,6v6,2,12,4,18,7v6,3,13,6,19,10v10,6,9,6,21,14r-46,61v-18,-15,-35,-24,-51,-30v-16,-6,-35,-9,-56,-9v-24,0,-46,5,-66,13v-20,8,-36,19,-50,34v-14,15,-24,34,-32,55v-8,21,-12,45,-12,70v0,52,15,93,45,123v30,30,71,46,122,46v23,0,43,-2,60,-8v17,-6,35,-16,54,-30xm851,-243v0,-48,-9,-93,-27,-135v-18,-42,-42,-79,-74,-110v-32,-31,-69,-56,-111,-74v-42,-18,-87,-27,-135,-27v-48,0,-93,9,-135,27v-42,18,-79,43,-110,74v-31,31,-56,68,-74,110v-18,42,-27,87,-27,135v0,48,9,93,27,135v18,42,43,78,74,110v31,32,68,57,110,75v42,18,87,27,135,27v48,0,93,-9,135,-27v42,-18,79,-43,111,-75v32,-32,56,-68,74,-110v18,-42,27,-87,27,-135xm915,-243v0,57,-11,110,-33,160v-22,50,-51,94,-88,131v-37,37,-80,66,-130,88v-50,22,-103,32,-160,32v-57,0,-110,-10,-160,-32v-50,-22,-93,-51,-130,-88v-37,-37,-66,-81,-88,-131v-22,-50,-32,-103,-32,-160v0,-57,10,-109,32,-159v22,-50,51,-93,88,-130v37,-37,80,-66,130,-88v50,-22,103,-33,160,-33v57,0,110,11,160,33v50,22,93,51,130,88v37,37,66,80,88,130v22,50,33,102,33,159","w":1009},"\u00b4":{"d":"232,-497r-69,0r94,-163r88,0","w":383},"\u00a8":{"d":"166,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm341,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":406},"\u00c6":{"d":"367,-608r-164,338r164,0r0,-338xm367,0r0,-195r-195,0r-94,195r-95,0r333,-660r51,0r371,0r0,69r-294,0r0,220r243,0r0,69r-243,0r0,233r300,0r0,69r-377,0","w":794},"\u00d8":{"d":"628,-329v0,-34,-6,-68,-18,-101v-12,-33,-29,-61,-50,-83r-332,383v29,25,56,43,80,54v24,11,50,16,79,16v33,0,64,-8,93,-22v29,-14,54,-33,76,-58v22,-25,39,-54,52,-86v13,-32,20,-66,20,-103xm526,-546v-19,-17,-40,-30,-66,-40v-26,-10,-51,-15,-76,-15v-32,0,-63,7,-92,21v-29,14,-54,34,-76,59v-22,25,-39,53,-52,86v-13,33,-19,67,-19,103v0,29,5,58,14,88v9,30,22,55,37,76xm718,-330v0,50,-8,96,-25,138v-17,42,-39,78,-69,108v-30,30,-65,55,-106,72v-41,17,-87,25,-136,25v-21,0,-40,-1,-56,-3v-16,-2,-31,-5,-46,-10v-15,-5,-31,-12,-46,-21v-15,-9,-33,-20,-53,-34r-11,-9r-99,114r-37,-31r102,-118v-16,-23,-30,-43,-40,-61v-10,-18,-18,-35,-24,-52v-6,-17,-12,-35,-14,-53v-2,-18,-3,-38,-3,-60v0,-51,9,-99,25,-141v16,-42,38,-78,68,-109v30,-31,65,-54,106,-71v41,-17,86,-26,135,-26v19,0,37,0,51,2v14,2,28,5,42,9v14,4,28,10,43,17v15,7,32,17,51,28r6,4r93,-105r37,32r-92,105v32,34,56,72,73,114v17,42,25,87,25,136","w":768},"\u00b1":{"d":"38,0r0,-57r474,0r0,57r-474,0xm303,-249r0,169r-56,0r0,-169r-209,0r0,-56r209,0r0,-169r56,0r0,169r209,0r0,56r-209,0"},"\u00a5":{"d":"335,-346r139,0r0,57r-164,0r0,69r164,0r0,57r-164,0r0,163r-82,0r0,-163r-163,0r0,-57r163,0r0,-69r-163,0r0,-57r138,0r-195,-314r88,0r177,283r182,-283r87,0"},"\u00b5":{"d":"543,25r-479,-251r480,-252","w":620},"\u03bc":{"d":"543,25r-479,-251r480,-252","w":620},"\u00aa":{"d":"365,-654v-17,-6,-31,-10,-42,-12v-11,-2,-22,-3,-33,-3v-39,0,-68,13,-86,39v-18,26,-28,66,-28,121r0,56r207,0r0,-75v0,-13,0,-23,1,-32v1,-9,2,-18,4,-26v2,-8,3,-16,6,-24v3,-8,6,-16,11,-26xm704,-622v-16,-9,-30,-17,-42,-23v-12,-6,-24,-11,-34,-15v-10,-4,-19,-6,-28,-7v-9,-1,-18,-2,-27,-2v-76,0,-114,53,-114,160r0,56r258,0r0,453r-76,0r0,-390r-182,0r0,390r-76,0r0,-390r-207,0r0,390r-75,0r0,-390r-76,0r0,-44r76,-19r0,-75v0,-65,17,-116,52,-154v35,-38,82,-57,143,-57v25,0,48,4,72,11v24,7,50,19,79,36v25,-17,47,-29,65,-36v18,-7,39,-10,64,-10v27,0,53,4,77,12v11,4,23,9,34,14v11,5,28,14,49,27","w":803},"\u00ba":{"d":"406,-633v-12,-7,-21,-12,-27,-15v-6,-3,-13,-6,-20,-9v-9,-3,-19,-6,-31,-8v-12,-2,-23,-3,-33,-3v-37,0,-66,14,-87,42v-21,28,-32,67,-32,117r0,56r207,0r0,-75v0,-14,0,-26,1,-35v1,-9,2,-18,4,-25v2,-7,3,-15,6,-22v3,-7,7,-14,12,-23xm648,0r0,-654v-16,-5,-29,-10,-40,-12v-11,-2,-23,-3,-34,-3v-77,0,-115,53,-115,160r0,56r125,0r0,63r-125,0r0,390r-76,0r0,-390r-207,0r0,390r-75,0r0,-390r-76,0r0,-44r76,-19r0,-75v0,-31,5,-60,15,-86v10,-26,22,-48,40,-66v18,-18,40,-32,64,-42v24,-10,51,-16,80,-16v29,0,56,4,79,13r25,11v9,4,24,11,43,21v24,-17,46,-29,65,-36v19,-7,41,-10,66,-10v25,0,48,3,70,10r75,0r0,729r-75,0","w":805},"\u00e6":{"d":"330,-124v-4,-11,-6,-20,-8,-26v-2,-6,-4,-12,-5,-20r-4,-27r-1,-4r-170,34v-5,11,-8,19,-10,25v-2,6,-3,14,-3,24v0,20,5,35,16,46v11,11,26,17,45,17v17,0,36,-5,57,-15v21,-10,48,-28,83,-54xm620,-327v-9,-50,-42,-75,-100,-75v-39,0,-69,10,-90,30v-21,20,-33,51,-36,90xm394,-219v1,49,14,89,41,119v27,30,62,44,106,44v20,0,38,-4,55,-10v17,-6,38,-18,63,-35r30,59v-17,11,-31,19,-45,26v-14,7,-27,14,-40,18v-13,4,-25,6,-38,8v-13,2,-26,3,-41,3v-75,0,-131,-30,-170,-91r-31,26v-8,7,-16,12,-22,17v-6,5,-11,8,-16,11v-7,4,-7,5,-15,10v-13,8,-29,14,-46,19v-17,5,-34,7,-50,7v-38,0,-68,-11,-89,-33v-21,-22,-32,-52,-32,-91v0,-15,2,-30,6,-44v7,-23,16,-39,30,-50v14,-11,36,-20,65,-26r157,-32r0,-81v0,-22,-6,-37,-18,-47v-12,-10,-32,-15,-60,-15v-51,0,-77,13,-77,39v0,5,1,10,4,16r-76,16v-3,-6,-6,-10,-7,-14v-1,-4,-1,-9,-1,-14v0,-30,15,-54,45,-73v30,-19,69,-28,118,-28v38,0,67,6,88,17v21,11,38,29,50,54v9,-12,17,-21,23,-26v15,-13,33,-24,57,-32v24,-8,48,-13,73,-13v24,0,46,4,67,12v21,8,40,19,55,33v15,14,27,31,36,50v9,19,13,40,13,62r0,27","w":739},"\u00f8":{"d":"403,-235v0,-8,0,-16,-1,-23v-1,-7,-2,-13,-4,-20v-2,-7,-5,-14,-8,-21v-3,-7,-7,-16,-12,-25r-201,237v17,13,32,22,43,26v11,4,25,6,40,6v19,0,38,-5,55,-15v17,-10,32,-22,45,-38v13,-16,24,-36,32,-58v8,-22,11,-44,11,-69xm355,-356v-24,-28,-55,-42,-93,-42v-20,0,-39,5,-56,14v-17,9,-33,20,-46,36v-13,16,-22,34,-30,55v-8,21,-12,43,-12,67v0,36,11,72,32,109xm430,-381v17,21,31,45,40,72v9,27,14,55,14,84v0,33,-6,64,-17,93v-11,29,-27,54,-47,75v-20,21,-43,38,-70,51v-27,13,-55,19,-85,19v-13,0,-25,-1,-36,-2v-11,-1,-21,-4,-31,-7v-10,-3,-20,-8,-30,-14v-10,-6,-22,-13,-35,-22r-4,-3r-70,82r-29,-26r72,-82v-21,-22,-37,-48,-48,-77v-11,-29,-17,-58,-17,-89v0,-32,6,-62,18,-91v12,-29,28,-54,49,-76v21,-22,45,-39,72,-52v27,-13,56,-19,86,-19v26,0,51,5,76,14v25,9,47,23,64,40r71,-82r30,24","w":533},"\u00bf":{"d":"331,239v-15,-3,-27,-5,-38,-8v-11,-3,-21,-5,-29,-8v-8,-3,-16,-5,-23,-9r-24,-13v-21,-12,-41,-27,-59,-45v-18,-18,-32,-39,-44,-61v-12,-22,-22,-46,-29,-71v-7,-25,-10,-51,-10,-77v0,-26,3,-48,9,-66v6,-18,18,-34,33,-49v7,-7,13,-14,19,-18v6,-4,12,-8,18,-10v6,-2,14,-3,22,-4v8,-1,18,-2,29,-2r51,0r0,-108r75,0r0,176r-152,0v-11,15,-18,29,-21,40v-3,11,-5,24,-5,40v0,29,5,55,15,80v10,25,22,47,40,66v18,19,39,36,64,48v25,12,53,20,84,24xm350,-454v0,16,-5,29,-16,40v-11,11,-25,17,-41,17v-15,0,-28,-6,-39,-17v-11,-11,-17,-24,-17,-40v0,-15,6,-29,17,-40v11,-11,24,-16,39,-16v16,0,30,5,41,16v11,11,16,25,16,40","w":418},"\u00a1":{"d":"89,238r6,-540r75,0r7,540r-88,0xm189,-453v0,15,-6,28,-17,39v-11,11,-24,17,-39,17v-15,0,-29,-6,-40,-17v-11,-11,-17,-24,-17,-39v0,-16,6,-30,17,-41v11,-11,25,-16,40,-16v15,0,28,5,39,16v11,11,17,25,17,41","w":264},"\u00ab":{"d":"40,-226r226,-189r0,82r-132,107r132,107r0,81xm279,-226r226,-189r0,82r-132,107r132,107r0,81","w":560},"\u00bb":{"d":"54,-38r0,-81r133,-107r-133,-107r0,-82r227,189xm293,-38r0,-81r132,-107r-132,-107r0,-82r227,189","w":560},"\u00a0":{"w":500},"\u00c0":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm270,-715r-114,-118r88,0r95,118r-69,0","w":595},"\u00c3":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm497,-758v-11,11,-20,18,-27,22v-7,4,-16,10,-29,15v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27r-20,-10v-5,-2,-9,-4,-13,-6v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1v-13,0,-24,3,-35,8v-7,3,-13,5,-17,8r-28,18r-32,-44v17,-11,29,-19,36,-23v7,-4,16,-8,25,-12v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,8,2,13,4v5,2,12,5,20,9v8,4,18,10,31,17v11,6,21,10,29,13v8,3,15,4,23,4v7,0,13,0,19,-1v6,-1,11,-3,17,-6v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":595},"\u00d5":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm574,-745v-11,11,-20,19,-27,23v-7,4,-16,9,-29,14v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27v-12,-6,-11,-5,-19,-9v-5,-2,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-12,0v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-18,36,-22v7,-4,16,-9,25,-13v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,-1,18,-2v6,-1,12,-2,18,-5v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":763},"\u00f7":{"d":"335,-48v0,17,-6,31,-17,42v-11,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-42v0,-16,6,-30,17,-41v11,-11,25,-17,42,-17v16,0,30,6,41,17v11,11,17,25,17,41xm25,-208r0,-57r500,0r0,57r-500,0xm335,-427v0,16,-6,30,-17,41v-11,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-41v0,-17,6,-31,17,-42v11,-11,25,-17,42,-17v16,0,30,6,41,17v11,11,17,25,17,42"},"\u00ff":{"d":"218,25v-11,28,-21,53,-30,73v-9,20,-20,40,-33,60v-7,11,-7,10,-13,20r-14,20v-8,10,-7,11,-17,24r-24,31r-60,-46r29,-33v8,-9,16,-18,22,-26v6,-8,12,-17,17,-26r18,-32r17,-30v5,-10,9,-20,14,-30v5,-10,9,-22,14,-35r18,-45r-168,-403r84,0r109,277r15,44r10,-44r93,-277r77,0xm169,-547v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm344,-547v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":405},"\u00b7":{"d":"182,-240v0,15,-5,29,-16,40v-11,11,-25,17,-40,17v-16,0,-29,-6,-40,-17v-11,-11,-17,-25,-17,-40v0,-15,6,-29,17,-40v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,25,16,40","w":251},"\u2219":{"d":"182,-240v0,15,-5,29,-16,40v-11,11,-25,17,-40,17v-16,0,-29,-6,-40,-17v-11,-11,-17,-25,-17,-40v0,-15,6,-29,17,-40v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,25,16,40","w":251},"\u00c2":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm376,-696r-76,-67r-75,67r-68,0r112,-117r63,0r114,117r-70,0","w":595},"\u00ca":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm385,-696r-75,-67r-76,67r-67,0r111,-117r63,0r115,117r-71,0","w":539},"\u00c1":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm337,-715r-70,0r95,-118r88,0","w":595},"\u00cb":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm266,-761v0,14,-5,26,-15,36v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-36v0,-14,5,-25,15,-35v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,21,15,35xm451,-761v0,14,-5,26,-15,36v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-36v0,-14,5,-25,15,-35v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,21,15,35","w":539},"\u00c8":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm293,-715r-113,-118r88,0r94,118r-69,0","w":539},"\u00cd":{"d":"109,0r0,-660r82,0r0,660r-82,0xm165,-715r-69,0r94,-118r88,0","w":300},"\u00ce":{"d":"109,0r0,-660r82,0r0,660r-82,0xm230,-696r-76,-67r-75,67r-68,0r112,-117r63,0r114,117r-70,0","w":300},"\u00cf":{"d":"109,0r0,-660r82,0r0,660r-82,0xm127,-758v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm279,-758v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36","w":300},"\u00cc":{"d":"109,0r0,-660r82,0r0,660r-82,0xm141,-715r-113,-118r88,0r94,118r-69,0","w":300},"\u00d3":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm413,-715r-69,0r94,-118r88,0","w":763},"\u00d4":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm456,-696r-75,-67r-76,67r-68,0r112,-117r63,0r115,117r-71,0","w":763},"\u00d2":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm341,-715r-113,-118r88,0r94,118r-69,0","w":763},"\u00da":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm379,-715r-69,0r94,-118r88,0","w":700},"\u00db":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm432,-696r-75,-67r-76,67r-68,0r112,-117r63,0r115,117r-71,0","w":700},"\u00d9":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm349,-715r-114,-118r88,0r95,118r-69,0","w":700},"\u00af":{"d":"68,-539r0,-63r273,0r0,63r-273,0","w":406},"\u02c9":{"d":"68,-539r0,-63r273,0r0,63r-273,0","w":406},"\u00b8":{"d":"334,145v0,27,-8,48,-26,65v-18,17,-41,26,-69,26v-7,0,-13,0,-19,-1v-6,-1,-12,-2,-19,-3v-7,-1,-15,-3,-25,-6v-14,-4,-15,-5,-36,-12r25,-51v19,8,34,14,45,17v11,3,22,5,32,5v11,0,20,-4,28,-11v8,-7,12,-15,12,-26v0,-15,-6,-26,-16,-32v-10,-6,-27,-9,-50,-9r-32,0r57,-94r50,0r-31,56v23,0,41,6,54,19v13,13,20,32,20,57","w":444},"\"":{"d":"93,-434r0,-226r69,0r0,226r-69,0xm250,-434r0,-226r69,0r0,226r-69,0","w":412},"!":{"d":"194,-44v0,15,-6,29,-17,40v-11,11,-25,17,-40,17v-15,0,-29,-6,-40,-17v-11,-11,-17,-25,-17,-40v0,-15,6,-29,17,-40v11,-11,25,-17,40,-17v15,0,29,6,40,17v11,11,17,25,17,40xm175,-195r-76,0r-6,-541r88,0","w":264},"\u00a4":{"d":"375,-650v-19,-7,-35,-12,-47,-15v-12,-3,-24,-4,-37,-4v-77,0,-115,53,-115,160r0,56r207,0r0,-75v0,-12,0,-23,1,-32v1,-9,2,-16,4,-24v2,-8,3,-16,6,-24v3,-8,6,-17,11,-28xm648,-654v-5,-1,-10,-2,-14,-3v-4,-1,-6,-1,-9,-2v-14,-3,-25,-6,-31,-7v-6,-1,-13,-2,-20,-2v-18,0,-34,3,-48,9v-25,11,-42,27,-52,50v-10,23,-15,56,-15,100r0,56r107,0r0,63r-107,0r0,390r-76,0r0,-390r-207,0r0,390r-75,0r0,-390r-76,0r0,-44r76,-19r0,-75v0,-32,5,-61,14,-87v9,-26,22,-49,39,-67v17,-18,38,-32,62,-42v24,-10,51,-15,81,-15v25,0,49,4,71,11v22,7,49,20,78,37v23,-17,45,-29,64,-36v19,-7,41,-10,67,-10v9,0,16,1,23,1v7,0,14,1,21,2v7,1,16,3,25,6v9,3,20,6,33,11","w":565}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 1993 Martin Majoor
 * 
 * Manufacturer:
 * Martin Majoor
 */
Cufon.registerFont({"w":500,"face":{"font-family":"ScalaSansCaps","font-weight":550,"font-variant":"small-caps","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 5 0 0 2 0 4","ascent":"800","descent":"-200","x-height":"9","bbox":"-17 -868 856 247","underline-thickness":"57","underline-position":"28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":250},"%":{"d":"755,-162v0,-16,-3,-31,-9,-45v-6,-14,-14,-27,-24,-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,-19,23,-25,37v-6,14,-9,29,-9,45v0,16,3,30,9,44v6,14,15,26,25,36v10,10,22,19,36,25v14,6,29,9,45,9v16,0,31,-3,45,-9v14,-6,26,-15,36,-25v10,-10,18,-22,24,-36v6,-14,9,-28,9,-44xm324,-495v0,-16,-3,-31,-9,-45v-6,-14,-15,-25,-25,-36v-10,-11,-22,-19,-36,-25v-14,-6,-29,-9,-45,-9v-16,0,-31,3,-45,9v-14,6,-26,14,-36,25v-10,11,-18,22,-24,36v-6,14,-9,29,-9,45v0,16,3,31,9,45v6,14,14,26,24,36v10,10,22,19,36,25v14,6,29,9,45,9v16,0,31,-3,45,-9v14,-6,26,-15,36,-25v10,-10,19,-22,25,-36v6,-14,9,-29,9,-45xm816,-162v0,24,-5,47,-14,68v-9,21,-22,40,-38,56v-16,16,-34,28,-55,37v-21,9,-44,14,-68,14v-24,0,-47,-5,-68,-14v-21,-9,-40,-21,-56,-37v-16,-16,-28,-35,-37,-56v-9,-21,-14,-44,-14,-68v0,-24,5,-47,14,-68v9,-21,21,-40,37,-56v16,-16,35,-29,56,-38v21,-9,44,-13,68,-13v24,0,47,4,68,13v21,9,39,22,55,38v16,16,29,35,38,56v9,21,14,44,14,68xm172,44r-69,0r572,-736r69,0xm384,-495v0,24,-5,47,-14,68v-9,21,-21,40,-37,56v-16,16,-35,28,-56,37v-21,9,-44,14,-68,14v-24,0,-47,-5,-68,-14v-21,-9,-39,-21,-55,-37v-16,-16,-29,-35,-38,-56v-9,-21,-14,-44,-14,-68v0,-24,5,-47,14,-68v9,-21,22,-40,38,-56v16,-16,34,-29,55,-38v21,-9,44,-14,68,-14v24,0,47,5,68,14v21,9,40,22,56,38v16,16,28,35,37,56v9,21,14,44,14,68","w":850},"&":{"d":"231,-220r-22,13v-13,7,-23,15,-31,21v-8,6,-15,13,-20,20v-5,7,-8,14,-10,22v-2,8,-2,16,-2,27v0,9,3,17,8,25v5,8,10,14,18,20v8,6,17,11,26,14v9,3,18,5,27,5v19,0,39,-1,59,-4v20,-3,43,-12,68,-29xm619,-65v-15,19,-15,19,-23,28v-5,6,-11,12,-18,18v-23,19,-51,29,-82,29v-23,0,-42,-4,-57,-12v-15,-8,-31,-22,-47,-41v-25,19,-50,33,-76,41v-26,8,-56,12,-88,12v-25,0,-47,-3,-67,-9v-20,-6,-37,-14,-51,-25v-14,-11,-24,-23,-32,-38v-8,-15,-12,-30,-12,-47v0,-12,1,-24,3,-35v2,-11,7,-23,13,-34v6,-11,16,-23,28,-34v12,-11,28,-21,48,-32r35,-19v-14,-14,-28,-30,-41,-48v-13,-18,-20,-36,-20,-55v0,-16,3,-31,10,-46v7,-15,16,-27,29,-38v13,-11,28,-20,47,-26v19,-6,40,-10,63,-10v43,0,77,11,101,32v24,21,36,50,36,87v0,19,-5,35,-16,47v-11,12,-30,25,-57,40r-17,9r-39,-43r18,-9v11,-5,20,-11,27,-17v7,-6,11,-14,12,-25v1,-15,-5,-29,-16,-43v-11,-14,-28,-21,-51,-21v-26,0,-45,6,-56,19v-11,13,-17,27,-17,42v0,6,1,11,2,16v1,5,3,10,6,15v3,5,8,12,14,19r24,27r149,165v15,-13,15,-14,27,-24v8,-7,13,-14,18,-22v5,-8,8,-17,10,-27v2,-10,3,-22,3,-36r64,0v-1,22,-3,41,-7,55v-4,14,-9,26,-16,37v-7,11,-15,20,-25,29v-15,14,-15,14,-35,31v15,15,26,24,34,28v8,4,19,6,32,6v13,0,24,-4,35,-11v11,-7,23,-19,38,-36","w":625},"(":{"d":"274,245r-22,-28v-6,-8,-12,-17,-17,-27v-5,-10,-11,-20,-17,-32v-6,-12,-12,-29,-20,-49v-23,-55,-41,-108,-52,-160v-11,-52,-16,-106,-16,-162v0,-55,5,-108,16,-159v11,-51,29,-105,52,-162v14,-33,14,-34,23,-54v6,-14,12,-24,17,-33v5,-9,10,-16,15,-23v5,-7,12,-14,21,-22r75,0v-20,23,-38,52,-55,86v-17,34,-31,72,-43,112v-12,40,-21,83,-28,127v-7,44,-10,88,-10,131v0,43,3,87,10,131v7,44,16,87,28,127v12,40,26,77,43,111v17,34,35,63,55,86r-75,0","w":363},")":{"d":"241,-213v0,55,-5,109,-16,159v-11,50,-28,104,-52,163v-7,18,-13,33,-19,45r-17,34v0,0,-11,18,-17,27v-6,9,-14,19,-23,30r-75,0v20,-23,38,-52,55,-86v17,-34,31,-71,43,-111v12,-40,21,-83,28,-127v7,-44,10,-88,10,-131v0,-43,-3,-87,-10,-131v-7,-44,-16,-87,-28,-127v-12,-40,-26,-78,-43,-112v-17,-34,-35,-63,-55,-86r75,0v8,8,15,15,21,22v6,7,11,14,16,23v5,9,10,19,16,33v9,20,9,21,23,54v23,57,40,111,51,162v11,51,17,104,17,159","w":363},"*":{"d":"148,-232r-58,-42r104,-132r48,34xm353,-232r-94,-140r47,-35r104,133xm187,-425r-162,-46r22,-68r159,58xm312,-425r-19,-56r159,-58r22,68xm280,-491r-58,0r-6,-169r71,0"},"+":{"d":"303,-208r0,208r-56,0r0,-208r-209,0r0,-57r209,0r0,-209r56,0r0,209r209,0r0,57r-209,0","w":550},",":{"d":"176,-36v0,9,-1,17,-2,26v-1,9,-3,18,-6,27v-4,15,-9,31,-16,45r-30,59r-13,24r-44,0v5,-11,9,-20,11,-27v4,-10,4,-10,11,-30v2,-7,3,-13,5,-18v2,-5,3,-10,4,-14v1,-4,3,-8,4,-13v1,-5,3,-10,4,-17r-43,-108v11,-7,21,-12,29,-14v8,-2,18,-4,29,-4v38,0,57,21,57,64","w":252},"-":{"d":"42,-190r0,-76r191,0r0,76r-191,0","w":276},"\u00ad":{"d":"42,-190r0,-76r191,0r0,76r-191,0","w":276},".":{"d":"182,-45v0,16,-5,30,-16,41v-11,11,-25,16,-40,16v-16,0,-29,-5,-40,-16v-11,-11,-17,-25,-17,-41v0,-15,6,-28,17,-39v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,24,16,39","w":251},"\/":{"d":"112,245r-69,0r252,-905r69,0","w":409},"0":{"d":"388,-334v0,-41,-4,-79,-10,-112v-6,-33,-14,-62,-26,-86v-12,-24,-26,-41,-43,-54v-17,-13,-35,-20,-55,-20v-19,0,-37,7,-53,20v-16,13,-29,31,-41,55v-12,24,-22,53,-28,86v-6,33,-9,70,-9,111v0,41,3,78,9,112v6,34,16,62,28,86v12,24,26,43,42,56v16,13,34,19,54,19v19,0,38,-6,54,-19v16,-13,30,-32,42,-56v12,-24,20,-52,26,-86v6,-34,10,-71,10,-112xm476,-334v0,52,-5,99,-16,142v-11,43,-26,80,-46,110v-20,30,-43,55,-70,72v-27,17,-56,25,-89,25v-33,0,-62,-8,-89,-25v-27,-17,-51,-42,-70,-72v-19,-30,-34,-67,-45,-110v-11,-43,-16,-90,-16,-142v0,-52,5,-99,16,-142v11,-43,26,-80,45,-110v19,-30,43,-53,70,-70v27,-17,56,-26,89,-26v33,0,62,9,89,26v27,17,50,40,70,70v20,30,35,67,46,110v11,43,16,90,16,142"},"1":{"d":"222,0r0,-585r-138,0r0,-75r220,0r0,660r-82,0","w":499},"2":{"d":"46,0r0,-39r160,-200r44,-57r41,-59v9,-13,17,-26,23,-37v6,-11,10,-22,14,-32v4,-10,6,-20,8,-30v2,-10,3,-21,3,-32v0,-34,-9,-60,-25,-78v-16,-18,-39,-27,-70,-27v-23,0,-44,5,-63,14v-9,5,-9,5,-17,9v-5,3,-10,7,-16,12r-22,18r-33,29r-50,-57v7,-7,14,-13,21,-18r19,-15v28,-22,55,-38,82,-48v27,-10,55,-15,86,-15v53,0,94,16,124,47v30,31,45,75,45,130v0,13,0,26,-2,37v-2,11,-5,22,-8,32v-7,21,-19,44,-36,72v-17,28,-35,55,-55,80r-151,189r277,0r0,75r-399,0"},"3":{"d":"409,-206v0,30,-6,58,-17,84v-11,26,-26,50,-46,69v-20,19,-43,34,-70,45v-27,11,-56,17,-87,17v-12,0,-23,0,-33,-1v-10,-1,-20,-4,-30,-7v-10,-3,-22,-8,-34,-13v-12,-5,-25,-11,-40,-19r32,-70v29,15,50,25,66,31v16,6,32,8,48,8v18,0,35,-3,50,-10v15,-7,27,-16,38,-28v11,-12,20,-26,26,-43v6,-17,10,-35,10,-54v0,-34,-11,-61,-32,-81v-21,-20,-50,-30,-87,-30r-44,0r0,-57v12,-5,22,-9,31,-13v9,-4,16,-8,23,-12v7,-4,13,-10,19,-15v6,-5,12,-12,18,-19v13,-15,23,-30,30,-47v7,-17,10,-33,10,-49v0,-23,-6,-42,-18,-55v-12,-13,-30,-20,-51,-20v-9,0,-17,1,-24,2v-7,1,-15,4,-23,8v-8,4,-18,10,-28,17r-37,27r-44,-56v17,-13,17,-13,29,-21v8,-6,14,-12,21,-16v7,-4,13,-7,18,-10v5,-3,11,-5,17,-8v27,-11,56,-16,89,-16v42,0,76,13,101,38v25,25,38,58,38,99v0,18,-2,35,-7,50v-5,15,-12,31,-22,47r-13,18v-4,5,-8,10,-13,15v-5,5,-10,9,-16,14v-6,5,-13,10,-22,16v38,5,69,23,91,53v22,30,33,67,33,112"},"4":{"d":"298,-497r-176,258r176,0r0,-258xm373,-170r0,170r-75,0r0,-170r-271,0r0,-50r296,-440r50,0r0,421r82,0r0,69r-82,0"},"5":{"d":"413,-213v0,33,-5,63,-15,91v-10,28,-24,51,-42,71v-18,20,-39,36,-64,47v-25,11,-53,17,-82,17v-23,0,-46,-3,-68,-9v-9,-2,-17,-4,-24,-6v-7,-2,-13,-6,-20,-9v-7,-3,-14,-7,-22,-11v-12,-6,-11,-7,-26,-16r38,-69v14,9,26,15,36,21v10,6,19,11,28,14v9,3,17,6,25,7v8,1,17,2,26,2v19,0,37,-4,53,-11v16,-7,30,-17,41,-30v11,-13,20,-28,27,-46v7,-18,10,-36,10,-57v0,-71,-31,-117,-94,-137v-9,-3,-18,-6,-26,-8v-8,-2,-16,-3,-26,-4v-10,-1,-21,-2,-34,-2r-46,0r-7,0r0,-302r289,0r0,75r-208,0r0,158v23,1,44,3,60,5v16,2,30,5,43,9v13,4,23,9,33,15v10,6,20,12,30,21v43,38,65,93,65,164"},"6":{"d":"378,-208v0,-38,-9,-68,-26,-89v-17,-21,-41,-32,-72,-32v-17,0,-38,3,-62,8v-24,5,-48,13,-75,22v4,159,46,239,127,239v15,0,30,-4,43,-12v13,-8,25,-17,35,-30v10,-13,17,-30,22,-48v5,-18,8,-37,8,-58xm460,-215v0,33,-4,63,-14,91v-10,28,-23,54,-40,74v-17,20,-38,36,-61,48v-23,12,-49,17,-77,17v-67,0,-120,-27,-156,-80v-36,-53,-54,-129,-54,-228v0,-61,6,-113,20,-157v14,-44,36,-85,66,-121v23,-28,52,-50,85,-67v11,-5,22,-10,33,-14v11,-4,22,-6,35,-8v13,-2,27,-3,43,-4v16,-1,35,-2,56,-2r20,1r0,73r-9,0v-19,0,-37,1,-51,2v-14,1,-26,2,-38,4v-12,2,-23,4,-33,8v-10,4,-21,9,-32,15v-11,5,-20,12,-29,19v-9,7,-18,16,-26,25v-7,9,-13,18,-18,27v-5,9,-10,20,-14,31v-4,11,-7,24,-10,39v-3,15,-7,32,-10,53v32,-11,60,-19,84,-24v24,-5,49,-7,72,-7v49,0,88,17,116,50v28,33,42,78,42,135"},"7":{"d":"339,-302v-9,25,-18,49,-27,70r-26,57v-6,13,-12,27,-18,39r-22,40v0,0,-12,21,-28,47v-16,26,-15,26,-36,62r-69,-44r29,-47v8,-13,16,-24,21,-33v8,-14,17,-31,27,-50r28,-60r28,-62v0,0,14,-31,24,-56r95,-246r-277,0r0,-75r371,0r0,50"},"8":{"d":"362,-152v0,-17,-3,-32,-10,-45v-7,-13,-21,-27,-40,-44r-70,-62r-58,63v-19,21,-33,39,-40,53v-7,14,-11,29,-11,46v0,25,10,47,31,63v21,16,48,24,81,24v34,0,62,-9,84,-27v22,-18,33,-42,33,-71xm332,-537v0,-21,-8,-39,-24,-53v-16,-14,-37,-21,-61,-21v-27,0,-49,7,-65,23v-16,16,-24,37,-24,62v0,13,3,26,8,37v5,11,14,23,26,36r52,56r45,-48v13,-13,23,-29,31,-46v8,-17,12,-33,12,-46xm450,-164v0,27,-6,51,-16,74v-10,23,-24,42,-42,58v-18,16,-41,29,-67,38v-26,9,-55,13,-86,13v-27,0,-53,-4,-77,-12v-24,-8,-44,-19,-61,-33v-17,-14,-31,-32,-41,-51v-10,-19,-14,-40,-14,-63v0,-11,1,-23,4,-34v3,-11,9,-22,16,-34v7,-12,16,-24,28,-38v12,-14,26,-29,43,-46r55,-54r-68,-63v-17,-15,-29,-32,-38,-53v-9,-21,-14,-42,-14,-64v0,-23,5,-43,14,-62v9,-19,22,-36,38,-50v16,-14,36,-24,58,-32v22,-8,46,-12,72,-12v48,0,86,13,115,40v29,27,43,62,43,106v0,23,-4,44,-12,62v-8,18,-22,37,-42,57r-58,59r70,57v15,13,28,24,38,35v10,11,19,22,25,32v6,10,10,22,13,33v3,11,4,24,4,37"},"9":{"d":"367,-352v-4,-159,-46,-239,-127,-239v-15,0,-30,3,-43,11v-13,8,-25,19,-35,32v-10,13,-17,28,-22,46v-5,18,-8,38,-8,59v0,38,9,68,26,89v17,21,41,32,72,32v17,0,38,-3,62,-8v24,-5,48,-13,75,-22xm452,-358v0,61,-6,113,-20,158v-14,45,-36,85,-66,120v-24,29,-52,52,-84,67v-11,5,-23,9,-34,13v-11,4,-22,7,-35,9v-13,2,-27,4,-43,5v-16,1,-35,1,-56,1r-20,0r0,-74r10,0v19,0,36,0,50,-1v14,-1,28,-3,40,-5v12,-2,22,-5,32,-9v10,-4,20,-8,31,-14v21,-10,40,-25,55,-44v7,-9,13,-19,18,-28v5,-9,10,-19,14,-30v4,-11,8,-24,11,-39v3,-15,6,-32,9,-53v-32,11,-60,19,-84,24v-24,5,-49,8,-72,8v-49,0,-88,-17,-116,-50v-28,-33,-42,-78,-42,-135v0,-33,4,-64,14,-92v10,-28,23,-52,40,-73v17,-21,38,-37,62,-48v24,-11,49,-17,76,-17v67,0,120,26,156,79v36,53,54,129,54,228"},":":{"d":"182,-45v0,16,-5,30,-16,41v-11,11,-25,16,-40,16v-16,0,-29,-5,-40,-16v-11,-11,-17,-25,-17,-41v0,-15,6,-28,17,-39v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,24,16,39xm182,-409v0,16,-5,30,-16,41v-11,11,-25,16,-40,16v-16,0,-29,-5,-40,-16v-11,-11,-17,-25,-17,-41v0,-15,6,-28,17,-39v11,-11,24,-17,40,-17v15,0,29,6,40,17v11,11,16,24,16,39","w":251},";":{"d":"176,-36v0,15,-3,33,-8,53v-4,15,-9,31,-16,45r-30,59r-14,24r-44,0v5,-11,10,-20,12,-27v4,-10,3,-10,10,-30v3,-7,4,-13,6,-18v2,-5,3,-10,4,-14v1,-4,3,-8,4,-13v1,-5,3,-10,4,-17r-43,-108v11,-7,20,-12,28,-14v8,-2,18,-4,30,-4v38,0,57,21,57,64xm183,-409v0,16,-6,30,-17,41v-11,11,-24,16,-40,16v-15,0,-29,-5,-40,-16v-11,-11,-16,-25,-16,-41v0,-15,5,-28,16,-39v11,-11,25,-17,40,-17v16,0,29,6,40,17v11,11,17,24,17,39","w":251},"\u037e":{"d":"176,-36v0,15,-3,33,-8,53v-4,15,-9,31,-16,45r-30,59r-14,24r-44,0v5,-11,10,-20,12,-27v4,-10,3,-10,10,-30v3,-7,4,-13,6,-18v2,-5,3,-10,4,-14v1,-4,3,-8,4,-13v1,-5,3,-10,4,-17r-43,-108v11,-7,20,-12,28,-14v8,-2,18,-4,30,-4v38,0,57,21,57,64xm183,-409v0,16,-6,30,-17,41v-11,11,-24,16,-40,16v-15,0,-29,-5,-40,-16v-11,-11,-16,-25,-16,-41v0,-15,5,-28,16,-39v11,-11,25,-17,40,-17v16,0,29,6,40,17v11,11,17,24,17,39","w":251},"<":{"d":"39,-210r0,-54r472,-210r0,63r-396,174r396,174r0,63","w":550},"=":{"d":"25,-134r0,-57r500,0r0,57r-500,0xm25,-273r0,-57r500,0r0,57r-500,0","w":550},">":{"d":"39,0r0,-63r396,-174r-396,-174r0,-63r472,210r0,54","w":550},"?":{"d":"203,-45v0,16,-6,30,-17,41v-11,11,-24,16,-39,16v-16,0,-30,-5,-41,-16v-11,-11,-16,-25,-16,-41v0,-15,5,-28,16,-39v11,-11,25,-17,41,-17v15,0,28,6,39,17v11,11,17,24,17,39xm365,-446v0,26,-3,48,-9,66v-6,18,-18,35,-33,50v-7,7,-13,12,-19,17v-6,5,-12,9,-18,11v-6,2,-14,3,-22,4v-8,1,-18,2,-29,2r-51,0r0,107r-75,0r0,-176r151,0v11,-15,18,-28,22,-39v4,-11,5,-24,5,-40v0,-29,-5,-56,-15,-81v-10,-25,-22,-46,-40,-65v-18,-19,-39,-36,-64,-48v-25,-12,-53,-20,-84,-24r25,-76v15,3,27,5,38,8v11,3,21,5,29,8v8,3,16,7,23,10v7,3,15,7,23,12v22,13,42,28,59,46v17,18,32,39,45,61v13,22,22,46,29,71v7,25,10,50,10,76","w":418},"A":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0","w":595},"B":{"d":"445,-182v0,-39,-13,-68,-37,-89v-24,-21,-59,-31,-104,-31r-113,0r0,233r113,0v30,0,52,-1,67,-5v15,-4,28,-11,39,-20v11,-9,20,-22,26,-38v6,-16,9,-33,9,-50xm420,-491v0,-33,-9,-58,-27,-76v-9,-9,-19,-16,-32,-19v-13,-3,-32,-5,-57,-5r-113,0r0,214r107,0v23,0,41,-3,54,-7v13,-4,25,-11,36,-22v21,-21,32,-50,32,-85xm532,-176v0,26,-4,50,-13,72v-9,22,-21,40,-37,56v-16,16,-34,28,-56,36v-22,8,-46,12,-73,12r-244,0r0,-660r214,0v32,0,57,3,77,9v20,6,38,17,55,32v16,15,29,34,38,55v9,21,14,43,14,66v0,36,-10,67,-30,94v-20,27,-48,46,-83,58v44,9,78,28,102,57v24,29,36,67,36,113","w":591},"C":{"d":"541,-547v-25,-17,-51,-30,-76,-38v-25,-8,-54,-12,-86,-12v-35,0,-67,6,-97,19v-30,13,-55,31,-76,54v-21,23,-37,50,-49,82v-12,32,-18,66,-18,104v0,41,6,79,18,113v12,34,29,63,51,87v22,24,50,43,82,56v32,13,66,19,105,19v28,0,54,-2,77,-7v23,-5,48,-13,75,-24r23,64v-10,5,-19,9,-26,12v-7,3,-14,6,-21,8r-20,6v0,0,-14,4,-22,6v-17,4,-33,6,-47,8v-14,2,-29,3,-44,3v-50,0,-96,-8,-138,-25v-42,-17,-77,-41,-107,-72v-30,-31,-53,-68,-70,-110v-17,-42,-25,-88,-25,-139v0,-48,9,-93,26,-134v17,-41,40,-77,70,-107v30,-30,64,-55,104,-72v40,-17,85,-26,132,-26v45,0,86,7,124,22v15,5,26,10,36,16r40,25","w":605},"D":{"d":"575,-334v0,-37,-6,-71,-19,-102v-13,-31,-31,-59,-54,-82v-23,-23,-50,-41,-82,-54v-32,-13,-67,-19,-104,-19r-125,0r0,522r125,0v43,0,79,-5,106,-14v27,-9,51,-25,72,-46v12,-13,23,-27,33,-43v10,-16,18,-34,25,-52v7,-18,13,-36,17,-55v4,-19,6,-37,6,-55xm661,-333v0,43,-8,86,-23,127v-15,41,-37,77,-66,110v-30,35,-64,59,-102,74v-38,15,-85,22,-142,22r-219,0r0,-660r220,0v48,0,92,8,133,24v41,16,76,39,106,68v30,29,52,64,68,104v16,40,25,84,25,131","w":711},"E":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0","w":539},"F":{"d":"191,-591r0,226r239,0r0,70r-239,0r0,295r-82,0r0,-660r371,0r0,69r-289,0","w":522},"G":{"d":"616,-25r-28,10v0,0,-15,5,-20,6v-23,7,-49,13,-79,17v-30,4,-59,5,-87,5v-50,0,-96,-9,-139,-27v-43,-18,-79,-41,-111,-72v-32,-31,-57,-67,-75,-109v-18,-42,-27,-87,-27,-136v0,-49,8,-95,26,-136v18,-41,43,-77,74,-107v31,-30,67,-55,110,-72v43,-17,89,-25,139,-25v23,0,48,1,73,4v25,3,47,6,64,11v15,4,28,8,38,13v10,5,24,12,42,22r-31,68v-8,-5,-15,-8,-21,-11r-14,-7v-19,-8,-41,-14,-66,-19v-25,-5,-50,-7,-77,-7v-47,0,-86,6,-118,19v-32,13,-61,35,-86,65v-21,24,-37,51,-48,81v-11,30,-17,62,-17,95v0,40,8,77,22,111v14,34,34,62,60,86v26,24,55,44,90,58v35,14,74,21,115,21v17,0,32,-1,47,-3v15,-2,35,-6,62,-11r0,-220r82,0r0,270","w":708},"H":{"d":"580,0r0,-302r-389,0r0,302r-82,0r0,-660r82,0r0,283r389,0r0,-283r82,0r0,660r-82,0","w":771},"I":{"d":"109,0r0,-660r82,0r0,660r-82,0","w":300},"J":{"d":"191,19r-11,37v0,0,-6,19,-10,28v-4,9,-8,18,-13,26v-5,8,-10,17,-17,27v-9,14,-9,13,-17,25v-5,8,-11,15,-17,22v-6,7,-13,14,-20,22v-7,8,-16,17,-27,27r-53,-45r28,-32r20,-24v6,-7,10,-14,14,-20v4,-6,8,-12,11,-19v9,-19,17,-42,22,-67v5,-25,8,-53,8,-83r0,-603r82,0r0,679","w":300},"K":{"d":"109,0r0,-660r82,0r0,660r-82,0xm461,0r-264,-333r258,-327r94,0r-258,321r271,339r-101,0","w":571},"L":{"d":"109,0r0,-660r82,0r0,591r295,0r0,69r-377,0","w":495},"M":{"d":"687,0r0,-578r-5,22v-1,6,-3,12,-5,18r-7,18v0,0,-3,9,-8,23r-195,497r-75,0r-182,-484v-4,-9,-8,-18,-10,-24r-6,-18v0,0,-2,-13,-4,-20v-2,-7,-4,-16,-6,-26r0,572r-75,0r0,-660r113,0r201,528v5,13,8,23,9,28v1,5,3,13,4,22v2,-13,4,-23,5,-28v1,-5,4,-13,7,-22r208,-528r113,0r0,660r-82,0","w":878},"N":{"d":"555,6r-333,-515v-1,-3,-4,-5,-6,-9v-2,-4,-4,-9,-7,-14v-3,-5,-3,-4,-5,-8v-1,-2,-2,-5,-3,-7v-2,-3,-4,-7,-5,-10v-1,-3,-3,-8,-5,-15r0,572r-82,0r0,-660r107,0r327,503v2,3,3,3,5,7v2,3,3,6,4,9v2,5,4,9,5,12v1,3,4,9,7,18v1,1,2,3,2,5v0,2,1,3,2,5r0,-559r82,0r0,666r-95,0","w":759},"O":{"d":"623,-330v0,-37,-6,-72,-19,-105v-13,-33,-30,-61,-52,-85v-22,-24,-47,-44,-76,-58v-29,-14,-61,-22,-94,-22v-33,0,-65,8,-94,22v-29,14,-55,34,-77,58v-22,24,-39,52,-52,85v-13,33,-19,68,-19,105v0,37,6,73,19,106v13,33,30,62,52,86v22,24,48,44,77,58v29,14,61,21,94,21v33,0,65,-7,94,-21v29,-14,54,-34,76,-58v22,-24,39,-53,52,-86v13,-33,19,-69,19,-106xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137","w":763},"P":{"d":"443,-460v0,-44,-12,-78,-37,-103v-10,-10,-22,-17,-38,-21v-16,-4,-37,-7,-64,-7r-113,0r0,272v11,1,21,2,30,3v9,1,16,1,23,2v7,1,13,1,18,1r17,0v36,0,65,-4,86,-13v24,-10,43,-27,57,-51v14,-24,21,-52,21,-83xm528,-465v0,35,-5,66,-16,93v-11,27,-28,51,-48,70v-20,19,-45,34,-74,44v-29,10,-61,16,-97,16r-19,0v0,0,-13,-1,-20,-2v-7,-1,-16,-1,-26,-2v-10,-1,-22,-3,-37,-4r0,250r-82,0r0,-660r207,0v40,0,72,4,96,12v24,8,46,21,65,40v34,35,51,82,51,143","w":556},"Q":{"d":"624,-330v0,-37,-6,-72,-19,-105v-13,-33,-30,-61,-52,-85v-22,-24,-48,-44,-77,-58v-29,-14,-61,-22,-94,-22v-33,0,-65,8,-94,22v-29,14,-55,34,-77,58v-22,24,-40,52,-53,85v-13,33,-19,68,-19,105v0,37,6,73,19,106v13,33,30,62,52,86v22,24,48,44,78,58v30,14,61,21,94,21v33,0,65,-7,94,-21v29,-14,55,-34,77,-58v22,-24,39,-53,52,-86v13,-33,19,-69,19,-106xm713,-329v0,43,-6,84,-19,122v-13,38,-32,71,-56,101v-24,30,-53,56,-87,76v-34,20,-72,34,-114,42v7,9,12,16,16,20v6,6,6,6,17,18v19,19,37,35,54,48v9,7,16,13,24,18v8,5,16,10,25,15v9,5,18,10,29,15v16,8,17,7,39,17r-46,63r-42,-23r-33,-19v0,0,-19,-12,-28,-18v-9,-6,-18,-14,-28,-22v-11,-9,-22,-18,-31,-26v-9,-8,-19,-16,-27,-25r-25,-28v0,0,-18,-22,-28,-35r-14,-17r-25,-5v0,0,-12,-2,-20,-4v-6,-1,-10,-2,-15,-3v-5,-1,-10,-3,-16,-5v-31,-11,-60,-28,-86,-49v-26,-21,-48,-46,-67,-75v-19,-29,-34,-60,-44,-95v-10,-35,-16,-70,-16,-107v0,-49,8,-95,24,-137v16,-42,40,-79,70,-109v30,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,71v30,31,52,67,68,109v16,42,25,87,25,137","w":763},"R":{"d":"430,-481v0,-42,-12,-72,-36,-91v-5,-4,-10,-8,-15,-10v-5,-2,-12,-4,-19,-6v-7,-2,-15,-2,-25,-2v-10,0,-22,-1,-37,-1r-107,0r0,239r107,0v88,0,132,-43,132,-129xm461,0r-182,-283r-88,0r0,283r-82,0r0,-660r201,0v20,0,38,0,53,2v15,2,29,4,41,8v12,4,23,10,33,16v10,6,20,14,29,23v16,15,29,34,38,57v9,23,14,47,14,72v0,26,-5,51,-15,75v-10,24,-24,45,-43,62v-13,13,-28,24,-42,31v-14,7,-33,14,-58,19r195,295r-94,0","w":584},"S":{"d":"442,-548v-17,-10,-31,-17,-40,-22v-9,-5,-18,-9,-29,-12v-13,-4,-28,-7,-45,-10v-17,-3,-33,-4,-46,-4v-38,0,-69,9,-92,26v-23,17,-34,39,-34,67v0,12,2,23,6,33v4,10,13,20,25,31v12,11,29,22,50,35v21,13,49,28,82,46v47,25,81,47,104,67v16,13,28,31,37,52v9,21,14,44,14,68v0,57,-19,102,-58,135v-39,33,-92,49,-159,49v-45,0,-85,-7,-122,-22v-9,-4,-9,-4,-17,-8v-6,-3,-12,-5,-18,-9v-10,-6,-10,-6,-22,-14r-28,-18r42,-65v19,13,34,21,44,27v10,6,21,11,32,16v30,11,62,17,95,17v39,0,70,-9,92,-26v22,-17,33,-42,33,-74v0,-20,-3,-36,-10,-47v-11,-21,-30,-39,-56,-54v-5,-3,-18,-10,-36,-19v-18,-9,-43,-23,-74,-40v-50,-27,-86,-54,-108,-81v-22,-27,-33,-58,-33,-92v0,-26,5,-50,15,-72v10,-22,25,-40,44,-55v19,-15,43,-27,70,-35v27,-8,56,-13,89,-13v19,0,38,1,57,4v19,3,37,7,54,12v7,2,12,5,18,7v6,2,12,5,18,8v6,3,13,6,20,10r24,14","w":534},"T":{"d":"310,-591r0,591r-82,0r0,-591r-220,0r0,-69r522,0r0,69r-220,0","w":539},"U":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434","w":700},"V":{"d":"318,17r-50,0r-260,-677r88,0r195,515v3,8,6,19,7,32v0,-11,2,-21,6,-32r188,-515r82,0","w":583},"W":{"d":"606,13r-51,0r-119,-312r-120,312r-44,0r-264,-673r88,0r202,545r104,-271r-104,-274r75,0r66,173r67,-173r68,0r-101,262r108,282r194,-544r81,0","w":864},"X":{"d":"469,0r-182,-269r-184,269r-95,0r231,-337r-220,-323r94,0r175,254r173,-254r93,0r-221,324r230,336r-94,0","w":572},"Y":{"d":"310,-308r0,308r-82,0r0,-302r-220,-358r88,0r177,283r182,-283r87,0","w":550},"Z":{"d":"42,0r0,-38r382,-553r-382,0r0,-69r494,0r0,44r-382,547r400,0r0,69r-512,0","w":595},"[":{"d":"73,245r0,-905r164,0r0,56r-88,0r0,793r88,0r0,56r-164,0","w":250},"\\":{"d":"295,245r-252,-905r69,0r252,905r-69,0","w":409},"]":{"d":"13,245r0,-56r88,0r0,-793r-88,0r0,-56r164,0r0,905r-164,0","w":250},"_":{"d":"0,57r0,-57r500,0r0,57r-500,0"},"`":{"d":"189,-519r-113,-163r88,0r94,163r-69,0","w":383},"a":{"d":"258,-409r-82,214r163,0xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0","w":516},"b":{"d":"364,-138v0,-13,-2,-24,-7,-35v-5,-11,-12,-19,-21,-26v-12,-9,-26,-14,-42,-15r-38,0r-88,0r0,151r88,0r30,0v7,0,13,0,18,-1v5,-1,10,-2,14,-4v4,-2,7,-3,12,-6v11,-7,19,-16,25,-27v6,-11,9,-24,9,-37xm345,-349v0,-24,-7,-41,-20,-51v-13,-10,-36,-15,-69,-15r-88,0r0,138r81,0v12,0,22,-1,29,-1v7,0,13,-1,18,-2v5,-1,9,-2,12,-4v3,-2,7,-5,12,-8v17,-13,25,-32,25,-57xm444,-130v0,19,-4,36,-11,52v-7,16,-18,30,-31,42v-13,12,-30,20,-48,26v-18,6,-38,10,-60,10r-202,0r0,-478r176,0v103,0,154,39,154,118v0,28,-8,52,-23,72v-15,20,-35,32,-60,37v32,5,58,19,77,41v19,22,28,48,28,80","w":495},"c":{"d":"448,-383v-11,-8,-20,-13,-26,-17v-6,-4,-13,-8,-22,-11v-11,-3,-22,-7,-36,-9v-14,-2,-28,-3,-42,-3v-27,0,-51,4,-74,13v-23,9,-42,20,-58,36v-16,16,-29,35,-38,57v-9,22,-13,46,-13,72v0,28,5,55,15,79v10,24,24,45,42,63v18,17,39,30,62,38v23,8,53,12,88,12v11,0,21,0,30,-1v9,-1,17,-2,25,-4v8,-2,16,-5,24,-8v8,-3,17,-7,27,-12r22,56v-27,11,-52,19,-74,24v-22,5,-46,7,-69,7v-40,0,-77,-7,-110,-19v-33,-12,-62,-29,-86,-51v-24,-22,-43,-48,-56,-79v-13,-31,-20,-64,-20,-101v0,-35,7,-68,20,-98v13,-30,31,-56,55,-78v24,-22,52,-39,84,-51v32,-12,68,-19,106,-19v31,0,59,4,84,11v25,7,50,19,76,35","w":516},"d":{"d":"479,-240v0,-28,-6,-55,-17,-80v-11,-25,-27,-45,-47,-62v-15,-13,-31,-21,-50,-26v-19,-5,-45,-7,-78,-7r-94,0r0,352r88,0v35,0,62,-2,81,-7v19,-5,37,-15,54,-28v19,-15,35,-36,46,-62v11,-26,17,-53,17,-80xm559,-239v0,31,-7,62,-19,93v-12,31,-29,57,-50,80v-21,23,-48,39,-80,50v-32,11,-70,16,-117,16r-176,0r0,-478r176,0v46,0,85,5,117,16v32,11,59,27,81,50v10,10,19,22,27,36v8,14,16,28,22,43v6,15,11,31,14,47v3,16,5,32,5,47","w":609},"e":{"d":"117,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63r-302,0","w":478},"f":{"d":"193,-415r0,145r182,0r0,63r-182,0r0,207r-76,0r0,-478r296,0r0,63r-220,0","w":463},"g":{"d":"524,-19r-22,7v-10,2,-10,2,-17,4v-21,5,-45,10,-71,13v-26,3,-50,5,-70,5v-41,0,-79,-6,-114,-19v-35,-13,-65,-31,-90,-53v-25,-22,-46,-48,-60,-78v-14,-30,-21,-64,-21,-100v0,-35,7,-68,21,-98v14,-30,33,-56,58,-78v25,-22,54,-40,88,-52v34,-12,71,-18,111,-18v19,0,39,1,59,3v20,2,38,5,51,8v12,3,23,7,32,11v9,4,22,9,39,18r-32,63v-15,-9,-26,-15,-33,-18v-15,-7,-34,-13,-55,-17v-21,-4,-40,-6,-59,-6v-29,0,-55,5,-79,14v-24,9,-46,21,-64,37v-18,16,-32,35,-42,57v-10,22,-15,46,-15,72v0,27,6,53,17,76v11,23,26,43,46,60v20,17,42,30,68,40v26,10,55,15,86,15v12,0,25,-1,38,-2v13,-1,31,-4,54,-8r0,-151r76,0r0,195","w":624},"h":{"d":"495,0r0,-214r-302,0r0,214r-76,0r0,-478r76,0r0,201r302,0r0,-201r75,0r0,478r-75,0","w":687},"i":{"d":"117,0r0,-478r76,0r0,478r-76,0","w":310},"j":{"d":"174,13r-12,29v-3,8,-6,17,-10,24r-12,20v-4,6,-7,12,-12,19v-6,9,-6,9,-12,17v-4,5,-7,10,-12,15v-7,8,-7,7,-16,17v-9,10,-9,10,-21,22r-53,-40r20,-24v0,0,10,-8,16,-16v4,-5,7,-10,10,-14v3,-4,7,-10,10,-15v10,-16,18,-34,22,-54v4,-20,6,-45,6,-76r0,-415r76,0r0,491","w":291},"k":{"d":"117,0r0,-478r76,0r0,478r-76,0xm400,0r-201,-239r195,-239r101,0r-202,239r214,239r-107,0","w":534},"l":{"d":"117,0r0,-478r76,0r0,415r226,0r0,63r-302,0","w":436},"m":{"d":"570,0r0,-381v-3,13,-6,23,-8,29v-2,6,-6,15,-11,27r-147,325r-60,0r-132,-305v-6,-13,-10,-23,-12,-31v-2,-8,-5,-19,-7,-32r0,368r-76,0r0,-478r97,0r155,353v3,7,5,13,6,17v1,4,2,11,3,21v1,-7,3,-13,4,-17v1,-4,3,-12,6,-21r161,-353r96,0r0,478r-75,0","w":763},"n":{"d":"482,6r-270,-345v-8,-11,-14,-19,-18,-25v-4,-6,-6,-12,-7,-19r0,383r-70,0r0,-478r76,0r270,340v5,5,9,12,12,20v3,8,6,17,7,24r0,-384r69,0r0,484r-69,0","w":668},"o":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,36,-7,69,-20,99v-13,30,-32,57,-55,79v-23,22,-51,39,-84,51v-33,12,-68,19,-106,19v-39,0,-74,-7,-106,-19v-32,-12,-61,-29,-84,-51v-23,-22,-42,-49,-55,-79v-13,-30,-20,-63,-20,-99v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99","w":647},"p":{"d":"382,-334v0,-29,-8,-49,-25,-62v-17,-13,-44,-19,-82,-19r-82,0r0,162v6,1,17,3,34,6v17,3,36,4,58,4v29,0,53,-9,71,-25v18,-16,26,-38,26,-66xm458,-331v0,22,-4,42,-12,61v-8,19,-19,35,-34,48v-15,13,-32,24,-52,31v-20,7,-43,11,-67,11v-19,0,-39,-1,-58,-3v-19,-2,-33,-4,-42,-7r0,190r-76,0r0,-478r166,0v57,0,101,13,131,38v30,25,44,61,44,109","w":495},"q":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,61,-18,112,-53,155v-35,43,-85,72,-150,89r19,22v5,6,11,12,16,17v5,5,11,10,17,14r20,13v7,5,14,9,20,13v6,4,13,8,20,12v7,4,14,7,22,10v12,5,13,5,31,12r-41,53v-14,-5,-26,-11,-36,-15v-10,-4,-20,-8,-28,-12v-8,-4,-17,-10,-24,-14v-7,-4,-15,-9,-23,-14v-10,-7,-19,-13,-28,-20v-9,-7,-17,-15,-25,-24r-26,-28r-30,-35v-21,-4,-38,-7,-53,-11v-15,-4,-28,-8,-40,-14v-12,-6,-23,-13,-33,-20v-10,-7,-21,-16,-32,-27v-23,-23,-41,-50,-54,-80v-13,-30,-19,-62,-19,-96v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99","w":647},"r":{"d":"374,-339v0,-28,-10,-49,-29,-63v-4,-3,-8,-6,-11,-8v-3,-2,-8,-2,-13,-3v-5,-1,-12,-1,-20,-1v-8,0,-19,-1,-33,-1r-75,0r0,157r75,0r30,0v0,0,14,-2,20,-3v6,-1,12,-3,16,-6v4,-3,9,-6,14,-11v17,-15,26,-36,26,-61xm388,0r-126,-195r-69,0r0,195r-76,0r0,-478r161,0v58,0,102,12,132,35v30,23,46,57,46,101v0,37,-10,68,-30,94v-20,26,-48,42,-82,47r132,201r-88,0","w":513},"s":{"d":"375,-383v-13,-9,-23,-15,-31,-18v-8,-3,-17,-7,-29,-11v-24,-7,-46,-10,-67,-10v-31,0,-55,6,-72,16v-17,10,-26,24,-26,43v0,11,2,19,6,25v3,5,7,10,12,14v5,4,11,9,20,14v9,5,20,12,34,19r57,28v23,11,42,21,57,31v15,10,27,22,36,32v9,10,16,21,20,33v4,12,6,25,6,40v0,43,-15,76,-46,100v-31,24,-74,36,-128,36v-37,0,-70,-5,-98,-15v-10,-4,-19,-8,-28,-13v-9,-5,-23,-12,-40,-23r34,-65v15,11,28,20,36,25v8,5,17,9,26,13v25,11,52,16,79,16v28,0,49,-6,65,-17v16,-11,24,-27,24,-47v0,-16,-4,-30,-12,-41v-8,-11,-23,-21,-42,-30r-87,-42v-37,-17,-64,-36,-81,-57v-17,-21,-25,-44,-25,-69v0,-40,16,-72,47,-95v31,-23,74,-35,127,-35v33,0,62,4,89,12v11,3,21,6,29,10r35,18","w":464},"t":{"d":"262,-415r0,415r-75,0r0,-415r-170,0r0,-63r415,0r0,63r-170,0","w":448},"u":{"d":"513,-195v0,47,-5,85,-16,111v-11,26,-29,47,-54,62v-18,11,-39,19,-64,26v-25,7,-49,10,-72,10v-23,0,-47,-3,-72,-10v-25,-7,-46,-15,-65,-26v-25,-15,-44,-36,-54,-62v-10,-26,-15,-63,-15,-111r0,-283r75,0r0,296v0,88,44,132,131,132v87,0,131,-44,131,-132r0,-296r75,0r0,283","w":614},"v":{"d":"273,12r-40,0r-208,-490r82,0r144,345v3,7,5,14,5,22v1,-5,1,-8,2,-11v1,-3,2,-7,4,-11r134,-345r82,0","w":503},"w":{"d":"503,9r-40,0r-98,-216r-93,216r-36,0r-211,-487r82,0r151,371r75,-176r-82,-195r70,0r50,113r44,-113r69,0r-82,189r82,182r145,-371r75,0","w":729},"x":{"d":"383,0r-138,-182r-132,182r-88,0r176,-245r-167,-233r92,0r125,170r126,-170r88,0r-176,233r183,245r-89,0","w":497},"y":{"d":"270,-214r0,214r-75,0r0,-214r-170,-264r88,0r126,195r126,-195r88,0","w":478},"z":{"d":"50,0r0,-44r289,-371r-289,0r0,-63r396,0r0,44r-289,371r302,0r0,63r-409,0","w":509},"{":{"d":"330,243v-47,0,-82,-11,-102,-31v-20,-20,-30,-54,-30,-101r0,-220v0,-75,-25,-113,-76,-113r-36,0r0,-55r36,0v51,0,76,-38,76,-113r0,-220v0,-47,10,-82,30,-102v20,-20,55,-30,102,-30r56,0r0,63r-44,0v-11,0,-21,3,-32,8v-11,5,-19,13,-24,22v-5,7,-8,17,-10,27v-2,10,-3,25,-3,44r0,201r0,25v0,8,0,15,-1,20v-2,19,-9,36,-20,50v-11,14,-24,24,-39,27r-25,6r24,4v17,3,32,14,44,32v3,5,6,11,8,16v2,5,5,11,6,18v1,7,2,14,2,23v0,9,1,21,1,34r0,202v0,19,1,33,3,43v2,10,5,19,10,27v5,9,13,16,24,22v11,6,21,8,32,8r44,0r0,63r-56,0","w":409},"|":{"d":"92,239r0,-968r70,0r0,968r-70,0","w":250},"}":{"d":"291,-222v-25,0,-44,10,-57,29v-13,19,-19,47,-19,84r0,220v0,47,-11,81,-31,101v-20,20,-54,31,-101,31r-56,0r0,-63r44,0v11,0,21,-3,32,-8v11,-5,19,-13,24,-22v5,-7,9,-16,11,-26v2,-10,2,-25,2,-44r0,-202r0,-25v0,-7,0,-14,1,-20v2,-19,8,-37,19,-51v11,-14,25,-23,40,-26r25,-5r-24,-5v-17,-3,-32,-14,-44,-32v-3,-5,-7,-11,-9,-16v-2,-5,-4,-11,-5,-18v-1,-7,-3,-15,-3,-24r0,-33r0,-201v0,-19,0,-34,-2,-44v-2,-10,-6,-19,-11,-27v-5,-9,-13,-15,-24,-21v-11,-6,-21,-9,-32,-9r-44,0r0,-63r56,0v47,0,81,10,101,30v20,20,31,55,31,102r0,220v0,75,25,113,76,113r36,1r0,54r-36,0","w":409},"~":{"d":"530,-232v-17,12,-30,20,-40,26v-10,6,-21,12,-35,17v-32,11,-62,17,-91,17v-11,0,-21,-1,-30,-2v-9,-1,-18,-2,-28,-5v-10,-3,-20,-6,-32,-11r-41,-19v-15,-7,-29,-12,-39,-15v-10,-3,-21,-5,-32,-5v-20,0,-40,4,-62,13v-22,9,-43,21,-63,36r-29,-42r21,-17v6,-5,12,-9,18,-12r18,-9v0,0,13,-7,21,-10v30,-12,57,-18,81,-18v11,0,24,1,37,4v13,3,28,9,43,16r50,22v15,7,29,11,39,14v10,3,21,4,32,4v21,0,42,-4,64,-11v11,-4,21,-8,30,-13v9,-5,20,-13,35,-24","w":544},"\u00c4":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm255,-758v0,13,-5,25,-15,35v-10,10,-22,15,-36,15v-13,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,35,-15v14,0,26,5,36,15v10,10,15,22,15,36xm440,-758v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36","w":595},"\u00c5":{"d":"298,-572r-108,302r215,0xm341,-788v0,-11,-4,-22,-12,-30v-8,-8,-18,-12,-29,-12v-11,0,-22,4,-30,12v-8,8,-12,19,-12,30v0,11,4,21,12,29v8,8,19,12,30,12v11,0,21,-4,29,-12v8,-8,12,-18,12,-29xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm379,-788v0,22,-8,41,-23,56v-15,15,-34,23,-56,23v-22,0,-40,-8,-56,-23v-16,-15,-24,-34,-24,-56v0,-22,8,-40,24,-56v16,-16,34,-24,56,-24v22,0,41,8,56,24v15,16,23,34,23,56","w":595},"\u00c7":{"d":"541,-547v-25,-17,-51,-30,-76,-38v-25,-8,-54,-12,-86,-12v-35,0,-67,6,-97,19v-30,13,-55,31,-76,54v-21,23,-37,50,-49,82v-12,32,-18,66,-18,104v0,41,6,79,18,113v12,34,29,63,51,87v22,24,50,43,82,56v32,13,66,19,105,19v28,0,54,-2,77,-7v23,-5,48,-13,75,-24r23,64v-17,8,-30,14,-40,18v-10,4,-21,7,-34,10v-35,9,-67,13,-97,13r-4,0r-36,58r9,0v51,0,77,25,77,76v0,28,-9,50,-27,67v-18,17,-44,25,-76,25v-16,0,-32,-2,-48,-5v-16,-3,-35,-9,-59,-18r25,-51v19,8,34,14,45,17v11,3,22,5,31,5v12,0,22,-4,30,-11v8,-7,11,-15,11,-26v0,-15,-5,-26,-15,-32v-10,-6,-28,-9,-52,-9r-31,0r58,-97v-11,-2,-21,-4,-30,-5v-9,-1,-16,-3,-23,-5v-7,-2,-14,-4,-21,-7r-22,-9v-29,-13,-55,-31,-79,-52v-24,-21,-44,-46,-60,-74v-16,-28,-29,-58,-38,-90v-9,-32,-14,-66,-14,-101v0,-48,9,-93,26,-134v17,-41,40,-77,70,-107v30,-30,64,-55,104,-72v40,-17,85,-26,132,-26v45,0,86,7,124,22v15,5,26,10,36,16r40,25","w":605},"\u00c9":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm346,-715r-70,0r95,-118r88,0","w":539},"\u00d1":{"d":"555,6r-333,-515v-1,-3,-4,-5,-6,-9v-2,-4,-4,-9,-7,-14v-3,-5,-3,-4,-5,-8v-1,-2,-2,-5,-3,-7v-2,-3,-4,-7,-5,-10v-1,-3,-3,-8,-5,-15r0,572r-82,0r0,-660r107,0r327,503v2,3,3,3,5,7v2,3,3,6,4,9v2,5,4,9,5,12v1,3,4,9,7,18v1,1,2,3,2,5v0,2,1,3,2,5r0,-559r82,0r0,666r-95,0xm581,-749v-11,11,-20,19,-27,23v-7,4,-16,9,-29,14v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27v-12,-6,-12,-5,-20,-9v-5,-2,-9,-4,-13,-6v-4,-2,-8,-4,-11,-4r-12,0v-13,0,-24,3,-35,8v-7,3,-13,5,-17,8r-28,18r-32,-44v17,-11,29,-18,36,-22v7,-4,16,-9,25,-13v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,8,2,13,4v5,2,12,5,20,9v8,4,18,10,31,17v11,6,21,10,29,13v8,3,15,4,23,4v7,0,13,-1,19,-2v6,-1,11,-2,17,-5v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":759},"\u00d6":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm333,-760v0,14,-5,26,-15,36v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-36v0,-13,5,-25,15,-35v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,35xm535,-760v0,14,-5,26,-15,36v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-36v0,-13,5,-25,15,-35v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,35","w":763},"\u00dc":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm306,-762v0,14,-4,26,-14,36v-10,10,-22,14,-36,14v-14,0,-26,-4,-36,-14v-10,-10,-14,-22,-14,-36v0,-14,4,-26,14,-36v10,-10,22,-14,36,-14v14,0,26,4,36,14v10,10,14,22,14,36xm508,-762v0,14,-4,26,-14,36v-10,10,-22,14,-36,14v-14,0,-26,-4,-36,-14v-10,-10,-14,-22,-14,-36v0,-14,4,-26,14,-36v10,-10,22,-14,36,-14v14,0,26,4,36,14v10,10,14,22,14,36","w":700},"\u00e1":{"d":"258,-409r-82,214r163,0xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0xm275,-518r-69,0r94,-164r88,0","w":516},"\u00e0":{"d":"258,-409r-82,214r163,0xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0xm252,-519r-113,-163r88,0r94,163r-69,0","w":516},"\u00e2":{"d":"258,-409r-82,214r163,0xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0xm341,-519r-76,-107r-75,107r-68,0r112,-163r63,0r114,163r-70,0","w":516},"\u00e4":{"d":"258,-409r-82,214r163,0xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0xm225,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm400,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":516},"\u00e3":{"d":"258,-409r-82,214r163,0xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0xm450,-575v-11,11,-20,19,-27,23v-7,4,-16,9,-29,14v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27v-12,-6,-11,-5,-19,-9v-5,-2,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-12,0v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-18,36,-22v7,-4,16,-9,25,-13v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,-1,18,-2v6,-1,12,-2,18,-5v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":516},"\u00e5":{"d":"258,-409r-82,214r163,0xm301,-596v0,-11,-4,-22,-12,-30v-8,-8,-18,-12,-29,-12v-11,0,-22,4,-30,12v-8,8,-12,19,-12,30v0,11,4,21,12,29v8,8,19,12,30,12v11,0,21,-4,29,-12v8,-8,12,-18,12,-29xm415,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0r195,490r-75,0xm339,-596v0,22,-8,41,-23,56v-15,15,-34,23,-56,23v-22,0,-40,-8,-56,-23v-16,-15,-24,-34,-24,-56v0,-22,8,-40,24,-56v16,-16,34,-24,56,-24v22,0,41,8,56,24v15,16,23,34,23,56","w":516},"\u00e7":{"d":"448,-383v-11,-8,-20,-13,-26,-17v-6,-4,-13,-8,-22,-11v-11,-3,-22,-7,-36,-9v-14,-2,-28,-3,-42,-3v-27,0,-51,4,-74,13v-23,9,-42,20,-58,36v-16,16,-29,35,-38,57v-9,22,-13,46,-13,72v0,28,5,55,15,79v10,24,24,45,42,63v18,17,39,30,62,38v23,8,53,12,88,12v11,0,21,0,30,-1v9,-1,17,-2,25,-4v8,-2,16,-5,24,-8v8,-3,17,-7,27,-12r22,56v-15,7,-28,11,-37,14v-9,3,-21,6,-34,9v-8,2,-15,4,-21,5v-6,1,-11,1,-16,2v-5,1,-10,2,-16,2r-19,0r-32,56v24,0,42,7,55,20v13,13,20,32,20,56v0,27,-8,49,-26,66v-18,17,-41,26,-69,26v-7,0,-13,0,-19,-1v-6,-1,-12,-1,-19,-3v-7,-2,-15,-5,-25,-8v-14,-4,-15,-4,-36,-11r25,-50v19,8,34,14,45,17v11,3,22,4,32,4v11,0,20,-3,28,-10v8,-7,12,-16,12,-27v0,-15,-6,-25,-16,-31v-10,-6,-27,-10,-51,-10r-31,0r58,-98v-34,-5,-64,-15,-92,-29v-28,-14,-52,-32,-71,-53v-19,-21,-35,-46,-45,-74v-10,-28,-15,-58,-15,-91v0,-35,7,-68,20,-98v13,-30,31,-56,55,-78v24,-22,52,-39,84,-51v32,-12,68,-19,106,-19v31,0,59,4,84,11v25,7,50,19,76,35","w":516},"\u00e9":{"d":"117,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63r-302,0xm303,-518r-69,0r94,-164r88,0","w":478},"\u00e8":{"d":"117,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63r-302,0xm253,-519r-113,-163r88,0r94,163r-69,0","w":478},"\u00ea":{"d":"117,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63r-302,0xm345,-519r-76,-107r-75,107r-68,0r112,-163r63,0r114,163r-70,0","w":478},"\u00eb":{"d":"117,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63r-302,0xm231,-570v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm406,-570v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":478},"\u00ed":{"d":"117,0r0,-478r76,0r0,478r-76,0xm168,-518r-70,0r95,-164r88,0","w":310},"\u00ec":{"d":"117,0r0,-478r76,0r0,478r-76,0xm148,-519r-113,-163r88,0r94,163r-69,0","w":310},"\u00ee":{"d":"117,0r0,-478r76,0r0,478r-76,0xm234,-519r-75,-107r-75,107r-68,0r112,-163r62,0r115,163r-71,0","w":310},"\u00ef":{"d":"117,0r0,-478r76,0r0,478r-76,0xm133,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm283,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":310},"\u00f1":{"d":"482,6r-270,-345v-8,-11,-14,-19,-18,-25v-4,-6,-6,-12,-7,-19r0,383r-70,0r0,-478r76,0r270,340v5,5,9,12,12,20v3,8,6,17,7,24r0,-384r69,0r0,484r-69,0xm522,-575v-11,11,-20,19,-27,23v-7,4,-16,9,-29,14v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27v-12,-6,-11,-5,-19,-9v-5,-2,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-12,0v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-18,36,-22v7,-4,16,-9,25,-13v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,-1,18,-2v6,-1,12,-2,18,-5v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":668},"\u00f3":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,36,-7,69,-20,99v-13,30,-32,57,-55,79v-23,22,-51,39,-84,51v-33,12,-68,19,-106,19v-39,0,-74,-7,-106,-19v-32,-12,-61,-29,-84,-51v-23,-22,-42,-49,-55,-79v-13,-30,-20,-63,-20,-99v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99xm347,-518r-69,0r94,-164r88,0","w":647},"\u00f2":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,36,-7,69,-20,99v-13,30,-32,57,-55,79v-23,22,-51,39,-84,51v-33,12,-68,19,-106,19v-39,0,-74,-7,-106,-19v-32,-12,-61,-29,-84,-51v-23,-22,-42,-49,-55,-79v-13,-30,-20,-63,-20,-99v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99xm300,-519r-113,-163r88,0r94,163r-69,0","w":647},"\u00f4":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,36,-7,69,-20,99v-13,30,-32,57,-55,79v-23,22,-51,39,-84,51v-33,12,-68,19,-106,19v-39,0,-74,-7,-106,-19v-32,-12,-61,-29,-84,-51v-23,-22,-42,-49,-55,-79v-13,-30,-20,-63,-20,-99v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99xm405,-519r-76,-107r-75,107r-68,0r112,-163r63,0r114,163r-70,0","w":647},"\u00f6":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,36,-7,69,-20,99v-13,30,-32,57,-55,79v-23,22,-51,39,-84,51v-33,12,-68,19,-106,19v-39,0,-74,-7,-106,-19v-32,-12,-61,-29,-84,-51v-23,-22,-42,-49,-55,-79v-13,-30,-20,-63,-20,-99v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99xm253,-572v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm488,-572v0,13,-4,25,-14,35v-10,10,-22,15,-36,15v-14,0,-26,-5,-36,-15v-10,-10,-14,-22,-14,-35v0,-14,4,-26,14,-36v10,-10,22,-15,36,-15v14,0,26,5,36,15v10,10,14,22,14,36","w":647},"\u00f5":{"d":"508,-239v0,-26,-5,-50,-14,-73v-9,-23,-22,-42,-38,-58v-16,-16,-36,-30,-59,-39v-23,-9,-47,-14,-73,-14v-26,0,-50,5,-73,14v-23,9,-42,23,-59,39v-17,16,-30,35,-39,58v-9,23,-14,47,-14,73v0,26,5,50,14,73v9,23,22,42,39,59v17,17,36,30,59,39v23,9,47,14,73,14v26,0,50,-5,73,-14v23,-9,43,-22,59,-39v16,-17,29,-36,38,-59v9,-23,14,-47,14,-73xm589,-239v0,36,-7,69,-20,99v-13,30,-32,57,-55,79v-23,22,-51,39,-84,51v-33,12,-68,19,-106,19v-39,0,-74,-7,-106,-19v-32,-12,-61,-29,-84,-51v-23,-22,-42,-49,-55,-79v-13,-30,-20,-63,-20,-99v0,-36,7,-69,20,-99v13,-30,32,-57,55,-79v23,-22,52,-39,84,-51v32,-12,67,-19,106,-19v38,0,73,7,106,19v33,12,61,29,84,51v23,22,42,49,55,79v13,30,20,63,20,99xm510,-574v-11,11,-20,18,-27,22v-7,4,-16,10,-29,15v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27r-19,-10v-5,-2,-10,-4,-14,-6v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-19,36,-23v7,-4,16,-8,25,-12v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,0,18,-1v6,-1,12,-3,18,-6v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":647},"\u00fa":{"d":"513,-195v0,47,-5,85,-16,111v-11,26,-29,47,-54,62v-18,11,-39,19,-64,26v-25,7,-49,10,-72,10v-23,0,-47,-3,-72,-10v-25,-7,-46,-15,-65,-26v-25,-15,-44,-36,-54,-62v-10,-26,-15,-63,-15,-111r0,-283r75,0r0,296v0,88,44,132,131,132v87,0,131,-44,131,-132r0,-296r75,0r0,283xm332,-518r-69,0r94,-164r88,0","w":614},"\u00f9":{"d":"513,-195v0,47,-5,85,-16,111v-11,26,-29,47,-54,62v-18,11,-39,19,-64,26v-25,7,-49,10,-72,10v-23,0,-47,-3,-72,-10v-25,-7,-46,-15,-65,-26v-25,-15,-44,-36,-54,-62v-10,-26,-15,-63,-15,-111r0,-283r75,0r0,296v0,88,44,132,131,132v87,0,131,-44,131,-132r0,-296r75,0r0,283xm284,-519r-113,-163r88,0r94,163r-69,0","w":614},"\u00fb":{"d":"513,-195v0,47,-5,85,-16,111v-11,26,-29,47,-54,62v-18,11,-39,19,-64,26v-25,7,-49,10,-72,10v-23,0,-47,-3,-72,-10v-25,-7,-46,-15,-65,-26v-25,-15,-44,-36,-54,-62v-10,-26,-15,-63,-15,-111r0,-283r75,0r0,296v0,88,44,132,131,132v87,0,131,-44,131,-132r0,-296r75,0r0,283xm387,-519r-76,-107r-75,107r-68,0r112,-163r62,0r115,163r-70,0","w":614},"\u00fc":{"d":"513,-195v0,47,-5,85,-16,111v-11,26,-29,47,-54,62v-18,11,-39,19,-64,26v-25,7,-49,10,-72,10v-23,0,-47,-3,-72,-10v-25,-7,-46,-15,-65,-26v-25,-15,-44,-36,-54,-62v-10,-26,-15,-63,-15,-111r0,-283r75,0r0,296v0,88,44,132,131,132v87,0,131,-44,131,-132r0,-296r75,0r0,283xm267,-571v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm445,-571v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36","w":614},"\u00a2":{"d":"275,-397v-2,0,-3,-1,-5,-1r-5,0v-19,0,-38,5,-55,14v-17,9,-31,20,-44,36v-13,16,-23,35,-30,56v-7,21,-11,43,-11,67v0,57,17,101,50,130v5,5,10,9,15,12v8,5,7,5,22,15xm431,-35v-19,11,-33,20,-44,25v-11,5,-23,9,-38,13v-11,3,-24,5,-39,7v-15,2,-29,3,-42,3v-5,0,-10,-1,-13,-1v-3,0,-8,0,-14,-1r-16,83r-44,0r17,-92v-3,-1,-5,-2,-6,-2v-1,0,-3,-1,-4,-2r-27,-12v-7,-3,-13,-7,-19,-10v-6,-3,-12,-6,-16,-10v-6,-6,-6,-6,-15,-14v-45,-43,-68,-101,-68,-173v0,-35,5,-67,17,-97v12,-30,28,-55,48,-77v20,-22,45,-39,73,-52v28,-13,58,-19,90,-19r7,0v3,0,7,0,10,1r16,-84r44,0r-16,89v11,3,20,6,28,8v8,2,14,5,20,8v6,3,14,6,20,10r22,15r-43,61v-12,-11,-21,-18,-29,-22v-8,-4,-19,-8,-32,-12r-63,333v5,1,10,3,13,3r13,0v23,0,43,-2,59,-8v16,-6,33,-16,52,-30","w":444},"\u00a3":{"d":"591,-616v-4,-9,-8,-17,-12,-23v-4,-6,-9,-11,-14,-14v-5,-3,-12,-6,-19,-7v-7,-1,-16,-2,-27,-2v-32,0,-59,12,-81,36v-7,7,-12,13,-17,20v-5,7,-9,15,-13,24v-4,9,-8,19,-12,32v-6,19,-5,19,-13,47r-88,340r189,0r-25,69r-189,0r-40,148r-15,45v-3,9,-5,16,-7,21v-2,5,-3,9,-4,10v-2,4,-2,4,-4,9v-2,3,-4,7,-7,12v5,-1,10,-2,14,-2r10,0r11,0v4,0,10,1,15,2v8,1,15,2,21,3v6,1,11,1,15,2v1,1,6,2,15,4v9,2,22,7,39,12v23,6,46,9,67,9v35,0,52,-13,52,-38v0,-7,-1,-15,-3,-24v-1,-3,-1,-7,-2,-11v-1,-4,-2,-10,-3,-16r75,-11r9,43v0,0,2,19,2,28v0,31,-12,55,-34,71v-22,16,-55,24,-98,24v-30,0,-57,-3,-80,-9r-69,-16v-11,-3,-23,-5,-34,-6v-11,-1,-23,-2,-36,-2r-8,0v-12,0,-24,1,-35,2v-11,1,-22,3,-33,5v-3,1,-11,3,-23,6r-48,11v-3,1,-8,3,-13,4v-8,2,-8,1,-19,3r13,-75v21,-3,38,-6,49,-9v11,-3,22,-9,33,-16v17,-12,30,-28,41,-47v11,-19,21,-46,30,-79r29,-113r-126,0r19,-57r126,-12r100,-359v8,-29,14,-52,20,-70v6,-18,12,-32,18,-43v6,-11,12,-21,18,-29v6,-8,14,-15,23,-23v17,-14,37,-25,60,-33v23,-8,48,-12,74,-12v17,0,31,1,43,4v12,3,22,7,32,13v10,6,19,14,26,24v7,10,13,22,20,37","w":576},"\u00b4":{"d":"232,-497r-69,0r94,-163r88,0","w":383},"\u00a8":{"d":"166,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm341,-572v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":406},"\u00c6":{"d":"367,-608r-164,338r164,0r0,-338xm367,0r0,-195r-195,0r-94,195r-95,0r333,-660r51,0r371,0r0,69r-294,0r0,220r243,0r0,69r-243,0r0,233r300,0r0,69r-377,0","w":794},"\u00d8":{"d":"628,-329v0,-34,-6,-68,-18,-101v-12,-33,-29,-61,-50,-83r-332,383v29,25,56,43,80,54v24,11,50,16,79,16v33,0,64,-8,93,-22v29,-14,54,-33,76,-58v22,-25,39,-54,52,-86v13,-32,20,-66,20,-103xm526,-546v-19,-17,-40,-30,-66,-40v-26,-10,-51,-15,-76,-15v-32,0,-63,7,-92,21v-29,14,-54,34,-76,59v-22,25,-39,53,-52,86v-13,33,-19,67,-19,103v0,29,5,58,14,88v9,30,22,55,37,76xm718,-330v0,50,-8,96,-25,138v-17,42,-39,78,-69,108v-30,30,-65,55,-106,72v-41,17,-87,25,-136,25v-21,0,-40,-1,-56,-3v-16,-2,-31,-5,-46,-10v-15,-5,-31,-12,-46,-21v-15,-9,-33,-20,-53,-34r-11,-9r-99,114r-37,-31r102,-118v-16,-23,-30,-43,-40,-61v-10,-18,-18,-35,-24,-52v-6,-17,-12,-35,-14,-53v-2,-18,-3,-38,-3,-60v0,-51,9,-99,25,-141v16,-42,38,-78,68,-109v30,-31,65,-54,106,-71v41,-17,86,-26,135,-26v19,0,37,0,51,2v14,2,28,5,42,9v14,4,28,10,43,17v15,7,32,17,51,28r6,4r93,-105r37,32r-92,105v32,34,56,72,73,114v17,42,25,87,25,136","w":768},"\u00b1":{"d":"38,0r0,-57r474,0r0,57r-474,0xm303,-249r0,169r-56,0r0,-169r-209,0r0,-56r209,0r0,-169r56,0r0,169r209,0r0,56r-209,0","w":550},"\u00a5":{"d":"335,-346r139,0r0,57r-164,0r0,69r164,0r0,57r-164,0r0,163r-82,0r0,-163r-163,0r0,-57r163,0r0,-69r-163,0r0,-57r138,0r-195,-314r88,0r177,283r182,-283r87,0","w":550},"\u00e6":{"d":"321,-418r-121,218r121,0r0,-218xm326,1r0,-135r-162,0r-77,135r-87,0r283,-479r43,0r296,0r0,63r-221,0r0,138r183,0r0,63r-182,0r0,151r225,0r0,64r-301,0","w":686},"\u00f8":{"d":"508,-238v0,-25,-4,-49,-13,-72v-9,-23,-20,-42,-35,-55r-241,281v12,6,22,11,31,15v9,4,18,7,26,9v8,2,16,3,24,4v8,1,16,2,26,2v25,0,50,-4,72,-14v22,-10,42,-24,58,-40v16,-16,29,-36,38,-58v9,-22,14,-46,14,-72xm430,-391v-33,-21,-68,-32,-107,-32v-26,0,-51,5,-73,14v-22,9,-41,22,-58,39v-17,17,-30,36,-39,58v-9,22,-14,47,-14,73v0,25,4,50,13,73v9,23,22,42,38,57xm589,-238v0,35,-7,68,-20,98v-13,30,-32,57,-55,79v-23,22,-52,39,-84,51v-32,12,-67,19,-105,19v-32,0,-60,-3,-84,-9v-24,-6,-46,-17,-66,-31r-66,76r-30,-25r63,-73v-55,-51,-83,-113,-83,-186v0,-36,6,-69,19,-99v13,-30,32,-57,56,-79v24,-22,52,-39,84,-51v32,-12,67,-19,105,-19v61,0,112,14,153,42r53,-62r30,23r-52,64v25,19,45,46,60,78v15,32,22,67,22,104","w":647},"\u00bf":{"d":"331,239v-15,-3,-27,-5,-38,-8v-11,-3,-21,-5,-29,-8v-8,-3,-16,-5,-23,-9r-24,-13v-21,-12,-41,-27,-59,-45v-18,-18,-32,-39,-44,-61v-12,-22,-22,-46,-29,-71v-7,-25,-10,-51,-10,-77v0,-26,3,-48,9,-66v6,-18,18,-34,33,-49v7,-7,13,-14,19,-18v6,-4,12,-8,18,-10v6,-2,14,-3,22,-4v8,-1,18,-2,29,-2r51,0r0,-108r75,0r0,176r-152,0v-11,15,-18,29,-21,40v-3,11,-5,24,-5,40v0,29,5,55,15,80v10,25,22,47,40,66v18,19,39,36,64,48v25,12,53,20,84,24xm350,-454v0,16,-5,29,-16,40v-11,11,-25,17,-41,17v-15,0,-28,-6,-39,-17v-11,-11,-17,-24,-17,-40v0,-15,6,-29,17,-40v11,-11,24,-16,39,-16v16,0,30,5,41,16v11,11,16,25,16,40","w":418},"\u00a1":{"d":"89,238r6,-540r75,0r7,540r-88,0xm189,-453v0,15,-6,28,-17,39v-11,11,-24,17,-39,17v-15,0,-29,-6,-40,-17v-11,-11,-17,-24,-17,-39v0,-16,6,-30,17,-41v11,-11,25,-16,40,-16v15,0,28,5,39,16v11,11,17,25,17,41","w":264},"\u00ab":{"d":"40,-226r226,-189r0,82r-132,107r132,107r0,81xm279,-226r226,-189r0,82r-132,107r132,107r0,81","w":560},"\u00bb":{"d":"54,-38r0,-81r133,-107r-133,-107r0,-82r227,189xm293,-38r0,-81r132,-107r-132,-107r0,-82r227,189","w":560},"\u00a0":{},"\u00c0":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm270,-715r-114,-118r88,0r95,118r-69,0","w":595},"\u00c3":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm497,-758v-11,11,-20,18,-27,22v-7,4,-16,10,-29,15v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27r-20,-10v-5,-2,-9,-4,-13,-6v-4,-2,-8,-2,-11,-2v-3,0,-7,-1,-12,-1v-13,0,-24,3,-35,8v-7,3,-13,5,-17,8r-28,18r-32,-44v17,-11,29,-19,36,-23v7,-4,16,-8,25,-12v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,8,2,13,4v5,2,12,5,20,9v8,4,18,10,31,17v11,6,21,10,29,13v8,3,15,4,23,4v7,0,13,0,19,-1v6,-1,11,-3,17,-6v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":595},"\u00d5":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm574,-745v-11,11,-20,19,-27,23v-7,4,-16,9,-29,14v-24,11,-47,16,-70,16v-24,0,-53,-9,-87,-27v-12,-6,-11,-5,-19,-9v-5,-2,-10,-4,-14,-6v-4,-2,-8,-4,-11,-4r-12,0v-13,0,-24,3,-35,8v-7,3,-12,5,-16,8v-6,4,-7,4,-29,18r-32,-44v17,-11,29,-18,36,-22v7,-4,16,-9,25,-13v20,-10,41,-15,62,-15v5,0,9,0,12,1v5,1,10,1,14,2v4,1,9,2,14,4v5,2,11,5,19,9v8,4,18,10,31,17v11,6,20,10,28,13v8,3,16,4,24,4v7,0,12,-1,18,-2v6,-1,12,-2,18,-5v6,-3,13,-6,21,-11v8,-5,17,-11,28,-19","w":763},"\u00f7":{"d":"335,-48v0,17,-6,31,-17,42v-11,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-42v0,-16,6,-30,17,-41v11,-11,25,-17,42,-17v16,0,30,6,41,17v11,11,17,25,17,41xm25,-208r0,-57r500,0r0,57r-500,0xm335,-427v0,16,-6,30,-17,41v-11,11,-25,17,-41,17v-17,0,-31,-6,-42,-17v-11,-11,-17,-25,-17,-41v0,-17,6,-31,17,-42v11,-11,25,-17,42,-17v16,0,30,6,41,17v11,11,17,25,17,42","w":550},"\u00ff":{"d":"270,-214r0,214r-75,0r0,-214r-170,-264r88,0r126,195r126,-195r88,0xm206,-573v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36xm381,-573v0,13,-5,25,-15,35v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,22,15,36","w":478},"\u00c2":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm376,-696r-76,-67r-75,67r-68,0r112,-117r63,0r114,117r-70,0","w":595},"\u00ca":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm385,-696r-75,-67r-76,67r-67,0r111,-117r63,0r115,117r-71,0","w":539},"\u00c1":{"d":"298,-572r-108,302r215,0xm499,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0r245,679r-88,0xm337,-715r-70,0r95,-118r88,0","w":595},"\u00cb":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm266,-761v0,14,-5,26,-15,36v-10,10,-22,15,-35,15v-14,0,-26,-5,-36,-15v-10,-10,-15,-22,-15,-36v0,-14,5,-25,15,-35v10,-10,22,-15,36,-15v13,0,25,5,35,15v10,10,15,21,15,35xm451,-761v0,14,-5,26,-15,36v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-36v0,-14,5,-25,15,-35v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,21,15,35","w":539},"\u00c8":{"d":"109,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69r-380,0xm293,-715r-113,-118r88,0r94,118r-69,0","w":539},"\u00cd":{"d":"109,0r0,-660r82,0r0,660r-82,0xm165,-715r-69,0r94,-118r88,0","w":300},"\u00ce":{"d":"109,0r0,-660r82,0r0,660r-82,0xm230,-696r-76,-67r-75,67r-68,0r112,-117r63,0r114,117r-70,0","w":300},"\u00cf":{"d":"109,0r0,-660r82,0r0,660r-82,0xm127,-758v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36xm279,-758v0,13,-5,25,-15,35v-10,10,-21,15,-35,15v-14,0,-25,-5,-35,-15v-10,-10,-15,-22,-15,-35v0,-14,5,-26,15,-36v10,-10,21,-15,35,-15v14,0,25,5,35,15v10,10,15,22,15,36","w":300},"\u00cc":{"d":"109,0r0,-660r82,0r0,660r-82,0xm141,-715r-113,-118r88,0r94,118r-69,0","w":300},"\u00d3":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm413,-715r-69,0r94,-118r88,0","w":763},"\u00d4":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm456,-696r-75,-67r-76,67r-68,0r112,-117r63,0r115,117r-71,0","w":763},"\u00d2":{"d":"623,-330v0,-36,-6,-70,-19,-102v-13,-32,-30,-61,-52,-85v-22,-24,-48,-43,-77,-57v-29,-14,-60,-22,-93,-22v-33,0,-64,8,-93,22v-29,14,-55,33,-77,57v-22,24,-39,53,-52,85v-13,32,-20,66,-20,102v0,36,7,70,20,102v13,32,30,62,52,86v22,24,48,43,77,57v29,14,60,21,93,21v33,0,64,-8,93,-22v29,-14,55,-33,77,-57v22,-24,39,-53,52,-85v13,-32,19,-66,19,-102xm713,-330v0,50,-9,96,-25,138v-16,42,-38,77,-68,108v-30,31,-66,55,-106,72v-40,17,-84,25,-132,25v-48,0,-92,-8,-133,-25v-41,-17,-76,-41,-105,-72v-29,-31,-52,-66,-69,-108v-17,-42,-25,-88,-25,-138v0,-49,8,-95,25,-137v17,-42,40,-79,69,-109v29,-30,64,-53,105,-70v41,-17,85,-26,133,-26v48,0,92,9,132,26v40,17,76,40,106,70v30,30,52,67,68,109v16,42,25,88,25,137xm341,-715r-113,-118r88,0r94,118r-69,0","w":763},"\u00da":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm379,-715r-69,0r94,-118r88,0","w":700},"\u00db":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm432,-696r-75,-67r-76,67r-68,0r112,-117r63,0r115,117r-71,0","w":700},"\u00d9":{"d":"608,-226v0,44,-6,80,-18,108v-12,28,-31,53,-58,76v-50,41,-110,61,-181,61v-71,0,-132,-20,-182,-61v-28,-23,-47,-48,-59,-76v-12,-28,-18,-65,-18,-108r0,-434r82,0r0,409v0,21,1,37,2,51v1,14,2,26,5,36v3,10,6,20,11,28v5,8,12,16,20,25v34,38,80,57,138,57v58,0,104,-19,138,-57v8,-9,15,-17,20,-25v5,-8,8,-18,11,-28v3,-10,4,-22,5,-36v1,-14,2,-30,2,-51r0,-409r82,0r0,434xm349,-715r-114,-118r88,0r95,118r-69,0","w":700},"\u00af":{"d":"68,-539r0,-63r273,0r0,63r-273,0","w":406},"\u02c9":{"d":"68,-539r0,-63r273,0r0,63r-273,0","w":406},"\u00b8":{"d":"334,145v0,27,-8,48,-26,65v-18,17,-41,26,-69,26v-7,0,-13,0,-19,-1v-6,-1,-12,-2,-19,-3v-7,-1,-15,-3,-25,-6v-14,-4,-15,-5,-36,-12r25,-51v19,8,34,14,45,17v11,3,22,5,32,5v11,0,20,-4,28,-11v8,-7,12,-15,12,-26v0,-15,-6,-26,-16,-32v-10,-6,-27,-9,-50,-9r-32,0r57,-94r50,0r-31,56v23,0,41,6,54,19v13,13,20,32,20,57","w":444},"$":{"d":"393,-162v0,-24,-3,-40,-9,-49v-5,-7,-25,-25,-61,-54v-11,-9,-19,-13,-25,-13r0,215v29,-5,53,-17,70,-35v17,-18,25,-39,25,-64xm253,-597v-67,12,-101,44,-101,95v0,30,14,54,41,72v24,17,36,25,37,26v5,4,10,8,15,11v5,3,8,4,8,3r0,-207xm442,-548v-15,-9,-27,-16,-36,-20v-9,-4,-20,-9,-33,-14v-15,-5,-28,-10,-37,-12v-9,-2,-22,-3,-38,-4r0,230v5,3,9,6,12,8v3,2,6,4,9,5v27,15,48,28,65,39v17,11,30,19,38,26v16,13,29,29,38,50v9,21,14,44,14,68v0,27,-6,52,-16,76v-10,24,-25,44,-44,60v-8,7,-16,12,-23,17v-7,5,-15,9,-24,13v-9,4,-18,6,-29,9v-11,3,-25,5,-40,7r0,59r-44,0r-1,-56v-15,-1,-28,-2,-39,-3v-11,-1,-21,-2,-30,-4v-9,-2,-16,-3,-24,-6v-8,-3,-16,-6,-25,-9v-9,-4,-9,-4,-17,-8v-6,-3,-12,-5,-18,-9v-10,-6,-10,-6,-22,-14r-28,-18r42,-65r24,16v7,5,14,9,20,12v6,3,11,7,16,9v8,4,7,3,15,7v14,6,27,11,38,13v11,2,27,4,48,5r0,-240r-41,-24v-27,-15,-49,-30,-67,-43v-18,-13,-32,-26,-43,-40v-11,-14,-19,-28,-24,-42v-5,-14,-7,-29,-7,-46v0,-48,16,-87,47,-117v31,-30,76,-49,135,-56r1,-60r44,0r0,59v12,1,23,1,32,2v9,1,16,1,24,2v8,1,15,2,22,4v7,2,15,4,24,7v7,2,12,5,18,7v6,2,12,5,18,8v6,3,13,6,20,10r24,14","w":534},"!":{"d":"194,-44v0,15,-6,29,-17,40v-11,11,-25,17,-40,17v-15,0,-29,-6,-40,-17v-11,-11,-17,-25,-17,-40v0,-15,6,-29,17,-40v11,-11,25,-17,40,-17v15,0,29,6,40,17v11,11,17,25,17,40xm175,-195r-76,0r-6,-541r88,0","w":264}}});
;
// generic JS fixes

// various JavaScript object.
var Blueprint = {};

// jump to the value in a select drop down
Blueprint.go = function(e) {
  var destination = e.options[e.selectedIndex].value;
  if (destination && destination != 0) location.href = destination;
};

// prevent users from clicking a submit button twice
Blueprint.formCheck = function() {
  // only apply this to node and comment and new user registration forms
  var forms = $("#node-form>div>div>#edit-submit,#comment-form>div>#edit-submit,#user-register>div>#edit-submit");

  // insert the saving div now to cache it for better performance and to show the loading image
  $('<div id="saving"><p class="saving">Saving&hellip;</p></div>').insertAfter(forms);

  forms.click(function() {
    $(this).siblings("input:submit").hide();
    $(this).hide();
    $("#saving").show();

    var notice = function() {
      $('<p id="saving-notice">Not saving? Wait a few seconds, reload this page, and try again. Every now and then the internet hiccups too :-)</p>').appendTo("#saving").fadeIn();
    };

    // append notice if form saving isn't work, perhaps a timeout issue
    setTimeout(notice, 24000);
  });
};

// Global Killswitch.
if (Drupal.jsEnabled) {
  $(document).ready(Blueprint.formCheck);
}

var backgroundImages = [];
backgroundImages[0] = ['/sites/amigosdemonserrate.com/themes/amigosdemonserrate/assets/images/layout/background_01.jpg', '-420px', 30000];
backgroundImages[1] = ['/sites/amigosdemonserrate.com/themes/amigosdemonserrate/assets/images/layout/background_02.jpg', '-690px', 40000];
var backgroundImage = backgroundImages[Math.floor(Math.random()*backgroundImages.length)] 

$(document).ready(function(){
  /* initialize Cufon */
  Cufon.replace('#block-views-Welcome-block_1 .views-field-body, .page-title span', { fontFamily: 'Scala' });
  Cufon.replace('#header .menu .leaf a', { fontFamily: 'ScalaSans', hover: true });
  Cufon.replace('h2, div.sidebar h3, #header h3, #block-views-Blog-block_1 h3, #block-views-Events-block_1 h3, #footer h3, #block-views-Welcome-block_1 .views-field-view-node a, .read-more, button, ul.pager', { fontFamily: 'ScalaSansCaps' });
  
  $('#background_inner_wrapper').css('background-image', 'url(' + backgroundImage[0] + ')');
  // preload css images, will tridder $(window).load on completion
  $.preloadCssImages();

  // Image Gallery initialization
  // hide photos beyond first row( 3 per row )
	// for each list of photos
	$('.view-imagegallery .item-list ul').each(function(index) {
    initializePhotoList($(this));
  });

	// image gallery colorbox
	$('a.gallery-image').colorbox({
    title: function(){
      var group_title = $(this).parents().children('h3').text();
      var title = $(this).attr('title');
      return group_title + ': <strong>' + title + '</strong>';
    },
    transition:"fade",
    next:"",
    previous:"",
    current:"{current}/{total}"});


});

// start the background animation, triggered by the css preloader plugin
$(window).load(function () {
/*
  $('body').animate({opacity: 1}, 1000, function() {
    $(this).css('background-color','#E7DCC7');
  });
*/
  // animate background
  $('#background_inner_wrapper').animate({top: backgroundImage[1]}, backgroundImage[2], 'linear');
});

  // calculate gallery_more_text
	if ($('body').hasClass('i18n-en')) {
    gallery_more_text = 'Show more';
    gallery_less_text = 'Show less';
  } else {
    gallery_more_text = 'Mostrar mais';
    gallery_less_text = 'Mostrar menos';
  };
  
// initialize photo list state
function initializePhotoList(element) {
  // only if there are photos to hide
  if (element.children('li:gt(3)').size() > 0) {
	  // hide the 5th and above photos
    element.children(':gt(3)').hide();
    // append the control button
    element.parent().append('<a href="#" class="show-more" style="margin-bottom:20px;">Mostrar mais</a>');
    $('a.show-more').text(gallery_more_text);
    // attribute behaviour to control button
    element.parent().find('a.show-more').bind('click', function() {
      element.children('li:gt(3)').toggle('fast');
      if ($(this).text() == gallery_less_text) {
        $(this).text(gallery_more_text);
      } else {
        $(this).text(gallery_less_text);
      };
      return false;
    });
  };
};
;

