/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n>1)); }, 'strings': { "Unspecified error": "Erreur non spécifiée", "Your server has been successfully tested to support this feature.": "Le test a réussi. Votre serveur supporte cette fonctionnalité.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "La configuration de votre système ne supporte pas cette fonctionnalité. La \x3ca href=\"http://drupal.org/node/15365\"\x3epage du manuel sur les URLs simplifiées\x3c/a\x3e apporte une aide supplémentaire.", "Testing clean URLs...": "Test des URLs simplifiées...", "An error occurred. \n@uri\n@text": "Une erreur s\'est produite. \n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Une erreur s\'est produite. \n@uri\n(aucune information supplémentaire)", "An HTTP error @status occurred. \n@uri": "Une erreur HTTP @status s\'est produite. \n@uri", "Drag to re-order": "Cliquer-déposer pour ré-organiser", "Changes made in this table will not be saved until the form is submitted.": "Les modifications réalisées sur cette table ne seront enregistrés que lorsque le formulaire sera soumis.", "Select all rows in this table": "Sélectionner toutes les lignes du tableau", "Deselect all rows in this table": "Désélectionner toutes les lignes du tableau", "Split summary at cursor": "Créer un résumé à partir du curseur", "Join summary": "Fusionner le résumé et le corps du message", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "N\'oubliez pas de cliquer sur \x3cem\x3eEnregistrer les blocs\x3c/em\x3e pour confirmer les modifications apportées ici.", "Remove this item": "Supprimer cet élément", "An error occurred at ": "Une erreur s\'est produite à", "jQuery UI Tabs: Mismatching fragment identifier.": "Onglets d\'interface jQuery : identifiant de fragment ne correspondant pas.", "jQuery UI Tabs: Not enough arguments to add tab.": "Onglets d\'interface jQuery : pas assez d\'arguments pour ajouter l\'onglet." } };;
/**
 *  Hovertip - easy and elegant tooltips
 *  
 *  By Dave Cohen <http://dave-cohen.com>
 *  With ideas and and javascript code borrowed from many folks.
 *  (See URLS in the comments)
 *  
 *  Licensed under GPL. 
 *  Requires jQuery.js.  <http://jquery.com>, 
 *  which may be distributed under a different licence.
 *  
 *  $Date: 2008/05/09 21:52:18 $
 *  $Rev: $
 *  $Id: hovertip.js,v 1.4 2008/05/09 21:52:18 yogadex Exp $
 *  
 *  This plugin helps you create tooltips.  It supports:
 *  
 *  hovertips - these appear under the mouse when mouse is over the target
 *  element.
 *  
 *  clicktips - these appear in the document when the target element is
 *  clicked.
 *  
 *  You may define behaviors for additional types of tooltips.
 *  
 *  There are a variety of ways to add tooltips.  Each of the following is
 *  supported:
 *  
 *  <p>blah blah blah 
 *  <span>important term</span>
 *  <span class="hovertip">text that appears.</span> 
 *  blah blah blah</p>
 *  
 *  or,
 *  
 *  <p>blah blah blah 
 *  <span hovertip="termdefinition">important term</span>
 *  blah blah blah</p>
 *  <div id="termdefinition" class="hovertip"><h1>term definition</h1><p>the term means...</p></div>
 *  
 *  or, 
 *  
 *  <p>blah blah blah 
 *  <span id="term">important term</span>
 *  blah blah blah</p>
 *  <div target="term" class="hovertip"><h1>term definition</h1><p>the term means...</p></div>
 *  
 *  
 *  Hooks are available to customize both the behavior of activated tooltips,
 *  and the syntax used to mark them up.
 *  
 */


//// mouse events ////
/**
 * To make hovertips appear correctly we need the exact mouse position.
 * These functions make that possible.
 */

// use globals to track mouse position
var hovertipMouseX;
var hovertipMouseY;
function hovertipMouseUpdate(e) {
  var mouse = hovertipMouseXY(e);
  hovertipMouseX = mouse[0];
  hovertipMouseY = mouse[1];
};

// http://www.howtocreate.co.uk/tutorials/javascript/eventinfo
function hovertipMouseXY(e) {
  if( !e ) {
    if( window.event ) {
      //Internet Explorer
      e = window.event;
    } else {
      //total failure, we have no way of referencing the event
      return;
    }
  }
  if( typeof( e.pageX ) == 'number' ) {
    //most browsers
    var xcoord = e.pageX;
    var ycoord = e.pageY;
  } else if( typeof( e.clientX ) == 'number' ) {
    //Internet Explorer and older browsers
    //other browsers provide this, but follow the pageX/Y branch
    var xcoord = e.clientX;
    var ycoord = e.clientY;
    var badOldBrowser = ( window.navigator.userAgent.indexOf( 'Opera' ) + 1 ) ||
      ( window.ScriptEngine && ScriptEngine().indexOf( 'InScript' ) + 1 ) ||
      ( navigator.vendor == 'KDE' );
    if( !badOldBrowser ) {
      if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
        //IE 4, 5 & 6 (in non-standards compliant mode)
        xcoord += document.body.scrollLeft;
        ycoord += document.body.scrollTop;
      } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
        //IE 6 (in standards compliant mode)
        xcoord += document.documentElement.scrollLeft;
        ycoord += document.documentElement.scrollTop;
      }
    }
  } else {
    //total failure, we have no way of obtaining the mouse coordinates
    return;
  }
  return [xcoord, ycoord];
};



//// target selectors ////

/**
 * These selectors find the targets for a given tooltip element.  
 * Several methods are supported.  
 * 
 * You may write your own selector functions to customize.
 */

/**
 * For this model:
 * <span hovertip="ht1">target term</span>...
 * <div class="hovertip" id="ht1">tooltip text</div>
 */
targetSelectById = function(el, config) {
  var id;
  var selector;
  if (id = el.getAttribute('id')) {
    selector = '*[@'+config.attribute+'=\''+id+'\']';
    return $(selector);
  }
};

/**
 * For this model:
 * <span id="ht1">target term</span>...
 * <div class="hovertip" target="ht1">tooltip text</div>
 */
targetSelectByTargetAttribute = function(el, config) {
  target_list = el.getAttribute('target');
  if (target_list) {
    // use for attribute to specify targets
    target_ids = target_list.split(' ');
    var selector = '#' + target_ids.join(',#');
    return $(selector);
  }
};

/**
 * For this model:
 * <span>target term</span><span class="hovertip">tooltip text</span>
 */
targetSelectByPrevious = function(el, config) {
  sibling = el.previousSibling;
  // If the previous sibling is not an element, keep looking
  while (sibling && sibling.nodeType != 1)
    sibling = sibling.previousSibling;
    
  return $(sibling);
};

/**
 * Make all siblings targets.  Experimental.
 */
targetSelectBySiblings = function(el, config) {
  return $(el).siblings();
};

//// prepare tip elements ////

/**
 * The tooltip element needs special preparation.  You may define your own
 * prepare functions to customize the behavior.
 */

// adds a close link to clicktips
clicktipPrepareWithCloseLink = function(o, config) {
  return o.append("<a class='clicktip_close'><span>close</span></a>")
  .find('a.clicktip_close').click(function(e) {
      o.hide();
      return false;
    }).end(); 
};

// ensure that hovertips do not disappear when the mouse is over them.
// also position the hovertip as an absolutely positioned child of body.
hovertipPrepare = function(o, config) {
  return o.hover(function() {
      hovertipHideCancel(this);
    }, function() {
      hovertipHideLater(this);
    }).css('position', 'absolute').each(hovertipPosition);
};

// do not modify tooltips when preparing
hovertipPrepareNoOp = function(o, config) {
  return o;
};


//// manipulate tip elements /////
/**
 * A variety of functions to modify tooltip elements
 */

// move tooltips to body, so they are not descended from other absolutely
// positioned elements.
hovertipPosition = function(i) {
  document.body.appendChild(this);
};


hovertipIsVisible = function(el) {
  return (jQuery.css(el, 'display') != 'none');
};


// show the tooltip under the mouse.
// Introduce a delay, so tip appears only if cursor rests on target for more than an instant.
hovertipShowUnderMouse = function(el) {
  hovertipHideCancel(el);
  if (!hovertipIsVisible(el)) {
    el.ht.showing = // keep reference to timer
      window.setTimeout(function() {
          el.ht.tip.css({
              'position':'absolute',
                'z-index': '99',
                'top': hovertipMouseY + 'px',
                'left': hovertipMouseX + 'px'})
            .show();
        }, el.ht.config.showDelay);
  }
};

// do not hide
hovertipHideCancel = function(el) {
  if (el.ht.hiding) {
    window.clearTimeout(el.ht.hiding);
    el.ht.hiding = null;
  }  
};

// Hide a tooltip, but only after a delay.
// The delay allow the tip to remain when user moves mouse from target to tooltip
hovertipHideLater = function(el) {
  if (el.ht.showing) {
    window.clearTimeout(el.ht.showing);
    el.ht.showing = null;
  }
  if (el.ht.hiding) {
    window.clearTimeout(el.ht.hiding);
    el.ht.hiding = null;
  }
  el.ht.hiding = 
  window.setTimeout(function() {
      if (el.ht.hiding) {
        // fadeOut, slideUp do not work on Konqueror
        el.ht.tip.hide();
      }
    }, el.ht.config.hideDelay);
};


//// prepare target elements ////
/**
 * As we prepared the tooltip elements, the targets also need preparation.
 * 
 * You may define your own custom behavior.
 */

// when clicked on target, toggle visibilty of tooltip
clicktipTargetPrepare = function(o, el, config) {
  return o.addClass(config.attribute + '_target')
  .click(function() {
      el.ht.tip.toggle();
      return false;
    });
};

// when hover over target, make tooltip appear
hovertipTargetPrepare = function(o, el, config) {
  return o.addClass(config.attribute + '_target')
  .hover(function() {
      // show tip when mouse over target
      hovertipShowUnderMouse(el);
    },
    function() {
      // hide the tip
      // add a delay so user can move mouse from the target to the tip
      hovertipHideLater(el);
    });
};


/**
 * hovertipActivate() is our jQuery plugin function.  It turns on hovertip or
 * clicktip behavior for a set of elements.
 * 
 * @param config 
 * controls aspects of tooltip behavior.  Be sure to define
 * 'attribute', 'showDelay' and 'hideDelay'.
 * 
 * @param targetSelect
 * function finds the targets of a given tooltip element.
 * 
 * @param tipPrepare
 * function alters the tooltip to display and behave properly
 * 
 * @param targetPrepare
 * function alters the target to display and behave properly.
 */
jQuery.fn.hovertipActivate = function(config, targetSelect, tipPrepare, targetPrepare) {
  //alert('activating ' + this.size());
  // unhide so jquery show/hide will work.
  return this.css('display', 'block')
  .hide() // don't show it until click
  .each(function() {
      if (!this.ht)
        this.ht = new Object();
      this.ht.config = config;
      
      // find our targets
      var targets = targetSelect(this, config);
      if (targets && targets.size()) {
        if (!this.ht.targets)
          this.ht.targets = targetPrepare(targets, this, config);
        else
          this.ht.targets.add(targetPrepare(targets, this, config));
        
        // listen to mouse move events so we know exatly where to place hovetips
        targets.mousemove(hovertipMouseUpdate);
        
        // prepare the tooltip element
        // is it bad form to call $(this) here?
        if (!this.ht.tip)
          this.ht.tip = tipPrepare($(this), config);
      }
      
    })
  ;
};

/**
 * Here's an example ready function which shows how to enable tooltips.
 * 
 * You can make this considerably shorter by choosing only the markup style(s)
 * you will use.
 * 
 * You may also remove the code that wraps hovertips to produce drop-shadow FX
 * 
 * Invoke this function or one like it from your $(document).ready(). 
 *  
 *  Here, we break the action up into several timout callbacks, to avoid
 *  locking up browsers.
 */
function hovertipInit() {
  // specify the attribute name we use for our clicktips
  var clicktipConfig = {'attribute':'clicktip'};
  
  /**
   * To enable this style of markup (id on tooltip):
   * <span clicktip="foo">target</span>...
   * <div id="foo" class="clicktip">blah blah</div>
   */
  window.setTimeout(function() {
    $('.clicktip').hovertipActivate(clicktipConfig,
                                    targetSelectById,
                                    clicktipPrepareWithCloseLink,
                                    clicktipTargetPrepare);
  }, 0);
  
  /**
   * To enable this style of markup (id on target):
   * <span id="foo">target</span>...
   * <div target="foo" class="clicktip">blah blah</div>
   */
  window.setTimeout(function() {
    $('.clicktip').hovertipActivate(clicktipConfig,
                                    targetSelectByTargetAttribute,
                                    clicktipPrepareWithCloseLink,
                                    clicktipTargetPrepare);
  }, 0);
  
  // specify our configuration for hovertips, including delay times (millisec)
  var hovertipConfig = {'attribute':'hovertip',
                        'showDelay': 300,
                        'hideDelay': 700};
  
  // use <div class='hovertip'>blah blah</div>
  var hovertipSelect = 'div.hovertip';
  
  // OPTIONAL: here we wrap each hovertip to apply special effect. (i.e. drop shadow):
  $(hovertipSelect).css('display', 'block').addClass('hovertip_wrap3').
    wrap("<div class='hovertip_wrap0'><div class='hovertip_wrap1'><div class='hovertip_wrap2'>" + 
         "</div></div></div>").each(function() {
           // fix class and attributes for newly wrapped elements
           var tooltip = this.parentNode.parentNode.parentNode;
           if (this.getAttribute('target'))
             tooltip.setAttribute('target', this.getAttribute('target'));
           if (this.getAttribute('id')) {
             var id = this.getAttribute('id');
             this.removeAttribute('id');
             tooltip.setAttribute('id', id);
           }
         });
  hovertipSelect = 'div.hovertip_wrap0';
  
  // end optional FX section
  
  if (1) { // enable some of the following methods, but not all
    /**
     * To enable this style of markup (id on tooltip):
     * <span hovertip="foo">target</span>...
     * <div id="foo" class="hovertip">blah blah</div>
     */
    window.setTimeout(function() {
        $(hovertipSelect).hovertipActivate(hovertipConfig,
                                           targetSelectById,
                                           hovertipPrepare,
                                           hovertipTargetPrepare);
      }, 0);
    
    /**
     * To enable this style of markup (id on target):
     * <span id="foo">target</span>...
     * <div target="foo" class="hovertip">blah blah</div>
     */
    window.setTimeout(function() {
        $(hovertipSelect).hovertipActivate(hovertipConfig,
                                           targetSelectByTargetAttribute,
                                           hovertipPrepare,
                                           hovertipTargetPrepare);
      }, 0);
  } else {
    /**
     * To enable this style of markup (id on target):
     * <span>target</span>...
     * <div class="hovertip">blah blah</div>
     * 
     * Note that your should enable either this method, or preceeding (target
     * attribute) method.  Not both, as the div with class=hovertip will be
     * associated with more than one target.  
     */
    window.setTimeout(function() {
        $(hovertipSelect).hovertipActivate(hovertipConfig,
                                           targetSelectByPrevious,
                                           hovertipPrepare,
                                           hovertipTargetPrepare);
      }, 0);
  }

  hovertipSpanInit();
};


/**
 * This simplified alternative to hovertipInit supports markup like this:
 * 
 * <span>this is the text that always appears</span><span class=hovertip>this is the text that appears on mouse hover.</span>
 */
function hovertipSpanInit() {
  // specify our configuration for hovertips, including delay times (millisec)
  var hovertipConfig = {'attribute':'hovertip',
                        'showDelay': 300,
                        'hideDelay': 700};
  var hovertipSpanSelect = 'span.hovertip';
  // activate hovertips with wrappers for FX (drop shadow):
  $(hovertipSpanSelect).css('display', 'block').addClass('hovertip_wrap3').
    wrap("<span class='hovertip_wrap0'><span class='hovertip_wrap1'><span class='hovertip_wrap2'>" + 
         "</span></span></span>").each(function() {
             // fix class and attributes for newly wrapped elements
             var tooltip = this.parentNode.parentNode.parentNode;
             if (this.getAttribute('target'))
               tooltip.setAttribute('target', this.getAttribute('target'));
             if (this.getAttribute('id')) {
               var id = this.getAttribute('id');
               this.removeAttribute('id');
               tooltip.setAttribute('id', id);
             }
           });
  hovertipSpanSelect = 'span.hovertip_wrap0';
  
  window.setTimeout(function() {
      $(hovertipSpanSelect)
        .hovertipActivate(hovertipConfig,
                          targetSelectByPrevious,
                          hovertipPrepare,
                          hovertipTargetPrepare);
    }, 0);
};


/**
 * This simplified alternative to hovertipInit supports markup like this:
 * 
 * this is the text that always appears<span class=hoverinfo>this is the text that appears on mouse hover.</span>
 * 
 * In this case the text that always appeared will be followed by an icon inicating more information is available.
 */
