/*
 * jQuery ifixpng plugin
 * (previously known as pngfix)
 * Version 3.1.2  (2008/09/01)
 * @requires jQuery v1.2.6 or above, or a lower version with the dimensions plugin
 * 
 * Based on the plugin by Kush M., http://jquery.khurshid.com
 *
 * Background position Fixed
 * Also fixes non-visible images
 * (c) Copyright Yereth Jansen (yereth@yereth.nl)
 * personal website: http://www.yereth.nl
 * Company website: http://www.wharf.nl
 * 
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * For a demonstration of the background-position being fixed:
 * http://www.yereth.nl/bgpos.html
 *
 * Plugin page:
 * http://plugins.jquery.com/project/iFixPng2
 *
 */

/**
 *
 * @example
 *
 * optional if location of pixel.gif if different to default which is images/pixel.gif
 * $.ifixpng('media/pixel.gif');
 *
 * $('img[@src$=.png], #panel').ifixpng();
 *
 * @apply hack to all png images and #panel which icluded png img in its css
 *
 * @name ifixpng
 * @type jQuery
 * @cat Plugins/Image
 * @return jQuery
 * @author jQuery Community
 */
;(function($) {

	/**
	 * helper variables and function
	 */
	$.ifixpng = function(customPixel) {
		$.ifixpng.pixel = customPixel;
	};
	
	$.ifixpng.regexp = {
		bg: /^url\(["']?(.*\.png([?].*)?)["']?\)$/i,
		img: /.*\.png([?].*)?$/i
	},
	
	$.ifixpng.getPixel = function() {
		return $.ifixpng.pixel || 'images/pixel.gif';
	};
	
	var hack = {
		base	: $('base').attr('href'),
		ltie7	: $.browser.msie && $.browser.version < 7,
		filter	: function(src) {
			return "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='"+src+"')";
		}
	};
	
	/**
	 * Applies ie png hack to selected dom elements
	 *
	 * $('img[@src$=.png]').ifixpng();
	 * @desc apply hack to all images with png extensions
	 *
	 * $('#panel, img[@src$=.png]').ifixpng();
	 * @desc apply hack to element #panel and all images with png extensions
	 *
	 * @name ifixpng
	 */
	 
	$.fn.ifixpng = hack.ltie7 ? function() {
		function fixImage(image, source, width, height, hidden) {
			image.css({filter:hack.filter(source), width: width, height: height})
			  .attr({src:$.ifixpng.getPixel()})
			  .positionFix();
		}
		
    	return this.each(function() {
			var $$ = $(this);
			if ($$.is('img') || $$.is('input')) { // hack image tags present in dom
				var source, img;
				if (this.src && this.src.match($.ifixpng.regexp.img)) { // make sure it is png image
					// use source tag value if set 
					source = (hack.base && this.src.substring(0,1)!='/' && this.src.indexOf(hack.base) === -1) ? hack.base + this.src : this.src;
					// If the width is not set, we have a problem; the image is not probably visible or not loaded
					// and we need a work around.
					if (!this.width || !this.height) {
						$(new Image()).one('load', function() {
							fixImage($$, source, this.width, this.height);
							$(this).remove();
						}).attr('src', source);
					// If the image already has dimensions (it's loaded and visible) we can fix it straight away.
					} else fixImage($$, source, this.width, this.height);
				}
			} else if (this.style) { // hack png css properties present inside css
				var imageSrc = $$.css('backgroundImage');
				// Background repeated images we cannot fix unfortunately
				if (imageSrc && imageSrc.match($.ifixpng.regexp.bg) && this.currentStyle.backgroundRepeat == 'no-repeat') {
					imageSrc = RegExp.$1;
					var x = this.currentStyle.backgroundPositionX || 0, y = this.currentStyle.backgroundPositionY || 0;
					if (x || y) {
						var css = {}, img;
						if (typeof x != 'undefined') {
							if (x == 'left') css.left = 0; 
							// if right is 0, we have to check if the parent has an odd width, because of an IE bug
							else if (x == 'right') css.right = $$.width() % 2 === 1 ? -1 : 0;
							else css.left = x;
						}
						if (typeof y != 'undefined') {
							// if bottom is 0, we have to check if the parent has an odd height, because of an IE bug
							if (y == 'bottom') css.bottom = $$.height() % 2 === 1 ? -1 : 0; 
							else if (y == 'top') css.top = 0;
							else css.top = y;
						}
						img = new Image();
						$(img).one('load', function() {
							var x,y, expr = {}, prop;
							// Now the image is loaded for sure, we can see if the background position needs fixing with an expression (in case of percentages)
							if (/center|%/.test(css.top)) {
								expr.top = "(this.parentNode.offsetHeight - this.offsetHeight) * " + (css.top == 'center' ? 0.5 : (parseInt(css.top) / 100));
								delete css.top;
							}
							if (/center|%/.test(css.left)) {
								expr.left = "(this.parentNode.offsetWidth - this.offsetWidth) * " + (css.left == 'center' ? 0.5 : (parseInt(css.left) / 100));
								delete css.left;
							}
							// Let's add the helper DIV which will simulate the background image
							$$.positionFix().css({backgroundImage: 'none'}).prepend(
								$('<div></div>').css(css).css({
									width: this.width,
									height: this.height,
									position: 'absolute',
									filter: hack.filter(imageSrc)
								})
							);
							if (expr.top || expr.left) {
								var elem = $$.children(':first')[0];
								for (prop in expr) elem.style.setExpression(prop, expr[prop], 'JavaScript');
							}
							$(this).remove();
						});
						img.src = imageSrc;
					} else {
						$$.css({backgroundImage: 'none', filter:hack.filter(imageSrc)});
					}
				}
			}
		});
	} : function() { return this; };
	
	/**
	 * positions selected item relatively
	 */
	$.fn.positionFix = function() {
		return this.each(function() {
			var $$ = $(this);
			if ($$.css('position') != 'absolute') $$.css({position:'relative'});
		});
	};

})(jQuery);

/* CUSTOM RADIO AND CHECKBOX */
(function($){var i=function(e){if(!e)var e=window.event;e.cancelBubble=true;if(e.stopPropagation)e.stopPropagation()};$.fn.checkbox=function(f){try{document.execCommand('BackgroundImageCache',false,true)}catch(e){}var g={cls:'jquery-checkbox',empty:'images/bg/empty.png'};g=$.extend(g,f||{});var h=function(a){var b=a.checked;var c=a.disabled;var d=$(a);if(a.stateInterval)clearInterval(a.stateInterval);a.stateInterval=setInterval(function(){if(a.disabled!=c)d.trigger((c=!!a.disabled)?'disable':'enable');if(a.checked!=b)d.trigger((b=!!a.checked)?'check':'uncheck')},10);return d};return this.each(function(){var a=this;var type = $(this).attr("type"); var b=h(a);if(a.wrapper)a.wrapper.remove();a.wrapper=$('<span class="'+g.cls+' '+g.cls+'-'+ type +'"><span class="mark"><img src="'+g.empty+'" /></span></span>');a.wrapperInner=a.wrapper.children('span:eq(0)');a.wrapper.hover(function(e){a.wrapperInner.addClass(g.cls+'-'+type+'-hover');i(e)},function(e){a.wrapperInner.removeClass(g.cls+'-'+type+'-hover');i(e)});b.css({position:'absolute',zIndex:-1,visibility:'hidden'}).after(a.wrapper);var c=false;if(b.attr('id')){c=$('label[for='+b.attr('id')+']');if(!c.length)c=false}if(!c){c=b.closest?b.closest('label'):b.parents('label:eq(0)');if(!c.length)c=false}if(c){c.hover(function(e){a.wrapper.trigger('mouseover',[e])},function(e){a.wrapper.trigger('mouseout',[e])});c.click(function(e){b.trigger('click',[e]);i(e);return false})}a.wrapper.click(function(e){b.trigger('click',[e]);i(e);return false});b.click(function(e){i(e)});b.bind('disable',function(){a.wrapperInner.addClass(g.cls+'-'+type+'-disabled')}).bind('enable',function(){a.wrapperInner.removeClass(g.cls+'-'+type+'-disabled')});b.bind('check',function(){a.wrapper.addClass(g.cls+'-'+type+'-checked')}).bind('uncheck',function(){a.wrapper.removeClass(g.cls+'-'+type+'-checked')});$('img',a.wrapper).bind('dragstart',function(){return false}).bind('mousedown',function(){return false});if(window.getSelection)a.wrapper.css('MozUserSelect','none');if(a.checked)a.wrapper.addClass(g.cls+'-'+type+'-checked');if(a.disabled)a.wrapperInner.addClass(g.cls+'-'+type+'-disabled')})}})(jQuery);

/*
		CSS Browser Selector v0.3.4 (Sep 29, 2009)
		Rafael Lima (http://rafael.adm.br)
		http://rafael.adm.br/css_browser_selector
		License: http://creativecommons.org/licenses/by/2.5/
		Contributors: http://rafael.adm.br/css_browser_selector#contributors
		*/
		
		function css_browser_selector(u){var ua = u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',o='opera',h=document.getElementsByTagName('html')[0],b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);
		
	
/*
Stylish Select 0.3 - $ plugin to replace a select drop down box with a stylable unordered list
http://scottdarby.com/

Copyright (c) 2009 Scott Darby

Requires: $ 1.3

Licensed under the GPL license:
http://www.gnu.org/licenses/gpl.html
*/
(function($){

	//add class of js to html tag
	$('html').addClass('js');

	//create cross-browser indexOf
	Array.prototype.indexOf = function (obj, start) {
		for (var i = (start || 0); i < this.length; i++) {
			if (this[i] == obj) {
				return i;
			}
		}
	}
	
	//utility methods
	$.fn.extend({
		getSetSSValue: function(value){
						if (value){
							//set value and trigger change event
							$(this).val(value).change();
							return this;
						} else {
							return selText = $(this).find(':selected').text();
						}
					},
		resetSS: function(){
						$this = $(this);
						$this.next().remove();
						//unbind all events and redraw
						$this.unbind().sSelect();
					}
	});

	$.fn.sSelect = function(options) {
	
		return this.each(function(){
			
			var defaults = {
				defaultText: '',
				animationSpeed: 0, //set speed of dropdown
				ddMaxHeight: '' //set css max-height value of dropdown
			};

			//initial variables
			var opts = $.extend(defaults, options),
				$input = $(this),
				$this_class = $(this).attr('class'),
				$this_id = $(this).attr('id'),
				$containerDivText = $('<div class="selectedTxt"></div>'),
				$containerDiv = $('<div class="newListSelected '+$this_class+'" tabindex="'+$(this).attr('tabindex')+'"></div>'),
				$newUl = $('<ul class="newList"></ul>'),
				itemIndex = -1,
				currentIndex = -1,
				keys = [],
				prevKey = false,
				newListItems = '',
				prevented = false;

            if ($input.attr('name')) $this_name = $input.attr('name');
            else $this_name = $input.attr('name1');
			$hiddenS = $('<input type="hidden" id="'+$input.attr('id')+'" name="'+$this_name+'" value="'+$input.val()+'"/>');
			$input.before($hiddenS);
			$input.attr('name','').attr('id','');
				
			//build new list
			$containerDiv.insertAfter($input);
			$containerDivText.prependTo($containerDiv);
			$newUl.appendTo($containerDiv);

			//build bottom
			var $bottomDiv = $('<div class="newListBottom"><span class="sbl" style="width:'+($containerDivText.outerWidth()-11)+'px"></span><span class="sbr"></span></div>');
			$bottomDiv.width($containerDivText.outerWidth()).appendTo($containerDiv);
			
			$input.hide();
		
			//test for optgroup
			if ($input.children('optgroup').length == 0){
				$input.children().each(function(i){
					var option = $(this).text();
					//add first letter of each word to array
					keys.push(option.charAt(0).toLowerCase());
					if ($(this).attr('selected') == true){
						opts.defaultText = option;
						currentIndex = i;
					}
					newListItems += '<li value1="'+$(this).val()+'">'+option+'</li>';
				});
				//add new list items to ul
				$newUl.html(newListItems);
				newListItems = '';
				//cache list items object
				var $newLi = $newUl.children();
								
			} else { //optgroup
				$input.children('optgroup').each(function(i){
				
					var optionTitle = $(this).attr('label'),
						$optGroup = $('<li class="newListOptionTitle">'+optionTitle+'</li>');
						
					$optGroup.appendTo($newUl);

					var $optGroupList = $('<ul></ul>');

					$optGroupList.appendTo($optGroup);

					$(this).children().each(function(){
						++itemIndex;
						var option = $(this).text();
						//add first letter of each word to array
						keys.push(option.charAt(0).toLowerCase());
						if ($(this).attr('selected') == true){
							opts.defaultText = option;
							currentIndex = itemIndex;
						}
						newListItems += '<li>'+option+'</li>';
					})
					//add new list items to ul
					$optGroupList.html(newListItems);
					newListItems = '';
				});
				//cache list items object
				var $newLi = $newUl.find('ul li');
			
			}
			if ($('html').hasClass('ie6'))
				$newLi.width($containerDivText.outerWidth()-4);
			
			//get heights of new elements for use later
			var newUlHeight = $newUl.height()+3,
				containerHeight = $containerDiv.height()+3,
				newLiLength = $newLi.length;
		
			//check if a value is selected
			if (currentIndex != -1){
				navigateList(currentIndex, true);
			} else {
				//set placeholder text
				$containerDivText.text(opts.defaultText);
			}

			//decide if to place the new list above or below the drop-down
			function newUlPos(){
				var containerPosY = $containerDiv.offset().top,
					docHeight = jQuery(window).height(),
					scrollTop = jQuery(window).scrollTop();

					//if height of list is greater then max height, set list height to max height value
					if (newUlHeight > parseInt(opts.ddMaxHeight)) {
						newUlHeight = parseInt(opts.ddMaxHeight);
					}	

				containerPosY = containerPosY-scrollTop;
				if (containerPosY+newUlHeight >= docHeight){
					$newUl.css({top: '-'+newUlHeight+'px', height: newUlHeight});
					$input.onTop = true;
				} else {
					$newUl.css({top: containerHeight+'px', height: newUlHeight});
					$bottomDiv.css({top: containerHeight + newUlHeight - 7 + 'px'});
					$input.onTop = false;
				}
			}

			//run function on page load
			newUlPos();
			
			//run function on browser window resize
			$(window).resize(function(){
				newUlPos();
			});
			
			$(window).scroll(function(){
				newUlPos();
			});

			//positioning
			function positionFix(){
				$containerDiv.css('position','relative');
			}

			function positionHideFix(){
				$containerDiv.css('position','static');
			}
			
			$containerDivText.click(function(){
			
				if ($containerDiv.hasClass('newListDisabled')) return false;
			
				if ($newUl.is(':visible')){
					$containerDiv.removeClass('newListSelFocus');
					$newUl.hide();
					$bottomDiv.hide();
					positionHideFix()
					return false;
				}

				$containerDiv.focus();

				//show list
				$newUl.slideDown(opts.animationSpeed);
				$bottomDiv.show();
				positionFix();
				//scroll list to selected item
				$newUl.scrollTop($input.liOffsetTop);

			});
			
			$newLi.hover(
			  function (e) {
				var $hoveredLi = $(e.target);
				$hoveredLi.addClass('newListHover');
			  },
			  function (e) {
				var $hoveredLi = $(e.target);
				$hoveredLi.removeClass('newListHover');
			  }
			);

			$newLi.click(function(e){
				var $clickedLi = $(e.target);
				
				$('#'+$this_id).val($clickedLi.attr('value1'));

				//update counter
				currentIndex = $newLi.index($clickedLi);
				//remove all hilites, then add hilite to selected item
				prevented = true;
				navigateList(currentIndex);
				$containerDiv.removeClass('newListSelFocus');
				$newUl.hide();
				$bottomDiv.hide();
				$containerDiv.css('position','static');//ie
			});

			function navigateList(currentIndex, init){

				//get offsets
				var containerOffsetTop = $containerDiv.offset().top,
					liOffsetTop = $newLi.eq(currentIndex).offset() ? $newLi.eq(currentIndex).offset().top : 0,
					ulScrollTop = $newUl.scrollTop();
				
				//get distance of current li from top of list				
				if ($input.onTop == true){
					//if list is above select box, add max height value
					$input.liOffsetTop = (((liOffsetTop-containerOffsetTop)-containerHeight)+ulScrollTop)+parseInt(opts.ddMaxHeight);
				} else {
					$input.liOffsetTop = ((liOffsetTop-containerOffsetTop)-containerHeight)+ulScrollTop;
				}
				
				//scroll list to focus on current item
				$newUl.scrollTop($input.liOffsetTop);
				
				$newLi.removeClass('hiLite')
					.eq(currentIndex)
					.addClass('hiLite');
				$('#'+$this_id).val($newLi.eq(currentIndex).attr('value1'));

				var text = $newLi.eq(currentIndex).text();
				//page load
				if (init == true){
					$input.val(text);
					$containerDivText.text(text);
					return false;
				}
				$input.val(text).change();
				$containerDivText.text(text);

			};

			$input.change(function(event){
					$targetInput = $(event.target);
					//stop change function from firing 
					if (prevented == true){
						prevented = false;
						return false;
					}
					$currentOpt = $targetInput.find(':selected');
					currentIndex = $targetInput.find('option').index($currentOpt);
					navigateList(currentIndex, true);
				}
			);
			
			//handle up and down keys
			function keyPress(element) {
				//when keys are pressed
				element.onkeydown = function(e){
					if (e == null) { //ie
						var keycode = event.keyCode;
					} else { //everything else
						var keycode = e.which;
					}
					
					//prevent change function from firing
					prevented = true;

					switch(keycode)
					{
					case 40: //down
					case 39: //right
						incrementList();
						return false;
						break;
					case 38: //up
					case 37: //left
						decrementList();
						return false;
						break;
					case 33: //page up
					case 36: //home
						gotoFirst();
						return false;
						break;
					case 34: //page down
					case 35: //end
						gotoLast();
						return false;
						break;
					case 13:
					case 27:
						$containerDiv.removeClass('newListSelFocus');
						$newUl.hide();
						$bottomDiv.hide();
						positionHideFix();
						return false;
						break;
					}

					//check for keyboard shortcuts
					keyPressed = String.fromCharCode(keycode).toLowerCase();
					var currentKeyIndex = keys.indexOf(keyPressed);
					if (typeof currentKeyIndex != 'undefined') { //if key code found in array
						++currentIndex;
						currentIndex = keys.indexOf(keyPressed, currentIndex); //search array from current index
						if (currentIndex == -1 || currentIndex == null || prevKey != keyPressed) currentIndex = keys.indexOf(keyPressed); //if no entry was found or new key pressed search from start of array
						navigateList(currentIndex);
						//store last key pressed
						prevKey = keyPressed;
						return false;
					}
				}
			}

			function incrementList(){
				if (currentIndex < (newLiLength-1)) {
					++currentIndex;
					navigateList(currentIndex);
				}
			}

			function decrementList(){
				if (currentIndex > 0) {
					--currentIndex;
					navigateList(currentIndex);
				}
			}

			function gotoFirst(){
				currentIndex = 0;
				navigateList(currentIndex);
			}
			
			function gotoLast(){
				currentIndex = newLiLength-1;
				navigateList(currentIndex);
			}

			$containerDiv.click(function(){
				$(this).addClass('newListSelFocus');
				keyPress(this);
			});

			$containerDiv.focus(function(){
				keyPress(this);
			});
			
			//hide list on blur
			$containerDiv.blur(function(){
			   $(this).removeClass('newListSelFocus');
			   $newUl.hide();
			   $bottomDiv.hide();
			   positionHideFix();
			});

			//add classes on hover
			$containerDivText.hover(function(e) {
				var $hoveredTxt = $(e.target);
				$hoveredTxt.parent().addClass('newListSelHover');
			  }, 
			  function(e) {
				var $hoveredTxt = $(e.target);
				$hoveredTxt.parent().removeClass('newListSelHover');
			  }
			);

			//reset left property and hide
			$newUl.css('left','0').hide();
			$bottomDiv.css('left','0').hide();
			
			
		});
	  
	};

})(jQuery);

/*
 * jQuery UI 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
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 Dialog 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Dialog
 *
 * Depends:
 *	ui.core.js
 *	ui.draggable.js
 *	ui.resizable.js
 */
(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
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */
(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 Datepicker 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Datepicker
 *
 * Depends:
 *	ui.core.js
 */
(function($){$.extend($.ui,{datepicker:{version:"1.7.2"}});var PROP_NAME="datepicker";function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass="ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],dateFormat:"mm/dd/yy",firstDay:0,isRTL:false};this._defaults={showOn:"focus",showAnim:"show",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:"-10:+10",showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"normal",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false};$.extend(this._defaults,this.regional[""]);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){inst.append=$('<span class="'+this._appendClass+'">'+appendText+"</span>");input[isRTL?"before":"after"](inst.append)}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");inst.trigger=$(this._get(inst,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("<img/>").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;inst.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;inst.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target){return true}}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(target,name,value){var inst=this._getInst(target);if(arguments.length==2&&typeof name=="string"){return(name=="defaults"?$.extend({},$.datepicker._defaults):(inst?(name=="all"?$.extend({},inst.settings):this._get(inst,name)):null))}var settings=name||{};if(typeof name=="string"){settings={};settings[name]=value}if(inst){if(this._curInst==inst){this._hideDatepicker(null)}var date=this._getDateDatepicker(target);extendRemove(inst.settings,settings);this._setDateDatepicker(target,date);this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline){this._setDateFromField(inst)}return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is(".ui-datepicker-rtl");inst._keyEvent=true;if($.datepicker._datepickerShowing){switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,"");break;case 13:var sel=$("td."+$.datepicker._dayOverClass+", td."+$.datepicker._currentClass,inst.dpDiv);if(sel[0]){$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0])}else{$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"))}return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M");break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M");break;case 35:if(event.ctrlKey||event.metaKey){$.datepicker._clearDate(event.target)}handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey){$.datepicker._gotoToday(event.target)}handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?+1:-1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M")}break;case 38:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,-7,"D")}handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?-1:+1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M")}break;case 40:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,+7,"D")}handled=event.ctrlKey||event.metaKey;break;default:handled=false}}else{if(event.keyCode==36&&event.ctrlKey){$.datepicker._showDatepicker(this)}else{handled=false}}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,"constrainInput")){var chars=$.datepicker._possibleChars($.datepicker._get(inst,"dateFormat"));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<" "||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return !isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else{if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null){throw"Invalid arguments"}value=(typeof value=="object"?value.toString():value+"");if(value==""){return null}var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=="@"?14:(match=="y"?4:(match=="o"?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++){size=Math.max(size,names[j].length)}var name="";var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++){if(name==names[i]){return i+1}}size--}throw"Unknown name at position "+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat)){throw"Unexpected literal at position "+iValue}iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{checkLiteral()}}else{switch(format.charAt(iFormat)){case"d":day=getNumber("d");break;case"D":getName("D",dayNamesShort,dayNames);break;case"o":doy=getNumber("o");break;case"m":month=getNumber("m");break;case"M":month=getName("M",monthNamesShort,monthNames);break;case"y":year=getNumber("y");break;case"@":var date=new Date(getNumber("@"));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'")){checkLiteral()}else{literal=true}break;default:checkLiteral()}}}if(year==-1){year=new Date().getFullYear()}else{if(year<100){year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100)}}if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var formatNumber=function(match,value,len){var num=""+value;if(lookAhead(match)){while(num.length<len){num="0"+num}}return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output="";var literal=false;if(date){for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{output+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":output+=formatNumber("d",date.getDate(),2);break;case"D":output+=formatName("D",date.getDay(),dayNamesShort,dayNames);break;case"o":var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{chars+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":case"m":case"y":case"@":chars+="0123456789";break;case"D":case"M":return null;case"'":if(lookAhead("'")){chars+="'"}else{literal=true}break;default:chars+=format.charAt(iFormat)}}}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,"dateFormat");var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,"defaultDate"),new Date());var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', -"+stepMonths+", 'M');\" title=\""+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>"));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', +"+stepMonths+", 'M');\" title=\""+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>"));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,"closeText")+"</button>":"");var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+"');\">"+currentText+"</button>":"")+(isRTL?"":controls)+"</div>":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row<numMonths[0];row++){var group="";for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=" ui-corner-all";var calender="";if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+="first";cornerClass=" ui-corner-"+(isRTL?"right":"left");break;case numMonths[1]-1:calender+="last";cornerClass=" ui-corner-"+(isRTL?"left":"right");break;default:calender+="middle";cornerClass="";break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="<th"+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+dayNames[day]+'">'+dayNamesMin[day]+"</span></th>"}calender+=thead+"</tr></thead><tbody>";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+="<tr>";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?" ui-datepicker-week-end":"")+(otherMonth?" ui-datepicker-other-month":"")+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?" "+this._dayOverClass:"")+(unselectable?" "+this._unselectableClass+" ui-state-disabled":"")+(otherMonth&&!showOtherMonths?"":" "+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():"&#xa0;"):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+"</span>":'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?" ui-state-highlight":"")+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+"</a>"))+"</td>";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+"</tr>"}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="</tbody></table>"+(isMultiMonth?"</div>"+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,"changeMonth");var changeYear=this._get(inst,"changeYear");var showMonthAfterYear=this._get(inst,"showMonthAfterYear");var html='<div class="ui-datepicker-title">';var monthHtml="";if(secondary||!changeMonth){monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+"</span> "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'M');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth())){monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':"")+">"+monthNamesShort[month]+"</option>"}}monthHtml+="</select>"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?"&#xa0;":"")}if(secondary||!changeYear){html+='<span class="ui-datepicker-year">'+drawYear+"</span>"}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'Y');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':"")+">"+year+"</option>"}html+="</select>"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?"&#xa0;":"")+monthHtml}html+="</div>";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,"min");var maxDate=this._getMinMaxDate(inst,"max");return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}if(options=="option"&&arguments.length==2&&typeof arguments[1]=="string"){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.2";window.DP_jQuery=$})(jQuery);;/*
 * jQuery UI Progressbar 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Progressbar
 *
 * Depends:
 *   ui.core.js
 */
(function(a){a.widget("ui.progressbar",{_init:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this._valueMin(),"aria-valuemax":this._valueMax(),"aria-valuenow":this._value()});this.valueDiv=a('<div class="ui-progressbar-value ui-widget-header ui-corner-left"></div>').appendTo(this.element);this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow").removeData("progressbar").unbind(".progressbar");this.valueDiv.remove();a.widget.prototype.destroy.apply(this,arguments)},value:function(b){if(b===undefined){return this._value()}this._setData("value",b);return this},_setData:function(b,c){switch(b){case"value":this.options.value=c;this._refreshValue();this._trigger("change",null,{});break}a.widget.prototype._setData.apply(this,arguments)},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_valueMin:function(){var b=0;return b},_valueMax:function(){var b=100;return b},_refreshValue:function(){var b=this.value();this.valueDiv[b==this._valueMax()?"addClass":"removeClass"]("ui-corner-right");this.valueDiv.width(b+"%");this.element.attr("aria-valuenow",b)}});a.extend(a.ui.progressbar,{version:"1.7.2",defaults:{value:0}})})(jQuery);;

/*
	Masked Input plugin for jQuery
	Copyright (c) 2007-2009 Josh Bush (digitalbush.com)
	Licensed under the MIT license (http://digitalbush.com/projects/masked-input-plugin/#license) 
	Version: 1.2.2 (03/09/2009 22:39:06)
*/
(function($) {
	var pasteEventName = ($.browser.msie ? 'paste' : 'input') + ".mask";
	var iPhone = (window.orientation != undefined);

	$.mask = {
		//Predefined character definitions
		definitions: {
			'0': "[1-9]",
			'9': "[0-9]",
			'a': "[A-Za-z]",
			'*': "[A-Za-z0-9]"
		}
	};

	$.fn.extend({
		//Helper Function for Caret positioning
		caret: function(begin, end) {
			if (this.length == 0) return;
			if (typeof begin == 'number') {
				end = (typeof end == 'number') ? end : begin;
				return this.each(function() {
					if (this.setSelectionRange) {
						this.focus();
						this.setSelectionRange(begin, end);
					} else if (this.createTextRange) {
						var range = this.createTextRange();
						range.collapse(true);
						range.moveEnd('character', end);
						range.moveStart('character', begin);
						range.select();
					}
				});
			} else {
				if (this[0].setSelectionRange) {
					begin = this[0].selectionStart;
					end = this[0].selectionEnd;
				} else if (document.selection && document.selection.createRange) {
					var range = document.selection.createRange();
					begin = 0 - range.duplicate().moveStart('character', -100000);
					end = begin + range.text.length;
				}
				return { begin: begin, end: end };
			}
		},
		unmask: function() { return this.trigger("unmask"); },
		mask: function(mask, settings) {
			if (!mask && this.length > 0) {
				var input = $(this[0]);
				var tests = input.data("tests");
				return $.map(input.data("buffer"), function(c, i) {
					return tests[i] ? c : null;
				}).join('');
			}
			settings = $.extend({
				placeholder: " ",
				completed: null
			}, settings);

			var defs = $.mask.definitions;
			var tests = [];
			var partialPosition = mask.length;
			var firstNonMaskPos = null;
			var len = mask.length;

			$.each(mask.split(""), function(i, c) {
				if (c == '?') {
					len--;
					partialPosition = i;
				} else if (defs[c]) {
					tests.push(new RegExp(defs[c]));
					if(firstNonMaskPos==null)
						firstNonMaskPos =  tests.length - 1;
				} else {
					tests.push(null);
				}
			});

			return this.each(function() {
				var input = $(this);
				var buffer = $.map(mask.split(""), function(c, i) { if (c != '?') return defs[c] ? settings.placeholder : c });
				var ignore = false;  			//Variable for ignoring control keys
				var focusText = input.val();

				input.data("buffer", buffer).data("tests", tests);

				function seekNext(pos) {
					while (++pos <= len && !tests[pos]);
					return pos;
				};

				function shiftL(pos) {
					while (!tests[pos] && --pos >= 0);
					for (var i = pos; i < len; i++) {
						if (tests[i]) {
							buffer[i] = settings.placeholder;
							var j = seekNext(i);
							if (j < len && tests[i].test(buffer[j])) {
								buffer[i] = buffer[j];
							} else
								break;
						}
					}
					writeBuffer();
					input.caret(Math.max(firstNonMaskPos, pos));
				};

				function shiftR(pos) {
					for (var i = pos, c = settings.placeholder; i < len; i++) {
						if (tests[i]) {
							var j = seekNext(i);
							var t = buffer[i];
							buffer[i] = c;
							if (j < len && tests[j].test(t))
								c = t;
							else
								break;
						}
					}
				};

				function keydownEvent(e) {
					var pos = $(this).caret();
					var k = e.keyCode;
					ignore = (k < 16 || (k > 16 && k < 32) || (k > 32 && k < 41));

					//delete selection before proceeding
					if ((pos.begin - pos.end) != 0 && (!ignore || k == 8 || k == 46))
						clearBuffer(pos.begin, pos.end);

					//backspace, delete, and escape get special treatment
					if (k == 8 || k == 46 || (iPhone && k == 127)) {//backspace/delete
						shiftL(pos.begin + (k == 46 ? 0 : -1));
						return false;
					} else if (k == 27) {//escape
						input.val(focusText);
						input.caret(0, checkVal());
						return false;
					}
				};

				function keypressEvent(e) {
					if (ignore) {
						ignore = false;
						//Fixes Mac FF bug on backspace
						return (e.keyCode == 8) ? false : null;
					}
					e = e || window.event;
					var k = e.charCode || e.keyCode || e.which;
					var pos = $(this).caret();

					if (e.ctrlKey || e.altKey || e.metaKey) {//Ignore
						return true;
					} else if ((k >= 32 && k <= 125) || k > 186) {//typeable characters
						var p = seekNext(pos.begin - 1);
						if (p < len) {
							var c = String.fromCharCode(k);
							if (tests[p].test(c)) {
								shiftR(p);
								buffer[p] = c;
								writeBuffer();
								var next = seekNext(p);
								$(this).caret(next);
								if (settings.completed && next == len)
									settings.completed.call(input);
							}
						}
					}
					return false;
				};

				function clearBuffer(start, end) {
					for (var i = start; i < end && i < len; i++) {
						if (tests[i])
							buffer[i] = settings.placeholder;
					}
				};

				function writeBuffer() { return input.val(buffer.join('')).val(); };

				function checkVal(allow) {
					//try to place characters where they belong
					var test = input.val();
					var lastMatch = -1;
					for (var i = 0, pos = 0; i < len; i++) {
						if (tests[i]) {
							buffer[i] = settings.placeholder;
							while (pos++ < test.length) {
								var c = test.charAt(pos - 1);
								if (tests[i].test(c)) {
									buffer[i] = c;
									lastMatch = i;
									break;
								}
							}
							if (pos > test.length)
								break;
						} else if (buffer[i] == test[pos] && i!=partialPosition) {
							pos++;
							lastMatch = i;
						} 
					}
					if (!allow && lastMatch + 1 < partialPosition) {
						//input.val("");
						//clearBuffer(0, len);
					} else if (allow || lastMatch + 1 >= partialPosition) {
						writeBuffer();
						if (!allow) input.val(input.val().substring(0, lastMatch + 1));
					}
					return (partialPosition ? i : firstNonMaskPos);
				};

				if (!input.attr("readonly"))
					input
					.one("unmask", function() {
						input
							.unbind(".mask")
							.removeData("buffer")
							.removeData("tests");
					})
					.bind("focus.mask", function() {
						focusText = input.val();
						var pos = checkVal();
						writeBuffer();
						setTimeout(function() {
							if (pos == mask.length)
								input.caret(0, pos);
							else
								input.caret(pos);
						}, 0);
					})
					.bind("blur.mask", function() {
						checkVal();
						if (input.val() != focusText)
							input.change();
					})
					.bind("keydown.mask", keydownEvent)
					.bind("keypress.mask", keypressEvent)
					.bind(pasteEventName, function() {
						setTimeout(function() { input.caret(checkVal(true)); }, 0);
					});

				checkVal(); //Perform initial check for existing values
			});
		}
	});
})(jQuery);
/* Copyright (c) 2007 Paul Bakaus (paul.bakaus@googlemail.com) and Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-12-20 08:43:48 -0600 (Thu, 20 Dec 2007) $
 * $Rev: 4257 $
 *
 * Version: 1.2
 *
 * Requires: jQuery 1.2+
 */
(function($){$.dimensions={version:'1.2'};$.each(['Height','Width'],function(i,name){$.fn['inner'+name]=function(){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';return this.is(':visible')?this[0]['client'+name]:num(this,name.toLowerCase())+num(this,'padding'+torl)+num(this,'padding'+borr);};$.fn['outer'+name]=function(options){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';options=$.extend({margin:false},options||{});var val=this.is(':visible')?this[0]['offset'+name]:num(this,name.toLowerCase())+num(this,'border'+torl+'Width')+num(this,'border'+borr+'Width')+num(this,'padding'+torl)+num(this,'padding'+borr);return val+(options.margin?(num(this,'margin'+torl)+num(this,'margin'+borr)):0);};});$.each(['Left','Top'],function(i,name){$.fn['scroll'+name]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(name=='Left'?val:$(window)['scrollLeft'](),name=='Top'?val:$(window)['scrollTop']()):this['scroll'+name]=val;}):this[0]==window||this[0]==document?self[(name=='Left'?'pageXOffset':'pageYOffset')]||$.boxModel&&document.documentElement['scroll'+name]||document.body['scroll'+name]:this[0]['scroll'+name];};});$.fn.extend({position:function(){var left=0,top=0,elem=this[0],offset,parentOffset,offsetParent,results;if(elem){offsetParent=this.offsetParent();offset=this.offset();parentOffset=offsetParent.offset();offset.top-=num(elem,'marginTop');offset.left-=num(elem,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&$.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return $(offsetParent);}});function num(el,prop){return parseInt($.curCSS(el.jquery?el[0]:el,prop,true))||0;};})(jQuery);


/*
 * jQuery Form Plugin
 * version: 2.28 (10-MAY-2009)
 * @requires jQuery v1.2.2 or later
 *
 * Examples and documentation at: http://malsup.com/jquery/form/
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
;(function($) {

/*
    Usage Note:
    -----------
    Do not use both ajaxSubmit and ajaxForm on the same form.  These
    functions are intended to be exclusive.  Use ajaxSubmit if you want
    to bind your own submit handler to the form.  For example,

    $(document).ready(function() {
        $('#myForm').bind('submit', function() {
            $(this).ajaxSubmit({
                target: '#output'
            });
            return false; // <-- important!
        });
    });

    Use ajaxForm when you want the plugin to manage all the event binding
    for you.  For example,

    $(document).ready(function() {
        $('#myForm').ajaxForm({
            target: '#output'
        });
    });

    When using ajaxForm, the ajaxSubmit function will be invoked for you
    at the appropriate time.
*/

/**
 * ajaxSubmit() provides a mechanism for immediately submitting
 * an HTML form using AJAX.
 */
$.fn.ajaxSubmit = function(options) {
    // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
    if (!this.length) {
        log('ajaxSubmit: skipping submit process - no element selected');
        return this;
    }

    if (typeof options == 'function')
        options = { success: options };

    var url = $.trim(this.attr('action'));
    if (url) {
	    // clean url (don't include hash vaue)
	    url = (url.match(/^([^#]+)/)||[])[1];
   	}
   	url = url || window.location.href || ''

    options = $.extend({
        url:  url,
        type: this.attr('method') || 'GET'
    }, options || {});

    // hook for manipulating the form data before it is extracted;
    // convenient for use with rich editors like tinyMCE or FCKEditor
    var veto = {};
    this.trigger('form-pre-serialize', [this, options, veto]);
    if (veto.veto) {
        log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
        return this;
    }

    // provide opportunity to alter form data before it is serialized
    if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
        log('ajaxSubmit: submit aborted via beforeSerialize callback');
        return this;
    }

    var a = this.formToArray(options.semantic);
    if (options.data) {
        options.extraData = options.data;
        for (var n in options.data) {
          if(options.data[n] instanceof Array) {
            for (var k in options.data[n])
              a.push( { name: n, value: options.data[n][k] } );
          }
          else
             a.push( { name: n, value: options.data[n] } );
        }
    }

    // give pre-submit callback an opportunity to abort the submit
    if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
        log('ajaxSubmit: submit aborted via beforeSubmit callback');
        return this;
    }

    // fire vetoable 'validate' event
    this.trigger('form-submit-validate', [a, this, options, veto]);
    if (veto.veto) {
        log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
        return this;
    }

    var q = $.param(a);

    if (options.type.toUpperCase() == 'GET') {
        options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
        options.data = null;  // data is null for 'get'
    }
    else
        options.data = q; // data is the query string for 'post'

    var $form = this, callbacks = [];
    if (options.resetForm) callbacks.push(function() { $form.resetForm(); });
    if (options.clearForm) callbacks.push(function() { $form.clearForm(); });

    // perform a load on the target only if dataType is not provided
    if (!options.dataType && options.target) {
        var oldSuccess = options.success || function(){};
        callbacks.push(function(data) {
            $(options.target).html(data).each(oldSuccess, arguments);
        });
    }
    else if (options.success)
        callbacks.push(options.success);

    options.success = function(data, status) {
        for (var i=0, max=callbacks.length; i < max; i++)
            callbacks[i].apply(options, [data, status, $form]);
    };

    // are there files to upload?
    var files = $('input:file', this).fieldValue();
    var found = false;
    for (var j=0; j < files.length; j++)
        if (files[j])
            found = true;

	var multipart = false;
//	var mp = 'multipart/form-data';
//	multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);

    // options.iframe allows user to force iframe mode
   if (options.iframe || found || multipart) {
       // hack to fix Safari hang (thanks to Tim Molendijk for this)
       // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
       if (options.closeKeepAlive)
           $.get(options.closeKeepAlive, fileUpload);
       else
           fileUpload();
       }
   else
       $.ajax(options);

    // fire 'notify' event
    this.trigger('form-submit-notify', [this, options]);
    return this;


    // private function for handling file uploads (hat tip to YAHOO!)
    function fileUpload() {
        var form = $form[0];

        if ($(':input[name=submit]', form).length) {
            alert('Error: Form elements must not be named "submit".');
            return;
        }

        var opts = $.extend({}, $.ajaxSettings, options);
		var s = $.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);

        var id = 'jqFormIO' + (new Date().getTime());
        var $io = $('<iframe id="' + id + '" name="' + id + '" src="about:blank" />');
        var io = $io[0];

        $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });

        var xhr = { // mock object
            aborted: 0,
            responseText: null,
            responseXML: null,
            status: 0,
            statusText: 'n/a',
            getAllResponseHeaders: function() {},
            getResponseHeader: function() {},
            setRequestHeader: function() {},
            abort: function() {
                this.aborted = 1;
                $io.attr('src','about:blank'); // abort op in progress
            }
        };

        var g = opts.global;
        // trigger ajax global events so that activity/block indicators work like normal
        if (g && ! $.active++) $.event.trigger("ajaxStart");
        if (g) $.event.trigger("ajaxSend", [xhr, opts]);

		if (s.beforeSend && s.beforeSend(xhr, s) === false) {
			s.global && $.active--;
			return;
        }
        if (xhr.aborted)
            return;

        var cbInvoked = 0;
        var timedOut = 0;

        // add submitting element to data if we know it
        var sub = form.clk;
        if (sub) {
            var n = sub.name;
            if (n && !sub.disabled) {
                options.extraData = options.extraData || {};
                options.extraData[n] = sub.value;
                if (sub.type == "image") {
                    options.extraData[name+'.x'] = form.clk_x;
                    options.extraData[name+'.y'] = form.clk_y;
                }
            }
        }

        // take a breath so that pending repaints get some cpu time before the upload starts
        setTimeout(function() {
            // make sure form attrs are set
            var t = $form.attr('target'), a = $form.attr('action');

			// update form attrs in IE friendly way
			form.setAttribute('target',id);
			if (form.getAttribute('method') != 'POST')
				form.setAttribute('method', 'POST');
			if (form.getAttribute('action') != opts.url)
				form.setAttribute('action', opts.url);

            // ie borks in some cases when setting encoding
            if (! options.skipEncodingOverride) {
                $form.attr({
                    encoding: 'multipart/form-data',
                    enctype:  'multipart/form-data'
                });
            }

            // support timout
            if (opts.timeout)
                setTimeout(function() { timedOut = true; cb(); }, opts.timeout);

            // add "extra" data to form if provided in options
            var extraInputs = [];
            try {
                if (options.extraData)
                    for (var n in options.extraData)
                        extraInputs.push(
                            $('<input type="hidden" name="'+n+'" value="'+options.extraData[n]+'" />')
                                .appendTo(form)[0]);

                // add iframe to doc and submit the form
                $io.appendTo('body');
                io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false);
                form.submit();
            }
            finally {
                // reset attrs and remove "extra" input elements
				form.setAttribute('action',a);
                t ? form.setAttribute('target', t) : $form.removeAttr('target');
                $(extraInputs).remove();
            }
        }, 10);

        var nullCheckFlag = 0;

        function cb() {
            if (cbInvoked++) return;

            io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false);

            var ok = true;
            try {
                if (timedOut) throw 'timeout';
                // extract the server response from the iframe
                var data, doc;

                doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;

                if ((doc.body == null || doc.body.innerHTML == '') && !nullCheckFlag) {
                    // in some browsers (cough, Opera 9.2.x) the iframe DOM is not always traversable when
                    // the onload callback fires, so we give them a 2nd chance
                    nullCheckFlag = 1;
                    cbInvoked--;
                    setTimeout(cb, 100);
                    return;
                }

                xhr.responseText = doc.body ? doc.body.innerHTML : null;
                xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
                xhr.getResponseHeader = function(header){
                    var headers = {'content-type': opts.dataType};
                    return headers[header];
                };

                if (opts.dataType == 'json' || opts.dataType == 'script') {
                    var ta = doc.getElementsByTagName('textarea')[0];
                    xhr.responseText = ta ? ta.value : xhr.responseText;
                }
                else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
                    xhr.responseXML = toXml(xhr.responseText);
                }
                data = $.httpData(xhr, opts.dataType);
            }
            catch(e){
                ok = false;
                $.handleError(opts, xhr, 'error', e);
            }

            // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
            if (ok) {
                opts.success(data, 'success');
                if (g) $.event.trigger("ajaxSuccess", [xhr, opts]);
            }
            if (g) $.event.trigger("ajaxComplete", [xhr, opts]);
            if (g && ! --$.active) $.event.trigger("ajaxStop");
            if (opts.complete) opts.complete(xhr, ok ? 'success' : 'error');

            // clean up
            setTimeout(function() {
                $io.remove();
                xhr.responseXML = null;
            }, 100);
        };

        function toXml(s, doc) {
            if (window.ActiveXObject) {
                doc = new ActiveXObject('Microsoft.XMLDOM');
                doc.async = 'false';
                doc.loadXML(s);
            }
            else
                doc = (new DOMParser()).parseFromString(s, 'text/xml');
            return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
        };
    };
};

/**
 * ajaxForm() provides a mechanism for fully automating form submission.
 *
 * The advantages of using this method instead of ajaxSubmit() are:
 *
 * 1: This method will include coordinates for <input type="image" /> elements (if the element
 *    is used to submit the form).
 * 2. This method will include the submit element's name/value data (for the element that was
 *    used to submit the form).
 * 3. This method binds the submit() method to the form for you.
 *
 * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely
 * passes the options argument along after properly binding events for submit elements and
 * the form itself.
 */
$.fn.ajaxForm = function(options) {
    return this.ajaxFormUnbind().bind('submit.form-plugin',function() {
        $(this).ajaxSubmit(options);
        return false;
    }).each(function() {
        // store options in hash
        $(":submit,input:image", this).bind('click.form-plugin',function(e) {
            var form = this.form;
            form.clk = this;
            if (this.type == 'image') {
                if (e.offsetX != undefined) {
                    form.clk_x = e.offsetX;
                    form.clk_y = e.offsetY;
                } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
                    var offset = $(this).offset();
                    form.clk_x = e.pageX - offset.left;
                    form.clk_y = e.pageY - offset.top;
                } else {
                    form.clk_x = e.pageX - this.offsetLeft;
                    form.clk_y = e.pageY - this.offsetTop;
                }
            }
            // clear form vars
            setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 10);
        });
    });
};

// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
$.fn.ajaxFormUnbind = function() {
    this.unbind('submit.form-plugin');
    return this.each(function() {
        $(":submit,input:image", this).unbind('click.form-plugin');
    });

};

/**
 * formToArray() gathers form element data into an array of objects that can
 * be passed to any of the following ajax functions: $.get, $.post, or load.
 * Each object in the array has both a 'name' and 'value' property.  An example of
 * an array for a simple login form might be:
 *
 * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
 *
 * It is this array that is passed to pre-submit callback functions provided to the
 * ajaxSubmit() and ajaxForm() methods.
 */
$.fn.formToArray = function(semantic) {
    var a = [];
    if (this.length == 0) return a;

    var form = this[0];
    var els = semantic ? form.getElementsByTagName('*') : form.elements;
    if (!els) return a;
    for(var i=0, max=els.length; i < max; i++) {
        var el = els[i];
        var n = el.name;
        if (!n) continue;

        if (semantic && form.clk && el.type == "image") {
            // handle image inputs on the fly when semantic == true
            if(!el.disabled && form.clk == el) {
            	a.push({name: n, value: $(el).val()});
                a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
            }
            continue;
        }

        var v = $.fieldValue(el, true);
        if (v && v.constructor == Array) {
            for(var j=0, jmax=v.length; j < jmax; j++)
                a.push({name: n, value: v[j]});
        }
        else if (v !== null && typeof v != 'undefined')
            a.push({name: n, value: v});
    }

    if (!semantic && form.clk) {
        // input type=='image' are not found in elements array! handle it here
        var $input = $(form.clk), input = $input[0], n = input.name;
        if (n && !input.disabled && input.type == 'image') {
        	a.push({name: n, value: $input.val()});
            a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
        }
    }
    return a;
};

/**
 * Serializes form data into a 'submittable' string. This method will return a string
 * in the format: name1=value1&amp;name2=value2
 */
$.fn.formSerialize = function(semantic) {
    //hand off to jQuery.param for proper encoding
    return $.param(this.formToArray(semantic));
};

/**
 * Serializes all field elements in the jQuery object into a query string.
 * This method will return a string in the format: name1=value1&amp;name2=value2
 */
$.fn.fieldSerialize = function(successful) {
    var a = [];
    this.each(function() {
        var n = this.name;
        if (!n) return;
        var v = $.fieldValue(this, successful);
        if (v && v.constructor == Array) {
            for (var i=0,max=v.length; i < max; i++)
                a.push({name: n, value: v[i]});
        }
        else if (v !== null && typeof v != 'undefined')
            a.push({name: this.name, value: v});
    });
    //hand off to jQuery.param for proper encoding
    return $.param(a);
};

/**
 * Returns the value(s) of the element in the matched set.  For example, consider the following form:
 *
 *  <form><fieldset>
 *      <input name="A" type="text" />
 *      <input name="A" type="text" />
 *      <input name="B" type="checkbox" value="B1" />
 *      <input name="B" type="checkbox" value="B2"/>
 *      <input name="C" type="radio" value="C1" />
 *      <input name="C" type="radio" value="C2" />
 *  </fieldset></form>
 *
 *  var v = $(':text').fieldValue();
 *  // if no values are entered into the text inputs
 *  v == ['','']
 *  // if values entered into the text inputs are 'foo' and 'bar'
 *  v == ['foo','bar']
 *
 *  var v = $(':checkbox').fieldValue();
 *  // if neither checkbox is checked
 *  v === undefined
 *  // if both checkboxes are checked
 *  v == ['B1', 'B2']
 *
 *  var v = $(':radio').fieldValue();
 *  // if neither radio is checked
 *  v === undefined
 *  // if first radio is checked
 *  v == ['C1']
 *
 * The successful argument controls whether or not the field element must be 'successful'
 * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
 * The default value of the successful argument is true.  If this value is false the value(s)
 * for each element is returned.
 *
 * Note: This method *always* returns an array.  If no valid value can be determined the
 *       array will be empty, otherwise it will contain one or more values.
 */
$.fn.fieldValue = function(successful) {
    for (var val=[], i=0, max=this.length; i < max; i++) {
        var el = this[i];
        var v = $.fieldValue(el, successful);
        if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))
            continue;
        v.constructor == Array ? $.merge(val, v) : val.push(v);
    }
    return val;
};

/**
 * Returns the value of the field element.
 */
$.fieldValue = function(el, successful) {
    var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
    if (typeof successful == 'undefined') successful = true;

    if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
        (t == 'checkbox' || t == 'radio') && !el.checked ||
        (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
        tag == 'select' && el.selectedIndex == -1))
            return null;

    if (tag == 'select') {
        var index = el.selectedIndex;
        if (index < 0) return null;
        var a = [], ops = el.options;
        var one = (t == 'select-one');
        var max = (one ? index+1 : ops.length);
        for(var i=(one ? index : 0); i < max; i++) {
            var op = ops[i];
            if (op.selected) {
				var v = op.value;
				if (!v) // extra pain for IE...
                	v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
                if (one) return v;
                a.push(v);
            }
        }
        return a;
    }
    return el.value;
};

/**
 * Clears the form data.  Takes the following actions on the form's input fields:
 *  - input text fields will have their 'value' property set to the empty string
 *  - select elements will have their 'selectedIndex' property set to -1
 *  - checkbox and radio inputs will have their 'checked' property set to false
 *  - inputs of type submit, button, reset, and hidden will *not* be effected
 *  - button elements will *not* be effected
 */
$.fn.clearForm = function() {
    return this.each(function() {
        $('input,select,textarea', this).clearFields();
    });
};

/**
 * Clears the selected form elements.
 */
$.fn.clearFields = $.fn.clearInputs = function() {
    return this.each(function() {
        var t = this.type, tag = this.tagName.toLowerCase();
        if (t == 'text' || t == 'password' || tag == 'textarea')
            this.value = '';
        else if (t == 'checkbox' || t == 'radio')
            this.checked = false;
        else if (tag == 'select')
            this.selectedIndex = -1;
    });
};

/**
 * Resets the form data.  Causes all form elements to be reset to their original value.
 */
$.fn.resetForm = function() {
    return this.each(function() {
        // guard against an input with the name of 'reset'
        // note that IE reports the reset function as an 'object'
        if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))
            this.reset();
    });
};

/**
 * Enables or disables any matching elements.
 */
$.fn.enable = function(b) {
    if (b == undefined) b = true;
    return this.each(function() {
        this.disabled = !b;
    });
};

/**
 * Checks/unchecks any matching checkboxes or radio buttons and
 * selects/deselects and matching option elements.
 */
$.fn.selected = function(select) {
    if (select == undefined) select = true;
    return this.each(function() {
        var t = this.type;
        if (t == 'checkbox' || t == 'radio')
            this.checked = select;
        else if (this.tagName.toLowerCase() == 'option') {
            var $sel = $(this).parent('select');
            if (select && $sel[0] && $sel[0].type == 'select-one') {
                // deselect all other options
                $sel.find('option').selected(false);
            }
            this.selected = select;
        }
    });
};

// helper fn for console logging
// set $.fn.ajaxSubmit.debug to true to enable debug logging
function log() {
    if ($.fn.ajaxSubmit.debug && window.console && window.console.log)
        window.console.log('[jquery.form] ' + Array.prototype.join.call(arguments,''));
};

})(jQuery);


	
	/*
	 *	jquery.suggest 1.1 - 2007-08-06
	 *	
	 *	Uses code and techniques from following libraries:
	 *	1. http://www.dyve.net/jquery/?autocomplete
	 *	2. http://dev.jquery.com/browser/trunk/plugins/interface/iautocompleter.js	
	 *
	 *	All the new stuff written by Peter Vulgaris (www.vulgarisoip.com)	
	 *	Feel free to do whatever you want with this file
	 *
	 */
	
	(function($) {

		$.suggest = function(input, options) {
	
			var $input = $(input).attr("autocomplete", "off");
			var $results = $(document.createElement("ul"));
			var $loader = $(document.createElement("div"));
			var $containerDiv = $(document.createElement("div")).addClass('ac_container');
			
			var timeout = false;		// hold timeout ID for suggestion results to appear	
			//var prevLength = 0;			// last recorded length of $input.val()
			var prevLength = $(input).val().length;
			var prevValue = $(input).val();
			var cache = [];				// cache MRU list
			var cacheSize = 0;			// size of cache in chars (bytes?)

			//build top/bottom
			var $topDiv = $('<div class="ac_top"><span class="acstl"></span><span class="acstr"></span></div>');
			var $bottomDiv = $('<div class="ac_bottom"><span class="acsbl"></span><span class="acsbr"></span></div>');

			$topDiv.appendTo($containerDiv);
			$results.addClass(options.resultsClass).appendTo($containerDiv);
			$bottomDiv.appendTo($containerDiv);
			
			$containerDiv.hide().appendTo('body');
			$loader.addClass(options.loadingClass).hide().appendTo('body');
			
			var $xhr;
			var $quit = false;
			
			resetPosition();
			$(window)
				.load(resetPosition)		// just in case user is changing size of page while loading
				.resize(resetPosition);

			$input.focus(function() {
				$quit = false;
			});

			$input.blur(function() {
				selectCurrentResult();
				$loader.hide();
				$containerDiv.hide();
				if ($xhr)
					$xhr.abort();
				$quit = true;
			});

			// help IE users if possible
			try {
				$results.bgiframe();
			} catch(e) { }


			// I really hate browser detection, but I don't see any other way
			if ($.browser.mozilla)
				$input.keypress(processKey);	// onkeypress repeats arrow keys in Mozilla/Opera
			else
				$input.keydown(processKey);		// onkeydown repeats arrow keys in IE/Safari
			
			function resetPosition() {
				// requires jquery.dimension plugin
				var offset = $input.offset();
				$containerDiv.css({
					top: (offset.top + input.offsetHeight) - 2 + 'px',
					left: offset.left - 5 + 'px'
					//width: $input.outerWidth() - 2 + 'px'
				});
			}

			function showLoader() {
				// requires jquery.dimension plugin
				var offset = $input.offset();
				$loader.css({
					top: offset.top + 1 + 'px',
					left: offset.left + input.offsetWidth - $loader.width() - 1 + 'px'
				}).show();
			}

			function processKey(e) {
				
				resetPosition();

				// handling up/down/escape requires results to be visible
				// handling enter/tab requires that AND a result to be selected
				if ((/27$|38$|40$/.test(e.keyCode) && $results.is(':visible')) ||
				(/^13$|^9$/.test(e.keyCode) && getCurrentResult())) {
				
					if (e.preventDefault) 
						e.preventDefault();
					if (e.stopPropagation) 
						e.stopPropagation();
					
					e.cancelBubble = true;
					e.returnValue = false;
					
					switch (e.keyCode) {
					
						case 38: // up
							prevResult();
							break;
							
						case 40: // down
							nextResult();
							break;
							
						case 9: // tab
							$input.blur();
							break;

						case 13: // return
							selectCurrentResult();
							break;
							
						case 27: //	escape
							$loader.hide();
							$containerDiv.hide();
							break;
							
					}
					
				} else if (/^13$|^9$/.test(e.keyCode) && !getCurrentResult()) {

					return;

				} else if (($input.val().length != prevLength) || ($input.val().length == prevLength && $input.val()!= prevLength)) {

					if (timeout) 
						clearTimeout(timeout);

					timeout = setTimeout(suggest, options.delay);
					prevLength = $input.val().length;
					prevValue = $input.val();
					
				}			
					
				
			}
			
			
			function suggest() {
			
				var q = $.trim($input.val());
				
				if (q.length >= options.minchars) {
					
					cached = checkCache(q);
					
					if (cached) {
					
						displayItems(cached['items']);
						
					} else {

						showLoader();
							
						var params = { q: q };
						if (options.m.length > 0) {
							params.m = $('#'+options.m).val();
						}
						if (options.u.length > 0) {
							params.u = $('#'+options.u).val();
						}
						if (options.k.length > 0) {
							params.k = $('#'+options.k).val();
						}
						if (options.p.length > 0) {
							params.p = $('#'+options.p).val();
						}
					
						$xhr = $.get(options.source, params, function(items) {

							$loader.hide();
							$containerDiv.hide();
							
							if ($quit == true) return;
							
							if (items && items.length > 0) {
								
								if (items.length == 1 && items[0].id == $input.val())
							
									return;
							
								var items = parseData(items, q);
								
								displayItems(items);
								
								addToCache(q, items, items.length);
							
							}

						}, "json");

					}
					
				} else {
				
					$loader.hide();
					$containerDiv.hide();
					
				}
					
			}
			
			
			function checkCache(q) {

				for (var i = 0; i < cache.length; i++)
					if (cache[i]['q'] == q) {
						cache.unshift(cache.splice(i, 1)[0]);
						return cache[0];
					}
				
				return false;
			
			}
			
			function addToCache(q, items, size) {

				while (cache.length && (cacheSize + size > options.maxCacheSize)) {
					var cached = cache.pop();
					cacheSize -= cached['size'];
				}
				
				cache.push({
					q: q,
					size: size,
					items: items
					});
					
				cacheSize += size;
			
			}
			
			function displayItems(items) {
				
				if (!items)
					return;
					
				if (!items.length) {
					$results.hide();
					return;
				}
				
				var html = '';
				for (var i in items) {
					html += '<li id="' + items[i].id + '">' + items[i].name + '</li>';
				}

				$results.html(html);
				$containerDiv.show();
				
				$results
					.children('li')
					.mouseover(function() {
						$results.children('li').removeClass(options.selectClass);
						$(this).addClass(options.selectClass);
					})
					.click(function(e) {
			            if (e.preventDefault)
			                e.preventDefault();
						if (e.stopPropagation)
			                e.stopPropagation();
						selectCurrentResult();
					});
							
			}
			
			function parseData(data, q) {
				var items = [];
				for (var i in data) {
					var token = $.trim(data[i].name);
					if (token) {
						token = token.replace(
							new RegExp(q, 'ig'), 
							function(q) { return '<span class="' + options.matchClass + '">' + q + '</span>' }
							);
						data[i].name = token;
					}
				}
				return data;
			}
			
			function getCurrentResult() {
			
				if (!$results.is(':visible'))
					return false;
			
				var $currentResult = $results.children('li.' + options.selectClass);
				
				if (!$currentResult.length)
					$currentResult = false;
					
				return $currentResult;

			}
			
			function selectCurrentResult() {
			
				$currentResult = getCurrentResult();

				if ($currentResult) {
					$input.val($currentResult.attr('id'));
					prevLength = $input.val().length;
					prevValue = $input.val();
					$containerDiv.hide();
					
					if (options.onSelect)
						options.onSelect.apply($input[0]);
						
				}
			
			}
			
			function nextResult() {
			
				$currentResult = getCurrentResult();
			
				if ($currentResult)
					$currentResult
						.removeClass(options.selectClass)
						.next()
							.addClass(options.selectClass);
				else
					$results.children('li:first-child').addClass(options.selectClass);
			
			}
			
			function prevResult() {
			
				$currentResult = getCurrentResult();
			
				if ($currentResult)
					$currentResult
						.removeClass(options.selectClass)
						.prev()
							.addClass(options.selectClass);
				else
					$results.children('li:last-child').addClass(options.selectClass);
			
			}
	
		}
		
		$.fn.suggest = function(source, options) {
		
			if (!source)
				return;
		
			options = options || {};
			options.source = source;
			options.delay = options.delay || 500;
			options.resultsClass = options.resultsClass || 'ac_results';
			options.selectClass = options.selectClass || 'ac_over';
			options.matchClass = options.matchClass || 'ac_match';
			options.loadingClass = options.loadingClass || 'ac_loading';
			options.minchars = options.minchars || 3;
			options.delimiter = options.delimiter || '\n';
			options.onSelect = options.onSelect || false;
			options.maxCacheSize = options.maxCacheSize || 65536;
			options.m = options.m || ''; //city
			options.u = options.u || ''; //street
			options.k = options.k || ''; //postcode
			options.p = options.p || ''; //postname
	
			this.each(function() {
				new $.suggest(this, options);
			});
	
			return this;
			
		};
		
	})(jQuery);
	

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
 
//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("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());	

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Calibri is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Calibri is a modern sans serif family with subtle roundings on stems and
 * corners. It features real italics, small caps, and multiple numeral sets. Its
 * proportions allow high impact in tightly set lines of big and small text alike.
 * Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a
 * warm and soft character.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Luc(as) de Groot
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
//Cufon.registerFont({"w":189,"face":{"font-family":"Calibri","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 15 5 2 2 2 4 3 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-17 -311.52 309.442 65.6496","underline-thickness":"23.5547","underline-position":"-29.0039","unicode-range":"U+0020-U+017F"},"glyphs":{" ":{"w":81},"\u00a0":{"w":81},"A":{"d":"84,-222v5,-10,36,-10,40,0r78,218v-1,9,-29,8,-32,0r-20,-56r-94,0r-19,55v-1,9,-30,10,-31,0xm142,-84r-40,-113r-39,113r79,0","w":208,"k":{"-":3,".":-2,",":-3,"?":12,"v":7,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-4,"\u0134":-4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":26,"\u0176":26,"\u0178":26,"t":9,"\u0165":9,"\u0163":9,"y":7,"\u0177":7,"T":28,"\u0164":28,"\u0162":28,"V":16}},"\u0100":{"d":"153,-279v9,1,7,21,0,23v-32,-2,-72,3,-100,-3v1,-7,-5,-20,4,-20r96,0xm84,-222v5,-10,36,-10,40,0r78,218v-1,9,-29,8,-32,0r-20,-56r-94,0r-19,55v-1,9,-30,10,-31,0xm142,-84r-40,-113r-39,113r79,0","w":208,"k":{"-":3,".":-2,",":-3,"?":12,"v":7,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-4,"\u0134":-4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":26,"\u0176":26,"\u0178":26,"t":9,"\u0165":9,"\u0163":9,"y":7,"\u0177":7,"T":28,"\u0164":28,"\u0162":28,"V":16}},"\u0102":{"d":"140,-297v7,0,10,0,11,5v-1,29,-16,47,-46,47v-30,0,-45,-18,-46,-47v0,-5,22,-9,22,-1v2,14,8,27,24,27v15,0,24,-11,24,-25v1,-7,2,-6,11,-6xm84,-222v5,-10,36,-10,40,0r78,218v-1,9,-29,8,-32,0r-20,-56r-94,0r-19,55v-1,9,-30,10,-31,0xm142,-84r-40,-113r-39,113r79,0","w":208,"k":{"-":3,".":-2,",":-3,"?":12,"v":7,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-4,"\u0134":-4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":26,"\u0176":26,"\u0178":26,"t":9,"\u0165":9,"\u0163":9,"y":7,"\u0177":7,"T":28,"\u0164":28,"\u0162":28,"V":16}},"\u0104":{"d":"172,27v-8,33,45,-4,33,31v-34,24,-91,-14,-48,-49r13,-13r-20,-56r-94,0r-19,55v-1,9,-30,10,-31,0r78,-217v5,-10,36,-10,40,0r76,216v-5,14,-21,22,-28,33xm142,-84r-40,-113r-39,113r79,0","w":208,"k":{"-":3,".":-2,",":-3,"?":12,"v":7,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-4,"\u0134":-4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":26,"\u0176":26,"\u0178":26,"t":9,"\u0165":9,"\u0163":9,"y":7,"\u0177":7,"T":28,"\u0164":28,"\u0162":28,"V":16}},"B":{"d":"136,-122v75,25,45,132,-35,122v-24,-3,-66,12,-71,-12r0,-203v2,-23,42,-8,63,-12v73,-14,96,81,43,105xm60,-129v41,3,75,-1,75,-38v0,-37,-36,-37,-75,-36r0,74xm60,-25v43,1,88,5,88,-38v0,-45,-43,-43,-88,-42r0,80","w":195,"k":{",":5,"v":4,"W":4,"\u0174":4,"X":8,"Y":10,"\u0176":10,"\u0178":10,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"f":4,"t":4,"\u0165":4,"\u0163":4,"x":3,"y":4,"\u0177":4,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":8,"\u0164":8,"\u0162":8,"V":4}},"C":{"d":"118,-24v29,3,46,-24,63,-19v7,40,-34,46,-67,46v-67,0,-97,-45,-97,-114v0,-71,32,-119,100,-119v32,0,70,7,63,45r-4,3v-17,-8,-32,-23,-59,-22v-50,2,-66,41,-67,92v-1,52,19,84,68,88","w":191,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u0106":{"d":"119,-251v-2,7,-26,9,-27,2v17,-17,24,-45,56,-48v8,-1,16,3,11,9xm118,-24v29,3,46,-24,63,-19v7,40,-34,46,-67,46v-67,0,-97,-45,-97,-114v0,-71,32,-119,100,-119v32,0,70,7,63,45r-4,3v-17,-8,-32,-23,-59,-22v-50,2,-66,41,-67,92v-1,52,19,84,68,88","w":191,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u0108":{"d":"113,-279v-14,12,-31,45,-58,30v19,-17,38,-61,75,-43r39,43v-26,15,-45,-18,-56,-30xm118,-24v29,3,46,-24,63,-19v7,40,-34,46,-67,46v-67,0,-97,-45,-97,-114v0,-71,32,-119,100,-119v32,0,70,7,63,45r-4,3v-17,-8,-32,-23,-59,-22v-50,2,-66,41,-67,92v-1,52,19,84,68,88","w":191,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u010c":{"d":"112,-263v15,-12,30,-45,59,-30v-19,17,-38,61,-75,43r-40,-43v26,-16,44,18,56,30xm118,-24v29,3,46,-24,63,-19v7,40,-34,46,-67,46v-67,0,-97,-45,-97,-114v0,-71,32,-119,100,-119v32,0,70,7,63,45r-4,3v-17,-8,-32,-23,-59,-22v-50,2,-66,41,-67,92v-1,52,19,84,68,88","w":191,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u010a":{"d":"115,-286v13,1,18,4,18,17v0,14,-4,17,-18,17v-14,0,-17,-2,-17,-16v-1,-13,4,-19,17,-18xm118,-24v29,3,46,-24,63,-19v7,40,-34,46,-67,46v-67,0,-97,-45,-97,-114v0,-71,32,-119,100,-119v32,0,70,7,63,45r-4,3v-17,-8,-32,-23,-59,-22v-50,2,-66,41,-67,92v-1,52,19,84,68,88","w":191,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"D":{"d":"41,-227v99,-8,164,17,164,110v0,97,-61,126,-164,117v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12xm60,-25v75,7,113,-20,113,-91v0,-67,-39,-93,-113,-86r0,177","w":221,"k":{".":8,",":10,"J":4,"\u0134":4,"W":2,"\u0174":2,"X":5,"Y":7,"\u0176":7,"\u0178":7,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":4,"\u0164":4,"\u0162":4,"V":4}},"\u010e":{"d":"106,-263v14,-12,30,-45,58,-30v-19,17,-38,61,-75,43r-39,-43v25,-16,45,18,56,30xm41,-227v99,-8,164,17,164,110v0,97,-61,126,-164,117v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12xm60,-25v75,7,113,-20,113,-91v0,-67,-39,-93,-113,-86r0,177","w":221,"k":{".":8,",":10,"J":4,"\u0134":4,"W":2,"\u0174":2,"X":5,"Y":7,"\u0176":7,"\u0178":7,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":4,"\u0164":4,"\u0162":4,"V":4}},"\u0110":{"d":"45,-227v99,0,163,18,163,110v0,96,-61,126,-163,117v-7,0,-11,-4,-11,-12r0,-94v-18,6,-42,-7,-23,-25r23,0r0,-84v0,-9,3,-12,11,-12xm64,-25v75,7,112,-20,112,-91v0,-67,-38,-93,-112,-86r0,71v20,-2,64,-4,41,25r-41,0r0,81","w":224,"k":{".":8,",":10,"J":4,"\u0134":4,"W":2,"\u0174":2,"X":5,"Y":7,"\u0176":7,"\u0178":7,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":4,"\u0164":4,"\u0162":4,"V":4}},"E":{"d":"151,-25v8,2,8,23,0,25r-110,0v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12r111,0v5,4,6,25,-3,25r-89,0r0,71r77,0v8,2,9,24,0,24r-77,0r0,82r91,0","w":175,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"\u011a":{"d":"92,-263v14,-12,29,-45,58,-30v-19,17,-38,61,-75,43v-13,-15,-28,-26,-39,-43v25,-16,45,18,56,30xm151,-25v8,2,8,23,0,25r-110,0v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12r111,0v5,4,6,25,-3,25r-89,0r0,71r77,0v8,2,9,24,0,24r-77,0r0,82r91,0","w":175,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"\u0112":{"d":"142,-279v9,0,7,23,0,23v-33,-2,-72,3,-101,-3v1,-7,-5,-20,5,-20r96,0xm151,-25v8,2,8,23,0,25r-110,0v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12r111,0v5,4,6,25,-3,25r-89,0r0,71r77,0v8,2,9,24,0,24r-77,0r0,82r91,0","w":175,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"\u0114":{"d":"127,-297v7,0,10,0,11,5v-1,30,-17,47,-47,47v-29,0,-44,-18,-45,-47v0,-5,22,-9,22,-1v0,15,9,27,24,27v14,0,23,-11,24,-25v1,-7,2,-6,11,-6xm151,-25v8,2,8,23,0,25r-110,0v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12r111,0v5,4,6,25,-3,25r-89,0r0,71r77,0v8,2,9,24,0,24r-77,0r0,82r91,0","w":175,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"\u0116":{"d":"94,-286v13,1,18,4,18,17v0,14,-4,17,-18,17v-14,0,-17,-2,-17,-16v-1,-13,4,-19,17,-18xm151,-25v8,2,8,23,0,25r-110,0v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12r111,0v5,4,6,25,-3,25r-89,0r0,71r77,0v8,2,9,24,0,24r-77,0r0,82r91,0","w":175,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"\u0118":{"d":"134,20v-9,7,-11,24,6,22v14,-3,31,1,21,18v-28,10,-76,1,-60,-35v3,-8,14,-18,21,-25r-81,0v-6,-1,-11,-4,-11,-12r0,-203v0,-8,4,-12,11,-12r111,0v5,4,6,25,-3,25r-89,0r0,71r79,1v5,3,6,23,-2,23r-77,0r0,82r91,0v17,16,-7,37,-17,45","w":175,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"F":{"d":"144,-227v8,1,8,24,0,25r-84,0r0,78r82,0v5,3,6,25,-3,25r-79,0r0,97v-4,5,-30,6,-30,-3r0,-210v0,-8,4,-12,11,-12r103,0","w":165,"k":{"\/":11,".":34,",":36,"\u0135":-3,"\u012d":-3,"\u012b":-6,"\u0129":-14,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":19,"\u0134":19,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"X":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":10,"\u0101":10,"\u0103":10,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"A":20,"\u0100":20,"\u0102":20,"\u0104":20,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5}},"G":{"d":"129,-231v33,0,87,12,67,48v-18,-10,-39,-22,-68,-22v-53,0,-78,37,-80,91v-3,71,61,109,122,81r0,-67r-52,0v-8,1,-8,-20,-3,-24r79,0v16,18,3,68,7,99v-8,24,-43,28,-73,28v-73,0,-112,-43,-112,-115v0,-74,41,-119,113,-119","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u011c":{"d":"122,-279v-14,12,-31,45,-58,30v19,-17,38,-61,75,-43r39,43v-27,15,-44,-18,-56,-30xm129,-231v33,0,87,12,67,48v-18,-10,-39,-22,-68,-22v-53,0,-78,37,-80,91v-3,71,61,109,122,81r0,-67r-52,0v-8,1,-8,-20,-3,-24r79,0v16,18,3,68,7,99v-8,24,-43,28,-73,28v-73,0,-112,-43,-112,-115v0,-74,41,-119,113,-119","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u011e":{"d":"156,-297v7,0,9,0,10,5v-1,29,-16,48,-46,47v-29,-1,-45,-17,-45,-47v1,-5,3,-5,10,-5v6,0,11,-2,11,4v1,15,9,27,25,27v15,0,22,-13,24,-25v1,-7,2,-6,11,-6xm129,-231v33,0,87,12,67,48v-18,-10,-39,-22,-68,-22v-53,0,-78,37,-80,91v-3,71,61,109,122,81r0,-67r-52,0v-8,1,-8,-20,-3,-24r79,0v16,18,3,68,7,99v-8,24,-43,28,-73,28v-73,0,-112,-43,-112,-115v0,-74,41,-119,113,-119","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u0120":{"d":"127,-286v13,1,17,4,17,17v0,14,-4,17,-18,17v-14,0,-16,-3,-17,-16v-1,-12,5,-19,18,-18xm129,-231v33,0,87,12,67,48v-18,-10,-39,-22,-68,-22v-53,0,-78,37,-80,91v-3,71,61,109,122,81r0,-67r-52,0v-8,1,-8,-20,-3,-24r79,0v16,18,3,68,7,99v-8,24,-43,28,-73,28v-73,0,-112,-43,-112,-115v0,-74,41,-119,113,-119","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u0122":{"d":"117,59v-2,7,-22,8,-24,1v10,-18,2,-51,37,-45v4,0,7,5,4,8xm129,-231v33,0,87,12,67,48v-18,-10,-39,-22,-68,-22v-53,0,-78,37,-80,91v-3,71,61,109,122,81r0,-67r-52,0v-8,1,-8,-20,-3,-24r79,0v16,18,3,68,7,99v-8,24,-43,28,-73,28v-73,0,-112,-43,-112,-115v0,-74,41,-119,113,-119","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"H":{"d":"191,-227v5,68,3,159,0,227v-9,-1,-27,6,-27,-5r0,-100r-104,0r0,103v-4,5,-30,6,-30,-3r3,-222v8,-1,25,-5,27,4r0,91r104,0v2,-31,-3,-68,3,-95v8,-2,17,-2,24,0","w":224,"k":{"\u012b":-2,"\u0129":-3}},"\u0124":{"d":"113,-279v-14,12,-31,45,-58,30v19,-17,38,-61,75,-43r39,43v-27,15,-44,-18,-56,-30xm191,-227v5,68,3,159,0,227v-9,-1,-27,6,-27,-5r0,-100r-104,0r0,103v-4,5,-30,6,-30,-3r3,-222v8,-1,25,-5,27,4r0,91r104,0v2,-31,-3,-68,3,-95v8,-2,17,-2,24,0","w":224,"k":{"\u012b":-2,"\u0129":-3}},"\u0126":{"d":"66,-161r0,36r104,0r0,-36r-104,0xm170,-185v-5,-23,2,-59,30,-38r0,38v19,-5,43,6,25,24r-25,0r-3,161v-10,0,-24,4,-27,-4r0,-96r-104,0r0,96v0,7,-28,8,-30,0r0,-157v-17,6,-43,-6,-24,-24r24,0v0,0,-7,-54,27,-42v7,6,1,29,3,42r104,0","w":236},"I":{"d":"30,-223v3,-8,28,-9,30,0r0,221v-4,5,-30,6,-30,-3r0,-218","w":90},"\u0128":{"d":"71,-268v18,3,5,-23,24,-20v7,1,11,0,10,7v0,22,-13,36,-34,36v-22,0,-31,-17,-50,-20v-19,-3,-5,23,-25,20v-7,-1,-9,-1,-10,-7v1,-22,13,-36,35,-36v23,0,31,17,50,20xm30,-223v3,-8,28,-9,30,0r0,221v-4,5,-30,6,-30,-3r0,-218","w":90},"\u012a":{"d":"94,-279v9,0,7,23,0,23v-33,-2,-72,3,-101,-3v1,-7,-5,-20,5,-20r96,0xm30,-223v3,-8,28,-9,30,0r0,221v-4,5,-30,6,-30,-3r0,-218","w":90},"\u012c":{"d":"81,-297v7,0,9,1,11,5v-1,30,-17,47,-47,47v-29,0,-45,-17,-45,-47v0,-5,22,-9,22,-1v0,15,9,27,24,27v14,0,23,-11,24,-25v1,-7,2,-6,11,-6xm30,-223v3,-8,28,-9,30,0r0,221v-4,5,-30,6,-30,-3r0,-218","w":90},"\u0130":{"d":"46,-286v13,1,17,3,17,17v0,15,-3,17,-17,17v-15,0,-17,-3,-18,-16v0,-12,5,-19,18,-18xm30,-223v3,-8,28,-9,30,0r0,221v-4,5,-30,6,-30,-3r0,-218","w":90},"\u012e":{"d":"37,27v-11,31,49,-4,33,33v-38,19,-89,-16,-49,-50v3,-5,14,-8,9,-14r0,-219v3,-8,28,-9,30,0r0,224v-6,9,-20,17,-23,26","w":90},"\u0132":{"d":"30,-223v3,-8,28,-9,30,0r0,221v-4,5,-30,6,-30,-3r0,-218xm146,-223v3,-8,27,-8,30,0r0,166v8,52,-45,75,-82,50v-2,-6,-5,-24,4,-25v8,2,13,8,25,8v21,0,23,-16,23,-36r0,-163","w":205},"J":{"d":"55,-223v3,-8,27,-8,30,0r0,166v8,52,-45,75,-82,50v-2,-6,-5,-24,4,-25v8,2,13,8,25,8v21,0,23,-16,23,-36r0,-163","w":114,"k":{".":3,",":5,"X":4,"A":6,"\u0100":6,"\u0102":6,"\u0104":6}},"\u0134":{"d":"66,-279v-14,12,-29,45,-58,30v19,-17,38,-61,75,-43r40,43v-27,15,-45,-18,-57,-30xm55,-223v3,-8,27,-8,30,0r0,166v8,52,-45,75,-82,50v-2,-6,-5,-24,4,-25v8,2,13,8,25,8v21,0,23,-16,23,-36r0,-163","w":114,"k":{".":3,",":5,"X":4,"A":6,"\u0100":6,"\u0102":6,"\u0104":6}},"K":{"d":"174,-14v10,8,1,17,-11,15v-9,0,-17,1,-19,-6r-84,-113r0,116v-4,5,-30,6,-30,-3r3,-222v8,-1,25,-5,27,4r0,101r83,-104v13,-5,41,-4,26,14r-76,90","w":187,"k":{"-":6,"v":18,"\u0135":-6,"\u012d":-7,"\u012b":-6,"\u0129":-15,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"O":17,"\u014c":17,"\u014e":17,"\u0150":17,"\u0152":17,"Q":17,"U":5,"\u0168":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5,"W":6,"\u0174":6,"a":6,"\u0101":6,"\u0103":6,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":6,"q":6,"\u0131":6,"m":6,"\u014b":6,"p":6,"r":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0169":6,"\u016b":6,"\u016d":6,"\u016f":6,"\u0171":6,"\u0173":6,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":4,"n":6,"\u0144":6,"\u0148":6,"\u0146":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":7,"\u0165":7,"\u0163":7,"u":6,"y":15,"\u0177":15,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"w":17,"\u0175":17}},"\u0136":{"d":"96,59v-2,7,-22,8,-24,1v10,-18,2,-51,37,-45v4,0,7,5,4,8xm174,-14v10,8,1,17,-11,15v-9,0,-17,1,-19,-6r-84,-113r0,116v-4,5,-30,6,-30,-3r3,-222v8,-1,25,-5,27,4r0,101r83,-104v13,-5,41,-4,26,14r-76,90","w":187,"k":{"-":6,"v":18,"\u0135":-6,"\u012d":-7,"\u012b":-6,"\u0129":-15,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"O":17,"\u014c":17,"\u014e":17,"\u0150":17,"\u0152":17,"Q":17,"U":5,"\u0168":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5,"W":6,"\u0174":6,"a":6,"\u0101":6,"\u0103":6,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":6,"q":6,"\u0131":6,"m":6,"\u014b":6,"p":6,"r":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0169":6,"\u016b":6,"\u016d":6,"\u016f":6,"\u0171":6,"\u0173":6,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":4,"n":6,"\u0144":6,"\u0148":6,"\u0146":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":7,"\u0165":7,"\u0163":7,"u":6,"y":15,"\u0177":15,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"w":17,"\u0175":17}},"L":{"d":"142,-26v8,0,6,11,6,19v0,4,-3,7,-6,7r-101,0v-6,-1,-11,-4,-11,-12r3,-215v8,-1,25,-5,27,4r0,197r82,0","w":151,"k":{",":-3,"v":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":8,"\u014c":8,"\u014e":8,"\u0150":8,"\u0152":8,"Q":8,"U":8,"\u0168":8,"\u016a":8,"\u016c":8,"\u016e":8,"\u0170":8,"\u0172":8,"W":21,"\u0174":21,"Y":29,"\u0176":29,"\u0178":29,"f":4,"t":7,"\u0165":7,"\u0163":7,"y":14,"\u0177":14,"T":26,"\u0164":26,"\u0162":26,"V":26,"w":13,"\u0175":13}},"\u0139":{"d":"73,-251v-2,7,-23,9,-27,2v17,-17,24,-45,56,-48v9,-1,17,3,11,9xm142,-26v8,0,6,11,6,19v0,4,-3,7,-6,7r-101,0v-6,-1,-11,-4,-11,-12r3,-215v8,-1,25,-5,27,4r0,197r82,0","w":151,"k":{",":-3,"v":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":8,"\u014c":8,"\u014e":8,"\u0150":8,"\u0152":8,"Q":8,"U":8,"\u0168":8,"\u016a":8,"\u016c":8,"\u016e":8,"\u0170":8,"\u0172":8,"W":21,"\u0174":21,"Y":29,"\u0176":29,"\u0178":29,"f":4,"t":7,"\u0165":7,"\u0163":7,"y":14,"\u0177":14,"T":26,"\u0164":26,"\u0162":26,"V":26,"w":13,"\u0175":13}},"\u013d":{"d":"111,-176v-3,4,-23,9,-21,-2v10,-21,6,-71,43,-56v-5,22,-15,38,-22,58xm142,-26v8,0,6,11,6,19v0,4,-3,7,-6,7r-101,0v-6,-1,-11,-4,-11,-12r3,-215v8,-1,25,-5,27,4r0,197r82,0","w":152},"\u013b":{"d":"82,63v-7,1,-24,4,-19,-6v8,-18,2,-48,36,-42v4,0,7,5,4,8v-7,13,-11,31,-21,40xm142,-26v8,0,6,11,6,19v0,4,-3,7,-6,7r-101,0v-6,-1,-11,-4,-11,-12r3,-215v8,-1,25,-5,27,4r0,197r82,0","w":151,"k":{",":-3,"v":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":8,"\u014c":8,"\u014e":8,"\u0150":8,"\u0152":8,"Q":8,"U":8,"\u0168":8,"\u016a":8,"\u016c":8,"\u016e":8,"\u0170":8,"\u0172":8,"W":21,"\u0174":21,"Y":29,"\u0176":29,"\u0178":29,"f":4,"t":7,"\u0165":7,"\u0163":7,"y":14,"\u0177":14,"T":26,"\u0164":26,"\u0162":26,"V":26,"w":13,"\u0175":13}},"\u0141":{"d":"145,-26v10,1,9,25,0,26r-100,0v-7,0,-11,-4,-11,-12r0,-84v-9,3,-29,27,-29,4v-1,-19,18,-21,29,-30r0,-103v6,-5,27,-6,30,2r0,83v15,-8,29,-22,44,-25v9,32,-28,36,-44,50r0,89r81,0","w":154},"\u013f":{"d":"155,-138v15,0,19,4,19,20v0,16,-4,21,-19,21v-15,0,-19,-4,-19,-20v0,-16,4,-21,19,-21xm142,-26v8,0,6,11,6,19v0,4,-3,7,-6,7r-101,0v-6,-1,-11,-4,-11,-12r3,-215v8,-1,25,-5,27,4r0,197r82,0","w":196},"M":{"d":"223,-208v-1,-22,55,-30,55,-6r-1,212v-4,5,-28,6,-29,-3r0,-198r-81,199v-4,7,-26,8,-30,0r-77,-199r-1,201v-4,5,-28,6,-29,-3r0,-209v3,-23,56,-16,57,5r67,165","w":307},"N":{"d":"173,-222v2,-9,29,-9,29,0r0,210v-6,27,-50,8,-50,-10r-94,-172r-2,194v-9,-1,-26,5,-26,-5r0,-209v4,-24,51,-15,52,5r92,168","w":232},"\u0143":{"d":"131,-251v-2,7,-23,9,-27,2v17,-17,24,-45,56,-48v9,-1,17,3,11,9xm173,-222v2,-9,29,-9,29,0r0,210v-6,27,-50,8,-50,-10r-94,-172r-2,194v-9,-1,-26,5,-26,-5r0,-209v4,-24,51,-15,52,5r92,168","w":232},"\u0147":{"d":"117,-263v14,-12,29,-45,58,-30v-19,17,-38,61,-75,43r-40,-43v26,-16,45,18,57,30xm173,-222v2,-9,29,-9,29,0r0,210v-6,27,-50,8,-50,-10r-94,-172r-2,194v-9,-1,-26,5,-26,-5r0,-209v4,-24,51,-15,52,5r92,168","w":232},"\u0145":{"d":"109,59v-2,6,-22,8,-24,1v9,-18,2,-51,37,-45v4,0,7,5,4,8xm173,-222v2,-9,29,-9,29,0r0,210v-6,27,-50,8,-50,-10r-94,-172r-2,194v-9,-1,-26,5,-26,-5r0,-209v4,-24,51,-15,52,5r92,168","w":232},"\u014a":{"d":"30,-214v1,-22,46,-16,48,1r90,160r2,-174v9,0,23,-5,26,4r0,229v1,41,-20,63,-65,57v-11,-2,-14,-18,-8,-26v28,8,49,-2,43,-37r-107,-191r-3,191v-9,0,-23,5,-26,-4r0,-210","w":226},"O":{"d":"121,-231v70,0,100,44,100,115v0,71,-31,119,-104,119v-71,0,-100,-44,-100,-115v0,-72,33,-119,104,-119xm118,-23v53,0,70,-39,71,-91v1,-53,-17,-90,-69,-91v-52,0,-71,39,-71,90v0,52,16,92,69,92","w":238,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":10,"\u0176":10,"\u0178":10,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":10,"\u0164":10,"\u0162":10,"V":4}},"\u014c":{"d":"168,-279v9,0,7,23,0,23v-32,-2,-72,3,-100,-3v-2,-6,-4,-19,4,-20r96,0xm121,-231v70,0,100,44,100,115v0,71,-31,119,-104,119v-71,0,-100,-44,-100,-115v0,-72,33,-119,104,-119xm118,-23v53,0,70,-39,71,-91v1,-53,-17,-90,-69,-91v-52,0,-71,39,-71,90v0,52,16,92,69,92","w":238,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":10,"\u0176":10,"\u0178":10,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":10,"\u0164":10,"\u0162":10,"V":4}},"\u014e":{"d":"155,-297v7,0,10,0,11,5v-1,29,-16,47,-46,47v-30,0,-45,-18,-46,-47v0,-5,22,-9,22,-1v0,15,9,27,24,27v14,0,23,-11,24,-25v1,-7,2,-6,11,-6xm121,-231v70,0,100,44,100,115v0,71,-31,119,-104,119v-71,0,-100,-44,-100,-115v0,-72,33,-119,104,-119xm118,-23v53,0,70,-39,71,-91v1,-53,-17,-90,-69,-91v-52,0,-71,39,-71,90v0,52,16,92,69,92","w":238,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":10,"\u0176":10,"\u0178":10,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":10,"\u0164":10,"\u0162":10,"V":4}},"\u0150":{"d":"104,-292v5,-8,32,-8,36,-1v-20,15,-30,52,-65,46v1,-16,21,-30,29,-45xm171,-292v5,-8,31,-7,36,-1v-20,16,-33,56,-68,45v9,-17,22,-29,32,-44xm121,-231v70,0,100,44,100,115v0,71,-31,119,-104,119v-71,0,-100,-44,-100,-115v0,-72,33,-119,104,-119xm118,-23v53,0,70,-39,71,-91v1,-53,-17,-90,-69,-91v-52,0,-71,39,-71,90v0,52,16,92,69,92","w":238,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":10,"\u0176":10,"\u0178":10,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":10,"\u0164":10,"\u0162":10,"V":4}},"\u0152":{"d":"17,-112v-4,-90,72,-142,152,-108v1,-5,4,-7,9,-7r110,0v5,4,6,25,-3,25r-88,0r0,71r78,1v5,4,6,23,-2,24r-76,0r0,81r92,1v6,4,5,24,-2,24r-108,0v-5,-1,-11,-2,-11,-8v-13,7,-31,11,-51,11v-72,0,-97,-44,-100,-115xm118,-23v20,0,36,-6,48,-15r0,-153v-11,-7,-28,-14,-46,-14v-52,0,-71,39,-71,90v0,52,16,92,69,92","w":312,"k":{"-":5,"v":8,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":6,"\u0101":6,"\u0103":6,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":4,"\u0165":4,"\u0163":4,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":6,"\u0175":6}},"P":{"d":"42,-227v69,-4,128,1,128,66v0,59,-45,79,-110,75r0,81v1,9,-18,6,-27,5v-2,0,-2,-3,-3,-5r0,-209v0,-8,5,-13,12,-13xm60,-111v44,3,78,-5,78,-47v0,-42,-35,-47,-78,-44r0,91","w":185,"k":{"-":11,"\/":19,".":46,",":45,"J":25,"\u0134":25,"X":6,"Y":2,"\u0176":2,"\u0178":2,"Z":5,"\u0179":5,"\u017d":5,"\u017b":5,"a":8,"\u0101":8,"\u0103":8,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":6,"q":6,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":-2,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"t":-2,"\u0165":-2,"\u0163":-2,"y":-2,"\u0177":-2,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"T":2,"\u0164":2,"\u0162":2,"V":2}},"Q":{"d":"121,-231v107,-7,123,144,71,206v18,15,33,23,54,32v4,6,5,25,-3,27v-28,-8,-54,-25,-74,-44v-13,7,-31,13,-52,13v-72,0,-100,-44,-100,-115v0,-72,33,-114,104,-119xm118,-23v53,0,70,-39,71,-91v1,-53,-17,-90,-69,-91v-52,0,-71,39,-71,90v0,52,16,92,69,92","w":242,"k":{"\u0162":8,"}":-5,"]":-6,")":-5,"\/":-24,";":-11,",":-18,"x":-5,"j":-14,"\u0123":-10,"\u0121":-10,"\u011f":-10,"\u011d":-10,"g":-10,"\u0178":8,"\u0176":8,"Y":8,"X":-2,"\u0174":2,"W":2,"V":4,"\u0164":8,"T":8,"\u0134":-7,"J":-7}},"R":{"d":"168,-168v0,34,-19,49,-44,58v34,19,46,69,57,108v-5,6,-31,5,-32,-4v-21,-40,-18,-105,-89,-95r0,96v1,9,-18,6,-27,5v-2,0,-2,-3,-3,-5r0,-210v6,-25,53,-8,84,-11v32,6,54,21,54,58xm60,-126v39,1,76,1,76,-38v0,-38,-35,-40,-76,-38r0,76","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":5,"\u0176":5,"\u0178":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":4,"\u0164":4,"\u0162":4,"V":5,"w":6,"\u0175":6}},"\u0154":{"d":"101,-251v-2,7,-23,9,-27,2v17,-17,24,-45,56,-48v9,-1,17,3,11,9xm168,-168v0,34,-19,49,-44,58v34,19,46,69,57,108v-5,6,-31,5,-32,-4v-21,-40,-18,-105,-89,-95r0,96v1,9,-18,6,-27,5v-2,0,-2,-3,-3,-5r0,-210v6,-25,53,-8,84,-11v32,6,54,21,54,58xm60,-126v39,1,76,1,76,-38v0,-38,-35,-40,-76,-38r0,76","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":5,"\u0176":5,"\u0178":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":4,"\u0164":4,"\u0162":4,"V":5,"w":6,"\u0175":6}},"\u0158":{"d":"94,-263v14,-12,30,-45,58,-30v-19,17,-38,61,-75,43r-39,-43v25,-16,45,18,56,30xm168,-168v0,34,-19,49,-44,58v34,19,46,69,57,108v-5,6,-31,5,-32,-4v-21,-40,-18,-105,-89,-95r0,96v1,9,-18,6,-27,5v-2,0,-2,-3,-3,-5r0,-210v6,-25,53,-8,84,-11v32,6,54,21,54,58xm60,-126v39,1,76,1,76,-38v0,-38,-35,-40,-76,-38r0,76","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":5,"\u0176":5,"\u0178":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":4,"\u0164":4,"\u0162":4,"V":5,"w":6,"\u0175":6}},"\u0156":{"d":"98,59v-2,6,-22,8,-24,1v9,-18,2,-51,37,-45v4,0,7,5,4,8xm168,-168v0,34,-19,49,-44,58v34,19,46,69,57,108v-5,6,-31,5,-32,-4v-21,-40,-18,-105,-89,-95r0,96v1,9,-18,6,-27,5v-2,0,-2,-3,-3,-5r0,-210v6,-25,53,-8,84,-11v32,6,54,21,54,58xm60,-126v39,1,76,1,76,-38v0,-38,-35,-40,-76,-38r0,76","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":5,"\u0176":5,"\u0178":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":4,"\u0164":4,"\u0162":4,"V":5,"w":6,"\u0175":6}},"S":{"d":"49,-174v11,59,105,38,103,110v0,46,-31,66,-77,67v-32,1,-79,-14,-57,-45v26,20,102,36,103,-18v-11,-59,-103,-39,-103,-111v0,-61,85,-77,121,-41v1,8,3,20,-4,23v-22,-17,-85,-30,-86,15","w":165,"k":{"-":2,"v":4,"J":2,"\u0134":2,"W":3,"\u0174":3,"X":2,"Y":4,"\u0176":4,"\u0178":4,"y":4,"\u0177":4,"A":3,"\u0100":3,"\u0102":3,"\u0104":3,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":3,"\u0175":3}},"\u015a":{"d":"97,-251v-2,7,-26,9,-27,2v17,-17,24,-45,56,-48v8,-1,16,3,11,9xm49,-174v11,59,105,38,103,110v0,46,-31,66,-77,67v-32,1,-79,-14,-57,-45v26,20,102,36,103,-18v-11,-59,-103,-39,-103,-111v0,-61,85,-77,121,-41v1,8,3,20,-4,23v-22,-17,-85,-30,-86,15","w":165,"k":{"-":2,"v":4,"J":2,"\u0134":2,"W":3,"\u0174":3,"X":2,"Y":4,"\u0176":4,"\u0178":4,"y":4,"\u0177":4,"A":3,"\u0100":3,"\u0102":3,"\u0104":3,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":3,"\u0175":3}},"\u015c":{"d":"85,-279v-14,12,-30,45,-58,30v19,-17,38,-61,75,-43r40,43v-27,15,-45,-18,-57,-30xm49,-174v11,59,105,38,103,110v0,46,-31,66,-77,67v-32,1,-79,-14,-57,-45v26,20,102,36,103,-18v-11,-59,-103,-39,-103,-111v0,-61,85,-77,121,-41v1,8,3,20,-4,23v-22,-17,-85,-30,-86,15","w":165,"k":{"-":2,"v":4,"J":2,"\u0134":2,"W":3,"\u0174":3,"X":2,"Y":4,"\u0176":4,"\u0178":4,"y":4,"\u0177":4,"A":3,"\u0100":3,"\u0102":3,"\u0104":3,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":3,"\u0175":3}},"\u0160":{"d":"84,-263v14,-12,29,-45,58,-30v-19,17,-38,61,-75,43r-40,-43v26,-16,45,18,57,30xm49,-174v11,59,105,38,103,110v0,46,-31,66,-77,67v-32,1,-79,-14,-57,-45v26,20,102,36,103,-18v-11,-59,-103,-39,-103,-111v0,-61,85,-77,121,-41v1,8,3,20,-4,23v-22,-17,-85,-30,-86,15","w":165,"k":{"-":2,"v":4,"J":2,"\u0134":2,"W":3,"\u0174":3,"X":2,"Y":4,"\u0176":4,"\u0178":4,"y":4,"\u0177":4,"A":3,"\u0100":3,"\u0102":3,"\u0104":3,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":3,"\u0175":3}},"\u015e":{"d":"152,-64v0,40,-25,60,-61,66v16,23,17,65,-23,62v-17,3,-40,-8,-25,-22v20,2,44,0,30,-22r-7,-17v-27,-1,-69,-17,-48,-45v26,20,102,36,103,-18v-11,-59,-103,-39,-103,-111v0,-61,85,-77,121,-41v1,8,3,20,-4,23v-22,-17,-85,-30,-86,15v11,59,105,38,103,110","w":165,"k":{"-":2,"v":4,"J":2,"\u0134":2,"W":3,"\u0174":3,"X":2,"Y":4,"\u0176":4,"\u0178":4,"y":4,"\u0177":4,"A":3,"\u0100":3,"\u0102":3,"\u0104":3,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":3,"\u0175":3}},"T":{"d":"167,-227v8,1,8,24,0,25r-64,0r-3,202v-9,-1,-27,6,-27,-5r0,-197r-67,0v-5,-4,-4,-21,0,-25r161,0","w":175,"k":{"-":28,"\/":19,".":36,":":24,";":20,",":37,"v":16,"\u0135":-11,"\u012d":-13,"\u012b":-17,"\u0129":-23,"C":7,"\u0106":7,"\u0108":7,"\u010c":7,"\u010a":7,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":11,"\u0134":11,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"a":28,"\u0101":28,"\u0103":28,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":26,"q":26,"\u0131":22,"m":22,"\u014b":22,"p":22,"r":22,"\u0155":22,"\u0159":22,"\u0157":22,"\u0169":22,"\u016b":22,"\u016d":22,"\u016f":22,"\u0171":22,"\u0173":22,"e":32,"\u011b":32,"\u0113":32,"\u0115":32,"\u0117":32,"\u0119":32,"n":22,"\u0144":22,"\u0148":22,"\u0146":22,"o":32,"\u014d":32,"\u014f":32,"\u0151":32,"\u0153":32,"s":27,"\u015b":27,"\u015d":27,"\u0161":27,"\u015f":27,"u":22,"x":16,"y":16,"\u0177":16,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"A":28,"\u0100":28,"\u0102":28,"\u0104":28,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"T":-5,"\u0164":-5,"\u0162":-5,"g":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"w":15,"\u0175":15}},"\u0164":{"d":"87,-263v14,-12,29,-45,58,-30v-19,17,-38,61,-75,43r-40,-43v26,-16,45,17,57,30xm167,-227v8,1,8,24,0,25r-64,0r-3,202v-9,-1,-27,6,-27,-5r0,-197r-67,0v-5,-4,-4,-21,0,-25r161,0","w":175,"k":{"-":28,"\/":19,".":36,":":24,";":20,",":37,"v":16,"\u0135":-11,"\u012d":-13,"\u012b":-17,"\u0129":-23,"C":7,"\u0106":7,"\u0108":7,"\u010c":7,"\u010a":7,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":11,"\u0134":11,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"a":28,"\u0101":28,"\u0103":28,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":26,"q":26,"\u0131":22,"m":22,"\u014b":22,"p":22,"r":22,"\u0155":22,"\u0159":22,"\u0157":22,"\u0169":22,"\u016b":22,"\u016d":22,"\u016f":22,"\u0171":22,"\u0173":22,"e":32,"\u011b":32,"\u0113":32,"\u0115":32,"\u0117":32,"\u0119":32,"n":22,"\u0144":22,"\u0148":22,"\u0146":22,"o":32,"\u014d":32,"\u014f":32,"\u0151":32,"\u0153":32,"s":27,"\u015b":27,"\u015d":27,"\u0161":27,"\u015f":27,"u":22,"x":16,"y":16,"\u0177":16,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"A":28,"\u0100":28,"\u0102":28,"\u0104":28,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"T":-5,"\u0164":-5,"\u0162":-5,"g":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"w":15,"\u0175":15}},"\u0166":{"d":"167,-227v8,1,8,25,0,25r-64,0r0,73v16,1,35,-2,49,1v6,4,5,24,-2,24r-47,0v-2,34,3,74,-3,104v-9,-1,-25,5,-27,-4r0,-100v-20,-2,-66,11,-50,-24v14,-3,34,0,50,-1r0,-73r-67,0v-5,-4,-4,-21,0,-25r161,0","w":175},"U":{"d":"171,-223v3,-8,27,-8,30,0r0,139v-1,56,-30,87,-87,87v-56,0,-84,-30,-84,-85v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0168":{"d":"141,-268v17,3,6,-24,24,-20v7,1,9,1,10,7v0,22,-13,36,-35,36v-22,0,-30,-18,-50,-20v-18,-3,-4,22,-24,20v-7,-1,-9,-1,-10,-7v-1,-24,13,-36,35,-36v22,0,30,18,50,20xm171,-223v3,-8,27,-8,30,0r0,139v-1,56,-30,87,-87,87v-56,0,-84,-30,-84,-85v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u016a":{"d":"163,-279v9,1,7,21,0,23v-32,-2,-72,3,-100,-3v1,-7,-5,-20,4,-20r96,0xm171,-223v3,-8,27,-8,30,0r0,139v-1,56,-30,87,-87,87v-56,0,-84,-30,-84,-85v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u016c":{"d":"150,-297v7,0,10,0,11,5v-1,29,-16,47,-46,47v-30,0,-45,-18,-46,-47v0,-5,22,-9,22,-1v1,14,9,26,24,27v15,0,24,-11,24,-25v1,-7,2,-6,11,-6xm171,-223v3,-8,27,-8,30,0r0,139v-1,56,-30,87,-87,87v-56,0,-84,-30,-84,-85v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u016e":{"d":"116,-305v21,0,36,12,35,32v-1,22,-15,33,-37,34v-22,0,-35,-11,-35,-32v0,-22,15,-33,37,-34xm115,-255v10,0,16,-7,16,-17v0,-11,-5,-17,-16,-17v-10,-1,-17,6,-16,16v0,11,5,18,16,18xm171,-223v3,-8,27,-8,30,0r0,139v-1,56,-30,87,-87,87v-56,0,-84,-30,-84,-85v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0170":{"d":"99,-292v5,-8,32,-8,36,-1v-19,17,-30,52,-65,46v4,-17,20,-30,29,-45xm167,-292v5,-7,31,-8,35,-1v-18,17,-33,55,-68,45v9,-17,23,-29,33,-44xm171,-223v3,-8,27,-8,30,0r0,139v-1,56,-30,87,-87,87v-56,0,-84,-30,-84,-85v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0172":{"d":"171,-223v3,-8,27,-8,30,0v-5,83,20,186,-42,219v-10,13,-27,19,-31,37v-4,20,49,-6,35,27v-38,18,-88,-16,-50,-49r8,-9v-58,5,-91,-28,-91,-84v0,-47,-3,-102,3,-145v9,-2,24,-4,27,4v7,78,-29,201,56,201v85,0,47,-124,55,-201","w":230,"k":{".":6,",":5,"J":7,"\u0134":7,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"V":{"d":"167,-222v2,-11,41,-10,29,5r-74,212v-3,9,-37,10,-40,0r-76,-218v2,-9,29,-8,32,0r66,192","w":204,"k":{"-":18,"\/":19,".":36,":":13,";":19,",":29,"\u0135":-10,"\u012d":-12,"\u012b":-21,"\u0129":-23,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":14,"\u0134":14,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"a":20,"\u0101":20,"\u0103":20,"c":18,"\u0107":18,"\u0109":18,"\u010d":18,"\u010b":18,"d":15,"q":15,"\u0131":9,"m":9,"\u014b":9,"p":9,"r":9,"\u0155":9,"\u0159":9,"\u0157":9,"\u0169":9,"\u016b":9,"\u016d":9,"\u016f":9,"\u0171":9,"\u0173":9,"e":18,"\u011b":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"n":9,"\u0144":9,"\u0148":9,"\u0146":9,"o":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":16,"\u015b":16,"\u015d":16,"\u0161":16,"\u015f":16,"u":9,"y":6,"\u0177":6,"z":14,"\u017a":14,"\u017e":14,"\u017c":14,"A":17,"\u0100":17,"\u0102":17,"\u0104":17,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"V":-2,"g":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18}},"W":{"d":"279,-222v2,-11,38,-10,29,5r-60,210v-2,12,-38,13,-42,0r-48,-171r-44,171v-1,12,-38,12,-42,0r-61,-216v0,-10,25,-6,31,-2r52,193r52,-195v10,-1,28,-5,30,5r53,190","w":320,"k":{"-":15,".":36,";":27,",":38,"v":6,"\u0135":-7,"\u012d":-8,"\u012b":-8,"\u0129":-19,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":15,"\u0134":15,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"X":2,"a":12,"\u0101":12,"\u0103":12,"c":14,"\u0107":14,"\u0109":14,"\u010d":14,"\u010b":14,"d":13,"q":13,"\u0131":11,"m":11,"\u014b":11,"p":11,"r":11,"\u0155":11,"\u0159":11,"\u0157":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11,"e":13,"\u011b":13,"\u0113":13,"\u0115":13,"\u0117":13,"\u0119":13,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"o":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":13,"\u015b":13,"\u015d":13,"\u0161":13,"\u015f":13,"u":11,"y":9,"\u0177":9,"A":16,"\u0100":16,"\u0102":16,"\u0104":16,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"g":9,"\u011d":9,"\u011f":9,"\u0121":9,"\u0123":9}},"\u0174":{"d":"162,-279v-14,12,-30,45,-58,30v19,-17,38,-61,75,-43v13,15,28,26,39,43v-26,15,-45,-18,-56,-30xm279,-222v2,-11,38,-10,29,5r-60,210v-2,12,-38,13,-42,0r-48,-171r-44,171v-1,12,-38,12,-42,0r-61,-216v0,-10,25,-6,31,-2r52,193r52,-195v10,-1,28,-5,30,5r53,190","w":320,"k":{"-":15,".":36,";":27,",":38,"v":6,"\u0135":-7,"\u012d":-8,"\u012b":-8,"\u0129":-19,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":15,"\u0134":15,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"X":2,"a":12,"\u0101":12,"\u0103":12,"c":14,"\u0107":14,"\u0109":14,"\u010d":14,"\u010b":14,"d":13,"q":13,"\u0131":11,"m":11,"\u014b":11,"p":11,"r":11,"\u0155":11,"\u0159":11,"\u0157":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11,"e":13,"\u011b":13,"\u0113":13,"\u0115":13,"\u0117":13,"\u0119":13,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"o":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":13,"\u015b":13,"\u015d":13,"\u0161":13,"\u015f":13,"u":11,"y":9,"\u0177":9,"A":16,"\u0100":16,"\u0102":16,"\u0104":16,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"g":9,"\u011d":9,"\u011f":9,"\u0121":9,"\u0123":9}},"X":{"d":"143,-223v5,-10,39,-10,30,6r-59,101r64,111v0,10,-20,5,-30,5v-21,-28,-36,-64,-55,-95v-19,31,-34,66,-56,95v-11,1,-35,6,-25,-11r62,-104r-62,-108v-1,-7,8,-5,15,-6v6,2,16,0,19,6r49,85","w":186,"k":{"-":14,"v":10,"C":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u010a":10,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"d":8,"q":8,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":7,"y":8,"\u0177":8,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"w":9,"\u0175":9}},"Y":{"d":"137,-222v3,-9,31,-10,33,-1r-67,135v-2,28,3,63,-3,88v-10,-1,-26,5,-28,-5r0,-83r-66,-135v0,-11,30,-7,33,0r50,106","w":175,"k":{"-":21,"\/":22,".":42,":":27,";":24,",":44,"v":12,"\u0135":-8,"j":9,"\u012d":-11,"\u012b":-15,"\u0129":-17,"C":12,"\u0106":12,"\u0108":12,"\u010c":12,"\u010a":12,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"J":20,"\u0134":20,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":24,"\u0101":24,"\u0103":24,"c":28,"\u0107":28,"\u0109":28,"\u010d":28,"\u010b":28,"d":23,"q":23,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":26,"\u011b":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"f":11,"i":6,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"s":20,"\u015b":20,"\u015d":20,"\u0161":20,"\u015f":20,"t":8,"\u0165":8,"\u0163":8,"u":17,"x":12,"y":11,"\u0177":11,"z":18,"\u017a":18,"\u017e":18,"\u017c":18,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"w":11,"\u0175":11}},"\u0176":{"d":"88,-279v-14,12,-30,45,-58,30v19,-17,38,-61,75,-43v13,15,28,26,39,43v-26,15,-45,-18,-56,-30xm137,-222v3,-9,31,-10,33,-1r-67,135v-2,28,3,63,-3,88v-10,-1,-26,5,-28,-5r0,-83r-66,-135v0,-11,30,-7,33,0r50,106","w":175,"k":{"-":21,"\/":22,".":42,":":27,";":24,",":44,"v":12,"\u0135":-8,"j":9,"\u012d":-11,"\u012b":-15,"\u0129":-17,"C":12,"\u0106":12,"\u0108":12,"\u010c":12,"\u010a":12,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"J":20,"\u0134":20,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":24,"\u0101":24,"\u0103":24,"c":28,"\u0107":28,"\u0109":28,"\u010d":28,"\u010b":28,"d":23,"q":23,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":26,"\u011b":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"f":11,"i":6,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"s":20,"\u015b":20,"\u015d":20,"\u0161":20,"\u015f":20,"t":8,"\u0165":8,"\u0163":8,"u":17,"x":12,"y":11,"\u0177":11,"z":18,"\u017a":18,"\u017e":18,"\u017c":18,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"w":11,"\u0175":11}},"\u0178":{"d":"52,-285v14,0,17,3,17,16v0,14,-2,17,-17,17v-14,0,-17,-2,-17,-16v0,-15,2,-17,17,-17xm124,-285v14,0,17,2,17,16v0,15,-2,17,-17,17v-13,0,-17,-3,-17,-16v0,-14,3,-17,17,-17xm137,-222v3,-9,31,-10,33,-1r-67,135v-2,28,3,63,-3,88v-10,-1,-26,5,-28,-5r0,-83r-66,-135v0,-11,30,-7,33,0r50,106","w":175,"k":{"-":21,"\/":22,".":42,":":27,";":24,",":44,"v":12,"\u0135":-8,"j":9,"\u012d":-11,"\u012b":-15,"\u0129":-17,"C":12,"\u0106":12,"\u0108":12,"\u010c":12,"\u010a":12,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"J":20,"\u0134":20,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":24,"\u0101":24,"\u0103":24,"c":28,"\u0107":28,"\u0109":28,"\u010d":28,"\u010b":28,"d":23,"q":23,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":26,"\u011b":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"f":11,"i":6,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"s":20,"\u015b":20,"\u015d":20,"\u0161":20,"\u015f":20,"t":8,"\u0165":8,"\u0163":8,"u":17,"x":12,"y":11,"\u0177":11,"z":18,"\u017a":18,"\u017e":18,"\u017c":18,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"w":11,"\u0175":11}},"Z":{"d":"155,-25v8,0,9,25,0,25r-134,0v-18,0,-10,-32,-3,-38r105,-164r-107,-1v-5,-2,-6,-24,3,-24r127,0v17,-1,10,32,2,38r-104,164r111,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-6,"\u012b":-12,"\u0129":-18,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":2,"\u0101":2,"\u0103":2,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"\u0179":{"d":"94,-251v-2,7,-26,9,-27,2v17,-17,24,-45,56,-48v8,-1,16,3,11,9xm155,-25v8,0,9,25,0,25r-134,0v-18,0,-10,-32,-3,-38r105,-164r-107,-1v-5,-2,-6,-24,3,-24r127,0v17,-1,10,32,2,38r-104,164r111,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-6,"\u012b":-12,"\u0129":-18,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":2,"\u0101":2,"\u0103":2,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"\u017d":{"d":"84,-263v14,-12,30,-45,58,-30v-19,17,-38,61,-75,43r-39,-43v25,-16,45,18,56,30xm155,-25v8,0,9,25,0,25r-134,0v-18,0,-10,-32,-3,-38r105,-164r-107,-1v-5,-2,-6,-24,3,-24r127,0v17,-1,10,32,2,38r-104,164r111,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-6,"\u012b":-12,"\u0129":-18,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":2,"\u0101":2,"\u0103":2,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"\u017b":{"d":"85,-286v13,1,18,4,18,17v0,14,-4,17,-18,17v-14,0,-17,-2,-17,-16v-1,-13,4,-19,17,-18xm155,-25v8,0,9,25,0,25r-134,0v-18,0,-10,-32,-3,-38r105,-164r-107,-1v-5,-2,-6,-24,3,-24r127,0v17,-1,10,32,2,38r-104,164r111,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-6,"\u012b":-12,"\u0129":-18,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":2,"\u0101":2,"\u0103":2,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"a":{"d":"25,-149v30,-36,121,-32,121,38r0,107v0,8,-12,5,-20,5v-8,0,-4,-13,-5,-21v-24,34,-108,32,-105,-25v3,-48,49,-54,101,-52v2,-31,-5,-50,-36,-50v-23,0,-36,13,-54,16v-5,-2,-3,-13,-2,-18xm46,-46v0,40,59,29,71,3r0,-33v-34,0,-71,-2,-71,30","w":172,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0101":{"d":"41,-225v24,-4,68,-3,93,0v-1,7,5,20,-5,20v-28,-2,-64,4,-88,-2v-2,-6,-2,-13,0,-18xm25,-149v30,-36,121,-32,121,38r0,107v0,8,-12,5,-20,5v-8,0,-4,-13,-5,-21v-24,34,-108,32,-105,-25v3,-48,49,-54,101,-52v2,-31,-5,-50,-36,-50v-23,0,-36,13,-54,16v-5,-2,-3,-13,-2,-18xm46,-46v0,40,59,29,71,3r0,-33v-34,0,-71,-2,-71,30","w":172,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0103":{"d":"87,-213v17,-1,25,-11,25,-27v0,-7,12,-5,18,-4v7,28,-12,51,-43,51v-31,0,-46,-15,-45,-47v0,-7,12,-5,18,-4v5,14,6,32,27,31xm25,-149v30,-36,121,-32,121,38r0,107v0,8,-12,5,-20,5v-8,0,-4,-13,-5,-21v-24,34,-108,32,-105,-25v3,-48,49,-54,101,-52v2,-31,-5,-50,-36,-50v-23,0,-36,13,-54,16v-5,-2,-3,-13,-2,-18xm46,-46v0,40,59,29,71,3r0,-33v-34,0,-71,-2,-71,30","w":172,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0105":{"d":"126,27v-13,30,52,1,27,34v-38,16,-79,-20,-43,-51v8,-6,13,-14,11,-30v-24,34,-108,32,-105,-25v3,-48,49,-54,101,-52v2,-31,-5,-50,-36,-50v-23,0,-36,13,-54,16v-13,-30,29,-40,57,-40v41,0,63,18,62,60r-1,114v-4,9,-16,14,-19,24xm46,-46v0,40,59,29,71,3r0,-33v-34,0,-71,-2,-71,30","w":172,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"b":{"d":"108,-171v47,0,64,37,64,85v0,52,-18,87,-68,89v-27,0,-37,-13,-51,-27v7,17,-10,36,-26,20r3,-239v5,-3,25,-4,26,4r0,95v14,-15,26,-27,52,-27xm101,-22v57,1,56,-124,2,-124v-24,0,-34,16,-47,31r0,63v13,15,22,30,45,30","k":{"v":2,"f":3,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"c":{"d":"90,-22v24,2,35,-24,49,-17v8,34,-24,42,-53,42v-50,0,-70,-33,-70,-85v0,-75,76,-115,123,-67v1,8,2,21,-5,22v-13,-7,-23,-20,-45,-19v-32,0,-43,28,-43,63v0,35,11,58,44,61","w":152,"k":{"a":3,"\u0101":3,"\u0103":3,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3}},"\u0107":{"d":"95,-197v-3,5,-22,9,-25,1v15,-19,16,-53,53,-50v4,0,7,5,4,8xm90,-22v24,2,35,-24,49,-17v8,34,-24,42,-53,42v-50,0,-70,-33,-70,-85v0,-75,76,-115,123,-67v1,8,2,21,-5,22v-13,-7,-23,-20,-45,-19v-32,0,-43,28,-43,63v0,35,11,58,44,61","w":152,"k":{"a":3,"\u0101":3,"\u0103":3,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3}},"\u0109":{"d":"130,-202v7,10,-3,11,-14,10v-15,-7,-20,-26,-31,-37v-14,13,-14,40,-44,37v-6,-1,-4,-6,-1,-10v15,-16,27,-57,61,-40xm90,-22v24,2,35,-24,49,-17v8,34,-24,42,-53,42v-50,0,-70,-33,-70,-85v0,-75,76,-115,123,-67v1,8,2,21,-5,22v-13,-7,-23,-20,-45,-19v-32,0,-43,28,-43,63v0,35,11,58,44,61","w":152,"k":{"a":3,"\u0101":3,"\u0103":3,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3}},"\u010d":{"d":"41,-237v-6,-7,1,-11,9,-9v21,2,23,25,36,37v14,-13,14,-40,44,-37v6,1,5,6,1,9v-15,16,-26,58,-61,41xm90,-22v24,2,35,-24,49,-17v8,34,-24,42,-53,42v-50,0,-70,-33,-70,-85v0,-75,76,-115,123,-67v1,8,2,21,-5,22v-13,-7,-23,-20,-45,-19v-32,0,-43,28,-43,63v0,35,11,58,44,61","w":152,"k":{"a":3,"\u0101":3,"\u0103":3,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3}},"\u010b":{"d":"86,-233v13,0,18,3,18,16v0,15,-4,18,-18,18v-14,0,-17,-3,-17,-17v-1,-15,3,-17,17,-17xm90,-22v24,2,35,-24,49,-17v8,34,-24,42,-53,42v-50,0,-70,-33,-70,-85v0,-75,76,-115,123,-67v1,8,2,21,-5,22v-13,-7,-23,-20,-45,-19v-32,0,-43,28,-43,63v0,35,11,58,44,61","w":152,"k":{"a":3,"\u0101":3,"\u0103":3,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3}},"d":{"d":"133,-239v2,-8,29,-7,29,0r-2,239v-8,-1,-23,5,-23,-4r0,-21v-14,15,-30,28,-56,28v-48,-1,-60,-38,-64,-85v-7,-76,72,-115,116,-65r0,-92xm86,-21v24,0,34,-16,47,-31r0,-64v-14,-15,-23,-30,-45,-30v-55,0,-57,125,-2,125"},"\u010f":{"d":"198,-184v-2,6,-23,6,-20,-2v7,-19,10,-43,20,-58v8,-2,25,-5,22,5xm133,-239v2,-8,29,-7,29,0r-2,239v-8,-1,-23,5,-23,-4r0,-21v-14,15,-30,28,-56,28v-48,-1,-60,-38,-64,-85v-7,-76,72,-115,116,-65r0,-92xm86,-21v24,0,34,-16,47,-31r0,-64v-14,-15,-23,-30,-45,-30v-55,0,-57,125,-2,125","w":204,"k":{"\u0140":-5,"\u013c":-5,"\u013e":-5,"\u013a":-5,"l":-5,"\u0137":-5,"k":-5,"h":-5,"b":-5}},"\u0111":{"d":"162,-217v18,-5,42,6,24,23r-24,0r-2,194v-8,-1,-23,5,-23,-4r0,-21v-14,15,-30,28,-56,28v-48,-1,-64,-37,-64,-85v0,-51,19,-88,68,-88v22,0,35,11,48,24r0,-48v-20,1,-64,4,-43,-23r43,0v-3,-18,0,-34,26,-26v7,2,2,17,3,26xm86,-21v24,0,34,-16,47,-31r0,-63v-14,-16,-23,-30,-46,-30v-55,0,-55,124,-1,124","w":198},"e":{"d":"92,-171v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-7,64,63,66,106,46v11,32,-29,34,-58,35v-55,0,-79,-32,-79,-86v0,-52,26,-88,76,-88xm133,-99v9,-54,-69,-65,-83,-19v-2,6,-3,13,-3,19r86,0","w":179,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u011b":{"d":"46,-237v-4,-3,-5,-8,1,-9v28,-4,30,24,44,37v14,-13,14,-40,44,-37v5,1,4,6,1,9v-14,17,-26,58,-61,41xm92,-171v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-7,64,63,66,106,46v11,32,-29,34,-58,35v-55,0,-79,-32,-79,-86v0,-52,26,-88,76,-88xm133,-99v9,-54,-69,-65,-83,-19v-2,6,-3,13,-3,19r86,0","w":179,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0113":{"d":"45,-225v24,-5,68,-3,92,0v2,6,4,20,-4,20v-28,0,-64,4,-88,-2v-2,-6,-2,-13,0,-18xm92,-171v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-7,64,63,66,106,46v11,32,-29,34,-58,35v-55,0,-79,-32,-79,-86v0,-52,26,-88,76,-88xm133,-99v9,-54,-69,-65,-83,-19v-2,6,-3,13,-3,19r86,0","w":179,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0115":{"d":"89,-213v17,-1,25,-9,25,-27v0,-7,13,-5,19,-4v8,28,-13,51,-44,51v-31,0,-45,-17,-45,-47v0,-7,13,-5,19,-4v5,14,6,32,26,31xm92,-171v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-7,64,63,66,106,46v11,32,-29,34,-58,35v-55,0,-79,-32,-79,-86v0,-52,26,-88,76,-88xm133,-99v9,-54,-69,-65,-83,-19v-2,6,-3,13,-3,19r86,0","w":179,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0117":{"d":"92,-233v13,0,17,3,17,16v0,15,-4,18,-18,18v-14,0,-16,-4,-17,-17v-1,-14,4,-17,18,-17xm92,-171v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-7,64,63,66,106,46v11,32,-29,34,-58,35v-55,0,-79,-32,-79,-86v0,-52,26,-88,76,-88xm133,-99v9,-54,-69,-65,-83,-19v-2,6,-3,13,-3,19r86,0","w":179,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0119":{"d":"92,-171v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-7,64,63,66,106,46v12,35,-28,38,-33,65v-4,21,48,-4,34,27v-37,18,-86,-16,-49,-49r10,-10v-62,11,-102,-22,-99,-84v2,-52,26,-88,76,-88xm133,-99v9,-54,-69,-65,-83,-19v-2,6,-3,13,-3,19r86,0","w":179,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"f":{"d":"34,-167v-10,-61,35,-97,78,-70v2,6,3,17,-2,20v-32,-15,-54,7,-46,50v15,3,41,-9,41,12v0,20,-25,9,-41,12v-2,46,3,101,-3,143v-10,0,-24,4,-27,-4r0,-139v-18,6,-38,-8,-22,-24r22,0","w":109,"k":{")":-5,"-":10,".":24,",":22,"v":-2,"a":7,"\u0101":7,"\u0103":7,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":9,"q":9,"e":9,"\u011b":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"f":4,"o":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":5,"\u015b":5,"\u015d":5,"\u0161":5,"\u015f":5,"y":-2,"\u0177":-2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"g":11,"\u011d":11,"\u011f":11,"\u0121":11,"\u0123":11,"w":-1,"\u0175":-1}},"g":{"d":"142,-114v3,49,-56,70,-94,48v-13,10,-6,31,14,31v45,0,95,0,95,45v0,40,-34,54,-77,54v-38,-1,-71,-8,-71,-42v0,-20,11,-31,23,-40v-25,-9,-18,-48,-1,-60v-34,-44,9,-110,74,-89v18,6,54,-11,54,12v0,16,-16,10,-29,11v7,7,12,17,12,30xm80,-79v22,-1,33,-13,34,-35v0,-21,-13,-35,-34,-34v-22,1,-33,14,-34,35v-1,20,13,35,34,34xm38,19v0,35,92,32,90,-7v-2,-29,-43,-21,-72,-23v-10,7,-18,14,-18,30","w":169,"k":{"\/":-13,",":-4,"a":7,"\u0101":7,"\u0103":7,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2,"t":5,"\u0165":5,"\u0163":5,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u011d":{"d":"130,-202v7,10,-3,11,-14,10v-15,-7,-20,-26,-31,-37v-14,13,-14,40,-44,37v-6,-1,-4,-6,-1,-10v15,-16,27,-57,61,-40xm142,-114v3,49,-56,70,-94,48v-13,10,-6,31,14,31v45,0,95,0,95,45v0,40,-34,54,-77,54v-38,-1,-71,-8,-71,-42v0,-20,11,-31,23,-40v-25,-9,-18,-48,-1,-60v-34,-44,9,-110,74,-89v18,6,54,-11,54,12v0,16,-16,10,-29,11v7,7,12,17,12,30xm80,-79v22,-1,33,-13,34,-35v0,-21,-13,-35,-34,-34v-22,1,-33,14,-34,35v-1,20,13,35,34,34xm38,19v0,35,92,32,90,-7v-2,-29,-43,-21,-72,-23v-10,7,-18,14,-18,30","w":169,"k":{"\/":-13,",":-4,"a":7,"\u0101":7,"\u0103":7,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2,"t":5,"\u0165":5,"\u0163":5,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u011f":{"d":"85,-213v17,-1,25,-11,25,-27v0,-7,12,-5,18,-4v7,28,-12,51,-43,51v-31,0,-46,-15,-45,-47v0,-7,12,-5,18,-4v5,14,6,32,27,31xm142,-114v3,49,-56,70,-94,48v-13,10,-6,31,14,31v45,0,95,0,95,45v0,40,-34,54,-77,54v-38,-1,-71,-8,-71,-42v0,-20,11,-31,23,-40v-25,-9,-18,-48,-1,-60v-34,-44,9,-110,74,-89v18,6,54,-11,54,12v0,16,-16,10,-29,11v7,7,12,17,12,30xm80,-79v22,-1,33,-13,34,-35v0,-21,-13,-35,-34,-34v-22,1,-33,14,-34,35v-1,20,13,35,34,34xm38,19v0,35,92,32,90,-7v-2,-29,-43,-21,-72,-23v-10,7,-18,14,-18,30","w":169,"k":{"\/":-13,",":-4,"a":7,"\u0101":7,"\u0103":7,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2,"t":5,"\u0165":5,"\u0163":5,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u0121":{"d":"85,-233v13,0,18,3,18,16v0,15,-4,18,-18,18v-14,0,-17,-4,-17,-17v0,-14,3,-17,17,-17xm142,-114v3,49,-56,70,-94,48v-13,10,-6,31,14,31v45,0,95,0,95,45v0,40,-34,54,-77,54v-38,-1,-71,-8,-71,-42v0,-20,11,-31,23,-40v-25,-9,-18,-48,-1,-60v-34,-44,9,-110,74,-89v18,6,54,-11,54,12v0,16,-16,10,-29,11v7,7,12,17,12,30xm80,-79v22,-1,33,-13,34,-35v0,-21,-13,-35,-34,-34v-22,1,-33,14,-34,35v-1,20,13,35,34,34xm38,19v0,35,92,32,90,-7v-2,-29,-43,-21,-72,-23v-10,7,-18,14,-18,30","w":169,"k":{"\/":-13,",":-4,"a":7,"\u0101":7,"\u0103":7,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2,"t":5,"\u0165":5,"\u0163":5,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u0123":{"d":"67,-192v13,-18,20,-61,52,-47v-13,18,-17,65,-52,47xm142,-114v3,49,-56,70,-94,48v-13,10,-6,31,14,31v45,0,95,0,95,45v0,40,-34,54,-77,54v-38,-1,-71,-8,-71,-42v0,-20,11,-31,23,-40v-25,-9,-18,-48,-1,-60v-34,-44,9,-110,74,-89v18,6,54,-11,54,12v0,16,-16,10,-29,11v7,7,12,17,12,30xm80,-79v22,-1,33,-13,34,-35v0,-21,-13,-35,-34,-34v-22,1,-33,14,-34,35v-1,20,13,35,34,34xm38,19v0,35,92,32,90,-7v-2,-29,-43,-21,-72,-23v-10,7,-18,14,-18,30","w":169,"k":{"\/":-13,",":-4,"a":7,"\u0101":7,"\u0103":7,"c":2,"\u0107":2,"\u0109":2,"\u010d":2,"\u010b":2,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2,"t":5,"\u0165":5,"\u0163":5,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"h":{"d":"56,-144v31,-45,116,-29,107,43v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r3,-239v5,-3,25,-4,26,4r0,95","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0125":{"d":"56,-144v31,-45,116,-29,107,43v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r3,-223v9,1,26,-5,26,5r0,78xm44,-279v-14,12,-31,45,-58,30v19,-17,38,-61,75,-43r39,43v-27,15,-44,-18,-56,-30","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0127":{"d":"109,-168v75,-5,59,103,54,168v-9,-1,-24,5,-26,-4v-6,-52,20,-139,-34,-139v-21,0,-32,15,-44,30v-2,36,3,80,-3,113v-8,-1,-26,6,-26,-4r0,-190v-17,2,-41,2,-28,-22v7,-2,19,0,28,-1v-5,-19,4,-38,28,-25v2,6,0,17,1,25v19,-1,62,-5,42,23r-42,0r0,52v13,-15,27,-25,50,-26","w":191,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"i":{"d":"53,-167v7,46,3,119,0,167v-9,-1,-23,5,-26,-4r3,-163v7,0,17,-2,23,0xm41,-233v14,0,18,3,18,17v0,15,-4,18,-18,18v-14,0,-18,-3,-18,-18v0,-14,4,-17,18,-17","w":82},"\u0129":{"d":"89,-238v8,0,11,0,11,7v1,23,-12,38,-34,38v-25,0,-29,-20,-49,-23v-18,-3,-5,35,-33,20v-4,-23,10,-42,33,-42v26,0,30,20,50,23v17,3,5,-23,22,-23xm27,-163v2,-8,29,-8,29,0r-3,163v-9,-1,-23,5,-26,-4r0,-159","w":82,"k":{"\u0140":-5,"\u013c":-5,"\u013e":-5,"\u013a":-5,"l":-5,"\u0137":-5,"k":-5,"h":-5,"b":-5}},"\u012b":{"d":"-5,-225v24,-4,68,-3,93,0v-1,7,5,20,-4,20v-29,0,-64,4,-89,-2v0,-6,-2,-13,0,-18xm27,-163v2,-8,29,-8,29,0r-3,163v-9,-1,-23,5,-26,-4r0,-159","w":82,"k":{"\u0140":-2,"\u013c":-2,"\u013e":-2,"\u013a":-2,"l":-2,"\u0137":-2,"k":-2,"h":-2,"b":-2}},"\u012d":{"d":"41,-213v17,-1,25,-9,25,-27v0,-7,13,-5,19,-4v8,28,-13,51,-44,51v-31,0,-45,-17,-45,-47v0,-7,13,-5,19,-4v5,14,6,32,26,31xm27,-163v2,-8,29,-8,29,0r-3,163v-9,-1,-23,5,-26,-4r0,-159","w":82},"\u012f":{"d":"68,51v-8,26,-73,16,-65,-19v4,-15,16,-22,24,-32r3,-167v9,1,23,-5,26,4r-1,164v-6,12,-23,17,-24,33v-1,19,35,-3,37,17xm41,-233v14,0,18,3,18,17v0,15,-4,18,-18,18v-14,0,-18,-3,-18,-18v0,-14,4,-17,18,-17","w":82},"\u0131":{"d":"27,-163v2,-8,29,-8,29,0r-3,163v-9,-1,-23,5,-26,-4r0,-159","w":82},"\u0133":{"d":"53,-167v7,46,3,119,0,167v-9,-1,-23,5,-26,-4r3,-163v7,0,17,-2,23,0xm41,-233v14,0,18,3,18,17v0,15,-4,18,-18,18v-14,0,-18,-3,-18,-18v0,-14,4,-17,18,-17xm77,41v20,-4,43,-4,36,-39r3,-169v9,1,24,-5,26,4r0,166v2,42,-16,65,-56,60v-13,2,-12,-13,-9,-22xm128,-233v15,0,17,3,18,17v0,15,-5,18,-19,18v-14,0,-16,-4,-17,-18v-1,-14,4,-17,18,-17","w":168},"j":{"d":"-6,41v20,-4,43,-4,36,-39r3,-169v9,1,24,-5,26,4r0,166v2,42,-16,65,-56,60v-13,2,-12,-13,-9,-22xm45,-233v15,0,17,3,18,17v0,15,-5,18,-19,18v-14,0,-16,-4,-17,-18v-1,-14,4,-17,18,-17","w":86},"\u0135":{"d":"88,-202v7,6,2,11,-8,10v-21,-2,-24,-25,-37,-37v-14,13,-14,40,-44,37v-6,-1,-3,-7,0,-10v15,-16,26,-57,60,-40xm-6,41v20,-4,43,-4,36,-39r3,-169v9,1,24,-5,26,4r0,166v2,42,-16,65,-56,60v-13,2,-12,-13,-9,-22","w":86},"k":{"d":"116,-162v3,-8,32,-10,34,-1v-15,28,-43,44,-62,67r69,91v-1,10,-31,8,-34,0r-67,-87v-2,30,3,66,-3,92v-9,-1,-23,5,-26,-4r3,-239v5,-3,25,-4,26,4r0,143","w":163,"k":{"-":14,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":10,"q":10,"e":12,"\u011b":12,"\u0113":12,"\u0115":12,"\u0117":12,"\u0119":12,"o":12,"\u014d":12,"\u014f":12,"\u0151":12,"\u0153":12,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":5}},"\u0137":{"d":"83,59v-2,7,-22,8,-24,1v9,-18,2,-51,37,-45v4,0,7,5,4,8xm116,-162v3,-8,32,-10,34,-1v-15,28,-43,44,-62,67r69,91v-1,10,-31,8,-34,0r-67,-87v-2,30,3,66,-3,92v-9,-1,-23,5,-26,-4r3,-239v5,-3,25,-4,26,4r0,143","w":163,"k":{"-":14,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":10,"q":10,"e":12,"\u011b":12,"\u0113":12,"\u0115":12,"\u0117":12,"\u0119":12,"o":12,"\u014d":12,"\u014f":12,"\u0151":12,"\u0153":12,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":5}},"\u0138":{"d":"119,-162v3,-9,30,-9,33,-1v-17,29,-43,48,-64,73r68,85v-2,10,-31,8,-34,0r-66,-81v-2,28,3,62,-3,86v-9,-1,-23,5,-26,-4r1,-161v3,-5,26,-6,28,2r0,73","w":163,"k":{"-":14,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":10,"q":10,"e":12,"\u011b":12,"\u0113":12,"\u0115":12,"\u0117":12,"\u0119":12,"o":12,"\u014d":12,"\u014f":12,"\u0151":12,"\u0153":12,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":5}},"l":{"d":"53,-243v5,73,3,169,0,243v-9,-1,-23,5,-26,-4r3,-239v4,-3,19,-3,23,0","w":82},"\u013a":{"d":"52,-261v-8,2,-28,2,-19,-6v18,-15,22,-43,54,-44v8,-2,16,2,11,8xm53,-243v5,73,3,169,0,243v-9,-1,-23,5,-26,-4r3,-239v4,-3,19,-3,23,0","w":82},"\u013e":{"d":"111,-242v-9,20,-15,44,-26,61v-6,0,-18,4,-17,-5v7,-19,10,-42,20,-58v8,-1,20,-4,23,2xm53,-243v5,73,3,169,0,243v-9,-1,-23,5,-26,-4r3,-239v4,-3,19,-3,23,0","w":94},"\u013c":{"d":"37,59v-2,7,-22,8,-24,1v10,-18,2,-51,37,-45v4,0,7,5,4,8xm53,-243v5,73,3,169,0,243v-9,-1,-23,5,-26,-4r3,-239v4,-3,19,-3,23,0","w":82},"\u0142":{"d":"83,-178v6,23,-10,30,-24,37v-2,46,3,99,-3,141v-9,-1,-23,5,-26,-4r0,-119v-8,4,-25,24,-25,2v0,-17,15,-19,25,-27v2,-30,-3,-68,3,-95v5,-3,25,-4,26,4r0,73v8,-3,15,-14,24,-12","w":89},"\u0140":{"d":"107,-123v15,0,19,5,19,20v0,15,-5,21,-20,21v-14,0,-18,-5,-18,-20v0,-16,4,-21,19,-21xm53,-243v5,73,3,169,0,243v-9,-1,-23,5,-26,-4r3,-239v4,-3,19,-3,23,0","w":134},"m":{"d":"207,-171v73,-4,57,106,52,171v-9,-1,-24,5,-27,-4v-6,-51,21,-141,-31,-141v-20,0,-30,15,-42,30v-2,37,3,82,-3,115v-9,-1,-24,5,-26,-4v-6,-51,20,-141,-32,-141v-20,0,-30,15,-42,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21v15,-15,27,-29,51,-29v26,0,42,12,49,32v14,-16,29,-31,54,-32","w":287,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"n":{"d":"53,-142v31,-47,119,-34,110,41v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0144":{"d":"110,-197v-3,5,-22,9,-25,1v15,-19,16,-53,53,-50v4,0,7,5,4,8xm53,-142v31,-47,119,-34,110,41v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0148":{"d":"55,-237v-4,-3,-4,-8,1,-9v28,-4,30,24,44,37v14,-13,14,-40,44,-37v5,1,4,6,1,9v-15,16,-26,58,-61,41xm53,-142v31,-47,119,-34,110,41v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0146":{"d":"70,57v9,-18,2,-48,37,-42v10,12,-11,30,-14,44v-1,7,-28,9,-23,-2xm53,-142v31,-47,119,-34,110,41v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u0149":{"d":"16,-246v33,-8,28,34,14,49v-13,14,-18,49,-47,39v6,-27,28,-37,24,-74v0,-8,3,-12,9,-14xm72,-142v31,-47,119,-34,110,41v-4,32,3,72,-3,101v-9,0,-25,5,-26,-4v-7,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21","w":208,"k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"\u014b":{"d":"53,-142v31,-47,119,-34,110,41v-8,66,22,166,-49,165v-20,5,-33,-12,-21,-27v29,9,44,-6,41,-41v-6,-52,20,-141,-33,-141v-22,0,-32,15,-45,30v-2,37,3,82,-3,115v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,21","k":{"v":6,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":2,"\u0175":2}},"o":{"d":"97,-171v53,0,77,33,77,86v0,54,-26,88,-81,88v-55,1,-77,-33,-77,-85v0,-55,27,-89,81,-89xm95,-21v34,-1,48,-25,48,-62v0,-37,-12,-63,-48,-63v-37,0,-49,27,-49,62v0,35,12,63,49,63","k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":1,"\u0175":1}},"\u014d":{"d":"49,-225v24,-4,68,-4,92,0v2,6,4,20,-4,20v-28,-2,-64,4,-88,-2v-2,-6,-2,-13,0,-18xm97,-171v53,0,77,33,77,86v0,54,-26,88,-81,88v-55,1,-77,-33,-77,-85v0,-55,27,-89,81,-89xm95,-21v34,-1,48,-25,48,-62v0,-37,-12,-63,-48,-63v-37,0,-49,27,-49,62v0,35,12,63,49,63","k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":1,"\u0175":1}},"\u014f":{"d":"95,-213v17,-1,25,-11,25,-27v0,-7,12,-5,18,-4v7,28,-12,51,-43,51v-31,0,-46,-15,-45,-47v0,-7,12,-5,18,-4v5,14,6,32,27,31xm97,-171v53,0,77,33,77,86v0,54,-26,88,-81,88v-55,1,-77,-33,-77,-85v0,-55,27,-89,81,-89xm95,-21v34,-1,48,-25,48,-62v0,-37,-12,-63,-48,-63v-37,0,-49,27,-49,62v0,35,12,63,49,63","k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":1,"\u0175":1}},"\u0151":{"d":"84,-238v4,-9,42,-6,29,4v-18,14,-26,53,-59,44v7,-19,21,-31,30,-48xm145,-239v5,-6,30,-7,31,1v-21,16,-25,54,-63,49v4,-18,23,-33,32,-50xm97,-171v53,0,77,33,77,86v0,54,-26,88,-81,88v-55,1,-77,-33,-77,-85v0,-55,27,-89,81,-89xm95,-21v34,-1,48,-25,48,-62v0,-37,-12,-63,-48,-63v-37,0,-49,27,-49,62v0,35,12,63,49,63","k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":1,"\u0175":1}},"\u0153":{"d":"282,-14v-28,28,-113,22,-125,-17v-11,21,-32,34,-64,34v-54,0,-77,-33,-77,-85v0,-55,27,-88,81,-89v31,0,50,13,62,34v11,-20,31,-34,60,-34v48,0,71,31,70,81v0,8,-5,11,-11,12r-104,0v-9,64,63,66,105,46v5,2,2,11,3,18xm260,-99v8,-53,-70,-66,-83,-19v-2,6,-3,13,-3,19r86,0xm95,-21v34,-1,48,-25,48,-62v0,-37,-12,-63,-48,-63v-37,0,-49,27,-49,62v0,35,12,63,49,63","w":305,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":5,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"p":{"d":"109,-171v47,0,63,37,63,85v0,52,-19,87,-68,89v-25,1,-35,-12,-48,-24v-2,27,3,61,-3,84v-9,-1,-26,5,-26,-5r0,-223v3,-4,25,-7,25,2r0,22v15,-15,29,-30,57,-30xm101,-22v56,0,57,-124,2,-124v-24,0,-34,16,-47,31r0,63v13,15,22,30,45,30","k":{"v":2,"f":3,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"q":{"d":"85,-171v26,0,38,14,52,28v-7,-17,9,-36,25,-20r0,221v2,9,-18,6,-26,5v-8,-21,-1,-59,-3,-86v-13,15,-25,26,-52,26v-48,0,-63,-38,-64,-85v0,-52,20,-89,68,-89xm86,-21v24,0,34,-16,47,-31r0,-64v-14,-15,-23,-30,-45,-30v-55,0,-57,125,-2,125","k":{"\u0123":-2,"\u0121":-2,"\u011f":-2,"\u011d":-2,"g":-2}},"r":{"d":"53,-140v10,-21,45,-43,66,-22v-1,8,2,23,-4,23v-29,-11,-49,9,-59,31v-2,35,3,77,-3,108v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,23","w":125,"k":{"-":11,".":36,",":31,"v":-3,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"y":-2,"\u0177":-2,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"w":-2,"\u0175":-2}},"\u0155":{"d":"81,-197v-3,5,-22,9,-25,1v15,-19,16,-53,53,-50v4,0,7,5,4,8xm53,-140v10,-21,45,-43,66,-22v-1,8,2,23,-4,23v-29,-11,-49,9,-59,31v-2,35,3,77,-3,108v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,23","w":125,"k":{"-":11,".":36,",":31,"v":-3,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"y":-2,"\u0177":-2,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"w":-2,"\u0175":-2}},"\u0159":{"d":"25,-237v-4,-3,-5,-8,1,-9v28,-4,30,24,44,37v14,-13,14,-40,44,-37v5,1,4,6,1,9v-14,17,-26,58,-61,41xm53,-140v10,-21,45,-43,66,-22v-1,8,2,23,-4,23v-29,-11,-49,9,-59,31v-2,35,3,77,-3,108v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,23","w":125,"k":{"-":11,".":36,",":31,"v":-3,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"y":-2,"\u0177":-2,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"w":-2,"\u0175":-2}},"\u0157":{"d":"39,63v-7,1,-24,4,-19,-6v8,-18,2,-48,36,-42v4,0,7,5,4,8v-7,13,-11,30,-21,40xm53,-140v10,-21,45,-43,66,-22v-1,8,2,23,-4,23v-29,-11,-49,9,-59,31v-2,35,3,77,-3,108v-9,-1,-23,5,-26,-4r0,-161v4,-4,26,-6,26,2r0,23","w":125,"k":{"-":11,".":36,",":31,"v":-3,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"y":-2,"\u0177":-2,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"w":-2,"\u0175":-2}},"s":{"d":"115,-136v-18,-14,-83,-21,-66,22v21,26,78,17,77,67v0,36,-26,48,-62,50v-28,1,-63,-12,-45,-38v18,14,76,29,79,-10v-11,-41,-80,-24,-80,-79v0,-47,78,-64,100,-28v0,6,1,13,-3,16","w":140,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015b":{"d":"117,-241v-17,16,-27,58,-59,45v17,-18,15,-54,53,-50v3,0,5,3,6,5xm115,-136v-18,-14,-83,-21,-66,22v21,26,78,17,77,67v0,36,-26,48,-62,50v-28,1,-63,-12,-45,-38v18,14,76,29,79,-10v-11,-41,-80,-24,-80,-79v0,-47,78,-64,100,-28v0,6,1,13,-3,16","w":140,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015d":{"d":"115,-202v7,6,2,11,-8,10v-20,-2,-23,-25,-36,-37v-14,13,-14,40,-44,37v-6,-1,-4,-6,-1,-10v15,-16,26,-57,60,-40xm115,-136v-18,-14,-83,-21,-66,22v21,26,78,17,77,67v0,36,-26,48,-62,50v-28,1,-63,-12,-45,-38v18,14,76,29,79,-10v-11,-41,-80,-24,-80,-79v0,-47,78,-64,100,-28v0,6,1,13,-3,16","w":140,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u0161":{"d":"26,-237v-4,-3,-5,-8,1,-9v28,-4,29,24,43,37v15,-13,15,-40,45,-37v5,1,3,6,0,9v-15,16,-26,58,-60,41xm115,-136v-18,-14,-83,-21,-66,22v21,26,78,17,77,67v0,36,-26,48,-62,50v-28,1,-63,-12,-45,-38v18,14,76,29,79,-10v-11,-41,-80,-24,-80,-79v0,-47,78,-64,100,-28v0,6,1,13,-3,16","w":140,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015f":{"d":"86,-93v49,4,53,90,-1,94v17,22,19,66,-22,63v-12,-2,-30,2,-30,-12v-5,-25,54,8,35,-32r-7,-17v-26,1,-60,-13,-42,-38v18,14,76,29,79,-10v-11,-41,-80,-24,-80,-79v0,-47,78,-64,100,-28v0,6,1,16,-4,16v-19,-16,-82,-19,-65,22v8,11,24,15,37,21","w":140,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u017f":{"d":"27,-184v-9,-48,45,-82,75,-50v3,19,-9,15,-23,12v-21,0,-23,17,-23,38r-3,184v-9,-1,-23,5,-26,-4r0,-180","w":87},"t":{"d":"63,-55v-5,35,25,33,45,30v5,22,-8,28,-28,28v-67,0,-41,-86,-46,-146v-19,4,-37,-3,-25,-24r25,0v-3,-22,-2,-59,29,-38r0,38r43,0v4,4,6,24,-3,24r-40,0r0,88","w":120,"k":{"-":11,"a":4,"\u0101":4,"\u0103":4,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":5,"\u0165":5,"\u0163":5}},"\u0165":{"d":"105,-198v-2,6,-23,7,-20,-1v7,-19,10,-44,20,-59v8,0,25,-5,22,5xm63,-55v-5,35,25,33,45,30v5,22,-8,28,-28,28v-67,0,-41,-86,-46,-146v-19,4,-37,-3,-25,-24r25,0v-3,-22,-2,-59,29,-38r0,38r43,0v4,4,6,24,-3,24r-40,0r0,88","w":124},"\u0167":{"d":"109,-6v-30,23,-84,3,-74,-44r0,-27v-17,5,-40,-6,-23,-23r23,0r0,-44v-17,5,-40,-6,-23,-23r23,0v-3,-22,-2,-59,29,-38r0,38r43,0v16,31,-22,22,-43,23r0,44v19,-3,50,1,31,23r-31,0v1,26,-5,58,22,56v10,1,20,-11,24,0v0,5,1,12,-1,15","w":123},"u":{"d":"133,-163v2,-8,29,-7,29,0r-2,163v-9,0,-22,4,-24,-4r0,-21v-15,15,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r0,-111"},"\u0169":{"d":"142,-238v8,0,11,0,11,7v1,23,-12,38,-34,38v-25,0,-29,-20,-49,-23v-18,-3,-5,35,-33,20v-4,-23,10,-42,33,-42v25,0,30,20,50,23v17,3,5,-23,22,-23xm133,-163v2,-8,29,-7,29,0r-2,163v-9,0,-22,4,-24,-4r0,-21v-15,15,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r0,-111"},"\u016b":{"d":"48,-225v24,-4,68,-3,93,0v-1,7,5,20,-4,20v-29,0,-64,4,-89,-2v0,-6,-2,-13,0,-18xm133,-163v2,-8,29,-7,29,0r-2,163v-9,0,-22,4,-24,-4r0,-21v-15,15,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r0,-111"},"\u016d":{"d":"95,-213v16,0,24,-10,24,-27v0,-7,13,-5,19,-4v8,28,-12,51,-43,51v-32,0,-46,-16,-46,-47v0,-7,17,-7,21,-2v0,18,7,29,25,29xm133,-163v2,-8,29,-7,29,0r-2,163v-9,0,-22,4,-24,-4r0,-21v-15,15,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r0,-111"},"\u016f":{"d":"95,-252v21,-1,34,12,34,31v-1,21,-13,32,-35,32v-22,0,-34,-10,-34,-31v1,-21,13,-31,35,-32xm95,-204v10,0,17,-6,16,-16v0,-11,-6,-17,-17,-17v-10,0,-15,6,-15,16v0,11,3,17,16,17xm133,-163v2,-8,29,-7,29,0r-2,163v-9,0,-22,4,-24,-4r0,-21v-15,15,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r0,-111"},"\u0171":{"d":"83,-238v4,-9,42,-6,29,4v-18,14,-26,53,-59,44v7,-19,21,-31,30,-48xm144,-239v5,-6,30,-7,31,1v-21,16,-25,54,-63,49v4,-18,23,-33,32,-50xm133,-163v2,-8,29,-7,29,0r-2,163v-9,0,-22,4,-24,-4r0,-21v-15,15,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r0,-111"},"\u0173":{"d":"141,27v-12,31,52,0,27,34v-38,17,-79,-22,-42,-52v9,-4,15,-20,10,-34v-14,16,-29,27,-53,28v-77,4,-55,-99,-56,-168v3,-5,26,-6,28,2v6,52,-21,141,34,141v21,0,31,-15,44,-30r1,-113v3,-5,27,-6,28,2r-2,168v-5,8,-15,13,-19,22"},"v":{"d":"82,-30v18,-44,29,-96,49,-137v12,-1,30,-5,24,11r-54,151v-3,9,-35,10,-39,0r-55,-160v4,-5,29,-6,30,3","w":162,"k":{"\u0163":-2,"-":8,".":30,",":28,"\u017c":5,"\u017e":5,"\u017a":5,"z":5,"\u0177":-2,"y":-2,"\u0175":-2,"w":-2,"v":-2,"\u0165":-2,"t":-2,"\u015f":2,"\u0161":2,"\u015d":2,"\u015b":2,"s":2,"q":4,"\u0153":3,"\u0151":3,"\u014f":3,"\u014d":3,"o":3,"\u0123":5,"\u0121":5,"\u011f":5,"\u011d":5,"g":5,"f":-2,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u011b":4,"e":4,"d":4,"\u010b":4,"\u010d":4,"\u0109":4,"\u0107":4,"c":4,"\u0103":5,"\u0101":5,"a":5}},"w":{"d":"219,-162v4,-11,38,-9,28,6r-47,151v-3,9,-34,10,-39,0r-34,-117r-31,117v-2,9,-34,9,-39,0r-47,-160v4,-5,28,-5,30,3r38,132r39,-137v9,0,23,-5,26,4r38,133","w":257,"k":{"-":8,".":23,",":31,"v":-2,"a":4,"\u0101":4,"\u0103":4,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"f":-1,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":-1,"\u0165":-1,"\u0163":-1,"y":-2,"\u0177":-2,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":-1,"\u0175":-1}},"\u0175":{"d":"174,-202v5,7,1,11,-8,10v-21,-2,-24,-25,-37,-37v-14,13,-14,40,-44,37v-5,-1,-4,-7,-1,-10v15,-16,27,-57,61,-40xm219,-162v4,-11,38,-9,28,6r-47,151v-3,9,-34,10,-39,0r-34,-117r-31,117v-2,9,-34,9,-39,0r-47,-160v4,-5,28,-5,30,3r38,132r39,-137v9,0,23,-5,26,4r38,133","w":257,"k":{"-":8,".":23,",":31,"v":-2,"a":4,"\u0101":4,"\u0103":4,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"f":-1,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":-1,"\u0165":-1,"\u0163":-1,"y":-2,"\u0177":-2,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":-1,"\u0175":-1}},"x":{"d":"116,-163v3,-8,27,-7,30,-1v-14,28,-33,52,-48,78v16,28,36,52,50,82v-1,8,-29,8,-33,0r-38,-63v-14,22,-26,47,-42,67v0,0,-33,5,-26,-8r49,-77r-48,-78v3,-8,29,-8,33,0r36,58","w":155,"k":{"-":11,"a":7,"\u0101":7,"\u0103":7,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":9,"\u011b":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"o":10,"\u014d":10,"\u014f":10,"\u0151":10,"\u0153":10,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":-1,"\u0165":-1,"\u0163":-1,"u":4}},"y":{"d":"127,-162v2,-11,35,-11,29,5r-78,215v-3,7,-28,10,-32,1r23,-59v-26,-49,-43,-108,-63,-163v1,-9,31,-8,32,2r45,127","w":162,"k":{"-":8,".":24,",":26,"v":-2,"a":5,"\u0101":5,"\u0103":5,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"f":-2,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":-2,"\u0165":-2,"\u0163":-2,"y":-2,"\u0177":-2,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"w":-1,"\u0175":-1}},"\u0177":{"d":"126,-202v7,6,2,11,-8,10v-22,-2,-24,-25,-36,-37v-14,13,-14,40,-44,37v-6,-1,-4,-6,-1,-10v15,-16,26,-57,60,-40xm127,-162v2,-11,35,-11,29,5r-78,215v-3,7,-28,10,-32,1r23,-59v-26,-49,-43,-108,-63,-163v1,-9,31,-8,32,2r45,127","w":162,"k":{"-":8,".":24,",":26,"v":-2,"a":5,"\u0101":5,"\u0103":5,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"f":-2,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":-2,"\u0165":-2,"\u0163":-2,"y":-2,"\u0177":-2,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"w":-1,"\u0175":-1}},"z":{"d":"121,-24v10,-1,8,19,3,23v-31,3,-67,0,-100,1v-13,0,-9,-28,-2,-34r70,-109r-68,0v-8,-1,-8,-20,-3,-24r97,0v9,5,5,28,-1,34r-70,109r74,0","w":142,"k":{"v":3,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":8,"\u011b":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"f":2,"o":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":2,"y":3,"\u0177":3,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":4,"\u0175":4}},"\u017a":{"d":"81,-197v-3,5,-22,9,-25,1v15,-19,16,-53,53,-50v4,0,7,5,4,8xm121,-24v10,-1,8,19,3,23v-31,3,-67,0,-100,1v-13,0,-9,-28,-2,-34r70,-109r-68,0v-8,-1,-8,-20,-3,-24r97,0v9,5,5,28,-1,34r-70,109r74,0","w":142,"k":{"v":3,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":8,"\u011b":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"f":2,"o":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":2,"y":3,"\u0177":3,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":4,"\u0175":4}},"\u017e":{"d":"27,-237v-6,-7,1,-11,9,-9v21,2,23,25,36,37v14,-13,14,-40,44,-37v6,1,5,6,1,9v-15,16,-26,58,-61,41xm121,-24v10,-1,8,19,3,23v-31,3,-67,0,-100,1v-13,0,-9,-28,-2,-34r70,-109r-68,0v-8,-1,-8,-20,-3,-24r97,0v9,5,5,28,-1,34r-70,109r74,0","w":142,"k":{"v":3,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":8,"\u011b":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"f":2,"o":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":2,"y":3,"\u0177":3,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":4,"\u0175":4}},"\u017c":{"d":"73,-233v13,0,18,2,17,16v0,14,-4,18,-17,18v-14,0,-17,-4,-18,-17v-1,-14,4,-17,18,-17xm121,-24v10,-1,8,19,3,23v-31,3,-67,0,-100,1v-13,0,-9,-28,-2,-34r70,-109r-68,0v-8,-1,-8,-20,-3,-24r97,0v9,5,5,28,-1,34r-70,109r74,0","w":142,"k":{"v":3,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":8,"\u011b":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"f":2,"o":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":2,"y":3,"\u0177":3,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":4,"\u0175":4}},"`":{"d":"25,-238v-4,-3,-1,-8,4,-8v37,-5,36,32,53,50v-30,15,-41,-29,-57,-42","w":104},"!":{"d":"49,-233v0,-13,26,-10,32,-4r-3,174v-4,4,-26,6,-26,-3xm65,-38v14,0,19,6,19,20v0,14,-5,20,-19,20v-14,0,-18,-7,-18,-20v0,-14,3,-20,18,-20","w":117},"?":{"d":"24,-223v38,-37,132,-19,126,49v-4,40,-21,64,-60,66v1,22,3,65,-28,43v4,-22,-15,-64,16,-63v29,0,40,-16,42,-44v4,-51,-63,-53,-91,-31v-7,0,-6,-14,-5,-20xm76,-38v14,0,19,6,19,20v0,14,-5,20,-19,20v-14,0,-18,-7,-18,-20v0,-14,4,-20,18,-20","w":166},",":{"d":"41,-39v34,-9,27,34,14,49v-12,14,-20,51,-48,38v8,-24,27,-38,24,-73v-1,-9,3,-13,10,-14","w":89,"k":{"\u0163":8,"\u0162":23,"\u0165":8,"t":8,"\u0178":26,"\u0176":26,"Y":26,"X":-2,"\u0174":26,"W":26,"V":24,"\u0164":23,"T":23,"\u0134":-4,"J":-4,"\u0104":-3,"\u0102":-3,"\u0100":-3,"A":-3}},";":{"d":"51,-161v14,0,19,6,19,20v0,14,-5,20,-19,20v-14,0,-18,-7,-18,-20v0,-13,4,-20,18,-20xm46,-39v34,-9,25,34,13,49v-12,14,-20,50,-46,38v5,-27,27,-37,23,-73v-1,-9,3,-13,10,-14","w":96},":":{"d":"51,-161v14,0,19,6,19,20v0,14,-5,20,-19,20v-14,0,-18,-7,-18,-20v0,-13,4,-20,18,-20xm51,-39v15,0,19,6,19,20v0,14,-4,21,-19,21v-15,0,-18,-8,-18,-21v0,-13,4,-20,18,-20","w":96},".":{"d":"46,-39v14,0,18,5,18,20v0,16,-5,20,-19,21v-15,0,-18,-6,-18,-21v0,-16,4,-20,19,-20","w":90,"k":{"\u0163":8,"\u0162":27,"-":20,"\u017c":-2,"\u017e":-2,"\u017a":-2,"z":-2,"\u0177":14,"y":14,"\u0175":12,"w":12,"v":14,"\u0165":8,"t":8,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"g":-4,"f":7,"\u0178":33,"\u0176":33,"Y":33,"\u0174":25,"W":25,"V":27,"\u0172":3,"\u0170":3,"\u016e":3,"\u016c":3,"\u016a":3,"\u0168":3,"U":3,"\u0164":27,"T":27,"Q":4,"\u0152":4,"\u0150":4,"\u014e":4,"\u014c":4,"O":4,"\u0134":-3,"J":-3,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"G":7,"\u010a":7,"\u010c":7,"\u0108":7,"\u0106":7,"C":7,"\u0104":-2,"\u0102":-2,"\u0100":-2,"A":-2}},"\/":{"d":"108,-251v1,-11,32,-10,28,2r-106,291v0,9,-26,11,-29,2","w":139,"k":{"\u015f":7,"\u0161":7,"\u015d":7,"\u015b":7,"s":7,"\u0153":6,"\u0151":6,"\u014f":6,"\u014d":6,"o":6,"\u0123":6,"\u0121":6,"\u011f":6,"\u011d":6,"g":6,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u011b":7,"e":7,"\u010b":7,"\u010d":7,"\u0109":7,"\u0107":7,"c":7,"\u0103":7,"\u0101":7,"a":7,"\u0134":7,"J":7,"\u0104":12,"\u0102":12,"\u0100":12,"A":12}},"|":{"d":"94,-251v5,97,3,217,0,314v-9,0,-22,5,-25,-4r3,-310v7,0,16,-2,22,0","w":165},"\\":{"d":"2,-253v2,-7,29,-6,29,1r108,296v-2,6,-28,7,-29,-1","w":139},"-":{"d":"92,-101v8,0,10,25,0,24r-74,0v-9,0,-8,-23,0,-24r74,0","w":110,"k":{"\u0177":4,"y":4,"x":7,"v":3,"f":3,"\u0178":18,"\u0176":18,"Y":18}},"\u2010":{"d":"92,-101v8,0,10,25,0,24r-74,0v-9,0,-8,-23,0,-24r74,0","w":110},"\u00ad":{"d":"92,-101v8,0,10,25,0,24r-74,0v-9,0,-8,-23,0,-24r74,0","w":110},"_":{"d":"174,41v5,0,6,4,6,11v0,7,-1,12,-6,12r-169,0v-6,1,-6,-5,-6,-11v0,-7,1,-12,6,-12r169,0","w":179},"(":{"d":"88,-245v-44,81,-44,220,0,301v-2,7,-22,7,-26,1v-51,-76,-50,-233,3,-305v8,0,21,-4,23,3","w":109,"k":{"j":-11,"\u0123":-2,"\u0121":-2,"\u011f":-2,"\u011d":-2,"g":-2}},")":{"d":"44,-248v54,77,52,230,2,307v-8,1,-22,5,-24,-3v41,-82,43,-218,0,-301v0,-7,15,-4,22,-3","w":109},"[":{"d":"90,-246v6,2,7,20,0,22r-29,0r0,259v17,-3,46,1,29,21v-19,-4,-56,10,-56,-12r0,-278v1,-21,37,-9,56,-12","w":110},"]":{"d":"16,-235v2,-22,61,-15,61,1r0,278v0,22,-36,9,-56,12v-7,1,-5,-13,-4,-19v7,-4,22,-1,33,-2r0,-259v-13,-2,-36,7,-34,-11","w":110},"{":{"d":"88,34v15,-5,19,16,9,22v-56,10,-53,-45,-51,-99v1,-29,-9,-42,-30,-48v0,-7,-4,-18,5,-19v58,-9,-16,-158,78,-136v6,7,4,26,-10,21v-25,2,-16,40,-16,68v0,32,-7,52,-31,58v35,6,31,49,31,91v0,21,-3,40,15,42","w":113},"}":{"d":"24,-246v98,-22,13,134,81,136v4,4,5,20,-3,21v-58,9,16,171,-80,142v-1,-10,-3,-22,12,-19v25,-2,16,-40,16,-68v0,-33,6,-58,31,-65v-35,-4,-32,-43,-31,-84v0,-27,1,-44,-26,-43v-4,-2,-5,-17,0,-20","w":113},"*":{"d":"76,-243v-2,-9,18,-6,24,-5v5,14,-3,34,-3,51v17,-9,44,-45,53,-9v-10,13,-31,14,-45,23r43,19v6,5,-5,24,-13,22r-38,-27r5,46v1,8,-19,6,-24,4v-5,-13,3,-34,3,-50v-17,9,-44,45,-53,9v10,-13,31,-14,45,-23r-43,-19v-6,-5,5,-24,13,-22r38,27","w":179},"^":{"d":"70,-224v6,-8,30,-8,37,0r53,120v-1,7,-28,6,-31,-1r-41,-97r-39,97v-4,6,-37,11,-29,-5","w":179},"~":{"d":"146,-189v1,-8,18,-5,23,-2v2,35,-14,55,-45,57v-40,2,-36,-38,-68,-41v-17,-2,-22,14,-22,30v0,7,-19,7,-23,2v-11,-63,69,-71,92,-27v11,21,48,12,43,-19","w":179},"'":{"d":"24,-240v3,-8,28,-8,31,0v-3,28,0,62,-7,86v-8,0,-19,4,-20,-5","w":79},"\"":{"d":"87,-240v4,-8,26,-8,30,0r-6,86v-7,-1,-20,5,-20,-5xm24,-240v3,-8,28,-8,31,0v-3,28,0,62,-7,86v-8,0,-19,4,-20,-5","w":144},"&":{"d":"169,-24v-38,39,-153,40,-150,-36v2,-35,23,-51,47,-66v-12,-18,-26,-30,-26,-57v0,-37,27,-55,68,-55v35,0,60,13,60,47v0,41,-33,50,-60,69r59,61v11,-14,15,-37,16,-61v5,-5,33,-9,27,7v1,32,-10,52,-23,71v14,8,21,21,41,22v4,6,5,28,-11,25v-22,-4,-32,-16,-48,-27xm105,-214v-48,-3,-34,54,-13,74v21,-13,42,-20,46,-48v-1,-18,-13,-26,-33,-26xm81,-108v-16,11,-30,21,-31,45v-2,50,73,50,98,22v-25,-20,-46,-43,-67,-67","w":245},"@":{"d":"179,-233v70,0,112,30,112,98v0,56,-16,106,-71,106v-20,0,-33,-9,-36,-26v-22,33,-98,39,-92,-22v5,-47,17,-93,66,-93v19,0,30,11,39,23v-3,-15,14,-30,26,-16v-4,34,-21,70,-14,104v37,24,56,-31,55,-75v-1,-53,-32,-77,-87,-76v-85,2,-114,57,-120,141v-7,91,92,98,158,80v4,2,2,14,1,19v-14,11,-42,13,-66,13v-77,0,-122,-33,-120,-110v2,-100,46,-166,149,-166xm120,-79v0,47,49,20,61,1r8,-46v-7,-12,-15,-22,-30,-23v-30,5,-39,36,-39,68","w":321},"$":{"d":"148,-189v-23,-10,-96,-31,-96,17v0,66,142,31,106,133v-9,26,-37,36,-71,39v-3,17,3,55,-27,40r4,-41v-25,-1,-58,-11,-44,-40v31,19,133,29,108,-38v-32,-38,-128,-27,-102,-112v7,-24,31,-33,61,-36v2,-18,-1,-53,27,-37r-3,37v21,2,50,12,37,38","w":182},"#":{"d":"147,-167v18,-6,37,9,20,22r-23,0r-7,59v18,-6,37,8,20,22r-23,0v-4,21,-3,46,-10,64v-9,0,-22,4,-24,-4r8,-60r-49,0v-4,21,-3,46,-10,64v-9,0,-22,4,-24,-4r8,-60v-18,6,-38,-8,-21,-22r24,0r7,-59v-12,-1,-30,5,-27,-11v-3,-17,17,-9,30,-11v4,-19,3,-44,10,-60v7,-1,21,-4,23,3r-7,57r49,0v4,-19,2,-44,9,-60v8,-2,21,-4,24,3xm69,-145r-7,59r49,0r7,-59r-49,0","w":179},"0":{"d":"94,-231v63,0,76,52,76,117v-1,65,-16,117,-81,117v-64,0,-77,-50,-76,-116v0,-66,17,-118,81,-118xm91,-21v43,0,48,-46,48,-91v0,-47,-2,-94,-47,-94v-44,0,-47,45,-48,91v0,49,3,94,47,94","w":182},"1":{"d":"115,-24v21,-1,64,-4,42,24r-121,-1v-7,-3,-7,-23,2,-23r47,0r0,-173r-49,28v-8,0,-7,-22,0,-24v23,-9,48,-49,79,-31r0,200","w":182},"2":{"d":"117,-151v17,-62,-62,-60,-88,-34v-18,-32,26,-44,57,-46v76,-4,78,89,38,132r-67,73r101,1v6,3,7,25,-2,25r-130,-1v-10,-4,-6,-27,1,-31v30,-39,76,-66,90,-119","w":182},"3":{"d":"118,-171v0,-51,-66,-33,-91,-16v-11,-35,28,-40,59,-44v74,-9,85,103,21,111v28,7,52,20,54,55v5,70,-103,87,-142,47v0,-7,-4,-21,4,-21v26,20,105,31,104,-23v-1,-39,-38,-45,-81,-43v-7,-2,-8,-24,2,-23v40,3,70,-8,70,-43","w":182},"4":{"d":"140,-77v14,1,34,-5,32,12v2,18,-17,12,-32,13v2,23,6,70,-30,48r0,-48r-97,-1v-8,-4,-5,-25,0,-32r84,-141v13,-2,36,-7,43,4r0,145xm110,-202r-74,125r74,0r0,-125","w":182},"5":{"d":"56,-137v56,-8,105,9,105,64v0,73,-95,96,-142,59v0,0,-4,-20,4,-22v31,21,106,24,106,-34v0,-46,-47,-47,-91,-42v-7,0,-9,-4,-9,-11r0,-93v0,-7,4,-12,11,-11r103,0v6,3,6,25,-2,26r-85,0r0,64","w":182},"6":{"d":"49,-125v43,-28,125,-18,119,51v-4,49,-27,77,-77,77v-61,1,-72,-47,-72,-108v-1,-73,24,-124,94,-126v23,0,53,4,42,32v-59,-22,-111,9,-106,74xm94,-21v30,0,41,-22,44,-50v6,-53,-61,-52,-89,-30v1,43,5,80,45,80","w":182},"7":{"d":"157,-227v14,-2,9,23,5,32r-84,193v-6,4,-36,8,-31,-6r86,-193r-109,0v-7,0,-8,-12,-6,-19v0,-4,2,-8,6,-7r133,0","w":182},"8":{"d":"116,-119v26,13,52,26,52,61v0,43,-33,61,-79,61v-45,1,-75,-16,-75,-56v0,-36,27,-49,52,-63v-22,-13,-44,-26,-44,-57v0,-40,30,-58,71,-58v39,0,67,16,67,53v0,32,-22,46,-44,59xm93,-130v38,-10,55,-77,-2,-77v-45,0,-50,53,-16,66v5,3,11,7,18,11xm92,-20v51,4,58,-58,18,-73v-6,-4,-13,-7,-21,-11v-21,11,-44,20,-44,48v0,25,20,34,47,36","w":182},"9":{"d":"91,-231v59,0,74,47,73,108v-2,72,-23,126,-97,126v-24,0,-55,-3,-44,-32v28,9,80,12,95,-16v8,-14,16,-34,16,-57v-12,8,-31,15,-52,14v-46,0,-68,-23,-68,-67v0,-47,27,-76,77,-76xm45,-158v-5,53,60,54,88,32v0,-44,-6,-81,-45,-81v-30,0,-40,20,-43,49","w":182},"%":{"d":"196,-116v36,-1,49,25,49,59v0,36,-16,59,-50,60v-36,1,-48,-25,-48,-60v0,-35,13,-59,49,-59xm196,-17v21,0,24,-18,24,-40v0,-23,-5,-40,-25,-40v-20,0,-23,18,-23,39v-1,24,3,41,24,41xm62,-230v35,0,49,24,49,59v0,35,-15,60,-50,60v-36,0,-49,-23,-48,-60v1,-35,13,-59,49,-59xm62,-131v22,0,23,-18,24,-39v1,-23,-4,-41,-25,-41v-33,0,-34,80,1,80xm195,-229v3,-9,33,-8,24,4r-160,229v-6,3,-31,5,-22,-7","w":257},"+":{"d":"103,-114v24,3,78,-13,60,25r-60,0v-2,22,3,50,-3,68v-4,3,-23,4,-23,-4r0,-64r-61,0v-5,-5,-6,-25,3,-25r58,0r0,-66v5,-5,24,-6,26,2r0,64","w":179,"k":{"+":-3}},"=":{"d":"156,-148v10,0,9,25,0,25r-133,0v-6,-1,-6,-5,-6,-13v0,-7,1,-12,6,-12r133,0xm156,-80v6,0,7,6,7,13v0,7,-1,12,-7,12r-133,0v-6,0,-6,-4,-6,-12v0,-7,0,-13,6,-13r133,0","w":179},"<":{"d":"16,-88v-6,-4,-6,-24,1,-27v49,-21,93,-52,143,-70v3,6,4,28,-5,29r-113,55r118,59v1,8,5,29,-5,24","w":179},">":{"d":"24,-156v-8,-2,-8,-27,-3,-30r142,71v5,4,6,23,0,28r-142,70v-6,-3,-5,-27,3,-29r113,-55","w":179},"\u0162":{"d":"112,24v11,38,-37,45,-62,33v-1,-6,-4,-17,4,-16v21,2,42,-1,30,-23r-9,-20r25,0xm167,-227v8,1,8,24,0,25r-64,0r-3,202v-9,-1,-27,6,-27,-5r0,-197r-67,0v-5,-4,-4,-21,0,-25r161,0","w":175,"k":{"-":28,"\/":19,".":36,":":24,";":20,",":37,"v":16,"\u0135":-11,"\u012d":-13,"\u012b":-17,"\u0129":-23,"C":7,"\u0106":7,"\u0108":7,"\u010c":7,"\u010a":7,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":11,"\u0134":11,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"a":28,"\u0101":28,"\u0103":28,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":26,"q":26,"\u0131":22,"m":22,"\u014b":22,"p":22,"r":22,"\u0155":22,"\u0159":22,"\u0157":22,"\u0169":22,"\u016b":22,"\u016d":22,"\u016f":22,"\u0171":22,"\u0173":22,"e":32,"\u011b":32,"\u0113":32,"\u0115":32,"\u0117":32,"\u0119":32,"n":22,"\u0144":22,"\u0148":22,"\u0146":22,"o":32,"\u014d":32,"\u014f":32,"\u0151":32,"\u0153":32,"s":27,"\u015b":27,"\u015d":27,"\u0161":27,"\u015f":27,"u":22,"x":16,"y":16,"\u0177":16,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"A":28,"\u0100":28,"\u0102":28,"\u0104":28,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"T":-5,"\u0164":-5,"\u0162":-5,"g":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"w":15,"\u0175":15}},"\u0163":{"d":"37,60v-18,-37,55,3,32,-40r-9,-20r25,0v16,21,20,68,-21,64v-10,0,-21,-2,-27,-4xm63,-55v-5,35,25,33,45,30v5,22,-8,28,-28,28v-67,0,-41,-86,-46,-146v-19,4,-37,-3,-25,-24r25,0v-3,-22,-2,-59,29,-38r0,38r43,0v4,4,6,24,-3,24r-40,0r0,88","w":120,"k":{"-":11,"a":4,"\u0101":4,"\u0103":4,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":5,"\u0165":5,"\u0163":5}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Calibri is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Calibri is a modern sans serif family with subtle roundings on stems and
 * corners. It features real italics, small caps, and multiple numeral sets. Its
 * proportions allow high impact in tightly set lines of big and small text alike.
 * Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a
 * warm and soft character.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Luc(as) de Groot
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
//Cufon.registerFont({"w":193,"face":{"font-family":"Calibri","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 15 7 2 3 4 4 3 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-19 -308 318.141 66.1899","underline-thickness":"32.6953","underline-position":"-15.1172","unicode-range":"U+0020-U+017F"},"glyphs":{" ":{"w":81},"\u00a0":{"w":81},"A":{"d":"50,-7v-9,15,-59,13,-43,-11r73,-206v11,-7,56,-9,61,5r73,212v-1,13,-42,13,-49,1r-15,-46r-86,0xm107,-184r-33,97r65,0","w":218,"k":{"-":4,".":-3,",":-4,"?":15,"v":9,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":-5,"\u0134":-5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":29,"\u0176":29,"\u0178":29,"t":11,"\u0165":11,"\u0163":11,"y":11,"\u0177":11,"T":28,"\u0164":28,"\u0162":28,"V":18}},"\u0100":{"d":"162,-284v11,2,10,32,0,32r-107,0v-7,-5,-8,-32,3,-32r104,0xm50,-7v-9,15,-59,13,-43,-11r73,-206v11,-7,56,-9,61,5r73,212v-1,13,-42,13,-49,1r-15,-46r-86,0xm107,-184r-33,97r65,0","w":218,"k":{"-":4,".":-3,",":-4,"?":15,"v":9,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":-5,"\u0134":-5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":29,"\u0176":29,"\u0178":29,"t":11,"\u0165":11,"\u0163":11,"y":11,"\u0177":11,"T":28,"\u0164":28,"\u0162":28,"V":18}},"\u0102":{"d":"110,-272v25,3,12,-26,37,-26v9,0,14,0,15,6v0,32,-19,48,-52,48v-34,0,-53,-15,-53,-48v1,-6,6,-6,15,-6v27,0,11,31,38,26xm50,-7v-9,15,-59,13,-43,-11r73,-206v11,-7,56,-9,61,5r73,212v-1,13,-42,13,-49,1r-15,-46r-86,0xm107,-184r-33,97r65,0","w":218,"k":{"-":4,".":-3,",":-4,"?":15,"v":9,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":-5,"\u0134":-5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":29,"\u0176":29,"\u0178":29,"t":11,"\u0165":11,"\u0163":11,"y":11,"\u0177":11,"T":28,"\u0164":28,"\u0162":28,"V":18}},"\u0104":{"d":"187,21v-6,28,49,-4,26,38v-39,21,-101,-16,-56,-53r9,-9r-16,-49r-86,0v-11,24,-3,63,-52,53v-10,-1,-7,-10,-5,-19r73,-206v11,-7,56,-9,61,5r71,211v-5,12,-19,18,-25,29xm107,-184r-33,97r65,0","w":218,"k":{"-":4,".":-3,",":-4,"?":15,"v":9,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":-5,"\u0134":-5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":14,"\u0174":14,"Y":29,"\u0176":29,"\u0178":29,"t":11,"\u0165":11,"\u0163":11,"y":11,"\u0177":11,"T":28,"\u0164":28,"\u0162":28,"V":18}},"B":{"d":"144,-123v27,6,45,23,45,55v0,72,-77,69,-151,68v-9,0,-13,-6,-13,-15r0,-198v2,-26,47,-12,71,-14v47,-3,80,13,80,57v0,26,-13,40,-32,47xm70,-134v32,2,60,0,60,-30v0,-30,-29,-30,-60,-29r0,59xm70,-35v35,1,72,3,72,-32v0,-34,-35,-35,-72,-33r0,65","w":201,"k":{",":4,"v":4,"W":5,"\u0174":5,"X":9,"Y":12,"\u0176":12,"\u0178":12,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"f":4,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":4,"\u0177":4,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":8,"\u0164":8,"\u0162":8,"V":6}},"C":{"d":"123,-36v27,6,42,-24,58,-14v9,46,-28,54,-66,54v-68,0,-101,-44,-101,-115v0,-72,34,-120,105,-120v34,0,68,6,62,48v0,5,-1,11,-6,11v-15,-8,-29,-21,-54,-20v-43,1,-57,36,-57,79v0,45,14,77,59,77","w":190,"k":{",":1,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-3,"\u0134":-3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u0106":{"d":"168,-289v-20,17,-45,58,-81,40v18,-22,38,-61,81,-44v1,1,1,3,0,4xm123,-36v27,6,42,-24,58,-14v9,46,-28,54,-66,54v-68,0,-101,-44,-101,-115v0,-72,34,-120,105,-120v34,0,68,6,62,48v0,5,-1,11,-6,11v-15,-8,-29,-21,-54,-20v-43,1,-57,36,-57,79v0,45,14,77,59,77","w":190,"k":{",":1,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-3,"\u0134":-3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u0108":{"d":"91,-250v-5,8,-38,10,-41,2v16,-23,47,-67,88,-42r38,42v-3,8,-36,6,-42,-1r-21,-24xm123,-36v27,6,42,-24,58,-14v9,46,-28,54,-66,54v-68,0,-101,-44,-101,-115v0,-72,34,-120,105,-120v34,0,68,6,62,48v0,5,-1,11,-6,11v-15,-8,-29,-21,-54,-20v-43,1,-57,36,-57,79v0,45,14,77,59,77","w":190,"k":{",":1,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-3,"\u0134":-3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u010c":{"d":"133,-291v5,-9,38,-9,41,-1v-17,23,-47,66,-89,41v-12,-14,-26,-26,-37,-42v5,-8,37,-6,42,2r21,24xm123,-36v27,6,42,-24,58,-14v9,46,-28,54,-66,54v-68,0,-101,-44,-101,-115v0,-72,34,-120,105,-120v34,0,68,6,62,48v0,5,-1,11,-6,11v-15,-8,-29,-21,-54,-20v-43,1,-57,36,-57,79v0,45,14,77,59,77","w":190,"k":{",":1,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-3,"\u0134":-3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"\u010a":{"d":"116,-291v19,0,24,4,24,21v0,18,-5,23,-24,23v-18,-1,-25,-5,-25,-22v0,-17,8,-21,25,-22xm123,-36v27,6,42,-24,58,-14v9,46,-28,54,-66,54v-68,0,-101,-44,-101,-115v0,-72,34,-120,105,-120v34,0,68,6,62,48v0,5,-1,11,-6,11v-15,-8,-29,-21,-54,-20v-43,1,-57,36,-57,79v0,45,14,77,59,77","w":190,"k":{",":1,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-3,"\u0134":-3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"T":-2,"\u0164":-2,"\u0162":-2}},"D":{"d":"38,-227v103,-7,176,13,176,110v0,102,-70,124,-176,117v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14xm71,-37v64,6,95,-18,95,-78v0,-57,-31,-82,-95,-76r0,154","w":226,"k":{".":8,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":9,"Y":10,"\u0176":10,"\u0178":10,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8,"T":5,"\u0164":5,"\u0162":5,"V":5}},"\u010e":{"d":"130,-291v5,-9,39,-9,42,-1v-19,21,-46,67,-89,41v-12,-14,-27,-26,-38,-42v5,-8,37,-6,43,2r20,24xm38,-227v103,-7,176,13,176,110v0,102,-70,124,-176,117v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14xm71,-37v64,6,95,-18,95,-78v0,-57,-31,-82,-95,-76r0,154","w":226,"k":{".":8,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":9,"Y":10,"\u0176":10,"\u0178":10,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8,"T":5,"\u0164":5,"\u0162":5,"V":5}},"\u0110":{"d":"42,-227v102,-7,175,12,175,110v0,102,-70,124,-175,117v-9,0,-15,-5,-14,-15r0,-85v-25,10,-34,-20,-19,-36r19,0r0,-77v-1,-10,6,-14,14,-14xm74,-37v64,6,95,-18,95,-78v0,-57,-31,-82,-95,-76r0,55v22,0,50,-7,41,27v0,17,-27,6,-41,9r0,63","w":230,"k":{".":8,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":9,"Y":10,"\u0176":10,"\u0178":10,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8,"T":5,"\u0164":5,"\u0162":5,"V":5}},"E":{"d":"153,-36v10,3,10,33,0,36r-115,0v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14r114,0v8,0,11,33,0,36r-81,0r0,55v24,2,57,-6,74,4v-1,11,5,28,-5,32r-69,0r0,64r82,0","w":175,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"\u011a":{"d":"113,-291v5,-9,39,-9,42,-1v-19,21,-46,67,-89,41v-12,-14,-28,-25,-37,-42v5,-8,37,-6,42,2r21,24xm153,-36v10,3,10,33,0,36r-115,0v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14r114,0v8,0,11,33,0,36r-81,0r0,55v24,2,57,-6,74,4v-1,11,5,28,-5,32r-69,0r0,64r82,0","w":175,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"\u0112":{"d":"33,-260v0,-11,-2,-23,8,-24r103,0v10,0,6,14,7,24v0,5,-2,10,-7,8r-103,0v-5,2,-7,-4,-8,-8xm153,-36v10,3,10,33,0,36r-115,0v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14r114,0v8,0,11,33,0,36r-81,0r0,55v24,2,57,-6,74,4v-1,11,5,28,-5,32r-69,0r0,64r82,0","w":175,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"\u0114":{"d":"53,-298v27,0,11,26,38,26v13,0,22,-8,23,-19v1,-7,4,-7,14,-7v10,0,15,-1,16,6v0,33,-19,48,-53,48v-35,1,-51,-17,-53,-48v2,-6,5,-6,15,-6xm153,-36v10,3,10,33,0,36r-115,0v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14r114,0v8,0,11,33,0,36r-81,0r0,55v24,2,57,-6,74,4v-1,11,5,28,-5,32r-69,0r0,64r82,0","w":175,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"\u0116":{"d":"94,-291v19,0,24,4,24,21v0,17,-6,23,-25,23v-18,-1,-23,-5,-24,-22v-1,-18,8,-21,25,-22xm153,-36v10,3,10,33,0,36r-115,0v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14r114,0v8,0,11,33,0,36r-81,0r0,55v24,2,57,-6,74,4v-1,11,5,28,-5,32r-69,0r0,64r82,0","w":175,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"\u0118":{"d":"139,15v-9,5,-8,21,6,19v13,-1,24,-1,20,18v-15,26,-96,12,-73,-30v3,-7,12,-16,18,-22r-72,0v-9,0,-13,-6,-13,-15r0,-198v0,-9,5,-14,13,-14r114,0v8,0,11,33,0,36r-81,0r0,55v24,2,57,-6,74,4v1,8,4,29,-5,32r-69,0r0,64r82,0v18,13,-3,45,-14,51","w":175,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"F":{"d":"25,-213v0,-9,5,-14,13,-14r110,1v6,5,7,33,-2,36r-75,0r0,62r70,0v10,0,10,34,0,37r-70,0r0,84v-2,12,-41,13,-46,0r0,-206","w":165,"k":{"\/":10,".":28,",":31,"\u0135":-5,"\u012d":-5,"\u012b":-7,"\u0129":-15,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":19,"\u0134":19,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"X":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":10,"\u0101":10,"\u0103":10,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":4,"q":4,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"A":20,"\u0100":20,"\u0102":20,"\u0104":20,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5}},"G":{"d":"131,-231v39,0,81,1,76,48v0,5,-2,10,-6,10v-17,-10,-40,-21,-68,-21v-47,0,-71,31,-73,80v-3,60,49,94,101,72r0,-52v-24,-2,-58,12,-50,-26v1,-4,3,-9,7,-9r76,0v9,0,13,6,13,14v-1,33,3,71,-2,100v-16,14,-47,19,-76,19v-74,0,-116,-41,-116,-115v0,-76,43,-120,118,-120","w":229,"k":{"v":5,"W":1,"\u0174":1,"Y":5,"\u0176":5,"\u0178":5,"x":4,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u011c":{"d":"100,-250v-5,8,-37,9,-42,2v19,-21,46,-68,89,-42r38,42v-3,8,-37,6,-43,-1r-20,-24xm131,-231v39,0,81,1,76,48v0,5,-2,10,-6,10v-17,-10,-40,-21,-68,-21v-47,0,-71,31,-73,80v-3,60,49,94,101,72r0,-52v-24,-2,-58,12,-50,-26v1,-4,3,-9,7,-9r76,0v9,0,13,6,13,14v-1,33,3,71,-2,100v-16,14,-47,19,-76,19v-74,0,-116,-41,-116,-115v0,-76,43,-120,118,-120","w":229,"k":{"v":5,"W":1,"\u0174":1,"Y":5,"\u0176":5,"\u0178":5,"x":4,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u011e":{"d":"83,-298v28,0,12,31,39,26v25,3,12,-26,37,-26v9,0,14,0,15,6v0,33,-19,48,-53,48v-34,0,-52,-15,-52,-48v1,-6,5,-6,14,-6xm131,-231v39,0,81,1,76,48v0,5,-2,10,-6,10v-17,-10,-40,-21,-68,-21v-47,0,-71,31,-73,80v-3,60,49,94,101,72r0,-52v-24,-2,-58,12,-50,-26v1,-4,3,-9,7,-9r76,0v9,0,13,6,13,14v-1,33,3,71,-2,100v-16,14,-47,19,-76,19v-74,0,-116,-41,-116,-115v0,-76,43,-120,118,-120","w":229,"k":{"v":5,"W":1,"\u0174":1,"Y":5,"\u0176":5,"\u0178":5,"x":4,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u0120":{"d":"128,-291v19,0,24,4,24,21v0,18,-5,23,-24,23v-18,-1,-23,-5,-24,-22v0,-17,7,-21,24,-22xm131,-231v39,0,81,1,76,48v0,5,-2,10,-6,10v-17,-10,-40,-21,-68,-21v-47,0,-71,31,-73,80v-3,60,49,94,101,72r0,-52v-24,-2,-58,12,-50,-26v1,-4,3,-9,7,-9r76,0v9,0,13,6,13,14v-1,33,3,71,-2,100v-16,14,-47,19,-76,19v-74,0,-116,-41,-116,-115v0,-76,43,-120,118,-120","w":229,"k":{"v":5,"W":1,"\u0174":1,"Y":5,"\u0176":5,"\u0178":5,"x":4,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u0122":{"d":"123,58v-4,8,-38,12,-35,-3v6,-22,7,-48,46,-40v7,1,10,4,6,10xm131,-231v39,0,81,1,76,48v0,5,-2,10,-6,10v-17,-10,-40,-21,-68,-21v-47,0,-71,31,-73,80v-3,60,49,94,101,72r0,-52v-24,-2,-58,12,-50,-26v1,-4,3,-9,7,-9r76,0v9,0,13,6,13,14v-1,33,3,71,-2,100v-16,14,-47,19,-76,19v-74,0,-116,-41,-116,-115v0,-76,43,-120,118,-120","w":229,"k":{"v":5,"W":1,"\u0174":1,"Y":5,"\u0176":5,"\u0178":5,"x":4,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"H":{"d":"156,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-92r-85,0r0,92v-4,11,-40,11,-46,0r0,-215v3,-12,42,-12,46,0r0,83r85,0r0,-83","w":227,"k":{"\u012b":-2,"\u0129":-5}},"\u0124":{"d":"92,-250v-5,8,-39,10,-42,2v17,-23,47,-67,89,-42r37,42v-3,8,-36,5,-42,-1r-21,-24xm156,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-92r-85,0r0,92v-4,11,-40,11,-46,0r0,-215v3,-12,42,-12,46,0r0,83r85,0r0,-83","w":227,"k":{"\u012b":-2,"\u0129":-5}},"\u0126":{"d":"76,-159r0,31r85,0r0,-31r-85,0xm161,-221v4,-12,44,-11,46,0r0,29v23,-9,38,18,20,33r-20,0r0,153v-4,11,-40,11,-46,0r0,-86r-85,0r0,86v-4,11,-40,11,-46,0r0,-153v-23,9,-38,-18,-20,-33r20,0v-3,-26,1,-44,34,-36v19,-2,10,21,12,36r85,0r0,-29","w":236},"I":{"d":"25,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-215","w":95},"\u0128":{"d":"53,-283v9,7,33,15,31,-5v2,-6,30,-8,27,3v1,25,-14,41,-38,41v-23,0,-31,-15,-49,-18v-16,-2,-3,21,-25,18v-9,-1,-14,0,-14,-7v-4,-38,42,-52,68,-32xm25,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-215","w":95},"\u012a":{"d":"-11,-260v0,-11,-2,-23,8,-24r103,0v10,0,6,14,7,24v0,5,-2,10,-7,8r-103,0v-5,2,-7,-4,-8,-8xm25,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-215","w":95},"\u012c":{"d":"10,-298v28,0,11,26,38,26v13,0,22,-8,23,-19v1,-7,4,-7,14,-7v10,0,15,-1,16,6v0,33,-19,48,-53,48v-35,1,-51,-17,-53,-48v2,-6,5,-6,15,-6xm25,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-215","w":95},"\u0130":{"d":"49,-291v19,0,24,4,24,21v0,17,-6,23,-25,23v-18,-1,-23,-5,-24,-22v-1,-18,8,-21,25,-22xm25,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-215","w":95},"\u012e":{"d":"81,46v2,21,-20,16,-36,18v-38,6,-52,-36,-26,-56v3,-4,11,-8,6,-13r0,-216v2,-12,42,-12,46,0r-3,224v-6,8,-19,11,-19,24v0,16,37,-5,32,19","w":95},"\u0132":{"d":"25,-221v4,-12,43,-11,46,0r0,215v-4,11,-40,11,-46,0r0,-215xm144,-221v4,-12,45,-11,47,0r0,158v10,57,-58,86,-94,53v1,-12,-4,-31,5,-34v17,11,49,10,42,-21r0,-156","w":215},"J":{"d":"48,-221v4,-12,45,-11,47,0r0,158v10,57,-58,86,-94,53v1,-12,-4,-31,5,-34v17,11,49,10,42,-21r0,-156","w":119,"k":{".":3,",":4,"X":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0134":{"d":"46,-250v-6,8,-38,10,-42,2v16,-23,47,-67,88,-42r38,42v-3,8,-36,5,-42,-1r-21,-24xm48,-221v4,-12,45,-11,47,0r0,158v10,57,-58,86,-94,53v1,-12,-4,-31,5,-34v17,11,49,10,42,-21r0,-156","w":119,"k":{".":3,",":4,"X":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"K":{"d":"138,-221v6,-11,44,-12,49,0v-16,39,-48,65,-70,98r74,116v-3,13,-44,10,-51,0r-69,-108r0,108v-2,12,-41,13,-46,0r0,-214v3,-12,42,-12,46,0r0,97","w":196,"k":{"-":7,"v":16,"\u0135":-7,"\u012d":-9,"\u012b":-8,"\u0129":-17,"C":13,"\u0106":13,"\u0108":13,"\u010c":13,"\u010a":13,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"O":16,"\u014c":16,"\u014e":16,"\u0150":16,"\u0152":16,"Q":16,"U":5,"\u0168":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5,"W":4,"\u0174":4,"a":5,"\u0101":5,"\u0103":5,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"\u0131":4,"m":4,"\u014b":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u0169":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":6,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":9,"\u0165":9,"\u0163":9,"u":4,"y":14,"\u0177":14,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"w":15,"\u0175":15}},"\u0136":{"d":"106,58v-4,9,-33,9,-36,1v7,-23,6,-54,47,-44v7,0,8,4,6,10xm138,-221v6,-11,44,-12,49,0v-16,39,-48,65,-70,98r74,116v-3,13,-44,10,-51,0r-69,-108r0,108v-2,12,-41,13,-46,0r0,-214v3,-12,42,-12,46,0r0,97","w":196,"k":{"-":7,"v":16,"\u0135":-7,"\u012d":-9,"\u012b":-8,"\u0129":-17,"C":13,"\u0106":13,"\u0108":13,"\u010c":13,"\u010a":13,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"O":16,"\u014c":16,"\u014e":16,"\u0150":16,"\u0152":16,"Q":16,"U":5,"\u0168":5,"\u016a":5,"\u016c":5,"\u016e":5,"\u0170":5,"\u0172":5,"W":4,"\u0174":4,"a":5,"\u0101":5,"\u0103":5,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"\u0131":4,"m":4,"\u014b":4,"p":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u0169":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":6,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":9,"\u0165":9,"\u0163":9,"u":4,"y":14,"\u0177":14,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"w":15,"\u0175":15}},"L":{"d":"143,-38v10,3,10,34,0,38r-105,0v-9,0,-13,-6,-13,-15r0,-206v3,-12,42,-12,46,0r0,183r72,0","w":152,"k":{",":-5,"v":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"J":-6,"\u0134":-6,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"U":9,"\u0168":9,"\u016a":9,"\u016c":9,"\u016e":9,"\u0170":9,"\u0172":9,"W":20,"\u0174":20,"Y":32,"\u0176":32,"\u0178":32,"f":5,"t":7,"\u0165":7,"\u0163":7,"y":15,"\u0177":15,"T":26,"\u0164":26,"\u0162":26,"V":28,"w":12,"\u0175":12}},"\u0139":{"d":"120,-289v-20,18,-46,58,-82,40v19,-20,37,-62,81,-44v1,1,2,3,1,4xm143,-38v10,3,10,34,0,38r-105,0v-9,0,-13,-6,-13,-15r0,-206v3,-12,42,-12,46,0r0,183r72,0","w":152,"k":{",":-5,"v":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"J":-6,"\u0134":-6,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"U":9,"\u0168":9,"\u016a":9,"\u016c":9,"\u016e":9,"\u0170":9,"\u0172":9,"W":20,"\u0174":20,"Y":32,"\u0176":32,"\u0178":32,"f":5,"t":7,"\u0165":7,"\u0163":7,"y":15,"\u0177":15,"T":26,"\u0164":26,"\u0162":26,"V":28,"w":12,"\u0175":12}},"\u013d":{"d":"122,-178v-1,8,-34,11,-30,-2r14,-53v2,-12,32,-11,39,-4xm143,-38v10,3,10,34,0,38r-105,0v-9,0,-13,-6,-13,-15r0,-206v3,-12,42,-12,46,0r0,183r72,0","w":154},"\u013b":{"d":"89,58v-4,9,-33,9,-36,1v7,-23,6,-53,47,-44v7,2,10,4,6,10xm143,-38v10,3,10,34,0,38r-105,0v-9,0,-13,-6,-13,-15r0,-206v3,-12,42,-12,46,0r0,183r72,0","w":152,"k":{",":-5,"v":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"J":-6,"\u0134":-6,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"U":9,"\u0168":9,"\u016a":9,"\u016c":9,"\u016e":9,"\u0170":9,"\u0172":9,"W":20,"\u0174":20,"Y":32,"\u0176":32,"\u0178":32,"f":5,"t":7,"\u0165":7,"\u0163":7,"y":15,"\u0177":15,"T":26,"\u0164":26,"\u0162":26,"V":28,"w":12,"\u0175":12}},"\u0141":{"d":"146,-38v10,2,11,34,0,38r-104,0v-9,0,-15,-5,-14,-15r0,-70v-7,3,-15,15,-23,10v0,-13,-4,-29,5,-35r18,-11r0,-100v3,-12,42,-11,47,0r0,71r33,-22v8,-2,7,5,7,16v2,28,-25,29,-40,42r0,76r71,0","w":155},"\u013f":{"d":"158,-144v20,0,25,6,26,26v0,22,-6,27,-27,28v-20,0,-25,-7,-26,-27v0,-21,6,-27,27,-27xm143,-38v10,3,10,34,0,38r-105,0v-9,0,-13,-6,-13,-15r0,-206v3,-12,42,-12,46,0r0,183r72,0","w":202},"M":{"d":"209,-201v-1,-32,81,-40,81,-8r0,203v-3,11,-38,11,-44,0r0,-185r-66,184v-3,12,-43,13,-47,0r-64,-184r0,185v-3,10,-39,11,-44,0r0,-203v-2,-29,66,-23,78,-5r55,148","w":314},"N":{"d":"171,-221v4,-11,39,-10,41,0r0,205v1,24,-54,20,-63,2r-84,-163r1,170v-1,12,-38,13,-41,0r0,-204v-1,-25,57,-21,67,-4v28,49,55,102,80,152","w":237},"\u0143":{"d":"183,-289v-20,17,-45,58,-81,40v18,-22,37,-61,81,-44v1,1,1,3,0,4xm171,-221v4,-11,39,-10,41,0r0,205v1,24,-54,20,-63,2r-84,-163r1,170v-1,12,-38,13,-41,0r0,-204v-1,-25,57,-21,67,-4v28,49,55,102,80,152","w":237},"\u0147":{"d":"141,-291v5,-9,39,-9,42,-1v-19,21,-46,67,-89,41v-12,-14,-28,-25,-37,-42v5,-8,37,-6,42,2r21,24xm171,-221v4,-11,39,-10,41,0r0,205v1,24,-54,20,-63,2r-84,-163r1,170v-1,12,-38,13,-41,0r0,-204v-1,-25,57,-21,67,-4v28,49,55,102,80,152","w":237},"\u0145":{"d":"118,58v-4,9,-32,9,-36,1v7,-23,6,-54,47,-44v7,0,8,4,6,10xm171,-221v4,-11,39,-10,41,0r0,205v1,24,-54,20,-63,2r-84,-163r1,170v-1,12,-38,13,-41,0r0,-204v-1,-25,57,-21,67,-4v28,49,55,102,80,152","w":237},"\u014a":{"d":"164,-221v5,-12,40,-10,42,0r0,222v0,42,-19,67,-66,63v-20,3,-27,-23,-16,-38v19,8,42,1,36,-26r-94,-167r1,161v-2,11,-37,11,-42,0r0,-205v1,-26,58,-21,64,-1r76,136","w":230},"O":{"d":"124,-232v73,0,107,40,105,116v-1,75,-35,119,-109,120v-75,1,-106,-41,-106,-116v0,-75,36,-120,110,-120xm121,-34v46,0,59,-35,60,-80v0,-46,-14,-80,-59,-80v-43,0,-59,32,-59,79v0,48,13,80,58,81","w":243,"k":{".":5,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":12,"Y":11,"\u0176":11,"\u0178":11,"Z":6,"\u0179":6,"\u017d":6,"\u017b":6,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":8,"\u0164":8,"\u0162":8,"V":6}},"\u014c":{"d":"63,-260v0,-11,-2,-23,8,-24r103,0v10,0,6,14,7,24v0,5,-2,10,-7,8r-103,0v-5,2,-7,-4,-8,-8xm124,-232v73,0,107,40,105,116v-1,75,-35,119,-109,120v-75,1,-106,-41,-106,-116v0,-75,36,-120,110,-120xm121,-34v46,0,59,-35,60,-80v0,-46,-14,-80,-59,-80v-43,0,-59,32,-59,79v0,48,13,80,58,81","w":243,"k":{".":5,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":12,"Y":11,"\u0176":11,"\u0178":11,"Z":6,"\u0179":6,"\u017d":6,"\u017b":6,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":8,"\u0164":8,"\u0162":8,"V":6}},"\u014e":{"d":"84,-298v28,0,10,26,38,26v13,0,21,-7,22,-19v1,-7,5,-7,15,-7v10,0,14,0,16,6v-2,31,-19,48,-53,48v-34,0,-53,-15,-53,-48v1,-6,6,-6,15,-6xm124,-232v73,0,107,40,105,116v-1,75,-35,119,-109,120v-75,1,-106,-41,-106,-116v0,-75,36,-120,110,-120xm121,-34v46,0,59,-35,60,-80v0,-46,-14,-80,-59,-80v-43,0,-59,32,-59,79v0,48,13,80,58,81","w":243,"k":{".":5,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":12,"Y":11,"\u0176":11,"\u0178":11,"Z":6,"\u0179":6,"\u017d":6,"\u017b":6,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":8,"\u0164":8,"\u0162":8,"V":6}},"\u0150":{"d":"97,-292v8,-8,44,-10,50,-1v-23,18,-34,57,-78,47v2,-17,20,-30,28,-46xm173,-292v8,-9,45,-10,51,-1v-23,18,-32,52,-77,49v-4,1,-9,-3,-6,-6xm124,-232v73,0,107,40,105,116v-1,75,-35,119,-109,120v-75,1,-106,-41,-106,-116v0,-75,36,-120,110,-120xm121,-34v46,0,59,-35,60,-80v0,-46,-14,-80,-59,-80v-43,0,-59,32,-59,79v0,48,13,80,58,81","w":243,"k":{".":5,",":8,"J":4,"\u0134":4,"W":4,"\u0174":4,"X":12,"Y":11,"\u0176":11,"\u0178":11,"Z":6,"\u0179":6,"\u017d":6,"\u017b":6,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":5,"\u0100":5,"\u0102":5,"\u0104":5,"T":8,"\u0164":8,"\u0162":8,"V":6}},"\u0152":{"d":"14,-112v-4,-91,73,-142,155,-110v2,-3,6,-5,11,-5r111,0v9,-1,5,16,6,26v0,5,-2,10,-6,10r-81,0r0,55r68,0v10,2,11,33,0,36r-68,0r0,64r84,1v6,4,8,35,-3,35r-111,0v-6,1,-10,-3,-11,-7v-14,7,-29,11,-49,11v-75,1,-103,-42,-106,-116xm121,-34v18,0,31,-5,42,-13r0,-134v-46,-31,-111,0,-100,66v-2,49,13,80,58,81","w":314,"k":{"-":7,"v":9,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":10,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"t":5,"\u0165":5,"\u0163":5,"y":9,"\u0177":9,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"w":7,"\u0175":7}},"P":{"d":"40,-227v73,-3,141,-1,141,69v-1,61,-44,83,-110,79r0,73v-4,11,-40,11,-46,0r0,-205v0,-11,5,-16,15,-16xm71,-115v36,3,61,-5,61,-40v0,-34,-26,-39,-61,-37r0,77","w":191,"k":{"-":8,"\/":15,".":40,",":40,"J":22,"\u0134":22,"X":8,"Y":2,"\u0176":2,"\u0178":2,"Z":5,"\u0179":5,"\u017d":5,"\u017b":5,"a":7,"\u0101":7,"\u0103":7,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":4,"q":4,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":-3,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"t":-3,"\u0165":-3,"\u0163":-3,"y":-3,"\u0177":-3,"A":24,"\u0100":24,"\u0102":24,"\u0104":24,"T":1,"\u0164":1,"\u0162":1,"V":2}},"Q":{"d":"199,-25v19,21,68,20,47,66v-36,-3,-61,-25,-81,-46v-11,4,-29,9,-45,9v-75,1,-106,-41,-106,-116v0,-75,36,-120,110,-120v73,0,105,41,105,115v0,40,-10,72,-30,92xm121,-34v46,0,59,-35,60,-80v0,-46,-14,-80,-59,-80v-43,0,-59,32,-59,79v0,49,13,81,58,81","w":246,"k":{"\u0162":7,"}":-5,"]":-6,")":-5,"\/":-19,";":-11,",":-17,"x":-4,"j":-14,"\u0123":-10,"\u0121":-10,"\u011f":-10,"\u011d":-10,"g":-10,"\u0178":10,"\u0176":10,"Y":10,"X":-1,"\u0174":3,"W":3,"V":6,"\u0164":7,"T":7,"\u0134":-6,"J":-6}},"R":{"d":"182,-165v0,34,-19,50,-44,59v31,20,46,65,55,103v-9,5,-44,9,-49,-4v-21,-32,-15,-91,-73,-86r0,87v-4,11,-40,11,-46,0r0,-207v7,-29,62,-9,98,-13v35,5,58,22,59,61xm71,-128v34,2,62,-1,63,-32v1,-32,-29,-34,-63,-32r0,64","w":202,"k":{".":-2,"v":3,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":7,"\u0176":7,"\u0178":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"y":4,"\u0177":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":4,"\u0175":4}},"\u0154":{"d":"155,-289v-20,18,-45,59,-82,40v19,-20,37,-62,81,-44v1,1,2,3,1,4xm182,-165v0,34,-19,50,-44,59v31,20,46,65,55,103v-9,5,-44,9,-49,-4v-21,-32,-15,-91,-73,-86r0,87v-4,11,-40,11,-46,0r0,-207v7,-29,62,-9,98,-13v35,5,58,22,59,61xm71,-128v34,2,62,-1,63,-32v1,-32,-29,-34,-63,-32r0,64","w":202,"k":{".":-2,"v":3,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":7,"\u0176":7,"\u0178":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"y":4,"\u0177":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":4,"\u0175":4}},"\u0158":{"d":"121,-291v5,-8,39,-9,42,-1v-19,21,-46,67,-89,41v-12,-14,-28,-25,-37,-42v5,-8,37,-6,42,2r21,24xm182,-165v0,34,-19,50,-44,59v31,20,46,65,55,103v-9,5,-44,9,-49,-4v-21,-32,-15,-91,-73,-86r0,87v-4,11,-40,11,-46,0r0,-207v7,-29,62,-9,98,-13v35,5,58,22,59,61xm71,-128v34,2,62,-1,63,-32v1,-32,-29,-34,-63,-32r0,64","w":202,"k":{".":-2,"v":3,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":7,"\u0176":7,"\u0178":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"y":4,"\u0177":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":4,"\u0175":4}},"\u0156":{"d":"108,58v-4,9,-33,9,-36,1v7,-23,6,-54,47,-44v7,0,8,4,6,10xm182,-165v0,34,-19,50,-44,59v31,20,46,65,55,103v-9,5,-44,9,-49,-4v-21,-32,-15,-91,-73,-86r0,87v-4,11,-40,11,-46,0r0,-207v7,-29,62,-9,98,-13v35,5,58,22,59,61xm71,-128v34,2,62,-1,63,-32v1,-32,-29,-34,-63,-32r0,64","w":202,"k":{".":-2,"v":3,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":3,"\u0174":3,"Y":7,"\u0176":7,"\u0178":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"y":4,"\u0177":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":4,"\u0175":4}},"S":{"d":"140,-180v-20,-19,-95,-25,-74,22v30,30,94,29,94,90v0,49,-36,72,-85,72v-34,0,-69,-4,-64,-46v1,-4,2,-10,7,-10v23,22,112,31,89,-23v-29,-31,-92,-29,-92,-91v0,-67,94,-84,131,-46v-2,11,4,30,-6,32","w":170,"k":{"-":1,"v":4,"J":1,"\u0134":1,"W":3,"\u0174":3,"X":3,"Y":7,"\u0176":7,"\u0178":7,"y":5,"\u0177":5,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":3,"\u0175":3}},"\u015a":{"d":"148,-289v-22,16,-45,59,-82,40v19,-20,37,-62,81,-44v1,1,2,3,1,4xm140,-180v-20,-19,-95,-25,-74,22v30,30,94,29,94,90v0,49,-36,72,-85,72v-34,0,-69,-4,-64,-46v1,-4,2,-10,7,-10v23,22,112,31,89,-23v-29,-31,-92,-29,-92,-91v0,-67,94,-84,131,-46v-2,11,4,30,-6,32","w":170,"k":{"-":1,"v":4,"J":1,"\u0134":1,"W":3,"\u0174":3,"X":3,"Y":7,"\u0176":7,"\u0178":7,"y":5,"\u0177":5,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":3,"\u0175":3}},"\u015c":{"d":"65,-250v-5,8,-37,9,-42,2v19,-21,46,-68,89,-42r38,42v-3,8,-37,6,-43,-1r-20,-24xm140,-180v-20,-19,-95,-25,-74,22v30,30,94,29,94,90v0,49,-36,72,-85,72v-34,0,-69,-4,-64,-46v1,-4,2,-10,7,-10v23,22,112,31,89,-23v-29,-31,-92,-29,-92,-91v0,-67,94,-84,131,-46v-2,11,4,30,-6,32","w":170,"k":{"-":1,"v":4,"J":1,"\u0134":1,"W":3,"\u0174":3,"X":3,"Y":7,"\u0176":7,"\u0178":7,"y":5,"\u0177":5,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":3,"\u0175":3}},"\u0160":{"d":"109,-291v5,-9,38,-9,41,-1v-16,23,-47,66,-88,41v-12,-14,-27,-26,-38,-42v5,-7,36,-5,42,2r21,24xm140,-180v-20,-19,-95,-25,-74,22v30,30,94,29,94,90v0,49,-36,72,-85,72v-34,0,-69,-4,-64,-46v1,-4,2,-10,7,-10v23,22,112,31,89,-23v-29,-31,-92,-29,-92,-91v0,-67,94,-84,131,-46v-2,11,4,30,-6,32","w":170,"k":{"-":1,"v":4,"J":1,"\u0134":1,"W":3,"\u0174":3,"X":3,"Y":7,"\u0176":7,"\u0178":7,"y":5,"\u0177":5,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":3,"\u0175":3}},"\u015e":{"d":"129,-122v51,30,31,123,-31,124v31,38,-17,83,-62,54v-2,-6,-3,-22,5,-22v16,1,39,2,28,-18r-6,-13v-28,-4,-58,-7,-52,-45v1,-4,2,-10,7,-10v23,22,112,31,89,-23v-29,-31,-92,-29,-92,-91v0,-67,94,-84,131,-46v-2,11,4,30,-6,32v-20,-19,-95,-25,-74,22v15,18,43,24,63,36","w":170,"k":{"-":1,"v":4,"J":1,"\u0134":1,"W":3,"\u0174":3,"X":3,"Y":7,"\u0176":7,"\u0178":7,"y":5,"\u0177":5,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":4,"\u0164":4,"\u0162":4,"V":4,"w":3,"\u0175":3}},"T":{"d":"169,-227v10,2,11,33,0,37r-57,0r0,184v-4,11,-40,11,-46,0r0,-184r-57,0v-10,-3,-10,-34,0,-37r160,0","w":178,"k":{"-":25,"\/":21,".":30,":":15,";":15,",":33,"v":11,"\u0135":-13,"\u012d":-14,"\u012b":-17,"\u0129":-23,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":13,"\u0134":13,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"a":27,"\u0101":27,"\u0103":27,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":26,"q":26,"\u0131":18,"m":18,"\u014b":18,"p":18,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"e":31,"\u011b":31,"\u0113":31,"\u0115":31,"\u0117":31,"\u0119":31,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"o":31,"\u014d":31,"\u014f":31,"\u0151":31,"\u0153":31,"s":24,"\u015b":24,"\u015d":24,"\u0161":24,"\u015f":24,"u":18,"x":13,"y":11,"\u0177":11,"z":19,"\u017a":19,"\u017e":19,"\u017c":19,"A":28,"\u0100":28,"\u0102":28,"\u0104":28,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"T":-4,"\u0164":-4,"\u0162":-4,"g":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"w":11,"\u0175":11}},"\u0164":{"d":"111,-291v5,-9,38,-9,41,-1v-17,23,-47,66,-89,41v-12,-14,-26,-26,-37,-42v5,-8,37,-6,42,2r21,24xm169,-227v10,2,11,33,0,37r-57,0r0,184v-4,11,-40,11,-46,0r0,-184r-57,0v-10,-3,-10,-34,0,-37r160,0","w":178,"k":{"-":25,"\/":21,".":30,":":15,";":15,",":33,"v":11,"\u0135":-13,"\u012d":-14,"\u012b":-17,"\u0129":-23,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":13,"\u0134":13,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"a":27,"\u0101":27,"\u0103":27,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":26,"q":26,"\u0131":18,"m":18,"\u014b":18,"p":18,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"e":31,"\u011b":31,"\u0113":31,"\u0115":31,"\u0117":31,"\u0119":31,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"o":31,"\u014d":31,"\u014f":31,"\u0151":31,"\u0153":31,"s":24,"\u015b":24,"\u015d":24,"\u0161":24,"\u015f":24,"u":18,"x":13,"y":11,"\u0177":11,"z":19,"\u017a":19,"\u017e":19,"\u017c":19,"A":28,"\u0100":28,"\u0102":28,"\u0104":28,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"T":-4,"\u0164":-4,"\u0162":-4,"g":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"w":11,"\u0175":11}},"\u0166":{"d":"169,-227v11,4,10,37,0,37r-57,0r0,59v22,2,52,-12,46,26v-3,17,-30,7,-46,10r0,89v-4,11,-40,11,-46,0r0,-89v-22,-2,-52,11,-46,-26v3,-17,30,-7,46,-10r0,-59r-57,0v-10,-3,-10,-34,0,-37r160,0","w":178},"U":{"d":"165,-221v2,-12,43,-11,45,0r0,136v0,60,-34,89,-94,89v-58,0,-91,-28,-91,-87r0,-138v3,-12,41,-11,46,0r0,134v0,34,15,53,47,53v76,0,37,-118,47,-187","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"\u0168":{"d":"122,-283v9,7,33,15,31,-5v2,-6,30,-8,27,3v1,25,-14,41,-38,41v-23,1,-31,-16,-49,-18v-16,-2,-3,21,-25,18v-9,-1,-14,0,-14,-7v-4,-38,42,-52,68,-32xm165,-221v2,-12,43,-11,45,0r0,136v0,60,-34,89,-94,89v-58,0,-91,-28,-91,-87r0,-138v3,-12,41,-11,46,0r0,134v0,34,15,53,47,53v76,0,37,-118,47,-187","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"\u016a":{"d":"58,-260v0,-11,-2,-23,8,-24r103,0v10,0,6,14,7,24v0,5,-2,10,-7,8r-103,0v-5,2,-7,-4,-8,-8xm165,-221v2,-12,43,-11,45,0r0,136v0,60,-34,89,-94,89v-58,0,-91,-28,-91,-87r0,-138v3,-12,41,-11,46,0r0,134v0,34,15,53,47,53v76,0,37,-118,47,-187","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"\u016c":{"d":"79,-298v27,0,12,30,38,26v26,4,13,-26,38,-26v9,0,14,0,15,6v0,33,-19,48,-53,48v-34,1,-52,-15,-52,-48v1,-6,5,-6,14,-6xm165,-221v2,-12,43,-11,45,0r0,136v0,60,-34,89,-94,89v-58,0,-91,-28,-91,-87r0,-138v3,-12,41,-11,46,0r0,134v0,34,15,53,47,53v76,0,37,-118,47,-187","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"\u016e":{"d":"118,-308v25,0,41,10,41,34v-1,25,-18,35,-43,36v-26,0,-41,-11,-41,-35v0,-25,17,-35,43,-35xm118,-258v10,0,14,-5,14,-15v0,-10,-4,-15,-15,-15v-10,0,-14,5,-15,14v1,10,4,17,16,16xm165,-221v2,-12,43,-11,45,0r0,136v0,60,-34,89,-94,89v-58,0,-91,-28,-91,-87r0,-138v3,-12,41,-11,46,0r0,134v0,34,15,53,47,53v76,0,37,-118,47,-187","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"\u0170":{"d":"91,-292v8,-8,44,-10,50,-1v-23,18,-34,57,-78,47v2,-17,20,-30,28,-46xm167,-292v8,-9,45,-10,51,-1v-23,18,-32,52,-77,49v-4,1,-9,-3,-6,-6xm165,-221v2,-12,43,-11,45,0r0,136v0,60,-34,89,-94,89v-58,0,-91,-28,-91,-87r0,-138v3,-12,41,-11,46,0r0,134v0,34,15,53,47,53v76,0,37,-118,47,-187","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"\u0172":{"d":"172,35v12,23,-13,32,-36,29v-41,6,-50,-43,-21,-61v-59,1,-89,-28,-90,-86r0,-138v2,-12,42,-12,46,0v8,70,-29,187,47,187v76,0,38,-118,47,-187v1,-12,42,-12,45,0v-3,88,19,191,-50,223v-6,8,-18,13,-19,25v-1,12,21,4,31,8","w":235,"k":{".":5,",":4,"J":6,"\u0134":6,"A":10,"\u0100":10,"\u0102":10,"\u0104":10}},"V":{"d":"163,-219v5,-18,61,-14,43,9r-70,207v-9,7,-39,5,-54,2v-4,0,-7,-3,-7,-8r-71,-211v1,-14,45,-12,49,0r56,176","w":212,"k":{"-":15,"\/":17,".":34,":":11,";":15,",":28,"\u0135":-11,"\u012d":-15,"\u012b":-20,"\u0129":-23,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":6,"\u011c":6,"\u011e":6,"\u0120":6,"\u0122":6,"J":14,"\u0134":14,"O":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"Q":7,"a":20,"\u0101":20,"\u0103":20,"c":19,"\u0107":19,"\u0109":19,"\u010d":19,"\u010b":19,"d":16,"q":16,"\u0131":10,"m":10,"\u014b":10,"p":10,"r":10,"\u0155":10,"\u0159":10,"\u0157":10,"\u0169":10,"\u016b":10,"\u016d":10,"\u016f":10,"\u0171":10,"\u0173":10,"e":18,"\u011b":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"n":10,"\u0144":10,"\u0148":10,"\u0146":10,"o":17,"\u014d":17,"\u014f":17,"\u0151":17,"\u0153":17,"s":15,"\u015b":15,"\u015d":15,"\u0161":15,"\u015f":15,"u":10,"y":5,"\u0177":5,"z":14,"\u017a":14,"\u017e":14,"\u017c":14,"A":19,"\u0100":19,"\u0102":19,"\u0104":19,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"V":-2,"g":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18}},"W":{"d":"274,-218v1,-16,47,-15,44,-2r-57,215v-10,10,-58,12,-63,-7r-36,-144r-37,151v-10,10,-59,11,-64,-7r-53,-208v0,-13,24,-8,36,-8v7,0,12,2,12,9r40,174r42,-173v1,-16,49,-16,53,0r43,173","w":326,"k":{"-":11,".":31,";":20,",":30,"v":4,"\u0135":-10,"\u012d":-9,"\u012b":-11,"\u0129":-19,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":15,"\u0134":15,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"X":3,"a":13,"\u0101":13,"\u0103":13,"c":14,"\u0107":14,"\u0109":14,"\u010d":14,"\u010b":14,"d":12,"q":12,"\u0131":10,"m":10,"\u014b":10,"p":10,"r":10,"\u0155":10,"\u0159":10,"\u0157":10,"\u0169":10,"\u016b":10,"\u016d":10,"\u016f":10,"\u0171":10,"\u0173":10,"e":13,"\u011b":13,"\u0113":13,"\u0115":13,"\u0117":13,"\u0119":13,"n":10,"\u0144":10,"\u0148":10,"\u0146":10,"o":14,"\u014d":14,"\u014f":14,"\u0151":14,"\u0153":14,"s":12,"\u015b":12,"\u015d":12,"\u0161":12,"\u015f":12,"u":10,"y":6,"\u0177":6,"A":17,"\u0100":17,"\u0102":17,"\u0104":17,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"g":10,"\u011d":10,"\u011f":10,"\u0121":10,"\u0123":10}},"\u0174":{"d":"145,-250v-5,8,-37,9,-42,2v19,-21,46,-68,89,-42r38,42v-3,8,-37,6,-43,-1r-20,-24xm274,-218v1,-16,47,-15,44,-2r-57,215v-10,10,-58,12,-63,-7r-36,-144r-37,151v-10,10,-59,11,-64,-7r-53,-208v0,-13,24,-8,36,-8v7,0,12,2,12,9r40,174r42,-173v1,-16,49,-16,53,0r43,173","w":326,"k":{"-":11,".":31,";":20,",":30,"v":4,"\u0135":-10,"\u012d":-9,"\u012b":-11,"\u0129":-19,"C":5,"\u0106":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":15,"\u0134":15,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"X":3,"a":13,"\u0101":13,"\u0103":13,"c":14,"\u0107":14,"\u0109":14,"\u010d":14,"\u010b":14,"d":12,"q":12,"\u0131":10,"m":10,"\u014b":10,"p":10,"r":10,"\u0155":10,"\u0159":10,"\u0157":10,"\u0169":10,"\u016b":10,"\u016d":10,"\u016f":10,"\u0171":10,"\u0173":10,"e":13,"\u011b":13,"\u0113":13,"\u0115":13,"\u0117":13,"\u0119":13,"n":10,"\u0144":10,"\u0148":10,"\u0146":10,"o":14,"\u014d":14,"\u014f":14,"\u0151":14,"\u0153":14,"s":12,"\u015b":12,"\u015d":12,"\u0161":12,"\u015f":12,"u":10,"y":6,"\u0177":6,"A":17,"\u0100":17,"\u0102":17,"\u0104":17,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"g":10,"\u011d":10,"\u011f":10,"\u0121":10,"\u0123":10}},"X":{"d":"133,-117r58,109v2,15,-29,8,-45,8v-21,-25,-31,-60,-48,-88v-17,29,-29,62,-49,88v-15,2,-52,8,-38,-17r55,-100r-55,-103v-2,-15,29,-8,44,-7v21,21,29,55,46,81r41,-79v9,-5,34,-5,45,-1v-8,41,-38,72,-54,109","w":198,"k":{"-":11,"v":13,"C":12,"\u0106":12,"\u0108":12,"\u010c":12,"\u010a":12,"G":13,"\u011c":13,"\u011e":13,"\u0120":13,"\u0122":13,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"d":8,"q":8,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":8,"\u0165":8,"\u0163":8,"u":6,"y":11,"\u0177":11,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":1,"\u011d":1,"\u011f":1,"\u0121":1,"\u0123":1,"w":11,"\u0175":11}},"Y":{"d":"117,-6v-6,12,-43,10,-47,0r0,-80r-66,-134v-1,-15,30,-8,44,-7v22,27,31,67,47,99v16,-32,25,-71,45,-99v18,-2,52,-9,39,17r-62,124r0,80","w":187,"k":{"-":19,"\/":24,".":40,":":25,";":24,",":42,"v":12,"\u0135":-11,"j":8,"\u012d":-12,"\u012b":-16,"\u0129":-18,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"J":20,"\u0134":20,"O":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"Q":14,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":25,"\u0101":25,"\u0103":25,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":25,"q":25,"\u0131":18,"m":18,"\u014b":18,"p":18,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"e":29,"\u011b":29,"\u0113":29,"\u0115":29,"\u0117":29,"\u0119":29,"f":11,"i":5,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"o":29,"\u014d":29,"\u014f":29,"\u0151":29,"\u0153":29,"s":22,"\u015b":22,"\u015d":22,"\u0161":22,"\u015f":22,"t":9,"\u0165":9,"\u0163":9,"u":18,"x":15,"y":13,"\u0177":13,"z":20,"\u017a":20,"\u017e":20,"\u017c":20,"A":31,"\u0100":31,"\u0102":31,"\u0104":31,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"g":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"w":11,"\u0175":11}},"\u0176":{"d":"72,-250v-6,8,-38,10,-42,2v16,-23,47,-67,88,-42r38,42v-3,8,-36,5,-42,-1r-21,-24xm117,-6v-6,12,-43,10,-47,0r0,-80r-66,-134v-1,-15,30,-8,44,-7v22,27,31,67,47,99v16,-32,25,-71,45,-99v18,-2,52,-9,39,17r-62,124r0,80","w":187,"k":{"-":19,"\/":24,".":40,":":25,";":24,",":42,"v":12,"\u0135":-11,"j":8,"\u012d":-12,"\u012b":-16,"\u0129":-18,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"J":20,"\u0134":20,"O":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"Q":14,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":25,"\u0101":25,"\u0103":25,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":25,"q":25,"\u0131":18,"m":18,"\u014b":18,"p":18,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"e":29,"\u011b":29,"\u0113":29,"\u0115":29,"\u0117":29,"\u0119":29,"f":11,"i":5,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"o":29,"\u014d":29,"\u014f":29,"\u0151":29,"\u0153":29,"s":22,"\u015b":22,"\u015d":22,"\u0161":22,"\u015f":22,"t":9,"\u0165":9,"\u0163":9,"u":18,"x":15,"y":13,"\u0177":13,"z":20,"\u017a":20,"\u017e":20,"\u017c":20,"A":31,"\u0100":31,"\u0102":31,"\u0104":31,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"g":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"w":11,"\u0175":11}},"\u0178":{"d":"56,-291v17,0,23,4,23,21v0,17,-4,23,-23,22v-18,0,-23,-4,-23,-21v0,-17,5,-22,23,-22xm133,-291v17,0,23,4,23,21v0,17,-4,23,-23,22v-18,0,-23,-3,-23,-21v1,-17,5,-22,23,-22xm117,-6v-6,12,-43,10,-47,0r0,-80r-66,-134v-1,-15,30,-8,44,-7v22,27,31,67,47,99v16,-32,25,-71,45,-99v18,-2,52,-9,39,17r-62,124r0,80","w":187,"k":{"-":19,"\/":24,".":40,":":25,";":24,",":42,"v":12,"\u0135":-11,"j":8,"\u012d":-12,"\u012b":-16,"\u0129":-18,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"J":20,"\u0134":20,"O":14,"\u014c":14,"\u014e":14,"\u0150":14,"\u0152":14,"Q":14,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":25,"\u0101":25,"\u0103":25,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":25,"q":25,"\u0131":18,"m":18,"\u014b":18,"p":18,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"e":29,"\u011b":29,"\u0113":29,"\u0115":29,"\u0117":29,"\u0119":29,"f":11,"i":5,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"o":29,"\u014d":29,"\u014f":29,"\u0151":29,"\u0153":29,"s":22,"\u015b":22,"\u015d":22,"\u0161":22,"\u015f":22,"t":9,"\u0165":9,"\u0163":9,"u":18,"x":15,"y":13,"\u0177":13,"z":20,"\u017a":20,"\u017e":20,"\u017c":20,"A":31,"\u0100":31,"\u0102":31,"\u0104":31,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"g":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"w":11,"\u0175":11}},"Z":{"d":"158,-37v10,2,10,34,0,37r-134,0v-24,0,-13,-38,-5,-51r88,-140r-87,0v-11,-1,-8,-16,-8,-27v1,-5,3,-11,8,-9r125,0v24,-1,12,40,4,52r-86,138r95,0","w":172,"k":{"-":6,"v":8,"\u0135":-7,"\u012d":-5,"\u012b":-9,"\u0129":-17,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"W":2,"\u0174":2,"Y":2,"\u0176":2,"\u0178":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":6,"\u0177":6,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"\u0179":{"d":"146,-289v-20,18,-45,59,-82,40v19,-20,37,-62,81,-44v1,1,2,3,1,4xm158,-37v10,2,10,34,0,37r-134,0v-24,0,-13,-38,-5,-51r88,-140r-87,0v-11,-1,-8,-16,-8,-27v1,-5,3,-11,8,-9r125,0v24,-1,12,40,4,52r-86,138r95,0","w":172,"k":{"-":6,"v":8,"\u0135":-7,"\u012d":-5,"\u012b":-9,"\u0129":-17,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"W":2,"\u0174":2,"Y":2,"\u0176":2,"\u0178":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":6,"\u0177":6,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"\u017d":{"d":"108,-291v5,-9,37,-9,42,-1v-19,21,-46,67,-89,41v-12,-14,-27,-26,-38,-42v5,-8,37,-6,43,2r20,24xm158,-37v10,2,10,34,0,37r-134,0v-24,0,-13,-38,-5,-51r88,-140r-87,0v-11,-1,-8,-16,-8,-27v1,-5,3,-11,8,-9r125,0v24,-1,12,40,4,52r-86,138r95,0","w":172,"k":{"-":6,"v":8,"\u0135":-7,"\u012d":-5,"\u012b":-9,"\u0129":-17,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"W":2,"\u0174":2,"Y":2,"\u0176":2,"\u0178":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":6,"\u0177":6,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"\u017b":{"d":"87,-291v19,0,24,4,24,21v0,18,-5,23,-24,23v-18,-1,-23,-5,-24,-22v0,-17,7,-21,24,-22xm158,-37v10,2,10,34,0,37r-134,0v-24,0,-13,-38,-5,-51r88,-140r-87,0v-11,-1,-8,-16,-8,-27v1,-5,3,-11,8,-9r125,0v24,-1,12,40,4,52r-86,138r95,0","w":172,"k":{"-":6,"v":8,"\u0135":-7,"\u012d":-5,"\u012b":-9,"\u0129":-17,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"W":2,"\u0174":2,"Y":2,"\u0176":2,"\u0178":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":3,"q":3,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":6,"\u0177":6,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"w":7,"\u0175":7}},"a":{"d":"86,-173v44,0,70,16,70,62r0,106v-6,10,-47,11,-37,-13v-26,35,-110,28,-107,-29v2,-48,48,-54,100,-53v11,-56,-60,-39,-83,-23v-6,-2,-8,-10,-8,-18v0,-29,37,-32,65,-32xm56,-48v0,32,46,21,56,2r0,-27v-27,0,-56,-1,-56,25","w":177,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0101":{"d":"135,-233v11,2,10,33,0,33r-93,-1v-7,-5,-8,-32,3,-32r90,0xm86,-173v44,0,70,16,70,62r0,106v-6,10,-47,11,-37,-13v-26,35,-110,28,-107,-29v2,-48,48,-54,100,-53v11,-56,-60,-39,-83,-23v-6,-2,-8,-10,-8,-18v0,-29,37,-32,65,-32xm56,-48v0,32,46,21,56,2r0,-27v-27,0,-56,-1,-56,25","w":177,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0103":{"d":"90,-219v27,4,14,-40,50,-24v4,33,-16,52,-50,52v-35,0,-52,-15,-52,-49v0,-8,13,-6,22,-6v15,4,6,32,30,27xm86,-173v44,0,70,16,70,62r0,106v-6,10,-47,11,-37,-13v-26,35,-110,28,-107,-29v2,-48,48,-54,100,-53v11,-56,-60,-39,-83,-23v-6,-2,-8,-10,-8,-18v0,-29,37,-32,65,-32xm56,-48v0,32,46,21,56,2r0,-27v-27,0,-56,-1,-56,25","w":177,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0105":{"d":"138,22v-7,26,38,-4,28,30v-20,34,-98,1,-63,-37v7,-8,22,-16,16,-34v-25,36,-111,29,-107,-28v2,-48,48,-54,100,-53v11,-56,-60,-39,-83,-23v-6,-2,-8,-10,-8,-18v0,-29,37,-32,65,-32v44,0,71,16,70,62r-1,112v-3,9,-15,12,-17,21xm56,-48v0,32,46,21,56,2r0,-27v-27,0,-56,-1,-56,25","w":177,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"b":{"d":"116,-173v49,1,64,39,64,87v0,50,-18,89,-68,90v-27,0,-39,-13,-52,-27v10,26,-25,32,-38,17r0,-231v3,-11,40,-12,44,0r0,87v12,-13,25,-23,50,-23xm102,-34v45,0,44,-101,1,-101v-20,0,-27,13,-37,25r0,52v10,12,19,24,36,24","k":{"v":2,"f":2,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":1,"\u0165":1,"\u0163":1,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"c":{"d":"135,-51v8,3,7,26,4,36v-9,13,-31,19,-52,19v-51,0,-75,-31,-74,-85v0,-57,26,-90,79,-92v23,4,50,5,48,34v-2,38,-24,0,-46,2v-25,3,-37,22,-36,52v0,29,8,52,36,52v19,0,29,-12,41,-18","w":150,"k":{"a":2,"\u0101":2,"\u0103":2,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0107":{"d":"135,-241v-18,20,-34,63,-73,46v15,-23,21,-60,64,-51v5,0,8,2,9,5xm135,-51v8,3,7,26,4,36v-9,13,-31,19,-52,19v-51,0,-75,-31,-74,-85v0,-57,26,-90,79,-92v23,4,50,5,48,34v-2,38,-24,0,-46,2v-25,3,-37,22,-36,52v0,29,8,52,36,52v19,0,29,-12,41,-18","w":150,"k":{"a":2,"\u0101":2,"\u0103":2,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0109":{"d":"83,-223v-11,16,-24,43,-54,30v5,-19,24,-34,33,-51v10,-5,37,-5,43,3v11,16,26,29,31,48v-7,4,-32,5,-35,-4xm135,-51v8,3,7,26,4,36v-9,13,-31,19,-52,19v-51,0,-75,-31,-74,-85v0,-57,26,-90,79,-92v23,4,50,5,48,34v-2,38,-24,0,-46,2v-25,3,-37,22,-36,52v0,29,8,52,36,52v19,0,29,-12,41,-18","w":150,"k":{"a":2,"\u0101":2,"\u0103":2,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u010d":{"d":"86,-214v10,-17,23,-43,53,-30v-3,16,-23,36,-33,51v-14,3,-34,5,-43,-3v-10,-16,-26,-29,-31,-48v7,-4,31,-5,36,3xm135,-51v8,3,7,26,4,36v-9,13,-31,19,-52,19v-51,0,-75,-31,-74,-85v0,-57,26,-90,79,-92v23,4,50,5,48,34v-2,38,-24,0,-46,2v-25,3,-37,22,-36,52v0,29,8,52,36,52v19,0,29,-12,41,-18","w":150,"k":{"a":2,"\u0101":2,"\u0103":2,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u010b":{"d":"86,-239v18,1,24,5,24,22v0,17,-6,21,-24,22v-19,0,-25,-3,-25,-21v0,-17,7,-23,25,-23xm135,-51v8,3,7,26,4,36v-9,13,-31,19,-52,19v-51,0,-75,-31,-74,-85v0,-57,26,-90,79,-92v23,4,50,5,48,34v-2,38,-24,0,-46,2v-25,3,-37,22,-36,52v0,29,8,52,36,52v19,0,29,-12,41,-18","w":150,"k":{"a":2,"\u0101":2,"\u0103":2,"o":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"d":{"d":"127,-237v5,-12,41,-10,44,0r0,231v-7,15,-49,9,-38,-17v-14,15,-29,27,-54,27v-49,-1,-66,-38,-66,-86v0,-52,19,-91,69,-91v21,0,32,10,45,21r0,-85xm90,-33v19,0,27,-13,37,-26r0,-52v-10,-12,-19,-24,-36,-24v-46,0,-45,102,-1,102"},"\u010f":{"d":"212,-188v-4,8,-28,8,-31,1r14,-57v2,-10,33,-12,39,-3v-4,23,-15,39,-22,59xm127,-237v5,-12,41,-10,44,0r0,231v-7,15,-49,9,-38,-17v-14,15,-29,27,-54,27v-49,-1,-66,-38,-66,-86v0,-52,19,-91,69,-91v21,0,32,10,45,21r0,-85xm90,-33v19,0,27,-13,37,-26r0,-52v-10,-12,-19,-24,-36,-24v-46,0,-45,102,-1,102","w":214,"k":{"\u0140":-8,"\u013c":-8,"\u013e":-8,"\u013a":-8,"l":-8,"\u0137":-8,"k":-8,"h":-8,"b":-8}},"\u0111":{"d":"171,-221v24,-7,34,12,23,32r-23,0r0,183v-7,15,-49,9,-38,-17v-14,15,-29,27,-54,27v-50,-1,-66,-38,-66,-86v0,-51,18,-89,69,-90v22,0,33,9,45,21r0,-38v-24,2,-56,3,-39,-31v11,-2,26,0,39,-1v-5,-23,10,-23,33,-23v12,0,12,11,11,23xm90,-33v19,0,27,-13,37,-26r0,-51v-10,-13,-19,-24,-37,-24v-45,0,-43,101,0,101","w":204},"e":{"d":"93,-173v52,0,76,30,74,84v0,9,-5,16,-14,16r-95,0v-5,58,65,43,99,34v3,7,3,20,1,28v-12,12,-36,14,-61,15v-58,1,-84,-29,-84,-87v0,-55,27,-90,80,-90xm124,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0","w":181,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u011b":{"d":"91,-214v11,-16,23,-43,54,-30v-6,19,-23,35,-34,51v-13,2,-34,6,-42,-3v-10,-16,-26,-29,-31,-48v7,-4,32,-6,35,3xm93,-173v52,0,76,30,74,84v0,9,-5,16,-14,16r-95,0v-5,58,65,43,99,34v3,7,3,20,1,28v-12,12,-36,14,-61,15v-58,1,-84,-29,-84,-87v0,-55,27,-90,80,-90xm124,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0","w":181,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0113":{"d":"137,-233v11,2,10,33,0,33r-93,-1v-6,-4,-7,-31,3,-32r90,0xm93,-173v52,0,76,30,74,84v0,9,-5,16,-14,16r-95,0v-5,58,65,43,99,34v3,7,3,20,1,28v-12,12,-36,14,-61,15v-58,1,-84,-29,-84,-87v0,-55,27,-90,80,-90xm124,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0","w":181,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0115":{"d":"90,-219v27,4,14,-41,51,-24v4,33,-17,52,-51,52v-34,0,-51,-16,-51,-49v0,-8,13,-6,22,-6v15,3,6,32,29,27xm93,-173v52,0,76,30,74,84v0,9,-5,16,-14,16r-95,0v-5,58,65,43,99,34v3,7,3,20,1,28v-12,12,-36,14,-61,15v-58,1,-84,-29,-84,-87v0,-55,27,-90,80,-90xm124,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0","w":181,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0117":{"d":"92,-239v18,1,24,5,24,22v0,17,-6,21,-24,22v-19,0,-23,-4,-24,-21v0,-18,6,-23,24,-23xm93,-173v52,0,76,30,74,84v0,9,-5,16,-14,16r-95,0v-5,58,65,43,99,34v3,7,3,20,1,28v-12,12,-36,14,-61,15v-58,1,-84,-29,-84,-87v0,-55,27,-90,80,-90xm124,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0","w":181,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0119":{"d":"161,45v3,21,-18,17,-35,19v-45,5,-49,-45,-19,-62v-62,7,-95,-24,-94,-85v1,-55,27,-90,80,-90v52,0,76,30,74,84v0,9,-5,16,-14,16r-95,0v-5,58,65,43,99,34v13,35,-22,42,-28,66v-4,17,36,-5,32,18xm124,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0","w":181,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"f":{"d":"86,-246v26,0,37,15,28,39v-27,-11,-45,3,-39,38v16,2,40,-8,35,18v5,24,-17,17,-35,18r0,127v-3,10,-39,11,-44,0r0,-127v-27,9,-36,-21,-20,-36r20,0v-3,-47,11,-77,55,-77","w":113,"k":{")":-5,"-":8,".":19,",":18,"v":-4,"a":6,"\u0101":6,"\u0103":6,"c":6,"\u0107":6,"\u0109":6,"\u010d":6,"\u010b":6,"d":7,"q":7,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"y":-2,"\u0177":-2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":-1,"\u0175":-1}},"g":{"d":"15,-114v1,-69,73,-57,142,-55v9,1,9,34,0,34r-19,0v30,44,-31,99,-82,71v-10,9,-5,26,11,25v46,0,96,0,94,47v-2,42,-36,56,-82,56v-39,-1,-72,-7,-74,-42v-1,-20,11,-29,22,-39v-22,-10,-16,-50,2,-61v-9,-8,-14,-19,-14,-36xm80,-88v18,0,26,-10,27,-27v1,-16,-11,-27,-27,-27v-16,0,-26,10,-26,28v0,15,11,27,26,26xm47,16v4,27,72,25,70,-6v-1,-22,-34,-15,-55,-17v-8,6,-14,11,-15,23","w":170,"k":{"\/":-11,",":-5,"a":6,"\u0101":6,"\u0103":6,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u011d":{"d":"85,-223v-10,17,-23,42,-53,30v2,-17,25,-34,33,-51v10,-5,36,-4,43,3v10,16,26,29,31,48v-7,4,-33,5,-35,-4xm15,-114v1,-69,73,-57,142,-55v9,1,9,34,0,34r-19,0v30,44,-31,99,-82,71v-10,9,-5,26,11,25v46,0,96,0,94,47v-2,42,-36,56,-82,56v-39,-1,-72,-7,-74,-42v-1,-20,11,-29,22,-39v-22,-10,-16,-50,2,-61v-9,-8,-14,-19,-14,-36xm80,-88v18,0,26,-10,27,-27v1,-16,-11,-27,-27,-27v-16,0,-26,10,-26,28v0,15,11,27,26,26xm47,16v4,27,72,25,70,-6v-1,-22,-34,-15,-55,-17v-8,6,-14,11,-15,23","w":170,"k":{"\/":-11,",":-5,"a":6,"\u0101":6,"\u0103":6,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u011f":{"d":"85,-219v27,4,14,-41,51,-24v4,33,-17,52,-51,52v-34,0,-51,-16,-51,-49v0,-8,13,-6,22,-6v15,4,6,31,29,27xm15,-114v1,-69,73,-57,142,-55v9,1,9,34,0,34r-19,0v30,44,-31,99,-82,71v-10,9,-5,26,11,25v46,0,96,0,94,47v-2,42,-36,56,-82,56v-39,-1,-72,-7,-74,-42v-1,-20,11,-29,22,-39v-22,-10,-16,-50,2,-61v-9,-8,-14,-19,-14,-36xm80,-88v18,0,26,-10,27,-27v1,-16,-11,-27,-27,-27v-16,0,-26,10,-26,28v0,15,11,27,26,26xm47,16v4,27,72,25,70,-6v-1,-22,-34,-15,-55,-17v-8,6,-14,11,-15,23","w":170,"k":{"\/":-11,",":-5,"a":6,"\u0101":6,"\u0103":6,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u0121":{"d":"86,-239v18,1,24,5,24,22v0,17,-6,21,-24,22v-19,0,-25,-3,-25,-21v0,-17,7,-23,25,-23xm15,-114v1,-69,73,-57,142,-55v9,1,9,34,0,34r-19,0v30,44,-31,99,-82,71v-10,9,-5,26,11,25v46,0,96,0,94,47v-2,42,-36,56,-82,56v-39,-1,-72,-7,-74,-42v-1,-20,11,-29,22,-39v-22,-10,-16,-50,2,-61v-9,-8,-14,-19,-14,-36xm80,-88v18,0,26,-10,27,-27v1,-16,-11,-27,-27,-27v-16,0,-26,10,-26,28v0,15,11,27,26,26xm47,16v4,27,72,25,70,-6v-1,-22,-34,-15,-55,-17v-8,6,-14,11,-15,23","w":170,"k":{"\/":-11,",":-5,"a":6,"\u0101":6,"\u0103":6,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"\u0123":{"d":"86,-239v4,-9,32,-8,36,-1v-13,22,-7,59,-53,52v-6,-1,-11,-3,-8,-9xm15,-114v1,-69,73,-57,142,-55v9,1,9,34,0,34r-19,0v30,44,-31,99,-82,71v-10,9,-5,26,11,25v46,0,96,0,94,47v-2,42,-36,56,-82,56v-39,-1,-72,-7,-74,-42v-1,-20,11,-29,22,-39v-22,-10,-16,-50,2,-61v-9,-8,-14,-19,-14,-36xm80,-88v18,0,26,-10,27,-27v1,-16,-11,-27,-27,-27v-16,0,-26,10,-26,28v0,15,11,27,26,26xm47,16v4,27,72,25,70,-6v-1,-22,-34,-15,-55,-17v-8,6,-14,11,-15,23","w":170,"k":{"\/":-11,",":-5,"a":6,"\u0101":6,"\u0103":6,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"g":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3}},"h":{"d":"66,-150v35,-42,106,-23,106,48r0,96v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-231v3,-11,40,-12,44,0r0,87","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0125":{"d":"66,-150v35,-42,106,-23,106,48r0,96v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-214v2,-12,40,-13,44,0r0,70xm25,-250v-5,8,-39,10,-42,2v19,-21,46,-68,89,-42r38,42v-3,8,-36,5,-43,-1r-21,-24","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0127":{"d":"70,-147v34,-42,106,-23,106,48r0,93v-3,10,-39,11,-44,0v-5,-45,18,-120,-27,-125v-16,1,-25,12,-35,24r0,101v-3,11,-38,11,-44,0r0,-182v-22,9,-39,-18,-20,-33r20,0v-5,-23,9,-24,33,-24v13,0,11,12,11,24v20,2,48,-11,42,24v-3,15,-27,7,-42,9r0,41","w":197,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"i":{"d":"22,-162v4,-12,42,-11,44,0r0,156v-3,11,-38,11,-44,0r0,-156xm44,-239v19,0,27,3,26,23v0,19,-7,24,-26,24v-20,0,-24,-4,-25,-23v0,-20,6,-24,25,-24","w":88},"\u0129":{"d":"80,-237v1,-8,29,-8,27,2v6,44,-47,55,-74,29v-12,-12,-24,0,-26,14v-9,-1,-25,6,-25,-6v-1,-26,14,-44,38,-44v24,-1,31,17,49,20v8,1,11,-7,11,-15xm22,-163v5,-10,41,-10,44,0r0,157v-3,11,-38,11,-44,0r0,-157","w":88,"k":{"\u0140":-7,"\u013c":-7,"\u013e":-7,"\u013a":-7,"l":-7,"\u0137":-7,"k":-7,"h":-7,"b":-7}},"\u012b":{"d":"0,-200v-12,-1,-11,-32,0,-33r89,0v11,1,11,33,0,33r-89,0xm22,-163v5,-10,41,-10,44,0r0,157v-3,11,-38,11,-44,0r0,-157","w":88,"k":{"\u0140":-3,"\u013c":-3,"\u013e":-3,"\u013a":-3,"l":-3,"\u0137":-3,"k":-3,"h":-3,"b":-3}},"\u012d":{"d":"44,-219v27,4,14,-41,51,-24v4,33,-17,52,-51,52v-34,0,-51,-16,-51,-49v0,-8,13,-6,22,-6v15,3,6,32,29,27xm22,-163v5,-10,41,-10,44,0r0,157v-3,11,-38,11,-44,0r0,-157","w":88},"\u012f":{"d":"72,36v15,19,-12,32,-33,28v-36,5,-50,-37,-24,-56r7,-8r0,-162v3,-11,40,-12,44,0r-1,161v-5,12,-21,14,-21,29v0,11,19,5,28,8xm44,-239v19,0,27,3,26,23v0,19,-7,24,-26,24v-20,0,-24,-4,-25,-23v0,-20,6,-24,25,-24","w":88},"\u0131":{"d":"22,-163v5,-10,41,-10,44,0r0,157v-3,11,-38,11,-44,0r0,-157","w":88},"\u0133":{"d":"22,-162v4,-12,42,-11,44,0r0,156v-3,11,-38,11,-44,0r0,-156xm44,-239v19,0,27,3,26,23v0,19,-7,24,-26,24v-20,0,-24,-4,-25,-23v0,-20,6,-24,25,-24xm114,-162v3,-12,41,-11,44,0r0,161v0,41,-13,62,-52,65v-23,2,-29,-13,-23,-34v15,-5,31,-3,31,-32r0,-160xm136,-239v20,0,24,4,25,23v0,20,-6,24,-26,24v-19,0,-25,-4,-25,-23v0,-19,7,-24,26,-24","w":180},"j":{"d":"26,-162v3,-12,41,-11,44,0r0,161v0,41,-13,62,-52,65v-23,2,-29,-13,-23,-34v15,-5,31,-3,31,-32r0,-160xm48,-239v20,0,24,4,25,23v0,20,-6,24,-26,24v-19,0,-25,-4,-25,-23v0,-19,7,-24,26,-24","w":91},"\u0135":{"d":"46,-223v-10,17,-23,42,-53,30v2,-17,25,-34,33,-51v10,-5,36,-4,43,3v10,16,26,29,31,48v-7,4,-33,5,-35,-4xm26,-162v3,-12,41,-11,44,0r0,161v0,41,-13,62,-52,65v-23,2,-29,-13,-23,-34v15,-5,31,-3,31,-32r0,-160","w":91},"k":{"d":"113,-162v6,-11,43,-12,49,-1v-10,28,-35,42,-51,64r57,93v-4,11,-43,11,-49,0r-53,-83r0,83v-3,11,-38,11,-44,0r0,-231v3,-11,40,-12,44,0r0,138","w":172,"k":{"-":12,"a":4,"\u0101":4,"\u0103":4,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":10,"\u011b":10,"\u0113":10,"\u0115":10,"\u0117":10,"\u0119":10,"o":10,"\u014d":10,"\u014f":10,"\u0151":10,"\u0153":10,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":4}},"\u0137":{"d":"94,58v-4,9,-33,9,-36,1v7,-23,6,-53,47,-44v7,2,10,4,6,10xm113,-162v6,-11,43,-12,49,-1v-10,28,-35,42,-51,64r57,93v-4,11,-43,11,-49,0r-53,-83r0,83v-3,11,-38,11,-44,0r0,-231v3,-11,40,-12,44,0r0,138","w":172,"k":{"-":12,"a":4,"\u0101":4,"\u0103":4,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":10,"\u011b":10,"\u0113":10,"\u0115":10,"\u0117":10,"\u0119":10,"o":10,"\u014d":10,"\u014f":10,"\u0151":10,"\u0153":10,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":4}},"\u0138":{"d":"115,-162v6,-11,43,-12,48,-1v-11,30,-35,46,-52,70r56,87v-5,11,-42,9,-49,-1r-52,-76r0,77v-3,11,-38,11,-44,0r0,-157v4,-10,39,-10,44,0r0,70","w":172,"k":{"-":12,"a":4,"\u0101":4,"\u0103":4,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":10,"\u011b":10,"\u0113":10,"\u0115":10,"\u0117":10,"\u0119":10,"o":10,"\u014d":10,"\u014f":10,"\u0151":10,"\u0153":10,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":4}},"l":{"d":"22,-237v4,-12,42,-11,44,0r0,231v-3,11,-38,11,-44,0r0,-231","w":88},"\u013a":{"d":"109,-300v-23,17,-43,58,-82,41v16,-24,38,-61,81,-45v1,1,2,3,1,4xm22,-237v4,-12,42,-11,44,0r0,231v-3,11,-38,11,-44,0r0,-231","w":88},"\u013e":{"d":"106,-182v-3,7,-33,11,-30,-3r14,-53v1,-11,33,-12,39,-3xm22,-237v4,-12,42,-11,44,0r0,231v-3,11,-38,11,-44,0r0,-231","w":110},"\u013c":{"d":"47,58v-4,9,-33,9,-36,1v7,-23,6,-54,47,-44v7,0,8,4,6,10xm22,-237v4,-12,42,-11,44,0r0,231v-3,11,-38,11,-44,0r0,-231","w":88},"\u0142":{"d":"25,-237v4,-11,41,-12,45,0r0,62v6,-3,14,-15,20,-8v7,20,-5,41,-20,45r0,132v-4,11,-39,11,-45,0r0,-105v-6,3,-14,15,-20,8v-4,-23,2,-39,20,-44r0,-90","w":94},"\u0140":{"d":"119,-132v20,0,25,7,26,27v0,21,-6,27,-26,28v-20,0,-27,-6,-26,-27v0,-22,5,-27,26,-28xm22,-237v4,-12,42,-11,44,0r0,231v-3,11,-38,11,-44,0r0,-231","w":152},"m":{"d":"216,-173v75,-1,52,96,56,167v-4,11,-39,11,-45,0r0,-93v0,-20,-5,-36,-25,-35v-15,1,-23,12,-33,24r0,104v-3,10,-39,11,-44,0r0,-93v-1,-18,-5,-36,-25,-35v-16,1,-24,12,-34,24r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18v20,-32,88,-40,102,1v15,-14,28,-28,54,-29","w":292,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"n":{"d":"60,-145v31,-46,112,-33,112,42r0,97v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0144":{"d":"152,-241v-17,20,-34,63,-72,46v15,-23,21,-59,63,-51v5,0,8,2,9,5xm60,-145v31,-46,112,-33,112,42r0,97v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0148":{"d":"100,-214v11,-16,23,-43,54,-30v-6,19,-23,35,-34,51v-13,2,-34,6,-42,-3v-10,-16,-26,-29,-31,-48v7,-4,32,-6,35,3xm60,-145v31,-46,112,-33,112,42r0,97v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0146":{"d":"102,58v-4,8,-33,10,-36,1v7,-22,6,-55,46,-44v20,6,-8,30,-10,43xm60,-145v31,-46,112,-33,112,42r0,97v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u0149":{"d":"17,-245v42,-13,41,38,21,61v-13,16,-24,53,-57,36v9,-25,26,-42,23,-79v0,-12,3,-18,13,-18xm91,-145v31,-46,112,-33,112,42r0,97v-3,10,-39,11,-44,0v-6,-45,19,-128,-27,-128v-16,0,-25,12,-35,24r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18","w":223,"k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"\u014b":{"d":"60,-145v31,-46,120,-33,112,42v-8,70,22,170,-55,167v-26,7,-36,-19,-23,-37v56,15,28,-75,34,-122v6,-49,-48,-46,-62,-15r0,104v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,18","k":{"v":5,"f":2,"t":3,"\u0165":3,"\u0163":3,"x":3,"y":7,"\u0177":7,"w":3,"\u0175":3}},"o":{"d":"99,-173v56,0,82,31,82,87v0,55,-28,90,-86,90v-56,0,-82,-31,-82,-87v0,-57,30,-90,86,-90xm96,-31v30,-1,39,-22,39,-53v0,-30,-8,-54,-38,-54v-29,1,-39,24,-39,53v0,30,8,54,38,54","k":{",":5,"v":1,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":1,"\u0175":1}},"\u014d":{"d":"53,-200v-12,-1,-11,-33,0,-33r89,0v10,0,6,14,7,24v0,5,-2,9,-7,9r-89,0xm99,-173v56,0,82,31,82,87v0,55,-28,90,-86,90v-56,0,-82,-31,-82,-87v0,-57,30,-90,86,-90xm96,-31v30,-1,39,-22,39,-53v0,-30,-8,-54,-38,-54v-29,1,-39,24,-39,53v0,30,8,54,38,54","k":{",":5,"v":1,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":1,"\u0175":1}},"\u014f":{"d":"97,-219v26,4,14,-41,50,-24v4,33,-16,52,-50,52v-35,0,-52,-15,-52,-49v0,-8,13,-6,22,-6v15,4,6,32,30,27xm99,-173v56,0,82,31,82,87v0,55,-28,90,-86,90v-56,0,-82,-31,-82,-87v0,-57,30,-90,86,-90xm96,-31v30,-1,39,-22,39,-53v0,-30,-8,-54,-38,-54v-29,1,-39,24,-39,53v0,30,8,54,38,54","k":{",":5,"v":1,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":1,"\u0175":1}},"\u0151":{"d":"76,-238v6,-9,40,-11,44,-1v-20,19,-25,53,-65,51v-5,1,-8,-3,-5,-7xm145,-239v5,-10,50,-9,40,5v-21,16,-30,52,-71,45v-2,-1,-3,-3,-1,-6xm99,-173v56,0,82,31,82,87v0,55,-28,90,-86,90v-56,0,-82,-31,-82,-87v0,-57,30,-90,86,-90xm96,-31v30,-1,39,-22,39,-53v0,-30,-8,-54,-38,-54v-29,1,-39,24,-39,53v0,30,8,54,38,54","k":{",":5,"v":1,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":1,"\u0175":1}},"\u0153":{"d":"216,-173v51,1,75,31,73,84v-1,9,-4,16,-13,16r-96,0v-5,58,65,43,99,34v6,4,3,21,1,28v-29,22,-109,22,-124,-13v-13,17,-32,28,-61,28v-56,0,-82,-31,-82,-87v0,-57,30,-89,86,-90v29,0,47,11,60,28v13,-17,29,-28,57,-28xm246,-102v8,-44,-54,-54,-63,-15v-1,5,-3,9,-3,15r66,0xm96,-31v30,-1,39,-22,39,-53v0,-30,-8,-54,-38,-54v-29,1,-39,24,-39,53v0,30,8,54,38,54","w":303,"k":{"v":2,"f":3,"t":2,"\u0165":2,"\u0163":2,"x":6,"y":3,"\u0177":3,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"p":{"d":"60,-144v42,-57,127,-20,120,57v-5,52,-18,89,-68,91v-23,0,-34,-11,-46,-22r0,74v-2,12,-40,11,-44,0r0,-219v3,-10,34,-10,38,0r0,19xm102,-34v44,0,44,-101,1,-101v-19,0,-27,13,-37,25r0,52v10,12,19,24,36,24","k":{"v":2,"f":2,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":1,"\u0165":1,"\u0163":1,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"q":{"d":"133,-146v-10,-26,29,-31,38,-17r0,219v-3,11,-40,12,-44,0r0,-74v-13,12,-26,22,-50,22v-47,-2,-64,-39,-64,-86v0,-52,20,-91,69,-91v25,0,36,14,51,27xm90,-33v19,0,27,-13,37,-26r0,-52v-10,-12,-19,-24,-36,-24v-46,0,-45,102,-1,102","k":{"\u0123":-2,"\u0121":-2,"\u011f":-2,"\u011d":-2,"g":-2}},"r":{"d":"60,-143v9,-19,42,-44,62,-21v1,18,4,47,-17,33v-23,-1,-29,15,-39,27r0,98v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,20","w":127,"k":{"-":7,".":32,",":26,"v":-3,"a":8,"\u0101":8,"\u0103":8,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"y":-2,"\u0177":-2,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-2,"\u0175":-2}},"\u0155":{"d":"123,-241v-17,20,-34,63,-72,46v13,-24,21,-59,63,-51v5,0,8,2,9,5xm60,-143v9,-19,42,-44,62,-21v1,18,4,47,-17,33v-23,-1,-29,15,-39,27r0,98v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,20","w":127,"k":{"-":7,".":32,",":26,"v":-3,"a":8,"\u0101":8,"\u0103":8,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"y":-2,"\u0177":-2,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-2,"\u0175":-2}},"\u0159":{"d":"70,-214v10,-17,23,-43,53,-30v-3,16,-23,36,-33,51v-14,3,-34,5,-43,-3v-10,-16,-26,-29,-31,-48v7,-4,31,-5,36,3xm60,-143v9,-19,42,-44,62,-21v1,18,4,47,-17,33v-23,-1,-29,15,-39,27r0,98v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,20","w":127,"k":{"-":7,".":32,",":26,"v":-3,"a":8,"\u0101":8,"\u0103":8,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"y":-2,"\u0177":-2,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-2,"\u0175":-2}},"\u0157":{"d":"51,58v-4,9,-32,9,-36,1v7,-23,6,-53,47,-44v7,2,10,4,6,10xm60,-143v9,-19,42,-44,62,-21v1,18,4,47,-17,33v-23,-1,-29,15,-39,27r0,98v-3,11,-38,11,-44,0r0,-157v3,-10,34,-10,38,0r0,20","w":127,"k":{"-":7,".":32,",":26,"v":-3,"a":8,"\u0101":8,"\u0103":8,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"y":-2,"\u0177":-2,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-2,"\u0175":-2}},"s":{"d":"123,-133v-14,3,-79,-27,-64,17v25,20,75,20,74,66v-1,38,-28,53,-68,54v-31,1,-63,-11,-49,-46v17,2,26,14,48,14v38,0,25,-33,1,-40v-26,-7,-51,-19,-51,-54v0,-53,81,-66,109,-35v1,8,0,16,0,24","w":143,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":5,"\u0177":5,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015b":{"d":"127,-241v-18,20,-34,63,-73,46v15,-23,21,-60,64,-51v5,0,8,2,9,5xm123,-133v-14,3,-79,-27,-64,17v25,20,75,20,74,66v-1,38,-28,53,-68,54v-31,1,-63,-11,-49,-46v17,2,26,14,48,14v38,0,25,-33,1,-40v-26,-7,-51,-19,-51,-54v0,-53,81,-66,109,-35v1,8,0,16,0,24","w":143,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":5,"\u0177":5,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015d":{"d":"72,-223v-10,17,-24,43,-54,30v10,-26,36,-71,77,-48v10,16,26,29,31,48v-9,4,-33,5,-36,-4xm123,-133v-14,3,-79,-27,-64,17v25,20,75,20,74,66v-1,38,-28,53,-68,54v-31,1,-63,-11,-49,-46v17,2,26,14,48,14v38,0,25,-33,1,-40v-26,-7,-51,-19,-51,-54v0,-53,81,-66,109,-35v1,8,0,16,0,24","w":143,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":5,"\u0177":5,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u0161":{"d":"72,-214v11,-16,23,-43,54,-30v-6,19,-23,35,-34,51v-13,2,-34,6,-42,-3v-9,-16,-28,-32,-31,-48v7,-4,32,-6,35,3xm123,-133v-14,3,-79,-27,-64,17v25,20,75,20,74,66v-1,38,-28,53,-68,54v-31,1,-63,-11,-49,-46v17,2,26,14,48,14v38,0,25,-33,1,-40v-26,-7,-51,-19,-51,-54v0,-53,81,-66,109,-35v1,8,0,16,0,24","w":143,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":5,"\u0177":5,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015f":{"d":"94,-99v47,10,51,95,-3,100v32,38,-15,85,-61,55v-2,-6,-3,-22,5,-22v16,1,39,2,28,-18r-6,-12v-28,0,-55,-15,-41,-46v17,2,26,14,48,14v38,0,25,-33,1,-40v-26,-7,-51,-19,-51,-54v0,-53,81,-66,109,-35v0,9,4,25,-5,27v-15,-15,-76,-18,-59,14v7,8,22,14,35,17","w":143,"k":{"v":5,"f":3,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":5,"\u0177":5,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u017f":{"d":"22,-182v-6,-51,39,-78,81,-57v1,18,6,39,-19,29v-17,-1,-18,13,-18,28r0,176v-3,11,-38,11,-44,0r0,-176","w":92},"t":{"d":"74,-59v-5,32,26,21,40,24v6,28,-7,39,-33,39v-66,0,-49,-76,-51,-137v-26,10,-35,-23,-19,-36r19,0v0,-25,-7,-50,32,-42v19,-1,10,26,12,42v18,2,46,-9,41,18v4,25,-22,17,-41,18r0,74","w":124,"k":{"-":9,"a":4,"\u0101":4,"\u0103":4,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":4,"\u0165":4,"\u0163":4}},"\u0165":{"d":"122,-204v-2,8,-35,12,-31,-2v8,-26,9,-79,53,-57v-4,23,-16,38,-22,59xm74,-59v-5,32,26,21,40,24v6,28,-7,39,-33,39v-66,0,-49,-76,-51,-137v-26,10,-35,-23,-19,-36r19,0v0,-25,-7,-50,32,-42v19,-1,10,26,12,42v18,2,46,-9,41,18v4,25,-22,17,-41,18r0,74","w":130},"\u0167":{"d":"81,4v-42,2,-53,-30,-50,-76v-22,9,-37,-18,-19,-32r19,0r0,-32v-24,10,-36,-19,-19,-33r19,0v0,0,-8,-50,32,-42v18,0,9,26,11,42v20,2,48,-10,41,25v0,16,-27,5,-41,8r0,32v24,-9,46,13,26,32r-26,0v-7,33,14,46,38,37v5,3,3,15,3,23v0,16,-19,15,-34,16","w":127},"u":{"d":"127,-163v5,-11,40,-9,44,0r0,157v-2,10,-34,11,-38,0r0,-18v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104"},"\u0169":{"d":"132,-237v1,-5,28,-10,27,2v6,44,-48,56,-74,29v-12,-12,-24,0,-26,14v-9,-1,-25,6,-25,-6v-1,-26,14,-43,38,-44v25,-1,30,18,49,20v8,1,11,-7,11,-15xm127,-163v5,-11,40,-9,44,0r0,157v-2,10,-34,11,-38,0r0,-18v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104"},"\u016b":{"d":"52,-200v-12,-1,-11,-32,0,-33r90,0v10,2,10,30,0,33r-90,0xm127,-163v5,-11,40,-9,44,0r0,157v-2,10,-34,11,-38,0r0,-18v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104"},"\u016d":{"d":"97,-219v26,4,14,-41,50,-24v4,33,-16,52,-50,52v-35,0,-52,-15,-52,-49v0,-8,13,-6,22,-6v15,4,6,32,30,27xm127,-163v5,-11,40,-9,44,0r0,157v-2,10,-34,11,-38,0r0,-18v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104"},"\u016f":{"d":"97,-256v25,-1,41,10,41,33v0,24,-16,35,-42,35v-25,1,-40,-9,-40,-33v0,-26,16,-35,41,-35xm97,-207v10,0,14,-5,14,-15v0,-10,-5,-15,-15,-15v-10,0,-13,6,-14,15v0,10,5,15,15,15xm127,-163v5,-11,40,-9,44,0r0,157v-2,10,-34,11,-38,0r0,-18v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104"},"\u0171":{"d":"75,-238v6,-9,39,-10,44,-1v-20,18,-25,53,-65,51v-5,1,-9,-4,-5,-7xm143,-239v6,-9,41,-10,43,1v-23,17,-29,56,-73,49v-2,-1,-3,-3,-1,-6xm127,-163v5,-11,40,-9,44,0r0,157v-2,10,-34,11,-38,0r0,-18v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104"},"\u0173":{"d":"180,46v2,20,-17,16,-32,18v-40,5,-49,-38,-23,-58v8,-4,12,-18,8,-30v-32,46,-112,33,-112,-43r0,-96v4,-10,39,-10,44,0v6,46,-18,123,27,129v16,-2,25,-13,35,-25r0,-104v3,-10,39,-10,44,0r-3,167v-6,8,-31,28,-7,31v10,1,22,-3,19,11"},"v":{"d":"123,-162v5,-14,57,-12,41,12r-49,146v-12,8,-55,9,-62,-4r-49,-155v4,-11,43,-10,46,1r36,119v14,-38,23,-80,37,-119","w":170,"k":{"\u0163":-2,"-":7,".":25,",":21,"\u017c":3,"\u017e":3,"\u017a":3,"z":3,"\u0177":-3,"y":-3,"\u0175":-3,"w":-3,"v":-3,"\u0165":-2,"t":-2,"\u015f":1,"\u0161":1,"\u015d":1,"\u015b":1,"s":1,"q":4,"\u0153":3,"\u0151":3,"\u014f":3,"\u014d":3,"o":3,"\u0123":4,"\u0121":4,"\u011f":4,"\u011d":4,"g":4,"f":-2,"\u0119":3,"\u0117":3,"\u0115":3,"\u0113":3,"\u011b":3,"e":3,"d":4,"\u010b":4,"\u010d":4,"\u0109":4,"\u0107":4,"c":4,"\u0103":5,"\u0101":5,"a":5}},"w":{"d":"218,-162v6,-14,57,-13,42,12r-44,146v-10,7,-52,11,-56,-4r-27,-97r-25,97v-4,14,-50,14,-58,0r-44,-155v4,-10,43,-11,46,1r31,117r29,-117v3,-11,41,-12,44,-1r32,118","w":268,"k":{"-":5,".":21,",":26,"v":-3,"a":4,"\u0101":4,"\u0103":4,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"f":-1,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":-1,"\u0165":-1,"\u0163":-1,"y":-3,"\u0177":-3,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":-2,"\u0175":-2}},"\u0175":{"d":"135,-223v-10,17,-24,43,-54,30v10,-24,36,-71,77,-48v10,16,26,29,31,48v-8,5,-33,5,-36,-4xm218,-162v6,-14,57,-13,42,12r-44,146v-10,7,-52,11,-56,-4r-27,-97r-25,97v-4,14,-50,14,-58,0r-44,-155v4,-10,43,-11,46,1r31,117r29,-117v3,-11,41,-12,44,-1r32,118","w":268,"k":{"-":5,".":21,",":26,"v":-3,"a":4,"\u0101":4,"\u0103":4,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":3,"q":3,"e":3,"\u011b":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"f":-1,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":-1,"\u0165":-1,"\u0163":-1,"y":-3,"\u0177":-3,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":-2,"\u0175":-2}},"x":{"d":"113,-164v5,-8,40,-9,43,0r-41,76r45,84v-7,8,-44,10,-50,-1r-29,-56r-29,56v-4,9,-38,10,-46,1v12,-30,31,-54,45,-82r-42,-78v3,-9,44,-10,49,0r28,52","w":165,"k":{"-":11,"a":6,"\u0101":6,"\u0103":6,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":7,"q":7,"e":9,"\u011b":9,"\u0113":9,"\u0115":9,"\u0117":9,"\u0119":9,"o":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"u":4}},"y":{"d":"123,-161v2,-15,42,-11,44,0r-73,217v-5,10,-41,12,-49,2v5,-21,15,-38,22,-58v-4,-2,-5,-4,-7,-8r-56,-153v0,-14,36,-11,45,-4r40,111","w":170,"k":{"-":6,".":22,",":22,"v":-3,"a":5,"\u0101":5,"\u0103":5,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"f":-2,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":-2,"\u0165":-2,"\u0163":-2,"y":-2,"\u0177":-2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-2,"\u0175":-2}},"\u0177":{"d":"85,-223v-11,16,-24,43,-54,30v2,-17,25,-34,33,-51v10,-5,37,-5,43,3v11,16,26,29,31,48v-7,4,-33,5,-35,-4xm123,-161v2,-15,42,-11,44,0r-73,217v-5,10,-41,12,-49,2v5,-21,15,-38,22,-58v-4,-2,-5,-4,-7,-8r-56,-153v0,-14,36,-11,45,-4r40,111","w":170,"k":{"-":6,".":22,",":22,"v":-3,"a":5,"\u0101":5,"\u0103":5,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"f":-2,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":-2,"\u0165":-2,"\u0163":-2,"y":-2,"\u0177":-2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-2,"\u0175":-2}},"z":{"d":"124,-36v11,1,12,36,0,36r-102,0v-17,-1,-9,-34,-3,-43r59,-90v-27,-5,-71,16,-63,-27v1,-4,3,-9,7,-9r100,1v10,5,4,34,-1,42r-58,90r61,0","w":143,"k":{"v":3,"a":5,"\u0101":5,"\u0103":5,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":2,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"u":2,"y":3,"\u0177":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"w":3,"\u0175":3}},"\u017a":{"d":"123,-241v-17,20,-34,63,-72,46v15,-23,21,-60,64,-51v5,0,7,2,8,5xm124,-36v11,1,12,36,0,36r-102,0v-17,-1,-9,-34,-3,-43r59,-90v-27,-5,-71,16,-63,-27v1,-4,3,-9,7,-9r100,1v10,5,4,34,-1,42r-58,90r61,0","w":143,"k":{"v":3,"a":5,"\u0101":5,"\u0103":5,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":2,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"u":2,"y":3,"\u0177":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"w":3,"\u0175":3}},"\u017e":{"d":"73,-214v10,-17,23,-43,53,-30v-3,16,-23,36,-33,51v-14,3,-34,5,-43,-3v-10,-16,-26,-29,-31,-48v7,-4,32,-6,35,3xm124,-36v11,1,12,36,0,36r-102,0v-17,-1,-9,-34,-3,-43r59,-90v-27,-5,-71,16,-63,-27v1,-4,3,-9,7,-9r100,1v10,5,4,34,-1,42r-58,90r61,0","w":143,"k":{"v":3,"a":5,"\u0101":5,"\u0103":5,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":2,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"u":2,"y":3,"\u0177":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"w":3,"\u0175":3}},"\u017c":{"d":"75,-239v18,1,24,5,24,22v0,17,-7,21,-25,22v-19,0,-23,-4,-24,-21v-1,-18,7,-23,25,-23xm124,-36v11,1,12,36,0,36r-102,0v-17,-1,-9,-34,-3,-43r59,-90v-27,-5,-71,16,-63,-27v1,-4,3,-9,7,-9r100,1v10,5,4,34,-1,42r-58,90r61,0","w":143,"k":{"v":3,"a":5,"\u0101":5,"\u0103":5,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":2,"o":6,"\u014d":6,"\u014f":6,"\u0151":6,"\u0153":6,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"u":2,"y":3,"\u0177":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"w":3,"\u0175":3}},"`":{"d":"20,-237v-5,-10,7,-9,19,-10v34,0,36,32,51,52v-35,19,-53,-26,-70,-42","w":108},"!":{"d":"41,-234v4,-15,48,-13,48,0r-4,159v-2,11,-39,12,-39,0xm65,-49v19,0,25,7,25,26v0,19,-8,25,-25,26v-18,0,-25,-9,-25,-26v0,-17,5,-26,25,-26","w":117},"?":{"d":"67,-208v-19,-2,-35,17,-45,7v-11,-36,22,-39,52,-42v79,-9,103,95,45,129v-7,3,-16,5,-24,6v7,30,-12,56,-41,35v4,-22,-14,-60,16,-60v23,0,35,-14,35,-37v0,-25,-13,-36,-38,-38xm75,-49v19,0,25,7,25,26v0,19,-8,25,-25,26v-18,0,-25,-9,-25,-26v0,-17,5,-26,25,-26","w":166},",":{"d":"40,-50v42,-14,40,38,21,61v-13,16,-25,53,-57,36v8,-25,22,-42,22,-79v0,-11,3,-18,14,-18","w":92,"k":{"\u0163":5,"\u0162":18,"\u0165":5,"t":5,"\u0178":22,"\u0176":22,"Y":22,"X":-3,"\u0174":17,"W":17,"V":18,"\u0164":18,"T":18,"\u0134":-8,"J":-8,"\u0104":-5,"\u0102":-5,"\u0100":-5,"A":-5}},";":{"d":"53,-166v18,0,25,9,25,27v0,17,-5,26,-25,26v-19,0,-25,-7,-25,-26v0,-20,7,-27,25,-27xm44,-50v41,-13,40,38,21,61v-13,16,-25,51,-55,36v4,-26,26,-42,21,-79v-1,-12,3,-17,13,-18","w":99},":":{"d":"53,-166v18,0,25,9,25,27v0,17,-5,26,-25,26v-19,0,-25,-7,-25,-26v0,-20,7,-27,25,-27xm53,-51v18,0,25,9,25,27v0,17,-6,26,-25,26v-19,0,-25,-7,-25,-26v0,-20,7,-27,25,-27","w":99},".":{"d":"48,-52v20,0,27,6,26,27v0,21,-5,27,-26,27v-20,0,-25,-6,-26,-26v0,-21,6,-27,26,-28","w":96,"k":{"\u0163":9,"\u0162":25,"-":14,"\u017c":-2,"\u017e":-2,"\u017a":-2,"z":-2,"\u0177":12,"y":12,"\u0175":11,"w":11,"v":12,"\u0165":9,"t":9,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"g":-4,"f":7,"\u0178":33,"\u0176":33,"Y":33,"\u0174":17,"W":17,"V":24,"\u0172":3,"\u0170":3,"\u016e":3,"\u016c":3,"\u016a":3,"\u0168":3,"U":3,"\u0164":25,"T":25,"Q":4,"\u0152":4,"\u0150":4,"\u014e":4,"\u014c":4,"O":4,"\u0134":-6,"J":-6,"\u0122":6,"\u0120":6,"\u011e":6,"\u011c":6,"G":6,"\u010a":6,"\u010c":6,"\u0108":6,"\u0106":6,"C":6,"\u0104":-3,"\u0102":-3,"\u0100":-3,"A":-3}},"\/":{"d":"107,-253v3,-13,39,-11,43,-2r-108,304v-6,6,-47,9,-41,-7","w":154,"k":{"\u015f":10,"\u0161":10,"\u015d":10,"\u015b":10,"s":10,"\u0153":8,"\u0151":8,"\u014f":8,"\u014d":8,"o":8,"\u0123":8,"\u0121":8,"\u011f":8,"\u011d":8,"g":8,"\u0119":9,"\u0117":9,"\u0115":9,"\u0113":9,"\u011b":9,"e":9,"\u010b":9,"\u010d":9,"\u0109":9,"\u0107":9,"c":9,"\u0103":9,"\u0101":9,"a":9,"\u0134":9,"J":9,"\u0104":16,"\u0102":16,"\u0100":16,"A":16}},"|":{"d":"65,-247v4,-12,39,-10,41,0r0,304v-2,11,-37,11,-41,0r0,-304","w":171},"\\":{"d":"5,-253v6,-10,40,-8,44,1r105,297v-3,11,-38,9,-44,0","w":154},"-":{"d":"10,-88v0,-11,0,-18,9,-18v25,0,59,-4,79,4v1,11,6,31,-6,32r-73,0v-9,-1,-9,-7,-9,-18","w":110,"k":{"\u0177":4,"y":4,"x":6,"v":3,"f":3,"\u0178":15,"\u0176":15,"Y":15}},"\u2010":{"d":"10,-88v0,-11,0,-18,9,-18v25,0,59,-4,79,4v1,11,6,31,-6,32r-73,0v-9,-1,-9,-7,-9,-18","w":110},"\u00ad":{"d":"10,-88v0,-11,0,-18,9,-18v25,0,59,-4,79,4v1,11,6,31,-6,32r-73,0v-9,-1,-9,-7,-9,-18","w":110},"_":{"d":"173,31v8,1,7,6,7,17v0,9,0,16,-7,16r-167,0v-7,-1,-7,-6,-7,-16v0,-10,-1,-17,7,-17r167,0","w":179},"(":{"d":"95,-245v-39,84,-40,217,0,301v-4,8,-34,9,-39,1v-49,-76,-49,-231,2,-305v9,-2,32,-5,37,3","w":112,"k":{"j":-9,"\u0123":-2,"\u0121":-2,"\u011f":-2,"\u011d":-2,"g":-2}},")":{"d":"54,-248v52,78,49,227,2,305v-6,8,-34,8,-39,-1v39,-84,40,-217,0,-301v4,-8,27,-6,37,-3","w":112},"[":{"d":"69,28v16,1,36,-7,33,16v2,29,-40,10,-61,15v-9,1,-13,-5,-13,-14r0,-279v0,-27,44,-11,67,-15v10,2,10,32,0,32r-26,0r0,245","w":116},"]":{"d":"21,-249v24,4,69,-11,69,15r0,279v-2,26,-45,9,-69,14v-8,-1,-9,-29,0,-31r27,0r0,-245v-20,1,-40,3,-32,-23v0,-5,2,-8,5,-9","w":116},"{":{"d":"89,-253v21,-6,31,23,15,34v-30,-3,-22,31,-22,59v0,33,-10,53,-36,60v36,6,36,45,36,89v0,21,-2,38,20,37v11,-1,9,12,9,23v0,11,-12,10,-22,11v-50,0,-49,-49,-48,-101v1,-24,-6,-38,-25,-42v-10,-2,-10,-33,0,-34v26,-4,26,-34,25,-65v-1,-43,8,-70,48,-71","w":123},"}":{"d":"19,-227v-4,-17,3,-26,22,-26v51,0,50,50,48,101v-1,23,6,31,24,34v9,2,11,31,1,34v-27,5,-25,40,-25,73v1,44,-12,76,-56,70v-14,3,-17,-12,-14,-25v0,-7,5,-8,13,-8v22,0,15,-34,16,-59v1,-34,9,-60,36,-68v-36,-4,-36,-39,-36,-81v0,-22,1,-38,-21,-37v-5,0,-8,-2,-8,-8","w":123},"*":{"d":"151,-165v8,7,-6,34,-17,29r-35,-28v-1,19,22,52,-10,52v-33,0,-8,-33,-10,-52r-35,28v-9,5,-25,-21,-17,-29r42,-16r-42,-16v-8,-7,6,-34,17,-30r35,28v1,-19,-22,-51,10,-51v33,0,8,32,10,51r35,-28v10,-5,25,21,17,30r-42,16","w":179},"^":{"d":"51,-98v-7,13,-59,14,-42,-7r53,-119v12,-8,51,-9,57,4r54,123v0,13,-33,7,-43,3r-42,-99","w":179},"~":{"d":"109,-175v39,22,10,-36,53,-26v6,1,9,5,8,13v6,56,-69,72,-93,30v-5,-5,-9,-10,-18,-11v-24,0,-8,48,-48,28v-15,-59,62,-86,92,-40","w":179},"'":{"d":"21,-239v4,-10,41,-10,41,0r-4,79v0,10,-14,7,-24,7v-4,-1,-9,-3,-9,-7","w":84},"\"":{"d":"88,-239v4,-10,37,-10,40,0r-4,79v-1,11,-31,11,-32,0xm21,-239v4,-11,38,-9,41,0r-5,79v1,8,-25,10,-31,3v-4,-25,-3,-55,-5,-82","w":157},"&":{"d":"240,-2v-20,16,-48,-6,-63,-18v-45,37,-165,36,-163,-43v1,-35,23,-49,46,-64v-12,-15,-25,-29,-25,-53v0,-42,33,-59,77,-59v40,0,71,12,71,51v0,38,-31,51,-59,67r48,46v8,-11,9,-30,11,-47v8,-4,41,-12,41,9v0,27,-8,47,-19,64v11,7,16,15,31,16v8,1,5,21,4,31xm110,-205v-39,-3,-28,45,-10,58v15,-10,36,-16,36,-37v0,-14,-11,-20,-26,-21xm84,-100v-40,18,-19,82,31,68v11,-3,20,-7,28,-12","w":253},"@":{"d":"179,-236v74,-1,122,29,122,101v0,58,-19,106,-79,108v-23,1,-37,-8,-41,-25v-23,33,-100,37,-94,-25v5,-50,18,-92,67,-95v21,-1,30,11,40,23v-3,-19,19,-26,35,-17v-4,33,-18,68,-14,101v32,21,46,-33,46,-68v0,-52,-33,-70,-86,-69v-81,1,-109,53,-115,132v-6,87,88,91,157,72v2,7,4,22,0,29v-15,12,-45,14,-71,14v-79,0,-127,-34,-125,-112v3,-104,53,-167,158,-169xm126,-93v-7,32,22,45,39,22v14,-9,13,-31,18,-49v-19,-40,-56,-6,-57,27","w":323},"$":{"d":"99,-193v-33,-6,-46,33,-18,47v35,17,87,22,86,77v-1,46,-33,64,-75,69v-1,21,1,57,-35,39v-2,-12,2,-27,3,-40v-26,-4,-53,-7,-45,-42v0,-6,2,-10,6,-9v24,18,116,30,94,-25v-30,-31,-99,-23,-97,-87v0,-41,28,-58,65,-63v5,-18,-8,-48,27,-41v17,3,4,27,5,41v25,-2,53,22,34,48v-15,-4,-29,-15,-50,-14","w":182},"#":{"d":"151,-171v18,-2,25,2,23,22v-1,12,-15,7,-27,8r-6,50v23,-8,33,19,17,31r-21,0r-6,55v-3,8,-32,10,-35,0r7,-55r-40,0r-6,55v-3,8,-32,10,-35,0r6,-55v-23,9,-31,-21,-16,-31r20,0r6,-50v-23,9,-32,-20,-17,-30r21,0r6,-51v2,-10,28,-8,35,-3r-7,54r40,0r6,-51v2,-10,28,-8,35,-3xm73,-141r-6,50r39,0r6,-50r-39,0","w":179},"0":{"d":"94,-232v66,0,79,51,79,117v0,66,-17,119,-84,119v-67,1,-79,-51,-79,-117v0,-67,18,-119,84,-119xm91,-33v37,0,35,-43,35,-79v0,-39,2,-83,-34,-83v-36,0,-35,41,-35,80v0,39,-4,82,34,82","w":182},"1":{"d":"122,-36v22,1,53,-8,43,27v0,5,-2,9,-6,9r-126,0v-9,-3,-10,-32,0,-36r43,0r0,-148v-14,8,-27,17,-43,23v-11,0,-9,-30,-1,-34v23,-12,52,-48,90,-29r0,188","w":182},"2":{"d":"20,-194v10,-61,146,-48,139,22v-7,68,-55,93,-89,135r93,1v7,5,9,33,-2,36r-138,-1v-16,-8,-6,-42,4,-49v27,-36,77,-56,77,-112v0,-44,-59,-25,-78,-11v-8,-1,-5,-13,-6,-21","w":182},"3":{"d":"106,-167v-1,-44,-61,-25,-80,-10v-23,-33,22,-56,62,-55v41,1,69,18,69,57v0,32,-17,48,-41,56v30,4,49,21,51,52v4,72,-100,88,-150,53v-1,-9,-7,-33,4,-34v23,16,93,28,93,-17v0,-34,-38,-34,-73,-35v-7,-4,-8,-33,3,-33v33,2,63,-2,62,-34","w":182},"4":{"d":"148,-84v28,-10,35,24,20,37r-20,0v-1,26,11,55,-33,48v-19,-3,-8,-31,-11,-48r-92,-1v-10,-9,-6,-39,0,-50r74,-127v15,-4,54,-9,62,4r0,137xm104,-84r-1,-105r-60,105r61,0","w":182},"5":{"d":"64,-139v57,-6,102,10,102,65v0,75,-94,96,-147,63v-3,-10,-7,-42,9,-33v26,16,89,20,89,-26v0,-40,-45,-37,-82,-34v-8,0,-9,-3,-9,-11r0,-99v0,-9,3,-13,11,-13r108,0v12,2,9,37,0,39r-81,0r0,49","w":182},"6":{"d":"60,-130v43,-29,118,-10,112,54v-5,49,-29,80,-81,80v-62,0,-77,-45,-76,-109v1,-73,23,-124,97,-126v27,-1,54,4,44,38v-18,8,-70,-17,-84,17v-8,11,-12,28,-12,46xm94,-31v23,0,29,-18,32,-41v5,-43,-45,-42,-66,-24v2,34,2,65,34,65","w":182},"7":{"d":"157,-227v18,-1,10,35,5,47r-77,178v-10,4,-55,8,-48,-8r80,-177r-95,0v-11,-2,-12,-40,0,-40r135,0","w":182},"8":{"d":"126,-120v23,13,46,27,46,59v0,46,-34,65,-83,65v-45,0,-78,-15,-78,-59v0,-33,22,-48,45,-60v-21,-11,-39,-26,-39,-55v0,-44,32,-62,77,-62v41,0,71,16,71,56v0,29,-18,45,-39,56xm94,-136v30,-8,40,-62,-3,-62v-34,0,-37,43,-12,53v4,3,9,6,15,9xm92,-30v40,0,43,-47,13,-59v-5,-2,-10,-6,-16,-9v-15,10,-33,17,-33,40v0,20,14,28,36,28","w":182},"9":{"d":"91,-232v62,-1,78,46,78,108v0,74,-25,127,-100,128v-29,1,-61,-9,-46,-43v34,10,93,12,97,-33v1,-8,4,-16,4,-25v-43,27,-119,12,-112,-56v5,-50,29,-78,79,-79xm57,-157v-5,42,43,46,66,27v-1,-35,-2,-66,-34,-66v-23,0,-29,17,-32,39","w":182},"%":{"d":"200,-117v37,0,53,22,52,59v0,37,-15,61,-53,61v-38,1,-51,-23,-52,-59v0,-38,17,-61,53,-61xm200,-22v27,-1,25,-69,0,-70v-26,0,-26,70,0,70xm63,-230v38,0,53,21,52,58v0,38,-15,61,-53,61v-38,0,-53,-21,-52,-59v0,-37,16,-60,53,-60xm62,-206v-25,2,-25,71,1,70v27,-1,24,-70,-1,-70xm194,-227v6,-8,33,-11,38,-1r-168,230v-7,5,-42,7,-32,-7","w":262},"+":{"d":"163,-118v9,-1,7,15,7,25v-5,19,-42,5,-62,9r0,60v-2,10,-33,11,-37,0r0,-60r-54,0v-10,0,-8,-16,-7,-25v0,-5,2,-10,6,-9r55,0v2,-21,-5,-51,4,-66v11,-1,30,-5,33,6r0,60r55,0","w":179,"k":{"+":-4}},"=":{"d":"156,-154v12,0,11,34,0,34r-134,0v-9,-1,-11,-34,0,-34r134,0xm156,-83v12,0,11,34,0,34r-134,0v-9,-1,-11,-34,0,-34r134,0","w":179},"<":{"d":"17,-82v-8,-6,-8,-35,0,-39r135,-67v9,-3,8,4,9,15v-1,9,2,22,-7,24r-101,48r104,48v4,7,8,45,-5,38","w":179},">":{"d":"26,-147v-11,-3,-12,-38,-3,-42v48,21,92,47,139,69v8,4,7,32,0,38r-139,68v-9,-4,-7,-35,1,-40r102,-47","w":179},"\u0162":{"d":"45,51v-9,-39,50,2,33,-37r-7,-15r36,0v16,25,14,67,-27,64v-14,-1,-32,-1,-35,-12xm169,-227v10,2,11,33,0,37r-57,0r0,184v-4,11,-40,11,-46,0r0,-184r-57,0v-10,-3,-10,-34,0,-37r160,0","w":178,"k":{"-":25,"\/":21,".":30,":":15,";":15,",":33,"v":11,"\u0135":-13,"\u012d":-14,"\u012b":-17,"\u0129":-23,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":13,"\u0134":13,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"a":27,"\u0101":27,"\u0103":27,"c":31,"\u0107":31,"\u0109":31,"\u010d":31,"\u010b":31,"d":26,"q":26,"\u0131":18,"m":18,"\u014b":18,"p":18,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u0169":18,"\u016b":18,"\u016d":18,"\u016f":18,"\u0171":18,"\u0173":18,"e":31,"\u011b":31,"\u0113":31,"\u0115":31,"\u0117":31,"\u0119":31,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"o":31,"\u014d":31,"\u014f":31,"\u0151":31,"\u0153":31,"s":24,"\u015b":24,"\u015d":24,"\u0161":24,"\u015f":24,"u":18,"x":13,"y":11,"\u0177":11,"z":19,"\u017a":19,"\u017e":19,"\u017c":19,"A":28,"\u0100":28,"\u0102":28,"\u0104":28,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"T":-4,"\u0164":-4,"\u0162":-4,"g":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"w":11,"\u0175":11}},"\u0163":{"d":"31,53v-10,-40,49,1,34,-37r-7,-16r35,0v17,24,14,68,-26,64v-15,-1,-33,0,-36,-11xm74,-59v-5,32,26,21,40,24v6,28,-7,39,-33,39v-66,0,-49,-76,-51,-137v-26,10,-35,-23,-19,-36r19,0v0,-25,-7,-50,32,-42v19,-1,10,26,12,42v18,2,46,-9,41,18v4,25,-22,17,-41,18r0,74","w":124,"k":{"-":9,"a":4,"\u0101":4,"\u0103":4,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":4,"q":4,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":4,"\u0165":4,"\u0163":4}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Calibri is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Calibri is a modern sans serif family with subtle roundings on stems and
 * corners. It features real italics, small caps, and multiple numeral sets. Its
 * proportions allow high impact in tightly set lines of big and small text alike.
 * Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a
 * warm and soft character.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Luc(as) de Groot
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
//Cufon.registerFont({"w":185,"face":{"font-family":"Calibri","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 15 5 2 2 2 4 10 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-40.3186 -312.009 336.31 65.3197","underline-thickness":"23.5547","underline-position":"-29.0039","slope":"-11","unicode-range":"U+0020-U+017F"},"glyphs":{" ":{"w":81},"\u00a0":{"w":81},"A":{"d":"112,-222v6,-9,38,-11,40,0r35,218v-2,8,-28,8,-31,0r-9,-56r-94,0v-12,19,-20,43,-35,60v-11,0,-34,6,-25,-11xm127,-197r-62,113r79,0","w":208,"k":{"-":10,".":-2,",":-3,"?":21,"v":12,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"U":10,"\u0168":10,"\u016a":10,"\u016c":10,"\u016e":10,"\u0170":10,"\u0172":10,"W":21,"\u0174":21,"Y":31,"\u0176":31,"\u0178":31,"t":10,"\u0165":10,"\u0163":10,"y":13,"\u0177":13,"T":30,"\u0164":30,"\u0162":30,"V":26}},"\u0100":{"d":"194,-279v9,2,2,21,-4,23r-96,0v-9,-2,-4,-23,4,-23r96,0xm112,-222v6,-9,38,-11,40,0r35,218v-2,8,-28,8,-31,0r-9,-56r-94,0v-12,19,-20,43,-35,60v-11,0,-34,6,-25,-11xm127,-197r-62,113r79,0","w":208,"k":{"-":10,".":-2,",":-3,"?":21,"v":12,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"U":10,"\u0168":10,"\u016a":10,"\u016c":10,"\u016e":10,"\u0170":10,"\u0172":10,"W":21,"\u0174":21,"Y":31,"\u0176":31,"\u0178":31,"t":10,"\u0165":10,"\u0163":10,"y":13,"\u0177":13,"T":30,"\u0164":30,"\u0162":30,"V":26}},"\u0102":{"d":"122,-284v9,37,49,8,53,-12v6,0,17,-3,18,2v6,53,-98,71,-93,11v-4,-14,15,-20,23,-10xm112,-222v6,-9,38,-11,40,0r35,218v-2,8,-28,8,-31,0r-9,-56r-94,0v-12,19,-20,43,-35,60v-11,0,-34,6,-25,-11xm127,-197r-62,113r79,0","w":208,"k":{"-":10,".":-2,",":-3,"?":21,"v":12,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"U":10,"\u0168":10,"\u016a":10,"\u016c":10,"\u016e":10,"\u0170":10,"\u0172":10,"W":21,"\u0174":21,"Y":31,"\u0176":31,"\u0178":31,"t":10,"\u0165":10,"\u0163":10,"y":13,"\u0177":13,"T":30,"\u0164":30,"\u0162":30,"V":26}},"\u0104":{"d":"151,29v-16,27,43,-4,27,27v-23,25,-90,-6,-48,-38v7,-8,17,-16,26,-23r-9,-55r-94,0v-12,19,-20,43,-35,60v-11,0,-34,6,-25,-11r125,-216v11,-1,32,-5,34,5r34,217v-10,13,-27,20,-35,34xm127,-197r-62,113r79,0","w":208,"k":{"-":10,".":-2,",":-3,"?":21,"v":12,"C":8,"\u0106":8,"\u0108":8,"\u010c":8,"\u010a":8,"G":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"J":-4,"\u0134":-4,"O":10,"\u014c":10,"\u014e":10,"\u0150":10,"\u0152":10,"Q":10,"U":10,"\u0168":10,"\u016a":10,"\u016c":10,"\u016e":10,"\u0170":10,"\u0172":10,"W":21,"\u0174":21,"Y":31,"\u0176":31,"\u0178":31,"t":10,"\u0165":10,"\u0163":10,"y":13,"\u0177":13,"T":30,"\u0164":30,"\u0162":30,"V":26}},"B":{"d":"62,-225v52,-5,124,-11,123,42v-1,33,-18,52,-42,62v21,4,35,20,35,44v0,74,-84,87,-160,74v-2,-2,-3,-5,-2,-9r41,-203v1,-5,2,-8,5,-10xm70,-129v48,4,83,-7,83,-49v0,-30,-38,-24,-69,-25xm49,-25v52,3,97,-2,97,-50v0,-35,-45,-30,-81,-30","w":195,"k":{",":5,"v":4,"W":6,"\u0174":6,"X":9,"Y":11,"\u0176":11,"\u0178":11,"Z":4,"\u0179":4,"\u017d":4,"\u017b":4,"f":5,"t":5,"\u0165":5,"\u0163":5,"x":5,"y":5,"\u0177":5,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":9,"\u0164":9,"\u0162":9,"V":7}},"C":{"d":"143,-230v33,-2,76,19,49,47v-12,-10,-26,-23,-51,-21v-62,5,-88,59,-88,121v0,35,16,58,52,59v27,1,43,-13,60,-20v8,2,2,15,1,21v-11,19,-39,26,-68,26v-51,0,-78,-31,-78,-83v0,-83,39,-145,123,-150","w":188,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"T":-2,"\u0164":-2,"\u0162":-2}},"\u0106":{"d":"167,-290v3,-9,34,-11,34,-1v-21,16,-34,51,-71,44v7,-17,26,-29,37,-43xm143,-230v33,-2,76,19,49,47v-12,-10,-26,-23,-51,-21v-62,5,-88,59,-88,121v0,35,16,58,52,59v27,1,43,-13,60,-20v8,2,2,15,1,21v-11,19,-39,26,-68,26v-51,0,-78,-31,-78,-83v0,-83,39,-145,123,-150","w":188,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"T":-2,"\u0164":-2,"\u0162":-2}},"\u0108":{"d":"152,-279v-17,11,-36,45,-65,30v25,-14,45,-61,83,-43v10,15,22,27,31,43v-2,6,-24,5,-28,0xm143,-230v33,-2,76,19,49,47v-12,-10,-26,-23,-51,-21v-62,5,-88,59,-88,121v0,35,16,58,52,59v27,1,43,-13,60,-20v8,2,2,15,1,21v-11,19,-39,26,-68,26v-51,0,-78,-31,-78,-83v0,-83,39,-145,123,-150","w":188,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"T":-2,"\u0164":-2,"\u0162":-2}},"\u010c":{"d":"147,-263v17,-11,35,-45,65,-30v-25,14,-45,61,-84,43r-31,-43v2,-7,25,-5,29,0xm143,-230v33,-2,76,19,49,47v-12,-10,-26,-23,-51,-21v-62,5,-88,59,-88,121v0,35,16,58,52,59v27,1,43,-13,60,-20v8,2,2,15,1,21v-11,19,-39,26,-68,26v-51,0,-78,-31,-78,-83v0,-83,39,-145,123,-150","w":188,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"T":-2,"\u0164":-2,"\u0162":-2}},"\u010a":{"d":"170,-276v5,21,-31,36,-36,15v-8,-22,30,-36,36,-15xm143,-230v33,-2,76,19,49,47v-12,-10,-26,-23,-51,-21v-62,5,-88,59,-88,121v0,35,16,58,52,59v27,1,43,-13,60,-20v8,2,2,15,1,21v-11,19,-39,26,-68,26v-51,0,-78,-31,-78,-83v0,-83,39,-145,123,-150","w":188,"k":{",":2,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":-2,"\u0134":-2,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"T":-2,"\u0164":-2,"\u0162":-2}},"D":{"d":"62,-225v78,-10,156,1,153,79v-4,109,-71,160,-194,145v-4,-1,-7,-6,-5,-11r41,-203v1,-5,2,-8,5,-10xm49,-25v93,9,131,-40,134,-118v2,-53,-41,-63,-99,-59","w":221,"k":{".":10,",":11,"J":5,"\u0134":5,"W":3,"\u0174":3,"X":8,"Y":7,"\u0176":7,"\u0178":7,"Z":3,"\u0179":3,"\u017d":3,"\u017b":3,"A":6,"\u0100":6,"\u0102":6,"\u0104":6,"T":7,"\u0164":7,"\u0162":7,"V":5}},"\u010e":{"d":"132,-263v17,-11,36,-45,66,-30v-24,14,-45,61,-84,43v-10,-15,-22,-27,-31,-43v2,-7,26,-5,28,0xm62,-225v78,-10,156,1,153,79v-4,109,-71,160,-194,145v-4,-1,-7,-6,-5,-11r41,-203v1,-5,2,-8,5,-10xm49,-25v93,9,131,-40,134,-118v2,-53,-41,-63,-99,-59","w":221,"k":{".":10,",":11,"J":5,"\u0134":5,"W":3,"\u0174":3,"X":8,"Y":7,"\u0176":7,"\u0178":7,"Z":3,"\u0179":3,"\u017d":3,"\u017b":3,"A":6,"\u0100":6,"\u0102":6,"\u0104":6,"T":7,"\u0164":7,"\u0162":7,"V":5}},"\u0110":{"d":"65,-225v78,-10,153,1,153,79v0,109,-77,164,-197,143v-1,-33,13,-69,17,-103v-14,0,-34,4,-25,-17v1,-11,18,-8,30,-8v8,-30,9,-68,22,-94xm52,-25v92,8,132,-38,134,-118v2,-53,-41,-63,-98,-59r-15,71v14,1,34,-3,45,2v8,29,-26,23,-50,23","w":224,"k":{".":10,",":11,"J":5,"\u0134":5,"W":3,"\u0174":3,"X":8,"Y":7,"\u0176":7,"\u0178":7,"Z":3,"\u0179":3,"\u017d":3,"\u017b":3,"A":6,"\u0100":6,"\u0102":6,"\u0104":6,"T":7,"\u0164":7,"\u0162":7,"V":5}},"E":{"d":"25,0v-6,0,-11,-5,-9,-12r41,-203v1,-8,6,-12,14,-12r107,0v7,2,5,25,-5,25r-88,0r-15,71r77,0v8,2,3,23,-5,24r-77,0r-16,82r90,0v9,2,4,25,-5,25r-109,0","w":175,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"\u011a":{"d":"125,-263v17,-11,36,-45,65,-30v-22,16,-46,60,-83,43v-10,-15,-22,-27,-31,-43v24,-16,40,17,49,30xm25,0v-6,0,-11,-5,-9,-12r41,-203v1,-8,6,-12,14,-12r107,0v7,2,5,25,-5,25r-88,0r-15,71r77,0v8,2,3,23,-5,24r-77,0r-16,82r90,0v9,2,4,25,-5,25r-109,0","w":175,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"\u0112":{"d":"178,-279v9,2,3,22,-5,23r-95,0v-9,-1,-5,-23,4,-23r96,0xm25,0v-6,0,-11,-5,-9,-12r41,-203v1,-8,6,-12,14,-12r107,0v7,2,5,25,-5,25r-88,0r-15,71r77,0v8,2,3,23,-5,24r-77,0r-16,82r90,0v9,2,4,25,-5,25r-109,0","w":175,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"\u0114":{"d":"109,-277v14,25,49,1,51,-19v6,0,18,-3,19,2v6,53,-98,71,-93,11v-4,-13,14,-20,22,-10xm25,0v-6,0,-11,-5,-9,-12r41,-203v1,-8,6,-12,14,-12r107,0v7,2,5,25,-5,25r-88,0r-15,71r77,0v8,2,3,23,-5,24r-77,0r-16,82r90,0v9,2,4,25,-5,25r-109,0","w":175,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"\u0116":{"d":"149,-276v6,22,-31,36,-36,15v-7,-21,30,-36,36,-15xm25,0v-6,0,-11,-5,-9,-12r41,-203v1,-8,6,-12,14,-12r107,0v7,2,5,25,-5,25r-88,0r-15,71r77,0v8,2,3,23,-5,24r-77,0r-16,82r90,0v9,2,4,25,-5,25r-109,0","w":175,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"\u0118":{"d":"105,29v-14,28,44,-5,30,28v-24,21,-88,-4,-52,-37v5,-8,14,-14,22,-20r-84,-1v-4,-1,-6,-6,-5,-11r41,-203v1,-8,6,-12,14,-12r107,0v9,2,4,25,-5,25r-88,0r-15,71r77,0v8,3,3,23,-5,24r-77,0r-16,82r90,0v16,24,-26,37,-34,54","w":175,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"F":{"d":"173,-227v9,2,3,25,-5,25r-83,0r-16,78r79,0v8,2,3,25,-5,25r-79,0v-9,32,-10,72,-23,99v-9,-1,-26,6,-26,-5r42,-210v1,-8,6,-12,14,-12r102,0","w":165,"k":{"\/":13,".":33,",":35,"\u0135":-3,"\u012d":-2,"\u012b":-6,"\u0129":-13,"\u0111":5,"\u010f":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"J":18,"\u0134":18,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"X":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":5,"\u0101":5,"\u0103":5,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":5,"q":5,"\u0131":5,"m":5,"\u014b":5,"p":5,"r":5,"\u0155":5,"\u0159":5,"\u0157":5,"\u0169":5,"\u016b":5,"\u016d":5,"\u016f":5,"\u0171":5,"\u0173":5,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"n":5,"\u0144":5,"\u0148":5,"\u0146":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":6,"\u015b":6,"\u015d":6,"\u0161":6,"\u015f":6,"u":5,"A":19,"\u0100":19,"\u0102":19,"\u0104":19,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5}},"G":{"d":"157,-231v32,0,86,14,60,47v-18,-8,-33,-23,-63,-21v-67,5,-98,51,-103,118v-3,59,62,78,110,53r13,-66r-53,0v-8,-2,-3,-24,5,-24v26,0,59,-4,80,3v1,31,-13,64,-17,96v-9,23,-45,28,-76,28v-58,0,-94,-28,-94,-86v0,-87,49,-148,138,-148","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u011c":{"d":"161,-279v-17,11,-36,45,-65,30v25,-14,45,-61,83,-43v10,15,22,27,31,43v-2,6,-24,5,-28,0xm157,-231v32,0,86,14,60,47v-18,-8,-33,-23,-63,-21v-67,5,-98,51,-103,118v-3,59,62,78,110,53r13,-66r-53,0v-8,-2,-3,-24,5,-24v26,0,59,-4,80,3v1,31,-13,64,-17,96v-9,23,-45,28,-76,28v-58,0,-94,-28,-94,-86v0,-87,49,-148,138,-148","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u011e":{"d":"139,-277v14,26,49,0,51,-19v7,0,17,-2,19,2v5,51,-95,73,-94,11v-3,-12,15,-21,23,-10xm157,-231v32,0,86,14,60,47v-18,-8,-33,-23,-63,-21v-67,5,-98,51,-103,118v-3,59,62,78,110,53r13,-66r-53,0v-8,-2,-3,-24,5,-24v26,0,59,-4,80,3v1,31,-13,64,-17,96v-9,23,-45,28,-76,28v-58,0,-94,-28,-94,-86v0,-87,49,-148,138,-148","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u0120":{"d":"178,-276v6,22,-30,35,-36,15v-7,-21,30,-36,36,-15xm157,-231v32,0,86,14,60,47v-18,-8,-33,-23,-63,-21v-67,5,-98,51,-103,118v-3,59,62,78,110,53r13,-66r-53,0v-8,-2,-3,-24,5,-24v26,0,59,-4,80,3v1,31,-13,64,-17,96v-9,23,-45,28,-76,28v-58,0,-94,-28,-94,-86v0,-87,49,-148,138,-148","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"\u0122":{"d":"83,21v2,-8,29,-10,30,-1v-12,14,-21,56,-48,40xm157,-231v32,0,86,14,60,47v-18,-8,-33,-23,-63,-21v-67,5,-98,51,-103,118v-3,59,62,78,110,53r13,-66r-53,0v-8,-2,-3,-24,5,-24v26,0,59,-4,80,3v1,31,-13,64,-17,96v-9,23,-45,28,-76,28v-58,0,-94,-28,-94,-86v0,-87,49,-148,138,-148","w":227,"k":{"v":5,"W":2,"\u0174":2,"Y":5,"\u0176":5,"\u0178":5,"x":2,"y":5,"\u0177":5,"T":2,"\u0164":2,"\u0162":2,"V":2,"w":4,"\u0175":4}},"H":{"d":"192,-223v3,-7,28,-9,30,0r-43,219v-3,6,-27,10,-30,0r20,-101r-104,0r-20,101v-2,7,-28,9,-30,0r43,-219v5,-7,27,-9,31,0r-19,91r104,0","w":224,"k":{"\u012b":-2,"\u0129":-3}},"\u0124":{"d":"150,-279v-16,12,-36,44,-65,30v25,-14,45,-61,84,-43v10,15,22,27,31,43v-4,6,-24,6,-29,0xm192,-223v3,-7,28,-9,30,0r-43,219v-3,6,-27,10,-30,0r20,-101r-104,0r-20,101v-2,7,-28,9,-30,0r43,-219v5,-7,27,-9,31,0r-19,91r104,0","w":224,"k":{"\u012b":-2,"\u0129":-3}},"\u0126":{"d":"82,-161r-7,36r103,0r8,-36r-104,0xm190,-185v3,-21,6,-57,38,-40r-7,40v14,1,34,-6,27,17v-3,10,-20,6,-32,7r-31,157v-4,6,-27,9,-31,0r19,-96r-103,0r-19,96v-2,7,-28,9,-30,0r31,-157v-11,-2,-34,6,-28,-11v-2,-17,18,-13,33,-13v0,-22,10,-59,38,-38r-8,38r103,0","w":236},"I":{"d":"58,-223v5,-7,27,-9,31,0r-44,219v-2,7,-28,9,-30,0","w":90},"\u0128":{"d":"106,-245v-25,0,-55,-41,-65,-3v-4,4,-27,6,-20,-7v2,-38,55,-39,75,-16v17,10,25,-5,29,-16v8,-1,20,-3,18,8v-4,19,-14,33,-37,34xm58,-223v5,-7,27,-9,31,0r-44,219v-2,7,-28,9,-30,0","w":90},"\u012a":{"d":"133,-279v9,2,3,22,-5,23r-96,0v-9,-2,-3,-23,5,-23r96,0xm58,-223v5,-7,27,-9,31,0r-44,219v-2,7,-28,9,-30,0","w":90},"\u012c":{"d":"62,-284v9,37,50,9,53,-12v6,0,17,-3,18,2v-4,29,-21,48,-54,49v-29,1,-44,-17,-38,-47v1,-7,19,-7,22,-1xm58,-223v5,-7,27,-9,31,0r-44,219v-2,7,-28,9,-30,0","w":90},"\u0130":{"d":"101,-276v6,22,-31,36,-36,15v-7,-21,30,-36,36,-15xm58,-223v5,-7,27,-9,31,0r-44,219v-2,7,-28,9,-30,0","w":90},"\u012e":{"d":"14,28v-13,30,45,-5,30,29v-25,21,-85,-3,-52,-38v7,-7,21,-14,23,-23r43,-219v5,-7,27,-9,31,0r-49,229v-8,7,-20,14,-26,22","w":90},"\u0132":{"d":"58,-223v5,-7,27,-9,31,0r-44,219v-2,7,-28,9,-30,0xm174,-223v3,-8,22,-6,30,-3r-33,171v-7,32,-20,59,-59,58v-18,-1,-38,-1,-33,-21v3,-4,2,-11,7,-13v23,15,57,4,55,-27","w":205},"J":{"d":"83,-223v3,-8,22,-6,30,-3r-33,171v-7,32,-20,59,-59,58v-18,-1,-38,-1,-33,-21v3,-4,2,-11,7,-13v23,15,57,4,55,-27","w":114,"k":{".":3,",":5,"X":4,"A":6,"\u0100":6,"\u0102":6,"\u0104":6}},"\u0134":{"d":"106,-279v-17,11,-36,45,-65,30v25,-14,45,-61,83,-43v10,15,22,27,31,43v-2,6,-24,5,-28,0xm83,-223v3,-8,22,-6,30,-3r-33,171v-7,32,-20,59,-59,58v-18,-1,-38,-1,-33,-21v3,-4,2,-11,7,-13v23,15,57,4,55,-27","w":114,"k":{".":3,",":5,"X":4,"A":6,"\u0100":6,"\u0102":6,"\u0104":6}},"K":{"d":"58,-223v5,-7,27,-9,31,0r-20,101r106,-105v15,-6,36,0,20,16r-95,92r63,114v-1,9,-31,10,-33,0r-62,-113r-23,113v-1,9,-24,8,-30,3","w":187,"k":{"-":6,"v":18,"\u0135":-6,"\u012d":-6,"\u012b":-7,"\u0129":-15,"\u0111":8,"\u010f":8,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"O":17,"\u014c":17,"\u014e":17,"\u0150":17,"\u0152":17,"Q":17,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":6,"\u0174":6,"a":8,"\u0101":8,"\u0103":8,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":8,"q":8,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":8,"\u011b":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"f":4,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":7,"\u0165":7,"\u0163":7,"u":3,"y":15,"\u0177":15,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"w":17,"\u0175":17}},"\u0136":{"d":"63,21v3,-8,29,-10,30,-1v-14,15,-17,52,-48,42v4,-16,12,-27,18,-41xm58,-223v5,-7,27,-9,31,0r-20,101r106,-105v15,-6,36,0,20,16r-95,92r63,114v-1,9,-31,10,-33,0r-62,-113r-23,113v-1,9,-24,8,-30,3","w":187,"k":{"-":6,"v":18,"\u0135":-6,"\u012d":-6,"\u012b":-7,"\u0129":-15,"\u0111":8,"\u010f":8,"C":14,"\u0106":14,"\u0108":14,"\u010c":14,"\u010a":14,"G":14,"\u011c":14,"\u011e":14,"\u0120":14,"\u0122":14,"O":17,"\u014c":17,"\u014e":17,"\u0150":17,"\u0152":17,"Q":17,"U":6,"\u0168":6,"\u016a":6,"\u016c":6,"\u016e":6,"\u0170":6,"\u0172":6,"W":6,"\u0174":6,"a":8,"\u0101":8,"\u0103":8,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":8,"q":8,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":8,"\u011b":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"f":4,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":7,"\u0165":7,"\u0163":7,"u":3,"y":15,"\u0177":15,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"w":17,"\u0175":17}},"L":{"d":"131,-26v9,2,3,26,-5,26r-105,-1v-4,-1,-6,-6,-5,-11r42,-211v5,-7,27,-9,31,0r-40,197r82,0","w":151,"k":{",":-3,"v":15,"C":11,"\u0106":11,"\u0108":11,"\u010c":11,"\u010a":11,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"J":-4,"\u0134":-4,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"U":16,"\u0168":16,"\u016a":16,"\u016c":16,"\u016e":16,"\u0170":16,"\u0172":16,"W":22,"\u0174":22,"Y":29,"\u0176":29,"\u0178":29,"t":7,"\u0165":7,"\u0163":7,"y":14,"\u0177":14,"T":28,"\u0164":28,"\u0162":28,"V":26,"w":14,"\u0175":14}},"\u0139":{"d":"119,-290v4,-8,31,-11,34,-1v-22,16,-35,50,-71,44v7,-17,26,-29,37,-43xm131,-26v9,2,3,26,-5,26r-105,-1v-4,-1,-6,-6,-5,-11r42,-211v5,-7,27,-9,31,0r-40,197r82,0","w":151,"k":{",":-3,"v":15,"C":11,"\u0106":11,"\u0108":11,"\u010c":11,"\u010a":11,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"J":-4,"\u0134":-4,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"U":16,"\u0168":16,"\u016a":16,"\u016c":16,"\u016e":16,"\u0170":16,"\u0172":16,"W":22,"\u0174":22,"Y":29,"\u0176":29,"\u0178":29,"t":7,"\u0165":7,"\u0163":7,"y":14,"\u0177":14,"T":28,"\u0164":28,"\u0162":28,"V":26,"w":14,"\u0175":14}},"\u013d":{"d":"133,-231v1,-8,31,-11,26,0r-28,55v-1,5,-19,7,-21,1xm131,-26v9,2,3,26,-5,26r-105,-1v-4,-1,-6,-6,-5,-11r42,-211v5,-7,27,-9,31,0r-40,197r82,0","w":152},"\u013b":{"d":"56,18v7,-5,34,-6,26,5v-11,14,-21,53,-47,37xm131,-26v9,2,3,26,-5,26r-105,-1v-4,-1,-6,-6,-5,-11r42,-211v5,-7,27,-9,31,0r-40,197r82,0","w":151,"k":{",":-3,"v":15,"C":11,"\u0106":11,"\u0108":11,"\u010c":11,"\u010a":11,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"J":-4,"\u0134":-4,"O":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"Q":12,"U":16,"\u0168":16,"\u016a":16,"\u016c":16,"\u016e":16,"\u0170":16,"\u0172":16,"W":22,"\u0174":22,"Y":29,"\u0176":29,"\u0178":29,"t":7,"\u0165":7,"\u0163":7,"y":14,"\u0177":14,"T":28,"\u0164":28,"\u0162":28,"V":26,"w":14,"\u0175":14}},"\u0141":{"d":"134,-26v10,3,3,26,-5,26v-35,0,-78,4,-108,-3v-2,-30,11,-62,15,-92v-10,4,-19,12,-29,14v-6,-28,20,-32,35,-42r20,-100v3,-7,28,-9,30,0r-16,81v16,-7,30,-20,48,-24v4,36,-35,36,-54,52r-17,88r81,0","w":154},"\u013f":{"d":"143,-104v-9,-27,23,-45,38,-27v8,23,-20,47,-38,27xm131,-26v9,2,3,26,-5,26r-105,-1v-4,-1,-6,-6,-5,-11r42,-211v5,-7,27,-9,31,0r-40,197r82,0","w":196},"M":{"d":"246,-209v3,-17,48,-27,58,-11r-42,216v-2,7,-27,9,-29,0r39,-198r-121,198v-2,7,-28,8,-29,0r-39,-199r-39,199v-2,7,-27,9,-29,0r41,-210v3,-21,58,-19,55,5r34,165","w":307},"N":{"d":"201,-223v2,-7,27,-9,29,0r-42,211v-6,24,-50,12,-48,-9r-60,-173r-37,189v-1,9,-22,8,-28,3r42,-212v4,-23,51,-16,49,6r59,168","w":232},"\u0143":{"d":"176,-290v4,-8,31,-11,34,-1v-22,16,-35,50,-71,44v7,-17,26,-29,37,-43xm201,-223v2,-7,27,-9,29,0r-42,211v-6,24,-50,12,-48,-9r-60,-173r-37,189v-1,9,-22,8,-28,3r42,-212v4,-23,51,-16,49,6r59,168","w":232},"\u0147":{"d":"152,-263v17,-11,36,-45,65,-30v-22,16,-46,60,-83,43v-10,-15,-22,-27,-31,-43v24,-16,40,17,49,30xm201,-223v2,-7,27,-9,29,0r-42,211v-6,24,-50,12,-48,-9r-60,-173r-37,189v-1,9,-22,8,-28,3r42,-212v4,-23,51,-16,49,6r59,168","w":232},"\u0145":{"d":"77,21v2,-8,29,-10,30,-1v-12,14,-21,56,-49,40xm201,-223v2,-7,27,-9,29,0r-42,211v-6,24,-50,12,-48,-9r-60,-173r-37,189v-1,9,-22,8,-28,3r42,-212v4,-23,51,-16,49,6r59,168","w":232},"\u014a":{"d":"174,-119v9,-35,12,-76,24,-108v8,1,25,-6,25,5r-52,252v-5,27,-54,48,-78,25v0,-35,58,5,56,-55r-69,-191r-36,187v-2,6,-27,9,-29,0r42,-210v1,-21,45,-17,45,1r59,162","w":225},"O":{"d":"148,-231v53,0,80,27,80,80v0,86,-38,154,-127,154v-52,0,-83,-25,-81,-78v3,-87,38,-156,128,-156xm105,-23v68,0,91,-61,91,-126v0,-35,-16,-58,-53,-56v-66,3,-87,60,-90,127v-1,37,17,55,52,55","w":235,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":9,"\u0176":9,"\u0178":9,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":9,"\u0164":9,"\u0162":9,"V":5}},"\u014c":{"d":"207,-279v8,2,3,23,-4,23r-96,0v-8,-2,-4,-23,5,-23r95,0xm148,-231v53,0,80,27,80,80v0,86,-38,154,-127,154v-52,0,-83,-25,-81,-78v3,-87,38,-156,128,-156xm105,-23v68,0,91,-61,91,-126v0,-35,-16,-58,-53,-56v-66,3,-87,60,-90,127v-1,37,17,55,52,55","w":235,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":9,"\u0176":9,"\u0178":9,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":9,"\u0164":9,"\u0162":9,"V":5}},"\u014e":{"d":"137,-277v14,25,50,1,52,-19v7,0,17,-2,19,2v5,51,-96,73,-94,11v-3,-12,15,-21,23,-10r0,16xm148,-231v53,0,80,27,80,80v0,86,-38,154,-127,154v-52,0,-83,-25,-81,-78v3,-87,38,-156,128,-156xm105,-23v68,0,91,-61,91,-126v0,-35,-16,-58,-53,-56v-66,3,-87,60,-90,127v-1,37,17,55,52,55","w":235,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":9,"\u0176":9,"\u0178":9,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":9,"\u0164":9,"\u0162":9,"V":5}},"\u0150":{"d":"174,-247v10,-20,32,-62,69,-46v-21,16,-33,53,-69,46xm140,-292v5,-7,32,-8,36,-1v-21,16,-32,52,-68,46v5,-18,23,-29,32,-45xm148,-231v53,0,80,27,80,80v0,86,-38,154,-127,154v-52,0,-83,-25,-81,-78v3,-87,38,-156,128,-156xm105,-23v68,0,91,-61,91,-126v0,-35,-16,-58,-53,-56v-66,3,-87,60,-90,127v-1,37,17,55,52,55","w":235,"k":{".":5,",":8,"J":5,"\u0134":5,"W":4,"\u0174":4,"X":11,"Y":9,"\u0176":9,"\u0178":9,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"x":2,"z":2,"\u017a":2,"\u017e":2,"\u017c":2,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"T":9,"\u0164":9,"\u0162":9,"V":5}},"\u0152":{"d":"275,-25v8,-1,3,10,3,17v-1,3,-3,8,-7,8r-112,0v-2,-2,-6,-3,-5,-8v-56,25,-134,8,-134,-66v0,-104,71,-185,176,-146v2,-5,6,-7,12,-7r107,0v9,2,3,25,-5,25r-89,0r-15,71r77,0v8,4,3,23,-5,25r-77,0r-16,81r90,0xm52,-78v-6,60,69,67,106,38r30,-150v-12,-8,-25,-16,-45,-15v-66,4,-85,62,-91,127","w":312,"k":{"-":4,"v":8,"\u0111":7,"\u010f":7,"C":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u010a":6,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":6,"\u014c":6,"\u014e":6,"\u0150":6,"\u0152":6,"Q":6,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"\u0131":3,"m":3,"\u014b":3,"p":3,"r":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0169":3,"\u016b":3,"\u016d":3,"\u016f":3,"\u0171":3,"\u0173":3,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":11,"n":3,"\u0144":3,"\u0148":3,"\u0146":3,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":3,"y":8,"\u0177":8,"A":4,"\u0100":4,"\u0102":4,"\u0104":4,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"w":8,"\u0175":8}},"P":{"d":"62,-224v54,-9,129,-8,125,50v-4,66,-49,94,-126,88v-8,28,-8,63,-20,86v-8,-1,-24,6,-26,-4r42,-210v1,-5,2,-8,5,-10xm66,-111v54,4,87,-12,89,-60v1,-35,-35,-32,-71,-31","k":{"-":7,"\/":21,".":44,",":41,"\u0111":7,"\u010f":7,"J":24,"\u0134":24,"X":6,"Y":2,"\u0176":2,"\u0178":2,"Z":5,"\u0179":5,"\u017d":5,"\u017b":5,"a":7,"\u0101":7,"\u0103":7,"c":7,"\u0107":7,"\u0109":7,"\u010d":7,"\u010b":7,"d":7,"q":7,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"f":-2,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":-2,"\u0165":-2,"\u0163":-2,"y":-2,"\u0177":-2,"A":23,"\u0100":23,"\u0102":23,"\u0104":23,"T":1,"\u0164":1,"\u0162":1,"V":2,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7}},"Q":{"d":"148,-231v117,-5,85,167,30,207v13,14,32,23,48,33v2,9,-1,21,-9,24v-27,-7,-47,-23,-63,-42v-54,27,-141,9,-134,-66v8,-87,38,-152,128,-156xm105,-23v68,-2,91,-61,91,-126v0,-35,-16,-57,-53,-56v-67,3,-91,62,-91,127v0,35,17,56,53,55","w":239,"k":{"\u0162":8,"}":-5,"]":-5,")":-5,"\/":-24,";":-10,",":-18,"x":-5,"j":-14,"\u0178":10,"\u0176":10,"Y":10,"X":-1,"\u0174":4,"W":4,"V":6,"\u0164":8,"T":8,"\u0134":-8,"J":-8}},"R":{"d":"63,-225v52,-5,125,-10,124,45v-2,39,-24,61,-56,71v29,15,27,68,35,104v-1,9,-30,9,-32,-1v-11,-43,1,-106,-69,-95r-20,97v-2,7,-28,9,-30,0r42,-211v1,-5,3,-8,6,-10xm69,-126v47,3,85,-6,85,-49v1,-32,-36,-27,-69,-27","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"W":5,"\u0174":5,"Y":7,"\u0176":7,"\u0178":7,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":9,"\u0164":9,"\u0162":9,"V":9,"w":6,"\u0175":6}},"\u0154":{"d":"145,-290v4,-8,31,-11,34,-1v-22,16,-35,50,-71,44v7,-17,26,-29,37,-43xm63,-225v52,-5,125,-10,124,45v-2,39,-24,61,-56,71v29,15,27,68,35,104v-1,9,-30,9,-32,-1v-11,-43,1,-106,-69,-95r-20,97v-2,7,-28,9,-30,0r42,-211v1,-5,3,-8,6,-10xm69,-126v47,3,85,-6,85,-49v1,-32,-36,-27,-69,-27","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"W":5,"\u0174":5,"Y":7,"\u0176":7,"\u0178":7,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":9,"\u0164":9,"\u0162":9,"V":9,"w":6,"\u0175":6}},"\u0158":{"d":"125,-263v17,-11,36,-45,66,-30v-24,14,-45,61,-84,43v-10,-15,-22,-27,-31,-43v2,-7,26,-5,28,0xm63,-225v52,-5,125,-10,124,45v-2,39,-24,61,-56,71v29,15,27,68,35,104v-1,9,-30,9,-32,-1v-11,-43,1,-106,-69,-95r-20,97v-2,7,-28,9,-30,0r42,-211v1,-5,3,-8,6,-10xm69,-126v47,3,85,-6,85,-49v1,-32,-36,-27,-69,-27","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"W":5,"\u0174":5,"Y":7,"\u0176":7,"\u0178":7,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":9,"\u0164":9,"\u0162":9,"V":9,"w":6,"\u0175":6}},"\u0156":{"d":"68,18v7,-5,34,-6,26,5v-11,14,-21,53,-47,37xm63,-225v52,-5,125,-10,124,45v-2,39,-24,61,-56,71v29,15,27,68,35,104v-1,9,-30,9,-32,-1v-11,-43,1,-106,-69,-95r-20,97v-2,7,-28,9,-30,0r42,-211v1,-5,3,-8,6,-10xm69,-126v47,3,85,-6,85,-49v1,-32,-36,-27,-69,-27","w":195,"k":{".":-2,"v":5,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":3,"\u011c":3,"\u011e":3,"\u0120":3,"\u0122":3,"O":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u0152":3,"Q":3,"W":5,"\u0174":5,"Y":7,"\u0176":7,"\u0178":7,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"y":6,"\u0177":6,"S":5,"\u015a":5,"\u015c":5,"\u0160":5,"\u015e":5,"T":9,"\u0164":9,"\u0162":9,"V":9,"w":6,"\u0175":6}},"S":{"d":"48,-129v-51,-70,62,-135,113,-85v1,9,1,21,-7,23v-28,-26,-108,-12,-84,38v16,34,78,31,76,84v-2,47,-37,71,-87,72v-30,1,-75,-15,-50,-43v18,4,28,19,53,17v50,7,70,-59,27,-76v-14,-10,-31,-16,-41,-30","w":162,"k":{"v":5,"J":-1,"\u0134":-1,"W":3,"\u0174":3,"X":2,"Y":5,"\u0176":5,"\u0178":5,"y":4,"\u0177":4,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"T":2,"\u0164":2,"\u0162":2,"V":5,"w":3,"\u0175":3}},"\u015a":{"d":"134,-290v3,-9,34,-11,34,-1v-21,16,-34,50,-70,44v5,-18,25,-28,36,-43xm48,-129v-51,-70,62,-135,113,-85v1,9,1,21,-7,23v-28,-26,-108,-12,-84,38v16,34,78,31,76,84v-2,47,-37,71,-87,72v-30,1,-75,-15,-50,-43v18,4,28,19,53,17v50,7,70,-59,27,-76v-14,-10,-31,-16,-41,-30","w":162,"k":{"v":5,"J":-1,"\u0134":-1,"W":3,"\u0174":3,"X":2,"Y":5,"\u0176":5,"\u0178":5,"y":4,"\u0177":4,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"T":2,"\u0164":2,"\u0162":2,"V":5,"w":3,"\u0175":3}},"\u015c":{"d":"120,-279v-17,11,-36,45,-65,30v25,-14,45,-61,84,-43r31,43v-4,6,-24,6,-29,0xm48,-129v-51,-70,62,-135,113,-85v1,9,1,21,-7,23v-28,-26,-108,-12,-84,38v16,34,78,31,76,84v-2,47,-37,71,-87,72v-30,1,-75,-15,-50,-43v18,4,28,19,53,17v50,7,70,-59,27,-76v-14,-10,-31,-16,-41,-30","w":162,"k":{"v":5,"J":-1,"\u0134":-1,"W":3,"\u0174":3,"X":2,"Y":5,"\u0176":5,"\u0178":5,"y":4,"\u0177":4,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"T":2,"\u0164":2,"\u0162":2,"V":5,"w":3,"\u0175":3}},"\u0160":{"d":"115,-263v17,-11,36,-45,65,-30v-22,16,-46,60,-83,43v-10,-15,-22,-27,-31,-43v24,-16,40,17,49,30xm48,-129v-51,-70,62,-135,113,-85v1,9,1,21,-7,23v-28,-26,-108,-12,-84,38v16,34,78,31,76,84v-2,47,-37,71,-87,72v-30,1,-75,-15,-50,-43v18,4,28,19,53,17v50,7,70,-59,27,-76v-14,-10,-31,-16,-41,-30","w":162,"k":{"v":5,"J":-1,"\u0134":-1,"W":3,"\u0174":3,"X":2,"Y":5,"\u0176":5,"\u0178":5,"y":4,"\u0177":4,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"T":2,"\u0164":2,"\u0162":2,"V":5,"w":3,"\u0175":3}},"\u015e":{"d":"14,60v-12,-38,54,4,40,-40r-4,-17v-27,-1,-65,-18,-41,-43v18,4,28,19,53,17v50,7,70,-59,27,-76v-24,-16,-53,-26,-53,-65v0,-63,85,-86,125,-50v1,9,1,21,-7,23v-28,-26,-108,-12,-84,38v16,34,77,30,76,84v-1,44,-33,66,-72,71v20,40,-12,77,-60,58","w":162,"k":{"v":5,"J":-1,"\u0134":-1,"W":3,"\u0174":3,"X":2,"Y":5,"\u0176":5,"\u0178":5,"y":4,"\u0177":4,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"T":2,"\u0164":2,"\u0162":2,"V":5,"w":3,"\u0175":3}},"T":{"d":"196,-227v9,2,3,25,-5,25r-64,0r-40,197v-1,9,-24,8,-30,3r40,-200r-64,0v-9,-2,-3,-25,5,-25r158,0","w":175,"k":{"-":28,"\/":19,".":36,":":24,";":20,",":36,"v":15,"\u0135":-13,"\u012d":-13,"\u012b":-18,"\u0129":-24,"\u0111":31,"\u010f":31,"C":7,"\u0106":7,"\u0108":7,"\u010c":7,"\u010a":7,"G":9,"\u011c":9,"\u011e":9,"\u0120":9,"\u0122":9,"J":10,"\u0134":10,"O":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"Q":9,"a":31,"\u0101":31,"\u0103":31,"c":29,"\u0107":29,"\u0109":29,"\u010d":29,"\u010b":29,"d":31,"q":31,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":30,"\u011b":30,"\u0113":30,"\u0115":30,"\u0117":30,"\u0119":30,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u015f":26,"u":17,"x":15,"y":16,"\u0177":16,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"T":-5,"\u0164":-5,"\u0162":-5,"g":31,"\u011d":31,"\u011f":31,"\u0121":31,"\u0123":31,"w":16,"\u0175":16}},"\u0164":{"d":"119,-263v17,-11,36,-45,65,-30v-25,14,-45,61,-84,43r-31,-43v2,-7,25,-5,29,0xm196,-227v9,2,3,25,-5,25r-64,0r-40,197v-1,9,-24,8,-30,3r40,-200r-64,0v-9,-2,-3,-25,5,-25r158,0","w":175,"k":{"-":28,"\/":19,".":36,":":24,";":20,",":36,"v":15,"\u0135":-13,"\u012d":-13,"\u012b":-18,"\u0129":-24,"\u0111":31,"\u010f":31,"C":7,"\u0106":7,"\u0108":7,"\u010c":7,"\u010a":7,"G":9,"\u011c":9,"\u011e":9,"\u0120":9,"\u0122":9,"J":10,"\u0134":10,"O":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"Q":9,"a":31,"\u0101":31,"\u0103":31,"c":29,"\u0107":29,"\u0109":29,"\u010d":29,"\u010b":29,"d":31,"q":31,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":30,"\u011b":30,"\u0113":30,"\u0115":30,"\u0117":30,"\u0119":30,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u015f":26,"u":17,"x":15,"y":16,"\u0177":16,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"T":-5,"\u0164":-5,"\u0162":-5,"g":31,"\u011d":31,"\u011f":31,"\u0121":31,"\u0123":31,"w":16,"\u0175":16}},"\u0166":{"d":"196,-227v9,3,2,25,-5,25r-64,0r-15,73r47,0v8,4,3,25,-5,25r-47,0r-20,100v-2,7,-28,9,-30,0r20,-100r-47,0v-8,-4,-3,-25,5,-25r47,0r15,-73r-64,0v-7,-1,-6,-24,5,-25r158,0","w":175},"U":{"d":"199,-223v3,-7,28,-9,30,0v-24,101,-19,264,-164,221v-76,-22,-14,-151,-7,-221v3,-7,28,-9,30,0v-9,56,-29,106,-29,166v0,42,66,43,89,19v39,-40,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0168":{"d":"128,-288v25,0,56,39,67,1v8,-2,22,-2,17,8v-3,20,-14,34,-37,34v-22,0,-30,-18,-49,-20v-18,-3,-7,20,-26,20v-10,0,-11,-3,-9,-10v3,-20,15,-33,37,-33xm199,-223v3,-7,28,-9,30,0v-24,101,-19,264,-164,221v-76,-22,-14,-151,-7,-221v3,-7,28,-9,30,0v-9,56,-29,106,-29,166v0,42,66,43,89,19v39,-40,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u016a":{"d":"201,-279v8,2,3,23,-4,23r-96,0v-8,-2,-4,-23,5,-23r95,0xm199,-223v3,-7,28,-9,30,0v-24,101,-19,264,-164,221v-76,-22,-14,-151,-7,-221v3,-7,28,-9,30,0v-9,56,-29,106,-29,166v0,42,66,43,89,19v39,-40,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u016c":{"d":"180,-292v0,-7,21,-6,22,-2v6,53,-98,71,-93,11v-4,-13,14,-20,22,-10v0,16,2,27,19,27v17,-1,26,-11,30,-26xm199,-223v3,-7,28,-9,30,0v-24,101,-19,264,-164,221v-76,-22,-14,-151,-7,-221v3,-7,28,-9,30,0v-9,56,-29,106,-29,166v0,42,66,43,89,19v39,-40,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u016e":{"d":"156,-305v19,0,33,9,32,29v0,25,-16,36,-40,37v-19,0,-31,-9,-31,-28v0,-25,16,-38,39,-38xm136,-269v-2,19,29,17,32,3v3,-11,-1,-24,-14,-23v-11,1,-18,8,-18,20xm199,-223v3,-7,28,-9,30,0v-24,101,-19,264,-164,221v-76,-22,-14,-151,-7,-221v3,-7,28,-9,30,0v-9,56,-29,106,-29,166v0,42,66,43,89,19v39,-40,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0170":{"d":"167,-248v15,-21,32,-61,70,-45v-20,16,-34,56,-70,45xm134,-292v5,-7,32,-8,36,-1v-19,17,-32,52,-67,46v5,-18,21,-30,31,-45xm199,-223v3,-7,28,-9,30,0v-24,101,-19,264,-164,221v-76,-22,-14,-151,-7,-221v3,-7,28,-9,30,0v-9,56,-29,106,-29,166v0,42,66,43,89,19v39,-40,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"\u0172":{"d":"199,-223v3,-7,28,-9,30,0v-21,87,-21,198,-97,228v-8,10,-25,15,-27,30v-3,17,45,-7,32,22v-21,19,-81,3,-57,-31v6,-8,16,-17,24,-24v-53,6,-86,-27,-74,-86r28,-139v3,-7,28,-9,30,0r-28,139v-19,62,52,80,88,46v40,-38,34,-124,51,-185","w":230,"k":{".":6,",":7,"J":4,"\u0134":4,"A":8,"\u0100":8,"\u0102":8,"\u0104":8}},"V":{"d":"193,-223v5,-7,31,-10,33,0r-125,223v-12,-1,-32,6,-34,-5r-33,-219v3,-7,30,-7,31,2r27,191","w":204,"k":{"-":19,"\/":19,".":36,":":13,";":19,",":29,"\u0135":-9,"\u012d":-10,"\u012b":-17,"\u0129":-20,"\u0111":18,"\u010f":18,"C":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u010a":3,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":14,"\u0134":14,"O":5,"\u014c":5,"\u014e":5,"\u0150":5,"\u0152":5,"Q":5,"a":18,"\u0101":18,"\u0103":18,"c":18,"\u0107":18,"\u0109":18,"\u010d":18,"\u010b":18,"d":18,"q":18,"\u0131":11,"m":11,"\u014b":11,"p":11,"r":11,"\u0155":11,"\u0159":11,"\u0157":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11,"e":18,"\u011b":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"o":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":15,"\u015b":15,"\u015d":15,"\u0161":15,"\u015f":15,"u":11,"y":5,"\u0177":5,"z":14,"\u017a":14,"\u017e":14,"\u017c":14,"A":15,"\u0100":15,"\u0102":15,"\u0104":15,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"V":-1,"g":18,"\u011d":18,"\u011f":18,"\u0121":18,"\u0123":18}},"W":{"d":"306,-223v6,-8,37,-11,29,6r-105,214v-6,6,-38,9,-39,-3r-14,-172r-80,175v-6,6,-38,9,-40,-4r-18,-216v2,-10,30,-9,31,3r13,188r88,-193v7,-5,30,-7,32,3r15,190","w":320,"k":{"-":15,".":36,";":9,",":27,"v":6,"\u0135":-7,"\u012d":-8,"\u012b":-9,"\u0129":-19,"\u0111":14,"\u010f":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":14,"\u0134":14,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"X":2,"a":14,"\u0101":14,"\u0103":14,"c":15,"\u0107":15,"\u0109":15,"\u010d":15,"\u010b":15,"d":14,"q":14,"\u0131":10,"m":10,"\u014b":10,"p":10,"r":10,"\u0155":10,"\u0159":10,"\u0157":10,"\u0169":10,"\u016b":10,"\u016d":10,"\u016f":10,"\u0171":10,"\u0173":10,"e":14,"\u011b":14,"\u0113":14,"\u0115":14,"\u0117":14,"\u0119":14,"n":10,"\u0144":10,"\u0148":10,"\u0146":10,"o":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":9,"\u015b":9,"\u015d":9,"\u0161":9,"\u015f":9,"u":10,"y":9,"\u0177":9,"A":16,"\u0100":16,"\u0102":16,"\u0104":16,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"g":14,"\u011d":14,"\u011f":14,"\u0121":14,"\u0123":14}},"\u0174":{"d":"202,-279v-17,12,-37,44,-66,30v25,-13,46,-60,84,-43v10,15,22,27,31,43v-3,6,-25,6,-29,0xm306,-223v6,-8,37,-11,29,6r-105,214v-6,6,-38,9,-39,-3r-14,-172r-80,175v-6,6,-38,9,-40,-4r-18,-216v2,-10,30,-9,31,3r13,188r88,-193v7,-5,30,-7,32,3r15,190","w":320,"k":{"-":15,".":36,";":9,",":27,"v":6,"\u0135":-7,"\u012d":-8,"\u012b":-9,"\u0129":-19,"\u0111":14,"\u010f":14,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"J":14,"\u0134":14,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"X":2,"a":14,"\u0101":14,"\u0103":14,"c":15,"\u0107":15,"\u0109":15,"\u010d":15,"\u010b":15,"d":14,"q":14,"\u0131":10,"m":10,"\u014b":10,"p":10,"r":10,"\u0155":10,"\u0159":10,"\u0157":10,"\u0169":10,"\u016b":10,"\u016d":10,"\u016f":10,"\u0171":10,"\u0173":10,"e":14,"\u011b":14,"\u0113":14,"\u0115":14,"\u0117":14,"\u0119":14,"n":10,"\u0144":10,"\u0148":10,"\u0146":10,"o":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":9,"\u015b":9,"\u015d":9,"\u0161":9,"\u015f":9,"u":10,"y":9,"\u0177":9,"A":16,"\u0100":16,"\u0102":16,"\u0104":16,"S":2,"\u015a":2,"\u015c":2,"\u0160":2,"\u015e":2,"g":14,"\u011d":14,"\u011f":14,"\u0121":14,"\u0123":14}},"X":{"d":"40,-223v4,-9,32,-9,34,2r31,83r66,-88v11,-3,40,-6,29,9r-80,101r44,111v-1,10,-30,9,-33,1r-35,-92r-71,94v-6,4,-24,5,-32,1v-2,-4,1,-6,3,-10r85,-106","w":186,"k":{"-":19,"v":10,"\u0111":8,"\u010f":8,"C":11,"\u0106":11,"\u0108":11,"\u010c":11,"\u010a":11,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":11,"\u014c":11,"\u014e":11,"\u0150":11,"\u0152":11,"Q":11,"a":8,"\u0101":8,"\u0103":8,"d":8,"q":8,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"t":5,"\u0165":5,"\u0163":5,"u":6,"y":8,"\u0177":8,"S":4,"\u015a":4,"\u015c":4,"\u0160":4,"\u015e":4,"g":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"w":8,"\u0175":8}},"Y":{"d":"34,-223v3,-10,29,-8,32,2r28,104v22,-38,48,-72,72,-108v6,-4,24,-6,31,-1v2,3,-1,7,-3,9r-90,129v-8,28,-8,65,-21,88v-8,-1,-24,6,-26,-4r17,-84","w":175,"k":{"-":21,"\/":22,".":36,":":21,";":21,",":34,"v":12,"\u0135":-8,"j":6,"\u012d":-11,"\u012b":-14,"\u0129":-20,"\u0111":24,"\u010f":24,"C":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u010a":10,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":16,"\u0134":16,"O":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"Q":9,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":24,"\u0101":24,"\u0103":24,"c":25,"\u0107":25,"\u0109":25,"\u010d":25,"\u010b":25,"d":24,"q":24,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":25,"\u011b":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"f":9,"i":4,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"s":20,"\u015b":20,"\u015d":20,"\u0161":20,"\u015f":20,"t":8,"\u0165":8,"\u0163":8,"u":17,"x":13,"y":11,"\u0177":11,"z":17,"\u017a":17,"\u017e":17,"\u017c":17,"A":26,"\u0100":26,"\u0102":26,"\u0104":26,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":24,"\u011d":24,"\u011f":24,"\u0121":24,"\u0123":24,"w":11,"\u0175":11}},"\u0176":{"d":"136,-279v-17,12,-37,44,-66,30v25,-14,45,-61,84,-43v10,15,22,27,31,43v-3,6,-25,6,-29,0xm34,-223v3,-10,29,-8,32,2r28,104v22,-38,48,-72,72,-108v6,-4,24,-6,31,-1v2,3,-1,7,-3,9r-90,129v-8,28,-8,65,-21,88v-8,-1,-24,6,-26,-4r17,-84","w":175,"k":{"-":21,"\/":22,".":36,":":21,";":21,",":34,"v":12,"\u0135":-8,"j":6,"\u012d":-11,"\u012b":-14,"\u0129":-20,"\u0111":24,"\u010f":24,"C":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u010a":10,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":16,"\u0134":16,"O":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"Q":9,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":24,"\u0101":24,"\u0103":24,"c":25,"\u0107":25,"\u0109":25,"\u010d":25,"\u010b":25,"d":24,"q":24,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":25,"\u011b":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"f":9,"i":4,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"s":20,"\u015b":20,"\u015d":20,"\u0161":20,"\u015f":20,"t":8,"\u0165":8,"\u0163":8,"u":17,"x":13,"y":11,"\u0177":11,"z":17,"\u017a":17,"\u017e":17,"\u017c":17,"A":26,"\u0100":26,"\u0102":26,"\u0104":26,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":24,"\u011d":24,"\u011f":24,"\u0121":24,"\u0123":24,"w":11,"\u0175":11}},"\u0178":{"d":"151,-260v-6,-22,26,-36,35,-17v7,22,-26,36,-35,17xm78,-260v-5,-23,26,-36,35,-17v8,24,-27,35,-35,17xm34,-223v3,-10,29,-8,32,2r28,104v22,-38,48,-72,72,-108v6,-4,24,-6,31,-1v2,3,-1,7,-3,9r-90,129v-8,28,-8,65,-21,88v-8,-1,-24,6,-26,-4r17,-84","w":175,"k":{"-":21,"\/":22,".":36,":":21,";":21,",":34,"v":12,"\u0135":-8,"j":6,"\u012d":-11,"\u012b":-14,"\u0129":-20,"\u0111":24,"\u010f":24,"C":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u010a":10,"G":10,"\u011c":10,"\u011e":10,"\u0120":10,"\u0122":10,"J":16,"\u0134":16,"O":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"Q":9,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"a":24,"\u0101":24,"\u0103":24,"c":25,"\u0107":25,"\u0109":25,"\u010d":25,"\u010b":25,"d":24,"q":24,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":25,"\u011b":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"f":9,"i":4,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"s":20,"\u015b":20,"\u015d":20,"\u0161":20,"\u015f":20,"t":8,"\u0165":8,"\u0163":8,"u":17,"x":13,"y":11,"\u0177":11,"z":17,"\u017a":17,"\u017e":17,"\u017c":17,"A":26,"\u0100":26,"\u0102":26,"\u0104":26,"S":3,"\u015a":3,"\u015c":3,"\u0160":3,"\u015e":3,"g":24,"\u011d":24,"\u011f":24,"\u0121":24,"\u0123":24,"w":11,"\u0175":11}},"Z":{"d":"4,0v-18,-4,-2,-34,6,-38r136,-164r-103,0v-9,-3,-3,-25,5,-25r127,0v17,5,2,33,-5,38r-136,164r110,0v7,2,4,25,-5,25r-135,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-7,"\u012b":-11,"\u0129":-19,"\u0111":3,"\u010f":3,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":3,"\u0101":3,"\u0103":3,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":3,"q":3,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":7,"\u0175":7}},"\u0179":{"d":"138,-290v3,-9,33,-11,34,-1v-22,16,-35,50,-71,44v7,-17,26,-29,37,-43xm4,0v-18,-4,-2,-34,6,-38r136,-164r-103,0v-9,-3,-3,-25,5,-25r127,0v17,5,2,33,-5,38r-136,164r110,0v7,2,4,25,-5,25r-135,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-7,"\u012b":-11,"\u0129":-19,"\u0111":3,"\u010f":3,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":3,"\u0101":3,"\u0103":3,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":3,"q":3,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":7,"\u0175":7}},"\u017d":{"d":"118,-263v17,-11,35,-45,66,-30v-24,14,-46,61,-84,43v-10,-15,-22,-27,-31,-43v2,-7,26,-5,28,0xm4,0v-18,-4,-2,-34,6,-38r136,-164r-103,0v-9,-3,-3,-25,5,-25r127,0v17,5,2,33,-5,38r-136,164r110,0v7,2,4,25,-5,25r-135,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-7,"\u012b":-11,"\u0129":-19,"\u0111":3,"\u010f":3,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":3,"\u0101":3,"\u0103":3,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":3,"q":3,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":7,"\u0175":7}},"\u017b":{"d":"139,-276v6,22,-31,36,-36,15v-7,-21,30,-36,36,-15xm4,0v-18,-4,-2,-34,6,-38r136,-164r-103,0v-9,-3,-3,-25,5,-25r127,0v17,5,2,33,-5,38r-136,164r110,0v7,2,4,25,-5,25r-135,0","w":168,"k":{"-":8,"v":8,"\u0135":-7,"\u012d":-7,"\u012b":-11,"\u0129":-19,"\u0111":3,"\u010f":3,"C":4,"\u0106":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"O":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"Q":4,"W":1,"\u0174":1,"Y":1,"\u0176":1,"\u0178":1,"a":3,"\u0101":3,"\u0103":3,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":3,"q":3,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"y":7,"\u0177":7,"A":2,"\u0100":2,"\u0102":2,"\u0104":2,"g":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"w":7,"\u0175":7}},"a":{"d":"145,-147v-4,-16,17,-31,29,-16r-31,159v-1,6,-25,9,-26,0r6,-30v-12,18,-31,36,-61,37v-34,0,-48,-23,-48,-57v0,-60,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,41,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u0101":{"d":"163,-227v6,2,4,21,-5,22r-84,0v-9,-3,-4,-22,5,-22r84,0xm145,-147v-4,-16,17,-31,29,-16r-31,159v-1,6,-25,9,-26,0r6,-30v-12,18,-31,36,-61,37v-34,0,-48,-23,-48,-57v0,-60,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,41,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u0103":{"d":"97,-224v15,25,49,1,52,-20v6,0,15,-3,18,2v6,51,-96,73,-93,11v-2,-12,14,-21,23,-10v0,5,-2,12,0,17xm145,-147v-4,-16,17,-31,29,-16r-31,159v-1,6,-25,9,-26,0r6,-30v-12,18,-31,36,-61,37v-34,0,-48,-23,-48,-57v0,-60,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,41,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u0105":{"d":"45,-56v-4,44,45,41,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90xm143,49v-4,26,-63,18,-60,-7v3,-22,20,-31,33,-43r7,-33v-12,18,-31,36,-61,37v-34,0,-48,-23,-48,-57v0,-60,24,-117,84,-117v23,0,35,11,47,24v-4,-16,17,-31,29,-16r-34,167v-7,11,-25,17,-28,32v1,11,21,5,31,8r0,5"},"b":{"d":"124,-171v35,0,48,25,48,58v0,59,-22,116,-84,116v-23,0,-37,-9,-48,-23v0,15,-7,26,-27,20v-2,-1,-2,-2,-2,-4r47,-235v1,-8,23,-8,29,-3r-24,109v12,-19,31,-38,61,-38xm88,-21v39,-7,50,-46,53,-90v3,-43,-45,-41,-62,-14v-18,18,-26,48,-30,80v10,14,19,23,39,24","k":{"v":2,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"c":{"d":"44,-59v-4,52,60,37,81,19v11,28,-25,43,-55,43v-39,0,-55,-19,-57,-57v-5,-79,70,-149,137,-98v1,11,-1,21,-9,23v-12,-6,-20,-18,-40,-17v-43,3,-54,44,-57,87","w":149,"k":{"\u0111":2,"\u010f":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":2,"q":2,"e":2,"\u011b":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2}},"\u0107":{"d":"120,-240v4,-7,30,-10,32,-1v-20,15,-22,49,-57,49v-4,0,-4,-4,-2,-7xm44,-59v-4,52,60,37,81,19v11,28,-25,43,-55,43v-39,0,-55,-19,-57,-57v-5,-79,70,-149,137,-98v1,11,-1,21,-9,23v-12,-6,-20,-18,-40,-17v-43,3,-54,44,-57,87","w":149,"k":{"\u0111":2,"\u010f":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":2,"q":2,"e":2,"\u011b":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2}},"\u0109":{"d":"153,-197v-1,9,-24,7,-24,0r-17,-32v-16,12,-24,44,-55,35v16,-20,36,-63,73,-48xm44,-59v-4,52,60,37,81,19v11,28,-25,43,-55,43v-39,0,-55,-19,-57,-57v-5,-79,70,-149,137,-98v1,11,-1,21,-9,23v-12,-6,-20,-18,-40,-17v-43,3,-54,44,-57,87","w":149,"k":{"\u0111":2,"\u010f":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":2,"q":2,"e":2,"\u011b":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2}},"\u010d":{"d":"70,-246v27,-5,26,23,37,37v16,-13,24,-45,55,-35v-18,20,-35,63,-73,48v-7,-15,-16,-28,-22,-45v-1,-2,0,-5,3,-5xm44,-59v-4,52,60,37,81,19v11,28,-25,43,-55,43v-39,0,-55,-19,-57,-57v-5,-79,70,-149,137,-98v1,11,-1,21,-9,23v-12,-6,-20,-18,-40,-17v-43,3,-54,44,-57,87","w":149,"k":{"\u0111":2,"\u010f":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":2,"q":2,"e":2,"\u011b":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2}},"\u010b":{"d":"91,-208v-7,-24,28,-34,36,-16v5,22,-28,35,-36,16xm44,-59v-4,52,60,37,81,19v11,28,-25,43,-55,43v-39,0,-55,-19,-57,-57v-5,-79,70,-149,137,-98v1,11,-1,21,-9,23v-12,-6,-20,-18,-40,-17v-43,3,-54,44,-57,87","w":149,"k":{"\u0111":2,"\u010f":2,"a":2,"\u0101":2,"\u0103":2,"c":3,"\u0107":3,"\u0109":3,"\u010d":3,"\u010b":3,"d":2,"q":2,"e":2,"\u011b":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"o":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"g":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2}},"d":{"d":"161,-239v2,-7,27,-9,29,0r-47,235v-1,6,-25,9,-26,0r6,-30v-12,19,-30,37,-61,37v-36,1,-48,-24,-48,-58v0,-60,24,-116,84,-116v21,0,35,10,45,22xm45,-57v-5,46,44,41,62,16v19,-17,24,-50,30,-80v-11,-13,-19,-23,-39,-25v-39,6,-49,46,-53,89"},"\u010f":{"d":"217,-239v2,-8,24,-10,28,-3r-29,58v-3,5,-16,5,-21,2v4,-22,15,-37,22,-57xm161,-239v2,-7,27,-9,29,0r-47,235v-1,6,-25,9,-26,0r6,-30v-12,19,-30,37,-61,37v-36,1,-48,-24,-48,-58v0,-60,24,-116,84,-116v21,0,35,10,45,22xm45,-57v-5,46,44,41,62,16v19,-17,24,-50,30,-80v-11,-13,-19,-23,-39,-25v-39,6,-49,46,-53,89","w":199,"k":{"\u0140":-5,"\u013c":-5,"\u013e":-5,"\u013a":-5,"l":-5,"\u0137":-5,"k":-5,"h":-5,"b":-5}},"\u0111":{"d":"156,-217v-2,-17,16,-39,34,-22r-5,22v14,1,37,-6,27,16v-1,11,-20,6,-31,7r-38,190v-1,6,-25,9,-26,0r6,-30v-12,19,-30,37,-61,37v-36,1,-48,-24,-48,-58v0,-60,24,-116,84,-116v21,0,35,10,45,22r9,-45r-42,0v-8,-2,-4,-23,4,-23r42,0xm45,-57v-5,46,44,41,62,16v19,-17,24,-50,30,-80v-11,-13,-19,-23,-39,-25v-39,6,-49,46,-53,89","w":198},"e":{"d":"44,-66v-14,56,58,50,89,35v12,30,-29,35,-57,34v-40,0,-64,-16,-62,-58v4,-64,29,-116,94,-116v31,0,55,13,55,41v0,51,-59,53,-117,52v-1,4,-2,8,-2,12xm51,-99v37,0,78,3,82,-29v-8,-38,-70,-14,-75,10v-3,6,-5,12,-7,19","w":171,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u011b":{"d":"76,-246v28,-4,26,23,37,37v16,-13,24,-45,55,-35v-18,19,-35,63,-73,48v-7,-15,-16,-28,-22,-45v-1,-2,0,-5,3,-5xm44,-66v-14,56,58,50,89,35v12,30,-29,35,-57,34v-40,0,-64,-16,-62,-58v4,-64,29,-116,94,-116v31,0,55,13,55,41v0,51,-59,53,-117,52v-1,4,-2,8,-2,12xm51,-99v37,0,78,3,82,-29v-8,-38,-70,-14,-75,10v-3,6,-5,12,-7,19","w":171,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0113":{"d":"163,-227v8,2,2,21,-4,22r-85,0v-7,-2,-4,-22,5,-22r84,0xm44,-66v-14,56,58,50,89,35v12,30,-29,35,-57,34v-40,0,-64,-16,-62,-58v4,-64,29,-116,94,-116v31,0,55,13,55,41v0,51,-59,53,-117,52v-1,4,-2,8,-2,12xm51,-99v37,0,78,3,82,-29v-8,-38,-70,-14,-75,10v-3,6,-5,12,-7,19","w":171,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0115":{"d":"96,-224v15,25,47,1,51,-20v6,1,16,-4,18,2v6,50,-88,72,-92,16v-1,-12,10,-28,22,-15xm44,-66v-14,56,58,50,89,35v12,30,-29,35,-57,34v-40,0,-64,-16,-62,-58v4,-64,29,-116,94,-116v31,0,55,13,55,41v0,51,-59,53,-117,52v-1,4,-2,8,-2,12xm51,-99v37,0,78,3,82,-29v-8,-38,-70,-14,-75,10v-3,6,-5,12,-7,19","w":171,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0117":{"d":"99,-208v-8,-24,28,-34,35,-16v8,24,-28,35,-35,16xm44,-66v-14,56,58,50,89,35v12,30,-29,35,-57,34v-40,0,-64,-16,-62,-58v4,-64,29,-116,94,-116v31,0,55,13,55,41v0,51,-59,53,-117,52v-1,4,-2,8,-2,12xm51,-99v37,0,78,3,82,-29v-8,-38,-70,-14,-75,10v-3,6,-5,12,-7,19","w":171,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"\u0119":{"d":"51,-99v38,0,78,3,82,-29v-8,-38,-70,-14,-75,10v-3,6,-5,12,-7,19xm44,-66v-14,56,58,50,89,35v12,32,-39,39,-44,67v-3,17,47,-7,30,23v-29,18,-84,-7,-49,-39v6,-6,13,-12,19,-18v-46,5,-78,-11,-75,-57v4,-64,29,-116,94,-116v31,0,52,13,55,41v-5,50,-60,52,-117,52v-1,4,-2,8,-2,12","w":171,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"f":{"d":"52,-167v0,-54,42,-98,91,-71v6,40,-60,-7,-59,55r-3,16v15,3,45,-10,38,14v-1,16,-27,8,-43,10r-30,150v-4,38,-39,70,-80,52v-6,-36,39,-5,47,-41v11,-51,22,-108,34,-161v-13,0,-31,6,-25,-17v3,-10,19,-6,30,-7","w":109,"k":{")":-5,"-":5,".":18,",":17,"v":-2,"\u0111":4,"\u010f":4,"a":4,"\u0101":4,"\u0103":4,"c":6,"\u0107":6,"\u0109":6,"\u010d":6,"\u010b":6,"d":4,"q":4,"e":6,"\u011b":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"f":-1,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":1,"\u015b":1,"\u015d":1,"\u0161":1,"\u015f":1,"y":-2,"\u0177":-2,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"g":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"w":-1,"\u0175":-1}},"g":{"d":"145,-147v-4,-16,17,-31,29,-16v-15,65,-22,137,-43,196v-13,20,-35,31,-69,31v-27,0,-67,-11,-42,-36v25,16,88,20,91,-19v1,-17,7,-31,11,-43v-11,19,-30,36,-60,37v-36,1,-48,-24,-48,-57v0,-61,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,40,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u011d":{"d":"160,-197v0,7,-22,8,-24,0r-16,-32v-16,12,-25,45,-55,35v9,-19,30,-33,43,-50v8,-2,25,-4,30,2v7,15,17,28,22,45xm145,-147v-4,-16,17,-31,29,-16v-15,65,-22,137,-43,196v-13,20,-35,31,-69,31v-27,0,-67,-11,-42,-36v25,16,88,20,91,-19v1,-17,7,-31,11,-43v-11,19,-30,36,-60,37v-36,1,-48,-24,-48,-57v0,-61,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,40,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u011f":{"d":"98,-224v15,25,49,1,52,-20v6,0,16,-3,18,2v6,50,-88,72,-93,16v-1,-13,11,-28,23,-15v0,5,-2,12,0,17xm145,-147v-4,-16,17,-31,29,-16v-15,65,-22,137,-43,196v-13,20,-35,31,-69,31v-27,0,-67,-11,-42,-36v25,16,88,20,91,-19v1,-17,7,-31,11,-43v-11,19,-30,36,-60,37v-36,1,-48,-24,-48,-57v0,-61,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,40,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u0121":{"d":"98,-208v-5,-22,27,-35,36,-16v7,23,-28,34,-36,16xm145,-147v-4,-16,17,-31,29,-16v-15,65,-22,137,-43,196v-13,20,-35,31,-69,31v-27,0,-67,-11,-42,-36v25,16,88,20,91,-19v1,-17,7,-31,11,-43v-11,19,-30,36,-60,37v-36,1,-48,-24,-48,-57v0,-61,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,40,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"\u0123":{"d":"100,-192v15,-17,22,-62,55,-47v-13,18,-19,65,-55,47xm145,-147v-4,-16,17,-31,29,-16v-15,65,-22,137,-43,196v-13,20,-35,31,-69,31v-27,0,-67,-11,-42,-36v25,16,88,20,91,-19v1,-17,7,-31,11,-43v-11,19,-30,36,-60,37v-36,1,-48,-24,-48,-57v0,-61,24,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,44,45,40,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-40,6,-49,47,-53,90"},"h":{"d":"63,-133v13,-38,106,-60,103,5v-2,44,-15,82,-22,124v-3,7,-27,8,-30,0r22,-118v2,-38,-46,-22,-57,-3v-29,27,-27,85,-42,125v-9,-1,-24,5,-26,-4r47,-235v1,-8,23,-8,29,-3","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u0125":{"d":"63,-133v13,-38,106,-60,103,5v-2,44,-15,82,-22,124v-3,7,-27,8,-30,0r22,-118v2,-38,-46,-22,-57,-3v-29,27,-27,85,-42,125v-9,-1,-24,5,-26,-4r44,-219v2,-7,27,-9,29,0xm128,-252v4,6,-4,6,-10,7v-25,2,-25,-22,-38,-34v-19,12,-32,41,-65,32v18,-17,47,-62,83,-45","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u0127":{"d":"66,-131v12,-39,105,-60,102,5v-2,44,-15,81,-22,122v-2,7,-27,9,-29,0v6,-39,19,-74,21,-116v2,-38,-45,-22,-57,-3v-26,26,-28,77,-38,119v-2,7,-27,9,-29,0r38,-190v-20,5,-41,-6,-21,-23r25,0v0,-17,10,-38,34,-25r-5,25v16,4,50,-11,46,12v-3,18,-32,9,-50,11","w":187,"k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"i":{"d":"87,-224v6,23,-30,37,-38,16v-5,-22,29,-35,38,-16xm43,-163v2,-7,27,-9,29,0r-32,159v-2,7,-26,8,-29,0","w":82},"\u0129":{"d":"92,-215v17,2,8,-25,26,-23v9,-1,10,2,9,9v-4,20,-12,36,-36,36v-25,0,-28,-20,-49,-23v-18,-2,-6,33,-34,21v-2,-23,11,-42,36,-43v25,-1,28,20,48,23xm43,-163v3,-7,28,-8,29,0r-32,159v-2,7,-26,8,-29,0","w":82,"k":{"\u0140":-5,"\u013c":-5,"\u013e":-5,"\u013a":-5,"l":-5,"\u0137":-5,"k":-5,"h":-5,"b":-5}},"\u012b":{"d":"112,-227v6,2,4,21,-5,22r-84,0v-9,-3,-4,-22,5,-22r84,0xm43,-163v3,-7,28,-8,29,0r-32,159v-2,7,-26,8,-29,0","w":82,"k":{"\u0140":-2,"\u013c":-2,"\u013e":-2,"\u013a":-2,"l":-2,"\u0137":-2,"k":-2,"h":-2,"b":-2}},"\u012d":{"d":"48,-224v15,25,47,1,51,-20v6,1,16,-4,18,2v6,50,-88,72,-92,16v-1,-12,10,-28,22,-15xm43,-163v3,-7,28,-8,29,0r-32,159v-2,7,-26,8,-29,0","w":82},"\u012f":{"d":"41,49v-3,25,-64,19,-62,-7v2,-22,19,-31,32,-42r32,-162v1,-9,23,-8,29,-3r-34,167v-8,12,-27,17,-30,34v-2,16,35,-2,33,13xm87,-224v6,23,-30,37,-38,16v-5,-22,29,-35,38,-16","w":82},"\u0131":{"d":"43,-163v3,-7,28,-8,29,0r-32,159v-2,7,-26,8,-29,0","w":82},"\u0133":{"d":"87,-224v6,23,-30,37,-38,16v-5,-22,29,-35,38,-16xm43,-163v2,-7,27,-9,29,0r-32,159v-2,7,-26,8,-29,0xm136,-208v-6,-23,29,-35,37,-16v-2,14,-4,28,-22,26v-8,0,-15,-2,-15,-10xm129,-163v2,-7,27,-9,29,0r-41,193v-5,26,-41,44,-68,29v-7,-34,48,-6,46,-54","w":168},"j":{"d":"53,-208v-6,-23,29,-35,37,-16v-2,14,-4,28,-22,26v-8,0,-15,-2,-15,-10xm46,-163v2,-7,27,-9,29,0r-41,193v-5,26,-41,44,-68,29v-7,-34,48,-6,46,-54","w":86},"\u0135":{"d":"113,-197v0,7,-22,8,-24,0r-16,-32v-16,12,-25,45,-55,35v9,-19,30,-33,43,-50v8,-2,25,-4,30,2xm46,-163v2,-7,27,-9,29,0r-41,193v-5,26,-41,44,-68,29v-7,-34,48,-6,46,-54","w":86},"k":{"d":"58,-239v1,-8,23,-8,29,-3r-28,146r80,-71v14,-3,38,0,20,15r-69,58r51,89v-2,9,-28,8,-33,0r-50,-87r-18,88v-2,7,-27,9,-29,0","w":163,"k":{"-":13,"\u0111":12,"\u010f":12,"a":12,"\u0101":12,"\u0103":12,"c":11,"\u0107":11,"\u0109":11,"\u010d":11,"\u010b":11,"d":12,"q":12,"e":12,"\u011b":12,"\u0113":12,"\u0115":12,"\u0117":12,"\u0119":12,"o":12,"\u014d":12,"\u014f":12,"\u0151":12,"\u0153":12,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":8,"g":12,"\u011d":12,"\u011f":12,"\u0121":12,"\u0123":12}},"\u0137":{"d":"51,21v3,-8,29,-10,30,-1v-13,15,-17,52,-48,42v4,-16,12,-27,18,-41xm58,-239v1,-8,23,-8,29,-3r-28,146r80,-71v14,-3,38,0,20,15r-69,58r51,89v-2,9,-28,8,-33,0r-50,-87r-18,88v-2,7,-27,9,-29,0","w":163,"k":{"-":13,"\u0111":12,"\u010f":12,"a":12,"\u0101":12,"\u0103":12,"c":11,"\u0107":11,"\u0109":11,"\u010d":11,"\u010b":11,"d":12,"q":12,"e":12,"\u011b":12,"\u0113":12,"\u0115":12,"\u0117":12,"\u0119":12,"o":12,"\u014d":12,"\u014f":12,"\u0151":12,"\u0153":12,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":8,"g":12,"\u011d":12,"\u011f":12,"\u0121":12,"\u0123":12}},"\u0138":{"d":"43,-163v2,-7,27,-9,29,0r-15,73r84,-77v15,-3,37,0,20,15r-72,64v16,28,36,53,51,83v-2,9,-30,9,-33,0r-50,-81v-7,28,-9,61,-20,86v-9,-1,-24,5,-26,-4","w":163,"k":{"-":13,"\u0111":12,"\u010f":12,"a":12,"\u0101":12,"\u0103":12,"c":11,"\u0107":11,"\u0109":11,"\u010d":11,"\u010b":11,"d":12,"q":12,"e":12,"\u011b":12,"\u0113":12,"\u0115":12,"\u0117":12,"\u0119":12,"o":12,"\u014d":12,"\u014f":12,"\u0151":12,"\u0153":12,"s":3,"\u015b":3,"\u015d":3,"\u0161":3,"\u015f":3,"t":2,"\u0165":2,"\u0163":2,"u":8,"g":12,"\u011d":12,"\u011f":12,"\u0121":12,"\u0123":12}},"l":{"d":"58,-239v1,-8,23,-8,29,-3r-47,238v-2,7,-26,8,-29,0","w":82},"\u013a":{"d":"105,-305v5,-7,34,-11,34,-1v-21,16,-34,51,-70,44v6,-17,25,-28,36,-43xm58,-239v1,-8,23,-8,29,-3r-47,238v-2,7,-26,8,-29,0","w":82},"\u013e":{"d":"112,-239v2,-8,23,-10,27,-3r-29,58v-2,6,-18,5,-21,1xm58,-239v1,-8,23,-8,29,-3r-47,238v-2,7,-26,8,-29,0","w":94},"\u013c":{"d":"8,18v7,-5,34,-6,26,5v-11,14,-21,53,-47,37xm58,-239v1,-8,23,-8,29,-3r-47,238v-2,7,-26,8,-29,0","w":82},"\u0142":{"d":"61,-239v2,-8,28,-10,30,0r-15,73v8,-4,17,-10,25,-13v6,26,-16,30,-30,39r-27,136v-2,6,-27,9,-29,0r23,-118v-8,2,-21,19,-27,8v2,-20,18,-26,32,-34","w":89},"\u0140":{"d":"91,-89v-6,-29,23,-44,39,-27v7,25,-21,46,-39,27xm58,-239v1,-8,23,-8,29,-3r-47,238v-2,7,-26,8,-29,0","w":134},"m":{"d":"224,-171v77,0,24,113,19,167v-2,7,-27,9,-29,0r22,-117v1,-38,-44,-23,-56,-4v-27,26,-28,79,-38,121v-2,7,-27,9,-29,0v6,-40,18,-75,21,-118v2,-38,-43,-22,-55,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0r-6,30v11,-37,98,-60,100,0v13,-18,31,-38,61,-38","w":284,"k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"n":{"d":"124,-171v78,0,24,113,19,167v-2,7,-26,8,-29,0v7,-40,20,-75,22,-118v2,-37,-46,-22,-57,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0r-6,30v10,-20,32,-38,61,-38","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u0144":{"d":"134,-240v4,-7,30,-10,32,-1v-20,15,-22,49,-57,49v-4,0,-4,-4,-2,-7xm124,-171v78,0,24,113,19,167v-2,7,-26,8,-29,0v7,-40,20,-75,22,-118v2,-37,-46,-22,-57,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0r-6,30v10,-20,32,-38,61,-38","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u0148":{"d":"82,-246v27,-4,24,23,36,37v16,-12,25,-45,55,-35v-15,18,-37,64,-72,48r-23,-45v-1,-3,1,-5,4,-5xm124,-171v78,0,24,113,19,167v-2,7,-26,8,-29,0v7,-40,20,-75,22,-118v2,-37,-46,-22,-57,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0r-6,30v10,-20,32,-38,61,-38","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u0146":{"d":"60,21v3,-8,29,-10,30,-1v-13,15,-17,52,-48,42v4,-16,12,-27,18,-41xm124,-171v78,0,24,113,19,167v-2,7,-26,8,-29,0v7,-40,20,-75,22,-118v2,-37,-46,-22,-57,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0r-6,30v10,-20,32,-38,61,-38","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u0149":{"d":"36,-232v0,-15,33,-22,35,-5v-4,37,-34,53,-51,79v-5,2,-11,2,-19,2v-4,0,-4,-4,-2,-7v13,-23,37,-37,37,-69xm144,-171v78,0,24,113,19,167v-2,7,-26,8,-29,0v7,-40,20,-75,22,-118v2,-37,-46,-22,-57,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0r-6,30v10,-20,32,-38,61,-38","w":204,"k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"\u014b":{"d":"124,-171v37,-2,47,32,39,68r-28,133v-10,22,-31,38,-64,33v-16,2,-14,-20,-5,-26v27,9,41,-5,46,-31r24,-128v0,-37,-46,-22,-57,-3v-29,26,-26,85,-42,125v-9,-1,-24,5,-26,-4r32,-159v2,-7,25,-8,26,0r-6,30v10,-20,32,-37,61,-38","k":{"\u0163":4,"\u0177":7,"y":7,"x":4,"\u0175":4,"w":4,"v":6,"\u0165":4,"t":4}},"o":{"d":"108,-171v41,0,66,20,64,61v-3,63,-29,111,-94,113v-41,1,-65,-18,-64,-60v3,-65,29,-114,94,-114xm80,-21v44,-3,61,-40,61,-87v0,-24,-10,-39,-36,-38v-44,4,-61,42,-61,87v0,24,10,40,36,38","w":184,"k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"\u014d":{"d":"164,-227v7,2,4,21,-5,22r-84,0v-9,-3,-4,-22,5,-22r84,0xm108,-171v41,0,66,20,64,61v-3,63,-29,111,-94,113v-41,1,-65,-18,-64,-60v3,-65,29,-114,94,-114xm80,-21v44,-3,61,-40,61,-87v0,-24,-10,-39,-36,-38v-44,4,-61,42,-61,87v0,24,10,40,36,38","w":184,"k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"\u014f":{"d":"98,-224v15,25,49,1,52,-20v6,0,15,-3,18,2v6,51,-96,73,-93,11v-2,-12,14,-21,23,-10v0,5,-2,12,0,17xm108,-171v41,0,66,20,64,61v-3,63,-29,111,-94,113v-41,1,-65,-18,-64,-60v3,-65,29,-114,94,-114xm80,-21v44,-3,61,-40,61,-87v0,-24,-10,-39,-36,-38v-44,4,-61,42,-61,87v0,24,10,40,36,38","w":184,"k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"\u0151":{"d":"164,-239v5,-5,30,-8,31,1v-21,16,-27,53,-64,49v2,-18,24,-33,33,-50xm104,-238v5,-8,39,-8,29,4v-20,14,-28,53,-62,44v9,-18,23,-31,33,-48xm108,-171v41,0,66,20,64,61v-3,63,-29,111,-94,113v-41,1,-65,-18,-64,-60v3,-65,29,-114,94,-114xm80,-21v44,-3,61,-40,61,-87v0,-24,-10,-39,-36,-38v-44,4,-61,42,-61,87v0,24,10,40,36,38","w":184,"k":{",":7,"v":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"\u0153":{"d":"172,-99v37,0,78,3,82,-29v-7,-37,-71,-14,-74,10v-3,6,-6,12,-8,19xm109,-171v30,-1,47,12,55,34v17,-39,120,-52,120,7v0,50,-60,52,-117,52v-7,30,0,61,35,58v21,-2,37,-6,52,-11v13,29,-29,34,-57,34v-28,0,-48,-9,-55,-31v-25,43,-134,46,-128,-29v5,-65,30,-111,95,-114xm80,-21v44,-3,61,-40,61,-87v0,-24,-10,-39,-36,-38v-44,4,-61,42,-61,87v0,24,10,40,36,38","w":293,"k":{"v":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"w":2,"\u0175":2}},"p":{"d":"124,-171v34,0,48,24,48,58v0,59,-23,112,-84,116v-22,1,-35,-9,-45,-21v-7,26,-8,60,-19,81v-8,-1,-25,6,-25,-5r44,-221v1,-6,25,-9,26,0r-6,30v11,-20,32,-38,61,-38xm88,-21v39,-7,49,-47,53,-90v4,-44,-43,-39,-62,-15v-16,20,-26,48,-30,80v10,14,19,24,39,25","k":{"v":2,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":2,"\u0165":2,"\u0163":2,"x":7,"y":2,"\u0177":2,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"w":2,"\u0175":2}},"q":{"d":"145,-147v-4,-16,17,-31,29,-16r-44,221v-1,9,-23,8,-29,3r21,-95v-11,19,-30,36,-60,37v-35,0,-48,-22,-48,-57v0,-60,23,-117,84,-117v23,0,35,11,47,24xm45,-56v-4,46,45,39,62,14v19,-17,24,-49,30,-79v-11,-13,-19,-23,-39,-25v-41,6,-49,47,-53,90"},"r":{"d":"63,-134v10,-22,37,-47,68,-32v5,11,-4,36,-18,24v-62,2,-57,92,-76,142v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0","w":123,"k":{"-":7,".":30,",":27,"v":-3,"y":-2,"\u0177":-2,"w":-2,"\u0175":-2}},"\u0155":{"d":"79,-196v15,-18,27,-64,60,-45v-17,18,-22,48,-56,49v-2,0,-4,-2,-4,-4xm63,-134v10,-22,37,-47,68,-32v5,11,-4,36,-18,24v-62,2,-57,92,-76,142v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0","w":123,"k":{"-":7,".":30,",":27,"v":-3,"y":-2,"\u0177":-2,"w":-2,"\u0175":-2}},"\u0159":{"d":"55,-246v27,-5,26,23,37,37v16,-13,24,-45,55,-35v-16,18,-36,64,-73,48v-7,-15,-16,-28,-22,-45v-1,-2,0,-5,3,-5xm63,-134v10,-22,37,-47,68,-32v5,11,-4,36,-18,24v-62,2,-57,92,-76,142v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0","w":123,"k":{"-":7,".":30,",":27,"v":-3,"y":-2,"\u0177":-2,"w":-2,"\u0175":-2}},"\u0157":{"d":"21,18v7,-5,34,-6,26,5v-11,14,-21,53,-47,37xm63,-134v10,-22,37,-47,68,-32v5,11,-4,36,-18,24v-62,2,-57,92,-76,142v-9,-1,-24,5,-26,-4r32,-159v2,-7,24,-8,26,0","w":123,"k":{"-":7,".":30,",":27,"v":-3,"y":-2,"\u0177":-2,"w":-2,"\u0175":-2}},"s":{"d":"90,-171v22,-1,55,12,34,34v-20,-13,-68,-19,-68,16v8,34,63,23,63,67v0,56,-83,73,-117,41v0,-10,1,-18,7,-22v17,18,80,26,80,-14v-8,-35,-63,-23,-62,-67v0,-37,28,-53,63,-55","w":140,"k":{"v":4,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015b":{"d":"107,-240v4,-7,30,-10,32,-1v-20,15,-22,49,-57,49v-4,0,-4,-4,-2,-7xm90,-171v22,-1,55,12,34,34v-20,-13,-68,-19,-68,16v8,34,63,23,63,67v0,56,-83,73,-117,41v0,-10,1,-18,7,-22v17,18,80,26,80,-14v-8,-35,-63,-23,-62,-67v0,-37,28,-53,63,-55","w":140,"k":{"v":4,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015d":{"d":"139,-197v0,7,-22,8,-24,0r-16,-32v-16,12,-25,45,-55,35v9,-19,30,-33,43,-50v8,-2,25,-4,30,2xm90,-171v22,-1,55,12,34,34v-20,-13,-68,-19,-68,16v8,34,63,23,63,67v0,56,-83,73,-117,41v0,-10,1,-18,7,-22v17,18,80,26,80,-14v-8,-35,-63,-23,-62,-67v0,-37,28,-53,63,-55","w":140,"k":{"v":4,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u0161":{"d":"57,-246v27,-4,24,23,36,37v16,-12,25,-45,55,-35v-15,18,-37,64,-72,48r-23,-45v-1,-3,1,-5,4,-5xm90,-171v22,-1,55,12,34,34v-20,-13,-68,-19,-68,16v8,34,63,23,63,67v0,56,-83,73,-117,41v0,-10,1,-18,7,-22v17,18,80,26,80,-14v-8,-35,-63,-23,-62,-67v0,-37,28,-53,63,-55","w":140,"k":{"v":4,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u015f":{"d":"5,60v-11,-36,56,1,40,-40r-4,-17v-23,0,-52,-15,-32,-38v17,18,80,26,80,-14v-8,-35,-63,-23,-62,-67v0,-37,28,-53,63,-55v22,-1,55,12,34,34v-20,-13,-68,-19,-68,16v8,34,64,23,63,67v-2,33,-22,51,-54,56v20,40,-12,77,-60,58","w":140,"k":{"v":4,"t":4,"\u0165":4,"\u0163":4,"x":4,"y":7,"\u0177":7,"z":3,"\u017a":3,"\u017e":3,"\u017c":3,"w":2,"\u0175":2}},"\u017f":{"d":"48,-189v4,-40,44,-72,84,-50v7,38,-42,-1,-51,39v-17,73,-28,159,-50,230v-8,24,-28,39,-61,33v-13,2,-13,-22,-4,-26v28,10,39,-10,44,-35","w":87},"t":{"d":"120,-167v10,2,3,24,-5,24r-40,0v-6,35,-15,66,-19,104v-3,23,25,18,38,12v10,15,-8,31,-30,30v-71,-4,-22,-98,-18,-146v-11,-2,-30,7,-26,-11v0,-14,16,-14,31,-13v4,-20,2,-55,36,-40r-7,40r40,0","w":120,"k":{"-":11,"\u0111":5,"\u010f":5,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"x":1,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5}},"\u0165":{"d":"105,-184v6,-23,16,-41,26,-59v8,1,23,-5,21,5v-11,18,-17,40,-31,55v-5,0,-13,1,-16,-1xm120,-167v10,2,3,24,-5,24r-40,0v-6,35,-15,66,-19,104v-3,23,25,18,38,12v10,15,-8,31,-30,30v-71,-4,-22,-98,-18,-146v-11,-2,-30,7,-26,-11v0,-14,16,-14,31,-13v4,-20,2,-55,36,-40r-7,40r40,0","w":124},"\u0167":{"d":"98,-100v10,2,4,22,-4,23r-31,0v-3,18,-19,55,9,56v10,0,15,-4,22,-5v11,12,-7,34,-29,29v-45,4,-43,-45,-31,-80v-13,0,-33,4,-25,-14v0,-12,17,-8,29,-9r9,-44v-14,0,-32,4,-24,-17v3,-9,18,-5,29,-6v2,-19,6,-59,36,-38r-7,38r40,0v10,2,4,21,-4,23r-41,0r-9,44r31,0","w":123},"u":{"d":"69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-32,159v-2,7,-24,8,-26,0r6,-30v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"\u0169":{"d":"143,-215v17,2,8,-25,26,-23v9,-1,10,2,9,9v-4,20,-12,36,-36,36v-25,0,-28,-20,-49,-23v-18,-2,-6,33,-34,21v-2,-23,11,-42,36,-43v25,-1,28,20,48,23xm69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-32,159v-2,7,-24,8,-26,0r6,-30v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"\u016b":{"d":"160,-227v8,2,3,22,-4,22r-84,0v-8,-1,-5,-21,4,-22r84,0xm69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-32,159v-2,7,-24,8,-26,0r6,-30v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"\u016d":{"d":"95,-224v15,26,48,1,51,-20v6,1,16,-4,18,2v6,50,-90,72,-92,16v-4,-13,11,-27,22,-15xm69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-32,159v-2,7,-24,8,-26,0r6,-30v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"\u016f":{"d":"81,-216v-4,-40,71,-51,70,-9v0,23,-14,36,-39,36v-20,0,-29,-8,-31,-27xm101,-213v5,17,33,9,31,-10v-1,-9,-4,-14,-14,-14v-13,0,-21,11,-17,24xm69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-32,159v-2,7,-24,8,-26,0r6,-30v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"\u0171":{"d":"164,-239v5,-5,30,-8,31,1v-22,15,-27,53,-65,49v5,-18,24,-33,34,-50xm103,-238v5,-9,42,-6,29,4v-19,15,-27,53,-62,44v9,-18,23,-31,33,-48xm69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-32,159v-2,7,-24,8,-26,0r6,-30v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"\u0173":{"d":"69,-21v68,0,59,-94,80,-146v9,1,23,-5,26,4r-35,167v-7,13,-26,14,-28,32v-2,16,42,-6,28,23v-38,22,-84,-23,-37,-49v14,-8,17,-26,20,-44v-12,19,-30,36,-61,37v-39,2,-47,-32,-40,-67r20,-99v2,-7,27,-9,29,0v-6,40,-18,75,-21,118v-1,14,5,24,19,24"},"v":{"d":"70,-30v31,-39,45,-88,67,-137v0,0,31,-6,25,10v-21,58,-48,111,-83,155v-6,4,-32,7,-33,-3r-24,-160v4,-5,28,-6,29,3","w":160,"k":{"\u0163":-2,".":23,",":22,"\u017c":5,"\u017e":5,"\u017a":5,"z":5,"\u0177":-2,"y":-2,"\u0175":-2,"w":-2,"v":-2,"\u0165":-2,"t":-2,"\u015f":2,"\u0161":2,"\u015d":2,"\u015b":2,"s":2,"\u0153":2,"\u0151":2,"\u014f":2,"\u014d":2,"o":2,"f":-2}},"w":{"d":"170,-31v26,-39,43,-92,63,-136v10,1,31,-7,25,10v-21,57,-45,112,-80,155v-6,4,-30,7,-32,-3r-12,-116r-59,121v-11,-1,-32,6,-33,-5r-16,-160v3,-5,23,-5,28,0r13,135r64,-137v9,0,23,-4,26,4","w":257,"k":{".":17,",":21,"v":-1,"y":-1,"\u0177":-1,"w":-1,"\u0175":-1}},"\u0175":{"d":"195,-197v0,7,-22,8,-24,0r-16,-32v-16,12,-25,45,-55,35v9,-19,30,-33,43,-50v8,-2,25,-4,30,2xm170,-31v26,-39,43,-92,63,-136v10,1,31,-7,25,10v-21,57,-45,112,-80,155v-6,4,-30,7,-32,-3r-12,-116r-59,121v-11,-1,-32,6,-33,-5r-16,-160v3,-5,23,-5,28,0r13,135r64,-137v9,0,23,-4,26,4","w":257,"k":{".":17,",":21,"v":-1,"y":-1,"\u0177":-1,"w":-1,"\u0175":-1}},"x":{"d":"130,-163v4,-7,29,-8,32,-1v-19,28,-43,52,-64,79r35,81v-2,8,-28,8,-32,0r-26,-62r-55,66v-10,0,-36,4,-26,-8r66,-78r-34,-78v3,-6,28,-7,31,1r25,59","w":155,"k":{"-":9,"\u0111":8,"\u010f":8,"a":8,"\u0101":8,"\u0103":8,"c":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u010b":8,"d":8,"q":8,"e":7,"\u011b":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"o":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":2,"\u015b":2,"\u015d":2,"\u0161":2,"\u015f":2,"t":-1,"\u0165":-1,"\u0163":-1,"u":4,"g":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8}},"y":{"d":"133,-163v4,-7,28,-8,31,-1v-27,90,-78,158,-129,225v-7,3,-39,7,-29,-6r43,-55r-26,-165v3,-5,23,-4,28,0r21,132v27,-37,46,-81,61,-130","w":161,"k":{".":17,",":21,"v":-1,"f":-2,"t":-2,"\u0165":-2,"\u0163":-2,"w":-1,"\u0175":-1}},"\u0177":{"d":"147,-197v0,7,-22,8,-24,0r-16,-32v-16,12,-25,45,-55,35v14,-19,38,-64,72,-48xm133,-163v4,-7,28,-8,31,-1v-27,90,-78,158,-129,225v-7,3,-39,7,-29,-6r43,-55r-26,-165v3,-5,23,-4,28,0r21,132v27,-37,46,-81,61,-130","w":161,"k":{".":17,",":21,"v":-1,"f":-2,"t":-2,"\u0165":-2,"\u0163":-2,"w":-1,"\u0175":-1}},"z":{"d":"132,-167v14,3,2,29,-5,34r-90,109r73,0v9,2,3,23,-5,24r-98,0v-15,-5,1,-29,5,-34r90,-109r-66,0v-9,-2,-3,-23,5,-24r91,0","w":142,"k":{"\u0111":7,"\u010f":7,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":3,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7}},"\u017a":{"d":"105,-240v4,-7,30,-10,32,-1v-19,16,-21,49,-56,49v-4,0,-5,-4,-3,-7xm132,-167v14,3,2,29,-5,34r-90,109r73,0v9,2,3,23,-5,24r-98,0v-15,-5,1,-29,5,-34r90,-109r-66,0v-9,-2,-3,-23,5,-24r91,0","w":142,"k":{"\u0111":7,"\u010f":7,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":3,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7}},"\u017e":{"d":"55,-241v1,-9,23,-6,24,0r17,32v16,-13,24,-45,55,-35v-18,19,-35,63,-73,48xm132,-167v14,3,2,29,-5,34r-90,109r73,0v9,2,3,23,-5,24r-98,0v-15,-5,1,-29,5,-34r90,-109r-66,0v-9,-2,-3,-23,5,-24r91,0","w":142,"k":{"\u0111":7,"\u010f":7,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":3,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7}},"\u017c":{"d":"79,-208v-8,-24,29,-34,36,-16v5,22,-28,35,-36,16xm132,-167v14,3,2,29,-5,34r-90,109r73,0v9,2,3,23,-5,24r-98,0v-15,-5,1,-29,5,-34r90,-109r-66,0v-9,-2,-3,-23,5,-24r91,0","w":142,"k":{"\u0111":7,"\u010f":7,"a":7,"\u0101":7,"\u0103":7,"c":5,"\u0107":5,"\u0109":5,"\u010d":5,"\u010b":5,"d":7,"q":7,"e":5,"\u011b":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"o":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u015f":4,"u":3,"g":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7}},"`":{"d":"53,-238v-4,-7,4,-9,12,-8v29,1,30,33,43,50v-29,15,-40,-28,-55,-42","w":104},"!":{"d":"79,-233v1,-11,27,-12,32,-4r-36,171v0,9,-21,8,-26,3xm33,-4v-6,-28,22,-44,38,-28v7,25,-18,45,-38,28","w":117},"?":{"d":"107,-242v77,-8,77,104,22,127v-10,4,-21,7,-34,8v-5,19,-2,60,-36,44v8,-22,-3,-62,25,-65v58,11,78,-86,18,-89v-24,-1,-37,16,-52,13v-5,-32,30,-35,57,-38xm45,-4v-9,-26,21,-45,37,-28v7,25,-18,45,-37,28","w":166},",":{"d":"20,-25v-2,-16,25,-18,34,-10v1,41,-31,56,-48,81v-3,7,-30,9,-23,-2v14,-22,34,-37,37,-69","w":89,"k":{"\u0163":8,"\u0162":25,"\u0165":8,"t":8,"\u0178":27,"\u0176":27,"Y":27,"X":-2,"\u0174":28,"W":28,"V":26,"\u0164":25,"T":25,"\u0134":-4,"J":-4,"\u0104":-3,"\u0102":-3,"\u0100":-3,"A":-3}},";":{"d":"83,-150v0,17,-6,30,-24,30v-10,0,-15,-2,-15,-11v1,-16,4,-30,23,-30v10,0,16,2,16,11xm25,-25v-2,-16,25,-18,34,-10v-1,42,-31,62,-54,84v-6,2,-23,4,-17,-5v14,-22,34,-37,37,-69","w":96},":":{"d":"83,-150v0,16,-5,31,-24,30v-10,0,-15,-2,-15,-11v1,-16,4,-30,23,-30v10,0,16,2,16,11xm58,-28v-1,16,-5,31,-23,30v-10,0,-16,-2,-16,-11v0,-16,4,-30,23,-30v10,0,16,2,16,11","w":96},".":{"d":"14,-6v-9,-27,23,-44,38,-26v2,22,-7,39,-31,33v-4,0,-7,-3,-7,-7","w":90,"k":{"\u0163":8,"\u0162":25,"-":20,"\u017c":-2,"\u017e":-2,"\u017a":-2,"z":-2,"\u0177":12,"y":12,"\u0175":12,"w":12,"v":13,"\u0165":8,"t":8,"\u0178":30,"\u0176":30,"Y":30,"\u0174":21,"W":21,"V":24,"\u0172":3,"\u0170":3,"\u016e":3,"\u016c":3,"\u016a":3,"\u0168":3,"U":3,"\u0164":25,"T":25,"Q":4,"\u0152":4,"\u0150":4,"\u014e":4,"\u014c":4,"O":4,"\u0134":-3,"J":-3,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"G":7,"\u010a":7,"\u010c":7,"\u0108":7,"\u0106":7,"C":7,"\u0104":-2,"\u0102":-2,"\u0100":-2,"A":-2}},"\/":{"d":"141,-251v2,-9,29,-11,31,-2r-169,299v-6,3,-34,7,-27,-6","w":139,"k":{"\u015f":5,"\u0161":5,"\u015d":5,"\u015b":5,"s":5,"\u0153":6,"\u0151":6,"\u014f":6,"\u014d":6,"o":6,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u011b":7,"e":7,"\u010b":7,"\u010d":7,"\u0109":7,"\u0107":7,"c":7,"\u0134":7,"J":7,"\u0104":12,"\u0102":12,"\u0100":12,"A":12}},"|":{"d":"102,-247v1,-7,26,-9,27,0r-61,306v-1,7,-25,9,-27,0","w":165},"\\":{"d":"36,-248v-3,-13,17,-10,27,-7r50,299v-2,7,-27,6,-29,-1","w":138},"-":{"d":"96,-101v9,4,3,24,-5,24r-74,0v-9,-2,-3,-24,5,-24r74,0","w":110,"k":{"\u0177":4,"y":4,"x":7,"v":3,"\u0178":18,"\u0176":18,"Y":18}},"\u2010":{"d":"96,-101v9,4,3,24,-5,24r-74,0v-9,-2,-3,-24,5,-24r74,0","w":110},"\u00ad":{"d":"96,-101v9,4,3,24,-5,24r-74,0v-9,-2,-3,-24,5,-24r74,0","w":110},"_":{"d":"149,41v8,1,6,23,-4,23r-169,0v-7,-2,-5,-22,4,-23r169,0","w":179},"(":{"d":"121,-245v-50,73,-92,184,-61,301v-2,7,-21,7,-25,1v-35,-110,4,-232,58,-302v3,-5,26,-8,28,0","w":109,"k":{"j":-11}},")":{"d":"-7,57v50,-74,90,-184,62,-302v0,-7,20,-5,24,-1v37,110,-3,240,-63,306v-8,1,-20,2,-23,-3","w":109},"[":{"d":"62,56v-19,-4,-58,10,-54,-12r56,-278v4,-21,38,-9,59,-12v6,4,2,21,-5,22r-29,0r-51,259v14,1,40,-7,30,15v-1,2,-4,5,-6,6","w":110},"]":{"d":"54,-246v18,4,57,-11,53,12r-55,278v-3,21,-38,9,-59,12v-7,-3,-3,-21,5,-21r28,0r52,-259v-13,-2,-39,7,-31,-15v1,-3,3,-7,7,-7","w":110},"{":{"d":"22,-89v-18,-22,28,-22,33,-44v11,-46,11,-131,78,-111v5,29,-31,9,-34,38v-13,41,-10,98,-53,108v42,16,9,79,8,119v-5,18,42,9,14,35v-64,9,-31,-70,-27,-118v1,-15,-6,-25,-19,-27","w":113},"}":{"d":"108,-110v17,24,-30,21,-33,44v-16,46,-9,140,-80,119v-4,-28,32,-10,35,-38v14,-41,7,-107,55,-115v-41,-14,-13,-72,-11,-111v7,-21,-42,-8,-14,-36v62,-11,34,64,29,110v-2,15,6,26,19,27","w":113},"*":{"d":"104,-197v6,-21,-10,-62,29,-51v4,15,-10,34,-13,51v16,-9,29,-24,48,-28v3,2,12,21,4,24r-46,19v12,10,49,12,34,32v-16,22,-31,-13,-45,-19v-5,21,5,62,-29,50v-4,-14,10,-34,12,-50v-16,8,-29,24,-47,27v-3,-2,-12,-20,-4,-23r46,-19v-13,-8,-30,-11,-40,-22v4,-7,9,-23,20,-18","w":179},"^":{"d":"98,-224v7,-6,31,-9,37,0r29,120v-1,7,-28,6,-30,-1r-21,-97r-64,101v-11,0,-32,6,-23,-9","w":179},"~":{"d":"165,-189v1,-8,17,-5,22,-2v0,33,-16,56,-48,57v-38,3,-35,-38,-66,-41v-18,-2,-22,15,-24,30v0,5,-24,9,-23,0v1,-32,16,-54,49,-54v37,0,36,37,65,41v18,3,23,-15,25,-31","w":179},"'":{"d":"56,-240v2,-8,30,-9,31,0r-21,81v1,8,-18,9,-22,3","w":79},"\"":{"d":"119,-240v3,-8,28,-9,30,0v-8,28,-13,61,-24,86v-7,-1,-21,5,-19,-5xm56,-240v2,-7,29,-9,30,0v-8,28,-12,61,-23,86v-7,-1,-20,6,-19,-5","w":144},"&":{"d":"202,3v-20,0,-30,-15,-43,-27v-34,33,-145,47,-145,-25v0,-45,32,-61,62,-79v-32,-46,-11,-110,57,-110v33,0,58,9,58,39v0,48,-41,58,-76,78v14,23,30,42,47,61v13,-15,25,-35,27,-58v0,-10,27,-12,29,-3v-4,32,-19,59,-38,78v12,10,18,19,32,21v9,-1,5,7,4,13v1,9,-6,12,-14,12xm160,-195v-12,-33,-78,-21,-69,22v2,13,7,21,12,32v28,-14,52,-22,57,-54xm45,-53v0,47,75,33,95,12v-17,-22,-37,-42,-51,-67v-21,13,-44,25,-44,55","w":245},"@":{"d":"198,-233v62,0,101,24,101,83v0,60,-21,121,-82,121v-21,0,-35,-9,-33,-32v-13,16,-29,30,-55,32v-27,1,-36,-16,-36,-41v0,-53,24,-100,77,-100v18,0,28,11,36,23v2,-13,9,-27,26,-19v2,1,3,1,2,3v-8,32,-29,66,-27,103v2,6,7,8,15,8v40,0,50,-53,50,-96v0,-46,-30,-62,-78,-62v-95,0,-132,67,-139,159v-6,80,92,76,150,62v6,37,-38,32,-68,32v-66,0,-109,-25,-109,-91v0,-108,55,-185,170,-185xm120,-74v-2,33,33,20,46,6v14,-15,24,-33,29,-56v-7,-12,-11,-23,-26,-23v-34,0,-46,37,-49,73","w":321},"$":{"d":"69,-162v12,47,95,27,92,89v-2,50,-38,70,-90,73v-7,16,-7,54,-35,40v2,-15,8,-27,12,-41v-25,0,-57,-17,-35,-40v32,22,117,26,116,-29v-12,-53,-116,-29,-87,-113v10,-28,36,-42,74,-44v6,-16,8,-53,35,-37r-11,38v22,1,48,18,28,38v-29,-20,-100,-24,-99,26","w":182},"#":{"d":"164,-167v10,2,26,-6,24,10v-2,14,-16,14,-31,13r-20,58v11,2,28,-6,25,10v0,15,-17,12,-32,12v-8,21,-11,47,-23,64v-7,0,-24,4,-22,-4r19,-60r-49,0v-8,21,-11,47,-23,64v-7,-1,-21,5,-22,-4r19,-60v-10,-2,-27,6,-24,-10v-1,-16,18,-12,32,-12r19,-58v-11,-1,-31,5,-25,-12v-1,-15,18,-10,32,-11r18,-56v1,-7,24,-9,26,-1r-18,57r48,0r19,-56v1,-8,24,-9,26,-1xm82,-144r-19,58r48,0r19,-58r-48,0","w":179},"0":{"d":"120,-231v43,0,62,25,62,68v0,81,-21,163,-106,166v-45,2,-64,-24,-62,-68v4,-83,21,-166,106,-166xm79,-21v62,0,72,-78,72,-141v0,-28,-10,-44,-35,-44v-62,0,-72,79,-72,141v0,28,10,44,35,44","w":182},"1":{"d":"145,-24v8,2,4,23,-5,24r-119,0v-8,-4,-3,-23,5,-24r48,0r34,-171v-19,6,-37,28,-58,25v5,-34,60,-66,94,-54r-40,200r41,0","w":182},"2":{"d":"135,-167v12,-52,-63,-36,-84,-18v-6,-1,-3,-11,-3,-17v10,-21,37,-27,66,-29v71,-6,63,83,28,117v-29,29,-63,61,-95,88r97,0v10,3,5,26,-5,26r-129,-1v-10,-4,-1,-27,6,-30v41,-44,103,-69,119,-136","w":182},"3":{"d":"115,-118v28,2,42,19,43,45v3,71,-96,96,-151,59v-1,-9,-1,-23,7,-25v30,27,112,23,110,-32v-1,-33,-35,-36,-71,-34v-8,0,-5,-7,-5,-13v2,-12,15,-11,29,-10v35,-1,60,-19,60,-51v0,-45,-67,-21,-87,-7v-12,-31,30,-45,64,-45v34,0,55,14,55,47v0,37,-24,58,-54,66","w":182},"4":{"d":"139,-77v21,-7,43,10,20,25r-25,0v-4,20,-6,70,-39,48r9,-48r-94,0v-13,-4,-1,-26,2,-33r113,-141v13,-1,37,-8,43,4xm134,-200r-98,123r74,0","w":182},"5":{"d":"67,-137v47,-6,94,4,93,50v-1,60,-38,88,-99,90v-29,1,-73,-10,-48,-39v39,27,115,14,115,-48v0,-42,-59,-23,-90,-31v4,-37,11,-79,23,-110v32,-6,74,0,109,-2v10,3,2,25,-6,26r-85,0","w":182},"6":{"d":"58,-126v34,-23,114,-21,110,36v-4,56,-32,92,-91,93v-41,1,-58,-23,-58,-62v0,-90,30,-167,121,-172v24,-2,58,9,36,32v-61,-24,-111,17,-118,73xm82,-21v36,-3,53,-28,55,-65v2,-43,-62,-31,-84,-15v-6,34,-11,83,29,80","w":182},"7":{"d":"186,-227v13,-1,4,16,3,25r-127,200v-6,4,-37,8,-31,-6r125,-193r-108,0v-10,-3,-4,-26,5,-26r133,0","w":182},"8":{"d":"123,-118v20,12,40,23,40,52v0,49,-38,68,-89,69v-38,0,-66,-12,-66,-47v0,-43,34,-57,65,-73v-19,-12,-33,-23,-33,-48v0,-45,33,-66,80,-66v34,0,59,12,59,44v0,39,-28,55,-56,69xm100,-130v22,-13,47,-22,49,-53v1,-19,-14,-22,-32,-24v-41,-4,-63,45,-32,67v4,3,9,6,15,10xm79,-20v47,3,73,-51,34,-74r-17,-10v-27,13,-57,22,-57,57v0,21,17,25,40,27","w":182},"9":{"d":"137,-101v-35,21,-113,20,-109,-36v4,-57,32,-94,91,-94v40,0,58,23,58,63v0,94,-33,171,-136,171v-20,0,-47,-14,-26,-32v61,24,115,-16,122,-72xm113,-207v-37,2,-53,30,-55,66v-2,42,61,30,84,15v6,-34,12,-83,-29,-81","w":182},"%":{"d":"201,-116v27,0,41,12,41,39v0,43,-17,80,-62,80v-26,0,-40,-13,-40,-40v1,-44,17,-79,61,-79xm183,-17v28,0,32,-32,34,-59v1,-14,-6,-21,-19,-21v-26,0,-32,30,-33,59v0,15,5,21,18,21xm90,-230v27,0,40,13,40,39v0,44,-16,79,-62,80v-26,0,-40,-14,-40,-39v0,-44,17,-80,62,-80xm71,-131v28,-2,33,-30,34,-59v1,-14,-5,-21,-18,-21v-27,0,-31,32,-34,59v0,15,4,21,18,21xm224,-229v4,-8,35,-8,24,4r-206,229v-7,3,-31,5,-21,-7","w":257},"+":{"d":"167,-114v9,4,4,25,-5,25r-58,0r-13,64v-1,8,-21,8,-26,3r13,-67r-58,0v-9,-3,-3,-25,5,-25r58,0r13,-64v3,-7,25,-9,26,0r-13,64r58,0","w":179,"k":{"+":-3}},"=":{"d":"155,-80v10,3,4,25,-5,25r-132,0v-9,-2,-6,-24,5,-25r132,0xm169,-148v10,3,3,24,-5,25r-133,0v-8,-4,-3,-24,5,-25r133,0","w":179},"<":{"d":"148,-46v8,6,4,29,-5,29r-127,-73v-2,-9,1,-22,8,-25r156,-70v3,11,-2,26,-10,30r-124,55","w":179},">":{"d":"39,-157v-8,-6,-4,-30,6,-28r126,73v2,9,-1,21,-8,25r-155,70v-5,-10,1,-26,9,-30r124,-55","w":179},"\u0162":{"d":"23,58v-8,-38,54,5,41,-40r-5,-20r24,0v22,41,-12,80,-60,60xm196,-227v9,2,3,25,-5,25r-64,0r-40,197v-1,9,-24,8,-30,3r40,-200r-64,0v-9,-2,-3,-25,5,-25r158,0","w":175,"k":{"-":28,"\/":19,".":36,":":24,";":20,",":36,"v":15,"\u0135":-13,"\u012d":-13,"\u012b":-18,"\u0129":-24,"\u0111":31,"\u010f":31,"C":7,"\u0106":7,"\u0108":7,"\u010c":7,"\u010a":7,"G":9,"\u011c":9,"\u011e":9,"\u0120":9,"\u0122":9,"J":10,"\u0134":10,"O":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"Q":9,"a":31,"\u0101":31,"\u0103":31,"c":29,"\u0107":29,"\u0109":29,"\u010d":29,"\u010b":29,"d":31,"q":31,"\u0131":17,"m":17,"\u014b":17,"p":17,"r":17,"\u0155":17,"\u0159":17,"\u0157":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"e":30,"\u011b":30,"\u0113":30,"\u0115":30,"\u0117":30,"\u0119":30,"n":17,"\u0144":17,"\u0148":17,"\u0146":17,"o":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u015f":26,"u":17,"x":15,"y":16,"\u0177":16,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"A":27,"\u0100":27,"\u0102":27,"\u0104":27,"T":-5,"\u0164":-5,"\u0162":-5,"g":31,"\u011d":31,"\u011f":31,"\u0121":31,"\u0123":31,"w":16,"\u0175":16}},"\u0163":{"d":"9,60v-10,-39,55,4,40,-40r-5,-20r24,0v21,40,-10,80,-59,60xm120,-167v10,2,3,24,-5,24r-40,0v-6,35,-15,66,-19,104v-3,23,25,18,38,12v10,15,-8,31,-30,30v-71,-4,-22,-98,-18,-146v-11,-2,-30,7,-26,-11v0,-14,16,-14,31,-13v4,-20,2,-55,36,-40r-7,40r40,0","w":120,"k":{"-":11,"\u0111":5,"\u010f":5,"a":5,"\u0101":5,"\u0103":5,"c":4,"\u0107":4,"\u0109":4,"\u010d":4,"\u010b":4,"d":5,"q":5,"e":4,"\u011b":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"o":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"t":3,"\u0165":3,"\u0163":3,"x":1,"g":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5}}}});

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


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2000 Adobe Systems Incorporated. All Rights Reserved. U.S. Patent
 * Des. pending.
 * 
 * Trademark:
 * Myriad is a registered trademark of Adobe Systems Incorporated.
 * 
 * Full name:
 * MyriadPro-Light
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
//Cufon.registerFont({"w":488,"face":{"font-family":"Myriad Pro","font-weight":300,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 4 3 3 4 3 2 2 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-49 -864 832 250","underline-thickness":"50","underline-position":"-50","stemh":"39","stemv":"48","unicode-range":"U+0020-U+017E"},"glyphs":{" ":{"w":219},"\u00a0":{"w":219,"k":{"T":42,"\u0166":42,"\u0164":42,"\u021a":42,"V":35,"W":35,"\u0174":35,"Y":50,"\u0178":50}},"!":{"d":"122,-177r-39,0r-10,-497r59,0xm144,-33v0,24,-15,44,-41,44v-23,0,-39,-20,-39,-44v0,-26,17,-45,40,-45v25,0,40,19,40,45","w":207},"\"":{"d":"60,-692r57,0r-12,221r-32,0xm183,-692r57,0r-12,221r-32,0","w":301,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":60,"\u0134":60,"M":8,"V":-22,"W":-22,"\u0174":-22,"A":70,"\u0102":70,"\u0100":70,"\u0104":70,"f":-25,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u0153":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"t":-25,"\u0167":-25,"\u0165":-25,"\u021b":-25,"v":-30,"w":-30,"y":-30,"\u0175":-30,",":105,".":105}},"#":{"d":"167,-245r112,0r20,-165r-112,0xm136,0r-42,0r26,-206r-83,0r0,-39r88,0r21,-165r-88,0r0,-39r93,0r26,-201r41,0r-26,201r113,0r26,-201r40,0r-25,201r83,0r0,39r-88,0r-21,165r89,0r0,39r-94,0r-26,206r-41,0r26,-206r-112,0","w":465},"$":{"d":"255,84r-41,0r0,-103v-52,0,-108,-18,-142,-45r21,-37v31,25,79,43,128,43v81,0,134,-52,134,-120v0,-65,-43,-105,-117,-138v-99,-43,-156,-87,-156,-168v0,-80,57,-139,139,-151r0,-104r41,0r0,103v56,2,94,19,120,37r-21,37v-18,-13,-57,-35,-115,-35v-85,0,-119,57,-119,105v0,63,38,91,126,131v93,42,148,92,148,179v0,74,-50,147,-146,162r0,104"},"%":{"d":"32,-458v0,-140,71,-203,143,-203v76,0,134,62,134,194v0,267,-277,278,-277,9xm266,-464v0,-88,-26,-164,-96,-163v-60,0,-95,73,-95,165v0,92,34,165,95,165v68,0,96,-74,96,-167xm193,13r-39,0r388,-676r39,0xm428,-189v0,-139,71,-203,143,-203v76,0,134,62,134,194v0,267,-277,278,-277,9xm662,-195v0,-88,-26,-164,-96,-163v-60,0,-95,74,-95,165v0,92,35,165,95,165v68,0,96,-74,96,-167","w":737},"&":{"d":"560,0r-60,0r-74,-76v-68,65,-134,87,-205,87v-110,0,-190,-83,-190,-188v0,-93,58,-155,133,-199v-32,-54,-58,-100,-58,-150v0,-80,54,-159,152,-159v72,0,129,53,129,134v0,73,-42,127,-157,184r0,3r196,225v33,-50,54,-116,70,-216r45,0v-18,108,-44,189,-88,244xm79,-183v0,90,64,155,154,155v69,0,127,-32,166,-77r-213,-241v-42,25,-107,76,-107,163xm342,-546v0,-48,-26,-101,-92,-100v-65,0,-99,54,-99,116v0,57,27,98,55,136v81,-43,136,-84,136,-152","w":560},"(":{"d":"208,-697r45,0v-83,103,-140,229,-140,413v0,180,60,303,140,407r-45,0v-69,-86,-141,-211,-141,-408v0,-198,72,-324,141,-412","w":265,"k":{"T":-63,"\u0166":-63,"\u0164":-63,"\u021a":-63,"J":-21,"\u0134":-21,"C":5,"G":5,"O":5,"Q":5,"\u0152":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"V":-64,"W":-64,"\u0174":-64,"X":-15,"Y":-48,"\u0178":-48,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"j":-59,"\u0135":-59}},")":{"d":"57,123r-45,0v80,-103,140,-229,140,-411v0,-181,-59,-305,-140,-409r45,0v69,86,141,212,141,410v0,197,-72,322,-141,410","w":265},"*":{"d":"259,-685r44,25r-88,124r146,-12r0,47v-47,-2,-102,-13,-145,-10r88,119r-46,26v-23,-43,-39,-92,-65,-132r-69,133r-39,-27r87,-122r-142,13r0,-47v46,1,99,12,141,9r-86,-120r44,-25v23,42,41,90,67,130","w":391},"+":{"d":"277,-532r43,0r0,245r236,0r0,40r-236,0r0,247r-43,0r0,-247r-236,0r0,-40r236,0r0,-245","w":596},",":{"d":"64,121r-38,5v16,-42,43,-150,52,-212r63,-10v-18,75,-61,189,-77,217","w":174,"k":{"\"":90,"'":90}},"-":{"d":"30,-296r238,0r0,42r-238,0r0,-42","w":298},"\u00ad":{"d":"30,-296r238,0r0,42r-238,0r0,-42","w":298,"k":{"T":46,"\u0166":46,"\u0164":46,"\u021a":46,"J":29,"\u0134":29,"C":-15,"G":-15,"O":-15,"Q":-15,"\u0152":-15,"\u0106":-15,"\u010c":-15,"\u0108":-15,"\u010a":-15,"\u011e":-15,"\u011c":-15,"\u0122":-15,"\u0120":-15,"\u014e":-15,"\u0150":-15,"\u014c":-15,"V":4,"W":4,"\u0174":4,"X":24,"Y":44,"\u0178":44,"g":-20,"\u011f":-20,"\u011d":-20,"\u0123":-20,"\u0121":-20,"c":-20,"d":-20,"e":-20,"o":-20,"q":-20,"\u0153":-20,"\u0107":-20,"\u010d":-20,"\u0109":-20,"\u010b":-20,"\u010f":-20,"\u0111":-20,"\u0115":-20,"\u011b":-20,"\u0117":-20,"\u0113":-20,"\u0119":-20,"\u014f":-20,"\u0151":-20,"\u014d":-20,"v":8,"w":8,"y":8,"\u0175":8}},".":{"d":"135,-34v0,24,-16,45,-42,45v-23,0,-39,-21,-39,-45v0,-26,17,-45,41,-45v24,0,40,19,40,45","w":174,"k":{"\"":90,"'":90}},"\/":{"d":"35,40r-46,0r318,-725r49,0","w":351},"0":{"d":"450,-334v0,233,-84,345,-213,345v-102,0,-199,-100,-199,-333v0,-236,104,-339,213,-339v114,0,199,103,199,327xm88,-329v0,181,58,301,155,300v108,0,157,-123,157,-300v0,-170,-46,-292,-156,-292v-94,0,-156,120,-156,292"},"1":{"d":"236,0r0,-601v-38,18,-71,42,-108,62r-12,-38r123,-73r44,0r0,650r-47,0"},"2":{"d":"433,0r-387,0r0,-29r60,-62v181,-177,260,-269,260,-381v0,-74,-31,-147,-141,-147v-62,0,-110,32,-138,56r-19,-33v42,-38,99,-65,166,-65v135,0,181,102,181,179v0,128,-94,230,-256,392v-16,16,-33,31,-46,50r320,0r0,40"},"3":{"d":"45,-33r19,-38v23,17,78,41,140,41v133,0,166,-92,164,-150v-4,-123,-110,-160,-232,-153r0,-40v105,7,206,-25,206,-131v0,-60,-34,-116,-126,-116v-50,0,-97,23,-126,45r-19,-35v31,-25,90,-51,151,-51v123,0,170,77,170,151v0,68,-47,122,-121,156v81,16,147,78,147,172v0,97,-70,193,-220,193v-66,0,-125,-23,-153,-44"},"4":{"d":"366,0r-46,0r0,-191r-310,0r0,-32r317,-427r39,0r0,419r99,0r0,40r-99,0r0,191xm67,-231r253,0r0,-263v0,-31,1,-61,3,-90r-3,-1v-77,135,-170,229,-253,354"},"5":{"d":"129,-399v148,-21,282,39,282,192v0,131,-99,218,-219,218v-67,0,-122,-21,-150,-42r19,-38v25,17,74,39,134,39v94,0,169,-70,168,-168v-1,-94,-59,-165,-188,-165v-39,0,-70,3,-93,7r42,-294r282,0r0,42r-245,0"},"6":{"d":"390,-661r0,44v-184,0,-289,137,-303,284r2,0v30,-48,89,-91,168,-91v119,0,194,88,194,209v0,113,-71,226,-203,226v-117,0,-211,-95,-211,-273v0,-245,127,-381,353,-399xm401,-211v0,-220,-316,-222,-316,-40v0,131,59,222,167,222v88,0,149,-72,149,-182"},"7":{"d":"62,-650r380,0r0,34r-293,616r-47,0r290,-610r-330,0r0,-40"},"8":{"d":"66,-494v0,-98,80,-167,185,-167v109,0,173,73,173,156v0,54,-26,116,-115,156r0,4v92,36,138,97,138,172v0,110,-96,184,-204,184v-116,0,-203,-74,-203,-173v0,-84,52,-145,136,-181r0,-4v-79,-34,-110,-91,-110,-147xm90,-172v0,77,54,143,153,143v95,0,155,-58,155,-137v0,-92,-62,-133,-167,-163v-92,27,-141,86,-141,157xm375,-501v0,-59,-37,-121,-129,-121v-86,0,-133,56,-133,121v-1,78,55,117,143,139v69,-24,119,-68,119,-139"},"9":{"d":"100,11r0,-44v184,2,278,-108,303,-287r-3,1v-41,53,-98,84,-168,84v-121,0,-185,-95,-185,-197v0,-120,82,-229,208,-229v112,0,196,95,196,271v0,147,-52,247,-111,308v-61,62,-141,93,-240,93xm241,-276v79,0,147,-41,163,-113v0,-137,-51,-232,-158,-232v-89,0,-151,79,-151,186v0,96,60,159,146,159"},":":{"d":"135,-406v0,24,-16,45,-42,45v-23,0,-39,-21,-39,-45v0,-26,17,-45,41,-45v24,0,40,19,40,45xm135,-34v0,24,-16,45,-42,45v-23,0,-39,-21,-39,-45v0,-26,17,-45,41,-45v24,0,40,19,40,45","w":174},";":{"d":"64,120r-38,5v16,-42,43,-150,52,-212r62,-10v-17,75,-60,189,-76,217xm144,-406v0,24,-16,45,-42,45v-23,0,-39,-21,-39,-45v0,-26,17,-45,41,-45v24,0,40,19,40,45","w":174},"<":{"d":"71,-248r0,-35r454,-248r0,46r-408,219r0,2r408,218r0,46","w":596},"=":{"d":"556,-345r-516,0r0,-40r516,0r0,40xm556,-155r-516,0r0,-40r516,0r0,40","w":596},">":{"d":"525,-283r0,35r-454,248r0,-46r408,-218r0,-2r-408,-219r0,-46","w":596},"?":{"d":"188,-175r-44,0v-16,-76,0,-134,60,-209v51,-64,77,-105,77,-157v0,-61,-37,-102,-109,-102v-36,0,-77,12,-101,32r-19,-35v33,-26,88,-40,129,-40v104,0,151,70,151,142v0,62,-33,111,-86,177v-57,71,-67,112,-58,192xm205,-34v0,24,-16,45,-42,45v-23,0,-39,-21,-39,-45v0,-26,17,-45,41,-45v24,0,40,19,40,45","w":381},"@":{"d":"452,-258r25,-124v-128,-44,-249,65,-247,195v0,48,26,84,77,84v70,0,133,-91,145,-155xm496,28r14,34v-211,115,-472,-8,-472,-269v0,-207,140,-386,360,-386v173,0,283,123,283,289v0,153,-85,238,-170,238v-35,0,-74,-27,-67,-94r-3,0v-39,64,-86,94,-150,94v-54,0,-105,-46,-105,-122v0,-160,172,-292,338,-222r-36,179v-18,87,-4,126,33,127v56,2,115,-75,115,-191v0,-155,-89,-261,-245,-261v-169,0,-308,135,-308,346v0,166,111,276,258,276v61,0,114,-14,155,-38","w":717},"A":{"d":"429,-236r-267,0r-83,236r-49,0r244,-674r46,0r243,674r-49,0xm177,-276r237,0r-82,-225v-16,-47,-25,-81,-35,-119r-2,0v-30,118,-79,232,-118,344","w":585,"k":{"T":73,"\u0166":73,"\u0164":73,"\u021a":73,"J":-22,"\u0134":-22,"M":6,"C":9,"G":9,"O":9,"Q":9,"\u0152":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"U":23,"\u016c":23,"\u0170":23,"\u016a":23,"\u0172":23,"\u016e":23,"\u0168":23,"V":50,"W":50,"\u0174":50,"X":7,"Y":70,"\u0178":70,"a":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"f":4,"g":11,"\u011f":11,"\u011d":11,"\u0123":11,"\u0121":11,"c":10,"d":10,"e":10,"o":10,"q":10,"\u0153":10,"\u0107":10,"\u010d":10,"\u0109":10,"\u010b":10,"\u010f":10,"\u0111":10,"\u0115":10,"\u011b":10,"\u0117":10,"\u0113":10,"\u0119":10,"\u014f":10,"\u0151":10,"\u014d":10,"s":8,"\u0161":8,"\u015b":8,"\uf6c2":8,"\u015d":8,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"v":15,"w":15,"y":15,"\u0175":15,"z":-21,"\u017e":-21,"\u017a":-21,"\u017c":-21,"\"":66,"'":66}},"B":{"d":"462,-188v0,143,-109,194,-264,193v-51,0,-90,-4,-117,-5r0,-664v38,-9,86,-15,136,-15v134,0,218,46,218,166v0,69,-49,127,-116,150r0,3v57,13,143,62,143,172xm129,-632r0,254r98,0v98,0,159,-58,159,-132v0,-95,-72,-129,-172,-129v-44,0,-70,3,-85,7xm129,-339r0,299v130,17,285,-3,283,-147v-2,-136,-136,-161,-283,-152","w":505,"k":{"V":-13,"W":-13,"\u0174":-13,"v":-10,"w":-10,"y":-10,"\u0175":-10,",":11,".":11}},"C":{"d":"524,-62r14,38v-34,17,-99,34,-182,34v-163,0,-319,-104,-319,-343v0,-200,129,-351,342,-351v86,0,136,19,156,29r-15,40v-34,-17,-83,-29,-140,-29v-182,0,-293,118,-293,312v0,183,104,301,285,301v57,0,113,-12,152,-31","w":570,"k":{"\u0152":16,"T":-38,"\u0166":-38,"\u0164":-38,"\u021a":-38,"C":16,"G":16,"O":16,"Q":16,"\u0106":16,"\u010c":16,"\u0108":16,"\u010a":16,"\u011e":16,"\u011c":16,"\u0122":16,"\u0120":16,"\u014e":16,"\u0150":16,"\u014c":16,"V":-14,"W":-14,"\u0174":-14,"a":4,"\u0103":4,"\u0101":4,"\u0105":4,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"u":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"v":12,"w":12,"y":12,"\u0175":12,")":-22,"]":-22,"}":-22}},"D":{"d":"610,-353v0,221,-135,358,-379,358v-52,0,-101,-1,-150,-5r0,-664v52,-9,109,-15,173,-15v230,1,356,108,356,326xm129,-628r0,588v27,4,66,5,109,5v216,0,323,-121,323,-316v0,-171,-93,-288,-310,-288v-52,0,-93,5,-122,11","w":647,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"E":{"d":"398,-375r0,40r-269,0r0,295r301,0r0,40r-349,0r0,-674r333,0r0,40r-285,0r0,259r269,0","w":466,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"F":{"d":"81,0r0,-674r333,0r0,40r-285,0r0,268r262,0r0,40r-262,0r0,326r-48,0","w":462,"k":{"J":95,"\u0134":95,"M":20,"A":85,"\u0102":85,"\u0100":85,"\u0104":85,"a":49,"\u0103":49,"\u0101":49,"\u0105":49,"g":21,"\u011f":21,"\u011d":21,"\u0123":21,"\u0121":21,"c":34,"d":34,"e":34,"o":34,"q":34,"\u0153":34,"\u0107":34,"\u010d":34,"\u0109":34,"\u010b":34,"\u010f":34,"\u0111":34,"\u0115":34,"\u011b":34,"\u0117":34,"\u0113":34,"\u0119":34,"\u014f":34,"\u0151":34,"\u014d":34,"u":39,"\u016d":39,"\u0171":39,"\u016b":39,"\u0173":39,"\u016f":39,"\u0169":39,"v":22,"w":22,"y":22,"\u0175":22,"b":18,"h":18,"k":18,"l":18,"\u0142":18,"\u0127":18,"\u0125":18,"\u0137":18,"\u013a":18,"\u013e":18,"\u013c":18,"\u0140":18,"i":30,"m":30,"n":30,"p":30,"r":30,"\u0131":30,"\u014b":30,"\u012d":30,"\u0133":30,"\u012b":30,"\u012f":30,"\u0129":30,"\u0144":30,"\u0148":30,"\u0146":30,"\u0155":30,"\u0159":30,"\u0157":30,"\u0138":30,":":10,";":10,",":101,".":101}},"G":{"d":"368,7v-188,0,-331,-131,-331,-342v0,-187,123,-346,352,-346v72,0,131,17,157,30r-16,39v-35,-17,-79,-29,-144,-29v-185,0,-299,121,-299,304v0,190,111,304,289,304v71,0,116,-10,141,-24r0,-238r-156,0r0,-39r204,0r0,305v-34,14,-105,36,-197,36","w":624,"k":{"a":-8,"\u0103":-8,"\u0101":-8,"\u0105":-8,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"v":-5,"w":-5,"y":-5,"\u0175":-5}},"H":{"d":"81,-674r48,0r0,297r372,0r0,-297r48,0r0,674r-48,0r0,-337r-372,0r0,337r-48,0r0,-674","w":630,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"I":{"d":"81,-674r48,0r0,674r-48,0r0,-674","w":211,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"J":{"d":"223,-219r0,-455r48,0r0,466v-1,210,-127,244,-264,203r10,-38v117,33,206,10,206,-176","w":345,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"\u0153":-4,"\u0107":-4,"\u010d":-4,"\u0109":-4,"\u010b":-4,"\u010f":-4,"\u0111":-4,"\u0115":-4,"\u011b":-4,"\u0117":-4,"\u0113":-4,"\u0119":-4,"\u014f":-4,"\u0151":-4,"\u014d":-4,"v":-15,"w":-15,"y":-15,"\u0175":-15,")":-60,"]":-60,"}":-60,",":15,".":15}},"K":{"d":"81,0r0,-674r48,0r0,341r3,0v20,-26,40,-49,58,-70r239,-271r58,0r-256,286r280,388r-57,0r-256,-355r-69,76r0,279r-48,0","w":498,"k":{"T":-30,"\u0166":-30,"\u0164":-30,"\u021a":-30,"J":-44,"\u0134":-44,"C":6,"G":6,"O":6,"Q":6,"\u0152":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"V":-24,"W":-24,"\u0174":-24,"A":-9,"\u0102":-9,"\u0100":-9,"\u0104":-9,"Z":-22,"\u017d":-22,"\u0179":-22,"\u017b":-22,"a":-25,"\u0103":-25,"\u0101":-25,"\u0105":-25,"c":-11,"d":-11,"e":-11,"o":-11,"q":-11,"\u0153":-11,"\u0107":-11,"\u010d":-11,"\u0109":-11,"\u010b":-11,"\u010f":-11,"\u0111":-11,"\u0115":-11,"\u011b":-11,"\u0117":-11,"\u0113":-11,"\u0119":-11,"\u014f":-11,"\u0151":-11,"\u014d":-11,"b":-16,"h":-16,"k":-16,"l":-16,"\u0142":-16,"\u0127":-16,"\u0125":-16,"\u0137":-16,"\u013a":-16,"\u013e":-16,"\u013c":-16,"\u0140":-16,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,":":-31,";":-31,"\u00ad":15,")":-33,"]":-33,"}":-33,",":-22,".":-22}},"L":{"d":"81,0r0,-674r48,0r0,634r300,0r0,40r-348,0","w":448,"k":{"T":78,"\u0166":78,"\u0164":78,"\u021a":78,"C":39,"G":39,"O":39,"Q":39,"\u0152":39,"\u0106":39,"\u010c":39,"\u0108":39,"\u010a":39,"\u011e":39,"\u011c":39,"\u0122":39,"\u0120":39,"\u014e":39,"\u0150":39,"\u014c":39,"U":40,"\u016c":40,"\u0170":40,"\u016a":40,"\u0172":40,"\u016e":40,"\u0168":40,"V":56,"W":56,"\u0174":56,"Y":80,"\u0178":80,"c":17,"d":17,"e":17,"o":17,"q":17,"\u0153":17,"\u0107":17,"\u010d":17,"\u0109":17,"\u010b":17,"\u010f":17,"\u0111":17,"\u0115":17,"\u011b":17,"\u0117":17,"\u0113":17,"\u0119":17,"\u014f":17,"\u0151":17,"\u014d":17,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":17,"\u016d":17,"\u0171":17,"\u016b":17,"\u0173":17,"\u016f":17,"\u0169":17,"v":21,"w":21,"y":21,"\u0175":21,"\u00ad":58,"\"":96,"'":96}},"M":{"d":"670,0r-20,-319v-6,-101,-14,-225,-14,-299r-2,0v-25,73,-52,151,-91,252r-142,366r-33,0r-133,-358v-38,-105,-67,-186,-87,-260r-2,0v-2,79,-7,196,-15,308r-21,310r-47,0r49,-674r55,0r145,389v32,85,55,153,74,218r3,0v56,-188,155,-419,226,-607r57,0r45,674r-47,0","w":778,"k":{"T":8,"\u0166":8,"\u0164":8,"\u021a":8,"A":14,"\u0102":14,"\u0100":14,"\u0104":14,"a":-8,"\u0103":-8,"\u0101":-8,"\u0105":-8,"c":-8,"d":-8,"e":-8,"o":-8,"q":-8,"\u0153":-8,"\u0107":-8,"\u010d":-8,"\u0109":-8,"\u010b":-8,"\u010f":-8,"\u0111":-8,"\u0115":-8,"\u011b":-8,"\u0117":-8,"\u0113":-8,"\u0119":-8,"\u014f":-8,"\u0151":-8,"\u014d":-8,"u":-4,"\u016d":-4,"\u0171":-4,"\u016b":-4,"\u0173":-4,"\u016f":-4,"\u0169":-4,"v":-11,"w":-11,"y":-11,"\u0175":-11,"i":-16,"m":-16,"n":-16,"p":-16,"r":-16,"\u0131":-16,"\u014b":-16,"\u012d":-16,"\u0133":-16,"\u012b":-16,"\u012f":-16,"\u0129":-16,"\u0144":-16,"\u0148":-16,"\u0146":-16,"\u0155":-16,"\u0159":-16,"\u0157":-16,"\u0138":-16,"j":-15,"\u0135":-15,"\u00ad":-8}},"N":{"d":"128,0r-46,0r0,-674r45,0r262,398v55,84,94,147,127,212r2,-1v-14,-187,-6,-407,-8,-609r46,0r0,674r-44,0r-257,-392v-50,-77,-96,-148,-131,-218r-2,1v5,83,6,156,6,268r0,341","w":638,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"O":{"d":"634,-344v0,238,-146,355,-302,355v-166,0,-295,-131,-295,-341v0,-221,134,-355,303,-355v170,0,294,133,294,341xm337,-645v-336,-1,-329,617,-2,616v160,0,249,-145,249,-312v0,-142,-78,-304,-247,-304","w":671,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"P":{"d":"456,-490v4,170,-158,233,-327,202r0,288r-48,0r0,-666v39,-7,88,-13,145,-13v141,1,227,58,230,189xm129,-631r0,301v23,8,53,10,86,10v121,0,193,-58,193,-165v0,-106,-77,-154,-184,-154v-44,0,-77,4,-95,8","w":502,"k":{"\u0127":8,"J":72,"\u0134":72,"M":11,"V":-8,"W":-8,"\u0174":-8,"X":4,"A":99,"\u0102":99,"\u0100":99,"\u0104":99,"Z":43,"\u017d":43,"\u0179":43,"\u017b":43,"a":30,"\u0103":30,"\u0101":30,"\u0105":30,"g":24,"\u011f":24,"\u011d":24,"\u0123":24,"\u0121":24,"c":26,"d":26,"e":26,"o":26,"q":26,"\u0153":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"s":22,"\u0161":22,"\u015b":22,"\uf6c2":22,"\u015d":22,"u":18,"\u016d":18,"\u0171":18,"\u016b":18,"\u0173":18,"\u016f":18,"\u0169":18,"b":8,"h":8,"k":8,"l":8,"\u0142":8,"\u0125":8,"\u0137":8,"\u013a":8,"\u013e":8,"\u013c":8,"\u0140":8,"i":21,"m":21,"n":21,"p":21,"r":21,"\u0131":21,"\u014b":21,"\u012d":21,"\u0133":21,"\u012b":21,"\u012f":21,"\u0129":21,"\u0144":21,"\u0148":21,"\u0146":21,"\u0155":21,"\u0159":21,"\u0157":21,"\u0138":21,":":11,";":11,"\u00ad":20,",":138,".":138}},"Q":{"d":"626,88r-291,-77v-165,-4,-298,-125,-298,-340v0,-225,134,-356,304,-356v169,0,293,133,293,341v0,186,-86,298,-213,338r0,4v76,17,159,36,220,46xm339,-645v-338,-1,-332,617,-5,616v160,0,250,-145,250,-312v0,-142,-78,-304,-245,-304","w":671,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"R":{"d":"227,-679v144,-1,223,52,229,176v4,93,-58,146,-132,178v54,17,88,68,104,143v23,105,36,155,50,182r-49,0v-11,-20,-25,-79,-43,-164v-21,-97,-63,-145,-152,-145r-105,0r0,309r-48,0r0,-665v42,-9,99,-14,146,-14xm129,-631r0,283r107,0v104,0,172,-58,172,-147v0,-103,-76,-145,-182,-145v-46,0,-80,5,-97,9","w":505,"k":{"T":-15,"\u0166":-15,"\u0164":-15,"\u021a":-15,"C":-8,"G":-8,"O":-8,"Q":-8,"\u0152":-8,"\u0106":-8,"\u010c":-8,"\u0108":-8,"\u010a":-8,"\u011e":-8,"\u011c":-8,"\u0122":-8,"\u0120":-8,"\u014e":-8,"\u0150":-8,"\u014c":-8,"V":-29,"W":-29,"\u0174":-29,"X":-4,"Y":6,"\u0178":6,"a":-14,"\u0103":-14,"\u0101":-14,"\u0105":-14,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"t":-24,"\u0167":-24,"\u0165":-24,"\u021b":-24,"v":-20,"w":-20,"y":-20,"\u0175":-20,"b":-10,"h":-10,"k":-10,"l":-10,"\u0142":-10,"\u0127":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013e":-10,"\u013c":-10,"\u0140":-10,"i":-11,"m":-11,"n":-11,"p":-11,"r":-11,"\u0131":-11,"\u014b":-11,"\u012d":-11,"\u0133":-11,"\u012b":-11,"\u012f":-11,"\u0129":-11,"\u0144":-11,"\u0148":-11,"\u0146":-11,"\u0155":-11,"\u0159":-11,"\u0157":-11,"\u0138":-11}},"S":{"d":"42,-35r18,-39v38,26,91,44,147,44v101,0,163,-57,163,-140v0,-75,-39,-121,-137,-157v-108,-40,-173,-95,-173,-186v0,-99,81,-171,196,-171v63,0,111,16,134,31r-18,41v-18,-13,-61,-32,-119,-32v-109,0,-146,70,-146,123v0,74,43,111,140,150v111,44,170,96,170,196v0,98,-70,185,-214,185v-58,0,-126,-19,-161,-45","w":464,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5}},"T":{"d":"209,0r0,-634r-220,0r0,-40r488,0r0,40r-220,0r0,634r-48,0","w":465,"k":{"\u0129":40,"\u012f":40,"\u012b":40,"\u0133":40,"\u012d":40,"\u0131":40,"i":40,"T":-47,"\u0166":-47,"\u0164":-47,"\u021a":-47,"J":38,"\u0134":38,"C":26,"G":26,"O":26,"Q":26,"\u0152":26,"\u0106":26,"\u010c":26,"\u0108":26,"\u010a":26,"\u011e":26,"\u011c":26,"\u0122":26,"\u0120":26,"\u014e":26,"\u0150":26,"\u014c":26,"V":-48,"W":-48,"\u0174":-48,"X":-24,"Y":-40,"\u0178":-40,"A":76,"\u0102":76,"\u0100":76,"\u0104":76,"S":4,"\u0160":4,"\u015a":4,"\uf6c1":4,"\u015c":4,"a":62,"\u0103":62,"\u0101":62,"\u0105":62,"g":66,"\u011f":66,"\u011d":66,"\u0123":66,"\u0121":66,"c":66,"d":66,"e":66,"o":66,"q":66,"\u0153":66,"\u0107":66,"\u010d":66,"\u0109":66,"\u010b":66,"\u010f":66,"\u0111":66,"\u0115":66,"\u011b":66,"\u0117":66,"\u0113":66,"\u0119":66,"\u014f":66,"\u0151":66,"\u014d":66,"s":41,"\u0161":41,"\u015b":41,"\uf6c2":41,"\u015d":41,"u":40,"\u016d":40,"\u0171":40,"\u016b":40,"\u0173":40,"\u016f":40,"\u0169":40,"v":33,"w":33,"y":33,"\u0175":33,"z":47,"\u017e":47,"\u017a":47,"\u017c":47,"b":4,"h":4,"k":4,"l":4,"\u0142":4,"\u0127":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"m":40,"n":40,"p":40,"r":40,"\u014b":40,"\u0144":40,"\u0148":40,"\u0146":40,"\u0155":40,"\u0159":40,"\u0157":40,"\u0138":40,"x":46,":":20,";":20,"\u00ad":46,")":-78,"]":-78,"}":-78,"\"":-22,"'":-22,",":45,".":45}},"U":{"d":"81,-674r48,0r0,407v0,172,80,238,179,238v112,0,189,-72,189,-238r0,-407r48,0r0,403v0,207,-112,282,-239,282v-118,0,-225,-68,-225,-275r0,-410","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"V":{"d":"269,0r-45,0r-224,-674r50,0r119,361v32,98,60,183,79,258r3,0v56,-195,149,-423,217,-619r51,0","w":509,"k":{"\u012d":9,"T":-40,"\u0166":-40,"\u0164":-40,"\u021a":-40,"J":12,"\u0134":12,"C":-5,"G":-5,"O":-5,"Q":-5,"\u0152":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"V":-22,"W":-22,"\u0174":-22,"A":60,"\u0102":60,"\u0100":60,"\u0104":60,"S":-7,"\u0160":-7,"\u015a":-7,"\uf6c1":-7,"\u015c":-7,"a":28,"\u0103":28,"\u0101":28,"\u0105":28,"g":10,"\u011f":10,"\u011d":10,"\u0123":10,"\u0121":10,"c":26,"d":26,"e":26,"o":26,"q":26,"\u0153":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"s":16,"\u0161":16,"\u015b":16,"\uf6c2":16,"\u015d":16,"t":-19,"\u0167":-19,"\u0165":-19,"\u021b":-19,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"z":5,"\u017e":5,"\u017a":5,"\u017c":5,"i":9,"m":9,"n":9,"p":9,"r":9,"\u0131":9,"\u014b":9,"\u0133":9,"\u012b":9,"\u012f":9,"\u0129":9,"\u0144":9,"\u0148":9,"\u0146":9,"\u0155":9,"\u0159":9,"\u0157":9,"\u0138":9,":":12,";":12,"\u00ad":8,")":-71,"]":-71,"}":-71,"\"":-22,"'":-22,",":46,".":46}},"W":{"d":"238,0r-45,0r-178,-674r49,0r98,380v22,87,43,168,56,231r2,0v42,-188,120,-419,172,-611r46,0r100,377v24,81,40,169,57,234v15,-73,36,-146,61,-232r111,-379r49,0r-202,674r-46,0r-101,-388v-27,-99,-43,-165,-52,-228r-2,0v-39,184,-123,427,-175,616","w":820,"k":{"\u012d":9,"T":-40,"\u0166":-40,"\u0164":-40,"\u021a":-40,"J":12,"\u0134":12,"C":-5,"G":-5,"O":-5,"Q":-5,"\u0152":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"V":-22,"W":-22,"\u0174":-22,"A":60,"\u0102":60,"\u0100":60,"\u0104":60,"S":-7,"\u0160":-7,"\u015a":-7,"\uf6c1":-7,"\u015c":-7,"a":28,"\u0103":28,"\u0101":28,"\u0105":28,"g":10,"\u011f":10,"\u011d":10,"\u0123":10,"\u0121":10,"c":26,"d":26,"e":26,"o":26,"q":26,"\u0153":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"s":16,"\u0161":16,"\u015b":16,"\uf6c2":16,"\u015d":16,"t":-19,"\u0167":-19,"\u0165":-19,"\u021b":-19,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"z":5,"\u017e":5,"\u017a":5,"\u017c":5,"i":9,"m":9,"n":9,"p":9,"r":9,"\u0131":9,"\u014b":9,"\u0133":9,"\u012b":9,"\u012f":9,"\u0129":9,"\u0144":9,"\u0148":9,"\u0146":9,"\u0155":9,"\u0159":9,"\u0157":9,"\u0138":9,":":12,";":12,"\u00ad":8,")":-71,"]":-71,"}":-71,"\"":-22,"'":-22,",":46,".":46}},"X":{"d":"515,0r-55,0r-191,-306r-2,0r-182,306r-55,0r214,-341r-205,-333r54,0r178,296r2,0r184,-296r56,0r-215,328","w":546,"k":{"T":-9,"\u0166":-9,"\u0164":-9,"\u021a":-9,"C":24,"G":24,"O":24,"Q":24,"\u0152":24,"\u0106":24,"\u010c":24,"\u0108":24,"\u010a":24,"\u011e":24,"\u011c":24,"\u0122":24,"\u0120":24,"\u014e":24,"\u0150":24,"\u014c":24,"V":-9,"W":-9,"\u0174":-9,"X":18,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"a":4,"\u0103":4,"\u0101":4,"\u0105":4,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":8,"w":8,"y":8,"\u0175":8,"\u00ad":24}},"Y":{"d":"277,0r-48,0r0,-292r-214,-382r53,0r188,346r2,0v53,-111,131,-236,193,-346r53,0r-227,383r0,291","w":503,"k":{"\u012d":8,"T":-55,"\u0166":-55,"\u0164":-55,"\u021a":-55,"J":45,"\u0134":45,"M":4,"C":29,"G":29,"O":29,"Q":29,"\u0152":29,"\u0106":29,"\u010c":29,"\u0108":29,"\u010a":29,"\u011e":29,"\u011c":29,"\u0122":29,"\u0120":29,"\u014e":29,"\u0150":29,"\u014c":29,"V":-35,"W":-35,"\u0174":-35,"X":-9,"Y":-20,"\u0178":-20,"A":74,"\u0102":74,"\u0100":74,"\u0104":74,"S":4,"\u0160":4,"\u015a":4,"\uf6c1":4,"\u015c":4,"a":56,"\u0103":56,"\u0101":56,"\u0105":56,"g":15,"\u011f":15,"\u011d":15,"\u0123":15,"\u0121":15,"c":56,"d":56,"e":56,"o":56,"q":56,"\u0153":56,"\u0107":56,"\u010d":56,"\u0109":56,"\u010b":56,"\u010f":56,"\u0111":56,"\u0115":56,"\u011b":56,"\u0117":56,"\u0113":56,"\u0119":56,"\u014f":56,"\u0151":56,"\u014d":56,"s":44,"\u0161":44,"\u015b":44,"\uf6c2":44,"\u015d":44,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":42,"\u016d":42,"\u0171":42,"\u016b":42,"\u0173":42,"\u016f":42,"\u0169":42,"v":15,"w":15,"y":15,"\u0175":15,"z":10,"\u017e":10,"\u017a":10,"\u017c":10,"b":5,"h":5,"k":5,"l":5,"\u0142":5,"\u0127":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013e":5,"\u013c":5,"\u0140":5,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,"x":8,":":22,";":22,"\u00ad":44,")":-70,"]":-70,"}":-70,"\"":-6,"'":-6,",":81,".":81}},"Z":{"d":"34,0r0,-31r406,-600r0,-3r-373,0r0,-40r434,0r0,32r-407,599r0,3r412,0r0,40r-472,0","w":539,"k":{"C":21,"G":21,"O":21,"Q":21,"\u0152":21,"\u0106":21,"\u010c":21,"\u0108":21,"\u010a":21,"\u011e":21,"\u011c":21,"\u0122":21,"\u0120":21,"\u014e":21,"\u0150":21,"\u014c":21,"X":8,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":14,"d":14,"e":14,"o":14,"q":14,"\u0153":14,"\u0107":14,"\u010d":14,"\u0109":14,"\u010b":14,"\u010f":14,"\u0111":14,"\u0115":14,"\u011b":14,"\u0117":14,"\u0113":14,"\u0119":14,"\u014f":14,"\u0151":14,"\u014d":14,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":5,"w":5,"y":5,"\u0175":5,"\u00ad":38}},"[":{"d":"261,112r-171,0r0,-798r171,0r0,37r-127,0r0,724r127,0r0,37","w":265,"k":{"T":-63,"\u0166":-63,"\u0164":-63,"\u021a":-63,"J":-21,"\u0134":-21,"C":5,"G":5,"O":5,"Q":5,"\u0152":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"V":-64,"W":-64,"\u0174":-64,"X":-15,"Y":-48,"\u0178":-48,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"j":-59,"\u0135":-59}},"\\":{"d":"359,40r-48,0r-316,-725r48,0","w":348},"]":{"d":"6,-686r170,0r0,798r-170,0r0,-37r126,0r0,-724r-126,0r0,-37","w":265},"^":{"d":"525,-196r-46,0r-179,-408r-2,0r-180,408r-46,0r205,-454r43,0","w":596},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"a":{"d":"214,-491v254,0,134,269,173,491r-44,0v-4,-22,-1,-51,-9,-69v-24,37,-77,80,-154,80v-97,0,-141,-68,-141,-132v0,-111,97,-178,293,-176v1,-63,-3,-154,-123,-154v-42,0,-86,11,-121,36r-15,-35v44,-29,98,-41,141,-41xm185,-29v92,0,147,-52,147,-125r0,-103v-105,-3,-243,13,-243,128v0,69,46,100,96,100","w":454},"b":{"d":"80,-112r0,-599r48,0r0,321r2,0v32,-62,91,-101,176,-101v121,0,205,102,205,246v0,171,-109,256,-214,256v-80,0,-132,-36,-174,-97r-4,86r-43,0v3,-34,4,-76,4,-112xm294,-451v-81,0,-161,66,-166,170r0,96v5,97,78,156,162,156v110,0,173,-90,173,-215v0,-110,-60,-207,-169,-207","w":552,"k":{"T":35,"\u0166":35,"\u0164":35,"\u021a":35,"v":5,"w":5,"y":5,"\u0175":5,"z":6,"\u017e":6,"\u017a":6,"\u017c":6,"x":8,"\u00ad":-14,"\"":5,"'":5,",":18,".":18}},"c":{"d":"399,-59r13,38v-21,10,-71,31,-141,31v-138,0,-230,-101,-230,-245v0,-153,104,-256,247,-256v59,0,108,17,126,30r-17,39v-23,-14,-60,-28,-113,-28v-129,0,-195,98,-195,211v0,126,79,208,190,208v57,0,94,-16,120,-28","w":446,"k":{"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"t":-11,"\u0167":-11,"\u0165":-11,"\u021b":-11,"v":-19,"w":-19,"y":-19,"\u0175":-19,",":11,".":11}},"d":{"d":"416,-711r48,0r0,600v0,35,1,77,4,111r-43,0v-3,-29,1,-66,-6,-91v-25,53,-82,102,-171,102v-119,0,-207,-99,-207,-242v-1,-160,98,-260,216,-260v85,0,134,46,159,85r0,-305xm257,-29v79,0,156,-63,159,-165r0,-96v-1,-96,-64,-161,-156,-161v-105,0,-171,91,-171,215v0,108,54,207,168,207","w":544,"k":{",":11,".":11}},"e":{"d":"442,-245r-354,0v0,153,84,214,183,214v70,0,106,-14,133,-27r12,37v-18,10,-67,31,-151,31v-138,0,-224,-100,-224,-241v0,-160,92,-260,216,-260v157,0,187,148,187,217v0,13,0,20,-2,29xm91,-283r303,0v1,-67,-27,-168,-143,-168v-106,0,-151,94,-160,168","w":485,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"f":{"d":"84,-480v-10,-134,43,-240,160,-241v31,0,57,8,72,17r-15,36v-14,-7,-32,-13,-61,-13v-99,0,-110,98,-108,201r128,0r0,39r-128,0r0,441r-48,0r0,-441r-69,0r0,-39r69,0","w":262,"k":{"g":15,"\u011f":15,"\u011d":15,"\u0123":15,"\u0121":15,"c":15,"d":15,"e":15,"o":15,"q":15,"\u0153":15,"\u0107":15,"\u010d":15,"\u0109":15,"\u010b":15,"\u010f":15,"\u0111":15,"\u0115":15,"\u011b":15,"\u0117":15,"\u0113":15,"\u0119":15,"\u014f":15,"\u0151":15,"\u014d":15,"s":11,"\u0161":11,"\u015b":11,"\uf6c2":11,"\u015d":11,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,":":-34,";":-34,")":-122,"]":-122,"}":-122,"\"":-65,"'":-65,",":30,".":30}},"g":{"d":"468,-480v-8,123,-4,278,-4,410v0,123,-26,185,-66,222v-83,77,-226,72,-316,15r17,-38v34,22,81,40,143,40v101,0,174,-52,174,-194v0,-21,4,-51,-2,-68v-25,49,-81,93,-167,93v-121,0,-206,-105,-206,-236v0,-167,110,-255,216,-255v98,0,139,55,164,92r3,-81r44,0xm259,-40v77,0,157,-61,157,-159v0,-48,7,-104,-6,-143v-19,-57,-70,-109,-149,-109v-102,0,-172,83,-172,210v0,108,57,201,170,201","w":544,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"f":-6,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u012d":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,",":14,".":14}},"h":{"d":"280,-449v-81,0,-151,61,-151,156r0,293r-48,0r0,-711r48,0r0,317r2,0v27,-52,86,-96,162,-97v45,0,167,23,167,202r0,289r-48,0r0,-284v0,-86,-34,-165,-132,-165","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"i":{"d":"129,0r-48,0r0,-480r48,0r0,480xm143,-617v0,22,-15,41,-40,41v-22,0,-37,-19,-37,-41v0,-22,17,-42,39,-42v22,0,38,19,38,42","w":209},"j":{"d":"-42,209r-7,-39v42,-2,78,-15,100,-40v25,-30,36,-68,36,-195r0,-415r48,0r0,447v0,86,-10,145,-51,190v-35,38,-95,51,-126,52xm149,-617v0,21,-14,41,-40,41v-22,0,-37,-20,-37,-41v0,-22,17,-42,40,-42v22,0,37,20,37,42","w":214,"k":{",":11,".":11}},"k":{"d":"128,-711r0,462v16,-12,32,-37,48,-53r170,-178r58,0r-194,199r221,281r-58,0r-196,-252r-49,52r0,200r-48,0r0,-711r48,0","w":423,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"a":-26,"\u0103":-26,"\u0101":-26,"\u0105":-26,"g":-11,"\u011f":-11,"\u011d":-11,"\u0123":-11,"\u0121":-11,"c":-11,"d":-11,"e":-11,"o":-11,"q":-11,"\u0153":-11,"\u0107":-11,"\u010d":-11,"\u0109":-11,"\u010b":-11,"\u010f":-11,"\u0111":-11,"\u0115":-11,"\u011b":-11,"\u0117":-11,"\u0113":-11,"\u0119":-11,"\u014f":-11,"\u0151":-11,"\u014d":-11,"u":-7,"\u016d":-7,"\u0171":-7,"\u016b":-7,"\u0173":-7,"\u016f":-7,"\u0169":-7,"v":-19,"w":-19,"y":-19,"\u0175":-19,"b":-22,"h":-22,"k":-22,"l":-22,"\u0142":-22,"\u0127":-22,"\u0125":-22,"\u0137":-22,"\u013a":-22,"\u013e":-22,"\u013c":-22,"\u0140":-22,"i":-22,"m":-22,"n":-22,"p":-22,"r":-22,"\u0131":-22,"\u014b":-22,"\u012d":-22,"\u0133":-22,"\u012b":-22,"\u012f":-22,"\u0129":-22,"\u0144":-22,"\u0148":-22,"\u0146":-22,"\u0155":-22,"\u0159":-22,"\u0157":-22,"\u0138":-22,":":-15,";":-15,"\u00ad":13,",":-20,".":-20}},"l":{"d":"81,0r0,-711r48,0r0,711r-48,0","w":212,"k":{",":11,".":11}},"m":{"d":"269,-451v-78,0,-140,67,-140,155r0,296r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,61,5,84v31,-55,77,-95,156,-95v68,0,115,48,140,104v32,-63,76,-102,163,-104v47,0,157,26,157,208r0,283r-48,0r0,-279v0,-108,-42,-172,-125,-172v-75,0,-134,60,-134,143r0,308r-48,0r0,-301v0,-86,-41,-150,-119,-150","w":819,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"n":{"d":"279,-451v-80,0,-150,61,-150,153r0,298r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,63,5,86v26,-54,87,-97,165,-97v46,0,168,23,168,203r0,288r-48,0r0,-284v0,-88,-34,-167,-133,-167","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"o":{"d":"491,-244v0,178,-123,255,-230,255v-124,0,-220,-97,-220,-247v0,-164,108,-255,227,-255v133,0,223,100,223,247xm89,-239v0,120,76,210,175,210v100,0,179,-90,179,-213v0,-88,-49,-209,-176,-209v-123,0,-178,109,-178,212","w":532,"k":{"T":35,"\u0166":35,"\u0164":35,"\u021a":35,"v":5,"w":5,"y":5,"\u0175":5,"z":6,"\u017e":6,"\u017a":6,"\u017c":6,"x":8,"\u00ad":-14,"\"":5,"'":5,",":18,".":18}},"p":{"d":"80,198r0,-525v0,-60,-1,-107,-4,-153r46,0v3,29,-2,66,5,91v35,-63,94,-102,178,-102v123,0,206,102,206,243v0,171,-102,259,-218,259v-71,0,-128,-35,-165,-89r0,276r-48,0xm294,-451v-82,-1,-160,67,-166,168r0,94v2,101,78,160,162,160v110,0,173,-89,173,-217v0,-108,-60,-205,-169,-205","w":552,"k":{"T":35,"\u0166":35,"\u0164":35,"\u021a":35,"v":5,"w":5,"y":5,"\u0175":5,"z":6,"\u017e":6,"\u017a":6,"\u017c":6,"x":8,"\u00ad":-14,"\"":5,"'":5,",":18,".":18}},"q":{"d":"416,198r0,-281r-2,0v-24,48,-81,94,-166,94v-118,0,-207,-100,-207,-242v0,-185,120,-260,221,-260v85,0,133,49,159,93r3,-82r44,0v-3,36,-4,74,-4,124r0,554r-48,0xm257,-29v78,0,159,-63,159,-159r0,-103v-2,-95,-63,-160,-155,-160v-105,0,-172,88,-172,214v0,107,50,208,168,208","w":542,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"r":{"d":"281,-444v-100,-13,-153,72,-153,179r0,265r-48,0r0,-336v0,-48,-1,-97,-4,-144r44,0r2,97r3,0v24,-66,77,-118,156,-106r0,45","w":295,"k":{"\u0142":-8,"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"f":-32,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"c":11,"d":11,"e":11,"o":11,"q":11,"\u0153":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0111":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"t":-26,"\u0167":-26,"\u0165":-26,"\u021b":-26,"v":-30,"w":-30,"y":-30,"\u0175":-30,"z":-10,"\u017e":-10,"\u017a":-10,"\u017c":-10,"b":-8,"h":-8,"k":-8,"l":-8,"\u0127":-8,"\u0125":-8,"\u0137":-8,"\u013a":-8,"\u013e":-8,"\u013c":-8,"\u0140":-8,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0131":-7,"\u014b":-7,"\u012d":-7,"\u0133":-7,"\u012b":-7,"\u012f":-7,"\u0129":-7,"\u0144":-7,"\u0148":-7,"\u0146":-7,"\u0155":-7,"\u0159":-7,"\u0157":-7,"\u0138":-7,"x":-21,":":-18,";":-18,"\u00ad":8,",":45,".":45}},"s":{"d":"44,-23r17,-40v26,16,65,33,108,33v76,0,112,-41,112,-91v0,-53,-32,-82,-101,-109v-79,-31,-122,-73,-122,-131v0,-70,55,-130,148,-130v44,0,82,13,106,30r-18,39v-17,-12,-48,-29,-96,-29v-61,0,-93,39,-93,83v0,50,34,72,99,98v78,32,124,70,124,143v0,82,-64,137,-162,137v-46,0,-90,-13,-122,-33","w":373,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,",":11,".":11}},"t":{"d":"211,10v-83,0,-112,-60,-112,-148r0,-303r-81,0r0,-39r81,0r0,-88r48,-18r0,106r137,0r0,39r-137,0r0,312v0,61,19,99,70,99v25,0,43,-3,55,-7r6,36v-16,6,-38,11,-67,11","w":309,"k":{"g":6,"\u011f":6,"\u011d":6,"\u0123":6,"\u0121":6,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"v":-11,"w":-11,"y":-11,"\u0175":-11,"\u00ad":8}},"u":{"d":"451,-480r0,363v0,42,1,80,4,117r-45,0v-3,-27,2,-63,-5,-86v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179v70,0,122,-49,142,-97v6,-15,9,-34,9,-53r0,-299r48,0","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"v":{"d":"15,-480r51,0r159,426r2,0r163,-426r50,0r-195,480r-42,0","w":452,"k":{"T":25,"\u0166":25,"\u0164":25,"\u021a":25,"g":7,"\u011f":7,"\u011d":7,"\u0123":7,"\u0121":7,"c":7,"d":7,"e":7,"o":7,"q":7,"\u0153":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0111":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"v":-8,"w":-8,"y":-8,"\u0175":-8,":":-35,";":-35,",":34,".":34}},"w":{"d":"23,-480r49,0r81,273v16,56,30,104,41,150r2,0v12,-44,29,-95,48,-150r96,-273r45,0r92,270v22,58,32,112,49,153v10,-45,25,-93,44,-151r85,-272r49,0r-160,480r-41,0r-91,-268v-22,-57,-34,-113,-52,-163v-40,148,-99,289,-147,431r-42,0","w":722,"k":{"T":25,"\u0166":25,"\u0164":25,"\u021a":25,"g":7,"\u011f":7,"\u011d":7,"\u0123":7,"\u0121":7,"c":7,"d":7,"e":7,"o":7,"q":7,"\u0153":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0111":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"v":-8,"w":-8,"y":-8,"\u0175":-8,":":-35,";":-35,",":34,".":34}},"x":{"d":"21,-480r54,0r82,117v23,27,35,56,57,82r138,-199r53,0r-167,234r173,246r-55,0r-145,-211r-2,0v-18,31,-37,57,-60,90r-84,121r-54,0r176,-245","w":429,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"c":11,"d":11,"e":11,"o":11,"q":11,"\u0153":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0111":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"s":4,"\u0161":4,"\u015b":4,"\uf6c2":4,"\u015d":4,"t":-13,"\u0167":-13,"\u0165":-13,"\u021b":-13,"v":-12,"w":-12,"y":-12,"\u0175":-12,"\u00ad":8}},"y":{"d":"25,181v76,-32,137,-92,170,-195v0,-4,-2,-11,-6,-21r-178,-445r51,0r126,314v15,33,23,77,37,103v10,-29,22,-67,37,-106r117,-311r51,0r-144,358v-73,189,-118,288,-246,343","w":440,"k":{"T":25,"\u0166":25,"\u0164":25,"\u021a":25,"g":7,"\u011f":7,"\u011d":7,"\u0123":7,"\u0121":7,"c":7,"d":7,"e":7,"o":7,"q":7,"\u0153":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0111":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"v":-8,"w":-8,"y":-8,"\u0175":-8,":":-35,";":-35,",":34,".":34}},"z":{"d":"16,0r0,-29r259,-341v18,-24,39,-45,55,-71r-293,0r0,-39r351,0r-1,32r-310,409r312,0r0,39r-373,0","w":403,"k":{"T":15,"\u0166":15,"\u0164":15,"\u021a":15,"c":8,"d":8,"e":8,"o":8,"q":8,"\u0153":8,"\u0107":8,"\u010d":8,"\u0109":8,"\u010b":8,"\u010f":8,"\u0111":8,"\u0115":8,"\u011b":8,"\u0117":8,"\u0113":8,"\u0119":8,"\u014f":8,"\u0151":8,"\u014d":8,"v":-34,"w":-34,"y":-34,"\u0175":-34}},"{":{"d":"92,-25v0,-57,20,-110,19,-167v0,-34,-12,-80,-85,-78r1,-35v147,-4,61,-155,65,-252v4,-95,64,-132,153,-129r0,37v-76,-4,-109,27,-109,96v0,54,17,106,18,160v1,60,-30,89,-64,106v38,11,64,48,64,104v0,55,-18,107,-18,162v-1,69,36,100,109,96r0,37v-88,3,-153,-31,-153,-137","w":265,"k":{"T":-63,"\u0166":-63,"\u0164":-63,"\u021a":-63,"J":-21,"\u0134":-21,"C":5,"G":5,"O":5,"Q":5,"\u0152":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"V":-64,"W":-64,"\u0174":-64,"X":-15,"Y":-48,"\u0178":-48,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"j":-59,"\u0135":-59}},"|":{"d":"84,-750r43,0r0,1000r-43,0r0,-1000","w":212},"}":{"d":"173,-557v4,100,-82,247,66,252r-1,35v-72,-2,-84,44,-84,78v0,56,19,109,19,167v-2,106,-65,140,-153,137r0,-37v73,4,110,-26,109,-96v0,-55,-17,-107,-18,-162v-1,-58,30,-90,64,-106v-38,-12,-64,-46,-64,-104v0,-105,66,-271,-91,-256r0,-37v89,-3,149,34,153,129","w":265},"~":{"d":"440,-220v-55,11,-213,-89,-283,-88v-43,0,-67,31,-67,87r-38,0v-5,-80,45,-130,107,-130v62,0,211,88,285,88v44,0,64,-34,63,-87r37,0v5,94,-49,130,-104,130","w":596},"'":{"d":"60,-692r57,0r-12,221r-32,0","w":178,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":60,"\u0134":60,"M":8,"V":-22,"W":-22,"\u0174":-22,"A":70,"\u0102":70,"\u0100":70,"\u0104":70,"f":-25,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u0153":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"t":-25,"\u0167":-25,"\u0165":-25,"\u021b":-25,"v":-30,"w":-30,"y":-30,"\u0175":-30,",":105,".":105}},"`":{"d":"33,-688r70,0r89,138r-37,0","w":300},"\u0141":{"d":"432,0r-348,0r0,-291r-89,68r0,-44r89,-67r0,-340r48,0r0,305r139,-104r0,45r-139,104r0,284r300,0r0,40","w":451,"k":{"T":78,"\u0166":78,"\u0164":78,"\u021a":78,"C":39,"G":39,"O":39,"Q":39,"\u0152":39,"\u0106":39,"\u010c":39,"\u0108":39,"\u010a":39,"\u011e":39,"\u011c":39,"\u0122":39,"\u0120":39,"\u014e":39,"\u0150":39,"\u014c":39,"U":40,"\u016c":40,"\u0170":40,"\u016a":40,"\u0172":40,"\u016e":40,"\u0168":40,"V":56,"W":56,"\u0174":56,"Y":80,"\u0178":80,"c":17,"d":17,"e":17,"o":17,"q":17,"\u0153":17,"\u0107":17,"\u010d":17,"\u0109":17,"\u010b":17,"\u010f":17,"\u0111":17,"\u0115":17,"\u011b":17,"\u0117":17,"\u0113":17,"\u0119":17,"\u014f":17,"\u0151":17,"\u014d":17,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":17,"\u016d":17,"\u0171":17,"\u016b":17,"\u0173":17,"\u016f":17,"\u0169":17,"v":21,"w":21,"y":21,"\u0175":21,"\u00ad":58,"\"":96,"'":96}},"\u0152":{"d":"364,-685v58,0,103,11,152,11r300,0r0,40r-285,0r0,260r269,0r0,40r-269,0r0,294r301,0r0,40r-322,0r-153,11v-196,0,-320,-144,-320,-343v0,-225,138,-353,327,-353xm483,-44r0,-585v-30,-9,-66,-16,-123,-16v-179,0,-273,134,-273,309v0,184,104,307,280,307v45,0,90,-6,116,-15","w":868,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"\u0131":{"d":"129,0r-48,0r0,-480r48,0r0,480","w":209},"\u0142":{"d":"131,0r-48,0r0,-325r-70,63r0,-45r70,-63r0,-341r48,0r0,301r71,-64r0,46r-71,64r0,364","w":214,"k":{",":11,".":11}},"\u0153":{"d":"817,-244r-340,0v-2,140,72,214,177,214v61,0,98,-16,126,-28r14,37v-31,18,-87,32,-145,32v-93,0,-161,-47,-200,-132v-32,91,-114,132,-191,132v-125,0,-217,-98,-217,-247v0,-159,101,-255,221,-255v92,0,160,54,192,133v35,-89,102,-133,181,-133v155,0,184,151,184,216v0,13,0,23,-2,31xm431,-240v0,-101,-51,-212,-172,-211v-124,0,-170,120,-170,213v0,118,75,209,171,209v100,0,171,-86,171,-211xm477,-283r292,0v2,-66,-28,-168,-138,-168v-103,0,-146,94,-154,168","w":860,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"\u0160":{"d":"42,-35r18,-39v38,26,91,44,147,44v101,0,163,-57,163,-140v0,-75,-39,-121,-137,-157v-108,-40,-173,-95,-173,-186v0,-99,81,-171,196,-171v63,0,111,16,134,31r-18,41v-18,-13,-61,-32,-119,-32v-109,0,-146,70,-146,123v0,74,43,111,140,150v111,44,170,96,170,196v0,98,-70,185,-214,185v-58,0,-126,-19,-161,-45xm265,-714r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":464,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5}},"\u0178":{"d":"277,0r-48,0r0,-292r-214,-382r53,0r188,346r2,0v53,-111,131,-236,193,-346r53,0r-227,383r0,291xm213,-756v0,22,-13,40,-38,40v-22,0,-36,-18,-36,-40v0,-21,16,-40,37,-40v22,0,37,18,37,40xm385,-756v0,22,-13,40,-38,40v-22,0,-36,-18,-36,-40v0,-21,16,-40,37,-40v22,0,37,18,37,40","w":503,"k":{"\u012d":8,"T":-55,"\u0166":-55,"\u0164":-55,"\u021a":-55,"J":45,"\u0134":45,"M":4,"C":29,"G":29,"O":29,"Q":29,"\u0152":29,"\u0106":29,"\u010c":29,"\u0108":29,"\u010a":29,"\u011e":29,"\u011c":29,"\u0122":29,"\u0120":29,"\u014e":29,"\u0150":29,"\u014c":29,"V":-35,"W":-35,"\u0174":-35,"X":-9,"Y":-20,"\u0178":-20,"A":74,"\u0102":74,"\u0100":74,"\u0104":74,"S":4,"\u0160":4,"\u015a":4,"\uf6c1":4,"\u015c":4,"a":56,"\u0103":56,"\u0101":56,"\u0105":56,"g":15,"\u011f":15,"\u011d":15,"\u0123":15,"\u0121":15,"c":56,"d":56,"e":56,"o":56,"q":56,"\u0153":56,"\u0107":56,"\u010d":56,"\u0109":56,"\u010b":56,"\u010f":56,"\u0111":56,"\u0115":56,"\u011b":56,"\u0117":56,"\u0113":56,"\u0119":56,"\u014f":56,"\u0151":56,"\u014d":56,"s":44,"\u0161":44,"\u015b":44,"\uf6c2":44,"\u015d":44,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":42,"\u016d":42,"\u0171":42,"\u016b":42,"\u0173":42,"\u016f":42,"\u0169":42,"v":15,"w":15,"y":15,"\u0175":15,"z":10,"\u017e":10,"\u017a":10,"\u017c":10,"b":5,"h":5,"k":5,"l":5,"\u0142":5,"\u0127":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013e":5,"\u013c":5,"\u0140":5,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,"x":8,":":22,";":22,"\u00ad":44,")":-70,"]":-70,"}":-70,"\"":-6,"'":-6,",":81,".":81}},"\u017d":{"d":"34,0r0,-31r406,-600r0,-3r-373,0r0,-40r434,0r0,32r-407,599r0,3r412,0r0,40r-472,0xm302,-710r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":539,"k":{"C":21,"G":21,"O":21,"Q":21,"\u0152":21,"\u0106":21,"\u010c":21,"\u0108":21,"\u010a":21,"\u011e":21,"\u011c":21,"\u0122":21,"\u0120":21,"\u014e":21,"\u0150":21,"\u014c":21,"X":8,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":14,"d":14,"e":14,"o":14,"q":14,"\u0153":14,"\u0107":14,"\u010d":14,"\u0109":14,"\u010b":14,"\u010f":14,"\u0111":14,"\u0115":14,"\u011b":14,"\u0117":14,"\u0113":14,"\u0119":14,"\u014f":14,"\u0151":14,"\u014d":14,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":5,"w":5,"y":5,"\u0175":5,"\u00ad":38}},"\u0161":{"d":"44,-23r17,-40v26,16,65,33,108,33v76,0,112,-41,112,-91v0,-53,-32,-82,-101,-109v-79,-31,-122,-73,-122,-131v0,-70,55,-130,148,-130v44,0,82,13,106,30r-18,39v-17,-12,-48,-29,-96,-29v-61,0,-93,39,-93,83v0,50,34,72,99,98v78,32,124,70,124,143v0,82,-64,137,-162,137v-46,0,-90,-13,-122,-33xm213,-550r-38,0r-94,-138r48,0v23,32,41,70,66,100r64,-100r45,0","w":373,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,",":11,".":11}},"\u017e":{"d":"16,0r0,-29r259,-341v18,-24,39,-45,55,-71r-293,0r0,-39r351,0r-1,32r-310,409r312,0r0,39r-373,0xm240,-550r-38,0r-94,-138r48,0v23,32,41,70,66,100r64,-100r45,0","w":403,"k":{"T":15,"\u0166":15,"\u0164":15,"\u021a":15,"c":8,"d":8,"e":8,"o":8,"q":8,"\u0153":8,"\u0107":8,"\u010d":8,"\u0109":8,"\u010b":8,"\u010f":8,"\u0111":8,"\u0115":8,"\u011b":8,"\u0117":8,"\u0113":8,"\u0119":8,"\u014f":8,"\u0151":8,"\u014d":8,"v":-34,"w":-34,"y":-34,"\u0175":-34}},"\u0102":{"d":"429,-236r-267,0r-83,236r-49,0r244,-674r46,0r243,674r-49,0xm177,-276r237,0r-82,-225v-16,-47,-25,-81,-35,-119r-2,0v-30,118,-79,232,-118,344xm179,-806r35,0v6,23,26,50,80,50v52,0,73,-24,78,-50r35,0v-2,50,-35,93,-115,93v-78,0,-111,-42,-113,-93","w":585,"k":{"T":73,"\u0166":73,"\u0164":73,"\u021a":73,"J":-22,"\u0134":-22,"M":6,"C":9,"G":9,"O":9,"Q":9,"\u0152":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"U":23,"\u016c":23,"\u0170":23,"\u016a":23,"\u0172":23,"\u016e":23,"\u0168":23,"V":50,"W":50,"\u0174":50,"X":7,"Y":70,"\u0178":70,"a":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"f":4,"g":11,"\u011f":11,"\u011d":11,"\u0123":11,"\u0121":11,"c":10,"d":10,"e":10,"o":10,"q":10,"\u0153":10,"\u0107":10,"\u010d":10,"\u0109":10,"\u010b":10,"\u010f":10,"\u0111":10,"\u0115":10,"\u011b":10,"\u0117":10,"\u0113":10,"\u0119":10,"\u014f":10,"\u0151":10,"\u014d":10,"s":8,"\u0161":8,"\u015b":8,"\uf6c2":8,"\u015d":8,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"v":15,"w":15,"y":15,"\u0175":15,"z":-21,"\u017e":-21,"\u017a":-21,"\u017c":-21,"\"":66,"'":66}},"\u0100":{"d":"429,-236r-267,0r-83,236r-49,0r244,-674r46,0r243,674r-49,0xm177,-276r237,0r-82,-225v-16,-47,-25,-81,-35,-119r-2,0v-30,118,-79,232,-118,344xm180,-772r228,0r0,39r-228,0r0,-39","w":585,"k":{"T":73,"\u0166":73,"\u0164":73,"\u021a":73,"J":-22,"\u0134":-22,"M":6,"C":9,"G":9,"O":9,"Q":9,"\u0152":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"U":23,"\u016c":23,"\u0170":23,"\u016a":23,"\u0172":23,"\u016e":23,"\u0168":23,"V":50,"W":50,"\u0174":50,"X":7,"Y":70,"\u0178":70,"a":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"f":4,"g":11,"\u011f":11,"\u011d":11,"\u0123":11,"\u0121":11,"c":10,"d":10,"e":10,"o":10,"q":10,"\u0153":10,"\u0107":10,"\u010d":10,"\u0109":10,"\u010b":10,"\u010f":10,"\u0111":10,"\u0115":10,"\u011b":10,"\u0117":10,"\u0113":10,"\u0119":10,"\u014f":10,"\u0151":10,"\u014d":10,"s":8,"\u0161":8,"\u015b":8,"\uf6c2":8,"\u015d":8,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"v":15,"w":15,"y":15,"\u0175":15,"z":-21,"\u017e":-21,"\u017a":-21,"\u017c":-21,"\"":66,"'":66}},"\u0104":{"d":"563,0v-31,13,-76,66,-79,112v-4,53,59,58,95,38r9,29v-54,37,-149,20,-149,-56v0,-51,42,-96,73,-129r-83,-230r-267,0r-83,236r-49,0r244,-674r46,0xm177,-276r238,0r-82,-225v-17,-47,-26,-81,-36,-119r-2,0v-30,118,-79,232,-118,344","w":585,"k":{"T":73,"\u0166":73,"\u0164":73,"\u021a":73,"J":-22,"\u0134":-22,"M":6,"C":9,"G":9,"O":9,"Q":9,"\u0152":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"U":23,"\u016c":23,"\u0170":23,"\u016a":23,"\u0172":23,"\u016e":23,"\u0168":23,"V":50,"W":50,"\u0174":50,"X":7,"Y":70,"\u0178":70,"a":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"f":4,"g":11,"\u011f":11,"\u011d":11,"\u0123":11,"\u0121":11,"c":10,"d":10,"e":10,"o":10,"q":10,"\u0153":10,"\u0107":10,"\u010d":10,"\u0109":10,"\u010b":10,"\u010f":10,"\u0111":10,"\u0115":10,"\u011b":10,"\u0117":10,"\u0113":10,"\u0119":10,"\u014f":10,"\u0151":10,"\u014d":10,"s":8,"\u0161":8,"\u015b":8,"\uf6c2":8,"\u015d":8,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"v":15,"w":15,"y":15,"\u0175":15,"z":-21,"\u017e":-21,"\u017a":-21,"\u017c":-21,"\"":66,"'":66}},"\u0106":{"d":"524,-62r14,38v-34,17,-99,34,-182,34v-163,0,-319,-104,-319,-343v0,-200,129,-351,342,-351v86,0,136,19,156,29r-15,40v-34,-17,-83,-29,-140,-29v-182,0,-293,118,-293,312v0,183,104,301,285,301v57,0,113,-12,152,-31xm415,-826r73,0r-131,113r-40,0","w":570,"k":{"\u0152":16,"T":-38,"\u0166":-38,"\u0164":-38,"\u021a":-38,"C":16,"G":16,"O":16,"Q":16,"\u0106":16,"\u010c":16,"\u0108":16,"\u010a":16,"\u011e":16,"\u011c":16,"\u0122":16,"\u0120":16,"\u014e":16,"\u0150":16,"\u014c":16,"V":-14,"W":-14,"\u0174":-14,"a":4,"\u0103":4,"\u0101":4,"\u0105":4,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"u":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"v":12,"w":12,"y":12,"\u0175":12,")":-22,"]":-22,"}":-22}},"\u010c":{"d":"524,-62r14,38v-34,17,-99,34,-182,34v-163,0,-319,-104,-319,-343v0,-200,129,-351,342,-351v86,0,136,19,156,29r-15,40v-34,-17,-83,-29,-140,-29v-182,0,-293,118,-293,312v0,183,104,301,285,301v57,0,113,-12,152,-31xm367,-714r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":570,"k":{"\u0152":16,"T":-38,"\u0166":-38,"\u0164":-38,"\u021a":-38,"C":16,"G":16,"O":16,"Q":16,"\u0106":16,"\u010c":16,"\u0108":16,"\u010a":16,"\u011e":16,"\u011c":16,"\u0122":16,"\u0120":16,"\u014e":16,"\u0150":16,"\u014c":16,"V":-14,"W":-14,"\u0174":-14,"a":4,"\u0103":4,"\u0101":4,"\u0105":4,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"u":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"v":12,"w":12,"y":12,"\u0175":12,")":-22,"]":-22,"}":-22}},"\u0108":{"d":"524,-62r14,38v-34,17,-99,34,-182,34v-163,0,-319,-104,-319,-343v0,-200,129,-351,342,-351v86,0,136,19,156,29r-15,40v-34,-17,-83,-29,-140,-29v-182,0,-293,118,-293,312v0,183,104,301,285,301v57,0,113,-12,152,-31xm322,-823r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":570,"k":{"\u0152":16,"T":-38,"\u0166":-38,"\u0164":-38,"\u021a":-38,"C":16,"G":16,"O":16,"Q":16,"\u0106":16,"\u010c":16,"\u0108":16,"\u010a":16,"\u011e":16,"\u011c":16,"\u0122":16,"\u0120":16,"\u014e":16,"\u0150":16,"\u014c":16,"V":-14,"W":-14,"\u0174":-14,"a":4,"\u0103":4,"\u0101":4,"\u0105":4,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"u":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"v":12,"w":12,"y":12,"\u0175":12,")":-22,"]":-22,"}":-22}},"\u010a":{"d":"524,-62r14,38v-34,17,-99,34,-182,34v-163,0,-319,-104,-319,-343v0,-200,129,-351,342,-351v86,0,136,19,156,29r-15,40v-34,-17,-83,-29,-140,-29v-182,0,-293,118,-293,312v0,183,104,301,285,301v57,0,113,-12,152,-31xm379,-763v0,20,-16,40,-39,39v-49,-2,-44,-78,2,-78v21,0,37,20,37,39","w":570,"k":{"\u0152":16,"T":-38,"\u0166":-38,"\u0164":-38,"\u021a":-38,"C":16,"G":16,"O":16,"Q":16,"\u0106":16,"\u010c":16,"\u0108":16,"\u010a":16,"\u011e":16,"\u011c":16,"\u0122":16,"\u0120":16,"\u014e":16,"\u0150":16,"\u014c":16,"V":-14,"W":-14,"\u0174":-14,"a":4,"\u0103":4,"\u0101":4,"\u0105":4,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"u":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"v":12,"w":12,"y":12,"\u0175":12,")":-22,"]":-22,"}":-22}},"\u010e":{"d":"610,-353v0,221,-135,358,-379,358v-52,0,-101,-1,-150,-5r0,-664v52,-9,109,-15,173,-15v230,1,356,108,356,326xm129,-628r0,588v27,4,66,5,109,5v216,0,323,-121,323,-316v0,-171,-93,-288,-310,-288v-52,0,-93,5,-122,11xm320,-713r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":647,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"\u0110":{"d":"613,-353v0,222,-135,359,-379,359v-52,0,-101,-1,-150,-6r0,-322r-89,0r0,-39r89,0r0,-306v52,-9,109,-15,173,-15v231,2,356,107,356,329xm341,-361r0,39r-209,0r0,283v27,4,66,5,109,5v216,0,323,-121,323,-320v0,-171,-93,-288,-310,-288v-52,0,-93,5,-122,11r0,270r209,0","w":651,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"\u0114":{"d":"398,-375r0,40r-269,0r0,295r301,0r0,40r-349,0r0,-674r333,0r0,40r-285,0r0,259r269,0xm128,-817r35,0v6,23,26,50,80,50v52,0,73,-24,78,-50r35,0v-2,50,-35,93,-115,93v-78,0,-111,-42,-113,-93","w":466,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"\u011a":{"d":"398,-375r0,40r-269,0r0,295r301,0r0,40r-349,0r0,-674r333,0r0,40r-285,0r0,259r269,0xm269,-710r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":466,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"\u0116":{"d":"398,-375r0,40r-269,0r0,295r301,0r0,40r-349,0r0,-674r333,0r0,40r-285,0r0,259r269,0xm277,-766v0,20,-16,40,-39,39v-49,-2,-44,-78,2,-78v21,0,37,20,37,39","w":466,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"\u0112":{"d":"398,-375r0,40r-269,0r0,295r301,0r0,40r-349,0r0,-674r333,0r0,40r-285,0r0,259r269,0xm139,-772r228,0r0,39r-228,0r0,-39","w":466,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"\u014a":{"d":"128,0r-46,0r0,-674r45,0r262,398v55,84,94,147,127,212r2,-1v-14,-187,-6,-407,-8,-609r46,0r0,642v0,124,-49,200,-172,221r-8,-39v89,-16,131,-63,137,-150r-258,-392v-50,-77,-96,-148,-131,-218r-2,1v5,83,6,156,6,268r0,341","w":638,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0118":{"d":"425,151r9,32v-57,31,-149,15,-149,-59v0,-54,49,-102,87,-125r-291,0r0,-673r334,0r0,40r-286,0r0,259r270,0r0,40r-270,0r0,294r302,0r0,40v-3,0,-7,1,-10,1v-47,30,-91,75,-91,114v0,48,56,53,95,37","w":466,"k":{"T":-22,"\u0166":-22,"\u0164":-22,"\u021a":-22,"J":-15,"\u0134":-15,"V":-11,"W":-11,"\u0174":-11,"f":-4,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u0153":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":4,"w":4,"y":4,"\u0175":4}},"\u011e":{"d":"368,7v-188,0,-331,-131,-331,-342v0,-187,123,-346,352,-346v72,0,131,17,157,30r-16,39v-35,-17,-79,-29,-144,-29v-185,0,-299,121,-299,304v0,190,111,304,289,304v71,0,116,-10,141,-24r0,-238r-156,0r0,-39r204,0r0,305v-34,14,-105,36,-197,36xm227,-817r35,0v6,23,26,50,80,50v52,0,73,-24,78,-50r35,0v-2,50,-35,93,-115,93v-78,0,-111,-42,-113,-93","w":624,"k":{"a":-8,"\u0103":-8,"\u0101":-8,"\u0105":-8,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"v":-5,"w":-5,"y":-5,"\u0175":-5}},"\u011c":{"d":"368,7v-188,0,-331,-131,-331,-342v0,-187,123,-346,352,-346v72,0,131,17,157,30r-16,39v-35,-17,-79,-29,-144,-29v-185,0,-299,121,-299,304v0,190,111,304,289,304v71,0,116,-10,141,-24r0,-238r-156,0r0,-39r204,0r0,305v-34,14,-105,36,-197,36xm333,-822r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":624,"k":{"a":-8,"\u0103":-8,"\u0101":-8,"\u0105":-8,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"v":-5,"w":-5,"y":-5,"\u0175":-5}},"\u0122":{"d":"368,7v-188,0,-331,-131,-331,-342v0,-187,123,-346,352,-346v72,0,131,17,157,30r-16,39v-35,-17,-79,-29,-144,-29v-185,0,-299,121,-299,304v0,190,111,304,289,304v71,0,116,-10,141,-24r0,-238r-156,0r0,-39r204,0r0,305v-34,14,-105,36,-197,36xm305,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":624,"k":{"a":-8,"\u0103":-8,"\u0101":-8,"\u0105":-8,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"v":-5,"w":-5,"y":-5,"\u0175":-5}},"\u0120":{"d":"368,7v-188,0,-331,-131,-331,-342v0,-187,123,-346,352,-346v72,0,131,17,157,30r-16,39v-35,-17,-79,-29,-144,-29v-185,0,-299,121,-299,304v0,190,111,304,289,304v71,0,116,-10,141,-24r0,-238r-156,0r0,-39r204,0r0,305v-34,14,-105,36,-197,36xm391,-763v0,20,-16,40,-39,39v-49,-2,-44,-78,2,-78v21,0,37,20,37,39","w":624,"k":{"a":-8,"\u0103":-8,"\u0101":-8,"\u0105":-8,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"v":-5,"w":-5,"y":-5,"\u0175":-5}},"\u0126":{"d":"602,-484r-53,0r0,484r-48,0r0,-330r-372,0r0,330r-48,0r0,-484r-53,0r0,-38r53,0r0,-152r48,0r0,152r372,0r0,-152r48,0r0,152r53,0r0,38xm501,-370r0,-114r-372,0r0,114r372,0","w":630,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0124":{"d":"81,-674r48,0r0,297r372,0r0,-297r48,0r0,674r-48,0r0,-337r-372,0r0,337r-48,0r0,-674xm296,-819r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":630,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u012c":{"d":"81,-674r48,0r0,674r-48,0r0,-674xm-10,-812r35,0v6,23,26,50,80,50v52,0,73,-24,78,-50r35,0v-2,50,-35,93,-115,93v-78,0,-111,-42,-113,-93","w":211,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0132":{"d":"81,-674r48,0r0,674r-48,0r0,-674xm434,-219r0,-455r48,0r0,466v-1,210,-127,244,-264,203r10,-38v117,33,206,10,206,-176","w":556,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"\u0153":-4,"\u0107":-4,"\u010d":-4,"\u0109":-4,"\u010b":-4,"\u010f":-4,"\u0111":-4,"\u0115":-4,"\u011b":-4,"\u0117":-4,"\u0113":-4,"\u0119":-4,"\u014f":-4,"\u0151":-4,"\u014d":-4,"v":-15,"w":-15,"y":-15,"\u0175":-15,")":-60,"]":-60,"}":-60,",":15,".":15}},"\u012a":{"d":"81,-674r48,0r0,674r-48,0r0,-674xm-7,-772r228,0r0,39r-228,0r0,-39","w":211,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u012e":{"d":"129,-674r0,674r-6,0v-19,23,-53,73,-53,116v0,55,59,56,95,39r8,30v-54,35,-148,20,-148,-57v0,-50,34,-96,56,-128r0,-674r48,0","w":211,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0128":{"d":"81,-674r48,0r0,674r-48,0r0,-674xm161,-721v-30,0,-80,-39,-109,-39v-19,0,-25,18,-28,44r-33,0v-1,-46,22,-86,63,-86v33,0,69,38,107,38v15,0,25,-6,27,-37r33,0v0,46,-18,80,-60,80","w":211,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0134":{"d":"223,-219r0,-455r48,0r0,466v-1,210,-127,244,-264,203r10,-38v117,33,206,10,206,-176xm223,-819r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":345,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"\u0153":-4,"\u0107":-4,"\u010d":-4,"\u0109":-4,"\u010b":-4,"\u010f":-4,"\u0111":-4,"\u0115":-4,"\u011b":-4,"\u0117":-4,"\u0113":-4,"\u0119":-4,"\u014f":-4,"\u0151":-4,"\u014d":-4,"v":-15,"w":-15,"y":-15,"\u0175":-15,")":-60,"]":-60,"}":-60,",":15,".":15}},"\u0136":{"d":"81,0r0,-674r48,0r0,341r3,0v20,-26,40,-49,58,-70r239,-271r58,0r-256,286r280,388r-57,0r-256,-355r-69,76r0,279r-48,0xm201,206r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":498,"k":{"T":-30,"\u0166":-30,"\u0164":-30,"\u021a":-30,"J":-44,"\u0134":-44,"C":6,"G":6,"O":6,"Q":6,"\u0152":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"V":-24,"W":-24,"\u0174":-24,"A":-9,"\u0102":-9,"\u0100":-9,"\u0104":-9,"Z":-22,"\u017d":-22,"\u0179":-22,"\u017b":-22,"a":-25,"\u0103":-25,"\u0101":-25,"\u0105":-25,"c":-11,"d":-11,"e":-11,"o":-11,"q":-11,"\u0153":-11,"\u0107":-11,"\u010d":-11,"\u0109":-11,"\u010b":-11,"\u010f":-11,"\u0111":-11,"\u0115":-11,"\u011b":-11,"\u0117":-11,"\u0113":-11,"\u0119":-11,"\u014f":-11,"\u0151":-11,"\u014d":-11,"b":-16,"h":-16,"k":-16,"l":-16,"\u0142":-16,"\u0127":-16,"\u0125":-16,"\u0137":-16,"\u013a":-16,"\u013e":-16,"\u013c":-16,"\u0140":-16,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,":":-31,";":-31,"\u00ad":15,")":-33,"]":-33,"}":-33,",":-22,".":-22}},"\u0139":{"d":"81,0r0,-674r48,0r0,634r300,0r0,40r-348,0xm188,-823r73,0r-131,113r-40,0","w":448,"k":{"T":78,"\u0166":78,"\u0164":78,"\u021a":78,"C":39,"G":39,"O":39,"Q":39,"\u0152":39,"\u0106":39,"\u010c":39,"\u0108":39,"\u010a":39,"\u011e":39,"\u011c":39,"\u0122":39,"\u0120":39,"\u014e":39,"\u0150":39,"\u014c":39,"U":40,"\u016c":40,"\u0170":40,"\u016a":40,"\u0172":40,"\u016e":40,"\u0168":40,"V":56,"W":56,"\u0174":56,"Y":80,"\u0178":80,"c":17,"d":17,"e":17,"o":17,"q":17,"\u0153":17,"\u0107":17,"\u010d":17,"\u0109":17,"\u010b":17,"\u010f":17,"\u0111":17,"\u0115":17,"\u011b":17,"\u0117":17,"\u0113":17,"\u0119":17,"\u014f":17,"\u0151":17,"\u014d":17,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":17,"\u016d":17,"\u0171":17,"\u016b":17,"\u0173":17,"\u016f":17,"\u0169":17,"v":21,"w":21,"y":21,"\u0175":21,"\u00ad":58,"\"":96,"'":96}},"\u013d":{"d":"81,0r0,-674r48,0r0,634r300,0r0,40r-348,0xm240,-516r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":448,"k":{"T":78,"\u0166":78,"\u0164":78,"\u021a":78,"C":39,"G":39,"O":39,"Q":39,"\u0152":39,"\u0106":39,"\u010c":39,"\u0108":39,"\u010a":39,"\u011e":39,"\u011c":39,"\u0122":39,"\u0120":39,"\u014e":39,"\u0150":39,"\u014c":39,"U":40,"\u016c":40,"\u0170":40,"\u016a":40,"\u0172":40,"\u016e":40,"\u0168":40,"V":56,"W":56,"\u0174":56,"Y":80,"\u0178":80,"c":17,"d":17,"e":17,"o":17,"q":17,"\u0153":17,"\u0107":17,"\u010d":17,"\u0109":17,"\u010b":17,"\u010f":17,"\u0111":17,"\u0115":17,"\u011b":17,"\u0117":17,"\u0113":17,"\u0119":17,"\u014f":17,"\u0151":17,"\u014d":17,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":17,"\u016d":17,"\u0171":17,"\u016b":17,"\u0173":17,"\u016f":17,"\u0169":17,"v":21,"w":21,"y":21,"\u0175":21,"\u00ad":58,"\"":96,"'":96}},"\u013b":{"d":"81,0r0,-674r48,0r0,634r300,0r0,40r-348,0xm186,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":448,"k":{"T":78,"\u0166":78,"\u0164":78,"\u021a":78,"C":39,"G":39,"O":39,"Q":39,"\u0152":39,"\u0106":39,"\u010c":39,"\u0108":39,"\u010a":39,"\u011e":39,"\u011c":39,"\u0122":39,"\u0120":39,"\u014e":39,"\u0150":39,"\u014c":39,"U":40,"\u016c":40,"\u0170":40,"\u016a":40,"\u0172":40,"\u016e":40,"\u0168":40,"V":56,"W":56,"\u0174":56,"Y":80,"\u0178":80,"c":17,"d":17,"e":17,"o":17,"q":17,"\u0153":17,"\u0107":17,"\u010d":17,"\u0109":17,"\u010b":17,"\u010f":17,"\u0111":17,"\u0115":17,"\u011b":17,"\u0117":17,"\u0113":17,"\u0119":17,"\u014f":17,"\u0151":17,"\u014d":17,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":17,"\u016d":17,"\u0171":17,"\u016b":17,"\u0173":17,"\u016f":17,"\u0169":17,"v":21,"w":21,"y":21,"\u0175":21,"\u00ad":58,"\"":96,"'":96}},"\u013f":{"d":"81,0r0,-674r48,0r0,634r300,0r0,40r-348,0xm352,-367v0,20,-16,40,-39,39v-49,-2,-44,-78,2,-78v21,0,37,20,37,39","w":448,"k":{"\u014c":39,"\u0150":39,"\u014e":39,"\u0120":39,"\u0122":39,"\u011c":39,"\u011e":39,"\u010a":39,"\u0108":39,"\u010c":39,"\u0106":39,"\u0152":39,"Q":39,"O":39,"G":39,"C":39,"T":78,"\u0166":78,"\u0164":78,"\u021a":78,"U":40,"\u016c":40,"\u0170":40,"\u016a":40,"\u0172":40,"\u016e":40,"\u0168":40,"V":56,"W":56,"\u0174":56,"Y":80,"\u0178":80,"c":17,"d":17,"e":17,"o":17,"q":17,"\u0153":17,"\u0107":17,"\u010d":17,"\u0109":17,"\u010b":17,"\u010f":17,"\u0111":17,"\u0115":17,"\u011b":17,"\u0117":17,"\u0113":17,"\u0119":17,"\u014f":17,"\u0151":17,"\u014d":17,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":17,"\u016d":17,"\u0171":17,"\u016b":17,"\u0173":17,"\u016f":17,"\u0169":17,"v":21,"w":21,"y":21,"\u0175":21,"\u00ad":58,"\"":96,"'":96}},"\u0143":{"d":"128,0r-46,0r0,-674r45,0r262,398v55,84,94,147,127,212r2,-1v-14,-187,-6,-407,-8,-609r46,0r0,674r-44,0r-257,-392v-50,-77,-96,-148,-131,-218r-2,1v5,83,6,156,6,268r0,341xm382,-823r73,0r-131,113r-40,0","w":638,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0147":{"d":"128,0r-46,0r0,-674r45,0r262,398v55,84,94,147,127,212r2,-1v-14,-187,-6,-407,-8,-609r46,0r0,674r-44,0r-257,-392v-50,-77,-96,-148,-131,-218r-2,1v5,83,6,156,6,268r0,341xm339,-702r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":638,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0145":{"d":"128,0r-46,0r0,-674r45,0r262,398v55,84,94,147,127,212r2,-1v-14,-187,-6,-407,-8,-609r46,0r0,674r-44,0r-257,-392v-50,-77,-96,-148,-131,-218r-2,1v5,83,6,156,6,268r0,341xm266,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":638,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u014e":{"d":"634,-344v0,238,-146,355,-302,355v-166,0,-295,-131,-295,-341v0,-221,134,-355,303,-355v170,0,294,133,294,341xm337,-645v-336,-1,-329,617,-2,616v160,0,249,-145,249,-312v0,-142,-78,-304,-247,-304xm221,-821r35,0v6,23,26,50,80,50v52,0,73,-24,78,-50r35,0v-2,50,-35,93,-115,93v-78,0,-111,-42,-113,-93","w":671,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"\u0150":{"d":"634,-344v0,238,-146,355,-302,355v-166,0,-295,-131,-295,-341v0,-221,134,-355,303,-355v170,0,294,133,294,341xm337,-645v-336,-1,-329,617,-2,616v160,0,249,-145,249,-312v0,-142,-78,-304,-247,-304xm342,-826r68,0r-118,109r-39,0xm468,-826r68,0r-118,109r-39,0","w":671,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"\u014c":{"d":"634,-344v0,238,-146,355,-302,355v-166,0,-295,-131,-295,-341v0,-221,134,-355,303,-355v170,0,294,133,294,341xm337,-645v-336,-1,-329,617,-2,616v160,0,249,-145,249,-312v0,-142,-78,-304,-247,-304xm224,-780r228,0r0,39r-228,0r0,-39","w":671,"k":{"T":24,"\u0166":24,"\u0164":24,"\u021a":24,"V":-8,"W":-8,"\u0174":-8,"X":24,"Y":23,"\u0178":23,"A":13,"\u0102":13,"\u0100":13,"\u0104":13,"f":-20,"g":-6,"\u011f":-6,"\u011d":-6,"\u0123":-6,"\u0121":-6,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u0153":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"t":-20,"\u0167":-20,"\u0165":-20,"\u021b":-20,"v":-17,"w":-17,"y":-17,"\u0175":-17,"j":-7,"\u0135":-7,"\u00ad":-15,",":30,".":30}},"\u0154":{"d":"227,-679v144,-1,223,52,229,176v4,93,-58,146,-132,178v54,17,88,68,104,143v23,105,36,155,50,182r-49,0v-11,-20,-25,-79,-43,-164v-21,-97,-63,-145,-152,-145r-105,0r0,309r-48,0r0,-665v42,-9,99,-14,146,-14xm129,-631r0,283r107,0v104,0,172,-58,172,-147v0,-103,-76,-145,-182,-145v-46,0,-80,5,-97,9xm307,-827r73,0r-131,113r-40,0","w":505,"k":{"T":-15,"\u0166":-15,"\u0164":-15,"\u021a":-15,"C":-8,"G":-8,"O":-8,"Q":-8,"\u0152":-8,"\u0106":-8,"\u010c":-8,"\u0108":-8,"\u010a":-8,"\u011e":-8,"\u011c":-8,"\u0122":-8,"\u0120":-8,"\u014e":-8,"\u0150":-8,"\u014c":-8,"V":-29,"W":-29,"\u0174":-29,"X":-4,"Y":6,"\u0178":6,"a":-14,"\u0103":-14,"\u0101":-14,"\u0105":-14,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"t":-24,"\u0167":-24,"\u0165":-24,"\u021b":-24,"v":-20,"w":-20,"y":-20,"\u0175":-20,"b":-10,"h":-10,"k":-10,"l":-10,"\u0142":-10,"\u0127":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013e":-10,"\u013c":-10,"\u0140":-10,"i":-11,"m":-11,"n":-11,"p":-11,"r":-11,"\u0131":-11,"\u014b":-11,"\u012d":-11,"\u0133":-11,"\u012b":-11,"\u012f":-11,"\u0129":-11,"\u0144":-11,"\u0148":-11,"\u0146":-11,"\u0155":-11,"\u0159":-11,"\u0157":-11,"\u0138":-11}},"\u0158":{"d":"227,-679v144,-1,223,52,229,176v4,93,-58,146,-132,178v54,17,88,68,104,143v23,105,36,155,50,182r-49,0v-11,-20,-25,-79,-43,-164v-21,-97,-63,-145,-152,-145r-105,0r0,309r-48,0r0,-665v42,-9,99,-14,146,-14xm129,-631r0,283r107,0v104,0,172,-58,172,-147v0,-103,-76,-145,-182,-145v-46,0,-80,5,-97,9xm267,-714r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":505,"k":{"T":-15,"\u0166":-15,"\u0164":-15,"\u021a":-15,"C":-8,"G":-8,"O":-8,"Q":-8,"\u0152":-8,"\u0106":-8,"\u010c":-8,"\u0108":-8,"\u010a":-8,"\u011e":-8,"\u011c":-8,"\u0122":-8,"\u0120":-8,"\u014e":-8,"\u0150":-8,"\u014c":-8,"V":-29,"W":-29,"\u0174":-29,"X":-4,"Y":6,"\u0178":6,"a":-14,"\u0103":-14,"\u0101":-14,"\u0105":-14,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"t":-24,"\u0167":-24,"\u0165":-24,"\u021b":-24,"v":-20,"w":-20,"y":-20,"\u0175":-20,"b":-10,"h":-10,"k":-10,"l":-10,"\u0142":-10,"\u0127":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013e":-10,"\u013c":-10,"\u0140":-10,"i":-11,"m":-11,"n":-11,"p":-11,"r":-11,"\u0131":-11,"\u014b":-11,"\u012d":-11,"\u0133":-11,"\u012b":-11,"\u012f":-11,"\u0129":-11,"\u0144":-11,"\u0148":-11,"\u0146":-11,"\u0155":-11,"\u0159":-11,"\u0157":-11,"\u0138":-11}},"\u0156":{"d":"227,-679v144,-1,223,52,229,176v4,93,-58,146,-132,178v54,17,88,68,104,143v23,105,36,155,50,182r-49,0v-11,-20,-25,-79,-43,-164v-21,-97,-63,-145,-152,-145r-105,0r0,309r-48,0r0,-665v42,-9,99,-14,146,-14xm129,-631r0,283r107,0v104,0,172,-58,172,-147v0,-103,-76,-145,-182,-145v-46,0,-80,5,-97,9xm204,199r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":505,"k":{"T":-15,"\u0166":-15,"\u0164":-15,"\u021a":-15,"C":-8,"G":-8,"O":-8,"Q":-8,"\u0152":-8,"\u0106":-8,"\u010c":-8,"\u0108":-8,"\u010a":-8,"\u011e":-8,"\u011c":-8,"\u0122":-8,"\u0120":-8,"\u014e":-8,"\u0150":-8,"\u014c":-8,"V":-29,"W":-29,"\u0174":-29,"X":-4,"Y":6,"\u0178":6,"a":-14,"\u0103":-14,"\u0101":-14,"\u0105":-14,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5,"t":-24,"\u0167":-24,"\u0165":-24,"\u021b":-24,"v":-20,"w":-20,"y":-20,"\u0175":-20,"b":-10,"h":-10,"k":-10,"l":-10,"\u0142":-10,"\u0127":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013e":-10,"\u013c":-10,"\u0140":-10,"i":-11,"m":-11,"n":-11,"p":-11,"r":-11,"\u0131":-11,"\u014b":-11,"\u012d":-11,"\u0133":-11,"\u012b":-11,"\u012f":-11,"\u0129":-11,"\u0144":-11,"\u0148":-11,"\u0146":-11,"\u0155":-11,"\u0159":-11,"\u0157":-11,"\u0138":-11}},"\u015a":{"d":"42,-35r18,-39v38,26,91,44,147,44v101,0,163,-57,163,-140v0,-75,-39,-121,-137,-157v-108,-40,-173,-95,-173,-186v0,-99,81,-171,196,-171v63,0,111,16,134,31r-18,41v-18,-13,-61,-32,-119,-32v-109,0,-146,70,-146,123v0,74,43,111,140,150v111,44,170,96,170,196v0,98,-70,185,-214,185v-58,0,-126,-19,-161,-45xm303,-827r73,0r-131,113r-40,0","w":464,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5}},"\u015e":{"d":"42,-35r18,-39v38,26,91,44,148,44v100,0,162,-57,162,-140v0,-75,-39,-121,-136,-157v-109,-40,-174,-95,-174,-186v0,-99,81,-171,196,-171v63,0,111,16,134,31r-18,41v-18,-13,-61,-32,-119,-32v-109,0,-146,70,-146,123v0,74,43,111,140,150v111,44,170,96,170,196v0,86,-53,162,-163,181r-32,48v38,5,69,32,69,70v0,75,-102,90,-155,58r11,-34v29,16,101,24,101,-22v0,-30,-35,-41,-77,-46r42,-70v-65,2,-133,-18,-171,-45","w":464},"\uf6c1":{"d":"42,-35r18,-39v38,26,91,44,148,44v100,0,162,-57,162,-140v0,-75,-39,-121,-136,-157v-109,-40,-174,-95,-174,-186v0,-99,81,-171,196,-171v63,0,111,16,134,31r-18,41v-18,-13,-61,-32,-119,-32v-109,0,-146,70,-146,123v0,74,43,111,140,150v111,44,170,96,170,196v0,86,-53,162,-163,181r-32,48v38,5,69,32,69,70v0,75,-102,90,-155,58r11,-34v29,16,101,24,101,-22v0,-30,-35,-41,-77,-46r42,-70v-65,2,-133,-18,-171,-45","w":464,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5}},"\u015c":{"d":"42,-35r18,-39v38,26,91,44,147,44v101,0,163,-57,163,-140v0,-75,-39,-121,-137,-157v-108,-40,-173,-95,-173,-186v0,-99,81,-171,196,-171v63,0,111,16,134,31r-18,41v-18,-13,-61,-32,-119,-32v-109,0,-146,70,-146,123v0,74,43,111,140,150v111,44,170,96,170,196v0,98,-70,185,-214,185v-58,0,-126,-19,-161,-45xm214,-824r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":464,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"\u0153":-5,"\u0107":-5,"\u010d":-5,"\u0109":-5,"\u010b":-5,"\u010f":-5,"\u0111":-5,"\u0115":-5,"\u011b":-5,"\u0117":-5,"\u0113":-5,"\u0119":-5,"\u014f":-5,"\u0151":-5,"\u014d":-5}},"\u0166":{"d":"477,-634r-220,0r0,257r130,0r0,39r-130,0r0,338r-48,0r0,-338r-130,0r0,-39r130,0r0,-257r-220,0r0,-40r488,0r0,40","w":465,"k":{"\u0129":40,"\u012f":40,"\u012b":40,"\u0133":40,"\u012d":40,"\u0131":40,"i":40,"T":-47,"\u0166":-47,"\u0164":-47,"\u021a":-47,"J":38,"\u0134":38,"C":26,"G":26,"O":26,"Q":26,"\u0152":26,"\u0106":26,"\u010c":26,"\u0108":26,"\u010a":26,"\u011e":26,"\u011c":26,"\u0122":26,"\u0120":26,"\u014e":26,"\u0150":26,"\u014c":26,"V":-48,"W":-48,"\u0174":-48,"X":-24,"Y":-40,"\u0178":-40,"A":76,"\u0102":76,"\u0100":76,"\u0104":76,"S":4,"\u0160":4,"\u015a":4,"\uf6c1":4,"\u015c":4,"a":62,"\u0103":62,"\u0101":62,"\u0105":62,"g":66,"\u011f":66,"\u011d":66,"\u0123":66,"\u0121":66,"c":66,"d":66,"e":66,"o":66,"q":66,"\u0153":66,"\u0107":66,"\u010d":66,"\u0109":66,"\u010b":66,"\u010f":66,"\u0111":66,"\u0115":66,"\u011b":66,"\u0117":66,"\u0113":66,"\u0119":66,"\u014f":66,"\u0151":66,"\u014d":66,"s":41,"\u0161":41,"\u015b":41,"\uf6c2":41,"\u015d":41,"u":40,"\u016d":40,"\u0171":40,"\u016b":40,"\u0173":40,"\u016f":40,"\u0169":40,"v":33,"w":33,"y":33,"\u0175":33,"z":47,"\u017e":47,"\u017a":47,"\u017c":47,"b":4,"h":4,"k":4,"l":4,"\u0142":4,"\u0127":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"m":40,"n":40,"p":40,"r":40,"\u014b":40,"\u0144":40,"\u0148":40,"\u0146":40,"\u0155":40,"\u0159":40,"\u0157":40,"\u0138":40,"x":46,":":20,";":20,"\u00ad":46,")":-78,"]":-78,"}":-78,"\"":-22,"'":-22,",":45,".":45}},"\u0164":{"d":"209,0r0,-634r-220,0r0,-40r488,0r0,40r-220,0r0,634r-48,0xm253,-710r-38,0r-107,-109r53,0v26,24,47,52,75,74r71,-74r50,0","w":465,"k":{"\u0129":40,"\u012f":40,"\u012b":40,"\u0133":40,"\u012d":40,"\u0131":40,"i":40,"T":-47,"\u0166":-47,"\u0164":-47,"\u021a":-47,"J":38,"\u0134":38,"C":26,"G":26,"O":26,"Q":26,"\u0152":26,"\u0106":26,"\u010c":26,"\u0108":26,"\u010a":26,"\u011e":26,"\u011c":26,"\u0122":26,"\u0120":26,"\u014e":26,"\u0150":26,"\u014c":26,"V":-48,"W":-48,"\u0174":-48,"X":-24,"Y":-40,"\u0178":-40,"A":76,"\u0102":76,"\u0100":76,"\u0104":76,"S":4,"\u0160":4,"\u015a":4,"\uf6c1":4,"\u015c":4,"a":62,"\u0103":62,"\u0101":62,"\u0105":62,"g":66,"\u011f":66,"\u011d":66,"\u0123":66,"\u0121":66,"c":66,"d":66,"e":66,"o":66,"q":66,"\u0153":66,"\u0107":66,"\u010d":66,"\u0109":66,"\u010b":66,"\u010f":66,"\u0111":66,"\u0115":66,"\u011b":66,"\u0117":66,"\u0113":66,"\u0119":66,"\u014f":66,"\u0151":66,"\u014d":66,"s":41,"\u0161":41,"\u015b":41,"\uf6c2":41,"\u015d":41,"u":40,"\u016d":40,"\u0171":40,"\u016b":40,"\u0173":40,"\u016f":40,"\u0169":40,"v":33,"w":33,"y":33,"\u0175":33,"z":47,"\u017e":47,"\u017a":47,"\u017c":47,"b":4,"h":4,"k":4,"l":4,"\u0142":4,"\u0127":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"m":40,"n":40,"p":40,"r":40,"\u014b":40,"\u0144":40,"\u0148":40,"\u0146":40,"\u0155":40,"\u0159":40,"\u0157":40,"\u0138":40,"x":46,":":20,";":20,"\u00ad":46,")":-78,"]":-78,"}":-78,"\"":-22,"'":-22,",":45,".":45}},"\u0162":{"d":"209,0r0,-634r-220,0r0,-40r488,0r0,40r-220,0r0,634r-48,0xm174,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":465,"k":{"\u0129":5,"\u012f":5,"\u012b":5,"\u0133":5,"\u012d":-68,"\u0131":5,"i":5}},"\u021a":{"d":"209,0r0,-634r-220,0r0,-40r488,0r0,40r-220,0r0,634r-48,0xm174,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":465,"k":{"T":-47,"\u0166":-47,"\u0164":-47,"\u021a":-47,"J":38,"\u0134":38,"C":26,"G":26,"O":26,"Q":26,"\u0152":26,"\u0106":26,"\u010c":26,"\u0108":26,"\u010a":26,"\u011e":26,"\u011c":26,"\u0122":26,"\u0120":26,"\u014e":26,"\u0150":26,"\u014c":26,"V":-48,"W":-48,"\u0174":-48,"X":-24,"Y":-40,"\u0178":-40,"A":76,"\u0102":76,"\u0100":76,"\u0104":76,"S":4,"\u0160":4,"\u015a":4,"\uf6c1":4,"\u015c":4,"a":62,"\u0103":62,"\u0101":62,"\u0105":62,"g":66,"\u011f":66,"\u011d":66,"\u0123":66,"\u0121":66,"c":66,"d":66,"e":66,"o":66,"q":66,"\u0153":66,"\u0107":66,"\u010d":66,"\u0109":66,"\u010b":66,"\u010f":66,"\u0111":66,"\u0115":66,"\u011b":66,"\u0117":66,"\u0113":66,"\u0119":66,"\u014f":66,"\u0151":66,"\u014d":66,"s":41,"\u0161":41,"\u015b":41,"\uf6c2":41,"\u015d":41,"u":40,"\u016d":40,"\u0171":40,"\u016b":40,"\u0173":40,"\u016f":40,"\u0169":40,"v":33,"w":33,"y":33,"\u0175":33,"z":47,"\u017e":47,"\u017a":47,"\u017c":47,"b":4,"h":4,"k":4,"l":4,"\u0142":4,"\u0127":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"i":40,"m":40,"n":40,"p":40,"r":40,"\u0131":40,"\u014b":40,"\u012d":40,"\u0133":40,"\u012b":40,"\u012f":40,"\u0129":40,"\u0144":40,"\u0148":40,"\u0146":40,"\u0155":40,"\u0159":40,"\u0157":40,"\u0138":40,"x":46,":":20,";":20,"\u00ad":46,")":-78,"]":-78,"}":-78,"\"":-22,"'":-22,",":45,".":45}},"\u016c":{"d":"81,-674r48,0r0,407v0,172,80,238,179,238v112,0,189,-72,189,-238r0,-407r48,0r0,403v0,207,-112,282,-239,282v-118,0,-225,-68,-225,-275r0,-410xm199,-821r35,0v6,23,26,50,80,50v52,0,73,-24,78,-50r35,0v-2,50,-35,93,-115,93v-78,0,-111,-42,-113,-93","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"\u0170":{"d":"81,-674r48,0r0,407v0,172,80,238,179,238v112,0,189,-72,189,-238r0,-407r48,0r0,403v0,207,-112,282,-239,282v-118,0,-225,-68,-225,-275r0,-410xm298,-822r68,0r-118,109r-39,0xm424,-822r68,0r-118,109r-39,0","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"\u016a":{"d":"81,-674r48,0r0,407v0,172,80,238,179,238v112,0,189,-72,189,-238r0,-407r48,0r0,403v0,207,-112,282,-239,282v-118,0,-225,-68,-225,-275r0,-410xm199,-772r228,0r0,39r-228,0r0,-39","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"\u0172":{"d":"393,147r9,29v-53,37,-149,20,-149,-55v0,-41,29,-80,58,-110v-128,-1,-230,-69,-230,-275r0,-410r48,0r0,407v0,172,80,238,180,238v111,0,188,-72,188,-238r0,-407r48,0r0,403v0,173,-81,254,-181,273v-29,25,-66,70,-66,109v0,51,59,56,95,36","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"\u016e":{"d":"81,-674r48,0r0,407v0,172,80,238,179,238v112,0,189,-72,189,-238r0,-407r48,0r0,403v0,207,-112,282,-239,282v-118,0,-225,-68,-225,-275r0,-410xm223,-778v0,-47,37,-86,92,-86v52,0,89,38,89,86v0,47,-40,83,-90,83v-53,0,-91,-37,-91,-83xm364,-780v0,-31,-21,-56,-52,-56v-30,0,-49,27,-49,58v0,27,21,54,50,54v30,0,51,-25,51,-56","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"\u0168":{"d":"81,-674r48,0r0,407v0,172,80,238,179,238v112,0,189,-72,189,-238r0,-407r48,0r0,403v0,207,-112,282,-239,282v-118,0,-225,-68,-225,-275r0,-410xm368,-721v-30,0,-80,-39,-109,-39v-19,0,-25,18,-28,44r-33,0v-1,-46,22,-86,63,-86v33,0,69,38,107,38v15,0,25,-6,27,-37r33,0v0,46,-18,80,-60,80","w":626,"k":{"A":38,"\u0102":38,"\u0100":38,"\u0104":38,"f":-8,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,",":30,".":30}},"\u0174":{"d":"238,0r-45,0r-178,-674r49,0r98,380v22,87,43,168,56,231r2,0v42,-188,120,-419,172,-611r46,0r100,377v24,81,40,169,57,234v15,-73,36,-146,61,-232r111,-379r49,0r-202,674r-46,0r-101,-388v-27,-99,-43,-165,-52,-228r-2,0v-39,184,-123,427,-175,616xm390,-819r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":820,"k":{"\u012d":9,"T":-40,"\u0166":-40,"\u0164":-40,"\u021a":-40,"J":12,"\u0134":12,"C":-5,"G":-5,"O":-5,"Q":-5,"\u0152":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"V":-22,"W":-22,"\u0174":-22,"A":60,"\u0102":60,"\u0100":60,"\u0104":60,"S":-7,"\u0160":-7,"\u015a":-7,"\uf6c1":-7,"\u015c":-7,"a":28,"\u0103":28,"\u0101":28,"\u0105":28,"g":10,"\u011f":10,"\u011d":10,"\u0123":10,"\u0121":10,"c":26,"d":26,"e":26,"o":26,"q":26,"\u0153":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"s":16,"\u0161":16,"\u015b":16,"\uf6c2":16,"\u015d":16,"t":-19,"\u0167":-19,"\u0165":-19,"\u021b":-19,"u":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"z":5,"\u017e":5,"\u017a":5,"\u017c":5,"i":9,"m":9,"n":9,"p":9,"r":9,"\u0131":9,"\u014b":9,"\u0133":9,"\u012b":9,"\u012f":9,"\u0129":9,"\u0144":9,"\u0148":9,"\u0146":9,"\u0155":9,"\u0159":9,"\u0157":9,"\u0138":9,":":12,";":12,"\u00ad":8,")":-71,"]":-71,"}":-71,"\"":-22,"'":-22,",":46,".":46}},"\u0176":{"d":"277,0r-48,0r0,-292r-214,-382r53,0r188,346r2,0v53,-111,131,-236,193,-346r53,0r-227,383r0,291xm234,-819r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":503},"\u0179":{"d":"34,0r0,-31r406,-600r0,-3r-373,0r0,-40r434,0r0,32r-407,599r0,3r412,0r0,40r-472,0xm343,-823r73,0r-131,113r-40,0","w":539,"k":{"C":21,"G":21,"O":21,"Q":21,"\u0152":21,"\u0106":21,"\u010c":21,"\u0108":21,"\u010a":21,"\u011e":21,"\u011c":21,"\u0122":21,"\u0120":21,"\u014e":21,"\u0150":21,"\u014c":21,"X":8,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":14,"d":14,"e":14,"o":14,"q":14,"\u0153":14,"\u0107":14,"\u010d":14,"\u0109":14,"\u010b":14,"\u010f":14,"\u0111":14,"\u0115":14,"\u011b":14,"\u0117":14,"\u0113":14,"\u0119":14,"\u014f":14,"\u0151":14,"\u014d":14,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":5,"w":5,"y":5,"\u0175":5,"\u00ad":38}},"\u017b":{"d":"34,0r0,-31r406,-600r0,-3r-373,0r0,-40r434,0r0,32r-407,599r0,3r412,0r0,40r-472,0xm312,-764v0,20,-16,40,-39,39v-49,-2,-44,-78,2,-78v21,0,37,20,37,39","w":539,"k":{"C":21,"G":21,"O":21,"Q":21,"\u0152":21,"\u0106":21,"\u010c":21,"\u0108":21,"\u010a":21,"\u011e":21,"\u011c":21,"\u0122":21,"\u0120":21,"\u014e":21,"\u0150":21,"\u014c":21,"X":8,"A":6,"\u0102":6,"\u0100":6,"\u0104":6,"c":14,"d":14,"e":14,"o":14,"q":14,"\u0153":14,"\u0107":14,"\u010d":14,"\u0109":14,"\u010b":14,"\u010f":14,"\u0111":14,"\u0115":14,"\u011b":14,"\u0117":14,"\u0113":14,"\u0119":14,"\u014f":14,"\u0151":14,"\u014d":14,"u":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":5,"w":5,"y":5,"\u0175":5,"\u00ad":38}},"\u0130":{"d":"81,-674r48,0r0,674r-48,0r0,-674xm142,-766v0,20,-16,40,-39,39v-49,-2,-44,-78,2,-78v21,0,37,20,37,39","w":211,"k":{"f":-14,"t":-22,"\u0167":-22,"\u0165":-22,"\u021b":-22,"v":-14,"w":-14,"y":-14,"\u0175":-14,"z":-16,"\u017e":-16,"\u017a":-16,"\u017c":-16,"b":-15,"h":-15,"k":-15,"l":-15,"\u0142":-15,"\u0127":-15,"\u0125":-15,"\u0137":-15,"\u013a":-15,"\u013e":-15,"\u013c":-15,"\u0140":-15,"i":-15,"m":-15,"n":-15,"p":-15,"r":-15,"\u0131":-15,"\u014b":-15,"\u012d":-15,"\u0133":-15,"\u012b":-15,"\u012f":-15,"\u0129":-15,"\u0144":-15,"\u0148":-15,"\u0146":-15,"\u0155":-15,"\u0159":-15,"\u0157":-15,"\u0138":-15,"j":-14,"\u0135":-14,"x":-10}},"\u0103":{"d":"214,-491v254,0,134,269,173,491r-44,0v-4,-22,-1,-51,-9,-69v-24,37,-77,80,-154,80v-97,0,-141,-68,-141,-132v0,-111,97,-178,293,-176v1,-63,-3,-154,-123,-154v-42,0,-86,11,-121,36r-15,-35v44,-29,98,-41,141,-41xm185,-29v92,0,147,-52,147,-125r0,-103v-105,-3,-243,13,-243,128v0,69,46,100,96,100xm112,-676r36,0v6,41,35,74,79,74v52,0,76,-39,79,-74r36,0v0,69,-49,114,-115,114v-85,0,-115,-62,-115,-114","w":454},"\u0101":{"d":"214,-491v254,0,134,269,173,491r-44,0v-4,-22,-1,-51,-9,-69v-24,37,-77,80,-154,80v-97,0,-141,-68,-141,-132v0,-111,97,-178,293,-176v1,-63,-3,-154,-123,-154v-42,0,-86,11,-121,36r-15,-35v44,-29,98,-41,141,-41xm185,-29v92,0,147,-52,147,-125r0,-103v-105,-3,-243,13,-243,128v0,69,46,100,96,100xm123,-629r210,0r0,40r-210,0r0,-40","w":454},"\u0105":{"d":"214,-491v254,0,134,270,173,491r-6,0v-19,22,-51,70,-51,111v0,55,60,57,95,39r9,30v-55,35,-149,20,-149,-57v0,-50,34,-95,57,-128v-4,-20,-1,-47,-8,-64v-24,37,-77,80,-154,80v-97,0,-141,-68,-141,-132v0,-111,97,-178,293,-176v1,-63,-3,-154,-123,-154v-42,0,-86,11,-121,36r-15,-35v44,-29,98,-41,141,-41xm185,-29v92,0,147,-52,147,-125r0,-103v-105,-3,-243,13,-243,128v0,69,46,100,96,100","w":454},"\u0107":{"d":"399,-59r13,38v-21,10,-71,31,-141,31v-138,0,-230,-101,-230,-245v0,-153,104,-256,247,-256v59,0,108,17,126,30r-17,39v-23,-14,-60,-28,-113,-28v-129,0,-195,98,-195,211v0,126,79,208,190,208v57,0,94,-16,120,-28xm309,-688r70,0r-122,138r-37,0","w":446,"k":{"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"t":-11,"\u0167":-11,"\u0165":-11,"\u021b":-11,"v":-19,"w":-19,"y":-19,"\u0175":-19,",":11,".":11}},"\u010d":{"d":"399,-59r13,38v-21,10,-71,31,-141,31v-138,0,-230,-101,-230,-245v0,-153,104,-256,247,-256v59,0,108,17,126,30r-17,39v-23,-14,-60,-28,-113,-28v-129,0,-195,98,-195,211v0,126,79,208,190,208v57,0,94,-16,120,-28xm278,-550r-38,0r-94,-138r48,0v23,32,41,70,66,100r64,-100r45,0","w":446,"k":{"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"t":-11,"\u0167":-11,"\u0165":-11,"\u021b":-11,"v":-19,"w":-19,"y":-19,"\u0175":-19,",":11,".":11}},"\u0109":{"d":"399,-59r13,38v-21,10,-71,31,-141,31v-138,0,-230,-101,-230,-245v0,-153,104,-256,247,-256v59,0,108,17,126,30r-17,39v-23,-14,-60,-28,-113,-28v-129,0,-195,98,-195,211v0,126,79,208,190,208v57,0,94,-16,120,-28xm239,-688r35,0r94,138r-48,0v-22,-32,-39,-69,-64,-99r-63,99r-45,0","w":446,"k":{"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"t":-11,"\u0167":-11,"\u0165":-11,"\u021b":-11,"v":-19,"w":-19,"y":-19,"\u0175":-19,",":11,".":11}},"\u010b":{"d":"399,-59r13,38v-21,10,-71,31,-141,31v-138,0,-230,-101,-230,-245v0,-153,104,-256,247,-256v59,0,108,17,126,30r-17,39v-23,-14,-60,-28,-113,-28v-129,0,-195,98,-195,211v0,126,79,208,190,208v57,0,94,-16,120,-28xm296,-618v0,21,-15,40,-39,40v-21,0,-37,-19,-37,-40v0,-21,17,-40,39,-40v21,0,37,19,37,40","w":446,"k":{"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"t":-11,"\u0167":-11,"\u0165":-11,"\u021b":-11,"v":-19,"w":-19,"y":-19,"\u0175":-19,",":11,".":11}},"\u010f":{"d":"416,-711r48,0r0,600v0,35,1,77,4,111r-43,0v-3,-29,1,-66,-6,-91v-25,53,-82,102,-171,102v-119,0,-207,-99,-207,-242v-1,-160,98,-260,216,-260v85,0,134,46,159,85r0,-305xm257,-29v79,0,156,-63,159,-165r0,-96v-1,-96,-64,-161,-156,-161v-105,0,-171,91,-171,215v0,108,54,207,168,207xm531,-538r-20,-23v17,-14,41,-38,41,-81v0,-25,-16,-49,-37,-63r43,-12v17,11,37,37,37,71v0,66,-50,97,-64,108","w":554,"k":{"\u0140":-25,"\u013c":-25,"\u013e":-25,"\u013a":-25,"\u0137":-25,"\u0125":-25,"\u0127":-25,"\u0142":-25,"l":-25,"k":-25,"h":-25,"b":-25,",":11,".":11}},"\u0111":{"d":"540,-559r-76,0r0,448v0,35,1,77,4,111r-43,0v-3,-29,1,-66,-6,-91v-25,53,-82,102,-171,102v-119,0,-207,-99,-207,-242v-1,-160,98,-260,216,-260v85,0,134,46,159,85r0,-153r-208,0r0,-39r208,0r0,-113r48,0r0,113r76,0r0,39xm257,-29v79,0,156,-63,159,-165r0,-96v-1,-96,-64,-161,-156,-161v-105,0,-171,91,-171,215v0,108,54,207,168,207","w":544,"k":{",":11,".":11}},"\u0115":{"d":"442,-245r-354,0v0,153,84,214,183,214v70,0,106,-14,133,-27r12,37v-18,10,-67,31,-151,31v-138,0,-224,-100,-224,-241v0,-160,92,-260,216,-260v157,0,187,148,187,217v0,13,0,20,-2,29xm91,-283r303,0v1,-67,-27,-168,-143,-168v-106,0,-151,94,-160,168xm130,-676r36,0v6,41,35,74,79,74v52,0,76,-39,79,-74r36,0v0,69,-49,114,-115,114v-85,0,-115,-62,-115,-114","w":485,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"\u011b":{"d":"442,-245r-354,0v0,153,84,214,183,214v70,0,106,-14,133,-27r12,37v-18,10,-67,31,-151,31v-138,0,-224,-100,-224,-241v0,-160,92,-260,216,-260v157,0,187,148,187,217v0,13,0,20,-2,29xm91,-283r303,0v1,-67,-27,-168,-143,-168v-106,0,-151,94,-160,168xm266,-550r-38,0r-94,-138r48,0v23,32,41,70,66,100r64,-100r45,0","w":485,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"\u0117":{"d":"442,-245r-354,0v0,153,84,214,183,214v70,0,106,-14,133,-27r12,37v-18,10,-67,31,-151,31v-138,0,-224,-100,-224,-241v0,-160,92,-260,216,-260v157,0,187,148,187,217v0,13,0,20,-2,29xm91,-283r303,0v1,-67,-27,-168,-143,-168v-106,0,-151,94,-160,168xm284,-618v0,21,-15,40,-39,40v-21,0,-37,-19,-37,-40v0,-21,17,-40,39,-40v21,0,37,19,37,40","w":485,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"\u0113":{"d":"442,-245r-354,0v0,153,84,214,183,214v70,0,106,-14,133,-27r12,37v-18,10,-67,31,-151,31v-138,0,-224,-100,-224,-241v0,-160,92,-260,216,-260v157,0,187,148,187,217v0,13,0,20,-2,29xm91,-283r303,0v1,-67,-27,-168,-143,-168v-106,0,-151,94,-160,168xm141,-629r210,0r0,40r-210,0r0,-40","w":485,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"\u014b":{"d":"279,-451v-80,0,-150,61,-150,153r0,298r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,63,5,86v26,-54,87,-97,165,-97v46,0,168,23,168,203r0,229v0,139,-78,211,-179,228r-9,-41v92,-19,140,-81,140,-189v0,-169,45,-390,-133,-390","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"\u0119":{"d":"416,-21v-68,22,-147,63,-147,133v0,55,56,54,94,37r9,30v-53,35,-148,21,-148,-57v0,-47,44,-90,77,-114v-161,18,-259,-86,-260,-239v0,-160,92,-260,216,-260v157,0,187,148,187,217v0,13,0,21,-2,29r-354,0v0,153,83,214,182,214v71,0,107,-14,134,-27xm91,-283r303,0v1,-67,-27,-168,-144,-168v-105,0,-150,94,-159,168","w":485,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"v":-4,"w":-4,"y":-4,"\u0175":-4,"\u00ad":-26,",":10,".":10}},"\u011f":{"d":"468,-480v-8,123,-4,278,-4,410v0,123,-26,185,-66,222v-83,77,-226,72,-316,15r17,-38v34,22,81,40,143,40v101,0,174,-52,174,-194v0,-21,4,-51,-2,-68v-25,49,-81,93,-167,93v-121,0,-206,-105,-206,-236v0,-167,110,-255,216,-255v98,0,139,55,164,92r3,-81r44,0xm259,-40v77,0,157,-61,157,-159v0,-48,7,-104,-6,-143v-19,-57,-70,-109,-149,-109v-102,0,-172,83,-172,210v0,108,57,201,170,201xm144,-676r36,0v6,41,35,74,79,74v52,0,76,-39,79,-74r36,0v0,69,-49,114,-115,114v-85,0,-115,-62,-115,-114","w":544,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"f":-6,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u012d":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,",":14,".":14}},"\u011d":{"d":"468,-480v-8,123,-4,278,-4,410v0,123,-26,185,-66,222v-83,77,-226,72,-316,15r17,-38v34,22,81,40,143,40v101,0,174,-52,174,-194v0,-21,4,-51,-2,-68v-25,49,-81,93,-167,93v-121,0,-206,-105,-206,-236v0,-167,110,-255,216,-255v98,0,139,55,164,92r3,-81r44,0xm259,-40v77,0,157,-61,157,-159v0,-48,7,-104,-6,-143v-19,-57,-70,-109,-149,-109v-102,0,-172,83,-172,210v0,108,57,201,170,201xm251,-693r35,0r94,138r-48,0v-22,-32,-39,-69,-64,-99r-63,99r-45,0","w":544,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"f":-6,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u012d":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,",":14,".":14}},"\u0123":{"d":"468,-480v-8,123,-4,278,-4,410v0,123,-26,185,-66,222v-83,77,-226,72,-316,15r17,-38v34,22,81,40,143,40v101,0,174,-52,174,-194v0,-21,4,-51,-2,-68v-25,49,-81,93,-167,93v-121,0,-206,-105,-206,-236v0,-167,110,-255,216,-255v98,0,139,55,164,92r3,-81r44,0xm259,-40v78,0,157,-61,157,-159v0,-48,7,-104,-6,-143v-19,-57,-70,-109,-149,-109v-102,0,-172,83,-172,210v0,108,57,201,170,201xm322,-700r13,26v-42,6,-81,25,-81,68v0,24,16,47,37,62r-40,11v-20,-12,-40,-39,-40,-70v0,-68,65,-93,111,-97","w":544,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"f":-6,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u012d":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,",":14,".":14}},"\u0121":{"d":"468,-480v-8,123,-4,278,-4,410v0,123,-26,185,-66,222v-83,77,-226,72,-316,15r17,-38v34,22,81,40,143,40v101,0,174,-52,174,-194v0,-21,4,-51,-2,-68v-25,49,-81,93,-167,93v-121,0,-206,-105,-206,-236v0,-167,110,-255,216,-255v98,0,139,55,164,92r3,-81r44,0xm259,-40v77,0,157,-61,157,-159v0,-48,7,-104,-6,-143v-19,-57,-70,-109,-149,-109v-102,0,-172,83,-172,210v0,108,57,201,170,201xm310,-623v0,21,-15,40,-39,40v-21,0,-37,-19,-37,-40v0,-21,17,-40,39,-40v21,0,37,19,37,40","w":544,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"f":-6,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u014b":8,"\u012d":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,",":14,".":14}},"\u0127":{"d":"131,-394v27,-52,86,-96,162,-97v45,0,167,23,167,202r0,289r-48,0r0,-284v0,-86,-34,-165,-132,-165v-81,0,-151,61,-151,156r0,293r-48,0r0,-559r-76,0r0,-39r76,0r0,-113r48,0r0,113r200,0r0,39r-200,0r0,165r2,0","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"\u0125":{"d":"280,-449v-81,0,-151,61,-151,156r0,293r-48,0r0,-711r48,0r0,317r2,0v27,-52,86,-96,162,-97v45,0,167,23,167,202r0,289r-48,0r0,-284v0,-86,-34,-165,-132,-165xm88,-835r38,0r107,109r-53,0v-25,-24,-46,-52,-74,-74r-72,74r-50,0","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"\u012d":{"d":"129,0r-48,0r0,-480r48,0r0,480xm-6,-676r36,0v6,41,35,74,79,74v52,0,76,-39,79,-74r36,0v0,69,-49,114,-115,114v-85,0,-115,-62,-115,-114","w":209},"\u0133":{"d":"129,0r-48,0r0,-480r48,0r0,480xm143,-617v0,22,-15,41,-40,41v-22,0,-37,-19,-37,-41v0,-22,17,-42,39,-42v22,0,38,19,38,42xm167,209r-7,-39v42,-2,78,-15,100,-40v25,-30,36,-68,36,-195r0,-415r48,0r0,447v0,86,-10,145,-51,190v-35,38,-95,51,-126,52xm358,-617v0,21,-14,41,-40,41v-22,0,-37,-20,-37,-41v0,-22,17,-42,40,-42v22,0,37,20,37,42","w":423,"k":{",":11,".":11}},"\u012b":{"d":"129,0r-48,0r0,-480r48,0r0,480xm1,-629r210,0r0,40r-210,0r0,-40","w":209},"\u012f":{"d":"143,-624v0,22,-15,41,-40,41v-22,0,-37,-19,-37,-41v0,-22,17,-42,39,-42v22,0,38,19,38,42xm129,-480r0,480r-6,0v-19,23,-54,73,-54,116v0,55,60,56,96,39r8,30v-54,35,-149,20,-149,-57v0,-50,34,-96,57,-128r0,-480r48,0","w":209},"\u0129":{"d":"129,0r-48,0r0,-480r48,0r0,480xm157,-579v-45,0,-124,-88,-129,7r-34,0v-1,-54,23,-88,60,-88v41,0,121,91,130,-3r33,0v0,50,-17,84,-60,84","w":209},"\u0135":{"d":"-42,209r-7,-39v42,-2,78,-15,100,-40v25,-30,36,-68,36,-195r0,-415r48,0r0,447v0,86,-10,145,-51,190v-35,38,-95,51,-126,52xm87,-678r35,0r94,138r-48,0v-23,-32,-40,-69,-65,-99r-62,99r-45,0","w":214,"k":{",":11,".":11}},"\u0137":{"d":"128,-711r0,462v16,-12,32,-37,48,-53r170,-178r58,0r-194,199r221,281r-58,0r-196,-252r-49,52r0,200r-48,0r0,-711r48,0xm163,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":423,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"a":-26,"\u0103":-26,"\u0101":-26,"\u0105":-26,"g":-11,"\u011f":-11,"\u011d":-11,"\u0123":-11,"\u0121":-11,"c":-11,"d":-11,"e":-11,"o":-11,"q":-11,"\u0153":-11,"\u0107":-11,"\u010d":-11,"\u0109":-11,"\u010b":-11,"\u010f":-11,"\u0111":-11,"\u0115":-11,"\u011b":-11,"\u0117":-11,"\u0113":-11,"\u0119":-11,"\u014f":-11,"\u0151":-11,"\u014d":-11,"u":-7,"\u016d":-7,"\u0171":-7,"\u016b":-7,"\u0173":-7,"\u016f":-7,"\u0169":-7,"v":-19,"w":-19,"y":-19,"\u0175":-19,"b":-22,"h":-22,"k":-22,"l":-22,"\u0142":-22,"\u0127":-22,"\u0125":-22,"\u0137":-22,"\u013a":-22,"\u013e":-22,"\u013c":-22,"\u0140":-22,"i":-22,"m":-22,"n":-22,"p":-22,"r":-22,"\u0131":-22,"\u014b":-22,"\u012d":-22,"\u0133":-22,"\u012b":-22,"\u012f":-22,"\u0129":-22,"\u0144":-22,"\u0148":-22,"\u0146":-22,"\u0155":-22,"\u0159":-22,"\u0157":-22,"\u0138":-22,":":-15,";":-15,"\u00ad":13,",":-20,".":-20}},"\u013a":{"d":"81,0r0,-711r48,0r0,711r-48,0xm159,-852r73,0r-131,113r-40,0","w":212,"k":{",":11,".":11}},"\u013e":{"d":"81,0r0,-711r48,0r0,711r-48,0xm191,-539r-20,-22v17,-14,41,-38,41,-81v0,-25,-16,-49,-37,-63r43,-12v17,11,37,37,37,71v0,66,-50,97,-64,107","w":219,"k":{",":11,".":11}},"\u013c":{"d":"81,0r0,-711r48,0r0,711r-48,0xm49,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":212,"k":{",":11,".":11}},"\u0140":{"d":"81,0r0,-711r48,0r0,711r-48,0xm251,-388v0,20,-15,39,-38,39v-21,0,-36,-19,-36,-39v0,-20,16,-39,38,-39v21,0,36,18,36,39","w":222,"k":{",":11,".":11}},"\u0144":{"d":"279,-451v-80,0,-150,61,-150,153r0,298r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,63,5,86v26,-54,87,-97,165,-97v46,0,168,23,168,203r0,288r-48,0r0,-284v0,-88,-34,-167,-133,-167xm327,-688r70,0r-122,138r-37,0","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"\u0148":{"d":"279,-451v-80,0,-150,61,-150,153r0,298r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,63,5,86v26,-54,87,-97,165,-97v46,0,168,23,168,203r0,288r-48,0r0,-284v0,-88,-34,-167,-133,-167xm289,-550r-38,0r-94,-138r48,0v23,32,41,70,66,100r64,-100r45,0","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"\u0146":{"d":"279,-451v-80,0,-150,61,-150,153r0,298r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,63,5,86v26,-54,87,-97,165,-97v46,0,168,23,168,203r0,288r-48,0r0,-284v0,-88,-34,-167,-133,-167xm220,207r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}},"\u014f":{"d":"491,-244v0,178,-123,255,-230,255v-124,0,-220,-97,-220,-247v0,-164,108,-255,227,-255v133,0,223,100,223,247xm89,-239v0,120,76,210,175,210v100,0,179,-90,179,-213v0,-88,-49,-209,-176,-209v-123,0,-178,109,-178,212xm150,-676r36,0v6,41,35,74,79,74v52,0,76,-39,79,-74r36,0v0,69,-49,114,-115,114v-85,0,-115,-62,-115,-114","w":532,"k":{"T":35,"\u0166":35,"\u0164":35,"\u021a":35,"v":5,"w":5,"y":5,"\u0175":5,"z":6,"\u017e":6,"\u017a":6,"\u017c":6,"x":8,"\u00ad":-14,"\"":5,"'":5,",":18,".":18}},"\u0151":{"d":"491,-244v0,178,-123,255,-230,255v-124,0,-220,-97,-220,-247v0,-164,108,-255,227,-255v133,0,223,100,223,247xm89,-239v0,120,76,210,175,210v100,0,179,-90,179,-213v0,-88,-49,-209,-176,-209v-123,0,-178,109,-178,212xm262,-687r65,0r-118,128r-36,0xm388,-687r65,0r-118,128r-36,0","w":532,"k":{"T":35,"\u0166":35,"\u0164":35,"\u021a":35,"v":5,"w":5,"y":5,"\u0175":5,"z":6,"\u017e":6,"\u017a":6,"\u017c":6,"x":8,"\u00ad":-14,"\"":5,"'":5,",":18,".":18}},"\u014d":{"d":"491,-244v0,178,-123,255,-230,255v-124,0,-220,-97,-220,-247v0,-164,108,-255,227,-255v133,0,223,100,223,247xm89,-239v0,120,76,210,175,210v100,0,179,-90,179,-213v0,-88,-49,-209,-176,-209v-123,0,-178,109,-178,212xm162,-629r210,0r0,40r-210,0r0,-40","w":532,"k":{"T":35,"\u0166":35,"\u0164":35,"\u021a":35,"v":5,"w":5,"y":5,"\u0175":5,"z":6,"\u017e":6,"\u017a":6,"\u017c":6,"x":8,"\u00ad":-14,"\"":5,"'":5,",":18,".":18}},"\u0155":{"d":"281,-444v-100,-13,-153,72,-153,179r0,265r-48,0r0,-336v0,-48,-1,-97,-4,-144r44,0r2,97r3,0v24,-66,77,-118,156,-106r0,45xm220,-688r70,0r-122,138r-37,0","w":295,"k":{"\u0142":-8,"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"f":-32,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"c":11,"d":11,"e":11,"o":11,"q":11,"\u0153":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0111":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"t":-26,"\u0167":-26,"\u0165":-26,"\u021b":-26,"v":-30,"w":-30,"y":-30,"\u0175":-30,"z":-10,"\u017e":-10,"\u017a":-10,"\u017c":-10,"b":-8,"h":-8,"k":-8,"l":-8,"\u0127":-8,"\u0125":-8,"\u0137":-8,"\u013a":-8,"\u013e":-8,"\u013c":-8,"\u0140":-8,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0131":-7,"\u014b":-7,"\u012d":-7,"\u0133":-7,"\u012b":-7,"\u012f":-7,"\u0129":-7,"\u0144":-7,"\u0148":-7,"\u0146":-7,"\u0155":-7,"\u0159":-7,"\u0157":-7,"\u0138":-7,"x":-21,":":-18,";":-18,"\u00ad":8,",":45,".":45}},"\u0159":{"d":"281,-444v-100,-13,-153,72,-153,179r0,265r-48,0r0,-336v0,-48,-1,-97,-4,-144r44,0r2,97r3,0v24,-66,77,-118,156,-106r0,45xm191,-550r-38,0r-94,-138r48,0v23,32,41,70,66,100r64,-100r45,0","w":295,"k":{"\u0142":-8,"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"f":-32,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"c":11,"d":11,"e":11,"o":11,"q":11,"\u0153":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0111":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"t":-26,"\u0167":-26,"\u0165":-26,"\u021b":-26,"v":-30,"w":-30,"y":-30,"\u0175":-30,"z":-10,"\u017e":-10,"\u017a":-10,"\u017c":-10,"b":-8,"h":-8,"k":-8,"l":-8,"\u0127":-8,"\u0125":-8,"\u0137":-8,"\u013a":-8,"\u013e":-8,"\u013c":-8,"\u0140":-8,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0131":-7,"\u014b":-7,"\u012d":-7,"\u0133":-7,"\u012b":-7,"\u012f":-7,"\u0129":-7,"\u0144":-7,"\u0148":-7,"\u0146":-7,"\u0155":-7,"\u0159":-7,"\u0157":-7,"\u0138":-7,"x":-21,":":-18,";":-18,"\u00ad":8,",":45,".":45}},"\u0157":{"d":"281,-444v-100,-13,-153,72,-153,179r0,265r-48,0r0,-336v0,-48,-1,-97,-4,-144r44,0r2,97r3,0v24,-66,77,-118,156,-106r0,45xm57,209r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":295,"k":{"\u0142":-8,"T":10,"\u0166":10,"\u0164":10,"\u021a":10,"f":-32,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"c":11,"d":11,"e":11,"o":11,"q":11,"\u0153":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0111":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"t":-26,"\u0167":-26,"\u0165":-26,"\u021b":-26,"v":-30,"w":-30,"y":-30,"\u0175":-30,"z":-10,"\u017e":-10,"\u017a":-10,"\u017c":-10,"b":-8,"h":-8,"k":-8,"l":-8,"\u0127":-8,"\u0125":-8,"\u0137":-8,"\u013a":-8,"\u013e":-8,"\u013c":-8,"\u0140":-8,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0131":-7,"\u014b":-7,"\u012d":-7,"\u0133":-7,"\u012b":-7,"\u012f":-7,"\u0129":-7,"\u0144":-7,"\u0148":-7,"\u0146":-7,"\u0155":-7,"\u0159":-7,"\u0157":-7,"\u0138":-7,"x":-21,":":-18,";":-18,"\u00ad":8,",":45,".":45}},"\u015b":{"d":"44,-23r17,-40v26,16,65,33,108,33v76,0,112,-41,112,-91v0,-53,-32,-82,-101,-109v-79,-31,-122,-73,-122,-131v0,-70,55,-130,148,-130v44,0,82,13,106,30r-18,39v-17,-12,-48,-29,-96,-29v-61,0,-93,39,-93,83v0,50,34,72,99,98v78,32,124,70,124,143v0,82,-64,137,-162,137v-46,0,-90,-13,-122,-33xm246,-688r70,0r-122,138r-37,0","w":373,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,",":11,".":11}},"\u015f":{"d":"44,-23r17,-40v26,16,65,33,108,33v75,0,112,-41,112,-91v0,-53,-33,-82,-101,-109v-79,-31,-122,-73,-122,-131v0,-70,55,-130,148,-130v44,0,82,13,106,30r-18,39v-17,-12,-49,-29,-96,-29v-61,0,-93,39,-93,83v0,50,34,72,99,98v78,32,124,70,124,143v0,68,-45,118,-118,132r-31,49v36,4,68,29,68,67v2,79,-96,93,-154,61r12,-34v32,18,101,24,101,-22v0,-31,-35,-42,-78,-46r43,-70v-49,1,-93,-12,-127,-33","w":373},"\uf6c2":{"d":"44,-23r17,-40v26,16,65,33,108,33v75,0,112,-41,112,-91v0,-53,-33,-82,-101,-109v-79,-31,-122,-73,-122,-131v0,-70,55,-130,148,-130v44,0,82,13,106,30r-18,39v-17,-12,-49,-29,-96,-29v-61,0,-93,39,-93,83v0,50,34,72,99,98v78,32,124,70,124,143v0,68,-45,118,-118,132r-31,49v36,4,68,29,68,67v2,79,-96,93,-154,61r12,-34v32,18,101,24,101,-22v0,-31,-35,-42,-78,-46r43,-70v-49,1,-93,-12,-127,-33","w":373,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,",":11,".":11}},"\u015d":{"d":"44,-23r17,-40v26,16,65,33,108,33v76,0,112,-41,112,-91v0,-53,-32,-82,-101,-109v-79,-31,-122,-73,-122,-131v0,-70,55,-130,148,-130v44,0,82,13,106,30r-18,39v-17,-12,-48,-29,-96,-29v-61,0,-93,39,-93,83v0,50,34,72,99,98v78,32,124,70,124,143v0,82,-64,137,-162,137v-46,0,-90,-13,-122,-33xm170,-688r35,0r94,138r-48,0v-22,-32,-39,-69,-64,-99r-63,99r-45,0","w":373,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,",":11,".":11}},"\u0167":{"d":"211,10v-128,4,-114,-143,-112,-271r-69,0r0,-39r69,0r0,-141r-81,0r0,-39r81,0r0,-88r48,-18r0,106r137,0r0,39r-137,0r0,141r108,0r0,39r-108,0v4,93,-24,234,70,231v25,0,43,-3,55,-7r6,36v-16,6,-38,11,-67,11","w":309,"k":{"g":6,"\u011f":6,"\u011d":6,"\u0123":6,"\u0121":6,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"v":-11,"w":-11,"y":-11,"\u0175":-11,"\u00ad":8}},"\u0165":{"d":"212,10v-84,0,-113,-60,-113,-148r0,-303r-81,0r0,-39r81,0r0,-88r48,-18r0,106r137,0r0,39r-137,0r0,312v0,61,19,99,71,99v24,0,42,-3,54,-7r6,36v-15,6,-37,11,-66,11xm246,-543r-20,-22v17,-14,41,-37,41,-79v0,-24,-17,-48,-37,-61r43,-12v17,10,37,36,37,69v0,65,-50,95,-64,105","w":319,"k":{"g":6,"\u011f":6,"\u011d":6,"\u0123":6,"\u0121":6,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"v":-11,"w":-11,"y":-11,"\u0175":-11,"\u00ad":8}},"\u0163":{"d":"211,10v-83,0,-112,-60,-112,-148r0,-303r-81,0r0,-39r81,0r0,-88r48,-18r0,106r137,0r0,39r-137,0r0,312v0,61,19,99,70,99v25,0,43,-3,55,-7r6,36v-16,6,-38,11,-67,11xm121,217r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":309},"\u021b":{"d":"211,10v-83,0,-112,-60,-112,-148r0,-303r-81,0r0,-39r81,0r0,-88r48,-18r0,106r137,0r0,39r-137,0r0,312v0,61,19,99,70,99v25,0,43,-3,55,-7r6,36v-16,6,-38,11,-67,11xm121,217r-14,-26v42,-6,81,-25,81,-68v0,-24,-16,-47,-37,-61r40,-12v20,12,40,39,40,70v0,68,-65,93,-110,97","w":309,"k":{"g":6,"\u011f":6,"\u011d":6,"\u0123":6,"\u0121":6,"c":6,"d":6,"e":6,"o":6,"q":6,"\u0153":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0111":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"v":-11,"w":-11,"y":-11,"\u0175":-11,"\u00ad":8}},"\u016d":{"d":"451,-480r0,363v0,42,1,80,4,117r-45,0v-3,-27,2,-63,-5,-86v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179v70,0,122,-49,142,-97v6,-15,9,-34,9,-53r0,-299r48,0xm151,-676r36,0v6,41,35,74,79,74v52,0,76,-39,79,-74r36,0v0,69,-49,114,-115,114v-85,0,-115,-62,-115,-114","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"\u0171":{"d":"451,-480r0,363v0,42,1,80,4,117r-45,0v-3,-27,2,-63,-5,-86v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179v70,0,122,-49,142,-97v6,-15,9,-34,9,-53r0,-299r48,0xm263,-687r65,0r-118,128r-36,0xm389,-687r65,0r-118,128r-36,0","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"\u016b":{"d":"451,-480r0,363v0,42,1,80,4,117r-45,0v-3,-27,2,-63,-5,-86v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179v70,0,122,-49,142,-97v6,-15,9,-34,9,-53r0,-299r48,0xm161,-629r210,0r0,40r-210,0r0,-40","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"\u0173":{"d":"252,-31v88,0,151,-60,151,-150r0,-299r48,0r0,362v0,43,1,82,4,118r-3,-5v-19,24,-54,73,-54,116v0,55,60,57,95,39r9,30v-55,35,-149,20,-149,-57v0,-50,34,-95,57,-128v-3,-26,2,-59,-5,-81v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"\u016f":{"d":"451,-480r0,363v0,42,1,80,4,117r-45,0v-3,-27,2,-63,-5,-86v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179v70,0,122,-49,142,-97v6,-15,9,-34,9,-53r0,-299r48,0xm174,-624v0,-51,38,-91,94,-91v51,0,90,39,90,91v0,50,-43,88,-91,88v-53,0,-93,-39,-93,-88xm321,-626v0,-33,-23,-59,-56,-59v-31,0,-52,28,-52,61v0,29,23,58,53,58v32,0,55,-27,55,-60","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"\u0169":{"d":"451,-480r0,363v0,42,1,80,4,117r-45,0v-3,-27,2,-63,-5,-86v-24,45,-79,97,-164,97v-61,0,-164,-31,-164,-212r0,-279r48,0r0,270v0,104,32,179,127,179v70,0,122,-49,142,-97v6,-15,9,-34,9,-53r0,-299r48,0xm318,-579v-45,0,-124,-88,-129,7r-34,0v-1,-54,23,-88,60,-88v41,0,121,91,130,-3r33,0v0,50,-17,84,-60,84","w":531,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,",":9,".":9}},"\u0175":{"d":"23,-480r49,0r81,273v16,56,30,104,41,150r2,0v12,-44,29,-95,48,-150r96,-273r45,0r92,270v22,58,32,112,49,153v10,-45,25,-93,44,-151r85,-272r49,0r-160,480r-41,0r-91,-268v-22,-57,-34,-113,-52,-163v-40,148,-99,289,-147,431r-42,0xm342,-688r35,0r94,138r-48,0v-22,-32,-39,-69,-64,-99r-63,99r-45,0","w":722,"k":{"T":25,"\u0166":25,"\u0164":25,"\u021a":25,"g":7,"\u011f":7,"\u011d":7,"\u0123":7,"\u0121":7,"c":7,"d":7,"e":7,"o":7,"q":7,"\u0153":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0111":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"v":-8,"w":-8,"y":-8,"\u0175":-8,":":-35,";":-35,",":34,".":34}},"\u0177":{"d":"25,181v76,-32,137,-92,170,-195v0,-4,-2,-11,-6,-21r-178,-445r51,0r126,314v15,33,23,77,37,103v10,-29,22,-67,37,-106r117,-311r51,0r-144,358v-73,189,-118,288,-246,343xm201,-688r35,0r94,138r-48,0v-22,-32,-39,-69,-64,-99r-63,99r-45,0","w":440},"\u017a":{"d":"16,0r0,-29r259,-341v18,-24,39,-45,55,-71r-293,0r0,-39r351,0r-1,32r-310,409r312,0r0,39r-373,0xm263,-688r70,0r-122,138r-37,0","w":403,"k":{"T":15,"\u0166":15,"\u0164":15,"\u021a":15,"c":8,"d":8,"e":8,"o":8,"q":8,"\u0153":8,"\u0107":8,"\u010d":8,"\u0109":8,"\u010b":8,"\u010f":8,"\u0111":8,"\u0115":8,"\u011b":8,"\u0117":8,"\u0113":8,"\u0119":8,"\u014f":8,"\u0151":8,"\u014d":8,"v":-34,"w":-34,"y":-34,"\u0175":-34}},"\u017c":{"d":"16,0r0,-29r259,-341v18,-24,39,-45,55,-71r-293,0r0,-39r351,0r-1,32r-310,409r312,0r0,39r-373,0xm242,-618v0,21,-15,40,-39,40v-21,0,-37,-19,-37,-40v0,-21,17,-40,39,-40v21,0,37,19,37,40","w":403,"k":{"T":15,"\u0166":15,"\u0164":15,"\u021a":15,"c":8,"d":8,"e":8,"o":8,"q":8,"\u0153":8,"\u0107":8,"\u010d":8,"\u0109":8,"\u010b":8,"\u010f":8,"\u0111":8,"\u0115":8,"\u011b":8,"\u0117":8,"\u0113":8,"\u0119":8,"\u014f":8,"\u0151":8,"\u014d":8,"v":-34,"w":-34,"y":-34,"\u0175":-34}},"\u0138":{"d":"128,-480r0,231v16,-12,32,-37,48,-53r170,-178r58,0r-194,199r221,281r-58,0r-196,-252r-49,52r0,200r-48,0r0,-480r48,0","w":423,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"a":-26,"\u0103":-26,"\u0101":-26,"\u0105":-26,"g":-11,"\u011f":-11,"\u011d":-11,"\u0123":-11,"\u0121":-11,"c":-11,"d":-11,"e":-11,"o":-11,"q":-11,"\u0153":-11,"\u0107":-11,"\u010d":-11,"\u0109":-11,"\u010b":-11,"\u010f":-11,"\u0111":-11,"\u0115":-11,"\u011b":-11,"\u0117":-11,"\u0113":-11,"\u0119":-11,"\u014f":-11,"\u0151":-11,"\u014d":-11,"u":-7,"\u016d":-7,"\u0171":-7,"\u016b":-7,"\u0173":-7,"\u016f":-7,"\u0169":-7,"v":-19,"w":-19,"y":-19,"\u0175":-19,"b":-22,"h":-22,"k":-22,"l":-22,"\u0142":-22,"\u0127":-22,"\u0125":-22,"\u0137":-22,"\u013a":-22,"\u013e":-22,"\u013c":-22,"\u0140":-22,"i":-22,"m":-22,"n":-22,"p":-22,"r":-22,"\u0131":-22,"\u014b":-22,"\u012d":-22,"\u0133":-22,"\u012b":-22,"\u012f":-22,"\u0129":-22,"\u0144":-22,"\u0148":-22,"\u0146":-22,"\u0155":-22,"\u0159":-22,"\u0157":-22,"\u0138":-22,":":-15,";":-15,"\u00ad":13,",":-20,".":-20}},"\u0149":{"d":"279,-451v-80,0,-150,61,-150,153r0,298r-48,0r0,-365v0,-44,-1,-77,-4,-115r45,0v3,27,-2,63,5,86v26,-54,87,-97,165,-97v46,0,168,23,168,203r0,288r-48,0r0,-284v0,-88,-34,-167,-133,-167xm44,-543r-20,-22v17,-14,41,-37,41,-79v0,-24,-16,-48,-37,-61r43,-12v17,10,37,36,37,69v0,65,-50,95,-64,105","w":536,"k":{"T":45,"\u0166":45,"\u0164":45,"\u021a":45,"v":10,"w":10,"y":10,"\u0175":10}}}});

/**
 *
 * Copyright (c) 2007 Tom Deater (http://www.tomdeater.com)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 * 
 */
 
(function($) {
	/**
	 * equalizes the heights of all elements in a jQuery collection
	 * thanks to John Resig for optimizing this!
	 * usage: $("#col1, #col2, #col3").equalizeCols();
	 */
	 
	$.fn.equalizeCols = function(){
		var height = 0,
			reset = $.browser.msie ? "1%" : "auto";

		return this
			.css("height", reset)
			.each(function() {
				height = Math.max(height, this.offsetHeight);
			})
			.css("height", height)
			.each(function() {
				var h = this.offsetHeight;
				if (h > height) {
					$(this).css("height", height - (h - height));
				};
			});
			
	};
	
})(jQuery);


/*!
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

(function($){$.fn.jcarousel=function(o){if(typeof o=='string'){var instance=$(this).data('jcarousel'),args=Array.prototype.slice.call(arguments,1);return instance[o].apply(instance,args);}else
return this.each(function(){$(this).data('jcarousel',new $jc(this,o));});};var defaults={vertical:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:'normal',easing:'swing',auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:'<div></div>',buttonPrevHTML:'<div></div>',buttonNextEvent:'click',buttonPrevEvent:'click',buttonNextCallback:null,buttonPrevCallback:null};$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?'left':'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);skin=split[i];break;}}if(e.nodeName=='UL'||e.nodeName=='OL'){this.list=$(e);this.container=this.list.parent();if(this.container.hasClass('jcarousel-clip')){if(!this.container.parent().hasClass('jcarousel-container'))this.container=this.container.wrap('<div></div>');this.container=this.container.parent();}else if(!this.container.hasClass('jcarousel-container'))this.container=this.list.wrap('<div></div>').parent();}else{this.container=$(e);this.list=this.container.find('ul,ol').eq(0);}if(skin!=''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1)this.container.wrap('<div class=" '+skin+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass('jcarousel-clip'))this.clip=this.list.wrap('<div></div>').parent();this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)this.buttonNext=this.clip.after(this.options.buttonNextHTML).next();this.buttonNext.addClass(this.className('jcarousel-next'));this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)this.buttonPrev=this.clip.after(this.options.buttonPrevHTML).next();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.clip.addClass(this.className('jcarousel-clip')).css({overflow:'hidden',position:'relative'});this.list.addClass(this.className('jcarousel-list')).css({overflow:'hidden',position:'relative',top:0,left:0,margin:0,padding:0});this.container.addClass(this.className('jcarousel-container')).css({position:'relative'});var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,i=this.options.offset;li.each(function(){self.format(this,i++);wh+=self.dimension(this,di);});this.list.css(this.wh,wh+'px');if(!o||o.size===undefined)this.options.size=li.size();}this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();};this.funcPrev=function(){self.prev();};this.funcResize=function(){self.reload();};if(this.options.initCallback!=null)this.options.initCallback(this,'init');if($.browser.safari){this.buttons(false,false);$(window).bind('load.jcarousel',function(){self.setup();});}else
this.setup();};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.4'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked)return;this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize.jcarousel',this.funcResize).bind('resize.jcarousel',this.funcResize);},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!=null)this.options.initCallback(this,'reset');this.setup();},reload:function(){if(this.tail!=null&&this.inTail)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null)this.options.reloadCallback(this);if(this.options.visible!=null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;$('li',this.list).each(function(i){wh+=self.dimension(this,di);if(i+1<self.first)lt=wh;});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!=undefined){this.options.size=s;if(!this.locked)this.buttons();}return this.options.size;},has:function(i,i2){if(i2==undefined||!i2)i2=i;if(this.options.size!==null&&i2>this.options.size)i2=this.options.size;for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder'))return false;}return true;},get:function(i){return $('.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,add=0;if(e.length==0){var c,e=this.create(i),j=$jc.intval(i);while(c=this.get(--j)){if(j<=0||c.length){j<=0?this.list.prepend(e):c.after(e);break;}}}else
old=this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s=='string'?e.html(s):e.empty().append(s);var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last))return;var d=this.dimension(e);if(i<this.first)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail)this.scrollTail(false);else
this.scroll(((this.options.wrap=='both'||this.options.wrap=='last')&&this.options.size!=null&&this.last==this.options.size)?1:this.first+this.options.scroll);},prev:function(){this.stopAuto();if(this.tail!=null&&this.inTail)this.scrollTail(true);else
this.scroll(((this.options.wrap=='both'||this.options.wrap=='first')&&this.options.size!=null&&this.first==1)?this.options.size:this.first-this.options.scroll);},scrollTail:function(b){if(this.locked||this.animating||!this.tail)return;var pos=$jc.intval(this.list.css(this.lt));!b?pos-=this.tail:pos+=this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating)return;this.animate(this.pos(i),a);},pos:function(i){var pos=$jc.intval(this.list.css(this.lt));if(this.locked||this.animating)return pos;if(this.options.wrap!='circular')i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);var back=this.first>i;var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0,g;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);if(this.first!=null&&this.options.wrap=='circular'&&this.options.size!==null&&(j<=0||j>this.options.size)){g=this.get(this.index(j));if(g.length)this.add(j,g.children().clone(true));}}c=e;d=this.dimension(e);if(p)l+=d;if(this.first!=null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size==null||j<=this.options.size))))pos=back?pos+d:pos-d;}var clipping=this.clipping();var cache=[];var visible=0,j=i,v=0;var c=this.get(i-1);while(++visible){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length==0?this.list.prepend(e):c[back?'before':'after'](e);if(this.first!=null&&this.options.wrap=='circular'&&this.options.size!==null&&(j<=0||j>this.options.size)){g=this.get(this.index(j));if(g.length)this.add(j,g.find('>*').clone(true));}}c=e;var d=this.dimension(e);if(d==0){alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size)cache.push(e);else if(p)l+=d;v+=d;if(v>=clipping)break;j++;}for(var x=0;x<cache.length;x++)cache[x].remove();if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size)last=this.options.size;if(j>last){visible=0,j=last,v=0;while(++visible){var e=this.get(j--);if(!e.length)break;v+=this.dimension(e);if(v>=clipping)break;}}var first=last-visible+1;if(this.options.wrap!='circular'&&first<1)first=1;if(this.inTail&&back){pos+=this.tail;this.inTail=false;}this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.margin(this.get(last),!this.options.vertical?'marginRight':'marginBottom');if((v-m)>clipping)this.tail=v-clipping-m;}while(i-->first)pos+=this.dimension(this.get(i));this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating)return;this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p==0)self.list.css(self.lt,0);if(self.options.wrap=='circular'||self.options.wrap=='both'||self.options.wrap=='last'||self.options.size==null||self.last<self.options.size)self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if(!this.options.animation||a==false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?{'left':p}:{'top':p};this.list.animate(o,this.options.animation,this.options.easing,scrolled);}},startAuto:function(s){if(s!=undefined)this.options.auto=s;if(this.options.auto==0)return this.stopAuto();if(this.timer!=null)return;var self=this;this.timer=setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){if(this.timer==null)return;clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==undefined||n==null){var n=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='first')||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=='first')&&this.options.size!=null&&this.last>=this.options.size)n=this.tail!=null&&!this.inTail;}if(p==undefined||p==null){var p=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='last')||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=='last')&&this.options.size!=null&&this.first==1)p=this.tail!=null&&this.inTail;}var self=this;this.buttonNext[n?'bind':'unbind'](this.options.buttonNextEvent+'.jcarousel',this.funcNext)[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);this.buttonPrev[p?'bind':'unbind'](this.options.buttonPrevEvent+'.jcarousel',this.funcPrev)[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=n)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);});this.buttonNext[0].jcarouselstate=n;}if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=p)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);});this.buttonPrev[0].jcarouselstate=p;}},notify:function(evt){var state=this.prevFirst==null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==undefined||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation'))return;var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback))return;var self=this;if(i1===undefined)callback(self,state,evt);else if(i2===undefined)this.get(i1).each(function(){callback(self,this,i1,state,evt);});else{for(var i=i1;i<=i2;i++)if(i!==null&&!(i>=i3&&i<=i4))this.get(i).each(function(){callback(self,this,i,state,evt);});}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){var $e=$(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i)).css({'float':'left','list-style':'none'});$e.attr('jcarouselindex',i);return $e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=e.jquery!=undefined?e[0]:e;var old=!this.options.vertical?el.offsetWidth+$jc.margin(el,'marginLeft')+$jc.margin(el,'marginRight'):el.offsetHeight+$jc.margin(el,'marginTop')+$jc.margin(el,'marginBottom');if(d==undefined||old==d)return old;var w=!this.options.vertical?d-$jc.margin(el,'marginLeft')-$jc.margin(el,'marginRight'):d-$jc.margin(el,'marginTop')-$jc.margin(el,'marginBottom');$(el).css(this.wh,w+'px');return this.dimension(el);},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==undefined)s=this.options.size;return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},margin:function(e,p){if(!e)return 0;var el=e.jquery!=undefined?e[0]:e;if(p=='marginRight'&&$.browser.safari){var old={'display':'block','float':'none','width':'auto'},oWidth,oWidth2;$.swap(el,old,function(){oWidth=el.offsetWidth;});old['marginRight']=0;$.swap(el,old,function(){oWidth2=el.offsetWidth;});return oWidth2-oWidth;}return $jc.intval($.css(el,p));},intval:function(v){v=parseInt(v);return isNaN(v)?0:v;}});})(jQuery);

/*!
 * Feature Carousel, Version 1.0
 * http://www.bkosolutions.com
 *
 * Copyright 2010 Brian Osborne
 * Licensed under GPL version 3
 *
 * http://www.gnu.org/licenses/gpl.txt
 */
(function($) {

    $.fn.featureCarousel = function (options) {

        // override the default options with user defined options
        options = $.extend({}, $.fn.featureCarousel.defaults, options || {});

        return $(this).each(function () {

            /* These are univeral values that are used throughout the plugin. Do not modify them
             * unless you know what you're doing. Most of them feed off the options
             * so most customization can be achieved by modifying the options values */
            var pluginData = {
                currentCenterNum:       options.startingFeature,
                containerWidth:         0,
                containerHeight:        0,
                largeFeatureWidth:      0,
                largeFeatureHeight:     0,
                smallFeatureWidth:      0,
                smallFeatureHeight:     0,
                totalFeatureCount:      $(this).children("div").length,
                currentlyMoving:        false,
                featuresContainer:      $(this),
                featuresArray:          [],
                containerIDTag:         "#"+$(this).attr("id"),
                timeoutVar:             null,
                rotationsRemaining:     0,
                itemsToAnimate:         0,
                borderWidth:			0
            };

            preload(function () {
            	setupFeatureDimensions();
                setupCarousel();
                setupFeaturePositions();
                setupBlips();
                initiateMove(true,1);
            });

            /**
             * Function to preload the images in the carousel if desired.
             * This is not recommended if there are a lot of images in the carousel because
             * it may take a while. Functionality does not depend on preloading the images
             */
            function preload(callback) {
                // user may not want to preload images
                if (options.preload == true) {
                    var $imageElements = pluginData.featuresContainer.find("img");
                    var loadedImages = 0;
                    var totalImages = $imageElements.length;

                    $imageElements.each(function () {
                        // Attempt to load the images
                        $(this).load(function () {
                            // Add to number of images loaded and see if they are all done yet
                            loadedImages++;
                            if (loadedImages == totalImages) {
                                // All done, perform callback
                                callback();
                            }
                        });
                        // The images may already be cached in the browser, in which case they
                        // would have a 'true' complete value and the load callback would never be
                        // fired. This will fire it manually.
                        if (this.complete) {
                            $(this).trigger('load');
                        }
                    });
                } else {
                    // if user doesn't want preloader, then just go right to callback
                    callback();
                }
            }

            // Gets the feature container based on the number
            function getContainer(featureNum) {
                return pluginData.featuresArray[featureNum-1];
            }

            // get a feature given it's set position (the position that doesn't change)
            function getBySetPos(position) {
                $.each(pluginData.featuresArray, function () {
                    if ($(this).data().setPosition == position)
                        return $(this);
                });
            }

            // get previous feature number
            function getPreviousNum(num) {
                if ((num - 1) == 0) {
                    return pluginData.totalFeatureCount;
                } else {
                    return num - 1;
                }
            }

            // get next feature number
            function getNextNum(num) {
                if ((num + 1) > pluginData.totalFeatureCount) {
                    return 1;
                } else {
                    return num + 1;
                }
            }

            /**
             * Because there are several options the user can set for the width and height
             * of the feature images, this function is used to determine which options were set
             * and to set the appropriate dimensions used for a small and large feature
             */
            function setupFeatureDimensions() {
                // Set the height and width of the entire carousel container
                pluginData.containerWidth = pluginData.featuresContainer.width();
                pluginData.containerHeight = pluginData.featuresContainer.height();

                // Grab the first image for reference
                var $firstFeatureImage = $(pluginData.containerIDTag).find("div img:first");

                // Large Feature Width
                if (options.largeFeatureWidth > 1)
                    pluginData.largeFeatureWidth = options.largeFeatureWidth;
                else if (options.largeFeatureWidth > 0 && options.largeFeatureWidth < 1)
                    pluginData.largeFeatureWidth = $firstFeatureImage.width() * options.largeFeatureWidth;
                else
                    pluginData.largeFeatureWidth = $firstFeatureImage.outerWidth();
                // Large Feature Height
                if (options.largeFeatureHeight > 1)
                    pluginData.largeFeatureHeight = options.largeFeatureHeight;
                else if (options.largeFeatureHeight > 0 && options.largeFeatureHeight < 1)
                    pluginData.largeFeatureHeight = $firstFeatureImage.height() * options.largeFeatureHeight;
                else
                    pluginData.largeFeatureHeight = $firstFeatureImage.outerHeight();
                // Small Feature Width
                if (options.smallFeatureWidth > 1)
                    pluginData.smallFeatureWidth = options.smallFeatureWidth;
                else if (options.smallFeatureWidth > 0 && options.smallFeatureWidth < 1)
                    pluginData.smallFeatureWidth = $firstFeatureImage.width() * options.smallFeatureWidth;
                else
                    pluginData.smallFeatureWidth = $firstFeatureImage.outerWidth() / 2;
                // Small Feature Height
                if (options.smallFeatureHeight > 1)
                    pluginData.smallFeatureHeight = options.smallFeatureHeight;
                else if (options.smallFeatureHeight > 0 && options.smallFeatureHeight < 1)
                    pluginData.smallFeatureHeight = $firstFeatureImage.height() * options.smallFeatureHeight;
                else
                    pluginData.smallFeatureHeight = $firstFeatureImage.outerHeight() / 2;
            }

            /**
             * Function to take care of setting up various aspects of the carousel,
             * most importantly the default positions for the features
             */
            function setupCarousel() {
                // Set the total feature count to the amount the user wanted to cutoff
                if (options.displayCutoff > 0 && options.displayCutoff < pluginData.totalFeatureCount) {
                    pluginData.totalFeatureCount = options.displayCutoff;
                }

                // fill in the features array
                pluginData.featuresContainer.children("div").each(function (index) {
                    if (index < pluginData.totalFeatureCount) {
                        pluginData.featuresArray[index] = $(this);
                    }
                });

                // Determine the total border width around the feature if there is one
                if (pluginData.featuresContainer.children("div").first().css("borderLeftWidth") != "medium") {
                    pluginData.borderWidth = parseInt(pluginData.featuresContainer.children("div").first().css("borderLeftWidth"))*2;
                }

                // Place all the features in a center hidden position to start off
                pluginData.featuresContainer
                    // Have to make the container relative positioning
                    .children("div").each(function () {
                        // Center all the features in the middle and hide them
                        $(this).css({
                            'left': (pluginData.containerWidth / 2) - (pluginData.smallFeatureWidth / 2) - (pluginData.borderWidth / 2),
                            'width': pluginData.smallFeatureWidth,
                            'height': pluginData.smallFeatureHeight,
                            'top': options.smallFeatureOffset + options.topPadding,
                            'opacity': 0
                        });
                    })
                    // Set all the images to small feature size
                    .find("img:first").css({
                        'width': pluginData.smallFeatureWidth
                    });

                // figure out number of items that will rotate each time
                if (pluginData.totalFeatureCount < 4) {
                    pluginData.itemsToAnimate = pluginData.totalFeatureCount;
                } else {
                    pluginData.itemsToAnimate = 4;
                }

                // Hide story info and set the proper positioning
                pluginData.featuresContainer.find("div > div")
                    .hide();
            }

            /**
             * Here all the position data is set for the features.
             * This is an important part of the carousel to keep track of where
             * each feature within the carousel is
             */
            function setupFeaturePositions() {
                // give all features a set number that won't change so they remember their
                // original order
                $.each(pluginData.featuresArray, function (i) {
                    $(this).data('setPosition',i+1);
                });

                // Go back one - This is done because we call the move function right away, which
                // shifts everything to the right. So we set the current center back one, so that
                // it displays in the center when that happens
                var oneBeforeStarting = getPreviousNum(options.startingFeature);
                pluginData.currentCenterNum = oneBeforeStarting;

                // Center feature will be position 1
                var $centerFeature = getContainer(oneBeforeStarting);
                $centerFeature.data('position',1);

                // Everything before that center feature...
                var $prevFeatures = $centerFeature.prevAll();
                $prevFeatures.each(function (i) {
                    $(this).data('position',(pluginData.totalFeatureCount - i));
                });

                // And everything after that center feature...
                var $nextFeatures = $centerFeature.nextAll();
                $nextFeatures.each(function (i) {
                    if ($(this).data('setPosition') != undefined) {
                        $(this).data('position',(i + 2));
                    }
                });

                // if the counter style is for including number tags in description...
                if (options.counterStyle == 3) {
                    $.each(pluginData.featuresArray, function () {
                        var pos = getPreviousNum($(this).data('position'));
                        var $numberTag = $("<span></span>");
                        $numberTag.addClass("numberTag");
                        $numberTag.html("("+ pos + " of " + pluginData.totalFeatureCount + ") ");
                        $(this).find('div p').prepend($numberTag);
                    });
                }
            }

            /**
             * The blips are built using this function. The position and look
             * of the blips are completely determined by the CSS file
             */
            function setupBlips()
            {
                // Only setup the blips if the counter style is 1 or 2
                if (options.counterStyle == 1 || options.counterStyle == 2) {
                    // construct the blip list
                    var $list = $("<ul></ul>");
                    $list.addClass("blipsContainer");
                    for (var i = 0; i < pluginData.totalFeatureCount; i++) {
                        // Counter style 1 has no numbers, while 2 does
                        var counter;
                        if (options.counterStyle == 2)
                            counter = "";
                        else
                            counter = i+1;

                        // Build the DOM for the blip list
                        var $blip = $("<div>"+counter+"</div>");
                        $blip.addClass("blip");
                        $blip.css("cursor","pointer");
                        $blip.attr("id","blip_"+(i+1));
                        var $listEntry = $("<li></li>");
                        $listEntry.append($blip);
                        $listEntry.css("float","left");
                        $listEntry.css("list-style-type","none");
                        $list.append($listEntry);
                    }
                    // add the blip list and then make sure it's visible
                    $(pluginData.containerIDTag).append($list);
                    $list.hide().show();
                }
            }

            // Move the highlighted blip to the currently centered feature
            function changeBlip(oldCenter, newCenter)
            {
                // get selectors for the two blips
                var $blipsContainer = pluginData.featuresContainer.find(".blipsContainer");
                var $oldCenter = $blipsContainer.find("#blip_"+oldCenter);
                var $newCenter = $blipsContainer.find("#blip_"+newCenter);

                // change classes
                $oldCenter.removeClass("blipSelected");
                $newCenter.addClass("blipSelected");
            }

            /**
             * This function will set the autoplay for the carousel to
             * automatically rotate it given the time in the options
             */
            function autoPlay() {
                // clear the timeout var if it exists
                if (pluginData.timeoutVar != null) {
                    pluginData.timeoutVar = clearTimeout(pluginData.timeoutVar);
                }

                // set interval for moving if autoplay is set
                if (options.autoPlay != 0) {
                    var autoTime = (Math.abs(options.autoPlay) < options.carouselSpeed) ? options.carouselSpeed : Math.abs(options.autoPlay);
                    pluginData.timeoutVar = setTimeout(function () {
                        if (options.autoPlay > 0)
                            initiateMove(true,1);
                        else if (options.autoPlay < 0)
                            initiateMove(false,1);
                    }, autoTime);
                }
            }

            // This is a helper function for the animateFeature function that
            // will update the positions of all the features based on the direction
            function rotatePositions(direction) {
                $.each(pluginData.featuresArray, function () {
                    var newPos;
                    if (direction == false) {
                        newPos = getNextNum($(this).data().position);
                    } else {
                        newPos = getPreviousNum($(this).data().position);
                    }
                    $(this).data('position',newPos);
                });
            }

            /**
             * This function is used to animate the given feature to the given
             * location. Valid locations are "left", "right", "center", "hidden"
             */
            function animateFeature($feature, direction)
            {
                var new_width, new_height, new_top, new_left, new_zindex, new_padding, new_fade;

                // Determine the old and new positions of the feature
                var oldPosition = $feature.data('position');
                var newPosition;
                if (direction == true)
                    newPosition = getPreviousNum(oldPosition);
                else
                    newPosition = getNextNum(oldPosition);

                // Caculate new new css values depending on where the feature will be located
                if (newPosition == 1) {
                    new_width = pluginData.largeFeatureWidth;
                    new_height = pluginData.largeFeatureHeight;
                    new_top = options.topPadding;
                    new_zindex = $feature.css("z-index");
                    new_left = (pluginData.containerWidth / 2) - (pluginData.largeFeatureWidth / 2) - (pluginData.borderWidth / 2);
                    new_fade = 1.0;
                } else {
                    new_width = pluginData.smallFeatureWidth;
                    new_height = pluginData.smallFeatureHeight;
                    new_top = options.smallFeatureOffset + options.topPadding;
                    new_zindex = 1;
                    new_fade = 0.4;
                    // some info is different for the left, right, and hidden positions
                    // left
                    if (newPosition == pluginData.totalFeatureCount) {
                        new_left = options.sidePadding;
                    // right
                    } else if (newPosition == 2) {
                        new_left = pluginData.containerWidth - pluginData.smallFeatureWidth - options.sidePadding - pluginData.borderWidth;
                    // hidden
                    } else {
                        new_left = (pluginData.containerWidth / 2) - (pluginData.smallFeatureWidth / 2) - (pluginData.borderWidth / 2);
                        new_fade = 0;
                    }
                }
                // This code block takes care of hiding the feature information if the feature is
                // NO LONGER going to be in the center
                if (newPosition != 1) {
                    // Slide up the story information
                    $feature.find("div")
                        .hide();
                }

                // Animate the feature div to its new location
                $feature
                    .animate(
                        {
                            width: new_width,
                            height: new_height,
                            top: new_top,
                            left: new_left,
                            opacity: new_fade
                        },
                        options.carouselSpeed,
                        options.animationEasing,
                        function () {
                            // Take feature info out of hiding if new position is center
                            if (newPosition == 1) {
                                // fade in the feature information
                                $feature.find("div")
                                    .fadeTo("fast",0.85);
                            }
                            // decrement the animation queue
                            pluginData.rotationsRemaining = pluginData.rotationsRemaining - 1;
                            // have to change the z-index after the animation is done
                            $feature.css("z-index", new_zindex);
                            // change blips if using them
                            if (options.counterStyle == 1 || options.counterStyle == 2) {
                                if (newPosition == 1) {
                                    // figure out what item was just in the center, and what item is now in the center
                                    var newCenterItemNum = pluginData.featuresContainer.children("div").index($feature) + 1;
                                    var oldCenterItemNum;
                                    if (direction == false)
                                        oldCenterItemNum = getNextNum(newCenterItemNum);
                                    else
                                        oldCenterItemNum = getPreviousNum(newCenterItemNum);
                                    // now change the active blip
                                    changeBlip(oldCenterItemNum, newCenterItemNum);
                                }
                            }

                            // did all the the animations finish yet?
                            var divide = pluginData.rotationsRemaining / pluginData.itemsToAnimate;
                            if (divide % 1 == 0) {
                                // if so, set moving to false...
                                pluginData.currentlyMoving = false;
                                // change positions for all items...
                                rotatePositions(direction);

                                // and move carousel again if queue is not empty
                                if (pluginData.rotationsRemaining > 0)
                                    move(direction);
                            }

                            // call autoplay again
                            autoPlay();
                        }
                    )
                    // select the image within the feature
                    .find("img:first")
                        // animate its size down
                        .animate({
                            width: new_width,
                            height: new_height
                        },
                        options.carouselSpeed,
                        options.animationEasing)
                    .end();
            }

            /**
             * move the carousel to the left or to the right. The features that
             * will move into the four positions are calculated and then animated
             * rotate to the RIGHT when direction is TRUE and
             * rotate to the LEFT when direction is FALSE
             */
            function move(direction)
            {
                // Set the carousel to currently moving
                pluginData.currentlyMoving = true;

                // Obtain the new feature positions based on the direction that the carousel is moving
                var $newCenter, $newLeft, $newRight, $newHidden;
                if (direction == true) {
                    // Shift features to the left
                    $newCenter = getContainer(getNextNum(pluginData.currentCenterNum));
                    $newLeft = getContainer(pluginData.currentCenterNum);
                    $newRight = getContainer(getNextNum(getNextNum(pluginData.currentCenterNum)));
                    $newHidden = getContainer(getPreviousNum(pluginData.currentCenterNum));
                    pluginData.currentCenterNum = getNextNum(pluginData.currentCenterNum);
                } else {
                    $newCenter = getContainer(getPreviousNum(pluginData.currentCenterNum));
                    $newLeft = getContainer(getPreviousNum(getPreviousNum(pluginData.currentCenterNum)));
                    $newRight = getContainer(pluginData.currentCenterNum);
                    $newHidden = getContainer(getNextNum(pluginData.currentCenterNum));
                    pluginData.currentCenterNum = getPreviousNum(pluginData.currentCenterNum);
                }

                // The z-index must be set before animations take place for certain movements
                // this makes the animations look nicer
                if (direction) {
                    $newLeft.css("z-index", 3);
                } else {
                    $newRight.css("z-index", 3);
                }
                $newCenter.css("z-index", 4);

                // Animate the features into their new positions
                animateFeature($newLeft, direction);
                animateFeature($newCenter, direction);
                animateFeature($newRight, direction);
                // Only want to animate the "hidden" feature if there are more than three
                if (pluginData.totalFeatureCount > 3) {
                    animateFeature($newHidden, direction);
                }
				
				showCarouselText(pluginData.currentCenterNum);
            }

            function showCarouselText(id){
               $('#textsCarousel .text').hide();
               $('#carousel_'+id).show();                        
            }
						
            // This is used to relegate carousel movement throughout the plugin
            // It will only initiate a move if the carousel isn't currently moving
            // It will set the animation queue to the number of rotations given
            function initiateMove(direction, rotations) {
                if (pluginData.currentlyMoving == false) {
                    var queue = rotations * pluginData.itemsToAnimate;
                    pluginData.rotationsRemaining = queue;
                    move(direction);
                }
            }

            /**
             * This will find the shortest distance to travel the carousel from
             * one position to another position. It will return the shortest distance
             * in number form, and will be positive to go to the right and negative for left
             */
            function findShortestDistance(from, to) {
                var goingToLeft = 1, goingToRight = 1, tracker;
                tracker = from;
                // see how long it takes to go to the left
                while ((tracker = getPreviousNum(tracker)) != to) {
                    goingToLeft++;
                }

                tracker = from;
                // see how long it takes to to to the right
                while ((tracker = getNextNum(tracker)) != to) {
                    goingToRight++;
                }

                // whichever is shorter
                return (goingToLeft < goingToRight) ? goingToLeft*-1 : goingToRight;
            }

            // Move to the left if left button clicked
            $(".leftButton").click(function () {
                initiateMove(false,1);
            });

            // Move to right if right button clicked
            $(".rightButton").click(function () {
                initiateMove(true,1);
            });

            // These are the click and hover events for the features
            pluginData.featuresContainer.children("div")
                .click(function () {
                    var position = $(this).data('position');
                    if (position == 2) {
                        initiateMove(true,1);
                    } else if (position == pluginData.totalFeatureCount) {
                        initiateMove(false,1);
                    }
                })
                .mouseover(function () {
                    if (pluginData.currentlyMoving == false) {
                        var position = $(this).data('position');
                        if (position == 2 || position == pluginData.totalFeatureCount) {
                            $(this).css("opacity",0.8);
                        }
                    }
                })
                .mouseout(function () {
                    if (pluginData.currentlyMoving == false) {
                        var position = $(this).data('position');
                        if (position == 2 || position == pluginData.totalFeatureCount) {
                            $(this).css("opacity",0.4);
                        }
                    }
                });

            // Add event listener to all clicks within the features container
            // This is done to disable any links that aren't within the center feature
            $("a", pluginData.containerIDTag).live("click", function (event) {
                // travel up to the container
                var $parents = $(this).parentsUntil(pluginData.containerIDTag);
                // now check each of the feature divs within it
                $parents.each(function () {
                    var position = $(this).data('position');
                    // if there are more than just feature divs within the container, they will
                    // not have a position and it may come back as undefined. Throw these out
                    if (position != undefined) {
                        // if any of the links on a feature OTHER THAN the center feature were clicked,
                        // initiate a carousel move but then throw the link action away
                        // if the position WAS the center (i.e. 1), then do nothing and let the link pass
                        if (position != 1) {
                            if (position == pluginData.totalFeatureCount) {
                                initiateMove(false,1);
                            } else if (position == 2) {
                                initiateMove(true,1);
                            }
                            event.preventDefault();
                            return false;
                        }
                    }
                });
            });

            $(".blip").live("click",function () {
                // grab the position # that was clicked
                var goTo = $(this).attr("id").substring(5);
                // find out where that feature # actually is in the carousel right now
                var whereIsIt = pluginData.featuresContainer.children("div").eq(goTo-1).data('position');
                // which feature # is currently in the center
                var currentlyAt = pluginData.currentCenterNum;
                // if the blip was clicked for the current center feature, do nothing
                if (goTo != currentlyAt) {
                    // find the shortest distance to move the carousel
                    var shortest = findShortestDistance(1, whereIsIt);
                    // initiate a move in that direction with given number of rotations
                    if (shortest < 0) {
                        initiateMove(false,(shortest*-1));
                    } else {
                        initiateMove(true,shortest);
                    }
                }

            });
        });
    };

    $.fn.featureCarousel.defaults = {
        // If zero, take original width and height of image
        // If between 0 and 1, multiply by original width and height (to get smaller size)
        // If greater than one, use in place of original pixel dimensions
        largeFeatureWidth :     0,
        largeFeatureHeight:		0,
        smallFeatureWidth:      .5,
        smallFeatureHeight:		.5,
        // how much to pad the top of the carousel
        topPadding:             20,
        // spacing between the sides of the container (pixels)
        sidePadding:            30,
        // the additional offset to pad the side features from the top of the carousel
        smallFeatureOffset:		50,
        // indicates which feature to start the carousel at
        startingFeature:        1,
        // speed in milliseconds it takes to rotate the carousel
        carouselSpeed:          1000,
        // time in milliseconds to set interval to autorotate the carousel
        // set to zero to disable it, negative to go left
        autoPlay:               0,
        // set to true to enable the creation of blips to indicate how many
        // features there are
        counterStyle:           1,
        // true to preload all images in the carousel before displaying anything
        preload:                true,
        // Will only display this many features in the carousel
        // set to zero to disable
        displayCutoff:          0,
        // an easing can be specified for the animation of the carousel
        animationEasing:        'swing'
    };

})(jQuery);

/*
bxSlider v2.0
Plugin developed by: Steven Wanderski
http://bxslider.com
http://stevenwanderski.com

Released under the GPL license:
http://www.gnu.org/licenses/gpl.html
*/
(function($){$.fn.bxSlider=function(options){var defaults={alignment:'horizontal',controls:true,speed:500,pager:true,pager_short:false,pager_short_separator:' / ',margin:0,next_text:'next',next_image:'',prev_text:'prev',prev_image:'',auto:false,pause:3500,auto_direction:'next',auto_hover:true,auto_controls:false,ticker:false,ticker_controls:false,ticker_direction:'next',ticker_hover:true,stop_text:'stop',start_text:'start',wrapper_class:'bxslider_wrap'};var o=$.extend(defaults,options);return this.each(function(){var $this=$(this);var $kids=$this.children();var l=$this.children().length;var first=$this.children(':first').clone();var last=$this.children(':last').clone();var w=0,h=0,current_temp=0,pos=0,d=0;var is_working=false,playing=true,tick_play=true;var current=1;var ease='swing',side='',t='';var ani={};$this.append(first).prepend(last);$this.wrap('<div class="bxslider_container"></div>');$this.parent().wrap('<div class="'+o.wrapper_class+'"></div>');if(o.alignment=='horizontal'){$this.children().css({'float':'left','listStyle':'none','marginRight':o.margin});w=first.outerWidth(true);$this.css({'width':'99999px','position':'relative','left':-w});$this.parent().css({'position':'relative','overflow':'hidden','width':w-o.margin});}else if(o.alignment=='vertical'){$kids.each(function(){if($(this).height()>h){h=$(this).height();}});w=first.outerWidth();$this.children().css({'height':h,'listStyle':'none','marginBottom':o.margin});$this.css({'height':'99999px','width':w,'position':'relative','top':-(h+o.margin)});$this.parent().css({'position':'relative','overflow':'hidden','height':h})}
if(o.pager&&!o.ticker){$this.parent().after('<div class="bx_pager"></div>');if(!o.pager_short){var $a;$kids.each(function(index){$a=$('<a href="#">'+(index+1)+'</a>');$this.parent().siblings('.bx_pager').append($a);$a.click(function(){is_working=false;tick_play=false;$this.stop();move_slide(index+1);current=index+1;if(o.auto){clearInterval(t);$this.parent().siblings('.auto_controls').find('a').html(o.start_text);playing=false;}
else if(o.ticker){$this.parent().siblings('.ticker_controls').find('a').html(o.start_text);playing=false;}
return false;});});}else{$this.parent().siblings('.bx_pager').append();}
set_active(1);}
if(o.controls&&!o.ticker){if(o.next_image!=''||o.prev_image!=''){$this.parent().after('<a class="prev" href="#"><img src="'+o.prev_image+'" /></a><a class="next" href="#"><img src="'+o.next_image+'" /></a>');}
else{$this.parent().after('<a class="prev" href="#">'+o.prev_text+'</a><a class="next" href="#">'+o.next_text+'</a>');}
$this.parent().siblings('.next').click(function(){if(!is_working){move_slide(++current);}
if(o.auto){clearInterval(t);$this.parent().siblings('.auto_controls').find('a').html(o.start_text);playing=false;}
return false;});$this.parent().siblings('.prev').click(function(){if(!is_working){move_slide(--current);}
if(o.auto){clearInterval(t);$this.parent().siblings('.auto_controls').find('a').html(o.start_text);playing=false;}
return false;});}
if(o.auto&&!o.ticker){t=setInterval(function(){if(o.auto_direction=='next'){move_slide(++current);}else{move_slide(--current);}},o.pause);if(o.auto_hover){$this.hover(function(){clearInterval(t);},function(){if(playing){t=setInterval(function(){if(o.auto_direction=='next'){move_slide(++current);}
else{move_slide(--current);}},o.pause);}});}
if(o.auto_controls){$this.parent().after('<div class="auto_controls"><a class="auto_link" href="#">'+o.stop_text+'</a></div>');$this.parent().siblings('.auto_controls').find('a').click(function(){if(playing){clearInterval(t);$(this).html(o.start_text);playing=false;}
else{t=setInterval(function(){if(o.auto_direction=='next'){move_slide(++current);}else{move_slide(--current);}},o.pause);$(this).html(o.stop_text);playing=true;}
return false;});}}
if(o.ticker){var tick_play=true;tick_slide();$this.hover(function(){$this.stop();},function(){if(tick_play){tick_slide();}});if(o.ticker_controls){$this.parent().after('<div class="ticker_controls"><a class="ticker_link" href="#">'+o.stop_text+'</a></div>');$this.parent().siblings('.ticker_controls').find('a').click(function(){if(tick_play){$this.stop();$(this).html(o.start_text);tick_play=false;}
else{is_working=false;$(this).html(o.stop_text)
tick_slide();tick_play=true;}
return false;});}}
function tick_slide(){if(o.ticker_direction=='next'&&o.alignment=='horizontal'){$this.animate({left:'-=5px'},o.speed/5,'linear',function(){if(parseInt($this.css('left'))<=-((l+1)*w)){$this.css('left',-w);}
tick_slide();});}else if(o.ticker_direction=='prev'&&o.alignment=='horizontal'){$this.animate({left:'+=5px'},o.speed/5,'linear',function(){if(parseInt($this.css('left'))>=-(w)){$this.css('left',-((l+1)*w));}
tick_slide();});}else if(o.ticker_direction=='next'&&o.alignment=='vertical'){$this.animate({top:'-=5px'},o.speed/5,'linear',function(){if(parseInt($this.css('top'))<=-((l+1)*(h+o.margin))){$this.css('top',-(h+o.margin));}
tick_slide();});}else if(o.ticker_direction=='prev'&&o.alignment=='vertical'){$this.animate({top:'+=4px'},o.speed/5,'linear',function(){if(parseInt($this.css('top'))>-(h+o.margin)){$this.css('top',-((l+1)*(h+o.margin-1)));}
tick_slide();});}}
function move_slide(num){if(o.ticker){ease='linear';}
if(!is_working){if(o.alignment=='horizontal'){d=w;side='left';}
else if(o.alignment=='vertical'){d=h+o.margin;side='top';}
pos=num*d;ani[side]=-pos;is_working=true;$this.animate(ani,o.speed,ease,function(){is_working=false;if(current>l){$this.css(side,-d);current=1;}
else if(current<1){$this.css(side,-(d*l));current=l;}
set_active(current);});}}
function set_active(num){if(o.pager&&!o.pager_short){$this.parent().siblings('.bx_pager').find('a').removeClass('active').eq(num-1).addClass('active');}
else if(o.pager_short){$this.parent().siblings('.bx_pager').html(num+o.pager_short_separator+$kids.length);}}});};})(jQuery);