function hoverinfoDivInit() {
  // specify our configuration for hovertips, including delay times (millisec)
  var hovertipConfig = {'attribute':'hovertip',
                        'showDelay': 300,
                        'hideDelay': 700};
  var select = '.hoverinfo';
  // activate hovertips with wrappers for FX (drop shadow):
  $(select).css('display', 'block').addClass('hovertip_wrap3').
    wrap("<div class='hovertip_wrap0'><div class='hovertip_wrap1'><div class='hovertip_wrap2'>" + 
         "</div></div></div>");
  hovertipSpanSelect = 'div.hovertip_wrap0';
  
  window.setTimeout(function() {
      $(hovertipSpanSelect)
        .before('<span class=hoverinfo_target><span></span></span>')
        .hovertipActivate(hovertipConfig,
                          targetSelectByPrevious,
                          hovertipPrepare,
                          hovertipTargetPrepare);
    }, 0);
};
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 */
Cufon.registerFont({"w":180,"face":{"font-family":"matricium","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 4 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-8 -324 383 72","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":108},"*":{"d":"68,-143r19,0r-4,-45r37,26r10,-17r-42,-19r42,-19r-10,-17r-37,26r4,-45r-19,0r4,45r-37,-26r-10,17r42,19r-42,19r10,17r37,-26","w":154,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00f8":7,"\u00e6":4,"\u00c6":36,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":36,"\u00c4":36,"t":-4,"s":4,"q":5,"o":7,"g":5,"e":7,"d":5,"c":7,"a":4,"J":29,"A":36}},"+":{"d":"99,-40r27,0r0,-74r75,0r0,-26r-75,0r0,-74r-27,0r0,74r-75,0r0,26r75,0r0,74","w":225},",":{"d":"41,0v1,18,-9,25,-24,31r4,13v38,-5,42,-37,40,-82r-33,0r0,38r13,0","w":88,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":16,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"-":{"d":"23,-94r100,0r0,-29r-100,0r0,29","w":146,"k":{"\u00fd":5,"\u00dd":29,"\u00c1":14,"\u00c2":14,"\u00ff":5,"\u00c3":14,"\u00c0":14,"\u00b1":4,"\u00c6":14,"\u00c5":14,"\u00c4":14,"z":4,"y":5,"x":11,"w":4,"v":5,"Z":11,"Y":29,"X":18,"W":13,"V":14,"T":32,"A":14,"7":14,"3":4,"1":11}},".":{"d":"28,0r33,0r0,-38r-33,0r0,38","w":88,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"\/":{"d":"-8,46r26,0r167,-333r-26,0","w":182,"k":{"\u00f0":29,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":18,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00d7":14,"\u00fd":18,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":43,"\u00c2":43,"\u00ff":18,"\u00d5":14,"\u00c3":43,"\u00c0":43,"\u00f8":29,"\u00e6":23,"\u00b5":14,"\u00b1":4,"\u00d8":14,"\u00c6":43,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00d6":14,"\u00c7":14,"\u00c5":43,"\u00c4":43,"z":22,"y":18,"x":18,"w":18,"v":18,"u":18,"t":7,"s":31,"r":18,"q":25,"p":18,"o":29,"n":18,"m":18,"g":25,"f":9,"e":29,"d":25,"c":29,"a":23,"Z":7,"S":11,"Q":14,"O":14,"J":47,"G":14,"C":14,"A":43,"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"\/":60}},"0":{"d":"22,-126v0,73,34,130,107,130v72,0,106,-57,106,-131v0,-73,-35,-129,-106,-129v-72,0,-107,58,-107,130xm129,-230v102,0,103,208,0,208v-54,0,-77,-49,-77,-105v0,-56,23,-103,77,-103","w":257,"k":{"\u00b1":5,"7":10,"3":4,"2":4,"1":2,"\/":13,".":7,",":7}},"1":{"d":"64,0r29,0r0,-254v-36,-2,-55,14,-83,21r7,23r47,-14r0,224","w":128},"2":{"d":"111,-230v60,-2,56,73,22,104r-116,104r0,22r176,0r0,-26r-133,0v42,-44,103,-72,127,-132v34,-87,-94,-131,-147,-67v-6,7,-12,15,-18,23r21,15v18,-24,32,-42,68,-43","w":215,"k":{"7":4,"4":9}},"3":{"d":"18,-41v19,25,50,46,94,45v50,-1,84,-27,84,-76v0,-48,-37,-67,-83,-71r79,-88r0,-21r-161,0r0,26r123,0r-79,89r6,17v46,-1,86,7,86,49v0,32,-22,48,-55,49v-36,0,-55,-15,-73,-37","w":220,"k":{"9":2,"7":9,"5":2,"\/":4}},"4":{"d":"156,0r27,0r0,-60r39,0r0,-24r-39,0r0,-170r-25,0r-143,174r8,20r133,0r0,60xm50,-84r106,-129r0,129r-106,0","w":241,"k":{"9":4,"7":13,"1":7,"\/":7}},"5":{"d":"199,-78v0,-70,-79,-94,-137,-67r6,-81r120,0r0,-26r-145,0r-7,123r19,12v37,-24,118,-19,115,40v-2,36,-24,55,-61,55v-31,0,-53,-16,-71,-34r-19,20v42,58,180,55,180,-42","w":220,"k":{"\u00b1":2,"9":2,"7":11,"3":2,"2":4,"\/":7}},"6":{"d":"22,-120v-2,75,28,124,98,124v54,0,87,-31,90,-84v5,-85,-128,-101,-159,-39v3,-57,17,-111,74,-111v28,0,43,10,60,24r16,-22v-20,-16,-40,-28,-74,-28v-75,3,-103,61,-105,136xm181,-79v0,37,-24,58,-61,58v-37,0,-63,-19,-63,-57v0,-35,26,-55,63,-55v36,0,61,18,61,54","w":232,"k":{"\u00b1":2,"9":4,"7":8,"3":4,"1":6,"\/":4}},"7":{"d":"49,0r32,0r114,-231r0,-21r-171,0r0,26r139,0","w":214,"k":{"\u00b1":4,"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,"\/":50,".":36,"-":11,",":36}},"8":{"d":"19,-68v0,96,189,95,189,0v0,-35,-26,-51,-52,-62v22,-11,45,-25,43,-59v-2,-45,-39,-67,-86,-67v-47,0,-86,22,-86,68v0,32,21,47,44,58v-27,10,-53,27,-52,62xm171,-187v2,61,-115,62,-115,1v1,-32,25,-45,57,-45v32,0,57,14,58,44xm179,-69v0,62,-131,66,-131,1v0,-65,130,-65,131,-1","w":226,"k":{"\u00b1":2,"9":2,"7":4}},"9":{"d":"23,-171v-6,87,129,102,159,39v-1,59,-20,110,-75,110v-28,0,-45,-11,-62,-27r-17,22v21,16,41,32,78,31v74,-4,105,-61,105,-137v0,-75,-28,-123,-98,-123v-55,0,-86,32,-90,85xm176,-174v0,37,-25,58,-62,58v-36,0,-62,-19,-62,-56v0,-37,24,-59,60,-59v37,0,64,20,64,57","w":232,"k":{"\u00b1":4,"7":8,"5":2,"3":4,"2":4,"\/":9,".":4,",":4}},":":{"d":"30,-148r33,0r0,-38r-33,0r0,38xm30,0r33,0r0,-38r-33,0r0,38","w":91,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":14}},";":{"d":"30,-148r33,0r0,-38r-33,0r0,38xm42,0v2,19,-9,26,-24,31r5,13v38,-5,42,-37,40,-82r-33,0r0,38r12,0","w":91,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":14}},"\u037e":{"d":"30,-148r33,0r0,-38r-33,0r0,38xm42,0v2,19,-9,26,-24,31r5,13v38,-5,42,-37,40,-82r-33,0r0,38r12,0","w":91},"<":{"d":"192,-31r0,-28r-139,-68r139,-68r0,-27r-169,83r0,24","w":225},"=":{"d":"29,-156r167,0r0,-26r-167,0r0,26xm29,-71r167,0r0,-27r-167,0r0,27","w":225},">":{"d":"33,-31r169,-84r0,-24r-169,-83r0,28r139,68r-139,67r0,28","w":225},"?":{"d":"147,-183v0,38,-34,50,-73,53r5,59r19,0r3,-39v41,-7,74,-27,75,-74v2,-64,-77,-88,-130,-60v-13,7,-25,19,-35,31r18,17v22,-40,117,-52,118,13xm72,0r33,0r0,-38r-33,0r0,38","w":193},"@":{"d":"92,-91v0,71,95,82,124,35v6,17,25,30,50,30v65,-1,84,-86,56,-142v-24,-49,-72,-88,-145,-88v-95,0,-154,62,-158,157v-6,131,147,196,256,130r-6,-9v-26,15,-50,24,-89,24v-91,0,-148,-56,-148,-145v0,-87,56,-145,145,-145v83,0,144,50,144,130v0,40,-13,74,-51,74v-59,0,-14,-90,-13,-132r-24,-4r-5,25v-37,-61,-136,-16,-136,60xm221,-113v0,36,-23,63,-59,65v-26,1,-44,-18,-44,-45v0,-66,103,-93,103,-20","w":352},"A":{"d":"14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"B":{"d":"225,-189v-1,-80,-109,-62,-189,-63r0,252v88,-3,201,19,203,-69v0,-37,-25,-52,-54,-61v22,-10,40,-27,40,-59xm196,-185v1,57,-75,44,-132,45r0,-86v54,2,132,-13,132,41xm210,-71v1,60,-86,43,-146,45r0,-88v60,2,145,-14,146,43","w":259,"k":{"&":-1,"\u00fd":4,"\u00dd":11,"\u00ff":4,"y":4,"w":4,"v":4,"Y":11,"X":7,"W":5,"V":7,"T":6,"?":2}},"C":{"d":"24,-126v-9,122,154,170,228,86r-19,-18v-23,21,-42,36,-81,36v-61,0,-98,-42,-98,-105v0,-61,37,-103,98,-103v37,0,58,16,79,35r19,-21v-23,-24,-52,-40,-98,-40v-79,0,-123,53,-128,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"Q":7,"O":7,"G":7,"C":7,"-":4}},"D":{"d":"257,-126v0,-111,-98,-135,-221,-126r0,252v123,9,221,-14,221,-126xm228,-126v0,84,-69,108,-164,100r0,-200v94,-8,164,16,164,100","w":281,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":16,"Y":23,"X":20,"W":13,"V":16,"T":18,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}},"E":{"d":"36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"F":{"d":"36,0r28,0r0,-110r137,0r0,-26r-137,0r0,-90r153,0r0,-26r-181,0r0,252","w":236,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00e5":9,"\u00e3":9,"\u00e4":9,"&":9,"\u00d7":5,"\u00fd":5,"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":29,"\u00c2":29,"\u00ff":5,"\u00d5":5,"\u00c3":29,"\u00c0":29,"\u00bb":5,"\u00f8":5,"\u00e6":9,"\u00b5":5,"\u00d8":5,"\u00c6":29,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00d6":5,"\u00c7":5,"\u00c5":29,"\u00c4":29,"z":5,"y":5,"w":4,"v":5,"s":4,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"a":9,"Z":4,"Q":5,"O":5,"J":40,"G":5,"C":5,"A":29,"?":-4,"\/":25,".":36,",":36}},"G":{"d":"24,-126v0,80,48,128,129,130v43,1,78,-18,101,-38r0,-101r-104,0r0,26r76,0r0,63v-17,13,-44,25,-72,25v-64,0,-100,-41,-100,-106v0,-61,36,-101,96,-103v36,-1,56,12,76,29r19,-22v-23,-20,-51,-34,-94,-33v-80,2,-127,54,-127,130","w":282,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00fd":2,"\u00dd":11,"\u00ff":2,"\u00e6":-4,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"y":2,"v":2,"a":-4,"\\":5,"Y":11,"X":4,"W":6,"V":8,"T":6,"?":4}},"H":{"d":"36,0r28,0r0,-113r146,0r0,113r28,0r0,-252r-28,0r0,112r-146,0r0,-112r-28,0r0,252","w":273},"I":{"d":"38,0r29,0r0,-252r-29,0r0,252","w":104},"J":{"d":"11,-41v16,25,38,45,78,45v50,-1,78,-34,78,-88r0,-168r-28,0r0,169v1,36,-18,60,-50,60v-31,0,-43,-15,-57,-36","w":199,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"J":7,"A":9,".":5,",":5}},"K":{"d":"36,0r28,0r0,-68r54,-54r97,122r35,0r-112,-142r108,-110r-37,0r-145,150r0,-150r-28,0r0,252","w":258,"k":{"\u00f0":11,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":3,"\u00d7":18,"\u00fd":18,"\u00dd":13,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":18,"\u00d4":18,"\u00d3":18,"\u00c1":2,"\u00c2":2,"\u00ff":18,"\u00d5":18,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":11,"\u00e6":4,"\u00b5":18,"\u00d8":18,"\u00c6":2,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":5,"\u00d6":18,"\u00c7":18,"\u00c5":2,"\u00c4":2,"y":18,"w":18,"v":22,"u":7,"t":9,"q":9,"o":11,"g":9,"f":7,"e":11,"d":9,"c":11,"a":4,"Y":13,"W":11,"V":11,"U":5,"T":4,"S":4,"Q":18,"O":18,"G":18,"C":18,"A":2,"-":18}},"L":{"d":"36,0r170,0r0,-26r-142,0r0,-226r-28,0r0,252","w":222,"k":{"\u00f0":4,"\u00ae":32,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"&":3,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":7,"\u00db":7,"\u00da":7,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":4,"\u00b5":14,"\u00d8":14,"\u00dc":7,"\u00d6":14,"\u00c7":14,"y":22,"w":18,"v":22,"t":7,"q":2,"o":4,"g":2,"f":7,"e":4,"d":2,"c":4,"\\":43,"Y":47,"W":36,"V":41,"U":7,"T":36,"Q":14,"O":14,"G":14,"C":14,"?":22,"-":14,"*":29}},"M":{"d":"36,0r27,0r0,-204r92,135r2,0r91,-135r0,204r29,0r0,-252r-29,0r-92,138r-92,-138r-28,0r0,252","w":312},"N":{"d":"36,0r27,0r0,-207r163,207r23,0r0,-252r-28,0r0,202r-159,-202r-26,0r0,252","w":284},"O":{"d":"24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"P":{"d":"224,-171v3,-91,-98,-82,-188,-81r0,252r28,0r0,-89v84,4,158,-4,160,-82xm195,-171v0,62,-68,57,-131,56r0,-111v62,-1,131,-7,131,55","w":240,"k":{"\u00f0":2,"\u00fc":-2,"\u00fb":-2,"\u00f9":-2,"\u00fa":-2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":5,"\u00fd":-4,"\u00dd":4,"\u00c1":25,"\u00c2":25,"\u00ff":-4,"\u00c3":25,"\u00c0":25,"\u00ab":-4,"\u00f8":2,"\u00e6":4,"\u00c6":25,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":25,"\u00c4":25,"y":-4,"w":-4,"v":-4,"u":-2,"t":-5,"o":2,"f":-5,"e":2,"c":2,"a":4,"Z":5,"Y":4,"X":11,"W":2,"V":4,"J":36,"A":25,"\/":22,".":36,",":36}},"Q":{"d":"153,4v35,1,58,-12,79,-27r33,31r20,-22r-34,-27v19,-21,31,-50,31,-86v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,131v0,76,49,127,129,129xm211,-41v-63,46,-163,-1,-157,-86v4,-62,38,-100,99,-103v86,-3,126,104,77,170r-46,-42r-19,21","w":306,"k":{")":4,"\u00dd":23,"Y":23,"W":13,"V":15,"T":17,"?":7}},"R":{"d":"235,-176v1,-92,-109,-75,-199,-76r0,252r28,0r0,-98r72,0r73,98r35,0r-77,-103v38,-9,67,-28,68,-73xm206,-176v-1,64,-78,53,-142,53r0,-103v62,1,143,-12,142,50","w":260,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00dd":9,"\u00f8":4,"t":-4,"q":2,"o":4,"g":2,"f":-4,"e":4,"d":2,"c":4,"Y":9,"W":5,"V":7,"T":3,"J":2}},"S":{"d":"19,-37v42,52,187,65,189,-31v2,-81,-113,-56,-148,-105v-15,-73,89,-67,124,-30r17,-22v-51,-55,-203,-34,-167,66v19,52,114,34,142,78v13,35,-17,60,-53,59v-41,-1,-61,-15,-86,-36","w":230,"k":{"\u00fd":5,"\u00dd":11,"\u00c1":5,"\u00c2":5,"\u00ff":5,"\u00c3":5,"\u00c0":5,"\u00c6":5,"\u00c5":5,"\u00c4":5,"z":2,"y":5,"x":5,"w":4,"v":5,"t":2,"f":2,"\\":7,"Z":4,"Y":11,"X":9,"W":9,"V":11,"T":5,"S":4,"A":5,"?":4}},"T":{"d":"102,0r29,0r0,-226r85,0r0,-26r-198,0r0,26r84,0r0,226","w":233,"k":{"\u00f0":46,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":46,"\u00f6":46,"\u00f4":46,"\u00f2":46,"\u00f3":46,"\u00f1":32,"\u00ef":12,"\u00ee":12,"\u00ec":12,"\u00ed":12,"\u00eb":46,"\u00ea":46,"\u00e8":46,"\u00e9":46,"\u00e7":46,"\u00e5":46,"\u00e3":46,"\u00e4":46,"&":23,"\u00d7":17,"\u00fd":31,"\u00d2":17,"\u00d4":17,"\u00d3":17,"\u00c1":32,"\u00c2":32,"\u00ff":31,"\u00d5":17,"\u00c3":32,"\u00c0":32,"\u00bb":25,"\u00ab":32,"\u00f8":46,"\u00e6":46,"\u00b5":17,"\u00d8":17,"\u00c6":32,"\u00e2":46,"\u00e0":46,"\u00e1":46,"\u00d6":17,"\u00c7":17,"\u00c5":32,"\u00c4":32,"z":37,"y":31,"x":31,"w":30,"v":31,"u":31,"t":15,"s":39,"r":32,"q":42,"p":32,"o":46,"n":32,"m":32,"l":6,"k":6,"j":12,"i":12,"h":6,"g":42,"f":16,"e":46,"d":42,"c":46,"b":6,"a":46,"Z":6,"S":5,"Q":17,"O":17,"J":40,"G":17,"C":17,"A":32,";":14,":":14,"\/":32,".":36,"-":32,",":36}},"U":{"d":"32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"V":{"d":"122,2r26,0r108,-254r-31,0r-90,217r-89,-217r-32,0","w":270,"k":{"\u00f0":25,"\u00fc":14,"\u00fb":14,"\u00f9":14,"\u00fa":14,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00f1":14,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":25,"\u00ea":25,"\u00e8":25,"\u00e9":25,"\u00e7":25,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":18,"\u00d7":15,"\u00fd":14,"\u00dd":7,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":36,"\u00c2":36,"\u00ff":14,"\u00d5":15,"\u00c3":36,"\u00c0":36,"\u00bb":14,"\u00ab":22,"\u00f8":25,"\u00e6":25,"\u00b5":15,"\u00d8":15,"\u00c6":36,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":15,"\u00c7":15,"\u00c5":36,"\u00c4":36,"z":20,"y":14,"x":18,"w":13,"v":14,"u":14,"t":7,"s":22,"r":14,"q":23,"p":14,"o":25,"n":14,"m":14,"l":4,"k":4,"j":7,"i":7,"h":4,"g":23,"f":9,"e":25,"d":23,"c":25,"b":4,"a":25,"Z":4,"Y":7,"X":7,"W":4,"V":4,"S":9,"Q":15,"O":15,"J":43,"G":15,"C":15,"A":36,";":7,":":7,"\/":43,".":43,"-":14,",":43}},"W":{"d":"106,2r24,0r69,-205r70,205r24,0r90,-254r-30,0r-72,210r-69,-211r-24,0r-69,211r-72,-210r-31,0","w":398,"k":{"\u00f0":23,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":23,"\u00f6":23,"\u00f4":23,"\u00f2":23,"\u00f3":23,"\u00f1":13,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":23,"\u00ea":23,"\u00e8":23,"\u00e9":23,"\u00e7":23,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":15,"\u00d7":13,"\u00fd":13,"\u00dd":7,"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":32,"\u00c2":32,"\u00ff":13,"\u00d5":13,"\u00c3":32,"\u00c0":32,"\u00bb":13,"\u00ab":18,"\u00f8":23,"\u00e6":25,"\u00b5":13,"\u00d8":13,"\u00c6":32,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":13,"\u00c7":13,"\u00c5":32,"\u00c4":32,"z":20,"y":13,"x":14,"w":13,"v":13,"u":13,"t":9,"s":22,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":4,"k":4,"j":5,"i":5,"h":4,"g":22,"f":11,"e":23,"d":22,"c":23,"b":4,"a":25,"Z":4,"Y":7,"X":5,"W":4,"V":4,"S":7,"Q":13,"O":13,"J":38,"G":13,"C":13,"A":32,";":5,":":5,"\/":36,".":36,"-":13,",":36}},"X":{"d":"17,0r32,0r81,-108r81,108r33,0r-96,-129r93,-123r-33,0r-77,103r-77,-103r-34,0r93,123","w":261,"k":{"\u00f0":16,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00eb":16,"\u00ea":16,"\u00e8":16,"\u00e9":16,"\u00e7":16,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":4,"\u00d7":18,"\u00fd":14,"\u00dd":8,"\u00d9":4,"\u00db":4,"\u00da":4,"\u00d2":18,"\u00d4":18,"\u00d3":18,"\u00c1":2,"\u00c2":2,"\u00ff":14,"\u00d5":18,"\u00c3":2,"\u00c0":2,"\u00bb":7,"\u00ab":18,"\u00f8":16,"\u00e6":4,"\u00b5":18,"\u00d8":18,"\u00c6":2,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":4,"\u00d6":18,"\u00c7":18,"\u00c5":2,"\u00c4":2,"y":14,"w":14,"v":18,"u":7,"t":7,"q":14,"o":16,"l":4,"k":4,"j":4,"i":4,"h":4,"g":14,"f":7,"e":16,"d":14,"c":16,"b":4,"a":4,"Y":8,"W":5,"V":7,"U":4,"S":11,"Q":18,"O":18,"J":4,"G":18,"C":18,"A":2,"?":5,"-":18}},"Y":{"d":"114,0r29,0r0,-100r105,-152r-33,0r-86,126r-85,-126r-34,0r104,152r0,100","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":24,"\u00d7":22,"\u00fd":22,"\u00dd":2,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":2,"X":8,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"Z":{"d":"24,0r202,0r0,-26r-163,0r163,-207r0,-19r-196,0r0,26r157,0r-163,207r0,19","w":249,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"&":4,"\u00d7":14,"\u00fd":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":5,"\u00d5":14,"\u00ab":7,"\u00f8":9,"\u00b5":14,"\u00d8":14,"\u00d6":14,"\u00c7":14,"y":5,"w":5,"v":7,"q":7,"o":9,"g":7,"f":4,"e":9,"d":7,"c":9,"Z":4,"S":4,"Q":14,"O":14,"G":14,"C":14,"-":11}},"[":{"d":"34,47r103,0r0,-22r-77,0r0,-255r77,0r0,-22r-103,0r0,299","w":158,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":7,"\u00e6":4,"\u00b5":7,"\u00d8":7,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":7,"v":7,"s":5,"q":7,"o":7,"j":-11,"g":7,"e":7,"d":7,"c":7,"a":4,"Q":7,"O":7,"J":4,"G":7,"C":7}},"\\":{"d":"165,46r25,0r-167,-333r-25,0","w":182,"k":{"\u00d7":14,"\u00fd":22,"\u00dd":40,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":22,"v":25,"t":11,"j":-11,"f":4,"Y":40,"W":36,"V":43,"U":5,"T":32,"Q":14,"O":14,"G":14,"C":14}},"]":{"d":"21,47r103,0r0,-299r-103,0r0,22r77,0r0,255r-77,0r0,22","w":158},"^":{"d":"23,-177r24,0r43,-56r42,56r25,0r-56,-76r-22,0"},"_":{"d":"-1,58r218,0r0,-23r-218,0r0,23","w":216},"`":{"d":"93,-214r21,0r-33,-52r-29,13"},"a":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"b":{"d":"59,-36v15,21,34,42,71,40v55,-3,89,-40,89,-98v0,-56,-33,-96,-89,-96v-37,0,-56,18,-71,41r0,-114r-28,0r0,263r28,0r0,-36xm190,-93v0,44,-23,72,-65,72v-42,0,-67,-28,-67,-73v0,-43,26,-71,67,-71v42,0,65,29,65,72","w":239,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"c":{"d":"19,-93v-6,92,121,128,172,61r-18,-16v-13,15,-30,27,-57,27v-43,-2,-68,-30,-68,-73v0,-42,25,-70,66,-72v27,-1,43,14,57,28r18,-19v-17,-18,-37,-34,-74,-33v-58,3,-92,40,-96,97","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"d":{"d":"20,-93v0,58,34,95,89,97v37,2,55,-19,71,-41r0,37r28,0r0,-263r-28,0r0,113v-15,-22,-35,-40,-71,-40v-55,0,-89,40,-89,97xm181,-94v0,44,-25,73,-67,73v-42,0,-65,-29,-65,-73v0,-43,24,-71,65,-71v41,0,67,28,67,71","w":239},"e":{"d":"172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"f":{"d":"128,-260v-53,-16,-96,12,-87,74r-25,0r0,24r25,0r0,162r28,0r0,-162r59,0r0,-23r-59,0v-2,-31,4,-55,32,-55v12,0,18,3,27,5r0,-25","w":132,"k":{"\u00f0":4,"\u00ae":-18,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,")":-11,"\u00ab":5,"\u00f8":4,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":-11,"z":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":5,"]":-7,"\\":-11,"?":-13,"\/":16,".":16,",":16,"*":-11}},"g":{"d":"181,-54v18,94,-89,108,-140,65r-12,21v63,47,179,33,179,-64r0,-154r-28,0r0,33v-16,-20,-36,-37,-72,-37v-53,0,-88,35,-88,88v0,53,36,86,88,88v35,2,57,-20,73,-40xm181,-103v0,41,-28,64,-68,64v-38,0,-64,-24,-64,-64v0,-40,26,-63,64,-63v39,0,68,22,68,63","w":239,"k":{"\\":18}},"h":{"d":"194,-116v9,-80,-108,-96,-135,-38r0,-109r-28,0r0,263r28,0v3,-70,-19,-165,55,-165v74,0,48,97,52,165r28,0r0,-116","w":221,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"i":{"d":"32,-227r31,0r0,-30r-31,0r0,30xm33,0r28,0r0,-186r-28,0r0,186","w":94},"j":{"d":"32,-227r31,0r0,-30r-31,0r0,30xm33,10v2,22,-14,28,-34,24v0,14,-3,26,17,25v29,-2,45,-16,45,-48r0,-197r-28,0r0,196","w":94},"k":{"d":"31,0r28,0r0,-49r37,-38r67,87r33,0r-80,-106r78,-80r-35,0r-100,105r0,-182r-28,0r0,263","w":204,"k":{"\u00f0":9,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00fd":5,"\u00ff":5,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"y":5,"w":7,"v":7,"u":4,"t":4,"q":9,"o":9,"g":9,"e":9,"d":9,"c":9,"a":4,"\\":14,"-":7}},"l":{"d":"33,0r28,0r0,-263r-28,0r0,263","w":94},"m":{"d":"119,-190v-31,1,-47,16,-60,35r0,-31r-28,0r0,186r28,0v3,-69,-19,-164,52,-165v68,0,42,100,47,165r28,0v4,-68,-20,-164,51,-165v69,-1,43,99,48,165r28,0v-2,-84,19,-190,-69,-190v-33,0,-51,17,-65,37v-10,-20,-30,-37,-60,-37","w":342,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"n":{"d":"194,-116v9,-80,-108,-96,-135,-38r0,-32r-28,0r0,186r28,0v3,-70,-19,-165,55,-165v74,0,48,97,52,165r28,0r0,-116","w":221,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"o":{"d":"19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"p":{"d":"130,-190v-37,0,-56,18,-71,41r0,-37r-28,0r0,244r28,0r0,-94v15,21,34,42,71,40v55,-3,89,-40,89,-98v0,-56,-33,-96,-89,-96xm190,-93v0,44,-23,72,-65,72v-42,0,-67,-28,-67,-73v0,-43,26,-71,67,-71v42,0,65,29,65,72","w":239,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"q":{"d":"109,4v37,2,55,-19,71,-41r0,95r28,0r0,-244r-28,0r0,36v-15,-22,-35,-40,-71,-40v-55,0,-89,40,-89,97v0,58,34,95,89,97xm181,-94v0,44,-25,73,-67,73v-42,0,-65,-29,-65,-73v0,-43,24,-71,65,-71v41,0,67,28,67,71","w":239,"k":{"\\":18}},"r":{"d":"135,-189v-41,0,-63,22,-76,51r0,-48r-28,0r0,186r28,0v-3,-81,-4,-162,76,-159r0,-30","w":145,"k":{"\u00f0":8,"\u00f5":8,"\u00f6":8,"\u00f4":8,"\u00f2":8,"\u00f3":8,"\u00eb":8,"\u00ea":8,"\u00e8":8,"\u00e9":8,"\u00e7":8,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00ab":4,"\u00f8":8,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"z":4,"q":8,"o":8,"g":8,"e":8,"d":8,"c":8,"a":9,"\\":11,"\/":27,".":32,",":32,"*":-7}},"s":{"d":"15,-24v41,44,173,35,139,-50v-16,-39,-90,-21,-103,-65v5,-40,69,-27,91,-9r13,-21v-43,-38,-161,-19,-125,55v16,33,75,26,99,52v12,23,-10,43,-35,42v-26,-1,-47,-10,-64,-24","w":179,"k":{")":7,"\u00fd":5,"\u00ff":5,"\u00ab":4,"}":4,"z":4,"y":5,"x":9,"w":5,"v":7,"t":4,"s":4,"]":5,"\\":27,"?":13}},"t":{"d":"41,-162v5,67,-23,169,52,165v15,-1,24,-2,34,-8r0,-23v-22,11,-59,9,-59,-25r0,-109r59,0r0,-24r-59,0r0,-56r-27,0r0,56r-26,0r0,24r26,0","w":145,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":4,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":14}},"u":{"d":"28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"v":{"d":"93,1r25,0r81,-187r-30,0r-63,154r-63,-154r-30,0","w":211,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":5,"\u00ff":5,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":5,"x":4,"w":5,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"w":{"d":"80,1r25,0r50,-146r50,146r24,0r66,-187r-29,0r-49,149r-50,-150r-23,0r-50,150r-49,-149r-30,0","w":309,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00fd":4,"\u00ff":4,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":5,"q":7,"o":9,"g":7,"e":9,"d":7,"c":9,"a":7,"]":7,"\\":18,"?":4,"\/":22,".":25,"-":4,",":25}},"x":{"d":"14,0r31,0r58,-76r58,76r32,0r-74,-95r71,-91r-31,0r-55,72r-55,-72r-32,0r70,91","w":206,"k":{"\u00f0":13,"\u00f5":13,"\u00f6":13,"\u00f4":13,"\u00f2":13,"\u00f3":13,"\u00eb":13,"\u00ea":13,"\u00e8":13,"\u00e9":13,"\u00e7":13,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":16,"\u00f8":13,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":4,"y":4,"w":4,"v":4,"s":7,"q":11,"o":13,"g":11,"e":13,"d":11,"c":13,"a":5,"]":4,"\\":18,"?":5,"-":11}},"y":{"d":"97,-1v-7,32,-39,44,-67,28r-10,22v29,17,76,9,89,-18v32,-69,60,-146,91,-217r-30,0r-59,155r-68,-155r-31,0","w":212,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"z":{"d":"20,0r161,0r0,-23r-123,0r123,-145r0,-18r-157,0r0,23r120,0r-124,145r0,18","w":200,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":5,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":16}},"{":{"d":"20,-93v88,-16,18,110,90,133v10,4,24,8,40,11r4,-19v-44,-7,-60,-28,-56,-85v2,-32,-13,-41,-37,-50v31,-8,40,-35,37,-78v-3,-41,23,-49,56,-58r-4,-18v-56,7,-83,31,-78,100v3,33,-17,45,-52,43r0,21","w":173,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":5,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"z":4,"y":4,"x":4,"w":4,"v":4,"s":4,"q":5,"o":5,"j":-13,"g":4,"e":5,"d":5,"c":5,"Q":7,"O":7,"J":4,"G":7,"C":7}},"|":{"d":"43,46r23,0r0,-333r-23,0r0,333","w":109},"}":{"d":"76,-53v4,56,-11,79,-57,85r5,19v55,-8,83,-31,78,-100v-2,-33,15,-46,51,-44r0,-21v-87,16,-16,-108,-89,-132v-10,-4,-24,-8,-40,-11r-5,18v45,7,62,28,57,85v-2,30,14,44,37,51v-23,7,-39,20,-37,50","w":173},"~":{"d":"127,-131v-11,46,-62,-19,-87,12v-5,6,-10,15,-14,29r17,5v12,-45,62,16,88,-12v5,-6,9,-16,13,-30","w":170},"\u00c4":{"d":"159,-278r34,0r0,-32r-34,0r0,32xm92,-278r33,0r0,-32r-33,0r0,32xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00c5":{"d":"142,-306v-40,0,-54,53,-20,67r-108,239r29,0r30,-67r137,0r30,67r30,0r-108,-239v33,-12,21,-67,-20,-67xm84,-92r58,-129r57,129r-115,0xm142,-248v-13,0,-24,-9,-24,-22v0,-12,11,-22,24,-22v13,0,24,9,24,22v0,12,-11,22,-24,22","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00c7":{"d":"24,-126v0,73,44,118,110,129r-28,41r27,12r24,-52v45,-2,72,-20,95,-44r-19,-18v-23,21,-42,36,-81,36v-61,0,-98,-42,-98,-105v0,-61,37,-103,98,-103v37,0,58,16,79,35r19,-21v-23,-24,-52,-40,-98,-40v-79,0,-128,53,-128,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"Q":7,"O":7,"G":7,"C":7,"-":4}},"\u00c9":{"d":"116,-274r23,0r41,-34r-28,-13xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d1":{"d":"185,-315v-14,43,-63,-18,-88,12v-5,6,-9,16,-13,28r18,5v12,-43,62,18,87,-12v5,-6,9,-16,13,-28xm36,0r27,0r0,-207r163,207r23,0r0,-252r-28,0r0,202r-159,-202r-26,0r0,252","w":284},"\u00d6":{"d":"170,-278r33,0r0,-32r-33,0r0,32xm103,-278r33,0r0,-32r-33,0r0,32xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00dc":{"d":"154,-273r33,0r0,-33r-33,0r0,33xm86,-273r34,0r0,-33r-34,0r0,33xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00e1":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm93,-214r21,0r42,-39r-29,-13","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e0":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm94,-214r22,0r-34,-52r-29,13","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e2":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm54,-214r23,0r27,-24v14,11,21,29,50,24r-38,-47r-24,0","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00b4":{"d":"66,-214r21,0r41,-39r-29,-13"},"\u00a8":{"d":"105,-214r33,0r0,-34r-33,0r0,34xm42,-214r33,0r0,-34r-33,0r0,34"},"\u00c6":{"d":"6,0r30,0r39,-67r102,0r0,67r178,0r0,-26r-149,0r0,-88r131,0r0,-26r-131,0r0,-86r147,0r0,-26r-199,0xm90,-92r78,-135r9,0r0,135r-87,0","w":376,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d8":{"d":"74,-22v20,15,45,26,79,26v116,0,165,-143,96,-219r35,-39r-29,0r-23,24v-20,-15,-45,-26,-79,-26v-116,0,-165,143,-96,219r-35,39r29,0xm54,-126v0,-86,96,-133,160,-82r-137,149v-13,-17,-23,-38,-23,-67xm252,-126v0,86,-96,133,-160,82r137,-149v13,17,23,38,23,67","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00b1":{"d":"15,-41v20,24,51,46,95,45v51,-1,87,-26,87,-73v0,-36,-24,-50,-51,-60v23,-11,44,-26,44,-60v1,-63,-83,-83,-133,-55v-15,8,-26,20,-36,34r21,16v16,-21,32,-35,65,-36v31,-1,54,16,54,44v0,41,-40,49,-86,47r0,24v48,-2,93,5,93,47v0,32,-24,46,-57,46v-35,0,-58,-16,-75,-37","w":217,"k":{"7":7}},"\u00a5":{"d":"110,0r27,0r0,-42r74,0r0,-22r-74,0r0,-32r74,0r0,-22r-66,0r92,-134r-32,0r-81,123r-80,-123r-34,0r91,134r-65,0r0,22r74,0r0,32r-74,0r0,22r74,0r0,42","w":246,"k":{"4":7}},"\u00b5":{"d":"24,-126v-3,96,90,156,184,118r47,44v13,-2,33,4,42,-2r-62,-59v27,-22,47,-58,47,-102v0,-76,-49,-129,-129,-129v-80,0,-127,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u03bc":{"d":"24,-126v-3,96,90,156,184,118r47,44v13,-2,33,4,42,-2r-62,-59v27,-22,47,-58,47,-102v0,-76,-49,-129,-129,-129v-80,0,-127,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306},"\u00aa":{"d":"22,-180v0,39,58,41,73,17r0,14r18,0v3,-58,5,-120,-64,-102v-6,2,-12,4,-18,7r5,15v19,-12,62,-13,59,19v-30,-7,-73,-4,-73,30xm95,-196v3,23,-12,34,-31,34v-11,-1,-24,-6,-23,-19v1,-22,36,-22,54,-15xm21,-104r93,0r0,-17r-93,0r0,17","w":140},"\u00ba":{"d":"17,-200v0,32,21,53,53,53v33,0,53,-21,53,-54v0,-31,-20,-53,-52,-53v-32,0,-54,21,-54,54xm18,-104r104,0r0,-17r-104,0r0,17xm104,-200v1,20,-13,36,-33,36v-21,0,-34,-16,-34,-37v0,-19,14,-37,33,-36v21,1,33,16,34,37","w":140},"\u00e6":{"d":"17,-55v1,40,30,59,68,59v37,0,63,-18,83,-37v25,46,124,49,151,2r-17,-15v-24,35,-102,33,-117,-9v-3,-8,-7,-17,-8,-27r148,0v2,-65,-26,-105,-86,-108v-33,-1,-58,19,-71,41v-12,-47,-94,-48,-135,-24r9,23v39,-23,116,-21,108,42v-55,-16,-134,-10,-133,53xm177,-104v-1,-64,95,-86,115,-24v3,8,4,16,5,24r-120,0xm157,-51v-18,34,-112,53,-112,-5v0,-44,68,-42,105,-30v1,12,3,24,7,35","w":343,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00f8":{"d":"58,-15v14,12,34,17,58,19v86,6,124,-103,74,-161r29,-31r-28,0r-16,17v-61,-45,-161,-2,-156,79v1,25,11,48,23,63r-28,31r28,0xm61,-49v-35,-51,6,-139,78,-113v7,3,13,6,19,11xm171,-137v37,48,-4,140,-77,113v-7,-3,-13,-6,-19,-11","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00bf":{"d":"89,-214r33,0r0,-38r-33,0r0,38xm46,-69v-1,-38,34,-50,74,-53r-6,-59r-19,0r-3,39v-41,7,-74,27,-75,74v-2,64,77,88,130,60v13,-7,25,-19,35,-31r-18,-17v-22,41,-117,51,-118,-13","w":193,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00d7":7,"\u00fd":13,"\u00dd":25,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":13,"\u00d5":7,"\u00e6":-4,"\u00b5":7,"\u00d8":7,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"\u00dc":5,"\u00d6":7,"\u00c7":7,"y":13,"w":13,"v":16,"t":5,"f":4,"a":-4,"Y":25,"X":4,"W":18,"V":22,"U":5,"T":22,"Q":7,"O":7,"G":7,"C":7}},"\u00a1":{"d":"32,-214r34,0r0,-38r-34,0r0,38xm33,0r32,0r-8,-181r-16,0","w":97},"\u00ac":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00ab":{"d":"156,-15r21,-12r-49,-67r49,-65r-21,-12v-18,27,-42,49,-58,79xm76,-15r21,-12r-49,-67r49,-65r-21,-12v-19,27,-43,49,-59,79","w":198,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":5,"\u00dd":27,"\u00ff":5,"\u00f8":4,"y":5,"x":5,"w":4,"v":5,"q":2,"o":4,"g":2,"e":4,"d":2,"c":4,"Y":27,"X":7,"W":13,"V":14,"T":25}},"\u00bb":{"d":"122,-15v19,-28,43,-50,59,-80r-59,-76r-21,12r49,66r-49,66xm42,-15v18,-28,42,-50,58,-80r-58,-76r-21,12r49,66r-49,66","w":198,"k":{"\u00fd":11,"\u00dd":36,"\u00c1":7,"\u00c2":7,"\u00ff":11,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"z":7,"y":11,"x":16,"w":7,"v":11,"t":4,"s":4,"f":4,"Z":5,"Y":36,"X":18,"W":18,"V":22,"T":32,"S":4,"A":7}},"\u00a0":{"w":108},"\u00c0":{"d":"117,-324r-28,13v21,12,28,37,65,33xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00c3":{"d":"185,-319v-13,42,-63,-18,-88,12v-5,6,-9,15,-13,27r18,5v12,-43,62,18,87,-12v5,-6,9,-15,13,-27xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00d5":{"d":"195,-319v-12,43,-62,-18,-87,12v-5,6,-9,15,-13,27r17,5v14,-43,63,18,88,-12v5,-6,9,-15,13,-27xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00f7":{"d":"94,-180r37,0r0,-37r-37,0r0,37xm201,-114r0,-25r-177,0r0,25r177,0xm94,-37r37,0r0,-37r-37,0r0,37","w":225},"\u00ff":{"d":"97,-1v-7,32,-39,44,-67,28r-10,22v29,17,76,9,89,-18v32,-69,60,-146,91,-217r-30,0r-59,155r-68,-155r-31,0xm123,-214r32,0r0,-34r-32,0r0,34xm60,-214r32,0r0,-34r-32,0r0,34","w":212,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00b7":{"d":"28,-89r33,0r0,-38r-33,0r0,38","w":88},"\u22c5":{"d":"28,-89r33,0r0,-38r-33,0r0,38","w":88},"\u00c2":{"d":"90,-277r25,0r27,-22r27,22r26,0r-40,-43r-26,0xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00ca":{"d":"75,-274r25,0r27,-22r27,22r26,0r-40,-43r-26,0xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c1":{"d":"131,-278r23,0r41,-33r-28,-13xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00cb":{"d":"144,-274r34,0r0,-33r-34,0r0,33xm77,-274r34,0r0,-33r-34,0r0,33xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c8":{"d":"103,-321r-28,13r41,34r23,0xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00cd":{"d":"41,-274r23,0r41,-34r-28,-13xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00ce":{"d":"0,-274r25,0r27,-22r27,22r26,0r-39,-43r-26,0xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00cf":{"d":"70,-274r33,0r0,-33r-33,0r0,33xm3,-274r33,0r0,-33r-33,0r0,33xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00cc":{"d":"28,-321r-28,13r41,34r23,0xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00d3":{"d":"141,-278r24,0r41,-33r-29,-13xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d4":{"d":"100,-278r26,0r27,-22r27,22r26,0r-40,-42r-26,0xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d2":{"d":"128,-324r-28,13r41,33r24,0xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00da":{"d":"125,-273r23,0r41,-34r-28,-13xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00db":{"d":"84,-273r25,0r27,-22r27,22r26,0r-40,-43r-26,0xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00d9":{"d":"112,-320r-28,13r41,34r23,0xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00af":{"d":"34,-221r112,0r0,-23r-112,0r0,23"},"\u00b8":{"d":"81,56r28,-61r-22,0r-33,49"},"\u00a4":{"d":"53,-85v6,75,116,122,171,58v6,-6,11,-14,16,-21r-20,-15v-18,35,-74,60,-110,24v-13,-12,-22,-27,-28,-46r94,0r0,-23r-98,0v0,-13,-2,-27,0,-39r98,0r0,-22r-93,0v10,-32,32,-61,69,-62v35,0,50,19,66,39r22,-15v-19,-26,-41,-50,-87,-49v-57,2,-86,40,-99,87r-34,0r0,22r30,0r-1,39r-29,0r0,23r33,0","w":259,"k":{"1":-7}},"\u00dd":{"d":"117,-273r23,0r42,-34r-29,-13xm114,0r29,0r0,-100r105,-152r-33,0r-86,126r-85,-126r-34,0r104,152r0,100","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":24,"\u00d7":22,"\u00fd":22,"\u00dd":2,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":2,"X":8,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"\u00fd":{"d":"97,-1v-7,32,-39,44,-67,28r-10,22v29,17,76,9,89,-18v32,-69,60,-146,91,-217r-30,0r-59,155r-68,-155r-31,0xm96,-214r22,0r41,-39r-29,-13","w":212,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00de":{"d":"224,-128v1,-80,-77,-85,-160,-81r0,-43r-28,0r0,252r28,0r0,-45v84,4,159,-4,160,-83xm195,-128v0,63,-68,58,-131,57r0,-112v62,-1,131,-7,131,55","w":242},"\u00fe":{"d":"130,-190v-37,0,-56,18,-71,41r0,-114r-28,0r0,321r28,0r0,-94v15,21,34,42,71,40v55,-3,89,-40,89,-98v0,-56,-33,-96,-89,-96xm190,-93v0,44,-23,72,-65,72v-42,0,-67,-28,-67,-73v0,-43,26,-71,67,-71v42,0,65,29,65,72","w":239,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"\u00bd":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00bc":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b9":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00be":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b3":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b2":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00a6":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00d7":{"d":"24,-126v-3,96,90,156,184,118r47,44v13,-2,33,4,42,-2r-62,-59v27,-22,47,-58,47,-102v0,-76,-49,-129,-129,-129v-80,0,-127,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"!":{"d":"41,-71r16,0r8,-181r-32,0xm32,0r34,0r0,-38r-34,0r0,38","w":97},"\"":{"d":"94,-154r15,0r29,-98r-33,0xm23,-154r16,0r29,-98r-34,0","w":158},"#":{"d":"45,0r25,0r11,-64r68,0r-10,64r25,0r11,-64r46,0r0,-25r-42,0r13,-76r43,0r0,-25r-38,0r10,-62r-25,0r-11,62r-68,0r10,-62r-25,0r-11,62r-47,0r0,25r43,0r-13,76r-44,0r0,25r39,0xm85,-89r13,-76r69,0r-13,76r-69,0","w":252},"$":{"d":"20,-38v23,20,48,34,85,37r0,36r23,0r0,-35v44,-4,77,-23,77,-68v0,-45,-33,-59,-78,-70r0,-89v22,5,38,13,54,26r16,-21v-20,-15,-38,-27,-69,-29r0,-22r-23,0r0,21v-42,4,-75,23,-75,67v0,46,31,59,76,70r0,90v-31,-3,-50,-17,-70,-34xm106,-143v-37,-4,-67,-42,-36,-73v9,-8,21,-12,36,-12r0,85xm127,-110v39,1,68,43,37,73v-9,8,-22,12,-37,13r0,-86","w":228,"k":{"7":4}},"%":{"d":"19,-190v0,37,19,64,57,64v37,0,57,-27,57,-65v0,-36,-21,-64,-57,-64v-37,0,-57,28,-57,65xm45,0r26,0r184,-252r-25,0xm167,-62v0,36,20,65,57,65v38,0,57,-28,57,-65v0,-36,-19,-64,-56,-64v-38,0,-58,28,-58,64xm76,-235v44,2,44,89,0,89v-43,-1,-45,-88,0,-89xm224,-106v44,1,43,88,1,89v-44,-2,-45,-87,-1,-89","w":300},"&":{"d":"95,4v39,0,61,-19,83,-40r39,41r22,-17r-44,-45v15,-18,25,-40,36,-63r-23,-11v-9,21,-18,39,-30,56r-58,-58v31,-11,60,-29,60,-66v0,-36,-24,-55,-62,-57v-68,-4,-83,81,-41,116v-32,14,-61,32,-61,73v0,46,33,71,79,71xm117,-233v33,0,49,43,24,64v-8,8,-21,14,-37,20v-12,-14,-25,-24,-25,-48v0,-20,16,-36,38,-36xm161,-53v-16,16,-34,32,-63,32v-45,0,-68,-47,-41,-78v8,-9,19,-18,36,-24","w":250,"k":{"\u00dd":24,"Y":24,"W":18,"V":21,"T":28,"S":3}},"'":{"d":"23,-154r16,0r29,-98r-34,0","w":88},"(":{"d":"124,-257v-82,34,-133,152,-74,242v17,26,42,48,74,66r12,-19v-48,-31,-83,-66,-83,-135v0,-69,35,-105,83,-136","w":156,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00d7":11,"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00d5":11,"\u00f8":11,"\u00b5":11,"\u00d8":11,"\u00d6":11,"\u00c7":11,"s":5,"q":11,"o":11,"j":-11,"g":7,"e":11,"d":11,"c":11,"Q":11,"O":11,"J":5,"G":11,"C":11}},")":{"d":"104,-103v0,69,-36,104,-84,135r12,19v81,-35,133,-152,74,-243v-17,-26,-42,-47,-74,-65r-12,18v48,31,84,66,84,136","w":156},"\u00e4":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm120,-214r32,0r0,-34r-32,0r0,34xm57,-214r32,0r0,-34r-32,0r0,34","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e3":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm148,-257v-13,44,-62,-16,-88,12v-5,6,-10,15,-14,29r17,5v12,-45,64,18,88,-12v5,-6,10,-15,14,-29","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e5":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm104,-289v-23,0,-39,15,-39,38v0,23,18,35,39,38v22,-3,39,-15,39,-38v0,-23,-16,-38,-39,-38xm104,-226v-13,0,-25,-12,-25,-25v0,-13,11,-25,25,-25v14,0,25,11,25,25v0,14,-12,25,-25,25","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e7":{"d":"19,-93v0,54,32,86,79,96r-29,41r27,12r24,-52v34,-2,53,-16,71,-36r-18,-16v-13,15,-30,27,-57,27v-43,-2,-68,-30,-68,-73v0,-42,25,-70,66,-72v27,-1,43,14,57,28r18,-19v-17,-18,-37,-34,-74,-33v-58,3,-96,40,-96,97","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"\u00e9":{"d":"97,-214r22,0r41,-39r-29,-13xm172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00e8":{"d":"172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0xm98,-214r22,0r-34,-52r-29,13","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ea":{"d":"58,-214r23,0r27,-24r27,24r24,0r-38,-47r-25,0xm172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00eb":{"d":"124,-214r32,0r0,-34r-32,0r0,34xm61,-214r32,0r0,-34r-32,0r0,34xm172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ed":{"d":"36,-214r22,0r41,-39r-29,-13xm33,0r28,0r0,-186r-28,0r0,186","w":94},"\u00ec":{"d":"33,0r28,0r0,-186r-28,0r0,186xm37,-214r22,0r-34,-52r-29,13","w":94},"\u00ee":{"d":"-3,-214r23,0r27,-24r27,24r24,0r-38,-47r-25,0xm33,0r28,0r0,-186r-28,0r0,186","w":94},"\u00ef":{"d":"63,-214r32,0r0,-34r-32,0r0,34xm0,-214r32,0r0,-34r-32,0r0,34xm33,0r28,0r0,-186r-28,0r0,186","w":94},"\u00f1":{"d":"194,-116v9,-80,-108,-96,-135,-38r0,-32r-28,0r0,186r28,0v3,-70,-19,-165,55,-165v74,0,48,97,52,165r28,0r0,-116xm156,-257v-13,44,-62,-16,-88,12v-5,6,-10,15,-14,29r17,5v12,-45,64,18,88,-12v5,-6,9,-15,13,-29","w":221,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"\u00f3":{"d":"105,-214r22,0r41,-39r-29,-13xm19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f2":{"d":"19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73xm106,-214r21,0r-33,-52r-29,13","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f4":{"d":"66,-214r23,0r27,-24r27,24r24,0r-38,-47r-25,0xm19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f6":{"d":"132,-214r32,0r0,-34r-32,0r0,34xm69,-214r32,0r0,-34r-32,0r0,34xm19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f5":{"d":"19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73xm159,-257v-11,45,-61,-16,-87,12v-5,6,-10,15,-14,29r17,5v12,-45,64,18,88,-12v5,-6,9,-15,13,-29","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00fa":{"d":"98,-214r22,0r41,-39r-29,-13xm28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"\u00f9":{"d":"28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0xm99,-214r21,0r-34,-52r-28,13","w":221,"k":{"\\":18}},"\u00fb":{"d":"59,-214r23,0r27,-24v14,11,21,29,50,24r-38,-47r-24,0xm28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"\u00fc":{"d":"125,-214r32,0r0,-34r-32,0r0,34xm62,-214r32,0r0,-34r-32,0r0,34xm28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"\u00b0":{"d":"26,-199v0,31,23,55,56,55v34,0,57,-23,57,-55v0,-32,-23,-55,-57,-55v-33,0,-56,23,-56,55xm118,-199v0,22,-14,36,-36,36v-21,0,-35,-15,-35,-36v0,-21,14,-36,35,-36v22,0,36,14,36,36","w":164},"\u00a2":{"d":"21,-128v0,47,27,79,63,92r-8,38r24,0r6,-33v42,2,67,-14,86,-36r-17,-16v-15,15,-36,31,-65,27r28,-141v14,5,26,14,35,24r18,-19v-12,-14,-28,-24,-48,-30r7,-32r-24,0r-5,29v-61,1,-100,38,-100,97xm49,-128v2,-43,25,-71,68,-72r-27,139v-22,-10,-42,-35,-41,-67","w":209},"\u00a3":{"d":"134,-256v-66,1,-85,52,-80,125r-30,0r0,25r30,0r0,82r-30,7r0,17r187,0r0,-25r-128,0r0,-81r100,0r0,-25r-100,0v-3,-52,2,-98,51,-98v29,0,41,14,55,30r22,-18v-18,-21,-38,-39,-77,-39","w":231,"k":{"4":5}},"\u00a7":{"d":"156,-45v-7,45,-86,21,-102,-3r-18,17v28,40,148,55,148,-14v0,-19,-13,-29,-26,-36v37,0,65,-48,30,-72v-29,-20,-89,-19,-113,-45v-10,-21,9,-35,34,-34v28,1,50,13,65,28r18,-17v-28,-40,-145,-55,-149,14v0,19,13,29,27,36v-39,-1,-67,48,-31,72v29,20,89,20,114,45v2,3,3,6,3,9xm88,-157v36,3,82,7,91,37v-1,16,-20,27,-40,25v-36,-3,-82,-6,-90,-37v1,-16,19,-27,39,-25","w":227,"k":{"7":5}},"\u00b6":{"d":"17,-174v0,57,45,79,105,79r0,95r28,0r0,-252v-73,-4,-133,11,-133,78","w":183},"\u00df":{"d":"174,-70v1,35,-31,48,-69,48r0,23v54,-1,97,-18,97,-71v0,-41,-32,-55,-65,-64v25,-13,50,-29,50,-67v0,-42,-31,-64,-74,-64v-53,0,-82,32,-82,85r0,180r28,0r0,-181v-11,-67,99,-83,99,-17v0,34,-26,48,-53,58r0,21v36,3,68,16,69,49","w":223,"k":{"\u00fd":4,"\u00ff":4,"y":4,"x":4,"w":2,"v":4}},"\u00ae":{"d":"10,-193v0,38,25,63,63,63v38,0,62,-25,62,-63v0,-37,-25,-63,-62,-63v-38,0,-63,25,-63,63xm128,-193v0,34,-22,57,-55,57v-33,0,-56,-22,-56,-57v0,-33,23,-56,56,-56v33,0,55,22,55,56xm102,-206v-1,-24,-30,-20,-54,-20r0,64r12,0r0,-22v27,-5,15,28,44,22r-17,-24v8,-3,15,-10,15,-20xm89,-204v0,12,-16,10,-29,10r0,-21v13,0,29,-2,29,11","w":145},"\u00a9":{"d":"19,-126v0,78,52,130,130,130v79,0,131,-52,131,-131v0,-78,-52,-129,-130,-129v-79,0,-131,52,-131,130xm268,-127v0,72,-46,120,-119,120v-72,0,-118,-47,-118,-119v0,-71,47,-119,119,-119v72,0,118,47,118,118xm84,-128v0,65,82,90,120,46r-13,-13v-27,33,-87,15,-87,-34v0,-47,60,-65,86,-32r13,-14v-35,-42,-119,-18,-119,47","w":298},"\u00f0":{"d":"213,-102v0,-62,-34,-98,-66,-132r30,-13r-8,-17r-38,16r-17,-15r-40,0v11,8,22,17,32,26r-34,14r8,17r42,-17v19,19,38,40,50,63v-16,-14,-36,-27,-65,-26v-53,3,-88,37,-88,92v0,57,36,98,96,98v63,0,98,-42,98,-106xm184,-93v0,43,-24,72,-67,72v-44,0,-69,-29,-69,-72v0,-41,24,-69,66,-69v44,0,70,26,70,69","w":232},"\u00d0":{"d":"268,-126v0,-112,-98,-135,-222,-126r0,112r-27,0r0,26r27,0r0,114v123,9,222,-14,222,-126xm238,-126v0,85,-69,108,-163,100r0,-88r75,0r0,-26r-75,0r0,-86v94,-7,163,15,163,100","w":292,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":16,"Y":23,"X":20,"W":13,"V":16,"T":18,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 */
Cufon.registerFont({"w":180,"face":{"font-family":"matricium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 4 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-10 -329 389 72","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":108},"*":{"d":"65,-138r25,0r-5,-43r36,26r13,-22r-41,-18r41,-18r-13,-22r-36,26r5,-44r-25,0r5,44r-36,-26r-13,22r41,18r-41,18r13,22r36,-26","w":154,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00f8":7,"\u00e6":4,"\u00c6":36,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":36,"\u00c4":36,"t":-4,"s":4,"q":5,"o":7,"g":5,"e":7,"d":5,"c":7,"a":4,"J":29,"A":36}},"+":{"d":"94,-38r41,0r0,-69r69,0r0,-40r-69,0r0,-68r-41,0r0,68r-70,0r0,40r70,0r0,69","w":228},",":{"d":"17,52v52,0,59,-44,55,-101r-48,0r0,49r19,0v2,18,-9,30,-31,34","w":96,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":16,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"-":{"d":"20,-89r107,0r0,-43r-107,0r0,43","w":146,"k":{"\u00fd":5,"\u00dd":29,"\u00c1":14,"\u00c2":14,"\u00ff":5,"\u00c3":14,"\u00c0":14,"\u00b1":4,"\u00c6":14,"\u00c5":14,"\u00c4":14,"z":4,"y":5,"x":11,"w":4,"v":5,"Z":11,"Y":29,"X":18,"W":13,"V":14,"T":32,"A":14,"7":14,"3":4,"1":11}},".":{"d":"24,0r48,0r0,-49r-48,0r0,49","w":96,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"\/":{"d":"-9,46r38,0r163,-333r-38,0","w":187,"k":{"\u00f0":29,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":18,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00d7":14,"\u00fd":18,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":43,"\u00c2":43,"\u00ff":18,"\u00d5":14,"\u00c3":43,"\u00c0":43,"\u00f8":29,"\u00e6":23,"\u00b5":14,"\u00b1":4,"\u00d8":14,"\u00c6":43,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00d6":14,"\u00c7":14,"\u00c5":43,"\u00c4":43,"z":22,"y":18,"x":18,"w":18,"v":18,"u":18,"t":7,"s":31,"r":18,"q":25,"p":18,"o":29,"n":18,"m":18,"g":25,"f":9,"e":29,"d":25,"c":29,"a":23,"Z":7,"S":11,"Q":14,"O":14,"J":47,"G":14,"C":14,"A":43,"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"\/":59}},"0":{"d":"21,-126v0,75,36,130,109,130v74,0,110,-56,110,-131v0,-73,-36,-129,-109,-129v-73,0,-110,55,-110,130xm130,-216v87,1,86,179,1,180v-87,-2,-87,-178,-1,-180","w":260,"k":{"\u00b1":5,"7":10,"3":4,"2":4,"1":2,"\/":13,".":7,",":7}},"1":{"d":"64,0r44,0r0,-254v-43,-3,-67,14,-99,22r10,36r45,-13r0,209","w":142},"2":{"d":"111,-216v38,-3,53,44,30,71v-35,41,-83,73,-123,110r0,35r182,0r0,-39r-120,0v42,-44,110,-63,117,-141v7,-81,-115,-97,-157,-45v-6,7,-13,14,-19,22r32,25v17,-22,27,-36,58,-38","w":220,"k":{"7":3,"4":7}},"3":{"d":"15,-40v21,25,51,45,97,44v52,-1,88,-27,88,-80v0,-47,-33,-64,-74,-71r70,-72r0,-33r-166,0r0,39r109,0r-68,72r7,28v40,-2,78,4,78,39v1,24,-19,39,-43,38v-33,0,-50,-14,-67,-33","w":222,"k":{"9":2,"7":8,"5":2,"\/":4}},"4":{"d":"148,0r43,0r0,-57r36,0r0,-36r-36,0r0,-161r-38,0r-140,166r8,31r127,0r0,57xm66,-93r82,-100r0,100r-82,0","w":245,"k":{"9":4,"7":12,"1":7,"\/":7}},"5":{"d":"17,-34v46,57,186,52,186,-48v0,-67,-67,-92,-128,-72r4,-59r113,0r0,-39r-151,0r-7,123r26,18v32,-18,101,-16,99,31v-2,60,-91,49,-115,14","w":223,"k":{"\u00b1":2,"9":2,"7":11,"3":2,"2":4,"\/":7}},"6":{"d":"21,-119v-1,76,27,123,100,123v56,0,90,-31,94,-86v6,-78,-107,-102,-148,-54v3,-43,17,-80,60,-80v26,0,38,10,55,22r24,-34v-21,-16,-41,-28,-77,-28v-77,2,-107,58,-108,137xm171,-80v0,29,-19,46,-51,46v-32,0,-52,-16,-52,-46v0,-28,20,-44,51,-44v30,-1,52,16,52,44","w":236,"k":{"\u00b1":2,"9":4,"7":6,"3":4,"1":5,"\/":4}},"7":{"d":"38,0r50,0r114,-219r0,-33r-178,0r0,39r127,0","w":219,"k":{"\u00b1":4,"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,"\/":50,".":36,"-":11,",":36}},"8":{"d":"17,-69v0,52,45,73,96,73v54,0,97,-23,97,-74v0,-34,-21,-49,-46,-61v21,-11,39,-26,37,-57v-3,-47,-40,-68,-88,-68v-47,0,-85,23,-87,69v-1,30,16,46,37,56v-26,11,-46,28,-46,62xm158,-183v0,24,-22,38,-45,38v-24,0,-46,-15,-45,-39v1,-48,90,-45,90,1xm166,-72v0,55,-105,49,-106,1v0,-51,105,-53,106,-1","w":226,"k":{"\u00b1":2,"9":2,"7":4}},"9":{"d":"27,-26v21,17,43,31,81,30v76,-3,108,-60,108,-138v0,-73,-27,-122,-101,-122v-57,0,-90,33,-94,88v-6,77,109,103,149,53v-2,43,-19,79,-61,79v-27,0,-41,-10,-58,-24xm168,-172v0,30,-20,46,-51,46v-30,1,-51,-16,-51,-45v1,-30,18,-47,50,-47v30,0,52,19,52,46","w":236,"k":{"\u00b1":4,"7":5,"5":2,"3":4,"2":4,"\/":9,".":4,",":4}},":":{"d":"26,-141r48,0r0,-49r-48,0r0,49xm26,0r48,0r0,-49r-48,0r0,49","w":100,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":8}},";":{"d":"26,-141r48,0r0,-49r-48,0r0,49xm19,52v52,0,59,-44,55,-101r-48,0r0,49r19,0v2,18,-9,30,-31,34","w":100,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":8}},"\u037e":{"d":"26,-141r48,0r0,-49r-48,0r0,49xm19,52v52,0,59,-44,55,-101r-48,0r0,49r19,0v2,18,-9,30,-31,34","w":100},"<":{"d":"196,-28r0,-41r-129,-58r129,-57r0,-42r-172,80r0,39","w":228},"=":{"d":"27,-152r174,0r0,-40r-174,0r0,40xm27,-62r174,0r0,-40r-174,0r0,40","w":228},">":{"d":"32,-28r172,-79r0,-39r-172,-80r0,42r129,58r-129,57r0,41","w":228},"?":{"d":"136,-181v0,34,-36,36,-69,43r8,58r29,0r3,-29v41,-7,71,-26,73,-73v4,-89,-135,-90,-171,-33r27,29v16,-16,29,-29,58,-29v24,0,41,12,42,34xm64,0r48,0r0,-49r-48,0r0,49","w":194},"@":{"d":"19,-99v-6,131,147,196,256,130r-6,-10v-27,15,-50,24,-89,24v-88,0,-147,-55,-147,-144v0,-87,58,-144,144,-144v81,0,138,48,142,129v2,40,-12,70,-47,74v-23,2,-30,-18,-26,-41r15,-91r-35,-5r-4,21v-39,-55,-141,-10,-132,64v-6,69,87,86,121,43v9,14,28,26,53,25v48,-2,70,-38,70,-90v0,-88,-68,-142,-157,-142v-95,0,-154,62,-158,157xm176,-151v62,8,39,95,-11,96v-22,0,-39,-16,-39,-39v1,-33,19,-55,50,-57","w":352},"A":{"d":"11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"B":{"d":"228,-187v-1,-84,-113,-63,-196,-65r0,252v89,-4,209,22,210,-70v0,-36,-23,-50,-50,-61v20,-10,36,-26,36,-56xm184,-181v1,46,-62,33,-108,35r0,-67v44,2,107,-11,108,32xm198,-75v0,50,-73,33,-122,36r0,-69v48,3,122,-14,122,33","w":259,"k":{"&":-4,"\u00fd":4,"\u00dd":11,"\u00ff":4,"y":4,"w":4,"v":4,"Y":11,"X":7,"W":5,"V":7,"T":5,"?":2}},"C":{"d":"21,-126v-8,123,157,170,231,86r-29,-29v-18,18,-38,33,-72,33v-53,0,-83,-37,-83,-91v0,-52,31,-89,83,-89v32,0,51,16,70,32r29,-33v-23,-23,-53,-39,-99,-39v-80,0,-125,52,-130,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"W":1,"V":1,"Q":7,"O":7,"G":7,"C":7,"-":4}},"D":{"d":"260,-126v0,-115,-103,-135,-228,-126r0,252v125,8,228,-10,228,-126xm214,-126v0,72,-58,92,-137,86r0,-172v79,-6,137,14,137,86","w":281,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":15,"Y":23,"X":20,"W":14,"V":16,"T":16,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}},"E":{"d":"32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"F":{"d":"32,0r45,0r0,-103r127,0r0,-40r-127,0r0,-69r143,0r0,-40r-188,0r0,252","w":236,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00e5":9,"\u00e3":9,"\u00e4":9,"&":7,"\u00d7":2,"\u00fd":5,"\u00d2":2,"\u00d4":2,"\u00d3":2,"\u00c1":29,"\u00c2":29,"\u00ff":5,"\u00d5":2,"\u00c3":29,"\u00c0":29,"\u00bb":5,"\u00f8":5,"\u00e6":9,"\u00b5":2,"\u00d8":2,"\u00c6":29,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00d6":2,"\u00c7":2,"\u00c5":29,"\u00c4":29,"z":5,"y":5,"w":4,"v":5,"s":4,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"a":9,"Z":4,"Q":2,"O":2,"J":40,"G":2,"C":2,"A":29,"?":-4,"\/":25,".":36,",":36}},"G":{"d":"21,-126v0,80,49,128,131,130v47,0,79,-18,105,-39r0,-106r-107,0r0,39r64,0r0,47v-15,12,-35,19,-61,19v-54,0,-85,-36,-85,-91v0,-51,30,-89,81,-89v33,0,53,12,71,27r28,-33v-23,-21,-53,-35,-97,-34v-80,2,-130,52,-130,130","w":282,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00fd":2,"\u00dd":11,"\u00ff":2,"\u00e6":-4,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"y":2,"v":2,"a":-4,"\\":5,"Y":11,"X":4,"W":6,"V":8,"T":5,"?":4}},"H":{"d":"32,0r45,0r0,-106r120,0r0,106r44,0r0,-252r-44,0r0,105r-120,0r0,-105r-45,0r0,252","w":273},"I":{"d":"35,0r44,0r0,-252r-44,0r0,252","w":114},"J":{"d":"8,-37v16,22,42,42,80,41v56,-1,84,-32,85,-90r0,-166r-46,0r0,165v0,31,-13,50,-40,50v-25,0,-37,-15,-50,-30","w":201,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"J":7,"A":9,".":5,",":5}},"K":{"d":"32,0r45,0r0,-73r39,-40r86,113r54,0r-110,-144r105,-108r-54,0r-120,127r0,-127r-45,0r0,252","w":261,"k":{"\u00f0":11,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":1,"\u00d7":19,"\u00fd":18,"\u00dd":12,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":19,"\u00d4":19,"\u00d3":19,"\u00c1":5,"\u00c2":5,"\u00ff":18,"\u00d5":19,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":11,"\u00e6":4,"\u00b5":19,"\u00d8":19,"\u00c6":5,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":5,"\u00d6":19,"\u00c7":19,"\u00c5":5,"\u00c4":5,"y":18,"w":18,"v":22,"u":7,"t":9,"q":9,"o":11,"g":9,"f":7,"e":11,"d":9,"c":11,"a":4,"Y":12,"W":11,"V":11,"U":5,"T":4,"S":4,"Q":19,"O":19,"G":19,"C":19,"A":5,"-":18}},"L":{"d":"32,0r177,0r0,-40r-132,0r0,-212r-45,0r0,252","w":222,"k":{"\u00f0":4,"\u00ae":32,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"&":1,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":7,"\u00db":7,"\u00da":7,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":4,"\u00b5":14,"\u00d8":14,"\u00dc":7,"\u00d6":14,"\u00c7":14,"y":22,"w":18,"v":22,"t":7,"q":2,"o":4,"g":2,"f":7,"e":4,"d":2,"c":4,"\\":43,"Y":47,"W":36,"V":41,"U":7,"T":36,"Q":14,"O":14,"G":14,"C":14,"?":22,"-":14,"*":29}},"M":{"d":"32,0r44,0r0,-180r80,118r80,-119r0,181r44,0r0,-252r-47,0r-77,119r-76,-119r-48,0r0,252","w":312},"N":{"d":"32,0r44,0r0,-179r139,179r37,0r0,-252r-44,0r0,174r-135,-174r-41,0r0,252","w":284},"O":{"d":"21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"P":{"d":"228,-167v2,-94,-100,-87,-196,-85r0,252r45,0r0,-81v83,5,150,-10,151,-86xm183,-167v0,48,-55,48,-106,46r0,-91v50,-1,106,-4,106,45","w":240,"k":{"\u00f0":2,"\u00fc":-2,"\u00fb":-2,"\u00f9":-2,"\u00fa":-2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":2,"\u00fd":-4,"\u00dd":4,"\u00c1":25,"\u00c2":25,"\u00ff":-4,"\u00c3":25,"\u00c0":25,"\u00ab":-4,"\u00f8":2,"\u00e6":4,"\u00c6":25,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":25,"\u00c4":25,"y":-4,"w":-4,"v":-4,"u":-2,"t":-5,"o":2,"f":-5,"e":2,"c":2,"a":4,"Z":5,"Y":4,"X":11,"W":2,"V":4,"J":36,"A":25,"\/":22,".":36,",":36}},"Q":{"d":"153,4v32,0,56,-9,76,-23r31,27r28,-32r-29,-25v15,-20,26,-46,26,-78v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,131v0,78,51,129,132,129xm197,-49v-57,34,-133,-8,-129,-78v3,-53,31,-88,85,-89v68,-1,106,78,72,138r-43,-40r-29,33","w":306,"k":{")":4,"\u00dd":23,"Y":23,"W":14,"V":15,"T":14,"?":7}},"R":{"d":"238,-172v0,-96,-112,-79,-206,-80r0,252r45,0r0,-88r55,0r62,88r52,0r-68,-95v34,-10,60,-34,60,-77xm193,-170v0,52,-64,43,-116,43r0,-85v51,1,116,-11,116,42","w":260,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00dd":9,"\u00f8":4,"t":-4,"q":2,"o":4,"g":2,"f":-4,"e":4,"d":2,"c":4,"Y":9,"W":5,"V":7,"T":1,"J":2}},"S":{"d":"70,-186v6,-48,86,-29,109,-4r24,-34v-54,-57,-211,-34,-172,72v19,48,103,35,133,72v9,27,-13,44,-42,44v-37,0,-57,-14,-80,-32r-27,31v46,53,196,64,196,-35v1,-80,-100,-60,-139,-101v-2,-4,-2,-8,-2,-13","w":230,"k":{"\u00fd":5,"\u00dd":11,"\u00c1":5,"\u00c2":5,"\u00ff":5,"\u00c3":5,"\u00c0":5,"\u00c6":5,"\u00c5":5,"\u00c4":5,"z":2,"y":5,"x":5,"w":4,"v":5,"t":2,"f":2,"\\":7,"Z":4,"Y":11,"X":9,"W":9,"V":11,"T":5,"S":4,"A":5,"?":4}},"T":{"d":"94,0r45,0r0,-211r80,0r0,-41r-205,0r0,41r80,0r0,211","w":233,"k":{"\u00f0":41,"\u00fc":23,"\u00fb":23,"\u00f9":23,"\u00fa":23,"\u00f5":41,"\u00f6":41,"\u00f4":41,"\u00f2":41,"\u00f3":41,"\u00f1":26,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":41,"\u00ea":41,"\u00e8":41,"\u00e9":41,"\u00e7":41,"\u00e5":41,"\u00e3":41,"\u00e4":41,"&":19,"\u00d7":14,"\u00fd":23,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":32,"\u00c2":32,"\u00ff":23,"\u00d5":14,"\u00c3":32,"\u00c0":32,"\u00bb":25,"\u00ab":32,"\u00f8":41,"\u00e6":41,"\u00b5":14,"\u00d8":14,"\u00c6":32,"\u00e2":41,"\u00e0":41,"\u00e1":41,"\u00d6":14,"\u00c7":14,"\u00c5":32,"\u00c4":32,"z":32,"y":23,"x":23,"w":21,"v":23,"u":23,"t":10,"s":35,"r":26,"q":37,"p":26,"o":41,"n":26,"m":26,"l":4,"k":4,"j":7,"i":7,"h":4,"g":37,"f":13,"e":41,"d":37,"c":41,"b":4,"a":41,"Z":5,"S":5,"Q":14,"O":14,"J":40,"G":14,"C":14,"A":32,";":8,":":8,"\/":32,".":36,"-":32,",":36}},"U":{"d":"28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"V":{"d":"116,2r38,0r105,-254r-48,0r-75,194r-76,-194r-49,0","w":270,"k":{"\u00f0":25,"\u00fc":14,"\u00fb":14,"\u00f9":14,"\u00fa":14,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00f1":14,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":25,"\u00ea":25,"\u00e8":25,"\u00e9":25,"\u00e7":25,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":16,"\u00d7":15,"\u00fd":14,"\u00dd":7,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":36,"\u00c2":36,"\u00ff":14,"\u00d5":15,"\u00c3":36,"\u00c0":36,"\u00bb":14,"\u00ab":22,"\u00f8":25,"\u00e6":25,"\u00b5":15,"\u00d8":15,"\u00c6":36,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":15,"\u00c7":15,"\u00c5":36,"\u00c4":36,"z":20,"y":14,"x":18,"w":13,"v":14,"u":14,"t":7,"s":22,"r":14,"q":23,"p":14,"o":25,"n":14,"m":14,"l":4,"k":4,"j":7,"i":7,"h":4,"g":23,"f":9,"e":25,"d":23,"c":25,"b":4,"a":25,"Z":4,"Y":7,"X":7,"W":4,"V":4,"S":9,"Q":15,"O":15,"J":43,"G":15,"C":15,"A":36,";":7,":":7,"\/":43,".":43,"-":14,",":43}},"W":{"d":"101,2r38,0r62,-181r62,181r38,0r88,-254r-47,0r-60,187r-62,-188r-37,0r-62,188r-60,-187r-48,0","w":401,"k":{"\u00f0":23,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":23,"\u00f6":23,"\u00f4":23,"\u00f2":23,"\u00f3":23,"\u00f1":13,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":23,"\u00ea":23,"\u00e8":23,"\u00e9":23,"\u00e7":23,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":13,"\u00d7":14,"\u00fd":13,"\u00dd":7,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":32,"\u00c2":32,"\u00ff":13,"\u00d5":14,"\u00c3":32,"\u00c0":32,"\u00bb":13,"\u00ab":18,"\u00f8":23,"\u00e6":25,"\u00b5":14,"\u00d8":14,"\u00c6":32,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":14,"\u00c7":14,"\u00c5":32,"\u00c4":32,"z":20,"y":13,"x":14,"w":13,"v":13,"u":13,"t":9,"s":22,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":4,"k":4,"j":5,"i":5,"h":4,"g":22,"f":11,"e":23,"d":22,"c":23,"b":4,"a":25,"Z":4,"Y":7,"X":5,"W":4,"V":4,"S":7,"Q":14,"O":14,"J":38,"G":14,"C":14,"A":32,";":5,":":5,"\/":36,".":36,"-":13,",":36}},"X":{"d":"13,0r51,0r67,-95r66,95r52,0r-91,-129r88,-123r-51,0r-63,90r-63,-90r-52,0r88,124","w":262,"k":{"\u00f0":16,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00eb":16,"\u00ea":16,"\u00e8":16,"\u00e9":16,"\u00e7":16,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":4,"\u00d7":18,"\u00fd":14,"\u00dd":10,"\u00d9":4,"\u00db":4,"\u00da":4,"\u00d2":18,"\u00d4":18,"\u00d3":18,"\u00c1":5,"\u00c2":5,"\u00ff":14,"\u00d5":18,"\u00c3":5,"\u00c0":5,"\u00bb":7,"\u00ab":18,"\u00f8":16,"\u00e6":4,"\u00b5":18,"\u00d8":18,"\u00c6":5,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":4,"\u00d6":18,"\u00c7":18,"\u00c5":5,"\u00c4":5,"y":14,"w":14,"v":18,"u":7,"t":7,"q":14,"o":16,"l":4,"k":4,"j":4,"i":4,"h":4,"g":14,"f":7,"e":16,"d":14,"c":16,"b":4,"a":4,"Y":10,"W":5,"V":7,"U":4,"S":11,"Q":18,"O":18,"J":4,"G":18,"C":18,"A":5,"?":5,"-":18}},"Y":{"d":"107,0r44,0r0,-100r100,-152r-50,0r-72,112r-70,-112r-53,0r101,153r0,99","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":22,"\u00d7":22,"\u00fd":22,"\u00dd":5,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":5,"X":10,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"Z":{"d":"23,0r207,0r0,-39r-149,0r149,-180r0,-33r-202,0r0,39r144,0r-149,180r0,33","w":252,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"&":2,"\u00d7":13,"\u00fd":5,"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00ff":5,"\u00d5":13,"\u00ab":7,"\u00f8":9,"\u00b5":13,"\u00d8":13,"\u00d6":13,"\u00c7":13,"y":5,"w":5,"v":7,"q":7,"o":9,"g":7,"f":4,"e":9,"d":7,"c":9,"Z":4,"S":4,"Q":13,"O":13,"G":13,"C":13,"-":11}},"[":{"d":"32,47r110,0r0,-34r-69,0r0,-231r69,0r0,-34r-110,0r0,299","w":163,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":7,"\u00e6":4,"\u00b5":7,"\u00d8":7,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":7,"v":7,"s":5,"q":7,"o":7,"j":-11,"g":7,"e":7,"d":7,"c":7,"a":4,"Q":7,"O":7,"J":4,"G":7,"C":7}},"\\":{"d":"159,46r38,0r-163,-333r-38,0","w":187,"k":{"\u00d7":14,"\u00fd":22,"\u00dd":40,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":22,"v":25,"t":11,"j":-11,"f":4,"Y":40,"W":36,"V":43,"U":5,"T":32,"Q":14,"O":14,"G":14,"C":14}},"]":{"d":"21,47r111,0r0,-299r-111,0r0,34r69,0r0,231r-69,0r0,34","w":163},"^":{"d":"20,-177r33,0r37,-48r36,48r34,0r-55,-75r-30,0"},"_":{"d":"-1,58r218,0r0,-34r-218,0r0,34","w":216},"`":{"d":"89,-214r33,0r-38,-59r-39,17"},"a":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"b":{"d":"71,-30v14,17,32,36,64,34v55,-3,89,-39,89,-99v0,-59,-32,-96,-89,-99v-32,-1,-50,17,-64,36r0,-105r-44,0r0,263r44,0r0,-30xm180,-95v0,35,-19,61,-55,61v-35,0,-55,-25,-55,-61v1,-37,20,-61,55,-61v36,0,55,26,55,61","w":241,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"c":{"d":"17,-95v-6,94,122,130,176,64r-26,-26v-30,41,-107,24,-107,-38v0,-60,75,-79,105,-37r27,-29v-18,-19,-39,-34,-76,-33v-60,2,-95,39,-99,99","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"d":{"d":"18,-95v0,60,33,96,88,99v34,2,51,-17,65,-36r0,32r43,0r0,-263r-43,0r0,102v-15,-17,-33,-35,-65,-33v-56,3,-88,39,-88,99xm171,-95v0,36,-20,61,-55,61v-35,0,-54,-25,-54,-61v0,-36,19,-61,54,-61v35,0,55,25,55,61","w":241},"e":{"d":"17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"f":{"d":"131,-260v-51,-16,-104,6,-94,71r-24,0r0,36r24,0r0,153r44,0r0,-153r49,0r0,-36r-50,0v-7,-37,25,-46,51,-34r0,-37","w":135,"k":{"\u00f0":4,"\u00ae":-16,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,")":-11,"\u00ab":5,"\u00f8":4,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":-11,"z":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":5,"]":-7,"\\":-11,"?":-13,"\/":16,".":16,",":16,"*":-11}},"g":{"d":"171,-50v15,83,-85,86,-128,53r-16,33v70,42,187,29,187,-75r0,-151r-43,0r0,28v-16,-17,-35,-32,-67,-32v-53,0,-83,35,-86,90v-5,87,114,117,153,54xm171,-105v0,34,-22,53,-55,53v-33,0,-54,-19,-54,-53v1,-33,20,-52,54,-52v34,1,55,19,55,52","w":241,"k":{"\\":18}},"h":{"d":"130,-194v-30,0,-46,16,-59,33r0,-102r-44,0r0,263r44,0v5,-60,-21,-154,43,-154v63,0,34,96,40,154r44,0v-3,-84,21,-194,-68,-194","w":223,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"i":{"d":"28,-219r47,0r0,-42r-47,0r0,42xm30,0r43,0r0,-190r-43,0r0,190","w":102},"j":{"d":"28,-219r47,0r0,-42r-47,0r0,42xm30,0v1,20,-14,26,-33,22r0,35v44,8,76,-8,76,-54r0,-193r-43,0r0,190","w":102},"k":{"d":"27,0r44,0r0,-54r27,-28r57,82r50,0r-78,-113r76,-77r-53,0r-79,84r0,-157r-44,0r0,263","w":209,"k":{"\u00f0":9,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00fd":5,"\u00ff":5,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"y":5,"w":7,"v":7,"u":4,"t":4,"q":9,"o":9,"g":9,"e":9,"d":9,"c":9,"a":4,"\\":14,"-":7}},"l":{"d":"30,0r43,0r0,-263r-43,0r0,263","w":102},"m":{"d":"185,-161v-14,-44,-98,-41,-114,0r0,-29r-44,0r0,190r44,0v5,-59,-22,-154,41,-154v61,0,31,97,38,154r44,0v5,-59,-21,-153,40,-154v62,-1,32,96,39,154r43,0v-3,-83,22,-197,-66,-194v-31,1,-50,15,-65,33","w":342,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"n":{"d":"130,-194v-30,0,-46,16,-59,33r0,-29r-44,0r0,190r44,0v5,-60,-21,-154,43,-154v63,0,34,96,40,154r44,0v-3,-84,21,-194,-68,-194","w":223,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"o":{"d":"17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"p":{"d":"135,-194v-32,-1,-50,17,-64,36r0,-32r-44,0r0,248r44,0r0,-88v14,17,32,36,64,34v55,-3,89,-39,89,-99v0,-59,-32,-96,-89,-99xm180,-95v0,35,-19,61,-55,61v-35,0,-55,-25,-55,-61v1,-37,20,-61,55,-61v36,0,55,26,55,61","w":241,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"q":{"d":"106,4v34,2,51,-17,65,-36r0,90r43,0r0,-248r-43,0r0,29v-15,-17,-33,-35,-65,-33v-56,3,-88,39,-88,99v0,60,33,96,88,99xm171,-95v0,36,-20,61,-55,61v-35,0,-54,-25,-54,-61v0,-36,19,-61,54,-61v35,0,55,25,55,61","w":241,"k":{"\\":18}},"r":{"d":"138,-194v-36,-2,-56,21,-67,47r0,-43r-44,0r0,190r44,0v-1,-73,-7,-151,67,-148r0,-46","w":148,"k":{"\u00f0":6,"\u00f5":6,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00eb":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e7":6,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00ab":4,"\u00f8":6,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"z":4,"q":5,"o":6,"g":5,"e":6,"d":5,"c":6,"a":9,"\\":11,"\/":27,".":32,",":32,"*":-7}},"s":{"d":"123,-52v-9,39,-73,15,-92,-2r-19,29v44,46,183,35,146,-54v-14,-33,-66,-30,-93,-51v-12,-14,5,-31,23,-29v20,1,38,8,53,18r18,-31v-46,-41,-168,-20,-132,60v15,32,67,29,93,50v2,3,3,6,3,10","k":{")":7,"\u00fd":5,"\u00ff":5,"\u00ab":4,"}":4,"z":4,"y":5,"x":9,"w":5,"v":7,"t":4,"s":4,"]":5,"\\":27,"?":13}},"t":{"d":"36,-153v3,67,-20,156,55,156v17,0,28,-3,39,-9r0,-36v-20,9,-50,11,-50,-17r0,-94r51,0r0,-37r-51,0r0,-52r-44,0r0,52r-24,0r0,37r24,0","w":147,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":4,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":14}},"u":{"d":"25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"v":{"d":"87,1r40,0r77,-191r-45,0r-52,140r-51,-140r-47,0","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":5,"\u00ff":5,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":5,"x":4,"w":5,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"w":{"d":"73,1r39,0r43,-130r42,130r39,0r62,-191r-43,0r-39,130r-42,-131r-38,0r-42,131r-38,-130r-44,0","w":309,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00fd":4,"\u00ff":4,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":5,"q":7,"o":9,"g":7,"e":9,"d":7,"c":9,"a":7,"]":7,"\\":18,"?":4,"\/":22,".":25,"-":4,",":25}},"x":{"d":"11,0r46,0r47,-67r46,67r48,0r-70,-98r67,-92r-46,0r-44,63r-44,-63r-48,0r68,94","w":208,"k":{"\u00f0":13,"\u00f5":13,"\u00f6":13,"\u00f4":13,"\u00f2":13,"\u00f3":13,"\u00eb":13,"\u00ea":13,"\u00e8":13,"\u00e9":13,"\u00e7":13,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":16,"\u00f8":13,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":4,"y":4,"w":4,"v":4,"s":7,"q":11,"o":13,"g":11,"e":13,"d":11,"c":13,"a":5,"]":4,"\\":18,"?":5,"-":11}},"y":{"d":"21,47v29,20,83,13,96,-17v30,-70,58,-148,87,-220r-45,0r-49,141r-54,-141r-47,0r80,190v-6,23,-33,27,-53,15","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"z":{"d":"19,0r165,0r0,-36r-110,0r110,-124r0,-30r-161,0r0,36r106,0r-110,124r0,30","w":201,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":5,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":16}},"{":{"d":"19,-87v87,-16,14,105,90,127v11,4,25,8,41,11r7,-29v-39,-7,-52,-27,-48,-76v3,-30,-14,-41,-37,-49v31,-8,36,-35,36,-76v0,-34,20,-42,49,-50r-7,-28v-55,7,-88,30,-81,98v3,32,-16,40,-50,39r0,33","w":175,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":5,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"z":4,"y":4,"x":4,"w":4,"v":4,"s":4,"q":5,"o":5,"j":-13,"g":4,"e":5,"d":5,"c":5,"Q":7,"O":7,"J":4,"G":7,"C":7}},"|":{"d":"42,46r35,0r0,-333r-35,0r0,333","w":119},"}":{"d":"66,-54v0,48,-9,71,-48,76r8,29v54,-9,86,-29,81,-98v-3,-33,15,-42,50,-40r0,-33v-87,17,-15,-105,-91,-126v-11,-3,-24,-8,-40,-11r-8,28v38,6,48,28,48,76v0,30,14,42,38,50v-23,8,-38,19,-38,49","w":175},"~":{"d":"45,-82v14,-46,72,22,97,-16v6,-8,11,-18,15,-33r-24,-7v-15,45,-72,-22,-97,15v-6,8,-11,19,-15,33","w":178},"\u00c4":{"d":"157,-276r45,0r0,-41r-45,0r0,41xm83,-276r45,0r0,-41r-45,0r0,41xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00c5":{"d":"142,-306v-39,-4,-57,48,-27,67r-104,239r45,0r26,-61r119,0r26,61r47,0r-105,-239v30,-17,13,-72,-27,-67xm98,-100r43,-101r44,101r-87,0xm142,-247v-13,0,-23,-8,-23,-21v0,-13,10,-21,23,-21v14,0,24,9,24,21v0,12,-10,21,-24,21","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00c7":{"d":"21,-126v0,71,42,114,102,128r-28,42r39,16r23,-56v45,-1,71,-22,95,-44r-29,-29v-18,18,-38,33,-72,33v-53,0,-83,-37,-83,-91v0,-52,31,-89,83,-89v32,0,51,16,70,32r29,-33v-23,-23,-53,-39,-99,-39v-80,0,-130,52,-130,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"W":1,"V":1,"Q":7,"O":7,"G":7,"C":7,"-":4}},"\u00c9":{"d":"109,-273r34,0r46,-35r-40,-17xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d1":{"d":"188,-324v-15,44,-73,-22,-98,15v-6,8,-11,19,-15,33r24,7v14,-45,72,20,98,-15v6,-8,11,-19,15,-33xm32,0r44,0r0,-179r139,179r37,0r0,-252r-44,0r0,174r-135,-174r-41,0r0,252","w":284},"\u00d6":{"d":"168,-276r44,0r0,-41r-44,0r0,41xm94,-276r45,0r0,-41r-45,0r0,41xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00dc":{"d":"151,-273r44,0r0,-40r-44,0r0,40xm77,-273r45,0r0,-40r-45,0r0,40xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00e1":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm89,-214r32,0r45,-42r-40,-17","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e0":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm90,-214r33,0r-37,-59r-40,17","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e2":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm44,-214r34,0r27,-24r29,24r34,0r-42,-53r-40,0","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00b4":{"d":"58,-214r33,0r44,-42r-39,-17"},"\u00a8":{"d":"103,-214r44,0r0,-43r-44,0r0,43xm33,-214r44,0r0,-43r-44,0r0,43"},"\u00c6":{"d":"4,0r46,0r34,-61r91,0r0,61r181,0r0,-40r-136,0r0,-67r118,0r0,-40r-118,0r0,-65r134,0r0,-40r-209,0xm105,-100r63,-113r7,0r0,113r-70,0","w":376,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d8":{"d":"79,-17v19,13,43,22,74,21v81,-3,132,-51,132,-131v0,-37,-14,-65,-33,-86r36,-41r-44,0r-17,19v-19,-13,-43,-22,-74,-21v-81,3,-132,51,-132,131v0,37,14,66,33,87r-36,40r44,0xm84,-72v-54,-72,28,-186,115,-130xm222,-180v54,72,-28,186,-115,130","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00b1":{"d":"14,-40v22,24,54,44,98,44v55,1,90,-26,90,-76v0,-32,-20,-49,-45,-57v20,-11,38,-27,38,-60v0,-64,-87,-81,-139,-55v-14,8,-26,20,-37,34r31,25v15,-16,29,-31,57,-31v25,0,44,11,44,34v0,33,-38,39,-76,36r0,38v40,-1,83,-1,83,36v0,23,-20,36,-45,36v-33,0,-52,-14,-68,-32","w":219,"k":{"7":4}},"\u00a5":{"d":"102,0r43,0r0,-37r69,0r0,-32r-69,0r0,-26r69,0r0,-32r-57,0r83,-125r-50,0r-66,105r-66,-105r-51,0r83,125r-57,0r0,32r69,0r0,26r-69,0r0,32r69,0r0,37","w":246,"k":{"4":7}},"\u00b5":{"d":"21,-126v0,93,82,150,177,122r42,40r65,0v-17,-26,-43,-41,-63,-64v24,-22,43,-57,43,-99v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u03bc":{"d":"21,-126v0,93,82,150,177,122r42,40r65,0v-17,-26,-43,-41,-63,-64v24,-22,43,-57,43,-99v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306},"\u00aa":{"d":"20,-178v0,38,54,41,70,19r0,12r25,0v0,-51,10,-106,-46,-106v-17,0,-28,3,-40,9r7,19v17,-9,59,-12,55,17v-28,-9,-71,-3,-71,30xm19,-102r97,0r0,-20r-97,0r0,20xm91,-192v7,28,-43,42,-46,13v-1,-20,31,-17,46,-13","w":140},"\u00ba":{"d":"16,-199v0,32,21,54,54,54v34,0,55,-23,55,-55v0,-31,-22,-54,-54,-54v-32,0,-55,22,-55,55xm18,-102r104,0r0,-20r-104,0r0,20xm99,-199v0,18,-10,33,-28,32v-17,0,-31,-14,-30,-33v0,-17,11,-31,29,-31v17,0,29,14,29,32","w":140},"\u00e6":{"d":"14,-55v2,77,118,68,152,27v28,43,126,41,152,-3r-26,-23v-28,36,-105,28,-106,-26r139,0v4,-65,-26,-114,-89,-114v-30,0,-52,14,-67,32v-19,-40,-100,-37,-138,-15r12,35v33,-18,107,-21,100,32v-52,-18,-131,-8,-129,55xm185,-108v-3,-51,78,-70,93,-20v2,6,4,13,5,20r-98,0xm150,-53v-15,14,-31,23,-56,24v-19,0,-36,-9,-36,-29v0,-36,57,-32,85,-23v0,10,3,21,7,28","w":342,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00f8":{"d":"63,-11v67,38,160,-4,157,-84v-1,-26,-10,-49,-24,-64r29,-33r-40,0r-12,13v-67,-38,-156,4,-156,85v0,27,10,48,23,64r-28,32r39,0xm68,-62v-31,-50,22,-121,79,-86xm168,-128v31,49,-21,121,-79,87","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00bf":{"d":"82,-203r49,0r0,-49r-49,0r0,49xm59,-135v-74,27,-46,147,40,138v41,-4,66,-17,87,-40r-27,-29v-18,31,-100,46,-100,-6v0,-33,36,-35,68,-42r-7,-58r-29,0r-4,29v-10,2,-19,4,-28,8","w":194,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00d7":7,"\u00fd":13,"\u00dd":25,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":13,"\u00d5":7,"\u00e6":-4,"\u00b5":7,"\u00d8":7,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"\u00dc":5,"\u00d6":7,"\u00c7":7,"y":13,"w":13,"v":16,"t":5,"f":4,"a":-4,"Y":25,"X":4,"W":18,"V":22,"U":5,"T":22,"Q":7,"O":7,"G":7,"C":7}},"\u00a1":{"d":"31,-203r47,0r0,-49r-47,0r0,49xm29,0r51,0r-13,-172r-25,0","w":108},"\u00ac":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00ab":{"d":"166,-15r33,-17r-47,-63r47,-64r-33,-17r-59,82xm76,-15r33,-17r-48,-63r48,-64r-33,-17r-60,82","w":218,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":5,"\u00dd":27,"\u00ff":5,"\u00f8":4,"y":5,"x":5,"w":4,"v":5,"q":2,"o":4,"g":2,"e":4,"d":2,"c":4,"Y":27,"X":7,"W":13,"V":14,"T":25}},"\u00bb":{"d":"143,-15v19,-28,42,-52,59,-81r-59,-80r-34,18r48,63r-48,64xm52,-15v19,-28,42,-52,60,-81r-60,-80r-33,18r48,63r-48,64","w":218,"k":{"\u00fd":11,"\u00dd":36,"\u00c1":7,"\u00c2":7,"\u00ff":11,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"z":7,"y":11,"x":16,"w":7,"v":11,"t":4,"s":4,"f":4,"Z":5,"Y":36,"X":18,"W":18,"V":22,"T":32,"S":4,"A":7}},"\u00a0":{"w":108},"\u00c0":{"d":"119,-329r-39,18r46,35r34,0xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00c3":{"d":"188,-328v-15,44,-73,-22,-98,15v-6,8,-11,19,-15,33r24,7v15,-46,73,22,98,-15v6,-8,11,-19,15,-33xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00d5":{"d":"199,-328v-15,44,-73,-22,-99,15v-6,8,-10,19,-14,33r24,7v15,-46,73,22,98,-15v6,-8,11,-19,15,-33xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00f7":{"d":"90,-179r48,0r0,-46r-48,0r0,46xm204,-108r0,-37r-180,0r0,37r180,0xm90,-29r48,0r0,-46r-48,0r0,46","w":228},"\u00ff":{"d":"21,47v29,20,83,13,96,-17v30,-70,58,-148,87,-220r-45,0r-49,141r-54,-141r-47,0r80,190v-6,23,-33,27,-53,15xm120,-214r45,0r0,-43r-45,0r0,43xm50,-214r44,0r0,-43r-44,0r0,43","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00b7":{"d":"24,-86r48,0r0,-49r-48,0r0,49","w":96},"\u22c5":{"d":"24,-86r48,0r0,-49r-48,0r0,49","w":96},"\u00c2":{"d":"78,-275r36,0r28,-21r28,21r36,0r-43,-49r-41,0xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00ca":{"d":"62,-273r36,0r28,-21r28,21r36,0r-43,-48r-41,0xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c1":{"d":"124,-276r34,0r46,-35r-39,-18xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00cb":{"d":"141,-273r45,0r0,-40r-45,0r0,40xm67,-273r45,0r0,-40r-45,0r0,40xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c8":{"d":"104,-325r-40,17r46,35r34,0xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00cd":{"d":"40,-273r33,0r47,-35r-40,-17xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00ce":{"d":"-7,-273r36,0r28,-21r28,21r36,0r-43,-48r-41,0xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00cf":{"d":"72,-273r45,0r0,-40r-45,0r0,40xm-2,-273r45,0r0,-40r-45,0r0,40xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00cc":{"d":"35,-325r-40,17r46,35r34,0xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00d3":{"d":"135,-276r34,0r46,-35r-40,-18xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d4":{"d":"89,-276r36,0r28,-21r27,21r37,0r-43,-49r-42,0xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d2":{"d":"130,-329r-39,18r45,35r35,0xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00da":{"d":"118,-273r34,0r46,-34r-39,-18xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00db":{"d":"72,-273r36,0r28,-20r27,20r37,0r-43,-48r-41,0xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00d9":{"d":"113,-325r-39,18r46,34r34,0xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00af":{"d":"29,-218r122,0r0,-32r-122,0r0,32"},"\u00b8":{"d":"85,60r28,-66r-32,0r-34,50"},"\u00a4":{"d":"51,-81v8,74,120,116,176,55v6,-6,11,-13,16,-20r-31,-23v-16,29,-60,47,-92,21v-10,-8,-17,-19,-22,-33r78,0r0,-31r-85,0r0,-30r85,0r0,-31r-78,0v9,-24,26,-44,56,-44v30,0,40,15,55,33r34,-25v-19,-26,-42,-48,-88,-47v-59,1,-86,38,-102,83r-34,0r0,31r28,0r-1,30r-27,0r0,31r32,0","w":259,"k":{"1":-7}},"\u00dd":{"d":"111,-273r34,0r46,-34r-40,-18xm107,0r44,0r0,-100r100,-152r-50,0r-72,112r-70,-112r-53,0r101,153r0,99","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":22,"\u00d7":22,"\u00fd":22,"\u00dd":5,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":5,"X":10,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"\u00fd":{"d":"21,47v29,20,83,13,96,-17v30,-70,58,-148,87,-220r-45,0r-49,141r-54,-141r-47,0r80,190v-6,23,-33,27,-53,15xm90,-214r33,0r44,-42r-40,-17","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00de":{"d":"183,-127v0,47,-55,47,-106,45r0,-90v51,-1,106,-5,106,45xm228,-128v0,-77,-68,-90,-151,-85r0,-39r-45,0r0,252r45,0r0,-42v83,5,151,-10,151,-86","w":242},"\u00fe":{"d":"135,-194v-32,-1,-50,17,-64,36r0,-105r-44,0r0,321r44,0r0,-88v14,18,32,36,65,34v55,-4,88,-39,88,-99v0,-59,-32,-96,-89,-99xm180,-95v0,35,-19,61,-55,61v-35,0,-55,-25,-55,-61v1,-37,20,-61,55,-61v36,0,55,26,55,61","w":241,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"\u00bd":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00bc":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b9":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00be":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b3":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b2":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00a6":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00d7":{"d":"21,-126v0,93,82,150,177,122r42,40r65,0v-17,-26,-43,-41,-63,-64v24,-22,43,-57,43,-99v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"!":{"d":"42,-80r25,0r13,-172r-51,0xm31,0r47,0r0,-49r-47,0r0,49","w":108},"\"":{"d":"100,-144r23,0r35,-108r-49,0xm22,-144r22,0r35,-108r-49,0","w":175},"#":{"d":"36,0r39,0r10,-58r59,0r-10,58r38,0r10,-58r43,0r0,-37r-36,0r10,-63r39,0r0,-37r-32,0r9,-57r-38,0r-10,57r-59,0r10,-57r-38,0r-10,57r-43,0r0,37r36,0r-10,63r-39,0r0,37r32,0xm91,-95r11,-63r59,0r-11,63r-59,0","w":252},"$":{"d":"18,-36v23,18,50,30,85,35r0,36r31,0r0,-35v44,-5,77,-25,77,-71v0,-47,-33,-62,-79,-74r0,-68v17,4,33,11,49,23r21,-34v-19,-13,-40,-24,-68,-27r0,-22r-31,0r0,21v-42,5,-76,23,-76,69v0,49,36,64,77,74r0,71v-27,-5,-44,-16,-63,-31xm104,-152v-44,-3,-46,-63,0,-64r0,64xm132,-102v27,2,49,34,27,56v-6,5,-15,8,-27,9r0,-65","w":231,"k":{"7":4}},"%":{"d":"17,-190v0,37,21,64,59,64v39,0,60,-26,60,-65v0,-38,-21,-64,-59,-64v-39,0,-60,28,-60,65xm43,0r35,0r185,-252r-36,0xm170,-62v0,39,21,65,59,65v38,0,59,-27,59,-65v0,-38,-21,-64,-59,-64v-38,0,-59,26,-59,64xm76,-227v36,0,38,74,1,73v-18,0,-28,-18,-28,-37v0,-18,10,-36,27,-36xm256,-62v0,19,-9,37,-27,37v-18,0,-27,-18,-27,-37v0,-19,9,-37,27,-36v17,0,27,18,27,36","w":305},"&":{"d":"14,-69v-3,84,120,90,160,40r33,34r33,-23r-40,-41v12,-17,24,-37,34,-57r-33,-18v-7,18,-17,34,-27,49r-43,-44v30,-12,55,-28,55,-66v0,-38,-25,-61,-67,-61v-68,0,-92,76,-51,116v-30,12,-53,34,-54,71xm118,-221v27,-1,39,36,19,52v-7,6,-17,11,-30,16v-23,-18,-29,-67,11,-68xm148,-55v-20,29,-91,31,-89,-16v1,-21,13,-33,33,-41","w":250,"k":{"\u00dd":23,"Y":23,"W":17,"V":21,"T":22,"S":1}},"'":{"d":"22,-144r23,0r35,-108r-50,0","w":96},"(":{"d":"122,-257v-58,32,-99,74,-99,154v0,79,42,122,99,154r19,-29v-44,-30,-75,-61,-75,-125v0,-64,34,-98,75,-125","w":158,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00d7":11,"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00d5":11,"\u00f8":11,"\u00b5":11,"\u00d8":11,"\u00d6":11,"\u00c7":11,"s":5,"q":11,"o":11,"j":-11,"g":7,"e":11,"d":11,"c":11,"Q":11,"O":11,"J":5,"G":11,"C":11}},")":{"d":"93,-103v0,65,-35,98,-76,125r19,29v58,-32,100,-74,100,-154v0,-80,-43,-122,-100,-154r-19,29v45,30,76,61,76,125","w":158},"\u00e4":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm119,-214r44,0r0,-43r-44,0r0,43xm49,-214r44,0r0,-43r-44,0r0,43","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e3":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm152,-266v-14,46,-71,-23,-97,15v-6,8,-11,19,-15,33r24,7v15,-45,72,22,97,-15v6,-8,11,-18,15,-33","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e5":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm106,-294v-25,0,-42,15,-42,40v0,26,18,38,42,41v24,-2,40,-17,42,-41v-3,-23,-17,-40,-42,-40xm106,-230v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e7":{"d":"17,-95v0,54,30,83,73,96r-29,43r38,16r24,-56v33,-2,53,-16,70,-35r-26,-26v-30,41,-107,24,-107,-38v0,-60,75,-79,105,-37r27,-29v-18,-19,-39,-34,-76,-33v-60,2,-99,39,-99,99","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"\u00e9":{"d":"92,-214r33,0r44,-42r-40,-17xm17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00e8":{"d":"17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0xm94,-214r32,0r-37,-59r-40,17","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ea":{"d":"47,-214r34,0r28,-24r28,24r34,0r-42,-53r-40,0xm17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00eb":{"d":"122,-214r44,0r0,-43r-44,0r0,43xm52,-214r44,0r0,-43r-44,0r0,43xm17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ed":{"d":"34,-214r33,0r44,-42r-39,-17xm30,0r43,0r0,-190r-43,0r0,190","w":102},"\u00ec":{"d":"30,0r43,0r0,-190r-43,0r0,190xm36,-214r33,0r-38,-59r-39,17","w":102},"\u00ee":{"d":"-10,-214r33,0r28,-24r28,24r35,0r-42,-53r-41,0xm30,0r43,0r0,-190r-43,0r0,190","w":102},"\u00ef":{"d":"64,-214r45,0r0,-43r-45,0r0,43xm-6,-214r45,0r0,-43r-45,0r0,43xm30,0r43,0r0,-190r-43,0r0,190","w":102},"\u00f1":{"d":"130,-194v-30,0,-46,16,-59,33r0,-29r-44,0r0,190r44,0v5,-60,-21,-154,43,-154v63,0,34,96,40,154r44,0v-3,-84,21,-194,-68,-194xm158,-266v-14,46,-71,-23,-97,15v-6,8,-11,19,-15,33r24,7v15,-45,72,22,97,-15v6,-8,11,-18,15,-33","w":223,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"\u00f3":{"d":"101,-214r33,0r44,-42r-40,-17xm17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f2":{"d":"17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61xm103,-214r32,0r-37,-59r-40,17","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f4":{"d":"56,-214r34,0r28,-24r28,24r34,0r-42,-53r-40,0xm17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f6":{"d":"131,-214r44,0r0,-43r-44,0r0,43xm61,-214r44,0r0,-43r-44,0r0,43xm17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f5":{"d":"17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61xm163,-266v-14,46,-71,-23,-97,15v-6,8,-11,19,-15,33r25,7v14,-45,72,22,97,-15v6,-8,11,-18,15,-33","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00fa":{"d":"93,-214r33,0r44,-42r-40,-17xm25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"\u00f9":{"d":"25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0xm95,-214r32,0r-37,-59r-40,17","w":223,"k":{"\\":18}},"\u00fb":{"d":"48,-214r34,0r28,-24r28,24r34,0r-42,-53r-40,0xm25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"\u00fc":{"d":"123,-214r44,0r0,-43r-44,0r0,43xm53,-214r44,0r0,-43r-44,0r0,43xm25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"\u00b0":{"d":"25,-196v0,36,25,59,60,59v34,0,60,-23,60,-59v0,-36,-26,-58,-60,-58v-35,0,-60,23,-60,58xm119,-196v0,21,-14,35,-34,35v-21,0,-34,-13,-34,-35v1,-21,12,-34,34,-34v22,0,34,14,34,34","w":169},"\u00a2":{"d":"19,-128v0,50,28,78,64,93r-7,37r31,0r6,-31v40,1,62,-16,81,-36r-26,-25v-12,13,-26,23,-49,23r23,-117v10,5,17,11,25,18r26,-28v-12,-12,-24,-23,-42,-28r6,-32r-31,0r-6,27v-62,2,-101,38,-101,99xm92,-73v-50,-20,-34,-122,22,-116","w":209},"\u00a3":{"d":"134,-256v-64,0,-89,47,-83,118r-28,0r0,38r28,0r0,63r-28,9r0,28r190,0r0,-39r-117,0r0,-61r89,0r0,-38r-89,0v-2,-40,1,-76,38,-77v23,0,35,13,46,27r33,-27v-17,-23,-39,-41,-79,-41","w":231,"k":{"4":5}},"\u00a7":{"d":"81,-204v10,-35,73,-12,87,7r25,-24v-27,-44,-153,-55,-153,19v1,16,8,27,19,34v-35,2,-52,53,-20,74v27,17,80,18,105,39v7,17,-8,26,-27,25v-27,0,-42,-12,-58,-25r-25,24v28,44,153,54,154,-19v0,-16,-9,-27,-20,-34v36,-2,53,-52,21,-74v-26,-18,-81,-18,-106,-39v-1,-2,-2,-5,-2,-7xm88,-152v30,4,98,12,72,46v-28,14,-91,-2,-100,-26v1,-13,14,-22,28,-20","w":227,"k":{"7":5}},"\u00b6":{"d":"14,-170v0,60,47,83,111,82r0,88r44,0r0,-252v-82,-4,-155,6,-155,82","w":200},"\u00df":{"d":"162,-72v0,27,-24,40,-55,39r0,34v56,0,99,-19,99,-72v0,-37,-27,-54,-55,-64v21,-12,40,-29,39,-63v-2,-44,-31,-67,-77,-67v-54,0,-86,30,-86,84r0,181r44,0r0,-182v0,-27,14,-46,40,-46v21,0,36,13,36,35v0,28,-20,40,-40,50r0,30v29,3,55,13,55,41","w":223,"k":{"\u00fd":4,"\u00ff":4,"y":4,"x":4,"w":2,"v":4}},"\u00ae":{"d":"6,-193v0,38,25,63,63,63v37,0,62,-24,62,-63v0,-39,-25,-63,-62,-63v-38,0,-63,25,-63,63xm124,-193v0,34,-22,57,-55,57v-33,0,-56,-22,-56,-57v0,-33,23,-56,56,-56v33,0,55,22,55,56xm85,-185v26,-8,16,-41,-12,-41r-30,0r0,65r16,0r0,-21v17,-2,16,14,24,21r19,0xm59,-195r0,-18v11,0,25,-2,25,9v0,10,-14,9,-25,9","w":137},"\u00a9":{"d":"19,-126v0,78,52,130,130,130v79,0,131,-52,131,-131v0,-78,-52,-129,-130,-129v-79,0,-131,52,-131,130xm266,-127v0,71,-45,118,-117,118v-71,0,-116,-46,-116,-117v0,-71,46,-117,117,-117v71,0,116,46,116,116xm82,-128v0,68,86,93,124,46r-17,-17v-22,30,-80,18,-80,-29v0,-45,54,-58,79,-30r17,-19v-37,-41,-123,-18,-123,49","w":298},"\u00f0":{"d":"219,-103v0,-61,-30,-96,-60,-128r28,-9r-9,-24r-41,13r-14,-12r-59,0r32,25r-30,9r8,24r44,-13v17,16,29,31,38,46v-55,-43,-144,0,-139,76v4,61,39,100,100,100v66,0,102,-42,102,-107xm176,-94v0,37,-22,60,-58,60v-36,0,-58,-25,-58,-61v0,-36,21,-59,57,-59v36,0,59,23,59,60","w":236},"\u00d0":{"d":"271,-126v0,-114,-102,-136,-228,-126r0,105r-27,0r0,40r27,0r0,107r94,0v81,-3,134,-46,134,-126xm225,-126v0,72,-58,93,-138,86r0,-67r63,0r0,-40r-63,0r0,-65v80,-7,138,15,138,86","w":292,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":15,"Y":23,"X":20,"W":14,"V":16,"T":16,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 */
Cufon.registerFont({"w":180,"face":{"font-family":"matricium","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 4 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-8 -324 383 72","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":108},"*":{"d":"68,-143r19,0r-4,-45r37,26r10,-17r-42,-19r42,-19r-10,-17r-37,26r4,-45r-19,0r4,45r-37,-26r-10,17r42,19r-42,19r10,17r37,-26","w":154,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00f8":7,"\u00e6":4,"\u00c6":36,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":36,"\u00c4":36,"t":-4,"s":4,"q":5,"o":7,"g":5,"e":7,"d":5,"c":7,"a":4,"J":29,"A":36}},"+":{"d":"99,-40r27,0r0,-74r75,0r0,-26r-75,0r0,-74r-27,0r0,74r-75,0r0,26r75,0r0,74","w":225},",":{"d":"41,0v1,18,-9,25,-24,31r4,13v38,-5,42,-37,40,-82r-33,0r0,38r13,0","w":88,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":16,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"-":{"d":"23,-94r100,0r0,-29r-100,0r0,29","w":146,"k":{"\u00fd":5,"\u00dd":29,"\u00c1":14,"\u00c2":14,"\u00ff":5,"\u00c3":14,"\u00c0":14,"\u00b1":4,"\u00c6":14,"\u00c5":14,"\u00c4":14,"z":4,"y":5,"x":11,"w":4,"v":5,"Z":11,"Y":29,"X":18,"W":13,"V":14,"T":32,"A":14,"7":14,"3":4,"1":11}},".":{"d":"28,0r33,0r0,-38r-33,0r0,38","w":88,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"\/":{"d":"-8,46r26,0r167,-333r-26,0","w":182,"k":{"\u00f0":29,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":18,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00d7":14,"\u00fd":18,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":43,"\u00c2":43,"\u00ff":18,"\u00d5":14,"\u00c3":43,"\u00c0":43,"\u00f8":29,"\u00e6":23,"\u00b5":14,"\u00b1":4,"\u00d8":14,"\u00c6":43,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00d6":14,"\u00c7":14,"\u00c5":43,"\u00c4":43,"z":22,"y":18,"x":18,"w":18,"v":18,"u":18,"t":7,"s":31,"r":18,"q":25,"p":18,"o":29,"n":18,"m":18,"g":25,"f":9,"e":29,"d":25,"c":29,"a":23,"Z":7,"S":11,"Q":14,"O":14,"J":47,"G":14,"C":14,"A":43,"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"\/":60}},"0":{"d":"22,-126v0,73,34,130,107,130v72,0,106,-57,106,-131v0,-73,-35,-129,-106,-129v-72,0,-107,58,-107,130xm129,-230v102,0,103,208,0,208v-54,0,-77,-49,-77,-105v0,-56,23,-103,77,-103","w":257,"k":{"\u00b1":5,"7":10,"3":4,"2":4,"1":2,"\/":13,".":7,",":7}},"1":{"d":"64,0r29,0r0,-254v-36,-2,-55,14,-83,21r7,23r47,-14r0,224","w":128},"2":{"d":"111,-230v60,-2,56,73,22,104r-116,104r0,22r176,0r0,-26r-133,0v42,-44,103,-72,127,-132v34,-87,-94,-131,-147,-67v-6,7,-12,15,-18,23r21,15v18,-24,32,-42,68,-43","w":215,"k":{"7":4,"4":9}},"3":{"d":"18,-41v19,25,50,46,94,45v50,-1,84,-27,84,-76v0,-48,-37,-67,-83,-71r79,-88r0,-21r-161,0r0,26r123,0r-79,89r6,17v46,-1,86,7,86,49v0,32,-22,48,-55,49v-36,0,-55,-15,-73,-37","w":220,"k":{"9":2,"7":9,"5":2,"\/":4}},"4":{"d":"156,0r27,0r0,-60r39,0r0,-24r-39,0r0,-170r-25,0r-143,174r8,20r133,0r0,60xm50,-84r106,-129r0,129r-106,0","w":241,"k":{"9":4,"7":13,"1":7,"\/":7}},"5":{"d":"199,-78v0,-70,-79,-94,-137,-67r6,-81r120,0r0,-26r-145,0r-7,123r19,12v37,-24,118,-19,115,40v-2,36,-24,55,-61,55v-31,0,-53,-16,-71,-34r-19,20v42,58,180,55,180,-42","w":220,"k":{"\u00b1":2,"9":2,"7":11,"3":2,"2":4,"\/":7}},"6":{"d":"22,-120v-2,75,28,124,98,124v54,0,87,-31,90,-84v5,-85,-128,-101,-159,-39v3,-57,17,-111,74,-111v28,0,43,10,60,24r16,-22v-20,-16,-40,-28,-74,-28v-75,3,-103,61,-105,136xm181,-79v0,37,-24,58,-61,58v-37,0,-63,-19,-63,-57v0,-35,26,-55,63,-55v36,0,61,18,61,54","w":232,"k":{"\u00b1":2,"9":4,"7":8,"3":4,"1":6,"\/":4}},"7":{"d":"49,0r32,0r114,-231r0,-21r-171,0r0,26r139,0","w":214,"k":{"\u00b1":4,"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,"\/":50,".":36,"-":11,",":36}},"8":{"d":"19,-68v0,96,189,95,189,0v0,-35,-26,-51,-52,-62v22,-11,45,-25,43,-59v-2,-45,-39,-67,-86,-67v-47,0,-86,22,-86,68v0,32,21,47,44,58v-27,10,-53,27,-52,62xm171,-187v2,61,-115,62,-115,1v1,-32,25,-45,57,-45v32,0,57,14,58,44xm179,-69v0,62,-131,66,-131,1v0,-65,130,-65,131,-1","w":226,"k":{"\u00b1":2,"9":2,"7":4}},"9":{"d":"23,-171v-6,87,129,102,159,39v-1,59,-20,110,-75,110v-28,0,-45,-11,-62,-27r-17,22v21,16,41,32,78,31v74,-4,105,-61,105,-137v0,-75,-28,-123,-98,-123v-55,0,-86,32,-90,85xm176,-174v0,37,-25,58,-62,58v-36,0,-62,-19,-62,-56v0,-37,24,-59,60,-59v37,0,64,20,64,57","w":232,"k":{"\u00b1":4,"7":8,"5":2,"3":4,"2":4,"\/":9,".":4,",":4}},":":{"d":"30,-148r33,0r0,-38r-33,0r0,38xm30,0r33,0r0,-38r-33,0r0,38","w":91,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":14}},";":{"d":"30,-148r33,0r0,-38r-33,0r0,38xm42,0v2,19,-9,26,-24,31r5,13v38,-5,42,-37,40,-82r-33,0r0,38r12,0","w":91,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":14}},"\u037e":{"d":"30,-148r33,0r0,-38r-33,0r0,38xm42,0v2,19,-9,26,-24,31r5,13v38,-5,42,-37,40,-82r-33,0r0,38r12,0","w":91},"<":{"d":"192,-31r0,-28r-139,-68r139,-68r0,-27r-169,83r0,24","w":225},"=":{"d":"29,-156r167,0r0,-26r-167,0r0,26xm29,-71r167,0r0,-27r-167,0r0,27","w":225},">":{"d":"33,-31r169,-84r0,-24r-169,-83r0,28r139,68r-139,67r0,28","w":225},"?":{"d":"147,-183v0,38,-34,50,-73,53r5,59r19,0r3,-39v41,-7,74,-27,75,-74v2,-64,-77,-88,-130,-60v-13,7,-25,19,-35,31r18,17v22,-40,117,-52,118,13xm72,0r33,0r0,-38r-33,0r0,38","w":193},"@":{"d":"92,-91v0,71,95,82,124,35v6,17,25,30,50,30v65,-1,84,-86,56,-142v-24,-49,-72,-88,-145,-88v-95,0,-154,62,-158,157v-6,131,147,196,256,130r-6,-9v-26,15,-50,24,-89,24v-91,0,-148,-56,-148,-145v0,-87,56,-145,145,-145v83,0,144,50,144,130v0,40,-13,74,-51,74v-59,0,-14,-90,-13,-132r-24,-4r-5,25v-37,-61,-136,-16,-136,60xm221,-113v0,36,-23,63,-59,65v-26,1,-44,-18,-44,-45v0,-66,103,-93,103,-20","w":352},"A":{"d":"14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"B":{"d":"225,-189v-1,-80,-109,-62,-189,-63r0,252v88,-3,201,19,203,-69v0,-37,-25,-52,-54,-61v22,-10,40,-27,40,-59xm196,-185v1,57,-75,44,-132,45r0,-86v54,2,132,-13,132,41xm210,-71v1,60,-86,43,-146,45r0,-88v60,2,145,-14,146,43","w":259,"k":{"&":-1,"\u00fd":4,"\u00dd":11,"\u00ff":4,"y":4,"w":4,"v":4,"Y":11,"X":7,"W":5,"V":7,"T":6,"?":2}},"C":{"d":"24,-126v-9,122,154,170,228,86r-19,-18v-23,21,-42,36,-81,36v-61,0,-98,-42,-98,-105v0,-61,37,-103,98,-103v37,0,58,16,79,35r19,-21v-23,-24,-52,-40,-98,-40v-79,0,-123,53,-128,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"Q":7,"O":7,"G":7,"C":7,"-":4}},"D":{"d":"257,-126v0,-111,-98,-135,-221,-126r0,252v123,9,221,-14,221,-126xm228,-126v0,84,-69,108,-164,100r0,-200v94,-8,164,16,164,100","w":281,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":16,"Y":23,"X":20,"W":13,"V":16,"T":18,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}},"E":{"d":"36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"F":{"d":"36,0r28,0r0,-110r137,0r0,-26r-137,0r0,-90r153,0r0,-26r-181,0r0,252","w":236,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00e5":9,"\u00e3":9,"\u00e4":9,"&":9,"\u00d7":5,"\u00fd":5,"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00c1":29,"\u00c2":29,"\u00ff":5,"\u00d5":5,"\u00c3":29,"\u00c0":29,"\u00bb":5,"\u00f8":5,"\u00e6":9,"\u00b5":5,"\u00d8":5,"\u00c6":29,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00d6":5,"\u00c7":5,"\u00c5":29,"\u00c4":29,"z":5,"y":5,"w":4,"v":5,"s":4,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"a":9,"Z":4,"Q":5,"O":5,"J":40,"G":5,"C":5,"A":29,"?":-4,"\/":25,".":36,",":36}},"G":{"d":"24,-126v0,80,48,128,129,130v43,1,78,-18,101,-38r0,-101r-104,0r0,26r76,0r0,63v-17,13,-44,25,-72,25v-64,0,-100,-41,-100,-106v0,-61,36,-101,96,-103v36,-1,56,12,76,29r19,-22v-23,-20,-51,-34,-94,-33v-80,2,-127,54,-127,130","w":282,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00fd":2,"\u00dd":11,"\u00ff":2,"\u00e6":-4,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"y":2,"v":2,"a":-4,"\\":5,"Y":11,"X":4,"W":6,"V":8,"T":6,"?":4}},"H":{"d":"36,0r28,0r0,-113r146,0r0,113r28,0r0,-252r-28,0r0,112r-146,0r0,-112r-28,0r0,252","w":273},"I":{"d":"38,0r29,0r0,-252r-29,0r0,252","w":104},"J":{"d":"11,-41v16,25,38,45,78,45v50,-1,78,-34,78,-88r0,-168r-28,0r0,169v1,36,-18,60,-50,60v-31,0,-43,-15,-57,-36","w":199,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"J":7,"A":9,".":5,",":5}},"K":{"d":"36,0r28,0r0,-68r54,-54r97,122r35,0r-112,-142r108,-110r-37,0r-145,150r0,-150r-28,0r0,252","w":258,"k":{"\u00f0":11,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":3,"\u00d7":18,"\u00fd":18,"\u00dd":13,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":18,"\u00d4":18,"\u00d3":18,"\u00c1":2,"\u00c2":2,"\u00ff":18,"\u00d5":18,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":11,"\u00e6":4,"\u00b5":18,"\u00d8":18,"\u00c6":2,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":5,"\u00d6":18,"\u00c7":18,"\u00c5":2,"\u00c4":2,"y":18,"w":18,"v":22,"u":7,"t":9,"q":9,"o":11,"g":9,"f":7,"e":11,"d":9,"c":11,"a":4,"Y":13,"W":11,"V":11,"U":5,"T":4,"S":4,"Q":18,"O":18,"G":18,"C":18,"A":2,"-":18}},"L":{"d":"36,0r170,0r0,-26r-142,0r0,-226r-28,0r0,252","w":222,"k":{"\u00f0":4,"\u00ae":32,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"&":3,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":7,"\u00db":7,"\u00da":7,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":4,"\u00b5":14,"\u00d8":14,"\u00dc":7,"\u00d6":14,"\u00c7":14,"y":22,"w":18,"v":22,"t":7,"q":2,"o":4,"g":2,"f":7,"e":4,"d":2,"c":4,"\\":43,"Y":47,"W":36,"V":41,"U":7,"T":36,"Q":14,"O":14,"G":14,"C":14,"?":22,"-":14,"*":29}},"M":{"d":"36,0r27,0r0,-204r92,135r2,0r91,-135r0,204r29,0r0,-252r-29,0r-92,138r-92,-138r-28,0r0,252","w":312},"N":{"d":"36,0r27,0r0,-207r163,207r23,0r0,-252r-28,0r0,202r-159,-202r-26,0r0,252","w":284},"O":{"d":"24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"P":{"d":"224,-171v3,-91,-98,-82,-188,-81r0,252r28,0r0,-89v84,4,158,-4,160,-82xm195,-171v0,62,-68,57,-131,56r0,-111v62,-1,131,-7,131,55","w":240,"k":{"\u00f0":2,"\u00fc":-2,"\u00fb":-2,"\u00f9":-2,"\u00fa":-2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":5,"\u00fd":-4,"\u00dd":4,"\u00c1":25,"\u00c2":25,"\u00ff":-4,"\u00c3":25,"\u00c0":25,"\u00ab":-4,"\u00f8":2,"\u00e6":4,"\u00c6":25,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":25,"\u00c4":25,"y":-4,"w":-4,"v":-4,"u":-2,"t":-5,"o":2,"f":-5,"e":2,"c":2,"a":4,"Z":5,"Y":4,"X":11,"W":2,"V":4,"J":36,"A":25,"\/":22,".":36,",":36}},"Q":{"d":"153,4v35,1,58,-12,79,-27r33,31r20,-22r-34,-27v19,-21,31,-50,31,-86v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,131v0,76,49,127,129,129xm211,-41v-63,46,-163,-1,-157,-86v4,-62,38,-100,99,-103v86,-3,126,104,77,170r-46,-42r-19,21","w":306,"k":{")":4,"\u00dd":23,"Y":23,"W":13,"V":15,"T":17,"?":7}},"R":{"d":"235,-176v1,-92,-109,-75,-199,-76r0,252r28,0r0,-98r72,0r73,98r35,0r-77,-103v38,-9,67,-28,68,-73xm206,-176v-1,64,-78,53,-142,53r0,-103v62,1,143,-12,142,50","w":260,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00dd":9,"\u00f8":4,"t":-4,"q":2,"o":4,"g":2,"f":-4,"e":4,"d":2,"c":4,"Y":9,"W":5,"V":7,"T":3,"J":2}},"S":{"d":"19,-37v42,52,187,65,189,-31v2,-81,-113,-56,-148,-105v-15,-73,89,-67,124,-30r17,-22v-51,-55,-203,-34,-167,66v19,52,114,34,142,78v13,35,-17,60,-53,59v-41,-1,-61,-15,-86,-36","w":230,"k":{"\u00fd":5,"\u00dd":11,"\u00c1":5,"\u00c2":5,"\u00ff":5,"\u00c3":5,"\u00c0":5,"\u00c6":5,"\u00c5":5,"\u00c4":5,"z":2,"y":5,"x":5,"w":4,"v":5,"t":2,"f":2,"\\":7,"Z":4,"Y":11,"X":9,"W":9,"V":11,"T":5,"S":4,"A":5,"?":4}},"T":{"d":"102,0r29,0r0,-226r85,0r0,-26r-198,0r0,26r84,0r0,226","w":233,"k":{"\u00f0":46,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":46,"\u00f6":46,"\u00f4":46,"\u00f2":46,"\u00f3":46,"\u00f1":32,"\u00ef":12,"\u00ee":12,"\u00ec":12,"\u00ed":12,"\u00eb":46,"\u00ea":46,"\u00e8":46,"\u00e9":46,"\u00e7":46,"\u00e5":46,"\u00e3":46,"\u00e4":46,"&":23,"\u00d7":17,"\u00fd":31,"\u00d2":17,"\u00d4":17,"\u00d3":17,"\u00c1":32,"\u00c2":32,"\u00ff":31,"\u00d5":17,"\u00c3":32,"\u00c0":32,"\u00bb":25,"\u00ab":32,"\u00f8":46,"\u00e6":46,"\u00b5":17,"\u00d8":17,"\u00c6":32,"\u00e2":46,"\u00e0":46,"\u00e1":46,"\u00d6":17,"\u00c7":17,"\u00c5":32,"\u00c4":32,"z":37,"y":31,"x":31,"w":30,"v":31,"u":31,"t":15,"s":39,"r":32,"q":42,"p":32,"o":46,"n":32,"m":32,"l":6,"k":6,"j":12,"i":12,"h":6,"g":42,"f":16,"e":46,"d":42,"c":46,"b":6,"a":46,"Z":6,"S":5,"Q":17,"O":17,"J":40,"G":17,"C":17,"A":32,";":14,":":14,"\/":32,".":36,"-":32,",":36}},"U":{"d":"32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"V":{"d":"122,2r26,0r108,-254r-31,0r-90,217r-89,-217r-32,0","w":270,"k":{"\u00f0":25,"\u00fc":14,"\u00fb":14,"\u00f9":14,"\u00fa":14,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00f1":14,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":25,"\u00ea":25,"\u00e8":25,"\u00e9":25,"\u00e7":25,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":18,"\u00d7":15,"\u00fd":14,"\u00dd":7,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":36,"\u00c2":36,"\u00ff":14,"\u00d5":15,"\u00c3":36,"\u00c0":36,"\u00bb":14,"\u00ab":22,"\u00f8":25,"\u00e6":25,"\u00b5":15,"\u00d8":15,"\u00c6":36,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":15,"\u00c7":15,"\u00c5":36,"\u00c4":36,"z":20,"y":14,"x":18,"w":13,"v":14,"u":14,"t":7,"s":22,"r":14,"q":23,"p":14,"o":25,"n":14,"m":14,"l":4,"k":4,"j":7,"i":7,"h":4,"g":23,"f":9,"e":25,"d":23,"c":25,"b":4,"a":25,"Z":4,"Y":7,"X":7,"W":4,"V":4,"S":9,"Q":15,"O":15,"J":43,"G":15,"C":15,"A":36,";":7,":":7,"\/":43,".":43,"-":14,",":43}},"W":{"d":"106,2r24,0r69,-205r70,205r24,0r90,-254r-30,0r-72,210r-69,-211r-24,0r-69,211r-72,-210r-31,0","w":398,"k":{"\u00f0":23,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":23,"\u00f6":23,"\u00f4":23,"\u00f2":23,"\u00f3":23,"\u00f1":13,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":23,"\u00ea":23,"\u00e8":23,"\u00e9":23,"\u00e7":23,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":15,"\u00d7":13,"\u00fd":13,"\u00dd":7,"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":32,"\u00c2":32,"\u00ff":13,"\u00d5":13,"\u00c3":32,"\u00c0":32,"\u00bb":13,"\u00ab":18,"\u00f8":23,"\u00e6":25,"\u00b5":13,"\u00d8":13,"\u00c6":32,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":13,"\u00c7":13,"\u00c5":32,"\u00c4":32,"z":20,"y":13,"x":14,"w":13,"v":13,"u":13,"t":9,"s":22,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":4,"k":4,"j":5,"i":5,"h":4,"g":22,"f":11,"e":23,"d":22,"c":23,"b":4,"a":25,"Z":4,"Y":7,"X":5,"W":4,"V":4,"S":7,"Q":13,"O":13,"J":38,"G":13,"C":13,"A":32,";":5,":":5,"\/":36,".":36,"-":13,",":36}},"X":{"d":"17,0r32,0r81,-108r81,108r33,0r-96,-129r93,-123r-33,0r-77,103r-77,-103r-34,0r93,123","w":261,"k":{"\u00f0":16,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00eb":16,"\u00ea":16,"\u00e8":16,"\u00e9":16,"\u00e7":16,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":4,"\u00d7":18,"\u00fd":14,"\u00dd":8,"\u00d9":4,"\u00db":4,"\u00da":4,"\u00d2":18,"\u00d4":18,"\u00d3":18,"\u00c1":2,"\u00c2":2,"\u00ff":14,"\u00d5":18,"\u00c3":2,"\u00c0":2,"\u00bb":7,"\u00ab":18,"\u00f8":16,"\u00e6":4,"\u00b5":18,"\u00d8":18,"\u00c6":2,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":4,"\u00d6":18,"\u00c7":18,"\u00c5":2,"\u00c4":2,"y":14,"w":14,"v":18,"u":7,"t":7,"q":14,"o":16,"l":4,"k":4,"j":4,"i":4,"h":4,"g":14,"f":7,"e":16,"d":14,"c":16,"b":4,"a":4,"Y":8,"W":5,"V":7,"U":4,"S":11,"Q":18,"O":18,"J":4,"G":18,"C":18,"A":2,"?":5,"-":18}},"Y":{"d":"114,0r29,0r0,-100r105,-152r-33,0r-86,126r-85,-126r-34,0r104,152r0,100","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":24,"\u00d7":22,"\u00fd":22,"\u00dd":2,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":2,"X":8,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"Z":{"d":"24,0r202,0r0,-26r-163,0r163,-207r0,-19r-196,0r0,26r157,0r-163,207r0,19","w":249,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"&":4,"\u00d7":14,"\u00fd":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":5,"\u00d5":14,"\u00ab":7,"\u00f8":9,"\u00b5":14,"\u00d8":14,"\u00d6":14,"\u00c7":14,"y":5,"w":5,"v":7,"q":7,"o":9,"g":7,"f":4,"e":9,"d":7,"c":9,"Z":4,"S":4,"Q":14,"O":14,"G":14,"C":14,"-":11}},"[":{"d":"34,47r103,0r0,-22r-77,0r0,-255r77,0r0,-22r-103,0r0,299","w":158,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":7,"\u00e6":4,"\u00b5":7,"\u00d8":7,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":7,"v":7,"s":5,"q":7,"o":7,"j":-11,"g":7,"e":7,"d":7,"c":7,"a":4,"Q":7,"O":7,"J":4,"G":7,"C":7}},"\\":{"d":"165,46r25,0r-167,-333r-25,0","w":182,"k":{"\u00d7":14,"\u00fd":22,"\u00dd":40,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":22,"v":25,"t":11,"j":-11,"f":4,"Y":40,"W":36,"V":43,"U":5,"T":32,"Q":14,"O":14,"G":14,"C":14}},"]":{"d":"21,47r103,0r0,-299r-103,0r0,22r77,0r0,255r-77,0r0,22","w":158},"^":{"d":"23,-177r24,0r43,-56r42,56r25,0r-56,-76r-22,0"},"_":{"d":"-1,58r218,0r0,-23r-218,0r0,23","w":216},"`":{"d":"93,-214r21,0r-33,-52r-29,13"},"a":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"b":{"d":"59,-36v15,21,34,42,71,40v55,-3,89,-40,89,-98v0,-56,-33,-96,-89,-96v-37,0,-56,18,-71,41r0,-114r-28,0r0,263r28,0r0,-36xm190,-93v0,44,-23,72,-65,72v-42,0,-67,-28,-67,-73v0,-43,26,-71,67,-71v42,0,65,29,65,72","w":239,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"c":{"d":"19,-93v-6,92,121,128,172,61r-18,-16v-13,15,-30,27,-57,27v-43,-2,-68,-30,-68,-73v0,-42,25,-70,66,-72v27,-1,43,14,57,28r18,-19v-17,-18,-37,-34,-74,-33v-58,3,-92,40,-96,97","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"d":{"d":"20,-93v0,58,34,95,89,97v37,2,55,-19,71,-41r0,37r28,0r0,-263r-28,0r0,113v-15,-22,-35,-40,-71,-40v-55,0,-89,40,-89,97xm181,-94v0,44,-25,73,-67,73v-42,0,-65,-29,-65,-73v0,-43,24,-71,65,-71v41,0,67,28,67,71","w":239},"e":{"d":"172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"f":{"d":"128,-260v-53,-16,-96,12,-87,74r-25,0r0,24r25,0r0,162r28,0r0,-162r59,0r0,-23r-59,0v-2,-31,4,-55,32,-55v12,0,18,3,27,5r0,-25","w":132,"k":{"\u00f0":4,"\u00ae":-18,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,")":-11,"\u00ab":5,"\u00f8":4,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":-11,"z":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":5,"]":-7,"\\":-11,"?":-13,"\/":16,".":16,",":16,"*":-11}},"g":{"d":"181,-54v18,94,-89,108,-140,65r-12,21v63,47,179,33,179,-64r0,-154r-28,0r0,33v-16,-20,-36,-37,-72,-37v-53,0,-88,35,-88,88v0,53,36,86,88,88v35,2,57,-20,73,-40xm181,-103v0,41,-28,64,-68,64v-38,0,-64,-24,-64,-64v0,-40,26,-63,64,-63v39,0,68,22,68,63","w":239,"k":{"\\":18}},"h":{"d":"194,-116v9,-80,-108,-96,-135,-38r0,-109r-28,0r0,263r28,0v3,-70,-19,-165,55,-165v74,0,48,97,52,165r28,0r0,-116","w":221,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"i":{"d":"32,-227r31,0r0,-30r-31,0r0,30xm33,0r28,0r0,-186r-28,0r0,186","w":94},"j":{"d":"32,-227r31,0r0,-30r-31,0r0,30xm33,10v2,22,-14,28,-34,24v0,14,-3,26,17,25v29,-2,45,-16,45,-48r0,-197r-28,0r0,196","w":94},"k":{"d":"31,0r28,0r0,-49r37,-38r67,87r33,0r-80,-106r78,-80r-35,0r-100,105r0,-182r-28,0r0,263","w":204,"k":{"\u00f0":9,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00fd":5,"\u00ff":5,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"y":5,"w":7,"v":7,"u":4,"t":4,"q":9,"o":9,"g":9,"e":9,"d":9,"c":9,"a":4,"\\":14,"-":7}},"l":{"d":"33,0r28,0r0,-263r-28,0r0,263","w":94},"m":{"d":"119,-190v-31,1,-47,16,-60,35r0,-31r-28,0r0,186r28,0v3,-69,-19,-164,52,-165v68,0,42,100,47,165r28,0v4,-68,-20,-164,51,-165v69,-1,43,99,48,165r28,0v-2,-84,19,-190,-69,-190v-33,0,-51,17,-65,37v-10,-20,-30,-37,-60,-37","w":342,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"n":{"d":"194,-116v9,-80,-108,-96,-135,-38r0,-32r-28,0r0,186r28,0v3,-70,-19,-165,55,-165v74,0,48,97,52,165r28,0r0,-116","w":221,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"o":{"d":"19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"p":{"d":"130,-190v-37,0,-56,18,-71,41r0,-37r-28,0r0,244r28,0r0,-94v15,21,34,42,71,40v55,-3,89,-40,89,-98v0,-56,-33,-96,-89,-96xm190,-93v0,44,-23,72,-65,72v-42,0,-67,-28,-67,-73v0,-43,26,-71,67,-71v42,0,65,29,65,72","w":239,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"q":{"d":"109,4v37,2,55,-19,71,-41r0,95r28,0r0,-244r-28,0r0,36v-15,-22,-35,-40,-71,-40v-55,0,-89,40,-89,97v0,58,34,95,89,97xm181,-94v0,44,-25,73,-67,73v-42,0,-65,-29,-65,-73v0,-43,24,-71,65,-71v41,0,67,28,67,71","w":239,"k":{"\\":18}},"r":{"d":"135,-189v-41,0,-63,22,-76,51r0,-48r-28,0r0,186r28,0v-3,-81,-4,-162,76,-159r0,-30","w":145,"k":{"\u00f0":8,"\u00f5":8,"\u00f6":8,"\u00f4":8,"\u00f2":8,"\u00f3":8,"\u00eb":8,"\u00ea":8,"\u00e8":8,"\u00e9":8,"\u00e7":8,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00ab":4,"\u00f8":8,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"z":4,"q":8,"o":8,"g":8,"e":8,"d":8,"c":8,"a":9,"\\":11,"\/":27,".":32,",":32,"*":-7}},"s":{"d":"15,-24v41,44,173,35,139,-50v-16,-39,-90,-21,-103,-65v5,-40,69,-27,91,-9r13,-21v-43,-38,-161,-19,-125,55v16,33,75,26,99,52v12,23,-10,43,-35,42v-26,-1,-47,-10,-64,-24","w":179,"k":{")":7,"\u00fd":5,"\u00ff":5,"\u00ab":4,"}":4,"z":4,"y":5,"x":9,"w":5,"v":7,"t":4,"s":4,"]":5,"\\":27,"?":13}},"t":{"d":"41,-162v5,67,-23,169,52,165v15,-1,24,-2,34,-8r0,-23v-22,11,-59,9,-59,-25r0,-109r59,0r0,-24r-59,0r0,-56r-27,0r0,56r-26,0r0,24r26,0","w":145,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":4,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":14}},"u":{"d":"28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"v":{"d":"93,1r25,0r81,-187r-30,0r-63,154r-63,-154r-30,0","w":211,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":5,"\u00ff":5,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":5,"x":4,"w":5,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"w":{"d":"80,1r25,0r50,-146r50,146r24,0r66,-187r-29,0r-49,149r-50,-150r-23,0r-50,150r-49,-149r-30,0","w":309,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00fd":4,"\u00ff":4,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":5,"q":7,"o":9,"g":7,"e":9,"d":7,"c":9,"a":7,"]":7,"\\":18,"?":4,"\/":22,".":25,"-":4,",":25}},"x":{"d":"14,0r31,0r58,-76r58,76r32,0r-74,-95r71,-91r-31,0r-55,72r-55,-72r-32,0r70,91","w":206,"k":{"\u00f0":13,"\u00f5":13,"\u00f6":13,"\u00f4":13,"\u00f2":13,"\u00f3":13,"\u00eb":13,"\u00ea":13,"\u00e8":13,"\u00e9":13,"\u00e7":13,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":16,"\u00f8":13,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":4,"y":4,"w":4,"v":4,"s":7,"q":11,"o":13,"g":11,"e":13,"d":11,"c":13,"a":5,"]":4,"\\":18,"?":5,"-":11}},"y":{"d":"97,-1v-7,32,-39,44,-67,28r-10,22v29,17,76,9,89,-18v32,-69,60,-146,91,-217r-30,0r-59,155r-68,-155r-31,0","w":212,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"z":{"d":"20,0r161,0r0,-23r-123,0r123,-145r0,-18r-157,0r0,23r120,0r-124,145r0,18","w":200,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":5,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":16}},"{":{"d":"20,-93v88,-16,18,110,90,133v10,4,24,8,40,11r4,-19v-44,-7,-60,-28,-56,-85v2,-32,-13,-41,-37,-50v31,-8,40,-35,37,-78v-3,-41,23,-49,56,-58r-4,-18v-56,7,-83,31,-78,100v3,33,-17,45,-52,43r0,21","w":173,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":5,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"z":4,"y":4,"x":4,"w":4,"v":4,"s":4,"q":5,"o":5,"j":-13,"g":4,"e":5,"d":5,"c":5,"Q":7,"O":7,"J":4,"G":7,"C":7}},"|":{"d":"43,46r23,0r0,-333r-23,0r0,333","w":109},"}":{"d":"76,-53v4,56,-11,79,-57,85r5,19v55,-8,83,-31,78,-100v-2,-33,15,-46,51,-44r0,-21v-87,16,-16,-108,-89,-132v-10,-4,-24,-8,-40,-11r-5,18v45,7,62,28,57,85v-2,30,14,44,37,51v-23,7,-39,20,-37,50","w":173},"~":{"d":"127,-131v-11,46,-62,-19,-87,12v-5,6,-10,15,-14,29r17,5v12,-45,62,16,88,-12v5,-6,9,-16,13,-30","w":170},"\u00c4":{"d":"159,-278r34,0r0,-32r-34,0r0,32xm92,-278r33,0r0,-32r-33,0r0,32xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00c5":{"d":"142,-306v-40,0,-54,53,-20,67r-108,239r29,0r30,-67r137,0r30,67r30,0r-108,-239v33,-12,21,-67,-20,-67xm84,-92r58,-129r57,129r-115,0xm142,-248v-13,0,-24,-9,-24,-22v0,-12,11,-22,24,-22v13,0,24,9,24,22v0,12,-11,22,-24,22","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00c7":{"d":"24,-126v0,73,44,118,110,129r-28,41r27,12r24,-52v45,-2,72,-20,95,-44r-19,-18v-23,21,-42,36,-81,36v-61,0,-98,-42,-98,-105v0,-61,37,-103,98,-103v37,0,58,16,79,35r19,-21v-23,-24,-52,-40,-98,-40v-79,0,-128,53,-128,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"Q":7,"O":7,"G":7,"C":7,"-":4}},"\u00c9":{"d":"116,-274r23,0r41,-34r-28,-13xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d1":{"d":"185,-315v-14,43,-63,-18,-88,12v-5,6,-9,16,-13,28r18,5v12,-43,62,18,87,-12v5,-6,9,-16,13,-28xm36,0r27,0r0,-207r163,207r23,0r0,-252r-28,0r0,202r-159,-202r-26,0r0,252","w":284},"\u00d6":{"d":"170,-278r33,0r0,-32r-33,0r0,32xm103,-278r33,0r0,-32r-33,0r0,32xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00dc":{"d":"154,-273r33,0r0,-33r-33,0r0,33xm86,-273r34,0r0,-33r-34,0r0,33xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00e1":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm93,-214r21,0r42,-39r-29,-13","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e0":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm94,-214r22,0r-34,-52r-29,13","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e2":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm54,-214r23,0r27,-24v14,11,21,29,50,24r-38,-47r-24,0","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00b4":{"d":"66,-214r21,0r41,-39r-29,-13"},"\u00a8":{"d":"105,-214r33,0r0,-34r-33,0r0,34xm42,-214r33,0r0,-34r-33,0r0,34"},"\u00c6":{"d":"6,0r30,0r39,-67r102,0r0,67r178,0r0,-26r-149,0r0,-88r131,0r0,-26r-131,0r0,-86r147,0r0,-26r-199,0xm90,-92r78,-135r9,0r0,135r-87,0","w":376,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d8":{"d":"74,-22v20,15,45,26,79,26v116,0,165,-143,96,-219r35,-39r-29,0r-23,24v-20,-15,-45,-26,-79,-26v-116,0,-165,143,-96,219r-35,39r29,0xm54,-126v0,-86,96,-133,160,-82r-137,149v-13,-17,-23,-38,-23,-67xm252,-126v0,86,-96,133,-160,82r137,-149v13,17,23,38,23,67","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00b1":{"d":"15,-41v20,24,51,46,95,45v51,-1,87,-26,87,-73v0,-36,-24,-50,-51,-60v23,-11,44,-26,44,-60v1,-63,-83,-83,-133,-55v-15,8,-26,20,-36,34r21,16v16,-21,32,-35,65,-36v31,-1,54,16,54,44v0,41,-40,49,-86,47r0,24v48,-2,93,5,93,47v0,32,-24,46,-57,46v-35,0,-58,-16,-75,-37","w":217,"k":{"7":7}},"\u00a5":{"d":"110,0r27,0r0,-42r74,0r0,-22r-74,0r0,-32r74,0r0,-22r-66,0r92,-134r-32,0r-81,123r-80,-123r-34,0r91,134r-65,0r0,22r74,0r0,32r-74,0r0,22r74,0r0,42","w":246,"k":{"4":7}},"\u00b5":{"d":"24,-126v-3,96,90,156,184,118r47,44v13,-2,33,4,42,-2r-62,-59v27,-22,47,-58,47,-102v0,-76,-49,-129,-129,-129v-80,0,-127,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u03bc":{"d":"24,-126v-3,96,90,156,184,118r47,44v13,-2,33,4,42,-2r-62,-59v27,-22,47,-58,47,-102v0,-76,-49,-129,-129,-129v-80,0,-127,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306},"\u00aa":{"d":"22,-180v0,39,58,41,73,17r0,14r18,0v3,-58,5,-120,-64,-102v-6,2,-12,4,-18,7r5,15v19,-12,62,-13,59,19v-30,-7,-73,-4,-73,30xm95,-196v3,23,-12,34,-31,34v-11,-1,-24,-6,-23,-19v1,-22,36,-22,54,-15xm21,-104r93,0r0,-17r-93,0r0,17","w":140},"\u00ba":{"d":"17,-200v0,32,21,53,53,53v33,0,53,-21,53,-54v0,-31,-20,-53,-52,-53v-32,0,-54,21,-54,54xm18,-104r104,0r0,-17r-104,0r0,17xm104,-200v1,20,-13,36,-33,36v-21,0,-34,-16,-34,-37v0,-19,14,-37,33,-36v21,1,33,16,34,37","w":140},"\u00e6":{"d":"17,-55v1,40,30,59,68,59v37,0,63,-18,83,-37v25,46,124,49,151,2r-17,-15v-24,35,-102,33,-117,-9v-3,-8,-7,-17,-8,-27r148,0v2,-65,-26,-105,-86,-108v-33,-1,-58,19,-71,41v-12,-47,-94,-48,-135,-24r9,23v39,-23,116,-21,108,42v-55,-16,-134,-10,-133,53xm177,-104v-1,-64,95,-86,115,-24v3,8,4,16,5,24r-120,0xm157,-51v-18,34,-112,53,-112,-5v0,-44,68,-42,105,-30v1,12,3,24,7,35","w":343,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00f8":{"d":"58,-15v14,12,34,17,58,19v86,6,124,-103,74,-161r29,-31r-28,0r-16,17v-61,-45,-161,-2,-156,79v1,25,11,48,23,63r-28,31r28,0xm61,-49v-35,-51,6,-139,78,-113v7,3,13,6,19,11xm171,-137v37,48,-4,140,-77,113v-7,-3,-13,-6,-19,-11","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00bf":{"d":"89,-214r33,0r0,-38r-33,0r0,38xm46,-69v-1,-38,34,-50,74,-53r-6,-59r-19,0r-3,39v-41,7,-74,27,-75,74v-2,64,77,88,130,60v13,-7,25,-19,35,-31r-18,-17v-22,41,-117,51,-118,-13","w":193,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00d7":7,"\u00fd":13,"\u00dd":25,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":13,"\u00d5":7,"\u00e6":-4,"\u00b5":7,"\u00d8":7,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"\u00dc":5,"\u00d6":7,"\u00c7":7,"y":13,"w":13,"v":16,"t":5,"f":4,"a":-4,"Y":25,"X":4,"W":18,"V":22,"U":5,"T":22,"Q":7,"O":7,"G":7,"C":7}},"\u00a1":{"d":"32,-214r34,0r0,-38r-34,0r0,38xm33,0r32,0r-8,-181r-16,0","w":97},"\u00ac":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00ab":{"d":"156,-15r21,-12r-49,-67r49,-65r-21,-12v-18,27,-42,49,-58,79xm76,-15r21,-12r-49,-67r49,-65r-21,-12v-19,27,-43,49,-59,79","w":198,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":5,"\u00dd":27,"\u00ff":5,"\u00f8":4,"y":5,"x":5,"w":4,"v":5,"q":2,"o":4,"g":2,"e":4,"d":2,"c":4,"Y":27,"X":7,"W":13,"V":14,"T":25}},"\u00bb":{"d":"122,-15v19,-28,43,-50,59,-80r-59,-76r-21,12r49,66r-49,66xm42,-15v18,-28,42,-50,58,-80r-58,-76r-21,12r49,66r-49,66","w":198,"k":{"\u00fd":11,"\u00dd":36,"\u00c1":7,"\u00c2":7,"\u00ff":11,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"z":7,"y":11,"x":16,"w":7,"v":11,"t":4,"s":4,"f":4,"Z":5,"Y":36,"X":18,"W":18,"V":22,"T":32,"S":4,"A":7}},"\u00a0":{"w":108},"\u00c0":{"d":"117,-324r-28,13v21,12,28,37,65,33xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00c3":{"d":"185,-319v-13,42,-63,-18,-88,12v-5,6,-9,15,-13,27r18,5v12,-43,62,18,87,-12v5,-6,9,-15,13,-27xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00d5":{"d":"195,-319v-12,43,-62,-18,-87,12v-5,6,-9,15,-13,27r17,5v14,-43,63,18,88,-12v5,-6,9,-15,13,-27xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00f7":{"d":"94,-180r37,0r0,-37r-37,0r0,37xm201,-114r0,-25r-177,0r0,25r177,0xm94,-37r37,0r0,-37r-37,0r0,37","w":225},"\u00ff":{"d":"97,-1v-7,32,-39,44,-67,28r-10,22v29,17,76,9,89,-18v32,-69,60,-146,91,-217r-30,0r-59,155r-68,-155r-31,0xm123,-214r32,0r0,-34r-32,0r0,34xm60,-214r32,0r0,-34r-32,0r0,34","w":212,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00b7":{"d":"28,-89r33,0r0,-38r-33,0r0,38","w":88},"\u22c5":{"d":"28,-89r33,0r0,-38r-33,0r0,38","w":88},"\u00c2":{"d":"90,-277r25,0r27,-22r27,22r26,0r-40,-43r-26,0xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00ca":{"d":"75,-274r25,0r27,-22r27,22r26,0r-40,-43r-26,0xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c1":{"d":"131,-278r23,0r41,-33r-28,-13xm14,0r29,0r30,-67r137,0r30,67r30,0r-114,-254r-27,0xm84,-92r58,-129r57,129r-115,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":15,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":2,"\u00c2":2,"\u00ff":15,"\u00d5":15,"\u00c3":2,"\u00c0":2,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":2,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":2,"\u00c4":2,"y":15,"w":17,"v":23,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":2,"W":32,"V":36,"U":9,"T":32,"S":5,"Q":15,"O":15,"G":15,"C":15,"A":2,"?":22,"-":14,"*":36}},"\u00cb":{"d":"144,-274r34,0r0,-33r-34,0r0,33xm77,-274r34,0r0,-33r-34,0r0,33xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c8":{"d":"103,-321r-28,13r41,34r23,0xm36,0r184,0r0,-26r-156,0r0,-88r138,0r0,-26r-138,0r0,-86r154,0r0,-26r-182,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00cd":{"d":"41,-274r23,0r41,-34r-28,-13xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00ce":{"d":"0,-274r25,0r27,-22r27,22r26,0r-39,-43r-26,0xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00cf":{"d":"70,-274r33,0r0,-33r-33,0r0,33xm3,-274r33,0r0,-33r-33,0r0,33xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00cc":{"d":"28,-321r-28,13r41,34r23,0xm38,0r29,0r0,-252r-29,0r0,252","w":104},"\u00d3":{"d":"141,-278r24,0r41,-33r-29,-13xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d4":{"d":"100,-278r26,0r27,-22r27,22r26,0r-40,-42r-26,0xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d2":{"d":"128,-324r-28,13r41,33r24,0xm24,-126v0,77,49,130,129,130v80,0,129,-53,129,-131v0,-76,-49,-129,-129,-129v-80,0,-129,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00da":{"d":"125,-273r23,0r41,-34r-28,-13xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00db":{"d":"84,-273r25,0r27,-22r27,22r26,0r-40,-43r-26,0xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00d9":{"d":"112,-320r-28,13r41,34r23,0xm32,-105v1,70,36,109,104,109v70,0,106,-42,106,-112r0,-144r-29,0r0,147v2,53,-28,82,-76,83v-49,1,-77,-33,-77,-85r0,-145r-28,0r0,147","w":273,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00af":{"d":"34,-221r112,0r0,-23r-112,0r0,23"},"\u00b8":{"d":"81,56r28,-61r-22,0r-33,49"},"\u00a4":{"d":"53,-85v6,75,116,122,171,58v6,-6,11,-14,16,-21r-20,-15v-18,35,-74,60,-110,24v-13,-12,-22,-27,-28,-46r94,0r0,-23r-98,0v0,-13,-2,-27,0,-39r98,0r0,-22r-93,0v10,-32,32,-61,69,-62v35,0,50,19,66,39r22,-15v-19,-26,-41,-50,-87,-49v-57,2,-86,40,-99,87r-34,0r0,22r30,0r-1,39r-29,0r0,23r33,0","w":259,"k":{"1":-7}},"\u00dd":{"d":"117,-273r23,0r42,-34r-29,-13xm114,0r29,0r0,-100r105,-152r-33,0r-86,126r-85,-126r-34,0r104,152r0,100","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":24,"\u00d7":22,"\u00fd":22,"\u00dd":2,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":2,"X":8,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"\u00fd":{"d":"97,-1v-7,32,-39,44,-67,28r-10,22v29,17,76,9,89,-18v32,-69,60,-146,91,-217r-30,0r-59,155r-68,-155r-31,0xm96,-214r22,0r41,-39r-29,-13","w":212,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00de":{"d":"224,-128v1,-80,-77,-85,-160,-81r0,-43r-28,0r0,252r28,0r0,-45v84,4,159,-4,160,-83xm195,-128v0,63,-68,58,-131,57r0,-112v62,-1,131,-7,131,55","w":242},"\u00fe":{"d":"130,-190v-37,0,-56,18,-71,41r0,-114r-28,0r0,321r28,0r0,-94v15,21,34,42,71,40v55,-3,89,-40,89,-98v0,-56,-33,-96,-89,-96xm190,-93v0,44,-23,72,-65,72v-42,0,-67,-28,-67,-73v0,-43,26,-71,67,-71v42,0,65,29,65,72","w":239,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"\u00bd":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00bc":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b9":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00be":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b3":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b2":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00a6":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00d7":{"d":"24,-126v-3,96,90,156,184,118r47,44v13,-2,33,4,42,-2r-62,-59v27,-22,47,-58,47,-102v0,-76,-49,-129,-129,-129v-80,0,-127,53,-129,130xm252,-126v0,63,-37,104,-99,104v-61,0,-99,-42,-99,-105v0,-62,38,-103,99,-103v61,0,99,42,99,104","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":14,"Y":22,"X":18,"W":13,"V":15,"T":17,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"!":{"d":"41,-71r16,0r8,-181r-32,0xm32,0r34,0r0,-38r-34,0r0,38","w":97},"\"":{"d":"94,-154r15,0r29,-98r-33,0xm23,-154r16,0r29,-98r-34,0","w":158},"#":{"d":"45,0r25,0r11,-64r68,0r-10,64r25,0r11,-64r46,0r0,-25r-42,0r13,-76r43,0r0,-25r-38,0r10,-62r-25,0r-11,62r-68,0r10,-62r-25,0r-11,62r-47,0r0,25r43,0r-13,76r-44,0r0,25r39,0xm85,-89r13,-76r69,0r-13,76r-69,0","w":252},"$":{"d":"20,-38v23,20,48,34,85,37r0,36r23,0r0,-35v44,-4,77,-23,77,-68v0,-45,-33,-59,-78,-70r0,-89v22,5,38,13,54,26r16,-21v-20,-15,-38,-27,-69,-29r0,-22r-23,0r0,21v-42,4,-75,23,-75,67v0,46,31,59,76,70r0,90v-31,-3,-50,-17,-70,-34xm106,-143v-37,-4,-67,-42,-36,-73v9,-8,21,-12,36,-12r0,85xm127,-110v39,1,68,43,37,73v-9,8,-22,12,-37,13r0,-86","w":228,"k":{"7":4}},"%":{"d":"19,-190v0,37,19,64,57,64v37,0,57,-27,57,-65v0,-36,-21,-64,-57,-64v-37,0,-57,28,-57,65xm45,0r26,0r184,-252r-25,0xm167,-62v0,36,20,65,57,65v38,0,57,-28,57,-65v0,-36,-19,-64,-56,-64v-38,0,-58,28,-58,64xm76,-235v44,2,44,89,0,89v-43,-1,-45,-88,0,-89xm224,-106v44,1,43,88,1,89v-44,-2,-45,-87,-1,-89","w":300},"&":{"d":"95,4v39,0,61,-19,83,-40r39,41r22,-17r-44,-45v15,-18,25,-40,36,-63r-23,-11v-9,21,-18,39,-30,56r-58,-58v31,-11,60,-29,60,-66v0,-36,-24,-55,-62,-57v-68,-4,-83,81,-41,116v-32,14,-61,32,-61,73v0,46,33,71,79,71xm117,-233v33,0,49,43,24,64v-8,8,-21,14,-37,20v-12,-14,-25,-24,-25,-48v0,-20,16,-36,38,-36xm161,-53v-16,16,-34,32,-63,32v-45,0,-68,-47,-41,-78v8,-9,19,-18,36,-24","w":250,"k":{"\u00dd":24,"Y":24,"W":18,"V":21,"T":28,"S":3}},"'":{"d":"23,-154r16,0r29,-98r-34,0","w":88},"(":{"d":"124,-257v-82,34,-133,152,-74,242v17,26,42,48,74,66r12,-19v-48,-31,-83,-66,-83,-135v0,-69,35,-105,83,-136","w":156,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00d7":11,"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00d5":11,"\u00f8":11,"\u00b5":11,"\u00d8":11,"\u00d6":11,"\u00c7":11,"s":5,"q":11,"o":11,"j":-11,"g":7,"e":11,"d":11,"c":11,"Q":11,"O":11,"J":5,"G":11,"C":11}},")":{"d":"104,-103v0,69,-36,104,-84,135r12,19v81,-35,133,-152,74,-243v-17,-26,-42,-47,-74,-65r-12,18v48,31,84,66,84,136","w":156},"\u00e4":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm120,-214r32,0r0,-34r-32,0r0,34xm57,-214r32,0r0,-34r-32,0r0,34","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e3":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm148,-257v-13,44,-62,-16,-88,12v-5,6,-10,15,-14,29r17,5v12,-45,64,18,88,-12v5,-6,10,-15,14,-29","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e5":{"d":"17,-55v0,71,110,73,136,27r0,28r28,0r0,-114v6,-77,-91,-90,-148,-59r9,23v39,-23,120,-22,111,42v-55,-16,-136,-11,-136,53xm154,-86v4,47,-21,68,-62,68v-25,0,-47,-12,-47,-38v0,-46,73,-42,109,-30xm104,-289v-23,0,-39,15,-39,38v0,23,18,35,39,38v22,-3,39,-15,39,-38v0,-23,-16,-38,-39,-38xm104,-226v-13,0,-25,-12,-25,-25v0,-13,11,-25,25,-25v14,0,25,11,25,25v0,14,-12,25,-25,25","w":208,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e7":{"d":"19,-93v0,54,32,86,79,96r-29,41r27,12r24,-52v34,-2,53,-16,71,-36r-18,-16v-13,15,-30,27,-57,27v-43,-2,-68,-30,-68,-73v0,-42,25,-70,66,-72v27,-1,43,14,57,28r18,-19v-17,-18,-37,-34,-74,-33v-58,3,-96,40,-96,97","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"\u00e9":{"d":"97,-214r22,0r41,-39r-29,-13xm172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00e8":{"d":"172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0xm98,-214r22,0r-34,-52r-29,13","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ea":{"d":"58,-214r23,0r27,-24r27,24r24,0r-38,-47r-25,0xm172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00eb":{"d":"124,-214r32,0r0,-34r-32,0r0,34xm61,-214r32,0r0,-34r-32,0r0,34xm172,-46v-24,35,-102,33,-117,-9v-3,-8,-6,-17,-7,-27r147,0v2,-65,-26,-108,-86,-108v-58,0,-86,41,-90,97v-7,92,119,128,170,62xm48,-104v-3,-65,95,-86,114,-24v3,8,4,16,5,24r-119,0","w":213,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ed":{"d":"36,-214r22,0r41,-39r-29,-13xm33,0r28,0r0,-186r-28,0r0,186","w":94},"\u00ec":{"d":"33,0r28,0r0,-186r-28,0r0,186xm37,-214r22,0r-34,-52r-29,13","w":94},"\u00ee":{"d":"-3,-214r23,0r27,-24r27,24r24,0r-38,-47r-25,0xm33,0r28,0r0,-186r-28,0r0,186","w":94},"\u00ef":{"d":"63,-214r32,0r0,-34r-32,0r0,34xm0,-214r32,0r0,-34r-32,0r0,34xm33,0r28,0r0,-186r-28,0r0,186","w":94},"\u00f1":{"d":"194,-116v9,-80,-108,-96,-135,-38r0,-32r-28,0r0,186r28,0v3,-70,-19,-165,55,-165v74,0,48,97,52,165r28,0r0,-116xm156,-257v-13,44,-62,-16,-88,12v-5,6,-10,15,-14,29r17,5v12,-45,64,18,88,-12v5,-6,9,-15,13,-29","w":221,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"\u00f3":{"d":"105,-214r22,0r41,-39r-29,-13xm19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f2":{"d":"19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73xm106,-214r21,0r-33,-52r-29,13","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f4":{"d":"66,-214r23,0r27,-24r27,24r24,0r-38,-47r-25,0xm19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f6":{"d":"132,-214r32,0r0,-34r-32,0r0,34xm69,-214r32,0r0,-34r-32,0r0,34xm19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f5":{"d":"19,-93v0,57,37,97,97,97v60,0,97,-38,97,-98v0,-58,-39,-96,-96,-96v-59,0,-98,39,-98,97xm185,-93v0,43,-25,72,-68,72v-44,0,-69,-30,-69,-73v0,-43,26,-72,68,-72v42,0,69,30,69,73xm159,-257v-11,45,-61,-16,-87,12v-5,6,-10,15,-14,29r17,5v12,-45,64,18,88,-12v5,-6,9,-15,13,-29","w":232,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00fa":{"d":"98,-214r22,0r41,-39r-29,-13xm28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"\u00f9":{"d":"28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0xm99,-214r21,0r-34,-52r-28,13","w":221,"k":{"\\":18}},"\u00fb":{"d":"59,-214r23,0r27,-24v14,11,21,29,50,24r-38,-47r-24,0xm28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"\u00fc":{"d":"125,-214r32,0r0,-34r-32,0r0,34xm62,-214r32,0r0,-34r-32,0r0,34xm28,-186v2,85,-19,190,71,190v32,0,52,-16,64,-36r0,32r27,0r0,-186r-27,0v-3,71,19,165,-56,165v-73,0,-46,-98,-51,-165r-28,0","w":221,"k":{"\\":18}},"\u00b0":{"d":"26,-199v0,31,23,55,56,55v34,0,57,-23,57,-55v0,-32,-23,-55,-57,-55v-33,0,-56,23,-56,55xm118,-199v0,22,-14,36,-36,36v-21,0,-35,-15,-35,-36v0,-21,14,-36,35,-36v22,0,36,14,36,36","w":164},"\u00a2":{"d":"21,-128v0,47,27,79,63,92r-8,38r24,0r6,-33v42,2,67,-14,86,-36r-17,-16v-15,15,-36,31,-65,27r28,-141v14,5,26,14,35,24r18,-19v-12,-14,-28,-24,-48,-30r7,-32r-24,0r-5,29v-61,1,-100,38,-100,97xm49,-128v2,-43,25,-71,68,-72r-27,139v-22,-10,-42,-35,-41,-67","w":209},"\u00a3":{"d":"134,-256v-66,1,-85,52,-80,125r-30,0r0,25r30,0r0,82r-30,7r0,17r187,0r0,-25r-128,0r0,-81r100,0r0,-25r-100,0v-3,-52,2,-98,51,-98v29,0,41,14,55,30r22,-18v-18,-21,-38,-39,-77,-39","w":231,"k":{"4":5}},"\u00a7":{"d":"156,-45v-7,45,-86,21,-102,-3r-18,17v28,40,148,55,148,-14v0,-19,-13,-29,-26,-36v37,0,65,-48,30,-72v-29,-20,-89,-19,-113,-45v-10,-21,9,-35,34,-34v28,1,50,13,65,28r18,-17v-28,-40,-145,-55,-149,14v0,19,13,29,27,36v-39,-1,-67,48,-31,72v29,20,89,20,114,45v2,3,3,6,3,9xm88,-157v36,3,82,7,91,37v-1,16,-20,27,-40,25v-36,-3,-82,-6,-90,-37v1,-16,19,-27,39,-25","w":227,"k":{"7":5}},"\u00b6":{"d":"17,-174v0,57,45,79,105,79r0,95r28,0r0,-252v-73,-4,-133,11,-133,78","w":183},"\u00df":{"d":"174,-70v1,35,-31,48,-69,48r0,23v54,-1,97,-18,97,-71v0,-41,-32,-55,-65,-64v25,-13,50,-29,50,-67v0,-42,-31,-64,-74,-64v-53,0,-82,32,-82,85r0,180r28,0r0,-181v-11,-67,99,-83,99,-17v0,34,-26,48,-53,58r0,21v36,3,68,16,69,49","w":223,"k":{"\u00fd":4,"\u00ff":4,"y":4,"x":4,"w":2,"v":4}},"\u00ae":{"d":"10,-193v0,38,25,63,63,63v38,0,62,-25,62,-63v0,-37,-25,-63,-62,-63v-38,0,-63,25,-63,63xm128,-193v0,34,-22,57,-55,57v-33,0,-56,-22,-56,-57v0,-33,23,-56,56,-56v33,0,55,22,55,56xm102,-206v-1,-24,-30,-20,-54,-20r0,64r12,0r0,-22v27,-5,15,28,44,22r-17,-24v8,-3,15,-10,15,-20xm89,-204v0,12,-16,10,-29,10r0,-21v13,0,29,-2,29,11","w":145},"\u00a9":{"d":"19,-126v0,78,52,130,130,130v79,0,131,-52,131,-131v0,-78,-52,-129,-130,-129v-79,0,-131,52,-131,130xm268,-127v0,72,-46,120,-119,120v-72,0,-118,-47,-118,-119v0,-71,47,-119,119,-119v72,0,118,47,118,118xm84,-128v0,65,82,90,120,46r-13,-13v-27,33,-87,15,-87,-34v0,-47,60,-65,86,-32r13,-14v-35,-42,-119,-18,-119,47","w":298},"\u00f0":{"d":"213,-102v0,-62,-34,-98,-66,-132r30,-13r-8,-17r-38,16r-17,-15r-40,0v11,8,22,17,32,26r-34,14r8,17r42,-17v19,19,38,40,50,63v-16,-14,-36,-27,-65,-26v-53,3,-88,37,-88,92v0,57,36,98,96,98v63,0,98,-42,98,-106xm184,-93v0,43,-24,72,-67,72v-44,0,-69,-29,-69,-72v0,-41,24,-69,66,-69v44,0,70,26,70,69","w":232},"\u00d0":{"d":"268,-126v0,-112,-98,-135,-222,-126r0,112r-27,0r0,26r27,0r0,114v123,9,222,-14,222,-126xm238,-126v0,85,-69,108,-163,100r0,-88r75,0r0,-26r-75,0r0,-86v94,-7,163,15,163,100","w":292,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":16,"Y":23,"X":20,"W":13,"V":16,"T":18,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 */
Cufon.registerFont({"w":180,"face":{"font-family":"matricium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 4 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-10 -329 389 72","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":108},"*":{"d":"65,-138r25,0r-5,-43r36,26r13,-22r-41,-18r41,-18r-13,-22r-36,26r5,-44r-25,0r5,44r-36,-26r-13,22r41,18r-41,18r13,22r36,-26","w":154,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00f8":7,"\u00e6":4,"\u00c6":36,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":36,"\u00c4":36,"t":-4,"s":4,"q":5,"o":7,"g":5,"e":7,"d":5,"c":7,"a":4,"J":29,"A":36}},"+":{"d":"94,-38r41,0r0,-69r69,0r0,-40r-69,0r0,-68r-41,0r0,68r-70,0r0,40r70,0r0,69","w":228},",":{"d":"17,52v52,0,59,-44,55,-101r-48,0r0,49r19,0v2,18,-9,30,-31,34","w":96,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":16,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"-":{"d":"20,-89r107,0r0,-43r-107,0r0,43","w":146,"k":{"\u00fd":5,"\u00dd":29,"\u00c1":14,"\u00c2":14,"\u00ff":5,"\u00c3":14,"\u00c0":14,"\u00b1":4,"\u00c6":14,"\u00c5":14,"\u00c4":14,"z":4,"y":5,"x":11,"w":4,"v":5,"Z":11,"Y":29,"X":18,"W":13,"V":14,"T":32,"A":14,"7":14,"3":4,"1":11}},".":{"d":"24,0r48,0r0,-49r-48,0r0,49","w":96,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":7,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":25,"v":31,"t":9,"q":4,"o":7,"j":-5,"g":4,"f":5,"e":7,"d":4,"c":7,"Y":47,"W":36,"V":43,"U":5,"T":36,"Q":14,"O":14,"G":14,"C":14,"7":7,"1":18,"0":7}},"\/":{"d":"-9,46r38,0r163,-333r-38,0","w":187,"k":{"\u00f0":29,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00f1":18,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e7":29,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00d7":14,"\u00fd":18,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":43,"\u00c2":43,"\u00ff":18,"\u00d5":14,"\u00c3":43,"\u00c0":43,"\u00f8":29,"\u00e6":23,"\u00b5":14,"\u00b1":4,"\u00d8":14,"\u00c6":43,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00d6":14,"\u00c7":14,"\u00c5":43,"\u00c4":43,"z":22,"y":18,"x":18,"w":18,"v":18,"u":18,"t":7,"s":31,"r":18,"q":25,"p":18,"o":29,"n":18,"m":18,"g":25,"f":9,"e":29,"d":25,"c":29,"a":23,"Z":7,"S":11,"Q":14,"O":14,"J":47,"G":14,"C":14,"A":43,"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"\/":59}},"0":{"d":"21,-126v0,75,36,130,109,130v74,0,110,-56,110,-131v0,-73,-36,-129,-109,-129v-73,0,-110,55,-110,130xm130,-216v87,1,86,179,1,180v-87,-2,-87,-178,-1,-180","w":260,"k":{"\u00b1":5,"7":10,"3":4,"2":4,"1":2,"\/":13,".":7,",":7}},"1":{"d":"64,0r44,0r0,-254v-43,-3,-67,14,-99,22r10,36r45,-13r0,209","w":142},"2":{"d":"111,-216v38,-3,53,44,30,71v-35,41,-83,73,-123,110r0,35r182,0r0,-39r-120,0v42,-44,110,-63,117,-141v7,-81,-115,-97,-157,-45v-6,7,-13,14,-19,22r32,25v17,-22,27,-36,58,-38","w":220,"k":{"7":3,"4":7}},"3":{"d":"15,-40v21,25,51,45,97,44v52,-1,88,-27,88,-80v0,-47,-33,-64,-74,-71r70,-72r0,-33r-166,0r0,39r109,0r-68,72r7,28v40,-2,78,4,78,39v1,24,-19,39,-43,38v-33,0,-50,-14,-67,-33","w":222,"k":{"9":2,"7":8,"5":2,"\/":4}},"4":{"d":"148,0r43,0r0,-57r36,0r0,-36r-36,0r0,-161r-38,0r-140,166r8,31r127,0r0,57xm66,-93r82,-100r0,100r-82,0","w":245,"k":{"9":4,"7":12,"1":7,"\/":7}},"5":{"d":"17,-34v46,57,186,52,186,-48v0,-67,-67,-92,-128,-72r4,-59r113,0r0,-39r-151,0r-7,123r26,18v32,-18,101,-16,99,31v-2,60,-91,49,-115,14","w":223,"k":{"\u00b1":2,"9":2,"7":11,"3":2,"2":4,"\/":7}},"6":{"d":"21,-119v-1,76,27,123,100,123v56,0,90,-31,94,-86v6,-78,-107,-102,-148,-54v3,-43,17,-80,60,-80v26,0,38,10,55,22r24,-34v-21,-16,-41,-28,-77,-28v-77,2,-107,58,-108,137xm171,-80v0,29,-19,46,-51,46v-32,0,-52,-16,-52,-46v0,-28,20,-44,51,-44v30,-1,52,16,52,44","w":236,"k":{"\u00b1":2,"9":4,"7":6,"3":4,"1":5,"\/":4}},"7":{"d":"38,0r50,0r114,-219r0,-33r-178,0r0,39r127,0","w":219,"k":{"\u00b1":4,"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,"\/":50,".":36,"-":11,",":36}},"8":{"d":"17,-69v0,52,45,73,96,73v54,0,97,-23,97,-74v0,-34,-21,-49,-46,-61v21,-11,39,-26,37,-57v-3,-47,-40,-68,-88,-68v-47,0,-85,23,-87,69v-1,30,16,46,37,56v-26,11,-46,28,-46,62xm158,-183v0,24,-22,38,-45,38v-24,0,-46,-15,-45,-39v1,-48,90,-45,90,1xm166,-72v0,55,-105,49,-106,1v0,-51,105,-53,106,-1","w":226,"k":{"\u00b1":2,"9":2,"7":4}},"9":{"d":"27,-26v21,17,43,31,81,30v76,-3,108,-60,108,-138v0,-73,-27,-122,-101,-122v-57,0,-90,33,-94,88v-6,77,109,103,149,53v-2,43,-19,79,-61,79v-27,0,-41,-10,-58,-24xm168,-172v0,30,-20,46,-51,46v-30,1,-51,-16,-51,-45v1,-30,18,-47,50,-47v30,0,52,19,52,46","w":236,"k":{"\u00b1":4,"7":5,"5":2,"3":4,"2":4,"\/":9,".":4,",":4}},":":{"d":"26,-141r48,0r0,-49r-48,0r0,49xm26,0r48,0r0,-49r-48,0r0,49","w":100,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":8}},";":{"d":"26,-141r48,0r0,-49r-48,0r0,49xm19,52v52,0,59,-44,55,-101r-48,0r0,49r19,0v2,18,-9,30,-31,34","w":100,"k":{"\u00dd":14,"Y":14,"W":5,"V":7,"T":8}},"\u037e":{"d":"26,-141r48,0r0,-49r-48,0r0,49xm19,52v52,0,59,-44,55,-101r-48,0r0,49r19,0v2,18,-9,30,-31,34","w":100},"<":{"d":"196,-28r0,-41r-129,-58r129,-57r0,-42r-172,80r0,39","w":228},"=":{"d":"27,-152r174,0r0,-40r-174,0r0,40xm27,-62r174,0r0,-40r-174,0r0,40","w":228},">":{"d":"32,-28r172,-79r0,-39r-172,-80r0,42r129,58r-129,57r0,41","w":228},"?":{"d":"136,-181v0,34,-36,36,-69,43r8,58r29,0r3,-29v41,-7,71,-26,73,-73v4,-89,-135,-90,-171,-33r27,29v16,-16,29,-29,58,-29v24,0,41,12,42,34xm64,0r48,0r0,-49r-48,0r0,49","w":194},"@":{"d":"19,-99v-6,131,147,196,256,130r-6,-10v-27,15,-50,24,-89,24v-88,0,-147,-55,-147,-144v0,-87,58,-144,144,-144v81,0,138,48,142,129v2,40,-12,70,-47,74v-23,2,-30,-18,-26,-41r15,-91r-35,-5r-4,21v-39,-55,-141,-10,-132,64v-6,69,87,86,121,43v9,14,28,26,53,25v48,-2,70,-38,70,-90v0,-88,-68,-142,-157,-142v-95,0,-154,62,-158,157xm176,-151v62,8,39,95,-11,96v-22,0,-39,-16,-39,-39v1,-33,19,-55,50,-57","w":352},"A":{"d":"11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"B":{"d":"228,-187v-1,-84,-113,-63,-196,-65r0,252v89,-4,209,22,210,-70v0,-36,-23,-50,-50,-61v20,-10,36,-26,36,-56xm184,-181v1,46,-62,33,-108,35r0,-67v44,2,107,-11,108,32xm198,-75v0,50,-73,33,-122,36r0,-69v48,3,122,-14,122,33","w":259,"k":{"&":-4,"\u00fd":4,"\u00dd":11,"\u00ff":4,"y":4,"w":4,"v":4,"Y":11,"X":7,"W":5,"V":7,"T":5,"?":2}},"C":{"d":"21,-126v-8,123,157,170,231,86r-29,-29v-18,18,-38,33,-72,33v-53,0,-83,-37,-83,-91v0,-52,31,-89,83,-89v32,0,51,16,70,32r29,-33v-23,-23,-53,-39,-99,-39v-80,0,-125,52,-130,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"W":1,"V":1,"Q":7,"O":7,"G":7,"C":7,"-":4}},"D":{"d":"260,-126v0,-115,-103,-135,-228,-126r0,252v125,8,228,-10,228,-126xm214,-126v0,72,-58,92,-137,86r0,-172v79,-6,137,14,137,86","w":281,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":15,"Y":23,"X":20,"W":14,"V":16,"T":16,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}},"E":{"d":"32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"F":{"d":"32,0r45,0r0,-103r127,0r0,-40r-127,0r0,-69r143,0r0,-40r-188,0r0,252","w":236,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00e5":9,"\u00e3":9,"\u00e4":9,"&":7,"\u00d7":2,"\u00fd":5,"\u00d2":2,"\u00d4":2,"\u00d3":2,"\u00c1":29,"\u00c2":29,"\u00ff":5,"\u00d5":2,"\u00c3":29,"\u00c0":29,"\u00bb":5,"\u00f8":5,"\u00e6":9,"\u00b5":2,"\u00d8":2,"\u00c6":29,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00d6":2,"\u00c7":2,"\u00c5":29,"\u00c4":29,"z":5,"y":5,"w":4,"v":5,"s":4,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"a":9,"Z":4,"Q":2,"O":2,"J":40,"G":2,"C":2,"A":29,"?":-4,"\/":25,".":36,",":36}},"G":{"d":"21,-126v0,80,49,128,131,130v47,0,79,-18,105,-39r0,-106r-107,0r0,39r64,0r0,47v-15,12,-35,19,-61,19v-54,0,-85,-36,-85,-91v0,-51,30,-89,81,-89v33,0,53,12,71,27r28,-33v-23,-21,-53,-35,-97,-34v-80,2,-130,52,-130,130","w":282,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00fd":2,"\u00dd":11,"\u00ff":2,"\u00e6":-4,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"y":2,"v":2,"a":-4,"\\":5,"Y":11,"X":4,"W":6,"V":8,"T":5,"?":4}},"H":{"d":"32,0r45,0r0,-106r120,0r0,106r44,0r0,-252r-44,0r0,105r-120,0r0,-105r-45,0r0,252","w":273},"I":{"d":"35,0r44,0r0,-252r-44,0r0,252","w":114},"J":{"d":"8,-37v16,22,42,42,80,41v56,-1,84,-32,85,-90r0,-166r-46,0r0,165v0,31,-13,50,-40,50v-25,0,-37,-15,-50,-30","w":201,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"J":7,"A":9,".":5,",":5}},"K":{"d":"32,0r45,0r0,-73r39,-40r86,113r54,0r-110,-144r105,-108r-54,0r-120,127r0,-127r-45,0r0,252","w":261,"k":{"\u00f0":11,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":1,"\u00d7":19,"\u00fd":18,"\u00dd":12,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":19,"\u00d4":19,"\u00d3":19,"\u00c1":5,"\u00c2":5,"\u00ff":18,"\u00d5":19,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":11,"\u00e6":4,"\u00b5":19,"\u00d8":19,"\u00c6":5,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":5,"\u00d6":19,"\u00c7":19,"\u00c5":5,"\u00c4":5,"y":18,"w":18,"v":22,"u":7,"t":9,"q":9,"o":11,"g":9,"f":7,"e":11,"d":9,"c":11,"a":4,"Y":12,"W":11,"V":11,"U":5,"T":4,"S":4,"Q":19,"O":19,"G":19,"C":19,"A":5,"-":18}},"L":{"d":"32,0r177,0r0,-40r-132,0r0,-212r-45,0r0,252","w":222,"k":{"\u00f0":4,"\u00ae":32,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"&":1,"\u00d7":14,"\u00fd":22,"\u00dd":47,"\u00d9":7,"\u00db":7,"\u00da":7,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00f8":4,"\u00b5":14,"\u00d8":14,"\u00dc":7,"\u00d6":14,"\u00c7":14,"y":22,"w":18,"v":22,"t":7,"q":2,"o":4,"g":2,"f":7,"e":4,"d":2,"c":4,"\\":43,"Y":47,"W":36,"V":41,"U":7,"T":36,"Q":14,"O":14,"G":14,"C":14,"?":22,"-":14,"*":29}},"M":{"d":"32,0r44,0r0,-180r80,118r80,-119r0,181r44,0r0,-252r-47,0r-77,119r-76,-119r-48,0r0,252","w":312},"N":{"d":"32,0r44,0r0,-179r139,179r37,0r0,-252r-44,0r0,174r-135,-174r-41,0r0,252","w":284},"O":{"d":"21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"P":{"d":"228,-167v2,-94,-100,-87,-196,-85r0,252r45,0r0,-81v83,5,150,-10,151,-86xm183,-167v0,48,-55,48,-106,46r0,-91v50,-1,106,-4,106,45","w":240,"k":{"\u00f0":2,"\u00fc":-2,"\u00fb":-2,"\u00f9":-2,"\u00fa":-2,"\u00f5":2,"\u00f6":2,"\u00f4":2,"\u00f2":2,"\u00f3":2,"\u00eb":2,"\u00ea":2,"\u00e8":2,"\u00e9":2,"\u00e7":2,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":2,"\u00fd":-4,"\u00dd":4,"\u00c1":25,"\u00c2":25,"\u00ff":-4,"\u00c3":25,"\u00c0":25,"\u00ab":-4,"\u00f8":2,"\u00e6":4,"\u00c6":25,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00c5":25,"\u00c4":25,"y":-4,"w":-4,"v":-4,"u":-2,"t":-5,"o":2,"f":-5,"e":2,"c":2,"a":4,"Z":5,"Y":4,"X":11,"W":2,"V":4,"J":36,"A":25,"\/":22,".":36,",":36}},"Q":{"d":"153,4v32,0,56,-9,76,-23r31,27r28,-32r-29,-25v15,-20,26,-46,26,-78v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,131v0,78,51,129,132,129xm197,-49v-57,34,-133,-8,-129,-78v3,-53,31,-88,85,-89v68,-1,106,78,72,138r-43,-40r-29,33","w":306,"k":{")":4,"\u00dd":23,"Y":23,"W":14,"V":15,"T":14,"?":7}},"R":{"d":"238,-172v0,-96,-112,-79,-206,-80r0,252r45,0r0,-88r55,0r62,88r52,0r-68,-95v34,-10,60,-34,60,-77xm193,-170v0,52,-64,43,-116,43r0,-85v51,1,116,-11,116,42","w":260,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00dd":9,"\u00f8":4,"t":-4,"q":2,"o":4,"g":2,"f":-4,"e":4,"d":2,"c":4,"Y":9,"W":5,"V":7,"T":1,"J":2}},"S":{"d":"70,-186v6,-48,86,-29,109,-4r24,-34v-54,-57,-211,-34,-172,72v19,48,103,35,133,72v9,27,-13,44,-42,44v-37,0,-57,-14,-80,-32r-27,31v46,53,196,64,196,-35v1,-80,-100,-60,-139,-101v-2,-4,-2,-8,-2,-13","w":230,"k":{"\u00fd":5,"\u00dd":11,"\u00c1":5,"\u00c2":5,"\u00ff":5,"\u00c3":5,"\u00c0":5,"\u00c6":5,"\u00c5":5,"\u00c4":5,"z":2,"y":5,"x":5,"w":4,"v":5,"t":2,"f":2,"\\":7,"Z":4,"Y":11,"X":9,"W":9,"V":11,"T":5,"S":4,"A":5,"?":4}},"T":{"d":"94,0r45,0r0,-211r80,0r0,-41r-205,0r0,41r80,0r0,211","w":233,"k":{"\u00f0":41,"\u00fc":23,"\u00fb":23,"\u00f9":23,"\u00fa":23,"\u00f5":41,"\u00f6":41,"\u00f4":41,"\u00f2":41,"\u00f3":41,"\u00f1":26,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":41,"\u00ea":41,"\u00e8":41,"\u00e9":41,"\u00e7":41,"\u00e5":41,"\u00e3":41,"\u00e4":41,"&":19,"\u00d7":14,"\u00fd":23,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":32,"\u00c2":32,"\u00ff":23,"\u00d5":14,"\u00c3":32,"\u00c0":32,"\u00bb":25,"\u00ab":32,"\u00f8":41,"\u00e6":41,"\u00b5":14,"\u00d8":14,"\u00c6":32,"\u00e2":41,"\u00e0":41,"\u00e1":41,"\u00d6":14,"\u00c7":14,"\u00c5":32,"\u00c4":32,"z":32,"y":23,"x":23,"w":21,"v":23,"u":23,"t":10,"s":35,"r":26,"q":37,"p":26,"o":41,"n":26,"m":26,"l":4,"k":4,"j":7,"i":7,"h":4,"g":37,"f":13,"e":41,"d":37,"c":41,"b":4,"a":41,"Z":5,"S":5,"Q":14,"O":14,"J":40,"G":14,"C":14,"A":32,";":8,":":8,"\/":32,".":36,"-":32,",":36}},"U":{"d":"28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"V":{"d":"116,2r38,0r105,-254r-48,0r-75,194r-76,-194r-49,0","w":270,"k":{"\u00f0":25,"\u00fc":14,"\u00fb":14,"\u00f9":14,"\u00fa":14,"\u00f5":25,"\u00f6":25,"\u00f4":25,"\u00f2":25,"\u00f3":25,"\u00f1":14,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":25,"\u00ea":25,"\u00e8":25,"\u00e9":25,"\u00e7":25,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":16,"\u00d7":15,"\u00fd":14,"\u00dd":7,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":36,"\u00c2":36,"\u00ff":14,"\u00d5":15,"\u00c3":36,"\u00c0":36,"\u00bb":14,"\u00ab":22,"\u00f8":25,"\u00e6":25,"\u00b5":15,"\u00d8":15,"\u00c6":36,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":15,"\u00c7":15,"\u00c5":36,"\u00c4":36,"z":20,"y":14,"x":18,"w":13,"v":14,"u":14,"t":7,"s":22,"r":14,"q":23,"p":14,"o":25,"n":14,"m":14,"l":4,"k":4,"j":7,"i":7,"h":4,"g":23,"f":9,"e":25,"d":23,"c":25,"b":4,"a":25,"Z":4,"Y":7,"X":7,"W":4,"V":4,"S":9,"Q":15,"O":15,"J":43,"G":15,"C":15,"A":36,";":7,":":7,"\/":43,".":43,"-":14,",":43}},"W":{"d":"101,2r38,0r62,-181r62,181r38,0r88,-254r-47,0r-60,187r-62,-188r-37,0r-62,188r-60,-187r-48,0","w":401,"k":{"\u00f0":23,"\u00fc":13,"\u00fb":13,"\u00f9":13,"\u00fa":13,"\u00f5":23,"\u00f6":23,"\u00f4":23,"\u00f2":23,"\u00f3":23,"\u00f1":13,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":23,"\u00ea":23,"\u00e8":23,"\u00e9":23,"\u00e7":23,"\u00e5":25,"\u00e3":25,"\u00e4":25,"&":13,"\u00d7":14,"\u00fd":13,"\u00dd":7,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00c1":32,"\u00c2":32,"\u00ff":13,"\u00d5":14,"\u00c3":32,"\u00c0":32,"\u00bb":13,"\u00ab":18,"\u00f8":23,"\u00e6":25,"\u00b5":14,"\u00d8":14,"\u00c6":32,"\u00e2":25,"\u00e0":25,"\u00e1":25,"\u00d6":14,"\u00c7":14,"\u00c5":32,"\u00c4":32,"z":20,"y":13,"x":14,"w":13,"v":13,"u":13,"t":9,"s":22,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":4,"k":4,"j":5,"i":5,"h":4,"g":22,"f":11,"e":23,"d":22,"c":23,"b":4,"a":25,"Z":4,"Y":7,"X":5,"W":4,"V":4,"S":7,"Q":14,"O":14,"J":38,"G":14,"C":14,"A":32,";":5,":":5,"\/":36,".":36,"-":13,",":36}},"X":{"d":"13,0r51,0r67,-95r66,95r52,0r-91,-129r88,-123r-51,0r-63,90r-63,-90r-52,0r88,124","w":262,"k":{"\u00f0":16,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00eb":16,"\u00ea":16,"\u00e8":16,"\u00e9":16,"\u00e7":16,"\u00e5":4,"\u00e3":4,"\u00e4":4,"&":4,"\u00d7":18,"\u00fd":14,"\u00dd":10,"\u00d9":4,"\u00db":4,"\u00da":4,"\u00d2":18,"\u00d4":18,"\u00d3":18,"\u00c1":5,"\u00c2":5,"\u00ff":14,"\u00d5":18,"\u00c3":5,"\u00c0":5,"\u00bb":7,"\u00ab":18,"\u00f8":16,"\u00e6":4,"\u00b5":18,"\u00d8":18,"\u00c6":5,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00dc":4,"\u00d6":18,"\u00c7":18,"\u00c5":5,"\u00c4":5,"y":14,"w":14,"v":18,"u":7,"t":7,"q":14,"o":16,"l":4,"k":4,"j":4,"i":4,"h":4,"g":14,"f":7,"e":16,"d":14,"c":16,"b":4,"a":4,"Y":10,"W":5,"V":7,"U":4,"S":11,"Q":18,"O":18,"J":4,"G":18,"C":18,"A":5,"?":5,"-":18}},"Y":{"d":"107,0r44,0r0,-100r100,-152r-50,0r-72,112r-70,-112r-53,0r101,153r0,99","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":22,"\u00d7":22,"\u00fd":22,"\u00dd":5,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":5,"X":10,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"Z":{"d":"23,0r207,0r0,-39r-149,0r149,-180r0,-33r-202,0r0,39r144,0r-149,180r0,33","w":252,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"&":2,"\u00d7":13,"\u00fd":5,"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00ff":5,"\u00d5":13,"\u00ab":7,"\u00f8":9,"\u00b5":13,"\u00d8":13,"\u00d6":13,"\u00c7":13,"y":5,"w":5,"v":7,"q":7,"o":9,"g":7,"f":4,"e":9,"d":7,"c":9,"Z":4,"S":4,"Q":13,"O":13,"G":13,"C":13,"-":11}},"[":{"d":"32,47r110,0r0,-34r-69,0r0,-231r69,0r0,-34r-110,0r0,299","w":163,"k":{"\u00f0":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":7,"\u00e6":4,"\u00b5":7,"\u00d8":7,"\u00e2":4,"\u00e0":4,"\u00e1":4,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":7,"v":7,"s":5,"q":7,"o":7,"j":-11,"g":7,"e":7,"d":7,"c":7,"a":4,"Q":7,"O":7,"J":4,"G":7,"C":7}},"\\":{"d":"159,46r38,0r-163,-333r-38,0","w":187,"k":{"\u00d7":14,"\u00fd":22,"\u00dd":40,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":14,"\u00d4":14,"\u00d3":14,"\u00ff":22,"\u00d5":14,"\u00b5":14,"\u00d8":14,"\u00dc":5,"\u00d6":14,"\u00c7":14,"y":22,"w":22,"v":25,"t":11,"j":-11,"f":4,"Y":40,"W":36,"V":43,"U":5,"T":32,"Q":14,"O":14,"G":14,"C":14}},"]":{"d":"21,47r111,0r0,-299r-111,0r0,34r69,0r0,231r-69,0r0,34","w":163},"^":{"d":"20,-177r33,0r37,-48r36,48r34,0r-55,-75r-30,0"},"_":{"d":"-1,58r218,0r0,-34r-218,0r0,34","w":216},"`":{"d":"89,-214r33,0r-38,-59r-39,17"},"a":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"b":{"d":"71,-30v14,17,32,36,64,34v55,-3,89,-39,89,-99v0,-59,-32,-96,-89,-99v-32,-1,-50,17,-64,36r0,-105r-44,0r0,263r44,0r0,-30xm180,-95v0,35,-19,61,-55,61v-35,0,-55,-25,-55,-61v1,-37,20,-61,55,-61v36,0,55,26,55,61","w":241,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"c":{"d":"17,-95v-6,94,122,130,176,64r-26,-26v-30,41,-107,24,-107,-38v0,-60,75,-79,105,-37r27,-29v-18,-19,-39,-34,-76,-33v-60,2,-95,39,-99,99","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"d":{"d":"18,-95v0,60,33,96,88,99v34,2,51,-17,65,-36r0,32r43,0r0,-263r-43,0r0,102v-15,-17,-33,-35,-65,-33v-56,3,-88,39,-88,99xm171,-95v0,36,-20,61,-55,61v-35,0,-54,-25,-54,-61v0,-36,19,-61,54,-61v35,0,55,25,55,61","w":241},"e":{"d":"17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"f":{"d":"131,-260v-51,-16,-104,6,-94,71r-24,0r0,36r24,0r0,153r44,0r0,-153r49,0r0,-36r-50,0v-7,-37,25,-46,51,-34r0,-37","w":135,"k":{"\u00f0":4,"\u00ae":-16,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,")":-11,"\u00ab":5,"\u00f8":4,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":-11,"z":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":5,"]":-7,"\\":-11,"?":-13,"\/":16,".":16,",":16,"*":-11}},"g":{"d":"171,-50v15,83,-85,86,-128,53r-16,33v70,42,187,29,187,-75r0,-151r-43,0r0,28v-16,-17,-35,-32,-67,-32v-53,0,-83,35,-86,90v-5,87,114,117,153,54xm171,-105v0,34,-22,53,-55,53v-33,0,-54,-19,-54,-53v1,-33,20,-52,54,-52v34,1,55,19,55,52","w":241,"k":{"\\":18}},"h":{"d":"130,-194v-30,0,-46,16,-59,33r0,-102r-44,0r0,263r44,0v5,-60,-21,-154,43,-154v63,0,34,96,40,154r44,0v-3,-84,21,-194,-68,-194","w":223,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"i":{"d":"28,-219r47,0r0,-42r-47,0r0,42xm30,0r43,0r0,-190r-43,0r0,190","w":102},"j":{"d":"28,-219r47,0r0,-42r-47,0r0,42xm30,0v1,20,-14,26,-33,22r0,35v44,8,76,-8,76,-54r0,-193r-43,0r0,190","w":102},"k":{"d":"27,0r44,0r0,-54r27,-28r57,82r50,0r-78,-113r76,-77r-53,0r-79,84r0,-157r-44,0r0,263","w":209,"k":{"\u00f0":9,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00fd":5,"\u00ff":5,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"y":5,"w":7,"v":7,"u":4,"t":4,"q":9,"o":9,"g":9,"e":9,"d":9,"c":9,"a":4,"\\":14,"-":7}},"l":{"d":"30,0r43,0r0,-263r-43,0r0,263","w":102},"m":{"d":"185,-161v-14,-44,-98,-41,-114,0r0,-29r-44,0r0,190r44,0v5,-59,-22,-154,41,-154v61,0,31,97,38,154r44,0v5,-59,-21,-153,40,-154v62,-1,32,96,39,154r43,0v-3,-83,22,-197,-66,-194v-31,1,-50,15,-65,33","w":342,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"n":{"d":"130,-194v-30,0,-46,16,-59,33r0,-29r-44,0r0,190r44,0v5,-60,-21,-154,43,-154v63,0,34,96,40,154r44,0v-3,-84,21,-194,-68,-194","w":223,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"o":{"d":"17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"p":{"d":"135,-194v-32,-1,-50,17,-64,36r0,-32r-44,0r0,248r44,0r0,-88v14,17,32,36,64,34v55,-3,89,-39,89,-99v0,-59,-32,-96,-89,-99xm180,-95v0,35,-19,61,-55,61v-35,0,-55,-25,-55,-61v1,-37,20,-61,55,-61v36,0,55,26,55,61","w":241,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"q":{"d":"106,4v34,2,51,-17,65,-36r0,90r43,0r0,-248r-43,0r0,29v-15,-17,-33,-35,-65,-33v-56,3,-88,39,-88,99v0,60,33,96,88,99xm171,-95v0,36,-20,61,-55,61v-35,0,-54,-25,-54,-61v0,-36,19,-61,54,-61v35,0,55,25,55,61","w":241,"k":{"\\":18}},"r":{"d":"138,-194v-36,-2,-56,21,-67,47r0,-43r-44,0r0,190r44,0v-1,-73,-7,-151,67,-148r0,-46","w":148,"k":{"\u00f0":6,"\u00f5":6,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00eb":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e7":6,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00ab":4,"\u00f8":6,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"z":4,"q":5,"o":6,"g":5,"e":6,"d":5,"c":6,"a":9,"\\":11,"\/":27,".":32,",":32,"*":-7}},"s":{"d":"123,-52v-9,39,-73,15,-92,-2r-19,29v44,46,183,35,146,-54v-14,-33,-66,-30,-93,-51v-12,-14,5,-31,23,-29v20,1,38,8,53,18r18,-31v-46,-41,-168,-20,-132,60v15,32,67,29,93,50v2,3,3,6,3,10","k":{")":7,"\u00fd":5,"\u00ff":5,"\u00ab":4,"}":4,"z":4,"y":5,"x":9,"w":5,"v":7,"t":4,"s":4,"]":5,"\\":27,"?":13}},"t":{"d":"36,-153v3,67,-20,156,55,156v17,0,28,-3,39,-9r0,-36v-20,9,-50,11,-50,-17r0,-94r51,0r0,-37r-51,0r0,-52r-44,0r0,52r-24,0r0,37r24,0","w":147,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":4,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":14}},"u":{"d":"25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"v":{"d":"87,1r40,0r77,-191r-45,0r-52,140r-51,-140r-47,0","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":5,"\u00ff":5,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":5,"x":4,"w":5,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"w":{"d":"73,1r39,0r43,-130r42,130r39,0r62,-191r-43,0r-39,130r-42,-131r-38,0r-42,131r-38,-130r-44,0","w":309,"k":{"\u00f0":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00fd":4,"\u00ff":4,"\u00bb":4,"\u00ab":7,"\u00f8":9,"\u00e6":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":5,"q":7,"o":9,"g":7,"e":9,"d":7,"c":9,"a":7,"]":7,"\\":18,"?":4,"\/":22,".":25,"-":4,",":25}},"x":{"d":"11,0r46,0r47,-67r46,67r48,0r-70,-98r67,-92r-46,0r-44,63r-44,-63r-48,0r68,94","w":208,"k":{"\u00f0":13,"\u00f5":13,"\u00f6":13,"\u00f4":13,"\u00f2":13,"\u00f3":13,"\u00eb":13,"\u00ea":13,"\u00e8":13,"\u00e9":13,"\u00e7":13,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":16,"\u00f8":13,"\u00e6":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"}":4,"y":4,"w":4,"v":4,"s":7,"q":11,"o":13,"g":11,"e":13,"d":11,"c":13,"a":5,"]":4,"\\":18,"?":5,"-":11}},"y":{"d":"21,47v29,20,83,13,96,-17v30,-70,58,-148,87,-220r-45,0r-49,141r-54,-141r-47,0r80,190v-6,23,-33,27,-53,15","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"z":{"d":"19,0r165,0r0,-36r-110,0r110,-124r0,-30r-161,0r0,36r106,0r-110,124r0,30","w":201,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00ab":5,"\u00f8":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"\\":16}},"{":{"d":"19,-87v87,-16,14,105,90,127v11,4,25,8,41,11r7,-29v-39,-7,-52,-27,-48,-76v3,-30,-14,-41,-37,-49v31,-8,36,-35,36,-76v0,-34,20,-42,49,-50r-7,-28v-55,7,-88,30,-81,98v3,32,-16,40,-50,39r0,33","w":175,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00d7":7,"\u00fd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":5,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"z":4,"y":4,"x":4,"w":4,"v":4,"s":4,"q":5,"o":5,"j":-13,"g":4,"e":5,"d":5,"c":5,"Q":7,"O":7,"J":4,"G":7,"C":7}},"|":{"d":"42,46r35,0r0,-333r-35,0r0,333","w":119},"}":{"d":"66,-54v0,48,-9,71,-48,76r8,29v54,-9,86,-29,81,-98v-3,-33,15,-42,50,-40r0,-33v-87,17,-15,-105,-91,-126v-11,-3,-24,-8,-40,-11r-8,28v38,6,48,28,48,76v0,30,14,42,38,50v-23,8,-38,19,-38,49","w":175},"~":{"d":"45,-82v14,-46,72,22,97,-16v6,-8,11,-18,15,-33r-24,-7v-15,45,-72,-22,-97,15v-6,8,-11,19,-15,33","w":178},"\u00c4":{"d":"157,-276r45,0r0,-41r-45,0r0,41xm83,-276r45,0r0,-41r-45,0r0,41xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00c5":{"d":"142,-306v-39,-4,-57,48,-27,67r-104,239r45,0r26,-61r119,0r26,61r47,0r-105,-239v30,-17,13,-72,-27,-67xm98,-100r43,-101r44,101r-87,0xm142,-247v-13,0,-23,-8,-23,-21v0,-13,10,-21,23,-21v14,0,24,9,24,21v0,12,-10,21,-24,21","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00c7":{"d":"21,-126v0,71,42,114,102,128r-28,42r39,16r23,-56v45,-1,71,-22,95,-44r-29,-29v-18,18,-38,33,-72,33v-53,0,-83,-37,-83,-91v0,-52,31,-89,83,-89v32,0,51,16,70,32r29,-33v-23,-23,-53,-39,-99,-39v-80,0,-130,52,-130,130","w":265,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00d7":7,"\u00fd":4,"\u00dd":4,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":4,"\u00d5":7,"\u00f8":4,"\u00b5":7,"\u00d8":7,"\u00d6":7,"\u00c7":7,"y":4,"x":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"Y":4,"X":4,"W":1,"V":1,"Q":7,"O":7,"G":7,"C":7,"-":4}},"\u00c9":{"d":"109,-273r34,0r46,-35r-40,-17xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d1":{"d":"188,-324v-15,44,-73,-22,-98,15v-6,8,-11,19,-15,33r24,7v14,-45,72,20,98,-15v6,-8,11,-19,15,-33xm32,0r44,0r0,-179r139,179r37,0r0,-252r-44,0r0,174r-135,-174r-41,0r0,252","w":284},"\u00d6":{"d":"168,-276r44,0r0,-41r-44,0r0,41xm94,-276r45,0r0,-41r-45,0r0,41xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00dc":{"d":"151,-273r44,0r0,-40r-44,0r0,40xm77,-273r45,0r0,-40r-45,0r0,40xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00e1":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm89,-214r32,0r45,-42r-40,-17","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e0":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm90,-214r33,0r-37,-59r-40,17","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e2":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm44,-214r34,0r27,-24r29,24r34,0r-42,-53r-40,0","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00b4":{"d":"58,-214r33,0r44,-42r-39,-17"},"\u00a8":{"d":"103,-214r44,0r0,-43r-44,0r0,43xm33,-214r44,0r0,-43r-44,0r0,43"},"\u00c6":{"d":"4,0r46,0r34,-61r91,0r0,61r181,0r0,-40r-136,0r0,-67r118,0r0,-40r-118,0r0,-65r134,0r0,-40r-209,0xm105,-100r63,-113r7,0r0,113r-70,0","w":376,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00d8":{"d":"79,-17v19,13,43,22,74,21v81,-3,132,-51,132,-131v0,-37,-14,-65,-33,-86r36,-41r-44,0r-17,19v-19,-13,-43,-22,-74,-21v-81,3,-132,51,-132,131v0,37,14,66,33,87r-36,40r44,0xm84,-72v-54,-72,28,-186,115,-130xm222,-180v54,72,-28,186,-115,130","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00b1":{"d":"14,-40v22,24,54,44,98,44v55,1,90,-26,90,-76v0,-32,-20,-49,-45,-57v20,-11,38,-27,38,-60v0,-64,-87,-81,-139,-55v-14,8,-26,20,-37,34r31,25v15,-16,29,-31,57,-31v25,0,44,11,44,34v0,33,-38,39,-76,36r0,38v40,-1,83,-1,83,36v0,23,-20,36,-45,36v-33,0,-52,-14,-68,-32","w":219,"k":{"7":4}},"\u00a5":{"d":"102,0r43,0r0,-37r69,0r0,-32r-69,0r0,-26r69,0r0,-32r-57,0r83,-125r-50,0r-66,105r-66,-105r-51,0r83,125r-57,0r0,32r69,0r0,26r-69,0r0,32r69,0r0,37","w":246,"k":{"4":7}},"\u00b5":{"d":"21,-126v0,93,82,150,177,122r42,40r65,0v-17,-26,-43,-41,-63,-64v24,-22,43,-57,43,-99v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u03bc":{"d":"21,-126v0,93,82,150,177,122r42,40r65,0v-17,-26,-43,-41,-63,-64v24,-22,43,-57,43,-99v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306},"\u00aa":{"d":"20,-178v0,38,54,41,70,19r0,12r25,0v0,-51,10,-106,-46,-106v-17,0,-28,3,-40,9r7,19v17,-9,59,-12,55,17v-28,-9,-71,-3,-71,30xm19,-102r97,0r0,-20r-97,0r0,20xm91,-192v7,28,-43,42,-46,13v-1,-20,31,-17,46,-13","w":140},"\u00ba":{"d":"16,-199v0,32,21,54,54,54v34,0,55,-23,55,-55v0,-31,-22,-54,-54,-54v-32,0,-55,22,-55,55xm18,-102r104,0r0,-20r-104,0r0,20xm99,-199v0,18,-10,33,-28,32v-17,0,-31,-14,-30,-33v0,-17,11,-31,29,-31v17,0,29,14,29,32","w":140},"\u00e6":{"d":"14,-55v2,77,118,68,152,27v28,43,126,41,152,-3r-26,-23v-28,36,-105,28,-106,-26r139,0v4,-65,-26,-114,-89,-114v-30,0,-52,14,-67,32v-19,-40,-100,-37,-138,-15r12,35v33,-18,107,-21,100,32v-52,-18,-131,-8,-129,55xm185,-108v-3,-51,78,-70,93,-20v2,6,4,13,5,20r-98,0xm150,-53v-15,14,-31,23,-56,24v-19,0,-36,-9,-36,-29v0,-36,57,-32,85,-23v0,10,3,21,7,28","w":342,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00f8":{"d":"63,-11v67,38,160,-4,157,-84v-1,-26,-10,-49,-24,-64r29,-33r-40,0r-12,13v-67,-38,-156,4,-156,85v0,27,10,48,23,64r-28,32r39,0xm68,-62v-31,-50,22,-121,79,-86xm168,-128v31,49,-21,121,-79,87","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00bf":{"d":"82,-203r49,0r0,-49r-49,0r0,49xm59,-135v-74,27,-46,147,40,138v41,-4,66,-17,87,-40r-27,-29v-18,31,-100,46,-100,-6v0,-33,36,-35,68,-42r-7,-58r-29,0r-4,29v-10,2,-19,4,-28,8","w":194,"k":{"\u00e5":-4,"\u00e3":-4,"\u00e4":-4,"\u00d7":7,"\u00fd":13,"\u00dd":25,"\u00d9":5,"\u00db":5,"\u00da":5,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00ff":13,"\u00d5":7,"\u00e6":-4,"\u00b5":7,"\u00d8":7,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"\u00dc":5,"\u00d6":7,"\u00c7":7,"y":13,"w":13,"v":16,"t":5,"f":4,"a":-4,"Y":25,"X":4,"W":18,"V":22,"U":5,"T":22,"Q":7,"O":7,"G":7,"C":7}},"\u00a1":{"d":"31,-203r47,0r0,-49r-47,0r0,49xm29,0r51,0r-13,-172r-25,0","w":108},"\u00ac":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00ab":{"d":"166,-15r33,-17r-47,-63r47,-64r-33,-17r-59,82xm76,-15r33,-17r-48,-63r48,-64r-33,-17r-60,82","w":218,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":5,"\u00dd":27,"\u00ff":5,"\u00f8":4,"y":5,"x":5,"w":4,"v":5,"q":2,"o":4,"g":2,"e":4,"d":2,"c":4,"Y":27,"X":7,"W":13,"V":14,"T":25}},"\u00bb":{"d":"143,-15v19,-28,42,-52,59,-81r-59,-80r-34,18r48,63r-48,64xm52,-15v19,-28,42,-52,60,-81r-60,-80r-33,18r48,63r-48,64","w":218,"k":{"\u00fd":11,"\u00dd":36,"\u00c1":7,"\u00c2":7,"\u00ff":11,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c5":7,"\u00c4":7,"z":7,"y":11,"x":16,"w":7,"v":11,"t":4,"s":4,"f":4,"Z":5,"Y":36,"X":18,"W":18,"V":22,"T":32,"S":4,"A":7}},"\u00a0":{"w":108},"\u00c0":{"d":"119,-329r-39,18r46,35r34,0xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00c3":{"d":"188,-328v-15,44,-73,-22,-98,15v-6,8,-11,19,-15,33r24,7v15,-46,73,22,98,-15v6,-8,11,-19,15,-33xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00d5":{"d":"199,-328v-15,44,-73,-22,-99,15v-6,8,-10,19,-14,33r24,7v15,-46,73,22,98,-15v6,-8,11,-19,15,-33xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00f7":{"d":"90,-179r48,0r0,-46r-48,0r0,46xm204,-108r0,-37r-180,0r0,37r180,0xm90,-29r48,0r0,-46r-48,0r0,46","w":228},"\u00ff":{"d":"21,47v29,20,83,13,96,-17v30,-70,58,-148,87,-220r-45,0r-49,141r-54,-141r-47,0r80,190v-6,23,-33,27,-53,15xm120,-214r45,0r0,-43r-45,0r0,43xm50,-214r44,0r0,-43r-44,0r0,43","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00b7":{"d":"24,-86r48,0r0,-49r-48,0r0,49","w":96},"\u22c5":{"d":"24,-86r48,0r0,-49r-48,0r0,49","w":96},"\u00c2":{"d":"78,-275r36,0r28,-21r28,21r36,0r-43,-49r-41,0xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00ca":{"d":"62,-273r36,0r28,-21r28,21r36,0r-43,-48r-41,0xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c1":{"d":"124,-276r34,0r46,-35r-39,-18xm11,0r45,0r26,-61r119,0r26,61r47,0r-111,-254r-41,0xm98,-100r43,-101r44,101r-87,0","w":284,"k":{"\u00f0":9,"\u00ae":36,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00eb":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e7":9,"\u00d7":15,"\u00fd":17,"\u00dd":40,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":5,"\u00c2":5,"\u00ff":17,"\u00d5":15,"\u00c3":5,"\u00c0":5,"\u00ab":7,"\u00f8":9,"\u00b5":15,"\u00d8":15,"\u00c6":5,"\u00dc":9,"\u00d6":15,"\u00c7":15,"\u00c5":5,"\u00c4":5,"y":17,"w":19,"v":24,"u":4,"t":11,"q":9,"o":9,"g":9,"f":7,"e":9,"d":9,"c":9,"\\":43,"Y":40,"X":5,"W":32,"V":36,"U":9,"T":32,"S":4,"Q":15,"O":15,"G":15,"C":15,"A":5,"?":22,"-":14,"*":36}},"\u00cb":{"d":"141,-273r45,0r0,-40r-45,0r0,40xm67,-273r45,0r0,-40r-45,0r0,40xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00c8":{"d":"104,-325r-40,17r46,35r34,0xm32,0r189,0r0,-40r-144,0r0,-67r126,0r0,-40r-126,0r0,-65r142,0r0,-40r-187,0r0,252","w":241,"k":{"\u00f0":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u00fd":4,"\u00ff":4,"\u00f8":4,"y":4,"w":4,"v":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u00cd":{"d":"40,-273r33,0r47,-35r-40,-17xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00ce":{"d":"-7,-273r36,0r28,-21r28,21r36,0r-43,-48r-41,0xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00cf":{"d":"72,-273r45,0r0,-40r-45,0r0,40xm-2,-273r45,0r0,-40r-45,0r0,40xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00cc":{"d":"35,-325r-40,17r46,35r34,0xm35,0r44,0r0,-252r-44,0r0,252","w":114},"\u00d3":{"d":"135,-276r34,0r46,-35r-40,-18xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d4":{"d":"89,-276r36,0r28,-21r27,21r37,0r-43,-49r-42,0xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00d2":{"d":"130,-329r-39,18r45,35r35,0xm21,-126v0,79,51,130,132,130v81,0,132,-51,132,-131v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"\u00da":{"d":"118,-273r34,0r46,-34r-39,-18xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00db":{"d":"72,-273r36,0r28,-20r27,20r37,0r-43,-48r-41,0xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00d9":{"d":"113,-325r-39,18r46,34r34,0xm28,-107v2,70,37,111,108,111v73,0,108,-41,108,-113r0,-143r-44,0v-7,86,30,215,-64,215v-92,0,-56,-130,-63,-215r-45,0r0,145","w":272,"k":{"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c0":9,"\u00c6":9,"\u00c5":9,"\u00c4":9,"x":2,"X":4,"J":7,"A":9,"\/":5,".":5,",":5}},"\u00af":{"d":"29,-218r122,0r0,-32r-122,0r0,32"},"\u00b8":{"d":"85,60r28,-66r-32,0r-34,50"},"\u00a4":{"d":"51,-81v8,74,120,116,176,55v6,-6,11,-13,16,-20r-31,-23v-16,29,-60,47,-92,21v-10,-8,-17,-19,-22,-33r78,0r0,-31r-85,0r0,-30r85,0r0,-31r-78,0v9,-24,26,-44,56,-44v30,0,40,15,55,33r34,-25v-19,-26,-42,-48,-88,-47v-59,1,-86,38,-102,83r-34,0r0,31r28,0r-1,30r-27,0r0,31r32,0","w":259,"k":{"1":-7}},"\u00dd":{"d":"111,-273r34,0r46,-34r-40,-18xm107,0r44,0r0,-100r100,-152r-50,0r-72,112r-70,-112r-53,0r101,153r0,99","w":257,"k":{"\u00f0":40,"\u00fc":27,"\u00fb":27,"\u00f9":27,"\u00fa":27,"\u00f5":40,"\u00f6":40,"\u00f4":40,"\u00f2":40,"\u00f3":40,"\u00f1":27,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":40,"\u00ea":40,"\u00e8":40,"\u00e9":40,"\u00e7":40,"\u00e5":36,"\u00e3":36,"\u00e4":36,"&":22,"\u00d7":22,"\u00fd":22,"\u00dd":5,"\u00d2":22,"\u00d4":22,"\u00d3":22,"\u00c1":40,"\u00c2":40,"\u00ff":22,"\u00d5":22,"\u00c3":40,"\u00c0":40,"\u00bb":27,"\u00ab":36,"\u00f8":40,"\u00e6":36,"\u00b5":22,"\u00d8":22,"\u00c6":40,"\u00e2":36,"\u00e0":36,"\u00e1":36,"\u00d6":22,"\u00c7":22,"\u00c5":40,"\u00c4":40,"z":29,"y":22,"x":25,"w":20,"v":22,"u":27,"t":11,"s":36,"r":27,"q":38,"p":27,"o":40,"n":27,"m":27,"l":4,"k":4,"j":7,"i":7,"h":4,"g":38,"f":14,"e":40,"d":38,"c":40,"b":4,"a":36,"Z":4,"Y":5,"X":10,"W":7,"V":7,"S":13,"Q":22,"O":22,"J":47,"G":22,"C":22,"A":40,";":14,":":14,"\/":40,".":47,"-":29,",":47}},"\u00fd":{"d":"21,47v29,20,83,13,96,-17v30,-70,58,-148,87,-220r-45,0r-49,141r-54,-141r-47,0r80,190v-6,23,-33,27,-53,15xm90,-214r33,0r44,-42r-40,-17","w":214,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00fd":4,"\u00ff":4,"\u00bb":5,"\u00ab":11,"\u00f8":11,"\u00e6":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"}":4,"z":2,"y":4,"x":4,"w":4,"v":5,"s":7,"q":9,"o":11,"g":9,"e":11,"d":9,"c":11,"a":9,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31}},"\u00de":{"d":"183,-127v0,47,-55,47,-106,45r0,-90v51,-1,106,-5,106,45xm228,-128v0,-77,-68,-90,-151,-85r0,-39r-45,0r0,252r45,0r0,-42v83,5,151,-10,151,-86","w":242},"\u00fe":{"d":"135,-194v-32,-1,-50,17,-64,36r0,-105r-44,0r0,321r44,0r0,-88v14,18,32,36,65,34v55,-4,88,-39,88,-99v0,-59,-32,-96,-89,-99xm180,-95v0,35,-19,61,-55,61v-35,0,-55,-25,-55,-61v1,-37,20,-61,55,-61v36,0,55,26,55,61","w":241,"k":{")":11,"\u00fd":9,"\u00ff":9,"\u00bb":2,"}":5,"z":5,"y":9,"x":11,"w":7,"v":9,"]":7,"\\":25,"?":13,".":4,",":4,"*":5}},"\u00bd":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00bc":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b9":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00be":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b3":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00b2":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00a6":{"d":"9,72r162,0r0,-360r-162,0r0,360"},"\u00d7":{"d":"21,-126v0,93,82,150,177,122r42,40r65,0v-17,-26,-43,-41,-63,-64v24,-22,43,-57,43,-99v0,-78,-51,-129,-132,-129v-81,0,-132,51,-132,130xm238,-126v0,54,-31,90,-85,90v-51,0,-85,-36,-85,-91v0,-53,31,-89,85,-89v51,0,85,36,85,90","w":306,"k":{")":11,"\u00dd":22,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c0":15,"\u00c6":15,"\u00c5":15,"\u00c4":15,"}":7,"x":2,"]":7,"\\":14,"Z":13,"Y":22,"X":18,"W":14,"V":15,"T":14,"S":2,"J":11,"A":15,"?":7,"\/":14,".":14,",":14}},"!":{"d":"42,-80r25,0r13,-172r-51,0xm31,0r47,0r0,-49r-47,0r0,49","w":108},"\"":{"d":"100,-144r23,0r35,-108r-49,0xm22,-144r22,0r35,-108r-49,0","w":175},"#":{"d":"36,0r39,0r10,-58r59,0r-10,58r38,0r10,-58r43,0r0,-37r-36,0r10,-63r39,0r0,-37r-32,0r9,-57r-38,0r-10,57r-59,0r10,-57r-38,0r-10,57r-43,0r0,37r36,0r-10,63r-39,0r0,37r32,0xm91,-95r11,-63r59,0r-11,63r-59,0","w":252},"$":{"d":"18,-36v23,18,50,30,85,35r0,36r31,0r0,-35v44,-5,77,-25,77,-71v0,-47,-33,-62,-79,-74r0,-68v17,4,33,11,49,23r21,-34v-19,-13,-40,-24,-68,-27r0,-22r-31,0r0,21v-42,5,-76,23,-76,69v0,49,36,64,77,74r0,71v-27,-5,-44,-16,-63,-31xm104,-152v-44,-3,-46,-63,0,-64r0,64xm132,-102v27,2,49,34,27,56v-6,5,-15,8,-27,9r0,-65","w":231,"k":{"7":4}},"%":{"d":"17,-190v0,37,21,64,59,64v39,0,60,-26,60,-65v0,-38,-21,-64,-59,-64v-39,0,-60,28,-60,65xm43,0r35,0r185,-252r-36,0xm170,-62v0,39,21,65,59,65v38,0,59,-27,59,-65v0,-38,-21,-64,-59,-64v-38,0,-59,26,-59,64xm76,-227v36,0,38,74,1,73v-18,0,-28,-18,-28,-37v0,-18,10,-36,27,-36xm256,-62v0,19,-9,37,-27,37v-18,0,-27,-18,-27,-37v0,-19,9,-37,27,-36v17,0,27,18,27,36","w":305},"&":{"d":"14,-69v-3,84,120,90,160,40r33,34r33,-23r-40,-41v12,-17,24,-37,34,-57r-33,-18v-7,18,-17,34,-27,49r-43,-44v30,-12,55,-28,55,-66v0,-38,-25,-61,-67,-61v-68,0,-92,76,-51,116v-30,12,-53,34,-54,71xm118,-221v27,-1,39,36,19,52v-7,6,-17,11,-30,16v-23,-18,-29,-67,11,-68xm148,-55v-20,29,-91,31,-89,-16v1,-21,13,-33,33,-41","w":250,"k":{"\u00dd":23,"Y":23,"W":17,"V":21,"T":22,"S":1}},"'":{"d":"22,-144r23,0r35,-108r-50,0","w":96},"(":{"d":"122,-257v-58,32,-99,74,-99,154v0,79,42,122,99,154r19,-29v-44,-30,-75,-61,-75,-125v0,-64,34,-98,75,-125","w":158,"k":{"\u00f0":11,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u00d7":11,"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00d5":11,"\u00f8":11,"\u00b5":11,"\u00d8":11,"\u00d6":11,"\u00c7":11,"s":5,"q":11,"o":11,"j":-11,"g":7,"e":11,"d":11,"c":11,"Q":11,"O":11,"J":5,"G":11,"C":11}},")":{"d":"93,-103v0,65,-35,98,-76,125r19,29v58,-32,100,-74,100,-154v0,-80,-43,-122,-100,-154r-19,29v45,30,76,61,76,125","w":158},"\u00e4":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm119,-214r44,0r0,-43r-44,0r0,43xm49,-214r44,0r0,-43r-44,0r0,43","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e3":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm152,-266v-14,46,-71,-23,-97,15v-6,8,-11,19,-15,33r24,7v15,-45,72,22,97,-15v6,-8,11,-18,15,-33","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e5":{"d":"14,-55v0,67,101,74,130,32r0,23r43,0r0,-113v8,-81,-94,-97,-156,-64r12,35v33,-18,107,-22,101,32v-52,-17,-130,-9,-130,55xm58,-57v0,-38,59,-33,87,-23v3,36,-20,49,-51,51v-19,1,-36,-9,-36,-28xm106,-294v-25,0,-42,15,-42,40v0,26,18,38,42,41v24,-2,40,-17,42,-41v-3,-23,-17,-40,-42,-40xm106,-230v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":211,"k":{"\u00fd":7,"\u00ff":7,"y":7,"w":7,"v":7,"t":2,"\\":27,"?":13,"*":5}},"\u00e7":{"d":"17,-95v0,54,30,83,73,96r-29,43r38,16r24,-56v33,-2,53,-16,70,-35r-26,-26v-30,41,-107,24,-107,-38v0,-60,75,-79,105,-37r27,-29v-18,-19,-39,-34,-76,-33v-60,2,-99,39,-99,99","w":205,"k":{"\u00f0":5,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,")":5,"\u00fd":2,"\u00ff":2,"\u00bb":-4,"\u00ab":4,"\u00f8":5,"y":2,"x":4,"w":2,"v":2,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"\\":14,"?":5}},"\u00e9":{"d":"92,-214r33,0r44,-42r-40,-17xm17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00e8":{"d":"17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0xm94,-214r32,0r-37,-59r-40,17","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ea":{"d":"47,-214r34,0r28,-24r28,24r34,0r-42,-53r-40,0xm17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00eb":{"d":"122,-214r44,0r0,-43r-44,0r0,43xm52,-214r44,0r0,-43r-44,0r0,43xm17,-95v-8,96,124,130,175,64r-25,-23v-28,36,-106,27,-107,-26r140,0v4,-65,-26,-114,-90,-114v-59,0,-88,40,-93,99xm60,-108v-3,-52,77,-69,93,-20v2,6,4,13,5,20r-98,0","w":217,"k":{")":11,"\u00fd":9,"\u00ff":9,"}":4,"z":5,"y":9,"x":11,"w":9,"v":9,"]":7,"\\":29,"?":14,".":4,",":4,"*":7}},"\u00ed":{"d":"34,-214r33,0r44,-42r-39,-17xm30,0r43,0r0,-190r-43,0r0,190","w":102},"\u00ec":{"d":"30,0r43,0r0,-190r-43,0r0,190xm36,-214r33,0r-38,-59r-39,17","w":102},"\u00ee":{"d":"-10,-214r33,0r28,-24r28,24r35,0r-42,-53r-41,0xm30,0r43,0r0,-190r-43,0r0,190","w":102},"\u00ef":{"d":"64,-214r45,0r0,-43r-45,0r0,43xm-6,-214r45,0r0,-43r-45,0r0,43xm30,0r43,0r0,-190r-43,0r0,190","w":102},"\u00f1":{"d":"130,-194v-30,0,-46,16,-59,33r0,-29r-44,0r0,190r44,0v5,-60,-21,-154,43,-154v63,0,34,96,40,154r44,0v-3,-84,21,-194,-68,-194xm158,-266v-14,46,-71,-23,-97,15v-6,8,-11,19,-15,33r24,7v15,-45,72,22,97,-15v6,-8,11,-18,15,-33","w":223,"k":{"\u00fd":5,"\u00ff":5,"y":5,"w":5,"v":7,"\\":27,"?":11,"*":5}},"\u00f3":{"d":"101,-214r33,0r44,-42r-40,-17xm17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f2":{"d":"17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61xm103,-214r32,0r-37,-59r-40,17","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f4":{"d":"56,-214r34,0r28,-24r28,24r34,0r-42,-53r-40,0xm17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f6":{"d":"131,-214r44,0r0,-43r-44,0r0,43xm61,-214r44,0r0,-43r-44,0r0,43xm17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00f5":{"d":"17,-95v0,61,40,99,101,99v61,0,102,-39,102,-99v0,-61,-40,-99,-102,-99v-61,0,-101,39,-101,99xm176,-95v0,37,-21,62,-58,62v-36,0,-58,-27,-58,-62v0,-37,22,-61,58,-61v36,0,58,25,58,61xm163,-266v-14,46,-71,-23,-97,15v-6,8,-11,19,-15,33r25,7v14,-45,72,22,97,-15v6,-8,11,-18,15,-33","w":236,"k":{")":11,"\u00fd":11,"\u00ff":11,"\u00bb":4,"}":5,"z":7,"y":11,"x":13,"w":9,"v":11,"]":7,"\\":29,"?":18,".":7,",":7,"*":7}},"\u00fa":{"d":"93,-214r33,0r44,-42r-40,-17xm25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"\u00f9":{"d":"25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0xm95,-214r32,0r-37,-59r-40,17","w":223,"k":{"\\":18}},"\u00fb":{"d":"48,-214r34,0r28,-24r28,24r34,0r-42,-53r-40,0xm25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"\u00fc":{"d":"123,-214r44,0r0,-43r-44,0r0,43xm53,-214r44,0r0,-43r-44,0r0,43xm25,-190v3,84,-21,196,68,194v30,-1,47,-15,59,-34r0,30r44,0r0,-190r-44,0v-5,60,21,154,-43,154v-63,0,-34,-96,-40,-154r-44,0","w":223,"k":{"\\":18}},"\u00b0":{"d":"25,-196v0,36,25,59,60,59v34,0,60,-23,60,-59v0,-36,-26,-58,-60,-58v-35,0,-60,23,-60,58xm119,-196v0,21,-14,35,-34,35v-21,0,-34,-13,-34,-35v1,-21,12,-34,34,-34v22,0,34,14,34,34","w":169},"\u00a2":{"d":"19,-128v0,50,28,78,64,93r-7,37r31,0r6,-31v40,1,62,-16,81,-36r-26,-25v-12,13,-26,23,-49,23r23,-117v10,5,17,11,25,18r26,-28v-12,-12,-24,-23,-42,-28r6,-32r-31,0r-6,27v-62,2,-101,38,-101,99xm92,-73v-50,-20,-34,-122,22,-116","w":209},"\u00a3":{"d":"134,-256v-64,0,-89,47,-83,118r-28,0r0,38r28,0r0,63r-28,9r0,28r190,0r0,-39r-117,0r0,-61r89,0r0,-38r-89,0v-2,-40,1,-76,38,-77v23,0,35,13,46,27r33,-27v-17,-23,-39,-41,-79,-41","w":231,"k":{"4":5}},"\u00a7":{"d":"81,-204v10,-35,73,-12,87,7r25,-24v-27,-44,-153,-55,-153,19v1,16,8,27,19,34v-35,2,-52,53,-20,74v27,17,80,18,105,39v7,17,-8,26,-27,25v-27,0,-42,-12,-58,-25r-25,24v28,44,153,54,154,-19v0,-16,-9,-27,-20,-34v36,-2,53,-52,21,-74v-26,-18,-81,-18,-106,-39v-1,-2,-2,-5,-2,-7xm88,-152v30,4,98,12,72,46v-28,14,-91,-2,-100,-26v1,-13,14,-22,28,-20","w":227,"k":{"7":5}},"\u00b6":{"d":"14,-170v0,60,47,83,111,82r0,88r44,0r0,-252v-82,-4,-155,6,-155,82","w":200},"\u00df":{"d":"162,-72v0,27,-24,40,-55,39r0,34v56,0,99,-19,99,-72v0,-37,-27,-54,-55,-64v21,-12,40,-29,39,-63v-2,-44,-31,-67,-77,-67v-54,0,-86,30,-86,84r0,181r44,0r0,-182v0,-27,14,-46,40,-46v21,0,36,13,36,35v0,28,-20,40,-40,50r0,30v29,3,55,13,55,41","w":223,"k":{"\u00fd":4,"\u00ff":4,"y":4,"x":4,"w":2,"v":4}},"\u00ae":{"d":"6,-193v0,38,25,63,63,63v37,0,62,-24,62,-63v0,-39,-25,-63,-62,-63v-38,0,-63,25,-63,63xm124,-193v0,34,-22,57,-55,57v-33,0,-56,-22,-56,-57v0,-33,23,-56,56,-56v33,0,55,22,55,56xm85,-185v26,-8,16,-41,-12,-41r-30,0r0,65r16,0r0,-21v17,-2,16,14,24,21r19,0xm59,-195r0,-18v11,0,25,-2,25,9v0,10,-14,9,-25,9","w":137},"\u00a9":{"d":"19,-126v0,78,52,130,130,130v79,0,131,-52,131,-131v0,-78,-52,-129,-130,-129v-79,0,-131,52,-131,130xm266,-127v0,71,-45,118,-117,118v-71,0,-116,-46,-116,-117v0,-71,46,-117,117,-117v71,0,116,46,116,116xm82,-128v0,68,86,93,124,46r-17,-17v-22,30,-80,18,-80,-29v0,-45,54,-58,79,-30r17,-19v-37,-41,-123,-18,-123,49","w":298},"\u00f0":{"d":"219,-103v0,-61,-30,-96,-60,-128r28,-9r-9,-24r-41,13r-14,-12r-59,0r32,25r-30,9r8,24r44,-13v17,16,29,31,38,46v-55,-43,-144,0,-139,76v4,61,39,100,100,100v66,0,102,-42,102,-107xm176,-94v0,37,-22,60,-58,60v-36,0,-58,-25,-58,-61v0,-36,21,-59,57,-59v36,0,59,23,59,60","w":236},"\u00d0":{"d":"271,-126v0,-114,-102,-136,-228,-126r0,105r-27,0r0,40r27,0r0,107r94,0v81,-3,134,-46,134,-126xm225,-126v0,72,-58,93,-138,86r0,-67r63,0r0,-40r-63,0r0,-65v80,-7,138,15,138,86","w":292,"k":{")":11,"\u00dd":23,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c6":17,"\u00c5":17,"\u00c4":17,"}":7,"x":4,"]":7,"\\":14,"Z":15,"Y":23,"X":20,"W":14,"V":16,"T":16,"S":4,"J":14,"A":17,"?":7,"\/":14,".":14,",":14}}}});
;
/* jQuery UI 1.7.2
 */
jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/*
 * jQuery UI Accordion 1.7.2
 */
(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7.2",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;/*
 * jQuery UI Dialog 1.7.2
 * http://docs.jquery.com/UI/Dialog
 */
(function(c){var b={dragStart:"start.draggable",drag:"drag.draggable",dragStop:"stop.draggable",maxHeight:"maxHeight.resizable",minHeight:"minHeight.resizable",maxWidth:"maxWidth.resizable",minWidth:"minWidth.resizable",resizeStart:"start.resizable",resize:"drag.resizable",resizeStop:"stop.resizable"},a="ui-dialog ui-widget ui-widget-content ui-corner-all ";c.widget("ui.dialog",{_init:function(){this.originalTitle=this.element.attr("title");var l=this,m=this.options,j=m.title||this.originalTitle||"&nbsp;",e=c.ui.dialog.getTitleId(this.element),k=(this.uiDialog=c("<div/>")).appendTo(document.body).hide().addClass(a+m.dialogClass).css({position:"absolute",overflow:"hidden",zIndex:m.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(n){(m.closeOnEscape&&n.keyCode&&n.keyCode==c.ui.keyCode.ESCAPE&&l.close(n))}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(n){l.moveToTop(false,n)}),g=this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(k),f=(this.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(k),i=c('<a href="#"/>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){i.addClass("ui-state-hover")},function(){i.removeClass("ui-state-hover")}).focus(function(){i.addClass("ui-state-focus")}).blur(function(){i.removeClass("ui-state-focus")}).mousedown(function(n){n.stopPropagation()}).click(function(n){l.close(n);return false}).appendTo(f),h=(this.uiDialogTitlebarCloseText=c("<span/>")).addClass("ui-icon ui-icon-closethick").text(m.closeText).appendTo(i),d=c("<span/>").addClass("ui-dialog-title").attr("id",e).html(j).prependTo(f);f.find("*").add(f).disableSelection();(m.draggable&&c.fn.draggable&&this._makeDraggable());(m.resizable&&c.fn.resizable&&this._makeResizable());this._createButtons(m.buttons);this._isOpen=false;(m.bgiframe&&c.fn.bgiframe&&k.bgiframe());(m.autoOpen&&this.open())},destroy:function(){(this.overlay&&this.overlay.destroy());this.uiDialog.hide();this.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");this.uiDialog.remove();(this.originalTitle&&this.element.attr("title",this.originalTitle))},close:function(f){var d=this;if(false===d._trigger("beforeclose",f)){return}(d.overlay&&d.overlay.destroy());d.uiDialog.unbind("keypress.ui-dialog");(d.options.hide?d.uiDialog.hide(d.options.hide,function(){d._trigger("close",f)}):d.uiDialog.hide()&&d._trigger("close",f));c.ui.dialog.overlay.resize();d._isOpen=false;if(d.options.modal){var e=0;c(".ui-dialog").each(function(){if(this!=d.uiDialog[0]){e=Math.max(e,c(this).css("z-index"))}});c.ui.dialog.maxZ=e}},isOpen:function(){return this._isOpen},moveToTop:function(f,e){if((this.options.modal&&!f)||(!this.options.stack&&!this.options.modal)){return this._trigger("focus",e)}if(this.options.zIndex>c.ui.dialog.maxZ){c.ui.dialog.maxZ=this.options.zIndex}(this.overlay&&this.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=++c.ui.dialog.maxZ));var d={scrollTop:this.element.attr("scrollTop"),scrollLeft:this.element.attr("scrollLeft")};this.uiDialog.css("z-index",++c.ui.dialog.maxZ);this.element.attr(d);this._trigger("focus",e)},open:function(){if(this._isOpen){return}var e=this.options,d=this.uiDialog;this.overlay=e.modal?new c.ui.dialog.overlay(this):null;(d.next().length&&d.appendTo("body"));this._size();this._position(e.position);d.show(e.show);this.moveToTop(true);(e.modal&&d.bind("keypress.ui-dialog",function(h){if(h.keyCode!=c.ui.keyCode.TAB){return}var g=c(":tabbable",this),i=g.filter(":first")[0],f=g.filter(":last")[0];if(h.target==f&&!h.shiftKey){setTimeout(function(){i.focus()},1)}else{if(h.target==i&&h.shiftKey){setTimeout(function(){f.focus()},1)}}}));c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();this._trigger("open");this._isOpen=true},_createButtons:function(g){var f=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");this.uiDialog.find(".ui-dialog-buttonpane").remove();(typeof g=="object"&&g!==null&&c.each(g,function(){return !(d=true)}));if(d){c.each(g,function(h,i){c('<button type="button"></button>').addClass("ui-state-default ui-corner-all").text(h).click(function(){i.apply(f.element[0],arguments)}).hover(function(){c(this).addClass("ui-state-hover")},function(){c(this).removeClass("ui-state-hover")}).focus(function(){c(this).addClass("ui-state-focus")}).blur(function(){c(this).removeClass("ui-state-focus")}).appendTo(e)});e.appendTo(this.uiDialog)}},_makeDraggable:function(){var d=this,f=this.options,e;this.uiDialog.draggable({cancel:".ui-dialog-content",handle:".ui-dialog-titlebar",containment:"document",start:function(){e=f.height;c(this).height(c(this).height()).addClass("ui-dialog-dragging");(f.dragStart&&f.dragStart.apply(d.element[0],arguments))},drag:function(){(f.drag&&f.drag.apply(d.element[0],arguments))},stop:function(){c(this).removeClass("ui-dialog-dragging").height(e);(f.dragStop&&f.dragStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}})},_makeResizable:function(g){g=(g===undefined?this.options.resizable:g);var d=this,f=this.options,e=typeof g=="string"?g:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",alsoResize:this.element,maxWidth:f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:f.minHeight,start:function(){c(this).addClass("ui-dialog-resizing");(f.resizeStart&&f.resizeStart.apply(d.element[0],arguments))},resize:function(){(f.resize&&f.resize.apply(d.element[0],arguments))},handles:e,stop:function(){c(this).removeClass("ui-dialog-resizing");f.height=c(this).height();f.width=c(this).width();(f.resizeStop&&f.resizeStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}}).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_position:function(i){var e=c(window),f=c(document),g=f.scrollTop(),d=f.scrollLeft(),h=g;if(c.inArray(i,["center","top","right","bottom","left"])>=0){i=[i=="right"||i=="left"?i:"center",i=="top"||i=="bottom"?i:"middle"]}if(i.constructor!=Array){i=["center","middle"]}if(i[0].constructor==Number){d+=i[0]}else{switch(i[0]){case"left":d+=0;break;case"right":d+=e.width()-this.uiDialog.outerWidth();break;default:case"center":d+=(e.width()-this.uiDialog.outerWidth())/2}}if(i[1].constructor==Number){g+=i[1]}else{switch(i[1]){case"top":g+=0;break;case"bottom":g+=e.height()-this.uiDialog.outerHeight();break;default:case"middle":g+=(e.height()-this.uiDialog.outerHeight())/2}}g=Math.max(g,h);this.uiDialog.css({top:g,left:d})},_setData:function(e,f){(b[e]&&this.uiDialog.data(b[e],f));switch(e){case"buttons":this._createButtons(f);break;case"closeText":this.uiDialogTitlebarCloseText.text(f);break;case"dialogClass":this.uiDialog.removeClass(this.options.dialogClass).addClass(a+f);break;case"draggable":(f?this._makeDraggable():this.uiDialog.draggable("destroy"));break;case"height":this.uiDialog.height(f);break;case"position":this._position(f);break;case"resizable":var d=this.uiDialog,g=this.uiDialog.is(":data(resizable)");(g&&!f&&d.resizable("destroy"));(g&&typeof f=="string"&&d.resizable("option","handles",f));(g||this._makeResizable(f));break;case"title":c(".ui-dialog-title",this.uiDialogTitlebar).html(f||"&nbsp;");break;case"width":this.uiDialog.width(f);break}c.widget.prototype._setData.apply(this,arguments)},_size:function(){var e=this.options;this.element.css({height:0,minHeight:0,width:"auto"});var d=this.uiDialog.css({height:"auto",width:e.width}).height();this.element.css({minHeight:Math.max(e.minHeight-d,0),height:e.height=="auto"?"auto":Math.max(e.height-d,0)})}});c.extend(c.ui.dialog,{version:"1.7.2",defaults:{autoOpen:true,bgiframe:false,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1000},getter:"isOpen",uuid:0,maxZ:0,getTitleId:function(d){return"ui-dialog-title-"+(d.attr("id")||++this.uuid)},overlay:function(d){this.$el=c.ui.dialog.overlay.create(d)}});c.extend(c.ui.dialog.overlay,{instances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(d){return d+".dialog-overlay"}).join(" "),create:function(e){if(this.instances.length===0){setTimeout(function(){if(c.ui.dialog.overlay.instances.length){c(document).bind(c.ui.dialog.overlay.events,function(f){var g=c(f.target).parents(".ui-dialog").css("zIndex")||0;return(g>c.ui.dialog.overlay.maxZ)})}},1);c(document).bind("keydown.dialog-overlay",function(f){(e.options.closeOnEscape&&f.keyCode&&f.keyCode==c.ui.keyCode.ESCAPE&&e.close(f))});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var d=c("<div></div>").appendTo(document.body).addClass("ui-widget-overlay").css({width:this.width(),height:this.height()});(e.options.bgiframe&&c.fn.bgiframe&&d.bgiframe());this.instances.push(d);return d},destroy:function(d){this.instances.splice(c.inArray(this.instances,d),1);if(this.instances.length===0){c([document,window]).unbind(".dialog-overlay")}d.remove();var e=0;c.each(this.instances,function(){e=Math.max(e,this.css("z-index"))});this.maxZ=e},height:function(){if(c.browser.msie&&c.browser.version<7){var e=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);var d=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);if(e<d){return c(window).height()+"px"}else{return e+"px"}}else{return c(document).height()+"px"}},width:function(){if(c.browser.msie&&c.browser.version<7){var d=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);var e=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);if(d<e){return c(window).width()+"px"}else{return d+"px"}}else{return c(document).width()+"px"}},resize:function(){var d=c([]);c.each(c.ui.dialog.overlay.instances,function(){d=d.add(this)});d.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);;/*
 * jQuery UI Tabs 1.7.2
 */
(function(a){a.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(b,c){if(b=="selected"){if(this.options.collapsible&&c==this.options.selected){return}this.select(c)}else{this.options[b]=c;if(b=="deselectable"){this.options.collapsible=c}this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+a.data(b)},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+a.data(this.list[0]));return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(c,b){return{tab:c,panel:b,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(n){this.list=this.element.children("ul:first");this.lis=a("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return a("a",this)[0]});this.panels=a([]);var p=this,d=this.options;var c=/^#.+/;this.anchors.each(function(r,o){var q=a(o).attr("href");var s=q.split("#")[0],u;if(s&&(s===location.toString().split("#")[0]||(u=a("base")[0])&&s===u.href)){q=o.hash;o.href=q}if(c.test(q)){p.panels=p.panels.add(p._sanitizeSelector(q))}else{if(q!="#"){a.data(o,"href.tabs",q);a.data(o,"load.tabs",q.replace(/#.*$/,""));var w=p._tabId(o);o.href="#"+w;var v=a("#"+w);if(!v.length){v=a(d.panelTemplate).attr("id",w).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(p.panels[r-1]||p.list);v.data("destroy.tabs",true)}p.panels=p.panels.add(v)}else{d.disabled.push(r)}}});if(n){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(d.selected===undefined){if(location.hash){this.anchors.each(function(q,o){if(o.hash==location.hash){d.selected=q;return false}})}if(typeof d.selected!="number"&&d.cookie){d.selected=parseInt(p._cookie(),10)}if(typeof d.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}d.selected=d.selected||0}else{if(d.selected===null){d.selected=-1}}d.selected=((d.selected>=0&&this.anchors[d.selected])||d.selected<0)?d.selected:0;d.disabled=a.unique(d.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(q,o){return p.lis.index(q)}))).sort();if(a.inArray(d.selected,d.disabled)!=-1){d.disabled.splice(a.inArray(d.selected,d.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(d.selected>=0&&this.anchors.length){this.panels.eq(d.selected).removeClass("ui-tabs-hide");this.lis.eq(d.selected).addClass("ui-tabs-selected ui-state-active");p.element.queue("tabs",function(){p._trigger("show",null,p._ui(p.anchors[d.selected],p.panels[d.selected]))});this.load(d.selected)}a(window).bind("unload",function(){p.lis.add(p.anchors).unbind(".tabs");p.lis=p.anchors=p.panels=null})}else{d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[d.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(d.cookie){this._cookie(d.selected,d.cookie)}for(var g=0,m;(m=this.lis[g]);g++){a(m)[a.inArray(g,d.disabled)!=-1&&!a(m).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(d.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(d.event!="mouseover"){var f=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var j=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){f("hover",a(this))});this.lis.bind("mouseout.tabs",function(){j("hover",a(this))});this.anchors.bind("focus.tabs",function(){f("focus",a(this).closest("li"))});this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var b,h;if(d.fx){if(a.isArray(d.fx)){b=d.fx[0];h=d.fx[1]}else{b=h=d.fx}}function e(i,o){i.css({display:""});if(a.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var k=h?function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(h,h.duration||"normal",function(){e(o,h);p._trigger("show",null,p._ui(i,o[0]))})}:function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");p._trigger("show",null,p._ui(i,o[0]))};var l=b?function(o,i){i.animate(b,b.duration||"normal",function(){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");e(i,b);p.element.dequeue("tabs")})}:function(o,i,q){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");p.element.dequeue("tabs")};this.anchors.bind(d.event+".tabs",function(){var o=this,r=a(this).closest("li"),i=p.panels.filter(":not(.ui-tabs-hide)"),q=a(p._sanitizeSelector(this.hash));if((r.hasClass("ui-tabs-selected")&&!d.collapsible)||r.hasClass("ui-state-disabled")||r.hasClass("ui-state-processing")||p._trigger("select",null,p._ui(this,q[0]))===false){this.blur();return false}d.selected=p.anchors.index(this);p.abort();if(d.collapsible){if(r.hasClass("ui-tabs-selected")){d.selected=-1;if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){l(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this));this.blur();return false}}}if(d.cookie){p._cookie(d.selected,d.cookie)}if(q.length){if(i.length){p.element.queue("tabs",function(){l(o,i)})}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(a.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var c=a.data(this,"href.tabs");if(c){this.href=c}var d=a(this).unbind(".tabs");a.each(["href","load","cache"],function(e,f){d.removeData(f+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(a.data(this,"destroy.tabs")){a(this).remove()}else{a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(b.cookie){this._cookie(null,b.cookie)}},add:function(e,d,c){if(c===undefined){c=this.anchors.length}var b=this,g=this.options,i=a(g.tabTemplate.replace(/#\{href\}/g,e).replace(/#\{label\}/g,d)),h=!e.indexOf("#")?e.replace("#",""):this._tabId(a("a",i)[0]);i.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var f=a("#"+h);if(!f.length){f=a(g.panelTemplate).attr("id",h).data("destroy.tabs",true)}f.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(c>=this.lis.length){i.appendTo(this.list);f.appendTo(this.list[0].parentNode)}else{i.insertBefore(this.lis[c]);f.insertBefore(this.panels[c])}g.disabled=a.map(g.disabled,function(k,j){return k>=c?++k:k});this._tabify();if(this.anchors.length==1){i.addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[c],this.panels[c]))},remove:function(b){var d=this.options,e=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();if(e.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(b+(b+1<this.anchors.length?1:-1))}d.disabled=a.map(a.grep(d.disabled,function(g,f){return g!=b}),function(g,f){return g>=b?--g:g});this._tabify();this._trigger("remove",null,this._ui(e.find("a")[0],c[0]))},enable:function(b){var c=this.options;if(a.inArray(b,c.disabled)==-1){return}this.lis.eq(b).removeClass("ui-state-disabled");c.disabled=a.grep(c.disabled,function(e,d){return e!=b});this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]))},disable:function(c){var b=this,d=this.options;if(c!=d.selected){this.lis.eq(c).addClass("ui-state-disabled");d.disabled.push(c);d.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}},select:function(b){if(typeof b=="string"){b=this.anchors.index(this.anchors.filter("[href$="+b+"]"))}else{if(b===null){b=-1}}if(b==-1&&this.options.collapsible){b=this.options.selected}this.anchors.eq(b).trigger(this.options.event+".tabs")},load:function(e){var c=this,g=this.options,b=this.anchors.eq(e)[0],d=a.data(b,"load.tabs");this.abort();if(!d||this.element.queue("tabs").length!==0&&a.data(b,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(e).addClass("ui-state-processing");if(g.spinner){var f=a("span",b);f.data("label.tabs",f.html()).html(g.spinner)}this.xhr=a.ajax(a.extend({},g.ajaxOptions,{url:d,success:function(i,h){a(c._sanitizeSelector(b.hash)).html(i);c._cleanup();if(g.cache){a.data(b,"cache.tabs",true)}c._trigger("load",null,c._ui(c.anchors[e],c.panels[e]));try{g.ajaxOptions.success(i,h)}catch(j){}c.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(c,b){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",b)},length:function(){return this.anchors.length}});a.extend(a.ui.tabs,{version:"1.7.2",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(d,f){var b=this,g=this.options;var c=b._rotate||(b._rotate=function(h){clearTimeout(b.rotation);b.rotation=setTimeout(function(){var i=g.selected;b.select(++i<b.anchors.length?i:0)},d);if(h){h.stopPropagation()}});var e=b._unrotate||(b._unrotate=!f?function(h){if(h.clientX){b.rotate(null)}}:function(h){t=g.selected;c()});if(d){this.element.bind("tabsshow",c);this.anchors.bind(g.event+".tabs",e);c()}else{clearTimeout(b.rotation);this.element.unbind("tabsshow",c);this.anchors.unbind(g.event+".tabs",e);delete this._rotate;delete this._unrotate}}})})(jQuery);;/*
 * jQuery UI Effects 1.7.2
 */
jQuery.effects||(function(d){d.effects={version:"1.7.2",save:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.data("ec.storage."+h[f],g[0].style[h[f]])}}},restore:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.css(h[f],g.data("ec.storage."+h[f]))}}},setMode:function(f,g){if(g=="toggle"){g=f.is(":hidden")?"show":"hide"}return g},getBaseline:function(g,h){var i,f;switch(g[0]){case"top":i=0;break;case"middle":i=0.5;break;case"bottom":i=1;break;default:i=g[0]/h.height}switch(g[1]){case"left":f=0;break;case"center":f=0.5;break;case"right":f=1;break;default:f=g[1]/h.width}return{x:f,y:i}},createWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent()}var g={width:f.outerWidth(true),height:f.outerHeight(true),"float":f.css("float")};f.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(d.isFunction(arguments[0])||typeof arguments[0]=="boolean")){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return -j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return -j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return -j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return -j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return -j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return -j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return -j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return -j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return -(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f},easeOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return h*Math.pow(2,-10*i)*Math.sin((i*l-j)*(2*Math.PI)/k)+m+f},easeInOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l/2)==2){return f+m}if(!k){k=l*(0.3*1.5)}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}if(i<1){return -0.5*(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f}return h*Math.pow(2,-10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k)*0.5+m+f},easeInBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*(h/=j)*h*((i+1)*h-i)+f},easeOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*((h=h/j-1)*h*((i+1)*h+i)+1)+f},easeInOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}if((h/=j/2)<1){return k/2*(h*h*(((i*=(1.525))+1)*h-i))+f}return k/2*((h-=2)*h*(((i*=(1.525))+1)*h+i)+2)+f},easeInBounce:function(g,h,f,j,i){return j-d.easing.easeOutBounce(g,i-h,0,j,i)+f},easeOutBounce:function(g,h,f,j,i){if((h/=i)<(1/2.75)){return j*(7.5625*h*h)+f}else{if(h<(2/2.75)){return j*(7.5625*(h-=(1.5/2.75))*h+0.75)+f}else{if(h<(2.5/2.75)){return j*(7.5625*(h-=(2.25/2.75))*h+0.9375)+f}else{return j*(7.5625*(h-=(2.625/2.75))*h+0.984375)+f}}}},easeInOutBounce:function(g,h,f,j,i){if(h<i/2){return d.easing.easeInBounce(g,h*2,0,j,i)*0.5+f}return d.easing.easeOutBounce(g,h*2-i,0,j,i)*0.5+j*0.5+f}})})(jQuery);;/*
 * jQuery UI Effects Blind 1.7.2
 */
(function(a){a.effects.blind=function(b){return this.queue(function(){var d=a(this),c=["position","top","left"];var h=a.effects.setMode(d,b.options.mode||"hide");var g=b.options.direction||"vertical";a.effects.save(d,c);d.show();var j=a.effects.createWrapper(d).css({overflow:"hidden"});var e=(g=="vertical")?"height":"width";var i=(g=="vertical")?j.height():j.width();if(h=="show"){j.css(e,0)}var f={};f[e]=h=="show"?i:0;j.animate(f,b.duration,b.options.easing,function(){if(h=="hide"){d.hide()}a.effects.restore(d,c);a.effects.removeWrapper(d);if(b.callback){b.callback.apply(d[0],arguments)}d.dequeue()})})}})(jQuery);;/*
 * jQuery UI Effects Bounce 1.7.2
 */
(function(a){a.effects.bounce=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"up";var c=b.options.distance||20;var d=b.options.times||5;var g=b.duration||250;if(/show|hide/.test(k)){l.push("opacity")}a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var c=b.options.distance||(f=="top"?e.outerHeight({margin:true})/3:e.outerWidth({margin:true})/3);if(k=="show"){e.css("opacity",0).css(f,p=="pos"?-c:c)}if(k=="hide"){c=c/(d*2)}if(k!="hide"){d--}if(k=="show"){var h={opacity:1};h[f]=(p=="pos"?"+=":"-=")+c;e.animate(h,g/2,b.options.easing);c=c/2;d--}for(var j=0;j<d;j++){var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing);c=(k=="hide")?c*2:c/2}if(k=="hide"){var h={opacity:0};h[f]=(p=="pos"?"-=":"+=")+c;e.animate(h,g/2,b.options.easing,function(){e.hide();a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}else{var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Clip 1.7.2
 */
(function(a){a.effects.clip=function(b){return this.queue(function(){var f=a(this),j=["position","top","left","height","width"];var i=a.effects.setMode(f,b.options.mode||"hide");var k=b.options.direction||"vertical";a.effects.save(f,j);f.show();var c=a.effects.createWrapper(f).css({overflow:"hidden"});var e=f[0].tagName=="IMG"?c:f;var g={size:(k=="vertical")?"height":"width",position:(k=="vertical")?"top":"left"};var d=(k=="vertical")?e.height():e.width();if(i=="show"){e.css(g.size,0);e.css(g.position,d/2)}var h={};h[g.size]=i=="show"?d:0;h[g.position]=i=="show"?0:d/2;e.animate(h,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){f.hide()}a.effects.restore(f,j);a.effects.removeWrapper(f);if(b.callback){b.callback.apply(f[0],arguments)}f.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Drop 1.7.2
 */
(function(a){a.effects.drop=function(b){return this.queue(function(){var e=a(this),d=["position","top","left","opacity"];var i=a.effects.setMode(e,b.options.mode||"hide");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e);var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true})/2:e.outerWidth({margin:true})/2);if(i=="show"){e.css("opacity",0).css(f,c=="pos"?-j:j)}var g={opacity:i=="show"?1:0};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Slide 1.7.2
 */
(function(a){a.effects.slide=function(b){return this.queue(function(){var e=a(this),d=["position","top","left"];var i=a.effects.setMode(e,b.options.mode||"show");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e).css({overflow:"hidden"});var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true}):e.outerWidth({margin:true}));if(i=="show"){e.css(f,c=="pos"?-j:j)}var g={};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;
/* FancyBox - Version: 1.2.6 (16/11/2009) 
*/
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(p($){$.q.1Q=p(){J O.2n(p(){n b=$(O).u(\'2o\');8(b.1d(/^3i\\(["\']?(.*\\.2p)["\']?\\)$/i)){b=3j.$1;$(O).u({\'2o\':\'3k\',\'1e\':"3l:3m.3n.3o(3p=D, 3q="+($(O).u(\'3r\')==\'2q-3s\'?\'3t\':\'3u\')+", 13=\'"+b+"\')"}).2n(p(){n a=$(O).u(\'1u\');8(a!=\'2r\'&&a!=\'2s\')$(O).u(\'1u\',\'2s\')})}})};n l,4,1f=F,X=1v 1w,1x,1y=1,1z=/\\.(3v|3w|2p|3x|3y)(.*)?$/i;n m=1A,18=$.14.1g&&$.14.2t.1R(0,1)==6&&!19.3z,1S=18||($.14.1g&&$.14.2t.1R(0,1)==7);$.q.r=p(o){n j=$.2u({},$.q.r.2v,o);n k=O;p 2w(){l=O;4=$.2u({},j);2x();J F};p 2x(){8(1f)J;8($.1T(4.1U)){4.1U()}4.v=[];4.t=0;8(j.v.Y>0){4.v=j.v}C{n a={};8(!l.1B||l.1B==\'\'){n a={K:l.K,G:l.G};8($(l).1C("1l:1D").Y){a.S=$(l).1C("1l:1D")}C{a.S=$(l)}8(a.G==\'\'||1V a.G==\'1m\'){a.G=a.S.2y(\'1W\')}4.v.2z(a)}C{n b=$(k).1e("a[1B="+l.1B+"]");n a={};3A(n i=0;i<b.Y;i++){a={K:b[i].K,G:b[i].G};8($(b[i]).1C("1l:1D").Y){a.S=$(b[i]).1C("1l:1D")}C{a.S=$(b[i])}8(a.G==\'\'||1V a.G==\'1m\'){a.G=a.S.2y(\'1W\')}4.v.2z(a)}}}3B(4.v[4.t].K!=l.K){4.t++}8(4.1E){8(18){$(\'1X, 1Y, 1Z\').u(\'21\',\'3C\');$("#T").u(\'A\',$(U).A())}$("#T").u({\'3D-3E\':4.2A,\'22\':4.2B}).Z()}$(19).11("23.L 24.L",$.q.r.2C);1h()};p 1h(){$("#1n, #1o, #1i, #H").1a();n b=4.v[4.t].K;8(b.1d("1j")||l.3F.2D("1j")>=0){$.q.r.1F();1p(\'<1j s="2E" 3G="2F.q.r.2G()" 3H="3I\'+P.1b(P.3J()*3K)+\'" 2H="0" 3L="0" 13="\'+b+\'"></1j>\',4.1G,4.1H)}C 8(b.1d(/#/)){n c=19.3M.K.3N(\'#\')[0];c=b.3O(c,\'\');c=c.1R(c.2D(\'#\'));1p(\'<9 s="3P">\'+$(c).2I()+\'</9>\',4.1G,4.1H)}C 8(b.1d(1z)){X=1v 1w;X.13=b;8(X.3Q){25()}C{$.q.r.1F();$(X).Q().11(\'3R\',p(){$("#M").1a();25()})}}C{$.q.r.1F();$.3S(b,p(a){$("#M").1a();1p(\'<9 s="3T">\'+a+\'</9>\',4.1G,4.1H)})}};p 25(){n a=X.E;n b=X.A;n c=(4.N*2)+40;n d=(4.N*2)+26;n w=$.q.r.1q();8(4.2J&&(a>(w[0]-c)||b>(w[1]-d))){n e=P.28(P.28(w[0]-c,a)/a,P.28(w[1]-d,b)/b);a=P.1b(e*a);b=P.1b(e*b)}1p(\'<1l 1W="" s="3U" 13="\'+X.13+\'" />\',a,b)};p 2K(){8((4.v.Y-1)>4.t){n a=4.v[4.t+1].K||F;8(a&&a.1d(1z)){1I=1v 1w();1I.13=a}}8(4.t>0){n a=4.v[4.t-1].K||F;8(a&&a.1d(1z)){1I=1v 1w();1I.13=a}}};p 1p(a,b,c){1f=D;n d=4.N;8(1S||m){$("#y")[0].15.2L("A");$("#y")[0].15.2L("E")}8(d>0){b+=d*2;c+=d*2;$("#y").u({\'z\':d+\'R\',\'2M\':d+\'R\',\'2N\':d+\'R\',\'B\':d+\'R\',\'E\':\'2O\',\'A\':\'2O\'});8(1S||m){$("#y")[0].15.2P(\'A\',\'(O.2Q.3V - \'+d*2+\')\');$("#y")[0].15.2P(\'E\',\'(O.2Q.3W - \'+d*2+\')\')}}C{$("#y").u({\'z\':0,\'2M\':0,\'2N\':0,\'B\':0,\'E\':\'2R%\',\'A\':\'2R%\'})}8($("#x").16(":V")&&b==$("#x").E()&&c==$("#x").A()){$("#y").1J(\'29\',p(){$("#y").1r().1K($(a)).2a("1L",p(){1s()})});J}n w=$.q.r.1q();n e=(c+26)>w[1]?w[3]:(w[3]+P.1b((w[1]-c-26)*0.5));n f=(b+40)>w[0]?w[2]:(w[2]+P.1b((w[0]-b-40)*0.5));n g={\'B\':f,\'z\':e,\'E\':b+\'R\',\'A\':c+\'R\'};8($("#x").16(":V")){$("#y").1J("1L",p(){$("#y").1r();$("#x").2b(g,4.2S,4.2T,p(){$("#y").1K($(a)).2a("1L",p(){1s()})})})}C{8(4.2c>0&&4.v[4.t].S!==1m){$("#y").1r().1K($(a));n h=4.v[4.t].S;n i=$.q.r.2d(h);$("#x").u({\'B\':(i.B-20-4.N)+\'R\',\'z\':(i.z-20-4.N)+\'R\',\'E\':$(h).E()+(4.N*2),\'A\':$(h).A()+(4.N*2)});8(4.2e){g.22=\'Z\'}$("#x").2b(g,4.2c,4.2U,p(){1s()})}C{$("#y").1a().1r().1K($(a)).Z();$("#x").u(g).2a("1L",p(){1s()})}}};p 2V(){8(4.t!==0){$("#1o, #2W").Q().11("17",p(e){e.2X();4.t--;1h();J F});$("#1o").Z()}8(4.t!=(4.v.Y-1)){$("#1n, #2Y").Q().11("17",p(e){e.2X();4.t++;1h();J F});$("#1n").Z()}};p 1s(){8($.14.1g){$("#y")[0].15.1M(\'1e\');$("#x")[0].15.1M(\'1e\')}2V();2K();$(U).11("1N.L",p(e){8(e.2f==27&&4.2Z){$.q.r.1c()}C 8(e.2f==37&&4.t!==0){$(U).Q("1N.L");4.t--;1h()}C 8(e.2f==39&&4.t!=(4.v.Y-1)){$(U).Q("1N.L");4.t++;1h()}});8(4.30){$("#y").17($.q.r.1c)}8(4.1E&&4.31){$("#T").11("17",$.q.r.1c)}8(4.33){$("#1i").11("17",$.q.r.1c).Z()}8(1V 4.v[4.t].G!==\'1m\'&&4.v[4.t].G.Y>0){n a=$("#x").1u();$(\'#H 9\').3X(4.v[4.t].G).2I();$(\'#H\').u({\'z\':a.z+$("#x").34()-32,\'B\':a.B+(($("#x").35()*0.5)-($(\'#H\').E()*0.5))}).Z()}8(4.1E&&18){$(\'1X, 1Y, 1Z\',$(\'#y\')).u(\'21\',\'V\')}8($.1T(4.2g)){4.2g(4.v[4.t])}8($.14.1g){$("#x")[0].15.1M(\'1e\');$("#y")[0].15.1M(\'1e\')}1f=F};J O.Q(\'17.L\').11(\'17.L\',2w)};$.q.r.2C=p(){n w=$.q.r.1q();8(4.2h&&$("#x").16(\':V\')){n a=$("#x").35();n b=$("#x").34();n c={\'z\':(b>w[1]?w[3]:w[3]+P.1b((w[1]-b)*0.5)),\'B\':(a>w[0]?w[2]:w[2]+P.1b((w[0]-a)*0.5))};$("#x").u(c);$(\'#H\').u({\'z\':c.z+b-32,\'B\':c.B+((a*0.5)-($(\'#H\').E()*0.5))})}8(18&&$("#T").16(\':V\')){$("#T").u({\'A\':$(U).A()})}8($("#M").16(\':V\')){$("#M").u({\'B\':((w[0]-40)*0.5+w[2]),\'z\':((w[1]-40)*0.5+w[3])})}};$.q.r.1t=p(a,b){J 3Y($.3Z(a.41?a[0]:a,b,D))||0};$.q.r.2d=p(a){n b=a.42();b.z+=$.q.r.1t(a,\'43\');b.z+=$.q.r.1t(a,\'44\');b.B+=$.q.r.1t(a,\'45\');b.B+=$.q.r.1t(a,\'46\');J b};$.q.r.2G=p(){$("#M").1a();$("#2E").Z()};$.q.r.1q=p(){J[$(19).E(),$(19).A(),$(U).47(),$(U).48()]};$.q.r.36=p(){8(!$("#M").16(\':V\')){38(1x);J}$("#M > 9").u(\'z\',(1y*-40)+\'R\');1y=(1y+1)%12};$.q.r.1F=p(){38(1x);n w=$.q.r.1q();$("#M").u({\'B\':((w[0]-40)*0.5+w[2]),\'z\':((w[1]-40)*0.5+w[3])}).Z();$("#M").11(\'17\',$.q.r.1c);1x=49($.q.r.36,4a)};$.q.r.1c=p(){1f=D;$(X).Q();$(U).Q("1N.L");$(19).Q("23.L 24.L");$("#T, #y, #1i").Q();$("#1i, #M, #1o, #1n, #H").1a();1O=p(){8($("#T").16(\':V\')){$("#T").1J("29")}$("#y").1r();8(4.2h){$(19).Q("23.L 24.L")}8(18){$(\'1X, 1Y, 1Z\').u(\'21\',\'V\')}8($.1T(4.2i)){4.2i()}1f=F};8($("#x").16(":V")!==F){8(4.2j>0&&4.v[4.t].S!==1m){n a=4.v[4.t].S;n b=$.q.r.2d(a);n c={\'B\':(b.B-20-4.N)+\'R\',\'z\':(b.z-20-4.N)+\'R\',\'E\':$(a).E()+(4.N*2),\'A\':$(a).A()+(4.N*2)};8(4.2e){c.22=\'1a\'}$("#x").3a(F,D).2b(c,4.2j,4.3b,1O)}C{$("#x").3a(F,D).1J(\'29\',1O)}}C{1O()}J F};$.q.r.3c=p(){n a=\'\';a+=\'<9 s="T"></9>\';a+=\'<9 s="M"><9></9></9>\';a+=\'<9 s="x">\';a+=\'<9 s="3d">\';a+=\'<9 s="1i"></9>\';a+=\'<9 s="W"><9 I="W" s="4b"></9><9 I="W" s="4c"></9><9 I="W" s="4d"></9><9 I="W" s="4e"></9><9 I="W" s="4f"></9><9 I="W" s="4g"></9><9 I="W" s="4h"></9><9 I="W" s="4i"></9></9>\';a+=\'<a K="2k:;" s="1o"><1P I="2l" s="2W"></1P></a><a K="2k:;" s="1n"><1P I="2l" s="2Y"></1P></a>\';a+=\'<9 s="y"></9>\';a+=\'</9>\';a+=\'</9>\';a+=\'<9 s="H"></9>\';$(a).3e("4j");$(\'<3f 4k="0" 4l="0" 4m="0"><3g><1k I="H" s="4n"></1k><1k I="H" s="4o"><9></9></1k><1k I="H" s="4p"></1k></3g></3f>\').3e(\'#H\');8($.14.1g){$(".W").1Q()}8(18){$("9#T").u("1u","2r");$("#M 9, #1i, .H, .2l").1Q();$("#3d").4q(\'<1j s="3h" 13="2k:F;" 4r="2q" 2H="0"></1j>\');n b=$(\'#3h\')[0].4s.U;b.4t();b.1c()}};$.q.r.2v={N:10,2J:D,2e:D,2c:0,2j:0,2S:4u,2U:\'2m\',3b:\'2m\',2T:\'2m\',1G:4v,1H:4w,1E:D,2B:0.3,2A:\'#4x\',2Z:D,33:D,31:D,30:D,2h:D,v:[],1U:1A,2g:1A,2i:1A};$(U).4y(p(){m=$.14.1g&&!$.4z;8($("#x").Y<1){$.q.r.3c()}})})(2F);',62,284,'||||opts||||if|div||||||||||||||var||function|fn|fancybox|id|itemCurrent|css|itemArray||fancy_outer|fancy_content|top|height|left|else|true|width|false|title|fancy_title|class|return|href|fb|fancy_loading|padding|this|Math|unbind|px|orig|fancy_overlay|document|visible|fancy_bg|imagePreloader|length|show||bind||src|browser|style|is|click|IE6|window|hide|round|close|match|filter|busy|msie|_change_item|fancy_close|iframe|td|img|undefined|fancy_right|fancy_left|_set_content|getViewport|empty|_finish|getNumeric|position|new|Image|loadingTimer|loadingFrame|imageRegExp|null|rel|children|first|overlayShow|showLoading|frameWidth|frameHeight|objNext|fadeOut|append|normal|removeAttribute|keydown|__cleanup|span|fixPNG|substr|oldIE|isFunction|callbackOnStart|typeof|alt|embed|object|select||visibility|opacity|resize|scroll|_proceed_image|60||min|fast|fadeIn|animate|zoomSpeedIn|getPosition|zoomOpacity|keyCode|callbackOnShow|centerOnScroll|callbackOnClose|zoomSpeedOut|javascript|fancy_ico|swing|each|backgroundImage|png|no|absolute|relative|version|extend|defaults|_initialize|_start|attr|push|overlayColor|overlayOpacity|scrollBox|indexOf|fancy_frame|jQuery|showIframe|frameborder|html|imageScale|_preload_neighbor_images|removeExpression|right|bottom|auto|setExpression|parentNode|100|zoomSpeedChange|easingChange|easingIn|_set_navigation|fancy_left_ico|stopPropagation|fancy_right_ico|enableEscapeButton|hideOnContentClick|hideOnOverlayClick||showCloseButton|outerHeight|outerWidth|animateLoading||clearInterval||stop|easingOut|build|fancy_inner|appendTo|table|tr|fancy_bigIframe|url|RegExp|none|progid|DXImageTransform|Microsoft|AlphaImageLoader|enabled|sizingMethod|backgroundRepeat|repeat|crop|scale|jpg|gif|bmp|jpeg|XMLHttpRequest|for|while|hidden|background|color|className|onload|name|fancy_iframe|random|1000|hspace|location|split|replace|fancy_div|complete|load|get|fancy_ajax|fancy_img|clientHeight|clientWidth|text|parseInt|curCSS||jquery|offset|paddingTop|borderTopWidth|paddingLeft|borderLeftWidth|scrollLeft|scrollTop|setInterval|66|fancy_bg_n|fancy_bg_ne|fancy_bg_e|fancy_bg_se|fancy_bg_s|fancy_bg_sw|fancy_bg_w|fancy_bg_nw|body|cellspacing|cellpadding|border|fancy_title_left|fancy_title_main|fancy_title_right|prepend|scrolling|contentWindow|open|300|560|340|666|ready|boxModel'.split('|'),0,{}));

/* jQuery UI Effects Pulsate 1.7.2 
*/
(function(a){a.effects.pulsate=function(b){return this.queue(function(){var d=a(this);var g=a.effects.setMode(d,b.options.mode||"show");var f=b.options.times||5;var e=b.duration?b.duration/2:a.fx.speeds._default/2;if(g=="hide"){f--}if(d.is(":hidden")){d.css("opacity",0);d.show();d.animate({opacity:1},e,b.options.easing);f=f-2}for(var c=0;c<f;c++){d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing)}if(g=="hide"){d.animate({opacity:0},e,b.options.easing,function(){d.hide();if(b.callback){b.callback.apply(this,arguments)}})}else{d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing,function(){if(b.callback){b.callback.apply(this,arguments)}})}d.queue("fx",function(){d.dequeue()});d.dequeue()})}})(jQuery);

/* jQuery-Plugin "pngFix"1.2
*/
(function($){jQuery.fn.pngFix=function(settings){settings=jQuery.extend({blankgif:'blank.gif'},settings);var ie55=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 5.5")!=-1);var ie6=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 6.0")!=-1);if(jQuery.browser.msie&&(ie55||ie6)){jQuery(this).find("img[src$=.png]").each(function(){jQuery(this).attr('width',jQuery(this).width());jQuery(this).attr('height',jQuery(this).height());var prevStyle='';var strNewHTML='';var imgId=(jQuery(this).attr('id'))?'id="'+jQuery(this).attr('id')+'" ':'';var imgClass=(jQuery(this).attr('class'))?'class="'+jQuery(this).attr('class')+'" ':'';var imgTitle=(jQuery(this).attr('title'))?'title="'+jQuery(this).attr('title')+'" ':'';var imgAlt=(jQuery(this).attr('alt'))?'alt="'+jQuery(this).attr('alt')+'" ':'';var imgAlign=(jQuery(this).attr('align'))?'float:'+jQuery(this).attr('align')+';':'';var imgHand=(jQuery(this).parent().attr('href'))?'cursor:hand;':'';if(this.style.border){prevStyle+='border:'+this.style.border+';';this.style.border=''}if(this.style.padding){prevStyle+='padding:'+this.style.padding+';';this.style.padding=''}if(this.style.margin){prevStyle+='margin:'+this.style.margin+';';this.style.margin=''}var imgStyle=(this.style.cssText);strNewHTML+='<span '+imgId+imgClass+imgTitle+imgAlt;strNewHTML+='style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;strNewHTML+='width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;';strNewHTML+='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+jQuery(this).attr('src')+'\', sizingMethod=\'scale\');';strNewHTML+=imgStyle+'"></span>';if(prevStyle!=''){strNewHTML='<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;'+'">'+strNewHTML+'</span>'}jQuery(this).hide();jQuery(this).after(strNewHTML)});jQuery(this).find("*").each(function(){var bgIMG=jQuery(this).css('background-image');if(bgIMG.indexOf(".png")!=-1){var iebg=bgIMG.split('url("')[1].split('")')[0];jQuery(this).css('background-image','none');jQuery(this).get(0).runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+iebg+"',sizingMethod='scale')"}});jQuery(this).find("input[src$=.png]").each(function(){var bgIMG=jQuery(this).attr('src');jQuery(this).get(0).runtimeStyle.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+bgIMG+'\', sizingMethod=\'scale\');';jQuery(this).attr('src',settings.blankgif)})}return jQuery}})(jQuery);


/* jQuery validation plug-in 1.6
*/
(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return}var validator=$.data(this[0],'validator');if(validator){return validator}validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true});if(validator.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){validator.submitButton=this})}this.submit(function(event){if(validator.settings.debug)event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm)}validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove()}return false}return true}if(validator.cancelSubmit){validator.cancelSubmit=false;return handle()}if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false}return handle()}else{validator.focusInvalid();return false}})}return validator},valid:function(){if($(this[0]).is('form')){return this.validate().form()}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this)});return valid}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value)});return result},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules}var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method]});return filtered}}var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data)}return data}});$.extend($.expr[":"],{blank:function(a){return!$.trim(""+a.value)},filled:function(a){return!!$.trim(""+a.value)},unchecked:function(a){return!a.checked}});$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init()};$.validator.format=function(source,params){if(arguments.length==1)return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args)};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1)}if(params.constructor!=Array){params=[params]}$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n)});return source};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.errorsFor(element).hide()}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element)}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element)}},onclick:function(element){if(element.name in this.submitted)this.element(element);else if(element.parentNode.name in this.submitted)this.element(element.parentNode)},highlight:function(element,errorClass,validClass){$(element).addClass(errorClass).removeClass(validClass)},unhighlight:function(element,errorClass,validClass){$(element).removeClass(errorClass).addClass(validClass)}},setDefaults:function(settings){$.extend($.validator.defaults,settings)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key})});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value)});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0])}$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox, select, option",delegate);if(this.settings.invalidHandler)$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid()},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i])}return this.valid()},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name]}else{this.invalid[element.name]=true}if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers)}this.showErrors();return result},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]})}this.successList=$.grep(this.successList,function(element){return!(element.name in errors)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){if($.fn.resetForm)$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(obj){var count=0;for(var i in obj)count++;return count},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return this.size()==0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus()}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name}).length==1&&lastActive},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))return false;rulesCache[this.name]=true;return true})},clean:function(selector){return $(selector)[0]},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.currentElements=$([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element)},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0]}var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue}dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return}if(!result){this.formatAndAdd(element,rule);return false}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id+", check the '"+rule.method+"' method",e);throw e;}}if(dependencyMismatch)return;if(this.objectLength(rules))this.successList.push(element);return true},customMetaMessage:function(element,method){if(!$.metadata)return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method]},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method])},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)return arguments[i]}return undefined},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>")},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method),theregex=/\$?\{(\d+)\}/g;if(typeof message=="function"){message=message.call(this,rule.parameters,element)}else if(theregex.test(message)){message=jQuery.format(message.replace(theregex,'{$1}'),rule.parameters)}this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message},addWrapper:function(toToggle){if(this.settings.wrapper)toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message)}if(this.errorList.length){this.toShow=this.toShow.add(this.containers)}if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i])}}if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass,this.settings.validClass)}}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return $(this.errorList).map(function(){return this.element})},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message)}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()}if(!this.labelContainer.append(label).length)this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element)}if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label)}this.toShow=this.toShow.add(label)},errorsFor:function(element){var name=this.idOrName(element);return this.errors().filter(function(){return $(this).attr('for')==name})},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name)},checkable:function(element){return/radio|checkbox/i.test(element.type)},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null})},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))return this.findByName(element.name).filter(':checked').length}return value.length},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true},dependTypes:{"boolean":function(param,element){return param},"string":function(param,element){return!!$(param,element.form).length},"function":function(param,element){return param(element)}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch"},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();this.formSubmitted=false}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",{old:null,valid:true,message:this.defaultMessage(element,"remote")})}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className)},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this])}});return rules},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value}}if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength}return rules},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata()},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{}}return rules},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return}if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break}if(keepRule){rules[prop]=val.param!==undefined?val.param:true}else{delete rules[prop]}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this])}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])]}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max}if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength}}if(rules.messages){delete rules.messages}return rules},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true});data=transformed}return data},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name))}},methods:{required:function(value,element,param){if(!this.depend(param,element))return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var val=$(element).val();return val&&val.length>0;case'input':if(this.checkable(element))return this.getLength(value,element)>0;default:return $.trim(value).length>0}},remote:function(value,element,param){if(this.optional(element))return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])this.settings.messages[element.name]={};previous.originalMessage=this.settings.messages[element.name].remote;this.settings.messages[element.name].remote=previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){validator.settings.messages[element.name].remote=previous.originalMessage;var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors()}else{var errors={};var message=(previous.message=response||validator.defaultMessage(element,"remote"));errors[element.name]=$.isFunction(message)?message(value):message;validator.showErrors(errors)}previous.valid=valid;validator.stopRequest(element,valid)}},param));return"pending"}else if(this.pending[element.name]){return"pending"}return previous.valid},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1])},min:function(value,element,param){return this.optional(element)||value>=param},max:function(value,element,param){return this.optional(element)||value<=param},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1])},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value)},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value)},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value))},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value)},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value)},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value)},creditcard:function(value,element){if(this.optional(element))return"dependency-mismatch";if(/[^0-9-]+/.test(value))return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(var n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)nDigit-=9}nCheck+=nDigit;bEven=!bEven}return(nCheck%10)==0},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"))},equalTo:function(value,element,param){var target=$(param).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){$(element).valid()});return value==target.val()}}});$.format=$.validator.format})(jQuery);(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort()}return(pendingRequests[port]=ajax.apply(this,arguments))}return ajax.apply(this,arguments)}})(jQuery);(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true)},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true)},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments)}}});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments)}})},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})])}})})(jQuery);;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;

$(document).ready(function() {

 //building shaded grey blocks on webform fieldsets
  $('.webform-component-fieldset:not(#webform-component-produits)').wrap('<div class="fmid"></div>')
  $('div.fmid').wrap('<div class="gfieldset"></div>')
  $('div.gfieldset').prepend('<div class="top"></div>')
    .append('<div class="btm"></div>');


 //building red blocs on '.conclusion' DIVS
  $('div.conclusion').wrap('<div class="rmid"></div>')
  $('div.rmid').wrap('<div class="redbloc"></div>')
  $('div.redbloc').prepend('<div class="top"></div>')
    .append('<div class="btm"></div>');

  $('div.conclusion-s').wrap('<div class="rmid-s"></div>')
  $('div.rmid-s').wrap('<div class="redbloc-s"></div>')
  $('div.redbloc-s').prepend('<div class="top"></div>')
    .append('<div class="btm"></div>');

 //building shaded grey blocks on '.shade' DIVS
  $('div.tease').wrap('<div class="gmid"></div>')
  $('div.gmid').wrap('<div class="greybloc"></div>')
  $('div.greybloc').prepend('<div class="top"></div>')
    .append('<div class="btm"></div>');

  $('.tease-s').wrap('<div class="gmid-s"></div>')
  $('div.gmid-s').wrap('<div class="greybloc-s"></div>')
  $('div.greybloc-s').prepend('<div class="top"></div>')
    .append('<div class="btm"></div>');

  $('.tease-l').wrap('<div class="gmid-l"></div>')
  $('div.gmid-l').wrap('<div class="greybloc-l"></div>')
  $('div.greybloc-l').prepend('<div class="top"></div>')
    .append('<div class="btm"></div>');

//siteH = $('.container').height();
//$('#find').css({'top':siteH-30})

  $("#block-menu-primary-links .leaf a[href='/ou-trouver-la-gamme']").parent().css({'margin-top':'20px'});

  $('.glossary-links').before('<h2>Glossaire</h2>');
  
  var sr = 
  $('.views-field-field-question-value .field-content').each(function(){
  	$(this).html ($(this).html().replace('MATRICIUM','MATRICIUM<sup>&reg;</sup>'))
  })

  $('a.glossary-term').each(function(){
  	 //console.log($(this).parent().css('color'))
  	 $(this).css('color',$(this).parent().css('color'))
  	 $(this).css('text-decoration',$(this).parent().css('text-decoration'))
  })

  $('b .cufon-canvas canvas').css({'top':'-1px'})

  $("a.zoom").fancybox({
    });

  $("a.zoomhtml").fancybox({
      'frameWidth':640,
      'frameHeight':250,
      'padding':0
    });

});

;

